From 2bbf92d5f8c2955c5ae7abb5485a36ac207eecca Mon Sep 17 00:00:00 2001 From: Oxan van Leeuwen Date: Fri, 10 Aug 2012 01:04:29 +0200 Subject: [PATCH 001/184] Update vendor.yml to include jQuery UI --- lib/linguist/vendor.yml | 4 ++++ test/test_blob.rb | 17 +++++++++++++++++ 2 files changed, 21 insertions(+) diff --git a/lib/linguist/vendor.yml b/lib/linguist/vendor.yml index 5ab1bb67..01551061 100644 --- a/lib/linguist/vendor.yml +++ b/lib/linguist/vendor.yml @@ -30,6 +30,10 @@ - (^|/)jquery([^.]*)(\.min)?\.js$ - (^|/)jquery\-\d\.\d(\.\d)?(\.min)?\.js$ +# jQuery UI +- (^|/)jquery\-ui(\-\d\.\d+(\.\d+)?)?(\.\w+)?(\.min)?\.(js|css)$ +- (^|/)jquery\.(ui|effects)\.([^.]*)(\.min)?\.(js|css)$ + # Prototype - (^|/)prototype(.*)\.js$ - (^|/)effects\.js$ diff --git a/test/test_blob.rb b/test/test_blob.rb index c8f103ee..9825e9f9 100644 --- a/test/test_blob.rb +++ b/test/test_blob.rb @@ -207,6 +207,23 @@ class TestBlob < Test::Unit::TestCase assert blob("public/javascripts/jquery-1.6.1.js").vendored? assert blob("public/javascripts/jquery-1.6.1.min.js").vendored? assert !blob("public/javascripts/jquery.github.menu.js").vendored? + + # jQuery UI + assert blob("themes/ui-lightness/jquery-ui.css").vendored? + assert blob("themes/ui-lightness/jquery-ui-1.8.22.custom.css").vendored? + assert blob("themes/ui-lightness/jquery.ui.accordion.css").vendored? + assert blob("ui/i18n/jquery.ui.datepicker-ar.js").vendored? + assert blob("ui/i18n/jquery-ui-i18n.js").vendored? + assert blob("ui/jquery.effects.blind.js").vendored? + assert blob("ui/jquery-ui-1.8.22.custom.js").vendored? + assert blob("ui/jquery-ui-1.8.22.custom.min.js").vendored? + assert blob("ui/jquery-ui-1.8.22.js").vendored? + assert blob("ui/jquery-ui-1.8.js").vendored? + assert blob("ui/jquery-ui.min.js").vendored? + assert blob("ui/jquery.ui.accordion.js").vendored? + assert blob("ui/minified/jquery.effects.blind.min.js").vendored? + assert blob("ui/minified/jquery.ui.accordion.min.js").vendored? + # MooTools assert blob("public/javascripts/mootools-core-1.3.2-full-compat.js").vendored? From 0f006af5834c84757fe4b8183bca611cb0e66e78 Mon Sep 17 00:00:00 2001 From: Oxan van Leeuwen Date: Fri, 10 Aug 2012 01:09:54 +0200 Subject: [PATCH 002/184] Improve detection for ASP.NET validation jQuery plugins --- lib/linguist/vendor.yml | 3 ++- test/test_blob.rb | 5 +++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/lib/linguist/vendor.yml b/lib/linguist/vendor.yml index 01551061..aa5fb195 100644 --- a/lib/linguist/vendor.yml +++ b/lib/linguist/vendor.yml @@ -85,7 +85,8 @@ - -vsdoc\.js$ # jQuery validation plugin (MS bundles this with asp.net mvc) -- (^|/)jquery([^.]*)\.validate(\.min)?\.js$ +- (^|/)jquery([^.]*)\.validate(\.unobtrusive)?(\.min)?\.js$ +- (^|/)jquery([^.]*)\.unobtrusive\-ajax(\.min)?\.js$ # Microsoft Ajax - (^|/)[Mm]icrosoft([Mm]vc)?([Aa]jax|[Vv]alidation)(\.debug)?\.js$ diff --git a/test/test_blob.rb b/test/test_blob.rb index 9825e9f9..16f228c3 100644 --- a/test/test_blob.rb +++ b/test/test_blob.rb @@ -269,6 +269,11 @@ class TestBlob < Test::Unit::TestCase # jQuery validation plugin (MS bundles this with asp.net mvc) assert blob("Scripts/jquery.validate.js").vendored? + assert blob("Scripts/jquery.validate.min.js").vendored? + assert blob("Scripts/jquery.validate.unobtrusive.js").vendored? + assert blob("Scripts/jquery.validate.unobtrusive.min.js").vendored? + assert blob("Scripts/jquery.unobtrusive-ajax.js").vendored? + assert blob("Scripts/jquery.unobtrusive-ajax.min.js").vendored? # NuGet Packages assert blob("packages/Modernizr.2.0.6/Content/Scripts/modernizr-2.0.6-development-only.js").vendored? From 0479f72a933c77b947eff1bd98d91d416b194ea9 Mon Sep 17 00:00:00 2001 From: Richard Osborne Date: Sat, 9 Feb 2013 13:13:21 +0000 Subject: [PATCH 003/184] Add detection for the XC programming language. --- lib/linguist/languages.yml | 7 +++++++ samples/XC/main.xc | 10 ++++++++++ 2 files changed, 17 insertions(+) create mode 100644 samples/XC/main.xc diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index f6610b64..8842192f 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -1222,6 +1222,13 @@ Visual Basic: - .vba - .vbs +XC: + type: programming + lexer: C + primary_extension: .xc + extensions: + - .xc + XML: type: markup ace_mode: xml diff --git a/samples/XC/main.xc b/samples/XC/main.xc new file mode 100644 index 00000000..6c6466c6 --- /dev/null +++ b/samples/XC/main.xc @@ -0,0 +1,10 @@ +int main() +{ + int x; + chan c; + par { + c <: 0; + c :> x; + } + return x; +} From 4398cda9a5a4dbca30551a656d6e4816e11f7034 Mon Sep 17 00:00:00 2001 From: Xidorn Quan Date: Fri, 1 Mar 2013 16:15:56 +0800 Subject: [PATCH 004/184] Detect minified CSS files --- lib/linguist/generated.rb | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/lib/linguist/generated.rb b/lib/linguist/generated.rb index 534ed798..4bbea954 100644 --- a/lib/linguist/generated.rb +++ b/lib/linguist/generated.rb @@ -53,6 +53,7 @@ module Linguist def generated? name == 'Gemfile.lock' || minified_javascript? || + minified_css? || compiled_coffeescript? || xcode_project_file? || generated_net_docfile? || @@ -85,6 +86,21 @@ module Linguist end end + # Internal: Is the blob minified CSS? + # + # Consider CSS minified if the average line length is + # greater than 100c. + # + # Returns true or false. + def minified_css? + return unless extname == '.css' + if lines.any? + (lines.inject(0) { |n, l| n += l.length } / lines.length) > 100 + else + false + end + end + # Internal: Is the blob of JS generated by CoffeeScript? # # CoffeeScript is meant to output JS that would be difficult to From 806369ce7f5a2307e66194ca6f0ba161ae74d579 Mon Sep 17 00:00:00 2001 From: Xidorn Quan Date: Fri, 1 Mar 2013 20:50:49 +0800 Subject: [PATCH 005/184] Merge minified files detecting methods. --- lib/linguist/generated.rb | 29 +++++++---------------------- 1 file changed, 7 insertions(+), 22 deletions(-) diff --git a/lib/linguist/generated.rb b/lib/linguist/generated.rb index 4bbea954..ebf24a9f 100644 --- a/lib/linguist/generated.rb +++ b/lib/linguist/generated.rb @@ -52,8 +52,7 @@ module Linguist # Return true or false def generated? name == 'Gemfile.lock' || - minified_javascript? || - minified_css? || + minified_files? || compiled_coffeescript? || xcode_project_file? || generated_net_docfile? || @@ -71,29 +70,15 @@ module Linguist ['.xib', '.nib', '.storyboard', '.pbxproj', '.xcworkspacedata', '.xcuserstate'].include?(extname) end - # Internal: Is the blob minified JS? + # Internal: Is the blob minified files? # - # Consider JS minified if the average line length is - # greater then 100c. + # Consider a file minified if the average line length is + # greater then 100c. Currently only JS and CSS files are + # detected by this method. # # Returns true or false. - def minified_javascript? - return unless extname == '.js' - if lines.any? - (lines.inject(0) { |n, l| n += l.length } / lines.length) > 100 - else - false - end - end - - # Internal: Is the blob minified CSS? - # - # Consider CSS minified if the average line length is - # greater than 100c. - # - # Returns true or false. - def minified_css? - return unless extname == '.css' + def minified_files? + return unless ['.js', '.css'].include? extname if lines.any? (lines.inject(0) { |n, l| n += l.length } / lines.length) > 100 else From 9a5f9a5e9b207122ed36b4148f6eb82352091ad2 Mon Sep 17 00:00:00 2001 From: Xidorn Quan Date: Sat, 2 Mar 2013 13:15:42 +0800 Subject: [PATCH 006/184] Use space rate to distinguish minified files. Minified JS files usually contain less than 2% spaces, while minified CSS files may contain about 4% spaces. However, an unminified CSS file may also have as low as 6% spaces, especially when it includes some resources inline. Consequently, the division might not be appreciate for CSS files. Even though, it will only mis-recognize a normal file as minified for a few special cases. --- lib/linguist/generated.rb | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/lib/linguist/generated.rb b/lib/linguist/generated.rb index ebf24a9f..b7c2d4d6 100644 --- a/lib/linguist/generated.rb +++ b/lib/linguist/generated.rb @@ -72,15 +72,14 @@ module Linguist # Internal: Is the blob minified files? # - # Consider a file minified if the average line length is - # greater then 100c. Currently only JS and CSS files are - # detected by this method. + # Consider a file minified if it contains more than 5% spaces. + # Currently, only JS and CSS files are detected by this method. # # Returns true or false. def minified_files? return unless ['.js', '.css'].include? extname - if lines.any? - (lines.inject(0) { |n, l| n += l.length } / lines.length) > 100 + if data && data.length > 200 + (data.each_char.count{ |c| c <= ' ' } / data.length.to_f) < 0.05 else false end From fc8d2f641cbd0f601f1575b5c787e43fb7cd3394 Mon Sep 17 00:00:00 2001 From: Xidorn Quan Date: Sat, 2 Mar 2013 14:27:51 +0800 Subject: [PATCH 007/184] Add samples and tests for minified CSS detection. --- samples/CSS/bootstrap.css | 6307 +++++++++++++++++++++++++++++++++ samples/CSS/bootstrap.min.css | 873 +++++ test/test_blob.rb | 4 + 3 files changed, 7184 insertions(+) create mode 100644 samples/CSS/bootstrap.css create mode 100644 samples/CSS/bootstrap.min.css diff --git a/samples/CSS/bootstrap.css b/samples/CSS/bootstrap.css new file mode 100644 index 00000000..6b2ba309 --- /dev/null +++ b/samples/CSS/bootstrap.css @@ -0,0 +1,6307 @@ +/*! + * Bootstrap v2.3.1 + * + * Copyright 2012 Twitter, Inc + * Licensed under the Apache License v2.0 + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Designed and built with all the love in the world @twitter by @mdo and @fat. + */ +.clearfix { + *zoom: 1; +} +.clearfix:before, +.clearfix:after { + display: table; + content: ""; + line-height: 0; +} +.clearfix:after { + clear: both; +} +.hide-text { + font: 0/0 a; + color: transparent; + text-shadow: none; + background-color: transparent; + border: 0; +} +.input-block-level { + display: block; + width: 100%; + min-height: 30px; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; +} +article, +aside, +details, +figcaption, +figure, +footer, +header, +hgroup, +nav, +section { + display: block; +} +audio, +canvas, +video { + display: inline-block; + *display: inline; + *zoom: 1; +} +audio:not([controls]) { + display: none; +} +html { + font-size: 100%; + -webkit-text-size-adjust: 100%; + -ms-text-size-adjust: 100%; +} +a:focus { + outline: thin dotted #333; + outline: 5px auto -webkit-focus-ring-color; + outline-offset: -2px; +} +a:hover, +a:active { + outline: 0; +} +sub, +sup { + position: relative; + font-size: 75%; + line-height: 0; + vertical-align: baseline; +} +sup { + top: -0.5em; +} +sub { + bottom: -0.25em; +} +img { + /* Responsive images (ensure images don't scale beyond their parents) */ + + max-width: 100%; + /* Part 1: Set a maxium relative to the parent */ + + width: auto\9; + /* IE7-8 need help adjusting responsive images */ + + height: auto; + /* Part 2: Scale the height according to the width, otherwise you get stretching */ + + vertical-align: middle; + border: 0; + -ms-interpolation-mode: bicubic; +} +#map_canvas img, +.google-maps img { + max-width: none; +} +button, +input, +select, +textarea { + margin: 0; + font-size: 100%; + vertical-align: middle; +} +button, +input { + *overflow: visible; + line-height: normal; +} +button::-moz-focus-inner, +input::-moz-focus-inner { + padding: 0; + border: 0; +} +button, +html input[type="button"], +input[type="reset"], +input[type="submit"] { + -webkit-appearance: button; + cursor: pointer; +} +label, +select, +button, +input[type="button"], +input[type="reset"], +input[type="submit"], +input[type="radio"], +input[type="checkbox"] { + cursor: pointer; +} +input[type="search"] { + -webkit-box-sizing: content-box; + -moz-box-sizing: content-box; + box-sizing: content-box; + -webkit-appearance: textfield; +} +input[type="search"]::-webkit-search-decoration, +input[type="search"]::-webkit-search-cancel-button { + -webkit-appearance: none; +} +textarea { + overflow: auto; + vertical-align: top; +} +@media print { + * { + text-shadow: none !important; + color: #000 !important; + background: transparent !important; + box-shadow: none !important; + } + a, + a:visited { + text-decoration: underline; + } + a[href]:after { + content: " (" attr(href) ")"; + } + abbr[title]:after { + content: " (" attr(title) ")"; + } + .ir a:after, + a[href^="javascript:"]:after, + a[href^="#"]:after { + content: ""; + } + pre, + blockquote { + border: 1px solid #999; + page-break-inside: avoid; + } + thead { + display: table-header-group; + } + tr, + img { + page-break-inside: avoid; + } + img { + max-width: 100% !important; + } + @page { + margin: 0.5cm; + } + p, + h2, + h3 { + orphans: 3; + widows: 3; + } + h2, + h3 { + page-break-after: avoid; + } +} +body { + margin: 0; + font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; + font-size: 14px; + line-height: 20px; + color: #333333; + background-color: #ffffff; +} +a { + color: #0088cc; + text-decoration: none; +} +a:hover, +a:focus { + color: #005580; + text-decoration: underline; +} +.img-rounded { + -webkit-border-radius: 6px; + -moz-border-radius: 6px; + border-radius: 6px; +} +.img-polaroid { + padding: 4px; + background-color: #fff; + border: 1px solid #ccc; + border: 1px solid rgba(0, 0, 0, 0.2); + -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); + -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); + box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); +} +.img-circle { + -webkit-border-radius: 500px; + -moz-border-radius: 500px; + border-radius: 500px; +} +.row { + margin-left: -20px; + *zoom: 1; +} +.row:before, +.row:after { + display: table; + content: ""; + line-height: 0; +} +.row:after { + clear: both; +} +[class*="span"] { + float: left; + min-height: 1px; + margin-left: 20px; +} +.container, +.navbar-static-top .container, +.navbar-fixed-top .container, +.navbar-fixed-bottom .container { + width: 940px; +} +.span12 { + width: 940px; +} +.span11 { + width: 860px; +} +.span10 { + width: 780px; +} +.span9 { + width: 700px; +} +.span8 { + width: 620px; +} +.span7 { + width: 540px; +} +.span6 { + width: 460px; +} +.span5 { + width: 380px; +} +.span4 { + width: 300px; +} +.span3 { + width: 220px; +} +.span2 { + width: 140px; +} +.span1 { + width: 60px; +} +.offset12 { + margin-left: 980px; +} +.offset11 { + margin-left: 900px; +} +.offset10 { + margin-left: 820px; +} +.offset9 { + margin-left: 740px; +} +.offset8 { + margin-left: 660px; +} +.offset7 { + margin-left: 580px; +} +.offset6 { + margin-left: 500px; +} +.offset5 { + margin-left: 420px; +} +.offset4 { + margin-left: 340px; +} +.offset3 { + margin-left: 260px; +} +.offset2 { + margin-left: 180px; +} +.offset1 { + margin-left: 100px; +} +.row-fluid { + width: 100%; + *zoom: 1; +} +.row-fluid:before, +.row-fluid:after { + display: table; + content: ""; + line-height: 0; +} +.row-fluid:after { + clear: both; +} +.row-fluid [class*="span"] { + display: block; + width: 100%; + min-height: 30px; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; + float: left; + margin-left: 2.127659574468085%; + *margin-left: 2.074468085106383%; +} +.row-fluid [class*="span"]:first-child { + margin-left: 0; +} +.row-fluid .controls-row [class*="span"] + [class*="span"] { + margin-left: 2.127659574468085%; +} +.row-fluid .span12 { + width: 100%; + *width: 99.94680851063829%; +} +.row-fluid .span11 { + width: 91.48936170212765%; + *width: 91.43617021276594%; +} +.row-fluid .span10 { + width: 82.97872340425532%; + *width: 82.92553191489361%; +} +.row-fluid .span9 { + width: 74.46808510638297%; + *width: 74.41489361702126%; +} +.row-fluid .span8 { + width: 65.95744680851064%; + *width: 65.90425531914893%; +} +.row-fluid .span7 { + width: 57.44680851063829%; + *width: 57.39361702127659%; +} +.row-fluid .span6 { + width: 48.93617021276595%; + *width: 48.88297872340425%; +} +.row-fluid .span5 { + width: 40.42553191489362%; + *width: 40.37234042553192%; +} +.row-fluid .span4 { + width: 31.914893617021278%; + *width: 31.861702127659576%; +} +.row-fluid .span3 { + width: 23.404255319148934%; + *width: 23.351063829787233%; +} +.row-fluid .span2 { + width: 14.893617021276595%; + *width: 14.840425531914894%; +} +.row-fluid .span1 { + width: 6.382978723404255%; + *width: 6.329787234042553%; +} +.row-fluid .offset12 { + margin-left: 104.25531914893617%; + *margin-left: 104.14893617021275%; +} +.row-fluid .offset12:first-child { + margin-left: 102.12765957446808%; + *margin-left: 102.02127659574467%; +} +.row-fluid .offset11 { + margin-left: 95.74468085106382%; + *margin-left: 95.6382978723404%; +} +.row-fluid .offset11:first-child { + margin-left: 93.61702127659574%; + *margin-left: 93.51063829787232%; +} +.row-fluid .offset10 { + margin-left: 87.23404255319149%; + *margin-left: 87.12765957446807%; +} +.row-fluid .offset10:first-child { + margin-left: 85.1063829787234%; + *margin-left: 84.99999999999999%; +} +.row-fluid .offset9 { + margin-left: 78.72340425531914%; + *margin-left: 78.61702127659572%; +} +.row-fluid .offset9:first-child { + margin-left: 76.59574468085106%; + *margin-left: 76.48936170212764%; +} +.row-fluid .offset8 { + margin-left: 70.2127659574468%; + *margin-left: 70.10638297872339%; +} +.row-fluid .offset8:first-child { + margin-left: 68.08510638297872%; + *margin-left: 67.9787234042553%; +} +.row-fluid .offset7 { + margin-left: 61.70212765957446%; + *margin-left: 61.59574468085106%; +} +.row-fluid .offset7:first-child { + margin-left: 59.574468085106375%; + *margin-left: 59.46808510638297%; +} +.row-fluid .offset6 { + margin-left: 53.191489361702125%; + *margin-left: 53.085106382978715%; +} +.row-fluid .offset6:first-child { + margin-left: 51.063829787234035%; + *margin-left: 50.95744680851063%; +} +.row-fluid .offset5 { + margin-left: 44.68085106382979%; + *margin-left: 44.57446808510638%; +} +.row-fluid .offset5:first-child { + margin-left: 42.5531914893617%; + *margin-left: 42.4468085106383%; +} +.row-fluid .offset4 { + margin-left: 36.170212765957444%; + *margin-left: 36.06382978723405%; +} +.row-fluid .offset4:first-child { + margin-left: 34.04255319148936%; + *margin-left: 33.93617021276596%; +} +.row-fluid .offset3 { + margin-left: 27.659574468085104%; + *margin-left: 27.5531914893617%; +} +.row-fluid .offset3:first-child { + margin-left: 25.53191489361702%; + *margin-left: 25.425531914893618%; +} +.row-fluid .offset2 { + margin-left: 19.148936170212764%; + *margin-left: 19.04255319148936%; +} +.row-fluid .offset2:first-child { + margin-left: 17.02127659574468%; + *margin-left: 16.914893617021278%; +} +.row-fluid .offset1 { + margin-left: 10.638297872340425%; + *margin-left: 10.53191489361702%; +} +.row-fluid .offset1:first-child { + margin-left: 8.51063829787234%; + *margin-left: 8.404255319148938%; +} +[class*="span"].hide, +.row-fluid [class*="span"].hide { + display: none; +} +[class*="span"].pull-right, +.row-fluid [class*="span"].pull-right { + float: right; +} +.container { + margin-right: auto; + margin-left: auto; + *zoom: 1; +} +.container:before, +.container:after { + display: table; + content: ""; + line-height: 0; +} +.container:after { + clear: both; +} +.container-fluid { + padding-right: 20px; + padding-left: 20px; + *zoom: 1; +} +.container-fluid:before, +.container-fluid:after { + display: table; + content: ""; + line-height: 0; +} +.container-fluid:after { + clear: both; +} +p { + margin: 0 0 10px; +} +.lead { + margin-bottom: 20px; + font-size: 21px; + font-weight: 200; + line-height: 30px; +} +small { + font-size: 85%; +} +strong { + font-weight: bold; +} +em { + font-style: italic; +} +cite { + font-style: normal; +} +.muted { + color: #999999; +} +a.muted:hover, +a.muted:focus { + color: #808080; +} +.text-warning { + color: #c09853; +} +a.text-warning:hover, +a.text-warning:focus { + color: #a47e3c; +} +.text-error { + color: #b94a48; +} +a.text-error:hover, +a.text-error:focus { + color: #953b39; +} +.text-info { + color: #3a87ad; +} +a.text-info:hover, +a.text-info:focus { + color: #2d6987; +} +.text-success { + color: #468847; +} +a.text-success:hover, +a.text-success:focus { + color: #356635; +} +.text-left { + text-align: left; +} +.text-right { + text-align: right; +} +.text-center { + text-align: center; +} +h1, +h2, +h3, +h4, +h5, +h6 { + margin: 10px 0; + font-family: inherit; + font-weight: bold; + line-height: 20px; + color: inherit; + text-rendering: optimizelegibility; +} +h1 small, +h2 small, +h3 small, +h4 small, +h5 small, +h6 small { + font-weight: normal; + line-height: 1; + color: #999999; +} +h1, +h2, +h3 { + line-height: 40px; +} +h1 { + font-size: 38.5px; +} +h2 { + font-size: 31.5px; +} +h3 { + font-size: 24.5px; +} +h4 { + font-size: 17.5px; +} +h5 { + font-size: 14px; +} +h6 { + font-size: 11.9px; +} +h1 small { + font-size: 24.5px; +} +h2 small { + font-size: 17.5px; +} +h3 small { + font-size: 14px; +} +h4 small { + font-size: 14px; +} +.page-header { + padding-bottom: 9px; + margin: 20px 0 30px; + border-bottom: 1px solid #eeeeee; +} +ul, +ol { + padding: 0; + margin: 0 0 10px 25px; +} +ul ul, +ul ol, +ol ol, +ol ul { + margin-bottom: 0; +} +li { + line-height: 20px; +} +ul.unstyled, +ol.unstyled { + margin-left: 0; + list-style: none; +} +ul.inline, +ol.inline { + margin-left: 0; + list-style: none; +} +ul.inline > li, +ol.inline > li { + display: inline-block; + *display: inline; + /* IE7 inline-block hack */ + + *zoom: 1; + padding-left: 5px; + padding-right: 5px; +} +dl { + margin-bottom: 20px; +} +dt, +dd { + line-height: 20px; +} +dt { + font-weight: bold; +} +dd { + margin-left: 10px; +} +.dl-horizontal { + *zoom: 1; +} +.dl-horizontal:before, +.dl-horizontal:after { + display: table; + content: ""; + line-height: 0; +} +.dl-horizontal:after { + clear: both; +} +.dl-horizontal dt { + float: left; + width: 160px; + clear: left; + text-align: right; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; +} +.dl-horizontal dd { + margin-left: 180px; +} +hr { + margin: 20px 0; + border: 0; + border-top: 1px solid #eeeeee; + border-bottom: 1px solid #ffffff; +} +abbr[title], +abbr[data-original-title] { + cursor: help; + border-bottom: 1px dotted #999999; +} +abbr.initialism { + font-size: 90%; + text-transform: uppercase; +} +blockquote { + padding: 0 0 0 15px; + margin: 0 0 20px; + border-left: 5px solid #eeeeee; +} +blockquote p { + margin-bottom: 0; + font-size: 17.5px; + font-weight: 300; + line-height: 1.25; +} +blockquote small { + display: block; + line-height: 20px; + color: #999999; +} +blockquote small:before { + content: '\2014 \00A0'; +} +blockquote.pull-right { + float: right; + padding-right: 15px; + padding-left: 0; + border-right: 5px solid #eeeeee; + border-left: 0; +} +blockquote.pull-right p, +blockquote.pull-right small { + text-align: right; +} +blockquote.pull-right small:before { + content: ''; +} +blockquote.pull-right small:after { + content: '\00A0 \2014'; +} +q:before, +q:after, +blockquote:before, +blockquote:after { + content: ""; +} +address { + display: block; + margin-bottom: 20px; + font-style: normal; + line-height: 20px; +} +code, +pre { + padding: 0 3px 2px; + font-family: Monaco, Menlo, Consolas, "Courier New", monospace; + font-size: 12px; + color: #333333; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + border-radius: 3px; +} +code { + padding: 2px 4px; + color: #d14; + background-color: #f7f7f9; + border: 1px solid #e1e1e8; + white-space: nowrap; +} +pre { + display: block; + padding: 9.5px; + margin: 0 0 10px; + font-size: 13px; + line-height: 20px; + word-break: break-all; + word-wrap: break-word; + white-space: pre; + white-space: pre-wrap; + background-color: #f5f5f5; + border: 1px solid #ccc; + border: 1px solid rgba(0, 0, 0, 0.15); + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + border-radius: 4px; +} +pre.prettyprint { + margin-bottom: 20px; +} +pre code { + padding: 0; + color: inherit; + white-space: pre; + white-space: pre-wrap; + background-color: transparent; + border: 0; +} +.pre-scrollable { + max-height: 340px; + overflow-y: scroll; +} +.label, +.badge { + display: inline-block; + padding: 2px 4px; + font-size: 11.844px; + font-weight: bold; + line-height: 14px; + color: #ffffff; + vertical-align: baseline; + white-space: nowrap; + text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); + background-color: #999999; +} +.label { + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + border-radius: 3px; +} +.badge { + padding-left: 9px; + padding-right: 9px; + -webkit-border-radius: 9px; + -moz-border-radius: 9px; + border-radius: 9px; +} +.label:empty, +.badge:empty { + display: none; +} +a.label:hover, +a.label:focus, +a.badge:hover, +a.badge:focus { + color: #ffffff; + text-decoration: none; + cursor: pointer; +} +.label-important, +.badge-important { + background-color: #b94a48; +} +.label-important[href], +.badge-important[href] { + background-color: #953b39; +} +.label-warning, +.badge-warning { + background-color: #f89406; +} +.label-warning[href], +.badge-warning[href] { + background-color: #c67605; +} +.label-success, +.badge-success { + background-color: #468847; +} +.label-success[href], +.badge-success[href] { + background-color: #356635; +} +.label-info, +.badge-info { + background-color: #3a87ad; +} +.label-info[href], +.badge-info[href] { + background-color: #2d6987; +} +.label-inverse, +.badge-inverse { + background-color: #333333; +} +.label-inverse[href], +.badge-inverse[href] { + background-color: #1a1a1a; +} +.btn .label, +.btn .badge { + position: relative; + top: -1px; +} +.btn-mini .label, +.btn-mini .badge { + top: 0; +} +table { + max-width: 100%; + background-color: transparent; + border-collapse: collapse; + border-spacing: 0; +} +.table { + width: 100%; + margin-bottom: 20px; +} +.table th, +.table td { + padding: 8px; + line-height: 20px; + text-align: left; + vertical-align: top; + border-top: 1px solid #dddddd; +} +.table th { + font-weight: bold; +} +.table thead th { + vertical-align: bottom; +} +.table caption + thead tr:first-child th, +.table caption + thead tr:first-child td, +.table colgroup + thead tr:first-child th, +.table colgroup + thead tr:first-child td, +.table thead:first-child tr:first-child th, +.table thead:first-child tr:first-child td { + border-top: 0; +} +.table tbody + tbody { + border-top: 2px solid #dddddd; +} +.table .table { + background-color: #ffffff; +} +.table-condensed th, +.table-condensed td { + padding: 4px 5px; +} +.table-bordered { + border: 1px solid #dddddd; + border-collapse: separate; + *border-collapse: collapse; + border-left: 0; + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + border-radius: 4px; +} +.table-bordered th, +.table-bordered td { + border-left: 1px solid #dddddd; +} +.table-bordered caption + thead tr:first-child th, +.table-bordered caption + tbody tr:first-child th, +.table-bordered caption + tbody tr:first-child td, +.table-bordered colgroup + thead tr:first-child th, +.table-bordered colgroup + tbody tr:first-child th, +.table-bordered colgroup + tbody tr:first-child td, +.table-bordered thead:first-child tr:first-child th, +.table-bordered tbody:first-child tr:first-child th, +.table-bordered tbody:first-child tr:first-child td { + border-top: 0; +} +.table-bordered thead:first-child tr:first-child > th:first-child, +.table-bordered tbody:first-child tr:first-child > td:first-child, +.table-bordered tbody:first-child tr:first-child > th:first-child { + -webkit-border-top-left-radius: 4px; + -moz-border-radius-topleft: 4px; + border-top-left-radius: 4px; +} +.table-bordered thead:first-child tr:first-child > th:last-child, +.table-bordered tbody:first-child tr:first-child > td:last-child, +.table-bordered tbody:first-child tr:first-child > th:last-child { + -webkit-border-top-right-radius: 4px; + -moz-border-radius-topright: 4px; + border-top-right-radius: 4px; +} +.table-bordered thead:last-child tr:last-child > th:first-child, +.table-bordered tbody:last-child tr:last-child > td:first-child, +.table-bordered tbody:last-child tr:last-child > th:first-child, +.table-bordered tfoot:last-child tr:last-child > td:first-child, +.table-bordered tfoot:last-child tr:last-child > th:first-child { + -webkit-border-bottom-left-radius: 4px; + -moz-border-radius-bottomleft: 4px; + border-bottom-left-radius: 4px; +} +.table-bordered thead:last-child tr:last-child > th:last-child, +.table-bordered tbody:last-child tr:last-child > td:last-child, +.table-bordered tbody:last-child tr:last-child > th:last-child, +.table-bordered tfoot:last-child tr:last-child > td:last-child, +.table-bordered tfoot:last-child tr:last-child > th:last-child { + -webkit-border-bottom-right-radius: 4px; + -moz-border-radius-bottomright: 4px; + border-bottom-right-radius: 4px; +} +.table-bordered tfoot + tbody:last-child tr:last-child td:first-child { + -webkit-border-bottom-left-radius: 0; + -moz-border-radius-bottomleft: 0; + border-bottom-left-radius: 0; +} +.table-bordered tfoot + tbody:last-child tr:last-child td:last-child { + -webkit-border-bottom-right-radius: 0; + -moz-border-radius-bottomright: 0; + border-bottom-right-radius: 0; +} +.table-bordered caption + thead tr:first-child th:first-child, +.table-bordered caption + tbody tr:first-child td:first-child, +.table-bordered colgroup + thead tr:first-child th:first-child, +.table-bordered colgroup + tbody tr:first-child td:first-child { + -webkit-border-top-left-radius: 4px; + -moz-border-radius-topleft: 4px; + border-top-left-radius: 4px; +} +.table-bordered caption + thead tr:first-child th:last-child, +.table-bordered caption + tbody tr:first-child td:last-child, +.table-bordered colgroup + thead tr:first-child th:last-child, +.table-bordered colgroup + tbody tr:first-child td:last-child { + -webkit-border-top-right-radius: 4px; + -moz-border-radius-topright: 4px; + border-top-right-radius: 4px; +} +.table-striped tbody > tr:nth-child(odd) > td, +.table-striped tbody > tr:nth-child(odd) > th { + background-color: #f9f9f9; +} +.table-hover tbody tr:hover > td, +.table-hover tbody tr:hover > th { + background-color: #f5f5f5; +} +table td[class*="span"], +table th[class*="span"], +.row-fluid table td[class*="span"], +.row-fluid table th[class*="span"] { + display: table-cell; + float: none; + margin-left: 0; +} +.table td.span1, +.table th.span1 { + float: none; + width: 44px; + margin-left: 0; +} +.table td.span2, +.table th.span2 { + float: none; + width: 124px; + margin-left: 0; +} +.table td.span3, +.table th.span3 { + float: none; + width: 204px; + margin-left: 0; +} +.table td.span4, +.table th.span4 { + float: none; + width: 284px; + margin-left: 0; +} +.table td.span5, +.table th.span5 { + float: none; + width: 364px; + margin-left: 0; +} +.table td.span6, +.table th.span6 { + float: none; + width: 444px; + margin-left: 0; +} +.table td.span7, +.table th.span7 { + float: none; + width: 524px; + margin-left: 0; +} +.table td.span8, +.table th.span8 { + float: none; + width: 604px; + margin-left: 0; +} +.table td.span9, +.table th.span9 { + float: none; + width: 684px; + margin-left: 0; +} +.table td.span10, +.table th.span10 { + float: none; + width: 764px; + margin-left: 0; +} +.table td.span11, +.table th.span11 { + float: none; + width: 844px; + margin-left: 0; +} +.table td.span12, +.table th.span12 { + float: none; + width: 924px; + margin-left: 0; +} +.table tbody tr.success > td { + background-color: #dff0d8; +} +.table tbody tr.error > td { + background-color: #f2dede; +} +.table tbody tr.warning > td { + background-color: #fcf8e3; +} +.table tbody tr.info > td { + background-color: #d9edf7; +} +.table-hover tbody tr.success:hover > td { + background-color: #d0e9c6; +} +.table-hover tbody tr.error:hover > td { + background-color: #ebcccc; +} +.table-hover tbody tr.warning:hover > td { + background-color: #faf2cc; +} +.table-hover tbody tr.info:hover > td { + background-color: #c4e3f3; +} +form { + margin: 0 0 20px; +} +fieldset { + padding: 0; + margin: 0; + border: 0; +} +legend { + display: block; + width: 100%; + padding: 0; + margin-bottom: 20px; + font-size: 21px; + line-height: 40px; + color: #333333; + border: 0; + border-bottom: 1px solid #e5e5e5; +} +legend small { + font-size: 15px; + color: #999999; +} +label, +input, +button, +select, +textarea { + font-size: 14px; + font-weight: normal; + line-height: 20px; +} +input, +button, +select, +textarea { + font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; +} +label { + display: block; + margin-bottom: 5px; +} +select, +textarea, +input[type="text"], +input[type="password"], +input[type="datetime"], +input[type="datetime-local"], +input[type="date"], +input[type="month"], +input[type="time"], +input[type="week"], +input[type="number"], +input[type="email"], +input[type="url"], +input[type="search"], +input[type="tel"], +input[type="color"], +.uneditable-input { + display: inline-block; + height: 20px; + padding: 4px 6px; + margin-bottom: 10px; + font-size: 14px; + line-height: 20px; + color: #555555; + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + border-radius: 4px; + vertical-align: middle; +} +input, +textarea, +.uneditable-input { + width: 206px; +} +textarea { + height: auto; +} +textarea, +input[type="text"], +input[type="password"], +input[type="datetime"], +input[type="datetime-local"], +input[type="date"], +input[type="month"], +input[type="time"], +input[type="week"], +input[type="number"], +input[type="email"], +input[type="url"], +input[type="search"], +input[type="tel"], +input[type="color"], +.uneditable-input { + background-color: #ffffff; + border: 1px solid #cccccc; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + -webkit-transition: border linear .2s, box-shadow linear .2s; + -moz-transition: border linear .2s, box-shadow linear .2s; + -o-transition: border linear .2s, box-shadow linear .2s; + transition: border linear .2s, box-shadow linear .2s; +} +textarea:focus, +input[type="text"]:focus, +input[type="password"]:focus, +input[type="datetime"]:focus, +input[type="datetime-local"]:focus, +input[type="date"]:focus, +input[type="month"]:focus, +input[type="time"]:focus, +input[type="week"]:focus, +input[type="number"]:focus, +input[type="email"]:focus, +input[type="url"]:focus, +input[type="search"]:focus, +input[type="tel"]:focus, +input[type="color"]:focus, +.uneditable-input:focus { + border-color: rgba(82, 168, 236, 0.8); + outline: 0; + outline: thin dotted \9; + /* IE6-9 */ + + -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6); + -moz-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6); + box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6); +} +input[type="radio"], +input[type="checkbox"] { + margin: 4px 0 0; + *margin-top: 0; + /* IE7 */ + + margin-top: 1px \9; + /* IE8-9 */ + + line-height: normal; +} +input[type="file"], +input[type="image"], +input[type="submit"], +input[type="reset"], +input[type="button"], +input[type="radio"], +input[type="checkbox"] { + width: auto; +} +select, +input[type="file"] { + height: 30px; + /* In IE7, the height of the select element cannot be changed by height, only font-size */ + + *margin-top: 4px; + /* For IE7, add top margin to align select with labels */ + + line-height: 30px; +} +select { + width: 220px; + border: 1px solid #cccccc; + background-color: #ffffff; +} +select[multiple], +select[size] { + height: auto; +} +select:focus, +input[type="file"]:focus, +input[type="radio"]:focus, +input[type="checkbox"]:focus { + outline: thin dotted #333; + outline: 5px auto -webkit-focus-ring-color; + outline-offset: -2px; +} +.uneditable-input, +.uneditable-textarea { + color: #999999; + background-color: #fcfcfc; + border-color: #cccccc; + -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025); + -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025); + box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025); + cursor: not-allowed; +} +.uneditable-input { + overflow: hidden; + white-space: nowrap; +} +.uneditable-textarea { + width: auto; + height: auto; +} +input:-moz-placeholder, +textarea:-moz-placeholder { + color: #999999; +} +input:-ms-input-placeholder, +textarea:-ms-input-placeholder { + color: #999999; +} +input::-webkit-input-placeholder, +textarea::-webkit-input-placeholder { + color: #999999; +} +.radio, +.checkbox { + min-height: 20px; + padding-left: 20px; +} +.radio input[type="radio"], +.checkbox input[type="checkbox"] { + float: left; + margin-left: -20px; +} +.controls > .radio:first-child, +.controls > .checkbox:first-child { + padding-top: 5px; +} +.radio.inline, +.checkbox.inline { + display: inline-block; + padding-top: 5px; + margin-bottom: 0; + vertical-align: middle; +} +.radio.inline + .radio.inline, +.checkbox.inline + .checkbox.inline { + margin-left: 10px; +} +.input-mini { + width: 60px; +} +.input-small { + width: 90px; +} +.input-medium { + width: 150px; +} +.input-large { + width: 210px; +} +.input-xlarge { + width: 270px; +} +.input-xxlarge { + width: 530px; +} +input[class*="span"], +select[class*="span"], +textarea[class*="span"], +.uneditable-input[class*="span"], +.row-fluid input[class*="span"], +.row-fluid select[class*="span"], +.row-fluid textarea[class*="span"], +.row-fluid .uneditable-input[class*="span"] { + float: none; + margin-left: 0; +} +.input-append input[class*="span"], +.input-append .uneditable-input[class*="span"], +.input-prepend input[class*="span"], +.input-prepend .uneditable-input[class*="span"], +.row-fluid input[class*="span"], +.row-fluid select[class*="span"], +.row-fluid textarea[class*="span"], +.row-fluid .uneditable-input[class*="span"], +.row-fluid .input-prepend [class*="span"], +.row-fluid .input-append [class*="span"] { + display: inline-block; +} +input, +textarea, +.uneditable-input { + margin-left: 0; +} +.controls-row [class*="span"] + [class*="span"] { + margin-left: 20px; +} +input.span12, +textarea.span12, +.uneditable-input.span12 { + width: 926px; +} +input.span11, +textarea.span11, +.uneditable-input.span11 { + width: 846px; +} +input.span10, +textarea.span10, +.uneditable-input.span10 { + width: 766px; +} +input.span9, +textarea.span9, +.uneditable-input.span9 { + width: 686px; +} +input.span8, +textarea.span8, +.uneditable-input.span8 { + width: 606px; +} +input.span7, +textarea.span7, +.uneditable-input.span7 { + width: 526px; +} +input.span6, +textarea.span6, +.uneditable-input.span6 { + width: 446px; +} +input.span5, +textarea.span5, +.uneditable-input.span5 { + width: 366px; +} +input.span4, +textarea.span4, +.uneditable-input.span4 { + width: 286px; +} +input.span3, +textarea.span3, +.uneditable-input.span3 { + width: 206px; +} +input.span2, +textarea.span2, +.uneditable-input.span2 { + width: 126px; +} +input.span1, +textarea.span1, +.uneditable-input.span1 { + width: 46px; +} +.controls-row { + *zoom: 1; +} +.controls-row:before, +.controls-row:after { + display: table; + content: ""; + line-height: 0; +} +.controls-row:after { + clear: both; +} +.controls-row [class*="span"], +.row-fluid .controls-row [class*="span"] { + float: left; +} +.controls-row .checkbox[class*="span"], +.controls-row .radio[class*="span"] { + padding-top: 5px; +} +input[disabled], +select[disabled], +textarea[disabled], +input[readonly], +select[readonly], +textarea[readonly] { + cursor: not-allowed; + background-color: #eeeeee; +} +input[type="radio"][disabled], +input[type="checkbox"][disabled], +input[type="radio"][readonly], +input[type="checkbox"][readonly] { + background-color: transparent; +} +.control-group.warning .control-label, +.control-group.warning .help-block, +.control-group.warning .help-inline { + color: #c09853; +} +.control-group.warning .checkbox, +.control-group.warning .radio, +.control-group.warning input, +.control-group.warning select, +.control-group.warning textarea { + color: #c09853; +} +.control-group.warning input, +.control-group.warning select, +.control-group.warning textarea { + border-color: #c09853; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); +} +.control-group.warning input:focus, +.control-group.warning select:focus, +.control-group.warning textarea:focus { + border-color: #a47e3c; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e; + -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e; + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e; +} +.control-group.warning .input-prepend .add-on, +.control-group.warning .input-append .add-on { + color: #c09853; + background-color: #fcf8e3; + border-color: #c09853; +} +.control-group.error .control-label, +.control-group.error .help-block, +.control-group.error .help-inline { + color: #b94a48; +} +.control-group.error .checkbox, +.control-group.error .radio, +.control-group.error input, +.control-group.error select, +.control-group.error textarea { + color: #b94a48; +} +.control-group.error input, +.control-group.error select, +.control-group.error textarea { + border-color: #b94a48; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); +} +.control-group.error input:focus, +.control-group.error select:focus, +.control-group.error textarea:focus { + border-color: #953b39; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392; + -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392; + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392; +} +.control-group.error .input-prepend .add-on, +.control-group.error .input-append .add-on { + color: #b94a48; + background-color: #f2dede; + border-color: #b94a48; +} +.control-group.success .control-label, +.control-group.success .help-block, +.control-group.success .help-inline { + color: #468847; +} +.control-group.success .checkbox, +.control-group.success .radio, +.control-group.success input, +.control-group.success select, +.control-group.success textarea { + color: #468847; +} +.control-group.success input, +.control-group.success select, +.control-group.success textarea { + border-color: #468847; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); +} +.control-group.success input:focus, +.control-group.success select:focus, +.control-group.success textarea:focus { + border-color: #356635; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b; + -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b; + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b; +} +.control-group.success .input-prepend .add-on, +.control-group.success .input-append .add-on { + color: #468847; + background-color: #dff0d8; + border-color: #468847; +} +.control-group.info .control-label, +.control-group.info .help-block, +.control-group.info .help-inline { + color: #3a87ad; +} +.control-group.info .checkbox, +.control-group.info .radio, +.control-group.info input, +.control-group.info select, +.control-group.info textarea { + color: #3a87ad; +} +.control-group.info input, +.control-group.info select, +.control-group.info textarea { + border-color: #3a87ad; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); +} +.control-group.info input:focus, +.control-group.info select:focus, +.control-group.info textarea:focus { + border-color: #2d6987; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7ab5d3; + -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7ab5d3; + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7ab5d3; +} +.control-group.info .input-prepend .add-on, +.control-group.info .input-append .add-on { + color: #3a87ad; + background-color: #d9edf7; + border-color: #3a87ad; +} +input:focus:invalid, +textarea:focus:invalid, +select:focus:invalid { + color: #b94a48; + border-color: #ee5f5b; +} +input:focus:invalid:focus, +textarea:focus:invalid:focus, +select:focus:invalid:focus { + border-color: #e9322d; + -webkit-box-shadow: 0 0 6px #f8b9b7; + -moz-box-shadow: 0 0 6px #f8b9b7; + box-shadow: 0 0 6px #f8b9b7; +} +.form-actions { + padding: 19px 20px 20px; + margin-top: 20px; + margin-bottom: 20px; + background-color: #f5f5f5; + border-top: 1px solid #e5e5e5; + *zoom: 1; +} +.form-actions:before, +.form-actions:after { + display: table; + content: ""; + line-height: 0; +} +.form-actions:after { + clear: both; +} +.help-block, +.help-inline { + color: #595959; +} +.help-block { + display: block; + margin-bottom: 10px; +} +.help-inline { + display: inline-block; + *display: inline; + /* IE7 inline-block hack */ + + *zoom: 1; + vertical-align: middle; + padding-left: 5px; +} +.input-append, +.input-prepend { + display: inline-block; + margin-bottom: 10px; + vertical-align: middle; + font-size: 0; + white-space: nowrap; +} +.input-append input, +.input-prepend input, +.input-append select, +.input-prepend select, +.input-append .uneditable-input, +.input-prepend .uneditable-input, +.input-append .dropdown-menu, +.input-prepend .dropdown-menu, +.input-append .popover, +.input-prepend .popover { + font-size: 14px; +} +.input-append input, +.input-prepend input, +.input-append select, +.input-prepend select, +.input-append .uneditable-input, +.input-prepend .uneditable-input { + position: relative; + margin-bottom: 0; + *margin-left: 0; + vertical-align: top; + -webkit-border-radius: 0 4px 4px 0; + -moz-border-radius: 0 4px 4px 0; + border-radius: 0 4px 4px 0; +} +.input-append input:focus, +.input-prepend input:focus, +.input-append select:focus, +.input-prepend select:focus, +.input-append .uneditable-input:focus, +.input-prepend .uneditable-input:focus { + z-index: 2; +} +.input-append .add-on, +.input-prepend .add-on { + display: inline-block; + width: auto; + height: 20px; + min-width: 16px; + padding: 4px 5px; + font-size: 14px; + font-weight: normal; + line-height: 20px; + text-align: center; + text-shadow: 0 1px 0 #ffffff; + background-color: #eeeeee; + border: 1px solid #ccc; +} +.input-append .add-on, +.input-prepend .add-on, +.input-append .btn, +.input-prepend .btn, +.input-append .btn-group > .dropdown-toggle, +.input-prepend .btn-group > .dropdown-toggle { + vertical-align: top; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} +.input-append .active, +.input-prepend .active { + background-color: #a9dba9; + border-color: #46a546; +} +.input-prepend .add-on, +.input-prepend .btn { + margin-right: -1px; +} +.input-prepend .add-on:first-child, +.input-prepend .btn:first-child { + -webkit-border-radius: 4px 0 0 4px; + -moz-border-radius: 4px 0 0 4px; + border-radius: 4px 0 0 4px; +} +.input-append input, +.input-append select, +.input-append .uneditable-input { + -webkit-border-radius: 4px 0 0 4px; + -moz-border-radius: 4px 0 0 4px; + border-radius: 4px 0 0 4px; +} +.input-append input + .btn-group .btn:last-child, +.input-append select + .btn-group .btn:last-child, +.input-append .uneditable-input + .btn-group .btn:last-child { + -webkit-border-radius: 0 4px 4px 0; + -moz-border-radius: 0 4px 4px 0; + border-radius: 0 4px 4px 0; +} +.input-append .add-on, +.input-append .btn, +.input-append .btn-group { + margin-left: -1px; +} +.input-append .add-on:last-child, +.input-append .btn:last-child, +.input-append .btn-group:last-child > .dropdown-toggle { + -webkit-border-radius: 0 4px 4px 0; + -moz-border-radius: 0 4px 4px 0; + border-radius: 0 4px 4px 0; +} +.input-prepend.input-append input, +.input-prepend.input-append select, +.input-prepend.input-append .uneditable-input { + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} +.input-prepend.input-append input + .btn-group .btn, +.input-prepend.input-append select + .btn-group .btn, +.input-prepend.input-append .uneditable-input + .btn-group .btn { + -webkit-border-radius: 0 4px 4px 0; + -moz-border-radius: 0 4px 4px 0; + border-radius: 0 4px 4px 0; +} +.input-prepend.input-append .add-on:first-child, +.input-prepend.input-append .btn:first-child { + margin-right: -1px; + -webkit-border-radius: 4px 0 0 4px; + -moz-border-radius: 4px 0 0 4px; + border-radius: 4px 0 0 4px; +} +.input-prepend.input-append .add-on:last-child, +.input-prepend.input-append .btn:last-child { + margin-left: -1px; + -webkit-border-radius: 0 4px 4px 0; + -moz-border-radius: 0 4px 4px 0; + border-radius: 0 4px 4px 0; +} +.input-prepend.input-append .btn-group:first-child { + margin-left: 0; +} +input.search-query { + padding-right: 14px; + padding-right: 4px \9; + padding-left: 14px; + padding-left: 4px \9; + /* IE7-8 doesn't have border-radius, so don't indent the padding */ + + margin-bottom: 0; + -webkit-border-radius: 15px; + -moz-border-radius: 15px; + border-radius: 15px; +} +/* Allow for input prepend/append in search forms */ +.form-search .input-append .search-query, +.form-search .input-prepend .search-query { + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} +.form-search .input-append .search-query { + -webkit-border-radius: 14px 0 0 14px; + -moz-border-radius: 14px 0 0 14px; + border-radius: 14px 0 0 14px; +} +.form-search .input-append .btn { + -webkit-border-radius: 0 14px 14px 0; + -moz-border-radius: 0 14px 14px 0; + border-radius: 0 14px 14px 0; +} +.form-search .input-prepend .search-query { + -webkit-border-radius: 0 14px 14px 0; + -moz-border-radius: 0 14px 14px 0; + border-radius: 0 14px 14px 0; +} +.form-search .input-prepend .btn { + -webkit-border-radius: 14px 0 0 14px; + -moz-border-radius: 14px 0 0 14px; + border-radius: 14px 0 0 14px; +} +.form-search input, +.form-inline input, +.form-horizontal input, +.form-search textarea, +.form-inline textarea, +.form-horizontal textarea, +.form-search select, +.form-inline select, +.form-horizontal select, +.form-search .help-inline, +.form-inline .help-inline, +.form-horizontal .help-inline, +.form-search .uneditable-input, +.form-inline .uneditable-input, +.form-horizontal .uneditable-input, +.form-search .input-prepend, +.form-inline .input-prepend, +.form-horizontal .input-prepend, +.form-search .input-append, +.form-inline .input-append, +.form-horizontal .input-append { + display: inline-block; + *display: inline; + /* IE7 inline-block hack */ + + *zoom: 1; + margin-bottom: 0; + vertical-align: middle; +} +.form-search .hide, +.form-inline .hide, +.form-horizontal .hide { + display: none; +} +.form-search label, +.form-inline label, +.form-search .btn-group, +.form-inline .btn-group { + display: inline-block; +} +.form-search .input-append, +.form-inline .input-append, +.form-search .input-prepend, +.form-inline .input-prepend { + margin-bottom: 0; +} +.form-search .radio, +.form-search .checkbox, +.form-inline .radio, +.form-inline .checkbox { + padding-left: 0; + margin-bottom: 0; + vertical-align: middle; +} +.form-search .radio input[type="radio"], +.form-search .checkbox input[type="checkbox"], +.form-inline .radio input[type="radio"], +.form-inline .checkbox input[type="checkbox"] { + float: left; + margin-right: 3px; + margin-left: 0; +} +.control-group { + margin-bottom: 10px; +} +legend + .control-group { + margin-top: 20px; + -webkit-margin-top-collapse: separate; +} +.form-horizontal .control-group { + margin-bottom: 20px; + *zoom: 1; +} +.form-horizontal .control-group:before, +.form-horizontal .control-group:after { + display: table; + content: ""; + line-height: 0; +} +.form-horizontal .control-group:after { + clear: both; +} +.form-horizontal .control-label { + float: left; + width: 160px; + padding-top: 5px; + text-align: right; +} +.form-horizontal .controls { + *display: inline-block; + *padding-left: 20px; + margin-left: 180px; + *margin-left: 0; +} +.form-horizontal .controls:first-child { + *padding-left: 180px; +} +.form-horizontal .help-block { + margin-bottom: 0; +} +.form-horizontal input + .help-block, +.form-horizontal select + .help-block, +.form-horizontal textarea + .help-block, +.form-horizontal .uneditable-input + .help-block, +.form-horizontal .input-prepend + .help-block, +.form-horizontal .input-append + .help-block { + margin-top: 10px; +} +.form-horizontal .form-actions { + padding-left: 180px; +} +.btn { + display: inline-block; + *display: inline; + /* IE7 inline-block hack */ + + *zoom: 1; + padding: 4px 12px; + margin-bottom: 0; + font-size: 14px; + line-height: 20px; + text-align: center; + vertical-align: middle; + cursor: pointer; + color: #333333; + text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75); + background-color: #f5f5f5; + background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6); + background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6)); + background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6); + background-image: -o-linear-gradient(top, #ffffff, #e6e6e6); + background-image: linear-gradient(to bottom, #ffffff, #e6e6e6); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0); + border-color: #e6e6e6 #e6e6e6 #bfbfbf; + border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); + *background-color: #e6e6e6; + /* Darken IE7 buttons by default so they stand out more given they won't have borders */ + + filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); + border: 1px solid #cccccc; + *border: 0; + border-bottom-color: #b3b3b3; + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + border-radius: 4px; + *margin-left: .3em; + -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05); + -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05); + box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05); +} +.btn:hover, +.btn:focus, +.btn:active, +.btn.active, +.btn.disabled, +.btn[disabled] { + color: #333333; + background-color: #e6e6e6; + *background-color: #d9d9d9; +} +.btn:active, +.btn.active { + background-color: #cccccc \9; +} +.btn:first-child { + *margin-left: 0; +} +.btn:hover, +.btn:focus { + color: #333333; + text-decoration: none; + background-position: 0 -15px; + -webkit-transition: background-position 0.1s linear; + -moz-transition: background-position 0.1s linear; + -o-transition: background-position 0.1s linear; + transition: background-position 0.1s linear; +} +.btn:focus { + outline: thin dotted #333; + outline: 5px auto -webkit-focus-ring-color; + outline-offset: -2px; +} +.btn.active, +.btn:active { + background-image: none; + outline: 0; + -webkit-box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05); + -moz-box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05); + box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05); +} +.btn.disabled, +.btn[disabled] { + cursor: default; + background-image: none; + opacity: 0.65; + filter: alpha(opacity=65); + -webkit-box-shadow: none; + -moz-box-shadow: none; + box-shadow: none; +} +.btn-large { + padding: 11px 19px; + font-size: 17.5px; + -webkit-border-radius: 6px; + -moz-border-radius: 6px; + border-radius: 6px; +} +.btn-large [class^="icon-"], +.btn-large [class*=" icon-"] { + margin-top: 4px; +} +.btn-small { + padding: 2px 10px; + font-size: 11.9px; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + border-radius: 3px; +} +.btn-small [class^="icon-"], +.btn-small [class*=" icon-"] { + margin-top: 0; +} +.btn-mini [class^="icon-"], +.btn-mini [class*=" icon-"] { + margin-top: -1px; +} +.btn-mini { + padding: 0 6px; + font-size: 10.5px; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + border-radius: 3px; +} +.btn-block { + display: block; + width: 100%; + padding-left: 0; + padding-right: 0; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; +} +.btn-block + .btn-block { + margin-top: 5px; +} +input[type="submit"].btn-block, +input[type="reset"].btn-block, +input[type="button"].btn-block { + width: 100%; +} +.btn-primary.active, +.btn-warning.active, +.btn-danger.active, +.btn-success.active, +.btn-info.active, +.btn-inverse.active { + color: rgba(255, 255, 255, 0.75); +} +.btn-primary { + color: #ffffff; + text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); + background-color: #006dcc; + background-image: -moz-linear-gradient(top, #0088cc, #0044cc); + background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc)); + background-image: -webkit-linear-gradient(top, #0088cc, #0044cc); + background-image: -o-linear-gradient(top, #0088cc, #0044cc); + background-image: linear-gradient(to bottom, #0088cc, #0044cc); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0044cc', GradientType=0); + border-color: #0044cc #0044cc #002a80; + border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); + *background-color: #0044cc; + /* Darken IE7 buttons by default so they stand out more given they won't have borders */ + + filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); +} +.btn-primary:hover, +.btn-primary:focus, +.btn-primary:active, +.btn-primary.active, +.btn-primary.disabled, +.btn-primary[disabled] { + color: #ffffff; + background-color: #0044cc; + *background-color: #003bb3; +} +.btn-primary:active, +.btn-primary.active { + background-color: #003399 \9; +} +.btn-warning { + color: #ffffff; + text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); + background-color: #faa732; + background-image: -moz-linear-gradient(top, #fbb450, #f89406); + background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406)); + background-image: -webkit-linear-gradient(top, #fbb450, #f89406); + background-image: -o-linear-gradient(top, #fbb450, #f89406); + background-image: linear-gradient(to bottom, #fbb450, #f89406); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fff89406', GradientType=0); + border-color: #f89406 #f89406 #ad6704; + border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); + *background-color: #f89406; + /* Darken IE7 buttons by default so they stand out more given they won't have borders */ + + filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); +} +.btn-warning:hover, +.btn-warning:focus, +.btn-warning:active, +.btn-warning.active, +.btn-warning.disabled, +.btn-warning[disabled] { + color: #ffffff; + background-color: #f89406; + *background-color: #df8505; +} +.btn-warning:active, +.btn-warning.active { + background-color: #c67605 \9; +} +.btn-danger { + color: #ffffff; + text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); + background-color: #da4f49; + background-image: -moz-linear-gradient(top, #ee5f5b, #bd362f); + background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f)); + background-image: -webkit-linear-gradient(top, #ee5f5b, #bd362f); + background-image: -o-linear-gradient(top, #ee5f5b, #bd362f); + background-image: linear-gradient(to bottom, #ee5f5b, #bd362f); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffbd362f', GradientType=0); + border-color: #bd362f #bd362f #802420; + border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); + *background-color: #bd362f; + /* Darken IE7 buttons by default so they stand out more given they won't have borders */ + + filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); +} +.btn-danger:hover, +.btn-danger:focus, +.btn-danger:active, +.btn-danger.active, +.btn-danger.disabled, +.btn-danger[disabled] { + color: #ffffff; + background-color: #bd362f; + *background-color: #a9302a; +} +.btn-danger:active, +.btn-danger.active { + background-color: #942a25 \9; +} +.btn-success { + color: #ffffff; + text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); + background-color: #5bb75b; + background-image: -moz-linear-gradient(top, #62c462, #51a351); + background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351)); + background-image: -webkit-linear-gradient(top, #62c462, #51a351); + background-image: -o-linear-gradient(top, #62c462, #51a351); + background-image: linear-gradient(to bottom, #62c462, #51a351); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff51a351', GradientType=0); + border-color: #51a351 #51a351 #387038; + border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); + *background-color: #51a351; + /* Darken IE7 buttons by default so they stand out more given they won't have borders */ + + filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); +} +.btn-success:hover, +.btn-success:focus, +.btn-success:active, +.btn-success.active, +.btn-success.disabled, +.btn-success[disabled] { + color: #ffffff; + background-color: #51a351; + *background-color: #499249; +} +.btn-success:active, +.btn-success.active { + background-color: #408140 \9; +} +.btn-info { + color: #ffffff; + text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); + background-color: #49afcd; + background-image: -moz-linear-gradient(top, #5bc0de, #2f96b4); + background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4)); + background-image: -webkit-linear-gradient(top, #5bc0de, #2f96b4); + background-image: -o-linear-gradient(top, #5bc0de, #2f96b4); + background-image: linear-gradient(to bottom, #5bc0de, #2f96b4); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2f96b4', GradientType=0); + border-color: #2f96b4 #2f96b4 #1f6377; + border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); + *background-color: #2f96b4; + /* Darken IE7 buttons by default so they stand out more given they won't have borders */ + + filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); +} +.btn-info:hover, +.btn-info:focus, +.btn-info:active, +.btn-info.active, +.btn-info.disabled, +.btn-info[disabled] { + color: #ffffff; + background-color: #2f96b4; + *background-color: #2a85a0; +} +.btn-info:active, +.btn-info.active { + background-color: #24748c \9; +} +.btn-inverse { + color: #ffffff; + text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); + background-color: #363636; + background-image: -moz-linear-gradient(top, #444444, #222222); + background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#444444), to(#222222)); + background-image: -webkit-linear-gradient(top, #444444, #222222); + background-image: -o-linear-gradient(top, #444444, #222222); + background-image: linear-gradient(to bottom, #444444, #222222); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff444444', endColorstr='#ff222222', GradientType=0); + border-color: #222222 #222222 #000000; + border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); + *background-color: #222222; + /* Darken IE7 buttons by default so they stand out more given they won't have borders */ + + filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); +} +.btn-inverse:hover, +.btn-inverse:focus, +.btn-inverse:active, +.btn-inverse.active, +.btn-inverse.disabled, +.btn-inverse[disabled] { + color: #ffffff; + background-color: #222222; + *background-color: #151515; +} +.btn-inverse:active, +.btn-inverse.active { + background-color: #080808 \9; +} +button.btn, +input[type="submit"].btn { + *padding-top: 3px; + *padding-bottom: 3px; +} +button.btn::-moz-focus-inner, +input[type="submit"].btn::-moz-focus-inner { + padding: 0; + border: 0; +} +button.btn.btn-large, +input[type="submit"].btn.btn-large { + *padding-top: 7px; + *padding-bottom: 7px; +} +button.btn.btn-small, +input[type="submit"].btn.btn-small { + *padding-top: 3px; + *padding-bottom: 3px; +} +button.btn.btn-mini, +input[type="submit"].btn.btn-mini { + *padding-top: 1px; + *padding-bottom: 1px; +} +.btn-link, +.btn-link:active, +.btn-link[disabled] { + background-color: transparent; + background-image: none; + -webkit-box-shadow: none; + -moz-box-shadow: none; + box-shadow: none; +} +.btn-link { + border-color: transparent; + cursor: pointer; + color: #0088cc; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} +.btn-link:hover, +.btn-link:focus { + color: #005580; + text-decoration: underline; + background-color: transparent; +} +.btn-link[disabled]:hover, +.btn-link[disabled]:focus { + color: #333333; + text-decoration: none; +} +[class^="icon-"], +[class*=" icon-"] { + display: inline-block; + width: 14px; + height: 14px; + *margin-right: .3em; + line-height: 14px; + vertical-align: text-top; + background-image: url("../img/glyphicons-halflings.png"); + background-position: 14px 14px; + background-repeat: no-repeat; + margin-top: 1px; +} +/* White icons with optional class, or on hover/focus/active states of certain elements */ +.icon-white, +.nav-pills > .active > a > [class^="icon-"], +.nav-pills > .active > a > [class*=" icon-"], +.nav-list > .active > a > [class^="icon-"], +.nav-list > .active > a > [class*=" icon-"], +.navbar-inverse .nav > .active > a > [class^="icon-"], +.navbar-inverse .nav > .active > a > [class*=" icon-"], +.dropdown-menu > li > a:hover > [class^="icon-"], +.dropdown-menu > li > a:focus > [class^="icon-"], +.dropdown-menu > li > a:hover > [class*=" icon-"], +.dropdown-menu > li > a:focus > [class*=" icon-"], +.dropdown-menu > .active > a > [class^="icon-"], +.dropdown-menu > .active > a > [class*=" icon-"], +.dropdown-submenu:hover > a > [class^="icon-"], +.dropdown-submenu:focus > a > [class^="icon-"], +.dropdown-submenu:hover > a > [class*=" icon-"], +.dropdown-submenu:focus > a > [class*=" icon-"] { + background-image: url("../img/glyphicons-halflings-white.png"); +} +.icon-glass { + background-position: 0 0; +} +.icon-music { + background-position: -24px 0; +} +.icon-search { + background-position: -48px 0; +} +.icon-envelope { + background-position: -72px 0; +} +.icon-heart { + background-position: -96px 0; +} +.icon-star { + background-position: -120px 0; +} +.icon-star-empty { + background-position: -144px 0; +} +.icon-user { + background-position: -168px 0; +} +.icon-film { + background-position: -192px 0; +} +.icon-th-large { + background-position: -216px 0; +} +.icon-th { + background-position: -240px 0; +} +.icon-th-list { + background-position: -264px 0; +} +.icon-ok { + background-position: -288px 0; +} +.icon-remove { + background-position: -312px 0; +} +.icon-zoom-in { + background-position: -336px 0; +} +.icon-zoom-out { + background-position: -360px 0; +} +.icon-off { + background-position: -384px 0; +} +.icon-signal { + background-position: -408px 0; +} +.icon-cog { + background-position: -432px 0; +} +.icon-trash { + background-position: -456px 0; +} +.icon-home { + background-position: 0 -24px; +} +.icon-file { + background-position: -24px -24px; +} +.icon-time { + background-position: -48px -24px; +} +.icon-road { + background-position: -72px -24px; +} +.icon-download-alt { + background-position: -96px -24px; +} +.icon-download { + background-position: -120px -24px; +} +.icon-upload { + background-position: -144px -24px; +} +.icon-inbox { + background-position: -168px -24px; +} +.icon-play-circle { + background-position: -192px -24px; +} +.icon-repeat { + background-position: -216px -24px; +} +.icon-refresh { + background-position: -240px -24px; +} +.icon-list-alt { + background-position: -264px -24px; +} +.icon-lock { + background-position: -287px -24px; +} +.icon-flag { + background-position: -312px -24px; +} +.icon-headphones { + background-position: -336px -24px; +} +.icon-volume-off { + background-position: -360px -24px; +} +.icon-volume-down { + background-position: -384px -24px; +} +.icon-volume-up { + background-position: -408px -24px; +} +.icon-qrcode { + background-position: -432px -24px; +} +.icon-barcode { + background-position: -456px -24px; +} +.icon-tag { + background-position: 0 -48px; +} +.icon-tags { + background-position: -25px -48px; +} +.icon-book { + background-position: -48px -48px; +} +.icon-bookmark { + background-position: -72px -48px; +} +.icon-print { + background-position: -96px -48px; +} +.icon-camera { + background-position: -120px -48px; +} +.icon-font { + background-position: -144px -48px; +} +.icon-bold { + background-position: -167px -48px; +} +.icon-italic { + background-position: -192px -48px; +} +.icon-text-height { + background-position: -216px -48px; +} +.icon-text-width { + background-position: -240px -48px; +} +.icon-align-left { + background-position: -264px -48px; +} +.icon-align-center { + background-position: -288px -48px; +} +.icon-align-right { + background-position: -312px -48px; +} +.icon-align-justify { + background-position: -336px -48px; +} +.icon-list { + background-position: -360px -48px; +} +.icon-indent-left { + background-position: -384px -48px; +} +.icon-indent-right { + background-position: -408px -48px; +} +.icon-facetime-video { + background-position: -432px -48px; +} +.icon-picture { + background-position: -456px -48px; +} +.icon-pencil { + background-position: 0 -72px; +} +.icon-map-marker { + background-position: -24px -72px; +} +.icon-adjust { + background-position: -48px -72px; +} +.icon-tint { + background-position: -72px -72px; +} +.icon-edit { + background-position: -96px -72px; +} +.icon-share { + background-position: -120px -72px; +} +.icon-check { + background-position: -144px -72px; +} +.icon-move { + background-position: -168px -72px; +} +.icon-step-backward { + background-position: -192px -72px; +} +.icon-fast-backward { + background-position: -216px -72px; +} +.icon-backward { + background-position: -240px -72px; +} +.icon-play { + background-position: -264px -72px; +} +.icon-pause { + background-position: -288px -72px; +} +.icon-stop { + background-position: -312px -72px; +} +.icon-forward { + background-position: -336px -72px; +} +.icon-fast-forward { + background-position: -360px -72px; +} +.icon-step-forward { + background-position: -384px -72px; +} +.icon-eject { + background-position: -408px -72px; +} +.icon-chevron-left { + background-position: -432px -72px; +} +.icon-chevron-right { + background-position: -456px -72px; +} +.icon-plus-sign { + background-position: 0 -96px; +} +.icon-minus-sign { + background-position: -24px -96px; +} +.icon-remove-sign { + background-position: -48px -96px; +} +.icon-ok-sign { + background-position: -72px -96px; +} +.icon-question-sign { + background-position: -96px -96px; +} +.icon-info-sign { + background-position: -120px -96px; +} +.icon-screenshot { + background-position: -144px -96px; +} +.icon-remove-circle { + background-position: -168px -96px; +} +.icon-ok-circle { + background-position: -192px -96px; +} +.icon-ban-circle { + background-position: -216px -96px; +} +.icon-arrow-left { + background-position: -240px -96px; +} +.icon-arrow-right { + background-position: -264px -96px; +} +.icon-arrow-up { + background-position: -289px -96px; +} +.icon-arrow-down { + background-position: -312px -96px; +} +.icon-share-alt { + background-position: -336px -96px; +} +.icon-resize-full { + background-position: -360px -96px; +} +.icon-resize-small { + background-position: -384px -96px; +} +.icon-plus { + background-position: -408px -96px; +} +.icon-minus { + background-position: -433px -96px; +} +.icon-asterisk { + background-position: -456px -96px; +} +.icon-exclamation-sign { + background-position: 0 -120px; +} +.icon-gift { + background-position: -24px -120px; +} +.icon-leaf { + background-position: -48px -120px; +} +.icon-fire { + background-position: -72px -120px; +} +.icon-eye-open { + background-position: -96px -120px; +} +.icon-eye-close { + background-position: -120px -120px; +} +.icon-warning-sign { + background-position: -144px -120px; +} +.icon-plane { + background-position: -168px -120px; +} +.icon-calendar { + background-position: -192px -120px; +} +.icon-random { + background-position: -216px -120px; + width: 16px; +} +.icon-comment { + background-position: -240px -120px; +} +.icon-magnet { + background-position: -264px -120px; +} +.icon-chevron-up { + background-position: -288px -120px; +} +.icon-chevron-down { + background-position: -313px -119px; +} +.icon-retweet { + background-position: -336px -120px; +} +.icon-shopping-cart { + background-position: -360px -120px; +} +.icon-folder-close { + background-position: -384px -120px; + width: 16px; +} +.icon-folder-open { + background-position: -408px -120px; + width: 16px; +} +.icon-resize-vertical { + background-position: -432px -119px; +} +.icon-resize-horizontal { + background-position: -456px -118px; +} +.icon-hdd { + background-position: 0 -144px; +} +.icon-bullhorn { + background-position: -24px -144px; +} +.icon-bell { + background-position: -48px -144px; +} +.icon-certificate { + background-position: -72px -144px; +} +.icon-thumbs-up { + background-position: -96px -144px; +} +.icon-thumbs-down { + background-position: -120px -144px; +} +.icon-hand-right { + background-position: -144px -144px; +} +.icon-hand-left { + background-position: -168px -144px; +} +.icon-hand-up { + background-position: -192px -144px; +} +.icon-hand-down { + background-position: -216px -144px; +} +.icon-circle-arrow-right { + background-position: -240px -144px; +} +.icon-circle-arrow-left { + background-position: -264px -144px; +} +.icon-circle-arrow-up { + background-position: -288px -144px; +} +.icon-circle-arrow-down { + background-position: -312px -144px; +} +.icon-globe { + background-position: -336px -144px; +} +.icon-wrench { + background-position: -360px -144px; +} +.icon-tasks { + background-position: -384px -144px; +} +.icon-filter { + background-position: -408px -144px; +} +.icon-briefcase { + background-position: -432px -144px; +} +.icon-fullscreen { + background-position: -456px -144px; +} +.btn-group { + position: relative; + display: inline-block; + *display: inline; + /* IE7 inline-block hack */ + + *zoom: 1; + font-size: 0; + vertical-align: middle; + white-space: nowrap; + *margin-left: .3em; +} +.btn-group:first-child { + *margin-left: 0; +} +.btn-group + .btn-group { + margin-left: 5px; +} +.btn-toolbar { + font-size: 0; + margin-top: 10px; + margin-bottom: 10px; +} +.btn-toolbar > .btn + .btn, +.btn-toolbar > .btn-group + .btn, +.btn-toolbar > .btn + .btn-group { + margin-left: 5px; +} +.btn-group > .btn { + position: relative; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} +.btn-group > .btn + .btn { + margin-left: -1px; +} +.btn-group > .btn, +.btn-group > .dropdown-menu, +.btn-group > .popover { + font-size: 14px; +} +.btn-group > .btn-mini { + font-size: 10.5px; +} +.btn-group > .btn-small { + font-size: 11.9px; +} +.btn-group > .btn-large { + font-size: 17.5px; +} +.btn-group > .btn:first-child { + margin-left: 0; + -webkit-border-top-left-radius: 4px; + -moz-border-radius-topleft: 4px; + border-top-left-radius: 4px; + -webkit-border-bottom-left-radius: 4px; + -moz-border-radius-bottomleft: 4px; + border-bottom-left-radius: 4px; +} +.btn-group > .btn:last-child, +.btn-group > .dropdown-toggle { + -webkit-border-top-right-radius: 4px; + -moz-border-radius-topright: 4px; + border-top-right-radius: 4px; + -webkit-border-bottom-right-radius: 4px; + -moz-border-radius-bottomright: 4px; + border-bottom-right-radius: 4px; +} +.btn-group > .btn.large:first-child { + margin-left: 0; + -webkit-border-top-left-radius: 6px; + -moz-border-radius-topleft: 6px; + border-top-left-radius: 6px; + -webkit-border-bottom-left-radius: 6px; + -moz-border-radius-bottomleft: 6px; + border-bottom-left-radius: 6px; +} +.btn-group > .btn.large:last-child, +.btn-group > .large.dropdown-toggle { + -webkit-border-top-right-radius: 6px; + -moz-border-radius-topright: 6px; + border-top-right-radius: 6px; + -webkit-border-bottom-right-radius: 6px; + -moz-border-radius-bottomright: 6px; + border-bottom-right-radius: 6px; +} +.btn-group > .btn:hover, +.btn-group > .btn:focus, +.btn-group > .btn:active, +.btn-group > .btn.active { + z-index: 2; +} +.btn-group .dropdown-toggle:active, +.btn-group.open .dropdown-toggle { + outline: 0; +} +.btn-group > .btn + .dropdown-toggle { + padding-left: 8px; + padding-right: 8px; + -webkit-box-shadow: inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05); + -moz-box-shadow: inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05); + box-shadow: inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05); + *padding-top: 5px; + *padding-bottom: 5px; +} +.btn-group > .btn-mini + .dropdown-toggle { + padding-left: 5px; + padding-right: 5px; + *padding-top: 2px; + *padding-bottom: 2px; +} +.btn-group > .btn-small + .dropdown-toggle { + *padding-top: 5px; + *padding-bottom: 4px; +} +.btn-group > .btn-large + .dropdown-toggle { + padding-left: 12px; + padding-right: 12px; + *padding-top: 7px; + *padding-bottom: 7px; +} +.btn-group.open .dropdown-toggle { + background-image: none; + -webkit-box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05); + -moz-box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05); + box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05); +} +.btn-group.open .btn.dropdown-toggle { + background-color: #e6e6e6; +} +.btn-group.open .btn-primary.dropdown-toggle { + background-color: #0044cc; +} +.btn-group.open .btn-warning.dropdown-toggle { + background-color: #f89406; +} +.btn-group.open .btn-danger.dropdown-toggle { + background-color: #bd362f; +} +.btn-group.open .btn-success.dropdown-toggle { + background-color: #51a351; +} +.btn-group.open .btn-info.dropdown-toggle { + background-color: #2f96b4; +} +.btn-group.open .btn-inverse.dropdown-toggle { + background-color: #222222; +} +.btn .caret { + margin-top: 8px; + margin-left: 0; +} +.btn-large .caret { + margin-top: 6px; +} +.btn-large .caret { + border-left-width: 5px; + border-right-width: 5px; + border-top-width: 5px; +} +.btn-mini .caret, +.btn-small .caret { + margin-top: 8px; +} +.dropup .btn-large .caret { + border-bottom-width: 5px; +} +.btn-primary .caret, +.btn-warning .caret, +.btn-danger .caret, +.btn-info .caret, +.btn-success .caret, +.btn-inverse .caret { + border-top-color: #ffffff; + border-bottom-color: #ffffff; +} +.btn-group-vertical { + display: inline-block; + *display: inline; + /* IE7 inline-block hack */ + + *zoom: 1; +} +.btn-group-vertical > .btn { + display: block; + float: none; + max-width: 100%; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} +.btn-group-vertical > .btn + .btn { + margin-left: 0; + margin-top: -1px; +} +.btn-group-vertical > .btn:first-child { + -webkit-border-radius: 4px 4px 0 0; + -moz-border-radius: 4px 4px 0 0; + border-radius: 4px 4px 0 0; +} +.btn-group-vertical > .btn:last-child { + -webkit-border-radius: 0 0 4px 4px; + -moz-border-radius: 0 0 4px 4px; + border-radius: 0 0 4px 4px; +} +.btn-group-vertical > .btn-large:first-child { + -webkit-border-radius: 6px 6px 0 0; + -moz-border-radius: 6px 6px 0 0; + border-radius: 6px 6px 0 0; +} +.btn-group-vertical > .btn-large:last-child { + -webkit-border-radius: 0 0 6px 6px; + -moz-border-radius: 0 0 6px 6px; + border-radius: 0 0 6px 6px; +} +.nav { + margin-left: 0; + margin-bottom: 20px; + list-style: none; +} +.nav > li > a { + display: block; +} +.nav > li > a:hover, +.nav > li > a:focus { + text-decoration: none; + background-color: #eeeeee; +} +.nav > li > a > img { + max-width: none; +} +.nav > .pull-right { + float: right; +} +.nav-header { + display: block; + padding: 3px 15px; + font-size: 11px; + font-weight: bold; + line-height: 20px; + color: #999999; + text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5); + text-transform: uppercase; +} +.nav li + .nav-header { + margin-top: 9px; +} +.nav-list { + padding-left: 15px; + padding-right: 15px; + margin-bottom: 0; +} +.nav-list > li > a, +.nav-list .nav-header { + margin-left: -15px; + margin-right: -15px; + text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5); +} +.nav-list > li > a { + padding: 3px 15px; +} +.nav-list > .active > a, +.nav-list > .active > a:hover, +.nav-list > .active > a:focus { + color: #ffffff; + text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2); + background-color: #0088cc; +} +.nav-list [class^="icon-"], +.nav-list [class*=" icon-"] { + margin-right: 2px; +} +.nav-list .divider { + *width: 100%; + height: 1px; + margin: 9px 1px; + *margin: -5px 0 5px; + overflow: hidden; + background-color: #e5e5e5; + border-bottom: 1px solid #ffffff; +} +.nav-tabs, +.nav-pills { + *zoom: 1; +} +.nav-tabs:before, +.nav-pills:before, +.nav-tabs:after, +.nav-pills:after { + display: table; + content: ""; + line-height: 0; +} +.nav-tabs:after, +.nav-pills:after { + clear: both; +} +.nav-tabs > li, +.nav-pills > li { + float: left; +} +.nav-tabs > li > a, +.nav-pills > li > a { + padding-right: 12px; + padding-left: 12px; + margin-right: 2px; + line-height: 14px; +} +.nav-tabs { + border-bottom: 1px solid #ddd; +} +.nav-tabs > li { + margin-bottom: -1px; +} +.nav-tabs > li > a { + padding-top: 8px; + padding-bottom: 8px; + line-height: 20px; + border: 1px solid transparent; + -webkit-border-radius: 4px 4px 0 0; + -moz-border-radius: 4px 4px 0 0; + border-radius: 4px 4px 0 0; +} +.nav-tabs > li > a:hover, +.nav-tabs > li > a:focus { + border-color: #eeeeee #eeeeee #dddddd; +} +.nav-tabs > .active > a, +.nav-tabs > .active > a:hover, +.nav-tabs > .active > a:focus { + color: #555555; + background-color: #ffffff; + border: 1px solid #ddd; + border-bottom-color: transparent; + cursor: default; +} +.nav-pills > li > a { + padding-top: 8px; + padding-bottom: 8px; + margin-top: 2px; + margin-bottom: 2px; + -webkit-border-radius: 5px; + -moz-border-radius: 5px; + border-radius: 5px; +} +.nav-pills > .active > a, +.nav-pills > .active > a:hover, +.nav-pills > .active > a:focus { + color: #ffffff; + background-color: #0088cc; +} +.nav-stacked > li { + float: none; +} +.nav-stacked > li > a { + margin-right: 0; +} +.nav-tabs.nav-stacked { + border-bottom: 0; +} +.nav-tabs.nav-stacked > li > a { + border: 1px solid #ddd; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} +.nav-tabs.nav-stacked > li:first-child > a { + -webkit-border-top-right-radius: 4px; + -moz-border-radius-topright: 4px; + border-top-right-radius: 4px; + -webkit-border-top-left-radius: 4px; + -moz-border-radius-topleft: 4px; + border-top-left-radius: 4px; +} +.nav-tabs.nav-stacked > li:last-child > a { + -webkit-border-bottom-right-radius: 4px; + -moz-border-radius-bottomright: 4px; + border-bottom-right-radius: 4px; + -webkit-border-bottom-left-radius: 4px; + -moz-border-radius-bottomleft: 4px; + border-bottom-left-radius: 4px; +} +.nav-tabs.nav-stacked > li > a:hover, +.nav-tabs.nav-stacked > li > a:focus { + border-color: #ddd; + z-index: 2; +} +.nav-pills.nav-stacked > li > a { + margin-bottom: 3px; +} +.nav-pills.nav-stacked > li:last-child > a { + margin-bottom: 1px; +} +.nav-tabs .dropdown-menu { + -webkit-border-radius: 0 0 6px 6px; + -moz-border-radius: 0 0 6px 6px; + border-radius: 0 0 6px 6px; +} +.nav-pills .dropdown-menu { + -webkit-border-radius: 6px; + -moz-border-radius: 6px; + border-radius: 6px; +} +.nav .dropdown-toggle .caret { + border-top-color: #0088cc; + border-bottom-color: #0088cc; + margin-top: 6px; +} +.nav .dropdown-toggle:hover .caret, +.nav .dropdown-toggle:focus .caret { + border-top-color: #005580; + border-bottom-color: #005580; +} +/* move down carets for tabs */ +.nav-tabs .dropdown-toggle .caret { + margin-top: 8px; +} +.nav .active .dropdown-toggle .caret { + border-top-color: #fff; + border-bottom-color: #fff; +} +.nav-tabs .active .dropdown-toggle .caret { + border-top-color: #555555; + border-bottom-color: #555555; +} +.nav > .dropdown.active > a:hover, +.nav > .dropdown.active > a:focus { + cursor: pointer; +} +.nav-tabs .open .dropdown-toggle, +.nav-pills .open .dropdown-toggle, +.nav > li.dropdown.open.active > a:hover, +.nav > li.dropdown.open.active > a:focus { + color: #ffffff; + background-color: #999999; + border-color: #999999; +} +.nav li.dropdown.open .caret, +.nav li.dropdown.open.active .caret, +.nav li.dropdown.open a:hover .caret, +.nav li.dropdown.open a:focus .caret { + border-top-color: #ffffff; + border-bottom-color: #ffffff; + opacity: 1; + filter: alpha(opacity=100); +} +.tabs-stacked .open > a:hover, +.tabs-stacked .open > a:focus { + border-color: #999999; +} +.tabbable { + *zoom: 1; +} +.tabbable:before, +.tabbable:after { + display: table; + content: ""; + line-height: 0; +} +.tabbable:after { + clear: both; +} +.tab-content { + overflow: auto; +} +.tabs-below > .nav-tabs, +.tabs-right > .nav-tabs, +.tabs-left > .nav-tabs { + border-bottom: 0; +} +.tab-content > .tab-pane, +.pill-content > .pill-pane { + display: none; +} +.tab-content > .active, +.pill-content > .active { + display: block; +} +.tabs-below > .nav-tabs { + border-top: 1px solid #ddd; +} +.tabs-below > .nav-tabs > li { + margin-top: -1px; + margin-bottom: 0; +} +.tabs-below > .nav-tabs > li > a { + -webkit-border-radius: 0 0 4px 4px; + -moz-border-radius: 0 0 4px 4px; + border-radius: 0 0 4px 4px; +} +.tabs-below > .nav-tabs > li > a:hover, +.tabs-below > .nav-tabs > li > a:focus { + border-bottom-color: transparent; + border-top-color: #ddd; +} +.tabs-below > .nav-tabs > .active > a, +.tabs-below > .nav-tabs > .active > a:hover, +.tabs-below > .nav-tabs > .active > a:focus { + border-color: transparent #ddd #ddd #ddd; +} +.tabs-left > .nav-tabs > li, +.tabs-right > .nav-tabs > li { + float: none; +} +.tabs-left > .nav-tabs > li > a, +.tabs-right > .nav-tabs > li > a { + min-width: 74px; + margin-right: 0; + margin-bottom: 3px; +} +.tabs-left > .nav-tabs { + float: left; + margin-right: 19px; + border-right: 1px solid #ddd; +} +.tabs-left > .nav-tabs > li > a { + margin-right: -1px; + -webkit-border-radius: 4px 0 0 4px; + -moz-border-radius: 4px 0 0 4px; + border-radius: 4px 0 0 4px; +} +.tabs-left > .nav-tabs > li > a:hover, +.tabs-left > .nav-tabs > li > a:focus { + border-color: #eeeeee #dddddd #eeeeee #eeeeee; +} +.tabs-left > .nav-tabs .active > a, +.tabs-left > .nav-tabs .active > a:hover, +.tabs-left > .nav-tabs .active > a:focus { + border-color: #ddd transparent #ddd #ddd; + *border-right-color: #ffffff; +} +.tabs-right > .nav-tabs { + float: right; + margin-left: 19px; + border-left: 1px solid #ddd; +} +.tabs-right > .nav-tabs > li > a { + margin-left: -1px; + -webkit-border-radius: 0 4px 4px 0; + -moz-border-radius: 0 4px 4px 0; + border-radius: 0 4px 4px 0; +} +.tabs-right > .nav-tabs > li > a:hover, +.tabs-right > .nav-tabs > li > a:focus { + border-color: #eeeeee #eeeeee #eeeeee #dddddd; +} +.tabs-right > .nav-tabs .active > a, +.tabs-right > .nav-tabs .active > a:hover, +.tabs-right > .nav-tabs .active > a:focus { + border-color: #ddd #ddd #ddd transparent; + *border-left-color: #ffffff; +} +.nav > .disabled > a { + color: #999999; +} +.nav > .disabled > a:hover, +.nav > .disabled > a:focus { + text-decoration: none; + background-color: transparent; + cursor: default; +} +.navbar { + overflow: visible; + margin-bottom: 20px; + *position: relative; + *z-index: 2; +} +.navbar-inner { + min-height: 40px; + padding-left: 20px; + padding-right: 20px; + background-color: #fafafa; + background-image: -moz-linear-gradient(top, #ffffff, #f2f2f2); + background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#f2f2f2)); + background-image: -webkit-linear-gradient(top, #ffffff, #f2f2f2); + background-image: -o-linear-gradient(top, #ffffff, #f2f2f2); + background-image: linear-gradient(to bottom, #ffffff, #f2f2f2); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff2f2f2', GradientType=0); + border: 1px solid #d4d4d4; + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + border-radius: 4px; + -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065); + -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065); + box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065); + *zoom: 1; +} +.navbar-inner:before, +.navbar-inner:after { + display: table; + content: ""; + line-height: 0; +} +.navbar-inner:after { + clear: both; +} +.navbar .container { + width: auto; +} +.nav-collapse.collapse { + height: auto; + overflow: visible; +} +.navbar .brand { + float: left; + display: block; + padding: 10px 20px 10px; + margin-left: -20px; + font-size: 20px; + font-weight: 200; + color: #777777; + text-shadow: 0 1px 0 #ffffff; +} +.navbar .brand:hover, +.navbar .brand:focus { + text-decoration: none; +} +.navbar-text { + margin-bottom: 0; + line-height: 40px; + color: #777777; +} +.navbar-link { + color: #777777; +} +.navbar-link:hover, +.navbar-link:focus { + color: #333333; +} +.navbar .divider-vertical { + height: 40px; + margin: 0 9px; + border-left: 1px solid #f2f2f2; + border-right: 1px solid #ffffff; +} +.navbar .btn, +.navbar .btn-group { + margin-top: 5px; +} +.navbar .btn-group .btn, +.navbar .input-prepend .btn, +.navbar .input-append .btn, +.navbar .input-prepend .btn-group, +.navbar .input-append .btn-group { + margin-top: 0; +} +.navbar-form { + margin-bottom: 0; + *zoom: 1; +} +.navbar-form:before, +.navbar-form:after { + display: table; + content: ""; + line-height: 0; +} +.navbar-form:after { + clear: both; +} +.navbar-form input, +.navbar-form select, +.navbar-form .radio, +.navbar-form .checkbox { + margin-top: 5px; +} +.navbar-form input, +.navbar-form select, +.navbar-form .btn { + display: inline-block; + margin-bottom: 0; +} +.navbar-form input[type="image"], +.navbar-form input[type="checkbox"], +.navbar-form input[type="radio"] { + margin-top: 3px; +} +.navbar-form .input-append, +.navbar-form .input-prepend { + margin-top: 5px; + white-space: nowrap; +} +.navbar-form .input-append input, +.navbar-form .input-prepend input { + margin-top: 0; +} +.navbar-search { + position: relative; + float: left; + margin-top: 5px; + margin-bottom: 0; +} +.navbar-search .search-query { + margin-bottom: 0; + padding: 4px 14px; + font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; + font-size: 13px; + font-weight: normal; + line-height: 1; + -webkit-border-radius: 15px; + -moz-border-radius: 15px; + border-radius: 15px; +} +.navbar-static-top { + position: static; + margin-bottom: 0; +} +.navbar-static-top .navbar-inner { + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} +.navbar-fixed-top, +.navbar-fixed-bottom { + position: fixed; + right: 0; + left: 0; + z-index: 1030; + margin-bottom: 0; +} +.navbar-fixed-top .navbar-inner, +.navbar-static-top .navbar-inner { + border-width: 0 0 1px; +} +.navbar-fixed-bottom .navbar-inner { + border-width: 1px 0 0; +} +.navbar-fixed-top .navbar-inner, +.navbar-fixed-bottom .navbar-inner { + padding-left: 0; + padding-right: 0; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} +.navbar-static-top .container, +.navbar-fixed-top .container, +.navbar-fixed-bottom .container { + width: 940px; +} +.navbar-fixed-top { + top: 0; +} +.navbar-fixed-top .navbar-inner, +.navbar-static-top .navbar-inner { + -webkit-box-shadow: 0 1px 10px rgba(0,0,0,.1); + -moz-box-shadow: 0 1px 10px rgba(0,0,0,.1); + box-shadow: 0 1px 10px rgba(0,0,0,.1); +} +.navbar-fixed-bottom { + bottom: 0; +} +.navbar-fixed-bottom .navbar-inner { + -webkit-box-shadow: 0 -1px 10px rgba(0,0,0,.1); + -moz-box-shadow: 0 -1px 10px rgba(0,0,0,.1); + box-shadow: 0 -1px 10px rgba(0,0,0,.1); +} +.navbar .nav { + position: relative; + left: 0; + display: block; + float: left; + margin: 0 10px 0 0; +} +.navbar .nav.pull-right { + float: right; + margin-right: 0; +} +.navbar .nav > li { + float: left; +} +.navbar .nav > li > a { + float: none; + padding: 10px 15px 10px; + color: #777777; + text-decoration: none; + text-shadow: 0 1px 0 #ffffff; +} +.navbar .nav .dropdown-toggle .caret { + margin-top: 8px; +} +.navbar .nav > li > a:focus, +.navbar .nav > li > a:hover { + background-color: transparent; + color: #333333; + text-decoration: none; +} +.navbar .nav > .active > a, +.navbar .nav > .active > a:hover, +.navbar .nav > .active > a:focus { + color: #555555; + text-decoration: none; + background-color: #e5e5e5; + -webkit-box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.125); + -moz-box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.125); + box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.125); +} +.navbar .btn-navbar { + display: none; + float: right; + padding: 7px 10px; + margin-left: 5px; + margin-right: 5px; + color: #ffffff; + text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); + background-color: #ededed; + background-image: -moz-linear-gradient(top, #f2f2f2, #e5e5e5); + background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f2f2f2), to(#e5e5e5)); + background-image: -webkit-linear-gradient(top, #f2f2f2, #e5e5e5); + background-image: -o-linear-gradient(top, #f2f2f2, #e5e5e5); + background-image: linear-gradient(to bottom, #f2f2f2, #e5e5e5); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2f2f2', endColorstr='#ffe5e5e5', GradientType=0); + border-color: #e5e5e5 #e5e5e5 #bfbfbf; + border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); + *background-color: #e5e5e5; + /* Darken IE7 buttons by default so they stand out more given they won't have borders */ + + filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); + -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075); + -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075); + box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075); +} +.navbar .btn-navbar:hover, +.navbar .btn-navbar:focus, +.navbar .btn-navbar:active, +.navbar .btn-navbar.active, +.navbar .btn-navbar.disabled, +.navbar .btn-navbar[disabled] { + color: #ffffff; + background-color: #e5e5e5; + *background-color: #d9d9d9; +} +.navbar .btn-navbar:active, +.navbar .btn-navbar.active { + background-color: #cccccc \9; +} +.navbar .btn-navbar .icon-bar { + display: block; + width: 18px; + height: 2px; + background-color: #f5f5f5; + -webkit-border-radius: 1px; + -moz-border-radius: 1px; + border-radius: 1px; + -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25); + -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25); + box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25); +} +.btn-navbar .icon-bar + .icon-bar { + margin-top: 3px; +} +.navbar .nav > li > .dropdown-menu:before { + content: ''; + display: inline-block; + border-left: 7px solid transparent; + border-right: 7px solid transparent; + border-bottom: 7px solid #ccc; + border-bottom-color: rgba(0, 0, 0, 0.2); + position: absolute; + top: -7px; + left: 9px; +} +.navbar .nav > li > .dropdown-menu:after { + content: ''; + display: inline-block; + border-left: 6px solid transparent; + border-right: 6px solid transparent; + border-bottom: 6px solid #ffffff; + position: absolute; + top: -6px; + left: 10px; +} +.navbar-fixed-bottom .nav > li > .dropdown-menu:before { + border-top: 7px solid #ccc; + border-top-color: rgba(0, 0, 0, 0.2); + border-bottom: 0; + bottom: -7px; + top: auto; +} +.navbar-fixed-bottom .nav > li > .dropdown-menu:after { + border-top: 6px solid #ffffff; + border-bottom: 0; + bottom: -6px; + top: auto; +} +.navbar .nav li.dropdown > a:hover .caret, +.navbar .nav li.dropdown > a:focus .caret { + border-top-color: #333333; + border-bottom-color: #333333; +} +.navbar .nav li.dropdown.open > .dropdown-toggle, +.navbar .nav li.dropdown.active > .dropdown-toggle, +.navbar .nav li.dropdown.open.active > .dropdown-toggle { + background-color: #e5e5e5; + color: #555555; +} +.navbar .nav li.dropdown > .dropdown-toggle .caret { + border-top-color: #777777; + border-bottom-color: #777777; +} +.navbar .nav li.dropdown.open > .dropdown-toggle .caret, +.navbar .nav li.dropdown.active > .dropdown-toggle .caret, +.navbar .nav li.dropdown.open.active > .dropdown-toggle .caret { + border-top-color: #555555; + border-bottom-color: #555555; +} +.navbar .pull-right > li > .dropdown-menu, +.navbar .nav > li > .dropdown-menu.pull-right { + left: auto; + right: 0; +} +.navbar .pull-right > li > .dropdown-menu:before, +.navbar .nav > li > .dropdown-menu.pull-right:before { + left: auto; + right: 12px; +} +.navbar .pull-right > li > .dropdown-menu:after, +.navbar .nav > li > .dropdown-menu.pull-right:after { + left: auto; + right: 13px; +} +.navbar .pull-right > li > .dropdown-menu .dropdown-menu, +.navbar .nav > li > .dropdown-menu.pull-right .dropdown-menu { + left: auto; + right: 100%; + margin-left: 0; + margin-right: -1px; + -webkit-border-radius: 6px 0 6px 6px; + -moz-border-radius: 6px 0 6px 6px; + border-radius: 6px 0 6px 6px; +} +.navbar-inverse .navbar-inner { + background-color: #1b1b1b; + background-image: -moz-linear-gradient(top, #222222, #111111); + background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#222222), to(#111111)); + background-image: -webkit-linear-gradient(top, #222222, #111111); + background-image: -o-linear-gradient(top, #222222, #111111); + background-image: linear-gradient(to bottom, #222222, #111111); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff222222', endColorstr='#ff111111', GradientType=0); + border-color: #252525; +} +.navbar-inverse .brand, +.navbar-inverse .nav > li > a { + color: #999999; + text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); +} +.navbar-inverse .brand:hover, +.navbar-inverse .nav > li > a:hover, +.navbar-inverse .brand:focus, +.navbar-inverse .nav > li > a:focus { + color: #ffffff; +} +.navbar-inverse .brand { + color: #999999; +} +.navbar-inverse .navbar-text { + color: #999999; +} +.navbar-inverse .nav > li > a:focus, +.navbar-inverse .nav > li > a:hover { + background-color: transparent; + color: #ffffff; +} +.navbar-inverse .nav .active > a, +.navbar-inverse .nav .active > a:hover, +.navbar-inverse .nav .active > a:focus { + color: #ffffff; + background-color: #111111; +} +.navbar-inverse .navbar-link { + color: #999999; +} +.navbar-inverse .navbar-link:hover, +.navbar-inverse .navbar-link:focus { + color: #ffffff; +} +.navbar-inverse .divider-vertical { + border-left-color: #111111; + border-right-color: #222222; +} +.navbar-inverse .nav li.dropdown.open > .dropdown-toggle, +.navbar-inverse .nav li.dropdown.active > .dropdown-toggle, +.navbar-inverse .nav li.dropdown.open.active > .dropdown-toggle { + background-color: #111111; + color: #ffffff; +} +.navbar-inverse .nav li.dropdown > a:hover .caret, +.navbar-inverse .nav li.dropdown > a:focus .caret { + border-top-color: #ffffff; + border-bottom-color: #ffffff; +} +.navbar-inverse .nav li.dropdown > .dropdown-toggle .caret { + border-top-color: #999999; + border-bottom-color: #999999; +} +.navbar-inverse .nav li.dropdown.open > .dropdown-toggle .caret, +.navbar-inverse .nav li.dropdown.active > .dropdown-toggle .caret, +.navbar-inverse .nav li.dropdown.open.active > .dropdown-toggle .caret { + border-top-color: #ffffff; + border-bottom-color: #ffffff; +} +.navbar-inverse .navbar-search .search-query { + color: #ffffff; + background-color: #515151; + border-color: #111111; + -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15); + -moz-box-shadow: inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15); + box-shadow: inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15); + -webkit-transition: none; + -moz-transition: none; + -o-transition: none; + transition: none; +} +.navbar-inverse .navbar-search .search-query:-moz-placeholder { + color: #cccccc; +} +.navbar-inverse .navbar-search .search-query:-ms-input-placeholder { + color: #cccccc; +} +.navbar-inverse .navbar-search .search-query::-webkit-input-placeholder { + color: #cccccc; +} +.navbar-inverse .navbar-search .search-query:focus, +.navbar-inverse .navbar-search .search-query.focused { + padding: 5px 15px; + color: #333333; + text-shadow: 0 1px 0 #ffffff; + background-color: #ffffff; + border: 0; + -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15); + -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15); + box-shadow: 0 0 3px rgba(0, 0, 0, 0.15); + outline: 0; +} +.navbar-inverse .btn-navbar { + color: #ffffff; + text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); + background-color: #0e0e0e; + background-image: -moz-linear-gradient(top, #151515, #040404); + background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#151515), to(#040404)); + background-image: -webkit-linear-gradient(top, #151515, #040404); + background-image: -o-linear-gradient(top, #151515, #040404); + background-image: linear-gradient(to bottom, #151515, #040404); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff151515', endColorstr='#ff040404', GradientType=0); + border-color: #040404 #040404 #000000; + border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); + *background-color: #040404; + /* Darken IE7 buttons by default so they stand out more given they won't have borders */ + + filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); +} +.navbar-inverse .btn-navbar:hover, +.navbar-inverse .btn-navbar:focus, +.navbar-inverse .btn-navbar:active, +.navbar-inverse .btn-navbar.active, +.navbar-inverse .btn-navbar.disabled, +.navbar-inverse .btn-navbar[disabled] { + color: #ffffff; + background-color: #040404; + *background-color: #000000; +} +.navbar-inverse .btn-navbar:active, +.navbar-inverse .btn-navbar.active { + background-color: #000000 \9; +} +.breadcrumb { + padding: 8px 15px; + margin: 0 0 20px; + list-style: none; + background-color: #f5f5f5; + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + border-radius: 4px; +} +.breadcrumb > li { + display: inline-block; + *display: inline; + /* IE7 inline-block hack */ + + *zoom: 1; + text-shadow: 0 1px 0 #ffffff; +} +.breadcrumb > li > .divider { + padding: 0 5px; + color: #ccc; +} +.breadcrumb > .active { + color: #999999; +} +.pagination { + margin: 20px 0; +} +.pagination ul { + display: inline-block; + *display: inline; + /* IE7 inline-block hack */ + + *zoom: 1; + margin-left: 0; + margin-bottom: 0; + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + border-radius: 4px; + -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); + -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); + box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); +} +.pagination ul > li { + display: inline; +} +.pagination ul > li > a, +.pagination ul > li > span { + float: left; + padding: 4px 12px; + line-height: 20px; + text-decoration: none; + background-color: #ffffff; + border: 1px solid #dddddd; + border-left-width: 0; +} +.pagination ul > li > a:hover, +.pagination ul > li > a:focus, +.pagination ul > .active > a, +.pagination ul > .active > span { + background-color: #f5f5f5; +} +.pagination ul > .active > a, +.pagination ul > .active > span { + color: #999999; + cursor: default; +} +.pagination ul > .disabled > span, +.pagination ul > .disabled > a, +.pagination ul > .disabled > a:hover, +.pagination ul > .disabled > a:focus { + color: #999999; + background-color: transparent; + cursor: default; +} +.pagination ul > li:first-child > a, +.pagination ul > li:first-child > span { + border-left-width: 1px; + -webkit-border-top-left-radius: 4px; + -moz-border-radius-topleft: 4px; + border-top-left-radius: 4px; + -webkit-border-bottom-left-radius: 4px; + -moz-border-radius-bottomleft: 4px; + border-bottom-left-radius: 4px; +} +.pagination ul > li:last-child > a, +.pagination ul > li:last-child > span { + -webkit-border-top-right-radius: 4px; + -moz-border-radius-topright: 4px; + border-top-right-radius: 4px; + -webkit-border-bottom-right-radius: 4px; + -moz-border-radius-bottomright: 4px; + border-bottom-right-radius: 4px; +} +.pagination-centered { + text-align: center; +} +.pagination-right { + text-align: right; +} +.pagination-large ul > li > a, +.pagination-large ul > li > span { + padding: 11px 19px; + font-size: 17.5px; +} +.pagination-large ul > li:first-child > a, +.pagination-large ul > li:first-child > span { + -webkit-border-top-left-radius: 6px; + -moz-border-radius-topleft: 6px; + border-top-left-radius: 6px; + -webkit-border-bottom-left-radius: 6px; + -moz-border-radius-bottomleft: 6px; + border-bottom-left-radius: 6px; +} +.pagination-large ul > li:last-child > a, +.pagination-large ul > li:last-child > span { + -webkit-border-top-right-radius: 6px; + -moz-border-radius-topright: 6px; + border-top-right-radius: 6px; + -webkit-border-bottom-right-radius: 6px; + -moz-border-radius-bottomright: 6px; + border-bottom-right-radius: 6px; +} +.pagination-mini ul > li:first-child > a, +.pagination-small ul > li:first-child > a, +.pagination-mini ul > li:first-child > span, +.pagination-small ul > li:first-child > span { + -webkit-border-top-left-radius: 3px; + -moz-border-radius-topleft: 3px; + border-top-left-radius: 3px; + -webkit-border-bottom-left-radius: 3px; + -moz-border-radius-bottomleft: 3px; + border-bottom-left-radius: 3px; +} +.pagination-mini ul > li:last-child > a, +.pagination-small ul > li:last-child > a, +.pagination-mini ul > li:last-child > span, +.pagination-small ul > li:last-child > span { + -webkit-border-top-right-radius: 3px; + -moz-border-radius-topright: 3px; + border-top-right-radius: 3px; + -webkit-border-bottom-right-radius: 3px; + -moz-border-radius-bottomright: 3px; + border-bottom-right-radius: 3px; +} +.pagination-small ul > li > a, +.pagination-small ul > li > span { + padding: 2px 10px; + font-size: 11.9px; +} +.pagination-mini ul > li > a, +.pagination-mini ul > li > span { + padding: 0 6px; + font-size: 10.5px; +} +.pager { + margin: 20px 0; + list-style: none; + text-align: center; + *zoom: 1; +} +.pager:before, +.pager:after { + display: table; + content: ""; + line-height: 0; +} +.pager:after { + clear: both; +} +.pager li { + display: inline; +} +.pager li > a, +.pager li > span { + display: inline-block; + padding: 5px 14px; + background-color: #fff; + border: 1px solid #ddd; + -webkit-border-radius: 15px; + -moz-border-radius: 15px; + border-radius: 15px; +} +.pager li > a:hover, +.pager li > a:focus { + text-decoration: none; + background-color: #f5f5f5; +} +.pager .next > a, +.pager .next > span { + float: right; +} +.pager .previous > a, +.pager .previous > span { + float: left; +} +.pager .disabled > a, +.pager .disabled > a:hover, +.pager .disabled > a:focus, +.pager .disabled > span { + color: #999999; + background-color: #fff; + cursor: default; +} +.thumbnails { + margin-left: -20px; + list-style: none; + *zoom: 1; +} +.thumbnails:before, +.thumbnails:after { + display: table; + content: ""; + line-height: 0; +} +.thumbnails:after { + clear: both; +} +.row-fluid .thumbnails { + margin-left: 0; +} +.thumbnails > li { + float: left; + margin-bottom: 20px; + margin-left: 20px; +} +.thumbnail { + display: block; + padding: 4px; + line-height: 20px; + border: 1px solid #ddd; + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + border-radius: 4px; + -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.055); + -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.055); + box-shadow: 0 1px 3px rgba(0, 0, 0, 0.055); + -webkit-transition: all 0.2s ease-in-out; + -moz-transition: all 0.2s ease-in-out; + -o-transition: all 0.2s ease-in-out; + transition: all 0.2s ease-in-out; +} +a.thumbnail:hover, +a.thumbnail:focus { + border-color: #0088cc; + -webkit-box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25); + -moz-box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25); + box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25); +} +.thumbnail > img { + display: block; + max-width: 100%; + margin-left: auto; + margin-right: auto; +} +.thumbnail .caption { + padding: 9px; + color: #555555; +} +.alert { + padding: 8px 35px 8px 14px; + margin-bottom: 20px; + text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5); + background-color: #fcf8e3; + border: 1px solid #fbeed5; + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + border-radius: 4px; +} +.alert, +.alert h4 { + color: #c09853; +} +.alert h4 { + margin: 0; +} +.alert .close { + position: relative; + top: -2px; + right: -21px; + line-height: 20px; +} +.alert-success { + background-color: #dff0d8; + border-color: #d6e9c6; + color: #468847; +} +.alert-success h4 { + color: #468847; +} +.alert-danger, +.alert-error { + background-color: #f2dede; + border-color: #eed3d7; + color: #b94a48; +} +.alert-danger h4, +.alert-error h4 { + color: #b94a48; +} +.alert-info { + background-color: #d9edf7; + border-color: #bce8f1; + color: #3a87ad; +} +.alert-info h4 { + color: #3a87ad; +} +.alert-block { + padding-top: 14px; + padding-bottom: 14px; +} +.alert-block > p, +.alert-block > ul { + margin-bottom: 0; +} +.alert-block p + p { + margin-top: 5px; +} +@-webkit-keyframes progress-bar-stripes { + from { + background-position: 40px 0; + } + to { + background-position: 0 0; + } +} +@-moz-keyframes progress-bar-stripes { + from { + background-position: 40px 0; + } + to { + background-position: 0 0; + } +} +@-ms-keyframes progress-bar-stripes { + from { + background-position: 40px 0; + } + to { + background-position: 0 0; + } +} +@-o-keyframes progress-bar-stripes { + from { + background-position: 0 0; + } + to { + background-position: 40px 0; + } +} +@keyframes progress-bar-stripes { + from { + background-position: 40px 0; + } + to { + background-position: 0 0; + } +} +.progress { + overflow: hidden; + height: 20px; + margin-bottom: 20px; + background-color: #f7f7f7; + background-image: -moz-linear-gradient(top, #f5f5f5, #f9f9f9); + background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f5f5f5), to(#f9f9f9)); + background-image: -webkit-linear-gradient(top, #f5f5f5, #f9f9f9); + background-image: -o-linear-gradient(top, #f5f5f5, #f9f9f9); + background-image: linear-gradient(to bottom, #f5f5f5, #f9f9f9); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#fff9f9f9', GradientType=0); + -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); + -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); + box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + border-radius: 4px; +} +.progress .bar { + width: 0%; + height: 100%; + color: #ffffff; + float: left; + font-size: 12px; + text-align: center; + text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); + background-color: #0e90d2; + background-image: -moz-linear-gradient(top, #149bdf, #0480be); + background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#149bdf), to(#0480be)); + background-image: -webkit-linear-gradient(top, #149bdf, #0480be); + background-image: -o-linear-gradient(top, #149bdf, #0480be); + background-image: linear-gradient(to bottom, #149bdf, #0480be); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff149bdf', endColorstr='#ff0480be', GradientType=0); + -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); + -moz-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); + box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; + -webkit-transition: width 0.6s ease; + -moz-transition: width 0.6s ease; + -o-transition: width 0.6s ease; + transition: width 0.6s ease; +} +.progress .bar + .bar { + -webkit-box-shadow: inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15); + -moz-box-shadow: inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15); + box-shadow: inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15); +} +.progress-striped .bar { + background-color: #149bdf; + background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent)); + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + -webkit-background-size: 40px 40px; + -moz-background-size: 40px 40px; + -o-background-size: 40px 40px; + background-size: 40px 40px; +} +.progress.active .bar { + -webkit-animation: progress-bar-stripes 2s linear infinite; + -moz-animation: progress-bar-stripes 2s linear infinite; + -ms-animation: progress-bar-stripes 2s linear infinite; + -o-animation: progress-bar-stripes 2s linear infinite; + animation: progress-bar-stripes 2s linear infinite; +} +.progress-danger .bar, +.progress .bar-danger { + background-color: #dd514c; + background-image: -moz-linear-gradient(top, #ee5f5b, #c43c35); + background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#c43c35)); + background-image: -webkit-linear-gradient(top, #ee5f5b, #c43c35); + background-image: -o-linear-gradient(top, #ee5f5b, #c43c35); + background-image: linear-gradient(to bottom, #ee5f5b, #c43c35); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffc43c35', GradientType=0); +} +.progress-danger.progress-striped .bar, +.progress-striped .bar-danger { + background-color: #ee5f5b; + background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent)); + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); +} +.progress-success .bar, +.progress .bar-success { + background-color: #5eb95e; + background-image: -moz-linear-gradient(top, #62c462, #57a957); + background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#57a957)); + background-image: -webkit-linear-gradient(top, #62c462, #57a957); + background-image: -o-linear-gradient(top, #62c462, #57a957); + background-image: linear-gradient(to bottom, #62c462, #57a957); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff57a957', GradientType=0); +} +.progress-success.progress-striped .bar, +.progress-striped .bar-success { + background-color: #62c462; + background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent)); + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); +} +.progress-info .bar, +.progress .bar-info { + background-color: #4bb1cf; + background-image: -moz-linear-gradient(top, #5bc0de, #339bb9); + background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#339bb9)); + background-image: -webkit-linear-gradient(top, #5bc0de, #339bb9); + background-image: -o-linear-gradient(top, #5bc0de, #339bb9); + background-image: linear-gradient(to bottom, #5bc0de, #339bb9); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff339bb9', GradientType=0); +} +.progress-info.progress-striped .bar, +.progress-striped .bar-info { + background-color: #5bc0de; + background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent)); + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); +} +.progress-warning .bar, +.progress .bar-warning { + background-color: #faa732; + background-image: -moz-linear-gradient(top, #fbb450, #f89406); + background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406)); + background-image: -webkit-linear-gradient(top, #fbb450, #f89406); + background-image: -o-linear-gradient(top, #fbb450, #f89406); + background-image: linear-gradient(to bottom, #fbb450, #f89406); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fff89406', GradientType=0); +} +.progress-warning.progress-striped .bar, +.progress-striped .bar-warning { + background-color: #fbb450; + background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent)); + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); +} +.hero-unit { + padding: 60px; + margin-bottom: 30px; + font-size: 18px; + font-weight: 200; + line-height: 30px; + color: inherit; + background-color: #eeeeee; + -webkit-border-radius: 6px; + -moz-border-radius: 6px; + border-radius: 6px; +} +.hero-unit h1 { + margin-bottom: 0; + font-size: 60px; + line-height: 1; + color: inherit; + letter-spacing: -1px; +} +.hero-unit li { + line-height: 30px; +} +.media, +.media-body { + overflow: hidden; + *overflow: visible; + zoom: 1; +} +.media, +.media .media { + margin-top: 15px; +} +.media:first-child { + margin-top: 0; +} +.media-object { + display: block; +} +.media-heading { + margin: 0 0 5px; +} +.media > .pull-left { + margin-right: 10px; +} +.media > .pull-right { + margin-left: 10px; +} +.media-list { + margin-left: 0; + list-style: none; +} +.tooltip { + position: absolute; + z-index: 1030; + display: block; + visibility: visible; + font-size: 11px; + line-height: 1.4; + opacity: 0; + filter: alpha(opacity=0); +} +.tooltip.in { + opacity: 0.8; + filter: alpha(opacity=80); +} +.tooltip.top { + margin-top: -3px; + padding: 5px 0; +} +.tooltip.right { + margin-left: 3px; + padding: 0 5px; +} +.tooltip.bottom { + margin-top: 3px; + padding: 5px 0; +} +.tooltip.left { + margin-left: -3px; + padding: 0 5px; +} +.tooltip-inner { + max-width: 200px; + padding: 8px; + color: #ffffff; + text-align: center; + text-decoration: none; + background-color: #000000; + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + border-radius: 4px; +} +.tooltip-arrow { + position: absolute; + width: 0; + height: 0; + border-color: transparent; + border-style: solid; +} +.tooltip.top .tooltip-arrow { + bottom: 0; + left: 50%; + margin-left: -5px; + border-width: 5px 5px 0; + border-top-color: #000000; +} +.tooltip.right .tooltip-arrow { + top: 50%; + left: 0; + margin-top: -5px; + border-width: 5px 5px 5px 0; + border-right-color: #000000; +} +.tooltip.left .tooltip-arrow { + top: 50%; + right: 0; + margin-top: -5px; + border-width: 5px 0 5px 5px; + border-left-color: #000000; +} +.tooltip.bottom .tooltip-arrow { + top: 0; + left: 50%; + margin-left: -5px; + border-width: 0 5px 5px; + border-bottom-color: #000000; +} +.popover { + position: absolute; + top: 0; + left: 0; + z-index: 1010; + display: none; + max-width: 276px; + padding: 1px; + text-align: left; + background-color: #ffffff; + -webkit-background-clip: padding-box; + -moz-background-clip: padding; + background-clip: padding-box; + border: 1px solid #ccc; + border: 1px solid rgba(0, 0, 0, 0.2); + -webkit-border-radius: 6px; + -moz-border-radius: 6px; + border-radius: 6px; + -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); + -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); + box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); + white-space: normal; +} +.popover.top { + margin-top: -10px; +} +.popover.right { + margin-left: 10px; +} +.popover.bottom { + margin-top: 10px; +} +.popover.left { + margin-left: -10px; +} +.popover-title { + margin: 0; + padding: 8px 14px; + font-size: 14px; + font-weight: normal; + line-height: 18px; + background-color: #f7f7f7; + border-bottom: 1px solid #ebebeb; + -webkit-border-radius: 5px 5px 0 0; + -moz-border-radius: 5px 5px 0 0; + border-radius: 5px 5px 0 0; +} +.popover-title:empty { + display: none; +} +.popover-content { + padding: 9px 14px; +} +.popover .arrow, +.popover .arrow:after { + position: absolute; + display: block; + width: 0; + height: 0; + border-color: transparent; + border-style: solid; +} +.popover .arrow { + border-width: 11px; +} +.popover .arrow:after { + border-width: 10px; + content: ""; +} +.popover.top .arrow { + left: 50%; + margin-left: -11px; + border-bottom-width: 0; + border-top-color: #999; + border-top-color: rgba(0, 0, 0, 0.25); + bottom: -11px; +} +.popover.top .arrow:after { + bottom: 1px; + margin-left: -10px; + border-bottom-width: 0; + border-top-color: #ffffff; +} +.popover.right .arrow { + top: 50%; + left: -11px; + margin-top: -11px; + border-left-width: 0; + border-right-color: #999; + border-right-color: rgba(0, 0, 0, 0.25); +} +.popover.right .arrow:after { + left: 1px; + bottom: -10px; + border-left-width: 0; + border-right-color: #ffffff; +} +.popover.bottom .arrow { + left: 50%; + margin-left: -11px; + border-top-width: 0; + border-bottom-color: #999; + border-bottom-color: rgba(0, 0, 0, 0.25); + top: -11px; +} +.popover.bottom .arrow:after { + top: 1px; + margin-left: -10px; + border-top-width: 0; + border-bottom-color: #ffffff; +} +.popover.left .arrow { + top: 50%; + right: -11px; + margin-top: -11px; + border-right-width: 0; + border-left-color: #999; + border-left-color: rgba(0, 0, 0, 0.25); +} +.popover.left .arrow:after { + right: 1px; + border-right-width: 0; + border-left-color: #ffffff; + bottom: -10px; +} +.modal-backdrop { + position: fixed; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 1040; + background-color: #000000; +} +.modal-backdrop.fade { + opacity: 0; +} +.modal-backdrop, +.modal-backdrop.fade.in { + opacity: 0.8; + filter: alpha(opacity=80); +} +.modal { + position: fixed; + top: 10%; + left: 50%; + z-index: 1050; + width: 560px; + margin-left: -280px; + background-color: #ffffff; + border: 1px solid #999; + border: 1px solid rgba(0, 0, 0, 0.3); + *border: 1px solid #999; + /* IE6-7 */ + + -webkit-border-radius: 6px; + -moz-border-radius: 6px; + border-radius: 6px; + -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3); + -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3); + box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3); + -webkit-background-clip: padding-box; + -moz-background-clip: padding-box; + background-clip: padding-box; + outline: none; +} +.modal.fade { + -webkit-transition: opacity .3s linear, top .3s ease-out; + -moz-transition: opacity .3s linear, top .3s ease-out; + -o-transition: opacity .3s linear, top .3s ease-out; + transition: opacity .3s linear, top .3s ease-out; + top: -25%; +} +.modal.fade.in { + top: 10%; +} +.modal-header { + padding: 9px 15px; + border-bottom: 1px solid #eee; +} +.modal-header .close { + margin-top: 2px; +} +.modal-header h3 { + margin: 0; + line-height: 30px; +} +.modal-body { + position: relative; + overflow-y: auto; + max-height: 400px; + padding: 15px; +} +.modal-form { + margin-bottom: 0; +} +.modal-footer { + padding: 14px 15px 15px; + margin-bottom: 0; + text-align: right; + background-color: #f5f5f5; + border-top: 1px solid #ddd; + -webkit-border-radius: 0 0 6px 6px; + -moz-border-radius: 0 0 6px 6px; + border-radius: 0 0 6px 6px; + -webkit-box-shadow: inset 0 1px 0 #ffffff; + -moz-box-shadow: inset 0 1px 0 #ffffff; + box-shadow: inset 0 1px 0 #ffffff; + *zoom: 1; +} +.modal-footer:before, +.modal-footer:after { + display: table; + content: ""; + line-height: 0; +} +.modal-footer:after { + clear: both; +} +.modal-footer .btn + .btn { + margin-left: 5px; + margin-bottom: 0; +} +.modal-footer .btn-group .btn + .btn { + margin-left: -1px; +} +.modal-footer .btn-block + .btn-block { + margin-left: 0; +} +.dropup, +.dropdown { + position: relative; +} +.dropdown-toggle { + *margin-bottom: -3px; +} +.dropdown-toggle:active, +.open .dropdown-toggle { + outline: 0; +} +.caret { + display: inline-block; + width: 0; + height: 0; + vertical-align: top; + border-top: 4px solid #000000; + border-right: 4px solid transparent; + border-left: 4px solid transparent; + content: ""; +} +.dropdown .caret { + margin-top: 8px; + margin-left: 2px; +} +.dropdown-menu { + position: absolute; + top: 100%; + left: 0; + z-index: 1000; + display: none; + float: left; + min-width: 160px; + padding: 5px 0; + margin: 2px 0 0; + list-style: none; + background-color: #ffffff; + border: 1px solid #ccc; + border: 1px solid rgba(0, 0, 0, 0.2); + *border-right-width: 2px; + *border-bottom-width: 2px; + -webkit-border-radius: 6px; + -moz-border-radius: 6px; + border-radius: 6px; + -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); + -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); + box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); + -webkit-background-clip: padding-box; + -moz-background-clip: padding; + background-clip: padding-box; +} +.dropdown-menu.pull-right { + right: 0; + left: auto; +} +.dropdown-menu .divider { + *width: 100%; + height: 1px; + margin: 9px 1px; + *margin: -5px 0 5px; + overflow: hidden; + background-color: #e5e5e5; + border-bottom: 1px solid #ffffff; +} +.dropdown-menu > li > a { + display: block; + padding: 3px 20px; + clear: both; + font-weight: normal; + line-height: 20px; + color: #333333; + white-space: nowrap; +} +.dropdown-menu > li > a:hover, +.dropdown-menu > li > a:focus, +.dropdown-submenu:hover > a, +.dropdown-submenu:focus > a { + text-decoration: none; + color: #ffffff; + background-color: #0081c2; + background-image: -moz-linear-gradient(top, #0088cc, #0077b3); + background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0077b3)); + background-image: -webkit-linear-gradient(top, #0088cc, #0077b3); + background-image: -o-linear-gradient(top, #0088cc, #0077b3); + background-image: linear-gradient(to bottom, #0088cc, #0077b3); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0); +} +.dropdown-menu > .active > a, +.dropdown-menu > .active > a:hover, +.dropdown-menu > .active > a:focus { + color: #ffffff; + text-decoration: none; + outline: 0; + background-color: #0081c2; + background-image: -moz-linear-gradient(top, #0088cc, #0077b3); + background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0077b3)); + background-image: -webkit-linear-gradient(top, #0088cc, #0077b3); + background-image: -o-linear-gradient(top, #0088cc, #0077b3); + background-image: linear-gradient(to bottom, #0088cc, #0077b3); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0); +} +.dropdown-menu > .disabled > a, +.dropdown-menu > .disabled > a:hover, +.dropdown-menu > .disabled > a:focus { + color: #999999; +} +.dropdown-menu > .disabled > a:hover, +.dropdown-menu > .disabled > a:focus { + text-decoration: none; + background-color: transparent; + background-image: none; + filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); + cursor: default; +} +.open { + *z-index: 1000; +} +.open > .dropdown-menu { + display: block; +} +.pull-right > .dropdown-menu { + right: 0; + left: auto; +} +.dropup .caret, +.navbar-fixed-bottom .dropdown .caret { + border-top: 0; + border-bottom: 4px solid #000000; + content: ""; +} +.dropup .dropdown-menu, +.navbar-fixed-bottom .dropdown .dropdown-menu { + top: auto; + bottom: 100%; + margin-bottom: 1px; +} +.dropdown-submenu { + position: relative; +} +.dropdown-submenu > .dropdown-menu { + top: 0; + left: 100%; + margin-top: -6px; + margin-left: -1px; + -webkit-border-radius: 0 6px 6px 6px; + -moz-border-radius: 0 6px 6px 6px; + border-radius: 0 6px 6px 6px; +} +.dropdown-submenu:hover > .dropdown-menu { + display: block; +} +.dropup .dropdown-submenu > .dropdown-menu { + top: auto; + bottom: 0; + margin-top: 0; + margin-bottom: -2px; + -webkit-border-radius: 5px 5px 5px 0; + -moz-border-radius: 5px 5px 5px 0; + border-radius: 5px 5px 5px 0; +} +.dropdown-submenu > a:after { + display: block; + content: " "; + float: right; + width: 0; + height: 0; + border-color: transparent; + border-style: solid; + border-width: 5px 0 5px 5px; + border-left-color: #cccccc; + margin-top: 5px; + margin-right: -10px; +} +.dropdown-submenu:hover > a:after { + border-left-color: #ffffff; +} +.dropdown-submenu.pull-left { + float: none; +} +.dropdown-submenu.pull-left > .dropdown-menu { + left: -100%; + margin-left: 10px; + -webkit-border-radius: 6px 0 6px 6px; + -moz-border-radius: 6px 0 6px 6px; + border-radius: 6px 0 6px 6px; +} +.dropdown .dropdown-menu .nav-header { + padding-left: 20px; + padding-right: 20px; +} +.typeahead { + z-index: 1051; + margin-top: 2px; + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + border-radius: 4px; +} +.accordion { + margin-bottom: 20px; +} +.accordion-group { + margin-bottom: 2px; + border: 1px solid #e5e5e5; + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + border-radius: 4px; +} +.accordion-heading { + border-bottom: 0; +} +.accordion-heading .accordion-toggle { + display: block; + padding: 8px 15px; +} +.accordion-toggle { + cursor: pointer; +} +.accordion-inner { + padding: 9px 15px; + border-top: 1px solid #e5e5e5; +} +.carousel { + position: relative; + margin-bottom: 20px; + line-height: 1; +} +.carousel-inner { + overflow: hidden; + width: 100%; + position: relative; +} +.carousel-inner > .item { + display: none; + position: relative; + -webkit-transition: 0.6s ease-in-out left; + -moz-transition: 0.6s ease-in-out left; + -o-transition: 0.6s ease-in-out left; + transition: 0.6s ease-in-out left; +} +.carousel-inner > .item > img, +.carousel-inner > .item > a > img { + display: block; + line-height: 1; +} +.carousel-inner > .active, +.carousel-inner > .next, +.carousel-inner > .prev { + display: block; +} +.carousel-inner > .active { + left: 0; +} +.carousel-inner > .next, +.carousel-inner > .prev { + position: absolute; + top: 0; + width: 100%; +} +.carousel-inner > .next { + left: 100%; +} +.carousel-inner > .prev { + left: -100%; +} +.carousel-inner > .next.left, +.carousel-inner > .prev.right { + left: 0; +} +.carousel-inner > .active.left { + left: -100%; +} +.carousel-inner > .active.right { + left: 100%; +} +.carousel-control { + position: absolute; + top: 40%; + left: 15px; + width: 40px; + height: 40px; + margin-top: -20px; + font-size: 60px; + font-weight: 100; + line-height: 30px; + color: #ffffff; + text-align: center; + background: #222222; + border: 3px solid #ffffff; + -webkit-border-radius: 23px; + -moz-border-radius: 23px; + border-radius: 23px; + opacity: 0.5; + filter: alpha(opacity=50); +} +.carousel-control.right { + left: auto; + right: 15px; +} +.carousel-control:hover, +.carousel-control:focus { + color: #ffffff; + text-decoration: none; + opacity: 0.9; + filter: alpha(opacity=90); +} +.carousel-indicators { + position: absolute; + top: 15px; + right: 15px; + z-index: 5; + margin: 0; + list-style: none; +} +.carousel-indicators li { + display: block; + float: left; + width: 10px; + height: 10px; + margin-left: 5px; + text-indent: -999px; + background-color: #ccc; + background-color: rgba(255, 255, 255, 0.25); + border-radius: 5px; +} +.carousel-indicators .active { + background-color: #fff; +} +.carousel-caption { + position: absolute; + left: 0; + right: 0; + bottom: 0; + padding: 15px; + background: #333333; + background: rgba(0, 0, 0, 0.75); +} +.carousel-caption h4, +.carousel-caption p { + color: #ffffff; + line-height: 20px; +} +.carousel-caption h4 { + margin: 0 0 5px; +} +.carousel-caption p { + margin-bottom: 0; +} +.well { + min-height: 20px; + padding: 19px; + margin-bottom: 20px; + background-color: #f5f5f5; + border: 1px solid #e3e3e3; + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + border-radius: 4px; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); + -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); +} +.well blockquote { + border-color: #ddd; + border-color: rgba(0, 0, 0, 0.15); +} +.well-large { + padding: 24px; + -webkit-border-radius: 6px; + -moz-border-radius: 6px; + border-radius: 6px; +} +.well-small { + padding: 9px; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + border-radius: 3px; +} +.close { + float: right; + font-size: 20px; + font-weight: bold; + line-height: 20px; + color: #000000; + text-shadow: 0 1px 0 #ffffff; + opacity: 0.2; + filter: alpha(opacity=20); +} +.close:hover, +.close:focus { + color: #000000; + text-decoration: none; + cursor: pointer; + opacity: 0.4; + filter: alpha(opacity=40); +} +button.close { + padding: 0; + cursor: pointer; + background: transparent; + border: 0; + -webkit-appearance: none; +} +.pull-right { + float: right; +} +.pull-left { + float: left; +} +.hide { + display: none; +} +.show { + display: block; +} +.invisible { + visibility: hidden; +} +.affix { + position: fixed; +} +.fade { + opacity: 0; + -webkit-transition: opacity 0.15s linear; + -moz-transition: opacity 0.15s linear; + -o-transition: opacity 0.15s linear; + transition: opacity 0.15s linear; +} +.fade.in { + opacity: 1; +} +.collapse { + position: relative; + height: 0; + overflow: hidden; + -webkit-transition: height 0.35s ease; + -moz-transition: height 0.35s ease; + -o-transition: height 0.35s ease; + transition: height 0.35s ease; +} +.collapse.in { + height: auto; +} +@-ms-viewport { + width: device-width; +} +.hidden { + display: none; + visibility: hidden; +} +.visible-phone { + display: none !important; +} +.visible-tablet { + display: none !important; +} +.hidden-desktop { + display: none !important; +} +.visible-desktop { + display: inherit !important; +} +@media (min-width: 768px) and (max-width: 979px) { + .hidden-desktop { + display: inherit !important; + } + .visible-desktop { + display: none !important ; + } + .visible-tablet { + display: inherit !important; + } + .hidden-tablet { + display: none !important; + } +} +@media (max-width: 767px) { + .hidden-desktop { + display: inherit !important; + } + .visible-desktop { + display: none !important; + } + .visible-phone { + display: inherit !important; + } + .hidden-phone { + display: none !important; + } +} +.visible-print { + display: none !important; +} +@media print { + .visible-print { + display: inherit !important; + } + .hidden-print { + display: none !important; + } +} +@media (max-width: 767px) { + body { + padding-left: 20px; + padding-right: 20px; + } + .navbar-fixed-top, + .navbar-fixed-bottom, + .navbar-static-top { + margin-left: -20px; + margin-right: -20px; + } + .container-fluid { + padding: 0; + } + .dl-horizontal dt { + float: none; + clear: none; + width: auto; + text-align: left; + } + .dl-horizontal dd { + margin-left: 0; + } + .container { + width: auto; + } + .row-fluid { + width: 100%; + } + .row, + .thumbnails { + margin-left: 0; + } + .thumbnails > li { + float: none; + margin-left: 0; + } + [class*="span"], + .uneditable-input[class*="span"], + .row-fluid [class*="span"] { + float: none; + display: block; + width: 100%; + margin-left: 0; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; + } + .span12, + .row-fluid .span12 { + width: 100%; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; + } + .row-fluid [class*="offset"]:first-child { + margin-left: 0; + } + .input-large, + .input-xlarge, + .input-xxlarge, + input[class*="span"], + select[class*="span"], + textarea[class*="span"], + .uneditable-input { + display: block; + width: 100%; + min-height: 30px; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; + } + .input-prepend input, + .input-append input, + .input-prepend input[class*="span"], + .input-append input[class*="span"] { + display: inline-block; + width: auto; + } + .controls-row [class*="span"] + [class*="span"] { + margin-left: 0; + } + .modal { + position: fixed; + top: 20px; + left: 20px; + right: 20px; + width: auto; + margin: 0; + } + .modal.fade { + top: -100px; + } + .modal.fade.in { + top: 20px; + } +} +@media (max-width: 480px) { + .nav-collapse { + -webkit-transform: translate3d(0, 0, 0); + } + .page-header h1 small { + display: block; + line-height: 20px; + } + input[type="checkbox"], + input[type="radio"] { + border: 1px solid #ccc; + } + .form-horizontal .control-label { + float: none; + width: auto; + padding-top: 0; + text-align: left; + } + .form-horizontal .controls { + margin-left: 0; + } + .form-horizontal .control-list { + padding-top: 0; + } + .form-horizontal .form-actions { + padding-left: 10px; + padding-right: 10px; + } + .media .pull-left, + .media .pull-right { + float: none; + display: block; + margin-bottom: 10px; + } + .media-object { + margin-right: 0; + margin-left: 0; + } + .modal { + top: 10px; + left: 10px; + right: 10px; + } + .modal-header .close { + padding: 10px; + margin: -10px; + } + .carousel-caption { + position: static; + } +} +@media (min-width: 768px) and (max-width: 979px) { + .row { + margin-left: -20px; + *zoom: 1; + } + .row:before, + .row:after { + display: table; + content: ""; + line-height: 0; + } + .row:after { + clear: both; + } + [class*="span"] { + float: left; + min-height: 1px; + margin-left: 20px; + } + .container, + .navbar-static-top .container, + .navbar-fixed-top .container, + .navbar-fixed-bottom .container { + width: 724px; + } + .span12 { + width: 724px; + } + .span11 { + width: 662px; + } + .span10 { + width: 600px; + } + .span9 { + width: 538px; + } + .span8 { + width: 476px; + } + .span7 { + width: 414px; + } + .span6 { + width: 352px; + } + .span5 { + width: 290px; + } + .span4 { + width: 228px; + } + .span3 { + width: 166px; + } + .span2 { + width: 104px; + } + .span1 { + width: 42px; + } + .offset12 { + margin-left: 764px; + } + .offset11 { + margin-left: 702px; + } + .offset10 { + margin-left: 640px; + } + .offset9 { + margin-left: 578px; + } + .offset8 { + margin-left: 516px; + } + .offset7 { + margin-left: 454px; + } + .offset6 { + margin-left: 392px; + } + .offset5 { + margin-left: 330px; + } + .offset4 { + margin-left: 268px; + } + .offset3 { + margin-left: 206px; + } + .offset2 { + margin-left: 144px; + } + .offset1 { + margin-left: 82px; + } + .row-fluid { + width: 100%; + *zoom: 1; + } + .row-fluid:before, + .row-fluid:after { + display: table; + content: ""; + line-height: 0; + } + .row-fluid:after { + clear: both; + } + .row-fluid [class*="span"] { + display: block; + width: 100%; + min-height: 30px; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; + float: left; + margin-left: 2.7624309392265194%; + *margin-left: 2.709239449864817%; + } + .row-fluid [class*="span"]:first-child { + margin-left: 0; + } + .row-fluid .controls-row [class*="span"] + [class*="span"] { + margin-left: 2.7624309392265194%; + } + .row-fluid .span12 { + width: 100%; + *width: 99.94680851063829%; + } + .row-fluid .span11 { + width: 91.43646408839778%; + *width: 91.38327259903608%; + } + .row-fluid .span10 { + width: 82.87292817679558%; + *width: 82.81973668743387%; + } + .row-fluid .span9 { + width: 74.30939226519337%; + *width: 74.25620077583166%; + } + .row-fluid .span8 { + width: 65.74585635359117%; + *width: 65.69266486422946%; + } + .row-fluid .span7 { + width: 57.18232044198895%; + *width: 57.12912895262725%; + } + .row-fluid .span6 { + width: 48.61878453038674%; + *width: 48.56559304102504%; + } + .row-fluid .span5 { + width: 40.05524861878453%; + *width: 40.00205712942283%; + } + .row-fluid .span4 { + width: 31.491712707182323%; + *width: 31.43852121782062%; + } + .row-fluid .span3 { + width: 22.92817679558011%; + *width: 22.87498530621841%; + } + .row-fluid .span2 { + width: 14.3646408839779%; + *width: 14.311449394616199%; + } + .row-fluid .span1 { + width: 5.801104972375691%; + *width: 5.747913483013988%; + } + .row-fluid .offset12 { + margin-left: 105.52486187845304%; + *margin-left: 105.41847889972962%; + } + .row-fluid .offset12:first-child { + margin-left: 102.76243093922652%; + *margin-left: 102.6560479605031%; + } + .row-fluid .offset11 { + margin-left: 96.96132596685082%; + *margin-left: 96.8549429881274%; + } + .row-fluid .offset11:first-child { + margin-left: 94.1988950276243%; + *margin-left: 94.09251204890089%; + } + .row-fluid .offset10 { + margin-left: 88.39779005524862%; + *margin-left: 88.2914070765252%; + } + .row-fluid .offset10:first-child { + margin-left: 85.6353591160221%; + *margin-left: 85.52897613729868%; + } + .row-fluid .offset9 { + margin-left: 79.8342541436464%; + *margin-left: 79.72787116492299%; + } + .row-fluid .offset9:first-child { + margin-left: 77.07182320441989%; + *margin-left: 76.96544022569647%; + } + .row-fluid .offset8 { + margin-left: 71.2707182320442%; + *margin-left: 71.16433525332079%; + } + .row-fluid .offset8:first-child { + margin-left: 68.50828729281768%; + *margin-left: 68.40190431409427%; + } + .row-fluid .offset7 { + margin-left: 62.70718232044199%; + *margin-left: 62.600799341718584%; + } + .row-fluid .offset7:first-child { + margin-left: 59.94475138121547%; + *margin-left: 59.838368402492065%; + } + .row-fluid .offset6 { + margin-left: 54.14364640883978%; + *margin-left: 54.037263430116376%; + } + .row-fluid .offset6:first-child { + margin-left: 51.38121546961326%; + *margin-left: 51.27483249088986%; + } + .row-fluid .offset5 { + margin-left: 45.58011049723757%; + *margin-left: 45.47372751851417%; + } + .row-fluid .offset5:first-child { + margin-left: 42.81767955801105%; + *margin-left: 42.71129657928765%; + } + .row-fluid .offset4 { + margin-left: 37.01657458563536%; + *margin-left: 36.91019160691196%; + } + .row-fluid .offset4:first-child { + margin-left: 34.25414364640884%; + *margin-left: 34.14776066768544%; + } + .row-fluid .offset3 { + margin-left: 28.45303867403315%; + *margin-left: 28.346655695309746%; + } + .row-fluid .offset3:first-child { + margin-left: 25.69060773480663%; + *margin-left: 25.584224756083227%; + } + .row-fluid .offset2 { + margin-left: 19.88950276243094%; + *margin-left: 19.783119783707537%; + } + .row-fluid .offset2:first-child { + margin-left: 17.12707182320442%; + *margin-left: 17.02068884448102%; + } + .row-fluid .offset1 { + margin-left: 11.32596685082873%; + *margin-left: 11.219583872105325%; + } + .row-fluid .offset1:first-child { + margin-left: 8.56353591160221%; + *margin-left: 8.457152932878806%; + } + input, + textarea, + .uneditable-input { + margin-left: 0; + } + .controls-row [class*="span"] + [class*="span"] { + margin-left: 20px; + } + input.span12, + textarea.span12, + .uneditable-input.span12 { + width: 710px; + } + input.span11, + textarea.span11, + .uneditable-input.span11 { + width: 648px; + } + input.span10, + textarea.span10, + .uneditable-input.span10 { + width: 586px; + } + input.span9, + textarea.span9, + .uneditable-input.span9 { + width: 524px; + } + input.span8, + textarea.span8, + .uneditable-input.span8 { + width: 462px; + } + input.span7, + textarea.span7, + .uneditable-input.span7 { + width: 400px; + } + input.span6, + textarea.span6, + .uneditable-input.span6 { + width: 338px; + } + input.span5, + textarea.span5, + .uneditable-input.span5 { + width: 276px; + } + input.span4, + textarea.span4, + .uneditable-input.span4 { + width: 214px; + } + input.span3, + textarea.span3, + .uneditable-input.span3 { + width: 152px; + } + input.span2, + textarea.span2, + .uneditable-input.span2 { + width: 90px; + } + input.span1, + textarea.span1, + .uneditable-input.span1 { + width: 28px; + } +} +@media (min-width: 1200px) { + .row { + margin-left: -30px; + *zoom: 1; + } + .row:before, + .row:after { + display: table; + content: ""; + line-height: 0; + } + .row:after { + clear: both; + } + [class*="span"] { + float: left; + min-height: 1px; + margin-left: 30px; + } + .container, + .navbar-static-top .container, + .navbar-fixed-top .container, + .navbar-fixed-bottom .container { + width: 1170px; + } + .span12 { + width: 1170px; + } + .span11 { + width: 1070px; + } + .span10 { + width: 970px; + } + .span9 { + width: 870px; + } + .span8 { + width: 770px; + } + .span7 { + width: 670px; + } + .span6 { + width: 570px; + } + .span5 { + width: 470px; + } + .span4 { + width: 370px; + } + .span3 { + width: 270px; + } + .span2 { + width: 170px; + } + .span1 { + width: 70px; + } + .offset12 { + margin-left: 1230px; + } + .offset11 { + margin-left: 1130px; + } + .offset10 { + margin-left: 1030px; + } + .offset9 { + margin-left: 930px; + } + .offset8 { + margin-left: 830px; + } + .offset7 { + margin-left: 730px; + } + .offset6 { + margin-left: 630px; + } + .offset5 { + margin-left: 530px; + } + .offset4 { + margin-left: 430px; + } + .offset3 { + margin-left: 330px; + } + .offset2 { + margin-left: 230px; + } + .offset1 { + margin-left: 130px; + } + .row-fluid { + width: 100%; + *zoom: 1; + } + .row-fluid:before, + .row-fluid:after { + display: table; + content: ""; + line-height: 0; + } + .row-fluid:after { + clear: both; + } + .row-fluid [class*="span"] { + display: block; + width: 100%; + min-height: 30px; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; + float: left; + margin-left: 2.564102564102564%; + *margin-left: 2.5109110747408616%; + } + .row-fluid [class*="span"]:first-child { + margin-left: 0; + } + .row-fluid .controls-row [class*="span"] + [class*="span"] { + margin-left: 2.564102564102564%; + } + .row-fluid .span12 { + width: 100%; + *width: 99.94680851063829%; + } + .row-fluid .span11 { + width: 91.45299145299145%; + *width: 91.39979996362975%; + } + .row-fluid .span10 { + width: 82.90598290598291%; + *width: 82.8527914166212%; + } + .row-fluid .span9 { + width: 74.35897435897436%; + *width: 74.30578286961266%; + } + .row-fluid .span8 { + width: 65.81196581196582%; + *width: 65.75877432260411%; + } + .row-fluid .span7 { + width: 57.26495726495726%; + *width: 57.21176577559556%; + } + .row-fluid .span6 { + width: 48.717948717948715%; + *width: 48.664757228587014%; + } + .row-fluid .span5 { + width: 40.17094017094017%; + *width: 40.11774868157847%; + } + .row-fluid .span4 { + width: 31.623931623931625%; + *width: 31.570740134569924%; + } + .row-fluid .span3 { + width: 23.076923076923077%; + *width: 23.023731587561375%; + } + .row-fluid .span2 { + width: 14.52991452991453%; + *width: 14.476723040552828%; + } + .row-fluid .span1 { + width: 5.982905982905983%; + *width: 5.929714493544281%; + } + .row-fluid .offset12 { + margin-left: 105.12820512820512%; + *margin-left: 105.02182214948171%; + } + .row-fluid .offset12:first-child { + margin-left: 102.56410256410257%; + *margin-left: 102.45771958537915%; + } + .row-fluid .offset11 { + margin-left: 96.58119658119658%; + *margin-left: 96.47481360247316%; + } + .row-fluid .offset11:first-child { + margin-left: 94.01709401709402%; + *margin-left: 93.91071103837061%; + } + .row-fluid .offset10 { + margin-left: 88.03418803418803%; + *margin-left: 87.92780505546462%; + } + .row-fluid .offset10:first-child { + margin-left: 85.47008547008548%; + *margin-left: 85.36370249136206%; + } + .row-fluid .offset9 { + margin-left: 79.48717948717949%; + *margin-left: 79.38079650845607%; + } + .row-fluid .offset9:first-child { + margin-left: 76.92307692307693%; + *margin-left: 76.81669394435352%; + } + .row-fluid .offset8 { + margin-left: 70.94017094017094%; + *margin-left: 70.83378796144753%; + } + .row-fluid .offset8:first-child { + margin-left: 68.37606837606839%; + *margin-left: 68.26968539734497%; + } + .row-fluid .offset7 { + margin-left: 62.393162393162385%; + *margin-left: 62.28677941443899%; + } + .row-fluid .offset7:first-child { + margin-left: 59.82905982905982%; + *margin-left: 59.72267685033642%; + } + .row-fluid .offset6 { + margin-left: 53.84615384615384%; + *margin-left: 53.739770867430444%; + } + .row-fluid .offset6:first-child { + margin-left: 51.28205128205128%; + *margin-left: 51.175668303327875%; + } + .row-fluid .offset5 { + margin-left: 45.299145299145295%; + *margin-left: 45.1927623204219%; + } + .row-fluid .offset5:first-child { + margin-left: 42.73504273504273%; + *margin-left: 42.62865975631933%; + } + .row-fluid .offset4 { + margin-left: 36.75213675213675%; + *margin-left: 36.645753773413354%; + } + .row-fluid .offset4:first-child { + margin-left: 34.18803418803419%; + *margin-left: 34.081651209310785%; + } + .row-fluid .offset3 { + margin-left: 28.205128205128204%; + *margin-left: 28.0987452264048%; + } + .row-fluid .offset3:first-child { + margin-left: 25.641025641025642%; + *margin-left: 25.53464266230224%; + } + .row-fluid .offset2 { + margin-left: 19.65811965811966%; + *margin-left: 19.551736679396257%; + } + .row-fluid .offset2:first-child { + margin-left: 17.094017094017094%; + *margin-left: 16.98763411529369%; + } + .row-fluid .offset1 { + margin-left: 11.11111111111111%; + *margin-left: 11.004728132387708%; + } + .row-fluid .offset1:first-child { + margin-left: 8.547008547008547%; + *margin-left: 8.440625568285142%; + } + input, + textarea, + .uneditable-input { + margin-left: 0; + } + .controls-row [class*="span"] + [class*="span"] { + margin-left: 30px; + } + input.span12, + textarea.span12, + .uneditable-input.span12 { + width: 1156px; + } + input.span11, + textarea.span11, + .uneditable-input.span11 { + width: 1056px; + } + input.span10, + textarea.span10, + .uneditable-input.span10 { + width: 956px; + } + input.span9, + textarea.span9, + .uneditable-input.span9 { + width: 856px; + } + input.span8, + textarea.span8, + .uneditable-input.span8 { + width: 756px; + } + input.span7, + textarea.span7, + .uneditable-input.span7 { + width: 656px; + } + input.span6, + textarea.span6, + .uneditable-input.span6 { + width: 556px; + } + input.span5, + textarea.span5, + .uneditable-input.span5 { + width: 456px; + } + input.span4, + textarea.span4, + .uneditable-input.span4 { + width: 356px; + } + input.span3, + textarea.span3, + .uneditable-input.span3 { + width: 256px; + } + input.span2, + textarea.span2, + .uneditable-input.span2 { + width: 156px; + } + input.span1, + textarea.span1, + .uneditable-input.span1 { + width: 56px; + } + .thumbnails { + margin-left: -30px; + } + .thumbnails > li { + margin-left: 30px; + } + .row-fluid .thumbnails { + margin-left: 0; + } +} +@media (max-width: 979px) { + body { + padding-top: 0; + } + .navbar-fixed-top, + .navbar-fixed-bottom { + position: static; + } + .navbar-fixed-top { + margin-bottom: 20px; + } + .navbar-fixed-bottom { + margin-top: 20px; + } + .navbar-fixed-top .navbar-inner, + .navbar-fixed-bottom .navbar-inner { + padding: 5px; + } + .navbar .container { + width: auto; + padding: 0; + } + .navbar .brand { + padding-left: 10px; + padding-right: 10px; + margin: 0 0 0 -5px; + } + .nav-collapse { + clear: both; + } + .nav-collapse .nav { + float: none; + margin: 0 0 10px; + } + .nav-collapse .nav > li { + float: none; + } + .nav-collapse .nav > li > a { + margin-bottom: 2px; + } + .nav-collapse .nav > .divider-vertical { + display: none; + } + .nav-collapse .nav .nav-header { + color: #777777; + text-shadow: none; + } + .nav-collapse .nav > li > a, + .nav-collapse .dropdown-menu a { + padding: 9px 15px; + font-weight: bold; + color: #777777; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + border-radius: 3px; + } + .nav-collapse .btn { + padding: 4px 10px 4px; + font-weight: normal; + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + border-radius: 4px; + } + .nav-collapse .dropdown-menu li + li a { + margin-bottom: 2px; + } + .nav-collapse .nav > li > a:hover, + .nav-collapse .nav > li > a:focus, + .nav-collapse .dropdown-menu a:hover, + .nav-collapse .dropdown-menu a:focus { + background-color: #f2f2f2; + } + .navbar-inverse .nav-collapse .nav > li > a, + .navbar-inverse .nav-collapse .dropdown-menu a { + color: #999999; + } + .navbar-inverse .nav-collapse .nav > li > a:hover, + .navbar-inverse .nav-collapse .nav > li > a:focus, + .navbar-inverse .nav-collapse .dropdown-menu a:hover, + .navbar-inverse .nav-collapse .dropdown-menu a:focus { + background-color: #111111; + } + .nav-collapse.in .btn-group { + margin-top: 5px; + padding: 0; + } + .nav-collapse .dropdown-menu { + position: static; + top: auto; + left: auto; + float: none; + display: none; + max-width: none; + margin: 0 15px; + padding: 0; + background-color: transparent; + border: none; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; + -webkit-box-shadow: none; + -moz-box-shadow: none; + box-shadow: none; + } + .nav-collapse .open > .dropdown-menu { + display: block; + } + .nav-collapse .dropdown-menu:before, + .nav-collapse .dropdown-menu:after { + display: none; + } + .nav-collapse .dropdown-menu .divider { + display: none; + } + .nav-collapse .nav > li > .dropdown-menu:before, + .nav-collapse .nav > li > .dropdown-menu:after { + display: none; + } + .nav-collapse .navbar-form, + .nav-collapse .navbar-search { + float: none; + padding: 10px 15px; + margin: 10px 0; + border-top: 1px solid #f2f2f2; + border-bottom: 1px solid #f2f2f2; + -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.1); + -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.1); + box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.1); + } + .navbar-inverse .nav-collapse .navbar-form, + .navbar-inverse .nav-collapse .navbar-search { + border-top-color: #111111; + border-bottom-color: #111111; + } + .navbar .nav-collapse .nav.pull-right { + float: none; + margin-left: 0; + } + .nav-collapse, + .nav-collapse.collapse { + overflow: hidden; + height: 0; + } + .navbar .btn-navbar { + display: block; + } + .navbar-static .navbar-inner { + padding-left: 10px; + padding-right: 10px; + } +} +@media (min-width: 980px) { + .nav-collapse.collapse { + height: auto !important; + overflow: visible !important; + } +} diff --git a/samples/CSS/bootstrap.min.css b/samples/CSS/bootstrap.min.css new file mode 100644 index 00000000..0f48a964 --- /dev/null +++ b/samples/CSS/bootstrap.min.css @@ -0,0 +1,873 @@ +/*! + * Bootstrap v2.3.1 + * + * Copyright 2012 Twitter, Inc + * Licensed under the Apache License v2.0 + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Designed and built with all the love in the world @twitter by @mdo and @fat. + */ +.clearfix{*zoom:1;}.clearfix:before,.clearfix:after{display:table;content:"";line-height:0;} +.clearfix:after{clear:both;} +.hide-text{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0;} +.input-block-level{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;} +article,aside,details,figcaption,figure,footer,header,hgroup,nav,section{display:block;} +audio,canvas,video{display:inline-block;*display:inline;*zoom:1;} +audio:not([controls]){display:none;} +html{font-size:100%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;} +a:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px;} +a:hover,a:active{outline:0;} +sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline;} +sup{top:-0.5em;} +sub{bottom:-0.25em;} +img{max-width:100%;width:auto\9;height:auto;vertical-align:middle;border:0;-ms-interpolation-mode:bicubic;} +#map_canvas img,.google-maps img{max-width:none;} +button,input,select,textarea{margin:0;font-size:100%;vertical-align:middle;} +button,input{*overflow:visible;line-height:normal;} +button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0;} +button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer;} +label,select,button,input[type="button"],input[type="reset"],input[type="submit"],input[type="radio"],input[type="checkbox"]{cursor:pointer;} +input[type="search"]{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield;} +input[type="search"]::-webkit-search-decoration,input[type="search"]::-webkit-search-cancel-button{-webkit-appearance:none;} +textarea{overflow:auto;vertical-align:top;} +@media print{*{text-shadow:none !important;color:#000 !important;background:transparent !important;box-shadow:none !important;} a,a:visited{text-decoration:underline;} a[href]:after{content:" (" attr(href) ")";} abbr[title]:after{content:" (" attr(title) ")";} .ir a:after,a[href^="javascript:"]:after,a[href^="#"]:after{content:"";} pre,blockquote{border:1px solid #999;page-break-inside:avoid;} thead{display:table-header-group;} tr,img{page-break-inside:avoid;} img{max-width:100% !important;} @page {margin:0.5cm;}p,h2,h3{orphans:3;widows:3;} h2,h3{page-break-after:avoid;}}body{margin:0;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:20px;color:#333333;background-color:#ffffff;} +a{color:#0088cc;text-decoration:none;} +a:hover,a:focus{color:#005580;text-decoration:underline;} +.img-rounded{-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;} +.img-polaroid{padding:4px;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0, 0, 0, 0.2);-webkit-box-shadow:0 1px 3px rgba(0, 0, 0, 0.1);-moz-box-shadow:0 1px 3px rgba(0, 0, 0, 0.1);box-shadow:0 1px 3px rgba(0, 0, 0, 0.1);} +.img-circle{-webkit-border-radius:500px;-moz-border-radius:500px;border-radius:500px;} +.row{margin-left:-20px;*zoom:1;}.row:before,.row:after{display:table;content:"";line-height:0;} +.row:after{clear:both;} +[class*="span"]{float:left;min-height:1px;margin-left:20px;} +.container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:940px;} +.span12{width:940px;} +.span11{width:860px;} +.span10{width:780px;} +.span9{width:700px;} +.span8{width:620px;} +.span7{width:540px;} +.span6{width:460px;} +.span5{width:380px;} +.span4{width:300px;} +.span3{width:220px;} +.span2{width:140px;} +.span1{width:60px;} +.offset12{margin-left:980px;} +.offset11{margin-left:900px;} +.offset10{margin-left:820px;} +.offset9{margin-left:740px;} +.offset8{margin-left:660px;} +.offset7{margin-left:580px;} +.offset6{margin-left:500px;} +.offset5{margin-left:420px;} +.offset4{margin-left:340px;} +.offset3{margin-left:260px;} +.offset2{margin-left:180px;} +.offset1{margin-left:100px;} +.row-fluid{width:100%;*zoom:1;}.row-fluid:before,.row-fluid:after{display:table;content:"";line-height:0;} +.row-fluid:after{clear:both;} +.row-fluid [class*="span"]{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;float:left;margin-left:2.127659574468085%;*margin-left:2.074468085106383%;} +.row-fluid [class*="span"]:first-child{margin-left:0;} +.row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.127659574468085%;} +.row-fluid .span12{width:100%;*width:99.94680851063829%;} +.row-fluid .span11{width:91.48936170212765%;*width:91.43617021276594%;} +.row-fluid .span10{width:82.97872340425532%;*width:82.92553191489361%;} +.row-fluid .span9{width:74.46808510638297%;*width:74.41489361702126%;} +.row-fluid .span8{width:65.95744680851064%;*width:65.90425531914893%;} +.row-fluid .span7{width:57.44680851063829%;*width:57.39361702127659%;} +.row-fluid .span6{width:48.93617021276595%;*width:48.88297872340425%;} +.row-fluid .span5{width:40.42553191489362%;*width:40.37234042553192%;} +.row-fluid .span4{width:31.914893617021278%;*width:31.861702127659576%;} +.row-fluid .span3{width:23.404255319148934%;*width:23.351063829787233%;} +.row-fluid .span2{width:14.893617021276595%;*width:14.840425531914894%;} +.row-fluid .span1{width:6.382978723404255%;*width:6.329787234042553%;} +.row-fluid .offset12{margin-left:104.25531914893617%;*margin-left:104.14893617021275%;} +.row-fluid .offset12:first-child{margin-left:102.12765957446808%;*margin-left:102.02127659574467%;} +.row-fluid .offset11{margin-left:95.74468085106382%;*margin-left:95.6382978723404%;} +.row-fluid .offset11:first-child{margin-left:93.61702127659574%;*margin-left:93.51063829787232%;} +.row-fluid .offset10{margin-left:87.23404255319149%;*margin-left:87.12765957446807%;} +.row-fluid .offset10:first-child{margin-left:85.1063829787234%;*margin-left:84.99999999999999%;} +.row-fluid .offset9{margin-left:78.72340425531914%;*margin-left:78.61702127659572%;} +.row-fluid .offset9:first-child{margin-left:76.59574468085106%;*margin-left:76.48936170212764%;} +.row-fluid .offset8{margin-left:70.2127659574468%;*margin-left:70.10638297872339%;} +.row-fluid .offset8:first-child{margin-left:68.08510638297872%;*margin-left:67.9787234042553%;} +.row-fluid .offset7{margin-left:61.70212765957446%;*margin-left:61.59574468085106%;} +.row-fluid .offset7:first-child{margin-left:59.574468085106375%;*margin-left:59.46808510638297%;} +.row-fluid .offset6{margin-left:53.191489361702125%;*margin-left:53.085106382978715%;} +.row-fluid .offset6:first-child{margin-left:51.063829787234035%;*margin-left:50.95744680851063%;} +.row-fluid .offset5{margin-left:44.68085106382979%;*margin-left:44.57446808510638%;} +.row-fluid .offset5:first-child{margin-left:42.5531914893617%;*margin-left:42.4468085106383%;} +.row-fluid .offset4{margin-left:36.170212765957444%;*margin-left:36.06382978723405%;} +.row-fluid .offset4:first-child{margin-left:34.04255319148936%;*margin-left:33.93617021276596%;} +.row-fluid .offset3{margin-left:27.659574468085104%;*margin-left:27.5531914893617%;} +.row-fluid .offset3:first-child{margin-left:25.53191489361702%;*margin-left:25.425531914893618%;} +.row-fluid .offset2{margin-left:19.148936170212764%;*margin-left:19.04255319148936%;} +.row-fluid .offset2:first-child{margin-left:17.02127659574468%;*margin-left:16.914893617021278%;} +.row-fluid .offset1{margin-left:10.638297872340425%;*margin-left:10.53191489361702%;} +.row-fluid .offset1:first-child{margin-left:8.51063829787234%;*margin-left:8.404255319148938%;} +[class*="span"].hide,.row-fluid [class*="span"].hide{display:none;} +[class*="span"].pull-right,.row-fluid [class*="span"].pull-right{float:right;} +.container{margin-right:auto;margin-left:auto;*zoom:1;}.container:before,.container:after{display:table;content:"";line-height:0;} +.container:after{clear:both;} +.container-fluid{padding-right:20px;padding-left:20px;*zoom:1;}.container-fluid:before,.container-fluid:after{display:table;content:"";line-height:0;} +.container-fluid:after{clear:both;} +p{margin:0 0 10px;} +.lead{margin-bottom:20px;font-size:21px;font-weight:200;line-height:30px;} +small{font-size:85%;} +strong{font-weight:bold;} +em{font-style:italic;} +cite{font-style:normal;} +.muted{color:#999999;} +a.muted:hover,a.muted:focus{color:#808080;} +.text-warning{color:#c09853;} +a.text-warning:hover,a.text-warning:focus{color:#a47e3c;} +.text-error{color:#b94a48;} +a.text-error:hover,a.text-error:focus{color:#953b39;} +.text-info{color:#3a87ad;} +a.text-info:hover,a.text-info:focus{color:#2d6987;} +.text-success{color:#468847;} +a.text-success:hover,a.text-success:focus{color:#356635;} +.text-left{text-align:left;} +.text-right{text-align:right;} +.text-center{text-align:center;} +h1,h2,h3,h4,h5,h6{margin:10px 0;font-family:inherit;font-weight:bold;line-height:20px;color:inherit;text-rendering:optimizelegibility;}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small{font-weight:normal;line-height:1;color:#999999;} +h1,h2,h3{line-height:40px;} +h1{font-size:38.5px;} +h2{font-size:31.5px;} +h3{font-size:24.5px;} +h4{font-size:17.5px;} +h5{font-size:14px;} +h6{font-size:11.9px;} +h1 small{font-size:24.5px;} +h2 small{font-size:17.5px;} +h3 small{font-size:14px;} +h4 small{font-size:14px;} +.page-header{padding-bottom:9px;margin:20px 0 30px;border-bottom:1px solid #eeeeee;} +ul,ol{padding:0;margin:0 0 10px 25px;} +ul ul,ul ol,ol ol,ol ul{margin-bottom:0;} +li{line-height:20px;} +ul.unstyled,ol.unstyled{margin-left:0;list-style:none;} +ul.inline,ol.inline{margin-left:0;list-style:none;}ul.inline>li,ol.inline>li{display:inline-block;*display:inline;*zoom:1;padding-left:5px;padding-right:5px;} +dl{margin-bottom:20px;} +dt,dd{line-height:20px;} +dt{font-weight:bold;} +dd{margin-left:10px;} +.dl-horizontal{*zoom:1;}.dl-horizontal:before,.dl-horizontal:after{display:table;content:"";line-height:0;} +.dl-horizontal:after{clear:both;} +.dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;} +.dl-horizontal dd{margin-left:180px;} +hr{margin:20px 0;border:0;border-top:1px solid #eeeeee;border-bottom:1px solid #ffffff;} +abbr[title],abbr[data-original-title]{cursor:help;border-bottom:1px dotted #999999;} +abbr.initialism{font-size:90%;text-transform:uppercase;} +blockquote{padding:0 0 0 15px;margin:0 0 20px;border-left:5px solid #eeeeee;}blockquote p{margin-bottom:0;font-size:17.5px;font-weight:300;line-height:1.25;} +blockquote small{display:block;line-height:20px;color:#999999;}blockquote small:before{content:'\2014 \00A0';} +blockquote.pull-right{float:right;padding-right:15px;padding-left:0;border-right:5px solid #eeeeee;border-left:0;}blockquote.pull-right p,blockquote.pull-right small{text-align:right;} +blockquote.pull-right small:before{content:'';} +blockquote.pull-right small:after{content:'\00A0 \2014';} +q:before,q:after,blockquote:before,blockquote:after{content:"";} +address{display:block;margin-bottom:20px;font-style:normal;line-height:20px;} +code,pre{padding:0 3px 2px;font-family:Monaco,Menlo,Consolas,"Courier New",monospace;font-size:12px;color:#333333;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} +code{padding:2px 4px;color:#d14;background-color:#f7f7f9;border:1px solid #e1e1e8;white-space:nowrap;} +pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:20px;word-break:break-all;word-wrap:break-word;white-space:pre;white-space:pre-wrap;background-color:#f5f5f5;border:1px solid #ccc;border:1px solid rgba(0, 0, 0, 0.15);-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;}pre.prettyprint{margin-bottom:20px;} +pre code{padding:0;color:inherit;white-space:pre;white-space:pre-wrap;background-color:transparent;border:0;} +.pre-scrollable{max-height:340px;overflow-y:scroll;} +.label,.badge{display:inline-block;padding:2px 4px;font-size:11.844px;font-weight:bold;line-height:14px;color:#ffffff;vertical-align:baseline;white-space:nowrap;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#999999;} +.label{-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} +.badge{padding-left:9px;padding-right:9px;-webkit-border-radius:9px;-moz-border-radius:9px;border-radius:9px;} +.label:empty,.badge:empty{display:none;} +a.label:hover,a.label:focus,a.badge:hover,a.badge:focus{color:#ffffff;text-decoration:none;cursor:pointer;} +.label-important,.badge-important{background-color:#b94a48;} +.label-important[href],.badge-important[href]{background-color:#953b39;} +.label-warning,.badge-warning{background-color:#f89406;} +.label-warning[href],.badge-warning[href]{background-color:#c67605;} +.label-success,.badge-success{background-color:#468847;} +.label-success[href],.badge-success[href]{background-color:#356635;} +.label-info,.badge-info{background-color:#3a87ad;} +.label-info[href],.badge-info[href]{background-color:#2d6987;} +.label-inverse,.badge-inverse{background-color:#333333;} +.label-inverse[href],.badge-inverse[href]{background-color:#1a1a1a;} +.btn .label,.btn .badge{position:relative;top:-1px;} +.btn-mini .label,.btn-mini .badge{top:0;} +table{max-width:100%;background-color:transparent;border-collapse:collapse;border-spacing:0;} +.table{width:100%;margin-bottom:20px;}.table th,.table td{padding:8px;line-height:20px;text-align:left;vertical-align:top;border-top:1px solid #dddddd;} +.table th{font-weight:bold;} +.table thead th{vertical-align:bottom;} +.table caption+thead tr:first-child th,.table caption+thead tr:first-child td,.table colgroup+thead tr:first-child th,.table colgroup+thead tr:first-child td,.table thead:first-child tr:first-child th,.table thead:first-child tr:first-child td{border-top:0;} +.table tbody+tbody{border-top:2px solid #dddddd;} +.table .table{background-color:#ffffff;} +.table-condensed th,.table-condensed td{padding:4px 5px;} +.table-bordered{border:1px solid #dddddd;border-collapse:separate;*border-collapse:collapse;border-left:0;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;}.table-bordered th,.table-bordered td{border-left:1px solid #dddddd;} +.table-bordered caption+thead tr:first-child th,.table-bordered caption+tbody tr:first-child th,.table-bordered caption+tbody tr:first-child td,.table-bordered colgroup+thead tr:first-child th,.table-bordered colgroup+tbody tr:first-child th,.table-bordered colgroup+tbody tr:first-child td,.table-bordered thead:first-child tr:first-child th,.table-bordered tbody:first-child tr:first-child th,.table-bordered tbody:first-child tr:first-child td{border-top:0;} +.table-bordered thead:first-child tr:first-child>th:first-child,.table-bordered tbody:first-child tr:first-child>td:first-child,.table-bordered tbody:first-child tr:first-child>th:first-child{-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;} +.table-bordered thead:first-child tr:first-child>th:last-child,.table-bordered tbody:first-child tr:first-child>td:last-child,.table-bordered tbody:first-child tr:first-child>th:last-child{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;} +.table-bordered thead:last-child tr:last-child>th:first-child,.table-bordered tbody:last-child tr:last-child>td:first-child,.table-bordered tbody:last-child tr:last-child>th:first-child,.table-bordered tfoot:last-child tr:last-child>td:first-child,.table-bordered tfoot:last-child tr:last-child>th:first-child{-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px;} +.table-bordered thead:last-child tr:last-child>th:last-child,.table-bordered tbody:last-child tr:last-child>td:last-child,.table-bordered tbody:last-child tr:last-child>th:last-child,.table-bordered tfoot:last-child tr:last-child>td:last-child,.table-bordered tfoot:last-child tr:last-child>th:last-child{-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px;} +.table-bordered tfoot+tbody:last-child tr:last-child td:first-child{-webkit-border-bottom-left-radius:0;-moz-border-radius-bottomleft:0;border-bottom-left-radius:0;} +.table-bordered tfoot+tbody:last-child tr:last-child td:last-child{-webkit-border-bottom-right-radius:0;-moz-border-radius-bottomright:0;border-bottom-right-radius:0;} +.table-bordered caption+thead tr:first-child th:first-child,.table-bordered caption+tbody tr:first-child td:first-child,.table-bordered colgroup+thead tr:first-child th:first-child,.table-bordered colgroup+tbody tr:first-child td:first-child{-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;} +.table-bordered caption+thead tr:first-child th:last-child,.table-bordered caption+tbody tr:first-child td:last-child,.table-bordered colgroup+thead tr:first-child th:last-child,.table-bordered colgroup+tbody tr:first-child td:last-child{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;} +.table-striped tbody>tr:nth-child(odd)>td,.table-striped tbody>tr:nth-child(odd)>th{background-color:#f9f9f9;} +.table-hover tbody tr:hover>td,.table-hover tbody tr:hover>th{background-color:#f5f5f5;} +table td[class*="span"],table th[class*="span"],.row-fluid table td[class*="span"],.row-fluid table th[class*="span"]{display:table-cell;float:none;margin-left:0;} +.table td.span1,.table th.span1{float:none;width:44px;margin-left:0;} +.table td.span2,.table th.span2{float:none;width:124px;margin-left:0;} +.table td.span3,.table th.span3{float:none;width:204px;margin-left:0;} +.table td.span4,.table th.span4{float:none;width:284px;margin-left:0;} +.table td.span5,.table th.span5{float:none;width:364px;margin-left:0;} +.table td.span6,.table th.span6{float:none;width:444px;margin-left:0;} +.table td.span7,.table th.span7{float:none;width:524px;margin-left:0;} +.table td.span8,.table th.span8{float:none;width:604px;margin-left:0;} +.table td.span9,.table th.span9{float:none;width:684px;margin-left:0;} +.table td.span10,.table th.span10{float:none;width:764px;margin-left:0;} +.table td.span11,.table th.span11{float:none;width:844px;margin-left:0;} +.table td.span12,.table th.span12{float:none;width:924px;margin-left:0;} +.table tbody tr.success>td{background-color:#dff0d8;} +.table tbody tr.error>td{background-color:#f2dede;} +.table tbody tr.warning>td{background-color:#fcf8e3;} +.table tbody tr.info>td{background-color:#d9edf7;} +.table-hover tbody tr.success:hover>td{background-color:#d0e9c6;} +.table-hover tbody tr.error:hover>td{background-color:#ebcccc;} +.table-hover tbody tr.warning:hover>td{background-color:#faf2cc;} +.table-hover tbody tr.info:hover>td{background-color:#c4e3f3;} +form{margin:0 0 20px;} +fieldset{padding:0;margin:0;border:0;} +legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:40px;color:#333333;border:0;border-bottom:1px solid #e5e5e5;}legend small{font-size:15px;color:#999999;} +label,input,button,select,textarea{font-size:14px;font-weight:normal;line-height:20px;} +input,button,select,textarea{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;} +label{display:block;margin-bottom:5px;} +select,textarea,input[type="text"],input[type="password"],input[type="datetime"],input[type="datetime-local"],input[type="date"],input[type="month"],input[type="time"],input[type="week"],input[type="number"],input[type="email"],input[type="url"],input[type="search"],input[type="tel"],input[type="color"],.uneditable-input{display:inline-block;height:20px;padding:4px 6px;margin-bottom:10px;font-size:14px;line-height:20px;color:#555555;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;vertical-align:middle;} +input,textarea,.uneditable-input{width:206px;} +textarea{height:auto;} +textarea,input[type="text"],input[type="password"],input[type="datetime"],input[type="datetime-local"],input[type="date"],input[type="month"],input[type="time"],input[type="week"],input[type="number"],input[type="email"],input[type="url"],input[type="search"],input[type="tel"],input[type="color"],.uneditable-input{background-color:#ffffff;border:1px solid #cccccc;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-webkit-transition:border linear .2s, box-shadow linear .2s;-moz-transition:border linear .2s, box-shadow linear .2s;-o-transition:border linear .2s, box-shadow linear .2s;transition:border linear .2s, box-shadow linear .2s;}textarea:focus,input[type="text"]:focus,input[type="password"]:focus,input[type="datetime"]:focus,input[type="datetime-local"]:focus,input[type="date"]:focus,input[type="month"]:focus,input[type="time"]:focus,input[type="week"]:focus,input[type="number"]:focus,input[type="email"]:focus,input[type="url"]:focus,input[type="search"]:focus,input[type="tel"]:focus,input[type="color"]:focus,.uneditable-input:focus{border-color:rgba(82, 168, 236, 0.8);outline:0;outline:thin dotted \9;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);} +input[type="radio"],input[type="checkbox"]{margin:4px 0 0;*margin-top:0;margin-top:1px \9;line-height:normal;} +input[type="file"],input[type="image"],input[type="submit"],input[type="reset"],input[type="button"],input[type="radio"],input[type="checkbox"]{width:auto;} +select,input[type="file"]{height:30px;*margin-top:4px;line-height:30px;} +select{width:220px;border:1px solid #cccccc;background-color:#ffffff;} +select[multiple],select[size]{height:auto;} +select:focus,input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px;} +.uneditable-input,.uneditable-textarea{color:#999999;background-color:#fcfcfc;border-color:#cccccc;-webkit-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.025);-moz-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.025);box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.025);cursor:not-allowed;} +.uneditable-input{overflow:hidden;white-space:nowrap;} +.uneditable-textarea{width:auto;height:auto;} +input:-moz-placeholder,textarea:-moz-placeholder{color:#999999;} +input:-ms-input-placeholder,textarea:-ms-input-placeholder{color:#999999;} +input::-webkit-input-placeholder,textarea::-webkit-input-placeholder{color:#999999;} +.radio,.checkbox{min-height:20px;padding-left:20px;} +.radio input[type="radio"],.checkbox input[type="checkbox"]{float:left;margin-left:-20px;} +.controls>.radio:first-child,.controls>.checkbox:first-child{padding-top:5px;} +.radio.inline,.checkbox.inline{display:inline-block;padding-top:5px;margin-bottom:0;vertical-align:middle;} +.radio.inline+.radio.inline,.checkbox.inline+.checkbox.inline{margin-left:10px;} +.input-mini{width:60px;} +.input-small{width:90px;} +.input-medium{width:150px;} +.input-large{width:210px;} +.input-xlarge{width:270px;} +.input-xxlarge{width:530px;} +input[class*="span"],select[class*="span"],textarea[class*="span"],.uneditable-input[class*="span"],.row-fluid input[class*="span"],.row-fluid select[class*="span"],.row-fluid textarea[class*="span"],.row-fluid .uneditable-input[class*="span"]{float:none;margin-left:0;} +.input-append input[class*="span"],.input-append .uneditable-input[class*="span"],.input-prepend input[class*="span"],.input-prepend .uneditable-input[class*="span"],.row-fluid input[class*="span"],.row-fluid select[class*="span"],.row-fluid textarea[class*="span"],.row-fluid .uneditable-input[class*="span"],.row-fluid .input-prepend [class*="span"],.row-fluid .input-append [class*="span"]{display:inline-block;} +input,textarea,.uneditable-input{margin-left:0;} +.controls-row [class*="span"]+[class*="span"]{margin-left:20px;} +input.span12,textarea.span12,.uneditable-input.span12{width:926px;} +input.span11,textarea.span11,.uneditable-input.span11{width:846px;} +input.span10,textarea.span10,.uneditable-input.span10{width:766px;} +input.span9,textarea.span9,.uneditable-input.span9{width:686px;} +input.span8,textarea.span8,.uneditable-input.span8{width:606px;} +input.span7,textarea.span7,.uneditable-input.span7{width:526px;} +input.span6,textarea.span6,.uneditable-input.span6{width:446px;} +input.span5,textarea.span5,.uneditable-input.span5{width:366px;} +input.span4,textarea.span4,.uneditable-input.span4{width:286px;} +input.span3,textarea.span3,.uneditable-input.span3{width:206px;} +input.span2,textarea.span2,.uneditable-input.span2{width:126px;} +input.span1,textarea.span1,.uneditable-input.span1{width:46px;} +.controls-row{*zoom:1;}.controls-row:before,.controls-row:after{display:table;content:"";line-height:0;} +.controls-row:after{clear:both;} +.controls-row [class*="span"],.row-fluid .controls-row [class*="span"]{float:left;} +.controls-row .checkbox[class*="span"],.controls-row .radio[class*="span"]{padding-top:5px;} +input[disabled],select[disabled],textarea[disabled],input[readonly],select[readonly],textarea[readonly]{cursor:not-allowed;background-color:#eeeeee;} +input[type="radio"][disabled],input[type="checkbox"][disabled],input[type="radio"][readonly],input[type="checkbox"][readonly]{background-color:transparent;} +.control-group.warning .control-label,.control-group.warning .help-block,.control-group.warning .help-inline{color:#c09853;} +.control-group.warning .checkbox,.control-group.warning .radio,.control-group.warning input,.control-group.warning select,.control-group.warning textarea{color:#c09853;} +.control-group.warning input,.control-group.warning select,.control-group.warning textarea{border-color:#c09853;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);}.control-group.warning input:focus,.control-group.warning select:focus,.control-group.warning textarea:focus{border-color:#a47e3c;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #dbc59e;-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #dbc59e;box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #dbc59e;} +.control-group.warning .input-prepend .add-on,.control-group.warning .input-append .add-on{color:#c09853;background-color:#fcf8e3;border-color:#c09853;} +.control-group.error .control-label,.control-group.error .help-block,.control-group.error .help-inline{color:#b94a48;} +.control-group.error .checkbox,.control-group.error .radio,.control-group.error input,.control-group.error select,.control-group.error textarea{color:#b94a48;} +.control-group.error input,.control-group.error select,.control-group.error textarea{border-color:#b94a48;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);}.control-group.error input:focus,.control-group.error select:focus,.control-group.error textarea:focus{border-color:#953b39;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #d59392;-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #d59392;box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #d59392;} +.control-group.error .input-prepend .add-on,.control-group.error .input-append .add-on{color:#b94a48;background-color:#f2dede;border-color:#b94a48;} +.control-group.success .control-label,.control-group.success .help-block,.control-group.success .help-inline{color:#468847;} +.control-group.success .checkbox,.control-group.success .radio,.control-group.success input,.control-group.success select,.control-group.success textarea{color:#468847;} +.control-group.success input,.control-group.success select,.control-group.success textarea{border-color:#468847;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);}.control-group.success input:focus,.control-group.success select:focus,.control-group.success textarea:focus{border-color:#356635;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #7aba7b;-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #7aba7b;box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #7aba7b;} +.control-group.success .input-prepend .add-on,.control-group.success .input-append .add-on{color:#468847;background-color:#dff0d8;border-color:#468847;} +.control-group.info .control-label,.control-group.info .help-block,.control-group.info .help-inline{color:#3a87ad;} +.control-group.info .checkbox,.control-group.info .radio,.control-group.info input,.control-group.info select,.control-group.info textarea{color:#3a87ad;} +.control-group.info input,.control-group.info select,.control-group.info textarea{border-color:#3a87ad;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);}.control-group.info input:focus,.control-group.info select:focus,.control-group.info textarea:focus{border-color:#2d6987;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #7ab5d3;-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #7ab5d3;box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #7ab5d3;} +.control-group.info .input-prepend .add-on,.control-group.info .input-append .add-on{color:#3a87ad;background-color:#d9edf7;border-color:#3a87ad;} +input:focus:invalid,textarea:focus:invalid,select:focus:invalid{color:#b94a48;border-color:#ee5f5b;}input:focus:invalid:focus,textarea:focus:invalid:focus,select:focus:invalid:focus{border-color:#e9322d;-webkit-box-shadow:0 0 6px #f8b9b7;-moz-box-shadow:0 0 6px #f8b9b7;box-shadow:0 0 6px #f8b9b7;} +.form-actions{padding:19px 20px 20px;margin-top:20px;margin-bottom:20px;background-color:#f5f5f5;border-top:1px solid #e5e5e5;*zoom:1;}.form-actions:before,.form-actions:after{display:table;content:"";line-height:0;} +.form-actions:after{clear:both;} +.help-block,.help-inline{color:#595959;} +.help-block{display:block;margin-bottom:10px;} +.help-inline{display:inline-block;*display:inline;*zoom:1;vertical-align:middle;padding-left:5px;} +.input-append,.input-prepend{display:inline-block;margin-bottom:10px;vertical-align:middle;font-size:0;white-space:nowrap;}.input-append input,.input-prepend input,.input-append select,.input-prepend select,.input-append .uneditable-input,.input-prepend .uneditable-input,.input-append .dropdown-menu,.input-prepend .dropdown-menu,.input-append .popover,.input-prepend .popover{font-size:14px;} +.input-append input,.input-prepend input,.input-append select,.input-prepend select,.input-append .uneditable-input,.input-prepend .uneditable-input{position:relative;margin-bottom:0;*margin-left:0;vertical-align:top;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;}.input-append input:focus,.input-prepend input:focus,.input-append select:focus,.input-prepend select:focus,.input-append .uneditable-input:focus,.input-prepend .uneditable-input:focus{z-index:2;} +.input-append .add-on,.input-prepend .add-on{display:inline-block;width:auto;height:20px;min-width:16px;padding:4px 5px;font-size:14px;font-weight:normal;line-height:20px;text-align:center;text-shadow:0 1px 0 #ffffff;background-color:#eeeeee;border:1px solid #ccc;} +.input-append .add-on,.input-prepend .add-on,.input-append .btn,.input-prepend .btn,.input-append .btn-group>.dropdown-toggle,.input-prepend .btn-group>.dropdown-toggle{vertical-align:top;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} +.input-append .active,.input-prepend .active{background-color:#a9dba9;border-color:#46a546;} +.input-prepend .add-on,.input-prepend .btn{margin-right:-1px;} +.input-prepend .add-on:first-child,.input-prepend .btn:first-child{-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px;} +.input-append input,.input-append select,.input-append .uneditable-input{-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px;}.input-append input+.btn-group .btn:last-child,.input-append select+.btn-group .btn:last-child,.input-append .uneditable-input+.btn-group .btn:last-child{-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;} +.input-append .add-on,.input-append .btn,.input-append .btn-group{margin-left:-1px;} +.input-append .add-on:last-child,.input-append .btn:last-child,.input-append .btn-group:last-child>.dropdown-toggle{-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;} +.input-prepend.input-append input,.input-prepend.input-append select,.input-prepend.input-append .uneditable-input{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;}.input-prepend.input-append input+.btn-group .btn,.input-prepend.input-append select+.btn-group .btn,.input-prepend.input-append .uneditable-input+.btn-group .btn{-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;} +.input-prepend.input-append .add-on:first-child,.input-prepend.input-append .btn:first-child{margin-right:-1px;-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px;} +.input-prepend.input-append .add-on:last-child,.input-prepend.input-append .btn:last-child{margin-left:-1px;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;} +.input-prepend.input-append .btn-group:first-child{margin-left:0;} +input.search-query{padding-right:14px;padding-right:4px \9;padding-left:14px;padding-left:4px \9;margin-bottom:0;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px;} +.form-search .input-append .search-query,.form-search .input-prepend .search-query{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} +.form-search .input-append .search-query{-webkit-border-radius:14px 0 0 14px;-moz-border-radius:14px 0 0 14px;border-radius:14px 0 0 14px;} +.form-search .input-append .btn{-webkit-border-radius:0 14px 14px 0;-moz-border-radius:0 14px 14px 0;border-radius:0 14px 14px 0;} +.form-search .input-prepend .search-query{-webkit-border-radius:0 14px 14px 0;-moz-border-radius:0 14px 14px 0;border-radius:0 14px 14px 0;} +.form-search .input-prepend .btn{-webkit-border-radius:14px 0 0 14px;-moz-border-radius:14px 0 0 14px;border-radius:14px 0 0 14px;} +.form-search input,.form-inline input,.form-horizontal input,.form-search textarea,.form-inline textarea,.form-horizontal textarea,.form-search select,.form-inline select,.form-horizontal select,.form-search .help-inline,.form-inline .help-inline,.form-horizontal .help-inline,.form-search .uneditable-input,.form-inline .uneditable-input,.form-horizontal .uneditable-input,.form-search .input-prepend,.form-inline .input-prepend,.form-horizontal .input-prepend,.form-search .input-append,.form-inline .input-append,.form-horizontal .input-append{display:inline-block;*display:inline;*zoom:1;margin-bottom:0;vertical-align:middle;} +.form-search .hide,.form-inline .hide,.form-horizontal .hide{display:none;} +.form-search label,.form-inline label,.form-search .btn-group,.form-inline .btn-group{display:inline-block;} +.form-search .input-append,.form-inline .input-append,.form-search .input-prepend,.form-inline .input-prepend{margin-bottom:0;} +.form-search .radio,.form-search .checkbox,.form-inline .radio,.form-inline .checkbox{padding-left:0;margin-bottom:0;vertical-align:middle;} +.form-search .radio input[type="radio"],.form-search .checkbox input[type="checkbox"],.form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"]{float:left;margin-right:3px;margin-left:0;} +.control-group{margin-bottom:10px;} +legend+.control-group{margin-top:20px;-webkit-margin-top-collapse:separate;} +.form-horizontal .control-group{margin-bottom:20px;*zoom:1;}.form-horizontal .control-group:before,.form-horizontal .control-group:after{display:table;content:"";line-height:0;} +.form-horizontal .control-group:after{clear:both;} +.form-horizontal .control-label{float:left;width:160px;padding-top:5px;text-align:right;} +.form-horizontal .controls{*display:inline-block;*padding-left:20px;margin-left:180px;*margin-left:0;}.form-horizontal .controls:first-child{*padding-left:180px;} +.form-horizontal .help-block{margin-bottom:0;} +.form-horizontal input+.help-block,.form-horizontal select+.help-block,.form-horizontal textarea+.help-block,.form-horizontal .uneditable-input+.help-block,.form-horizontal .input-prepend+.help-block,.form-horizontal .input-append+.help-block{margin-top:10px;} +.form-horizontal .form-actions{padding-left:180px;} +.btn{display:inline-block;*display:inline;*zoom:1;padding:4px 12px;margin-bottom:0;font-size:14px;line-height:20px;text-align:center;vertical-align:middle;cursor:pointer;color:#333333;text-shadow:0 1px 1px rgba(255, 255, 255, 0.75);background-color:#f5f5f5;background-image:-moz-linear-gradient(top, #ffffff, #e6e6e6);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));background-image:-webkit-linear-gradient(top, #ffffff, #e6e6e6);background-image:-o-linear-gradient(top, #ffffff, #e6e6e6);background-image:linear-gradient(to bottom, #ffffff, #e6e6e6);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0);border-color:#e6e6e6 #e6e6e6 #bfbfbf;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#e6e6e6;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);border:1px solid #cccccc;*border:0;border-bottom-color:#b3b3b3;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;*margin-left:.3em;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);}.btn:hover,.btn:focus,.btn:active,.btn.active,.btn.disabled,.btn[disabled]{color:#333333;background-color:#e6e6e6;*background-color:#d9d9d9;} +.btn:active,.btn.active{background-color:#cccccc \9;} +.btn:first-child{*margin-left:0;} +.btn:hover,.btn:focus{color:#333333;text-decoration:none;background-position:0 -15px;-webkit-transition:background-position 0.1s linear;-moz-transition:background-position 0.1s linear;-o-transition:background-position 0.1s linear;transition:background-position 0.1s linear;} +.btn:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px;} +.btn.active,.btn:active{background-image:none;outline:0;-webkit-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);} +.btn.disabled,.btn[disabled]{cursor:default;background-image:none;opacity:0.65;filter:alpha(opacity=65);-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;} +.btn-large{padding:11px 19px;font-size:17.5px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;} +.btn-large [class^="icon-"],.btn-large [class*=" icon-"]{margin-top:4px;} +.btn-small{padding:2px 10px;font-size:11.9px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} +.btn-small [class^="icon-"],.btn-small [class*=" icon-"]{margin-top:0;} +.btn-mini [class^="icon-"],.btn-mini [class*=" icon-"]{margin-top:-1px;} +.btn-mini{padding:0 6px;font-size:10.5px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} +.btn-block{display:block;width:100%;padding-left:0;padding-right:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;} +.btn-block+.btn-block{margin-top:5px;} +input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{width:100%;} +.btn-primary.active,.btn-warning.active,.btn-danger.active,.btn-success.active,.btn-info.active,.btn-inverse.active{color:rgba(255, 255, 255, 0.75);} +.btn-primary{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#006dcc;background-image:-moz-linear-gradient(top, #0088cc, #0044cc);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc));background-image:-webkit-linear-gradient(top, #0088cc, #0044cc);background-image:-o-linear-gradient(top, #0088cc, #0044cc);background-image:linear-gradient(to bottom, #0088cc, #0044cc);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0044cc', GradientType=0);border-color:#0044cc #0044cc #002a80;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#0044cc;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.btn-primary:hover,.btn-primary:focus,.btn-primary:active,.btn-primary.active,.btn-primary.disabled,.btn-primary[disabled]{color:#ffffff;background-color:#0044cc;*background-color:#003bb3;} +.btn-primary:active,.btn-primary.active{background-color:#003399 \9;} +.btn-warning{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#faa732;background-image:-moz-linear-gradient(top, #fbb450, #f89406);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));background-image:-webkit-linear-gradient(top, #fbb450, #f89406);background-image:-o-linear-gradient(top, #fbb450, #f89406);background-image:linear-gradient(to bottom, #fbb450, #f89406);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fff89406', GradientType=0);border-color:#f89406 #f89406 #ad6704;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#f89406;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.btn-warning:hover,.btn-warning:focus,.btn-warning:active,.btn-warning.active,.btn-warning.disabled,.btn-warning[disabled]{color:#ffffff;background-color:#f89406;*background-color:#df8505;} +.btn-warning:active,.btn-warning.active{background-color:#c67605 \9;} +.btn-danger{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#da4f49;background-image:-moz-linear-gradient(top, #ee5f5b, #bd362f);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f));background-image:-webkit-linear-gradient(top, #ee5f5b, #bd362f);background-image:-o-linear-gradient(top, #ee5f5b, #bd362f);background-image:linear-gradient(to bottom, #ee5f5b, #bd362f);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffbd362f', GradientType=0);border-color:#bd362f #bd362f #802420;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#bd362f;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.btn-danger:hover,.btn-danger:focus,.btn-danger:active,.btn-danger.active,.btn-danger.disabled,.btn-danger[disabled]{color:#ffffff;background-color:#bd362f;*background-color:#a9302a;} +.btn-danger:active,.btn-danger.active{background-color:#942a25 \9;} +.btn-success{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#5bb75b;background-image:-moz-linear-gradient(top, #62c462, #51a351);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351));background-image:-webkit-linear-gradient(top, #62c462, #51a351);background-image:-o-linear-gradient(top, #62c462, #51a351);background-image:linear-gradient(to bottom, #62c462, #51a351);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff51a351', GradientType=0);border-color:#51a351 #51a351 #387038;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#51a351;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.btn-success:hover,.btn-success:focus,.btn-success:active,.btn-success.active,.btn-success.disabled,.btn-success[disabled]{color:#ffffff;background-color:#51a351;*background-color:#499249;} +.btn-success:active,.btn-success.active{background-color:#408140 \9;} +.btn-info{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#49afcd;background-image:-moz-linear-gradient(top, #5bc0de, #2f96b4);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4));background-image:-webkit-linear-gradient(top, #5bc0de, #2f96b4);background-image:-o-linear-gradient(top, #5bc0de, #2f96b4);background-image:linear-gradient(to bottom, #5bc0de, #2f96b4);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2f96b4', GradientType=0);border-color:#2f96b4 #2f96b4 #1f6377;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#2f96b4;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.btn-info:hover,.btn-info:focus,.btn-info:active,.btn-info.active,.btn-info.disabled,.btn-info[disabled]{color:#ffffff;background-color:#2f96b4;*background-color:#2a85a0;} +.btn-info:active,.btn-info.active{background-color:#24748c \9;} +.btn-inverse{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#363636;background-image:-moz-linear-gradient(top, #444444, #222222);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#444444), to(#222222));background-image:-webkit-linear-gradient(top, #444444, #222222);background-image:-o-linear-gradient(top, #444444, #222222);background-image:linear-gradient(to bottom, #444444, #222222);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff444444', endColorstr='#ff222222', GradientType=0);border-color:#222222 #222222 #000000;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#222222;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.btn-inverse:hover,.btn-inverse:focus,.btn-inverse:active,.btn-inverse.active,.btn-inverse.disabled,.btn-inverse[disabled]{color:#ffffff;background-color:#222222;*background-color:#151515;} +.btn-inverse:active,.btn-inverse.active{background-color:#080808 \9;} +button.btn,input[type="submit"].btn{*padding-top:3px;*padding-bottom:3px;}button.btn::-moz-focus-inner,input[type="submit"].btn::-moz-focus-inner{padding:0;border:0;} +button.btn.btn-large,input[type="submit"].btn.btn-large{*padding-top:7px;*padding-bottom:7px;} +button.btn.btn-small,input[type="submit"].btn.btn-small{*padding-top:3px;*padding-bottom:3px;} +button.btn.btn-mini,input[type="submit"].btn.btn-mini{*padding-top:1px;*padding-bottom:1px;} +.btn-link,.btn-link:active,.btn-link[disabled]{background-color:transparent;background-image:none;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;} +.btn-link{border-color:transparent;cursor:pointer;color:#0088cc;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} +.btn-link:hover,.btn-link:focus{color:#005580;text-decoration:underline;background-color:transparent;} +.btn-link[disabled]:hover,.btn-link[disabled]:focus{color:#333333;text-decoration:none;} +[class^="icon-"],[class*=" icon-"]{display:inline-block;width:14px;height:14px;*margin-right:.3em;line-height:14px;vertical-align:text-top;background-image:url("../img/glyphicons-halflings.png");background-position:14px 14px;background-repeat:no-repeat;margin-top:1px;} +.icon-white,.nav-pills>.active>a>[class^="icon-"],.nav-pills>.active>a>[class*=" icon-"],.nav-list>.active>a>[class^="icon-"],.nav-list>.active>a>[class*=" icon-"],.navbar-inverse .nav>.active>a>[class^="icon-"],.navbar-inverse .nav>.active>a>[class*=" icon-"],.dropdown-menu>li>a:hover>[class^="icon-"],.dropdown-menu>li>a:focus>[class^="icon-"],.dropdown-menu>li>a:hover>[class*=" icon-"],.dropdown-menu>li>a:focus>[class*=" icon-"],.dropdown-menu>.active>a>[class^="icon-"],.dropdown-menu>.active>a>[class*=" icon-"],.dropdown-submenu:hover>a>[class^="icon-"],.dropdown-submenu:focus>a>[class^="icon-"],.dropdown-submenu:hover>a>[class*=" icon-"],.dropdown-submenu:focus>a>[class*=" icon-"]{background-image:url("../img/glyphicons-halflings-white.png");} +.icon-glass{background-position:0 0;} +.icon-music{background-position:-24px 0;} +.icon-search{background-position:-48px 0;} +.icon-envelope{background-position:-72px 0;} +.icon-heart{background-position:-96px 0;} +.icon-star{background-position:-120px 0;} +.icon-star-empty{background-position:-144px 0;} +.icon-user{background-position:-168px 0;} +.icon-film{background-position:-192px 0;} +.icon-th-large{background-position:-216px 0;} +.icon-th{background-position:-240px 0;} +.icon-th-list{background-position:-264px 0;} +.icon-ok{background-position:-288px 0;} +.icon-remove{background-position:-312px 0;} +.icon-zoom-in{background-position:-336px 0;} +.icon-zoom-out{background-position:-360px 0;} +.icon-off{background-position:-384px 0;} +.icon-signal{background-position:-408px 0;} +.icon-cog{background-position:-432px 0;} +.icon-trash{background-position:-456px 0;} +.icon-home{background-position:0 -24px;} +.icon-file{background-position:-24px -24px;} +.icon-time{background-position:-48px -24px;} +.icon-road{background-position:-72px -24px;} +.icon-download-alt{background-position:-96px -24px;} +.icon-download{background-position:-120px -24px;} +.icon-upload{background-position:-144px -24px;} +.icon-inbox{background-position:-168px -24px;} +.icon-play-circle{background-position:-192px -24px;} +.icon-repeat{background-position:-216px -24px;} +.icon-refresh{background-position:-240px -24px;} +.icon-list-alt{background-position:-264px -24px;} +.icon-lock{background-position:-287px -24px;} +.icon-flag{background-position:-312px -24px;} +.icon-headphones{background-position:-336px -24px;} +.icon-volume-off{background-position:-360px -24px;} +.icon-volume-down{background-position:-384px -24px;} +.icon-volume-up{background-position:-408px -24px;} +.icon-qrcode{background-position:-432px -24px;} +.icon-barcode{background-position:-456px -24px;} +.icon-tag{background-position:0 -48px;} +.icon-tags{background-position:-25px -48px;} +.icon-book{background-position:-48px -48px;} +.icon-bookmark{background-position:-72px -48px;} +.icon-print{background-position:-96px -48px;} +.icon-camera{background-position:-120px -48px;} +.icon-font{background-position:-144px -48px;} +.icon-bold{background-position:-167px -48px;} +.icon-italic{background-position:-192px -48px;} +.icon-text-height{background-position:-216px -48px;} +.icon-text-width{background-position:-240px -48px;} +.icon-align-left{background-position:-264px -48px;} +.icon-align-center{background-position:-288px -48px;} +.icon-align-right{background-position:-312px -48px;} +.icon-align-justify{background-position:-336px -48px;} +.icon-list{background-position:-360px -48px;} +.icon-indent-left{background-position:-384px -48px;} +.icon-indent-right{background-position:-408px -48px;} +.icon-facetime-video{background-position:-432px -48px;} +.icon-picture{background-position:-456px -48px;} +.icon-pencil{background-position:0 -72px;} +.icon-map-marker{background-position:-24px -72px;} +.icon-adjust{background-position:-48px -72px;} +.icon-tint{background-position:-72px -72px;} +.icon-edit{background-position:-96px -72px;} +.icon-share{background-position:-120px -72px;} +.icon-check{background-position:-144px -72px;} +.icon-move{background-position:-168px -72px;} +.icon-step-backward{background-position:-192px -72px;} +.icon-fast-backward{background-position:-216px -72px;} +.icon-backward{background-position:-240px -72px;} +.icon-play{background-position:-264px -72px;} +.icon-pause{background-position:-288px -72px;} +.icon-stop{background-position:-312px -72px;} +.icon-forward{background-position:-336px -72px;} +.icon-fast-forward{background-position:-360px -72px;} +.icon-step-forward{background-position:-384px -72px;} +.icon-eject{background-position:-408px -72px;} +.icon-chevron-left{background-position:-432px -72px;} +.icon-chevron-right{background-position:-456px -72px;} +.icon-plus-sign{background-position:0 -96px;} +.icon-minus-sign{background-position:-24px -96px;} +.icon-remove-sign{background-position:-48px -96px;} +.icon-ok-sign{background-position:-72px -96px;} +.icon-question-sign{background-position:-96px -96px;} +.icon-info-sign{background-position:-120px -96px;} +.icon-screenshot{background-position:-144px -96px;} +.icon-remove-circle{background-position:-168px -96px;} +.icon-ok-circle{background-position:-192px -96px;} +.icon-ban-circle{background-position:-216px -96px;} +.icon-arrow-left{background-position:-240px -96px;} +.icon-arrow-right{background-position:-264px -96px;} +.icon-arrow-up{background-position:-289px -96px;} +.icon-arrow-down{background-position:-312px -96px;} +.icon-share-alt{background-position:-336px -96px;} +.icon-resize-full{background-position:-360px -96px;} +.icon-resize-small{background-position:-384px -96px;} +.icon-plus{background-position:-408px -96px;} +.icon-minus{background-position:-433px -96px;} +.icon-asterisk{background-position:-456px -96px;} +.icon-exclamation-sign{background-position:0 -120px;} +.icon-gift{background-position:-24px -120px;} +.icon-leaf{background-position:-48px -120px;} +.icon-fire{background-position:-72px -120px;} +.icon-eye-open{background-position:-96px -120px;} +.icon-eye-close{background-position:-120px -120px;} +.icon-warning-sign{background-position:-144px -120px;} +.icon-plane{background-position:-168px -120px;} +.icon-calendar{background-position:-192px -120px;} +.icon-random{background-position:-216px -120px;width:16px;} +.icon-comment{background-position:-240px -120px;} +.icon-magnet{background-position:-264px -120px;} +.icon-chevron-up{background-position:-288px -120px;} +.icon-chevron-down{background-position:-313px -119px;} +.icon-retweet{background-position:-336px -120px;} +.icon-shopping-cart{background-position:-360px -120px;} +.icon-folder-close{background-position:-384px -120px;width:16px;} +.icon-folder-open{background-position:-408px -120px;width:16px;} +.icon-resize-vertical{background-position:-432px -119px;} +.icon-resize-horizontal{background-position:-456px -118px;} +.icon-hdd{background-position:0 -144px;} +.icon-bullhorn{background-position:-24px -144px;} +.icon-bell{background-position:-48px -144px;} +.icon-certificate{background-position:-72px -144px;} +.icon-thumbs-up{background-position:-96px -144px;} +.icon-thumbs-down{background-position:-120px -144px;} +.icon-hand-right{background-position:-144px -144px;} +.icon-hand-left{background-position:-168px -144px;} +.icon-hand-up{background-position:-192px -144px;} +.icon-hand-down{background-position:-216px -144px;} +.icon-circle-arrow-right{background-position:-240px -144px;} +.icon-circle-arrow-left{background-position:-264px -144px;} +.icon-circle-arrow-up{background-position:-288px -144px;} +.icon-circle-arrow-down{background-position:-312px -144px;} +.icon-globe{background-position:-336px -144px;} +.icon-wrench{background-position:-360px -144px;} +.icon-tasks{background-position:-384px -144px;} +.icon-filter{background-position:-408px -144px;} +.icon-briefcase{background-position:-432px -144px;} +.icon-fullscreen{background-position:-456px -144px;} +.btn-group{position:relative;display:inline-block;*display:inline;*zoom:1;font-size:0;vertical-align:middle;white-space:nowrap;*margin-left:.3em;}.btn-group:first-child{*margin-left:0;} +.btn-group+.btn-group{margin-left:5px;} +.btn-toolbar{font-size:0;margin-top:10px;margin-bottom:10px;}.btn-toolbar>.btn+.btn,.btn-toolbar>.btn-group+.btn,.btn-toolbar>.btn+.btn-group{margin-left:5px;} +.btn-group>.btn{position:relative;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} +.btn-group>.btn+.btn{margin-left:-1px;} +.btn-group>.btn,.btn-group>.dropdown-menu,.btn-group>.popover{font-size:14px;} +.btn-group>.btn-mini{font-size:10.5px;} +.btn-group>.btn-small{font-size:11.9px;} +.btn-group>.btn-large{font-size:17.5px;} +.btn-group>.btn:first-child{margin-left:0;-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px;} +.btn-group>.btn:last-child,.btn-group>.dropdown-toggle{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px;} +.btn-group>.btn.large:first-child{margin-left:0;-webkit-border-top-left-radius:6px;-moz-border-radius-topleft:6px;border-top-left-radius:6px;-webkit-border-bottom-left-radius:6px;-moz-border-radius-bottomleft:6px;border-bottom-left-radius:6px;} +.btn-group>.btn.large:last-child,.btn-group>.large.dropdown-toggle{-webkit-border-top-right-radius:6px;-moz-border-radius-topright:6px;border-top-right-radius:6px;-webkit-border-bottom-right-radius:6px;-moz-border-radius-bottomright:6px;border-bottom-right-radius:6px;} +.btn-group>.btn:hover,.btn-group>.btn:focus,.btn-group>.btn:active,.btn-group>.btn.active{z-index:2;} +.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0;} +.btn-group>.btn+.dropdown-toggle{padding-left:8px;padding-right:8px;-webkit-box-shadow:inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);*padding-top:5px;*padding-bottom:5px;} +.btn-group>.btn-mini+.dropdown-toggle{padding-left:5px;padding-right:5px;*padding-top:2px;*padding-bottom:2px;} +.btn-group>.btn-small+.dropdown-toggle{*padding-top:5px;*padding-bottom:4px;} +.btn-group>.btn-large+.dropdown-toggle{padding-left:12px;padding-right:12px;*padding-top:7px;*padding-bottom:7px;} +.btn-group.open .dropdown-toggle{background-image:none;-webkit-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);} +.btn-group.open .btn.dropdown-toggle{background-color:#e6e6e6;} +.btn-group.open .btn-primary.dropdown-toggle{background-color:#0044cc;} +.btn-group.open .btn-warning.dropdown-toggle{background-color:#f89406;} +.btn-group.open .btn-danger.dropdown-toggle{background-color:#bd362f;} +.btn-group.open .btn-success.dropdown-toggle{background-color:#51a351;} +.btn-group.open .btn-info.dropdown-toggle{background-color:#2f96b4;} +.btn-group.open .btn-inverse.dropdown-toggle{background-color:#222222;} +.btn .caret{margin-top:8px;margin-left:0;} +.btn-large .caret{margin-top:6px;} +.btn-large .caret{border-left-width:5px;border-right-width:5px;border-top-width:5px;} +.btn-mini .caret,.btn-small .caret{margin-top:8px;} +.dropup .btn-large .caret{border-bottom-width:5px;} +.btn-primary .caret,.btn-warning .caret,.btn-danger .caret,.btn-info .caret,.btn-success .caret,.btn-inverse .caret{border-top-color:#ffffff;border-bottom-color:#ffffff;} +.btn-group-vertical{display:inline-block;*display:inline;*zoom:1;} +.btn-group-vertical>.btn{display:block;float:none;max-width:100%;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} +.btn-group-vertical>.btn+.btn{margin-left:0;margin-top:-1px;} +.btn-group-vertical>.btn:first-child{-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0;} +.btn-group-vertical>.btn:last-child{-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px;} +.btn-group-vertical>.btn-large:first-child{-webkit-border-radius:6px 6px 0 0;-moz-border-radius:6px 6px 0 0;border-radius:6px 6px 0 0;} +.btn-group-vertical>.btn-large:last-child{-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px;} +.nav{margin-left:0;margin-bottom:20px;list-style:none;} +.nav>li>a{display:block;} +.nav>li>a:hover,.nav>li>a:focus{text-decoration:none;background-color:#eeeeee;} +.nav>li>a>img{max-width:none;} +.nav>.pull-right{float:right;} +.nav-header{display:block;padding:3px 15px;font-size:11px;font-weight:bold;line-height:20px;color:#999999;text-shadow:0 1px 0 rgba(255, 255, 255, 0.5);text-transform:uppercase;} +.nav li+.nav-header{margin-top:9px;} +.nav-list{padding-left:15px;padding-right:15px;margin-bottom:0;} +.nav-list>li>a,.nav-list .nav-header{margin-left:-15px;margin-right:-15px;text-shadow:0 1px 0 rgba(255, 255, 255, 0.5);} +.nav-list>li>a{padding:3px 15px;} +.nav-list>.active>a,.nav-list>.active>a:hover,.nav-list>.active>a:focus{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.2);background-color:#0088cc;} +.nav-list [class^="icon-"],.nav-list [class*=" icon-"]{margin-right:2px;} +.nav-list .divider{*width:100%;height:1px;margin:9px 1px;*margin:-5px 0 5px;overflow:hidden;background-color:#e5e5e5;border-bottom:1px solid #ffffff;} +.nav-tabs,.nav-pills{*zoom:1;}.nav-tabs:before,.nav-pills:before,.nav-tabs:after,.nav-pills:after{display:table;content:"";line-height:0;} +.nav-tabs:after,.nav-pills:after{clear:both;} +.nav-tabs>li,.nav-pills>li{float:left;} +.nav-tabs>li>a,.nav-pills>li>a{padding-right:12px;padding-left:12px;margin-right:2px;line-height:14px;} +.nav-tabs{border-bottom:1px solid #ddd;} +.nav-tabs>li{margin-bottom:-1px;} +.nav-tabs>li>a{padding-top:8px;padding-bottom:8px;line-height:20px;border:1px solid transparent;-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0;}.nav-tabs>li>a:hover,.nav-tabs>li>a:focus{border-color:#eeeeee #eeeeee #dddddd;} +.nav-tabs>.active>a,.nav-tabs>.active>a:hover,.nav-tabs>.active>a:focus{color:#555555;background-color:#ffffff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default;} +.nav-pills>li>a{padding-top:8px;padding-bottom:8px;margin-top:2px;margin-bottom:2px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;} +.nav-pills>.active>a,.nav-pills>.active>a:hover,.nav-pills>.active>a:focus{color:#ffffff;background-color:#0088cc;} +.nav-stacked>li{float:none;} +.nav-stacked>li>a{margin-right:0;} +.nav-tabs.nav-stacked{border-bottom:0;} +.nav-tabs.nav-stacked>li>a{border:1px solid #ddd;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} +.nav-tabs.nav-stacked>li:first-child>a{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;} +.nav-tabs.nav-stacked>li:last-child>a{-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px;} +.nav-tabs.nav-stacked>li>a:hover,.nav-tabs.nav-stacked>li>a:focus{border-color:#ddd;z-index:2;} +.nav-pills.nav-stacked>li>a{margin-bottom:3px;} +.nav-pills.nav-stacked>li:last-child>a{margin-bottom:1px;} +.nav-tabs .dropdown-menu{-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px;} +.nav-pills .dropdown-menu{-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;} +.nav .dropdown-toggle .caret{border-top-color:#0088cc;border-bottom-color:#0088cc;margin-top:6px;} +.nav .dropdown-toggle:hover .caret,.nav .dropdown-toggle:focus .caret{border-top-color:#005580;border-bottom-color:#005580;} +.nav-tabs .dropdown-toggle .caret{margin-top:8px;} +.nav .active .dropdown-toggle .caret{border-top-color:#fff;border-bottom-color:#fff;} +.nav-tabs .active .dropdown-toggle .caret{border-top-color:#555555;border-bottom-color:#555555;} +.nav>.dropdown.active>a:hover,.nav>.dropdown.active>a:focus{cursor:pointer;} +.nav-tabs .open .dropdown-toggle,.nav-pills .open .dropdown-toggle,.nav>li.dropdown.open.active>a:hover,.nav>li.dropdown.open.active>a:focus{color:#ffffff;background-color:#999999;border-color:#999999;} +.nav li.dropdown.open .caret,.nav li.dropdown.open.active .caret,.nav li.dropdown.open a:hover .caret,.nav li.dropdown.open a:focus .caret{border-top-color:#ffffff;border-bottom-color:#ffffff;opacity:1;filter:alpha(opacity=100);} +.tabs-stacked .open>a:hover,.tabs-stacked .open>a:focus{border-color:#999999;} +.tabbable{*zoom:1;}.tabbable:before,.tabbable:after{display:table;content:"";line-height:0;} +.tabbable:after{clear:both;} +.tab-content{overflow:auto;} +.tabs-below>.nav-tabs,.tabs-right>.nav-tabs,.tabs-left>.nav-tabs{border-bottom:0;} +.tab-content>.tab-pane,.pill-content>.pill-pane{display:none;} +.tab-content>.active,.pill-content>.active{display:block;} +.tabs-below>.nav-tabs{border-top:1px solid #ddd;} +.tabs-below>.nav-tabs>li{margin-top:-1px;margin-bottom:0;} +.tabs-below>.nav-tabs>li>a{-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px;}.tabs-below>.nav-tabs>li>a:hover,.tabs-below>.nav-tabs>li>a:focus{border-bottom-color:transparent;border-top-color:#ddd;} +.tabs-below>.nav-tabs>.active>a,.tabs-below>.nav-tabs>.active>a:hover,.tabs-below>.nav-tabs>.active>a:focus{border-color:transparent #ddd #ddd #ddd;} +.tabs-left>.nav-tabs>li,.tabs-right>.nav-tabs>li{float:none;} +.tabs-left>.nav-tabs>li>a,.tabs-right>.nav-tabs>li>a{min-width:74px;margin-right:0;margin-bottom:3px;} +.tabs-left>.nav-tabs{float:left;margin-right:19px;border-right:1px solid #ddd;} +.tabs-left>.nav-tabs>li>a{margin-right:-1px;-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px;} +.tabs-left>.nav-tabs>li>a:hover,.tabs-left>.nav-tabs>li>a:focus{border-color:#eeeeee #dddddd #eeeeee #eeeeee;} +.tabs-left>.nav-tabs .active>a,.tabs-left>.nav-tabs .active>a:hover,.tabs-left>.nav-tabs .active>a:focus{border-color:#ddd transparent #ddd #ddd;*border-right-color:#ffffff;} +.tabs-right>.nav-tabs{float:right;margin-left:19px;border-left:1px solid #ddd;} +.tabs-right>.nav-tabs>li>a{margin-left:-1px;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;} +.tabs-right>.nav-tabs>li>a:hover,.tabs-right>.nav-tabs>li>a:focus{border-color:#eeeeee #eeeeee #eeeeee #dddddd;} +.tabs-right>.nav-tabs .active>a,.tabs-right>.nav-tabs .active>a:hover,.tabs-right>.nav-tabs .active>a:focus{border-color:#ddd #ddd #ddd transparent;*border-left-color:#ffffff;} +.nav>.disabled>a{color:#999999;} +.nav>.disabled>a:hover,.nav>.disabled>a:focus{text-decoration:none;background-color:transparent;cursor:default;} +.navbar{overflow:visible;margin-bottom:20px;*position:relative;*z-index:2;} +.navbar-inner{min-height:40px;padding-left:20px;padding-right:20px;background-color:#fafafa;background-image:-moz-linear-gradient(top, #ffffff, #f2f2f2);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#f2f2f2));background-image:-webkit-linear-gradient(top, #ffffff, #f2f2f2);background-image:-o-linear-gradient(top, #ffffff, #f2f2f2);background-image:linear-gradient(to bottom, #ffffff, #f2f2f2);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff2f2f2', GradientType=0);border:1px solid #d4d4d4;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 4px rgba(0, 0, 0, 0.065);-moz-box-shadow:0 1px 4px rgba(0, 0, 0, 0.065);box-shadow:0 1px 4px rgba(0, 0, 0, 0.065);*zoom:1;}.navbar-inner:before,.navbar-inner:after{display:table;content:"";line-height:0;} +.navbar-inner:after{clear:both;} +.navbar .container{width:auto;} +.nav-collapse.collapse{height:auto;overflow:visible;} +.navbar .brand{float:left;display:block;padding:10px 20px 10px;margin-left:-20px;font-size:20px;font-weight:200;color:#777777;text-shadow:0 1px 0 #ffffff;}.navbar .brand:hover,.navbar .brand:focus{text-decoration:none;} +.navbar-text{margin-bottom:0;line-height:40px;color:#777777;} +.navbar-link{color:#777777;}.navbar-link:hover,.navbar-link:focus{color:#333333;} +.navbar .divider-vertical{height:40px;margin:0 9px;border-left:1px solid #f2f2f2;border-right:1px solid #ffffff;} +.navbar .btn,.navbar .btn-group{margin-top:5px;} +.navbar .btn-group .btn,.navbar .input-prepend .btn,.navbar .input-append .btn,.navbar .input-prepend .btn-group,.navbar .input-append .btn-group{margin-top:0;} +.navbar-form{margin-bottom:0;*zoom:1;}.navbar-form:before,.navbar-form:after{display:table;content:"";line-height:0;} +.navbar-form:after{clear:both;} +.navbar-form input,.navbar-form select,.navbar-form .radio,.navbar-form .checkbox{margin-top:5px;} +.navbar-form input,.navbar-form select,.navbar-form .btn{display:inline-block;margin-bottom:0;} +.navbar-form input[type="image"],.navbar-form input[type="checkbox"],.navbar-form input[type="radio"]{margin-top:3px;} +.navbar-form .input-append,.navbar-form .input-prepend{margin-top:5px;white-space:nowrap;}.navbar-form .input-append input,.navbar-form .input-prepend input{margin-top:0;} +.navbar-search{position:relative;float:left;margin-top:5px;margin-bottom:0;}.navbar-search .search-query{margin-bottom:0;padding:4px 14px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px;font-weight:normal;line-height:1;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px;} +.navbar-static-top{position:static;margin-bottom:0;}.navbar-static-top .navbar-inner{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} +.navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030;margin-bottom:0;} +.navbar-fixed-top .navbar-inner,.navbar-static-top .navbar-inner{border-width:0 0 1px;} +.navbar-fixed-bottom .navbar-inner{border-width:1px 0 0;} +.navbar-fixed-top .navbar-inner,.navbar-fixed-bottom .navbar-inner{padding-left:0;padding-right:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} +.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:940px;} +.navbar-fixed-top{top:0;} +.navbar-fixed-top .navbar-inner,.navbar-static-top .navbar-inner{-webkit-box-shadow:0 1px 10px rgba(0,0,0,.1);-moz-box-shadow:0 1px 10px rgba(0,0,0,.1);box-shadow:0 1px 10px rgba(0,0,0,.1);} +.navbar-fixed-bottom{bottom:0;}.navbar-fixed-bottom .navbar-inner{-webkit-box-shadow:0 -1px 10px rgba(0,0,0,.1);-moz-box-shadow:0 -1px 10px rgba(0,0,0,.1);box-shadow:0 -1px 10px rgba(0,0,0,.1);} +.navbar .nav{position:relative;left:0;display:block;float:left;margin:0 10px 0 0;} +.navbar .nav.pull-right{float:right;margin-right:0;} +.navbar .nav>li{float:left;} +.navbar .nav>li>a{float:none;padding:10px 15px 10px;color:#777777;text-decoration:none;text-shadow:0 1px 0 #ffffff;} +.navbar .nav .dropdown-toggle .caret{margin-top:8px;} +.navbar .nav>li>a:focus,.navbar .nav>li>a:hover{background-color:transparent;color:#333333;text-decoration:none;} +.navbar .nav>.active>a,.navbar .nav>.active>a:hover,.navbar .nav>.active>a:focus{color:#555555;text-decoration:none;background-color:#e5e5e5;-webkit-box-shadow:inset 0 3px 8px rgba(0, 0, 0, 0.125);-moz-box-shadow:inset 0 3px 8px rgba(0, 0, 0, 0.125);box-shadow:inset 0 3px 8px rgba(0, 0, 0, 0.125);} +.navbar .btn-navbar{display:none;float:right;padding:7px 10px;margin-left:5px;margin-right:5px;color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#ededed;background-image:-moz-linear-gradient(top, #f2f2f2, #e5e5e5);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#f2f2f2), to(#e5e5e5));background-image:-webkit-linear-gradient(top, #f2f2f2, #e5e5e5);background-image:-o-linear-gradient(top, #f2f2f2, #e5e5e5);background-image:linear-gradient(to bottom, #f2f2f2, #e5e5e5);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2f2f2', endColorstr='#ffe5e5e5', GradientType=0);border-color:#e5e5e5 #e5e5e5 #bfbfbf;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#e5e5e5;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);}.navbar .btn-navbar:hover,.navbar .btn-navbar:focus,.navbar .btn-navbar:active,.navbar .btn-navbar.active,.navbar .btn-navbar.disabled,.navbar .btn-navbar[disabled]{color:#ffffff;background-color:#e5e5e5;*background-color:#d9d9d9;} +.navbar .btn-navbar:active,.navbar .btn-navbar.active{background-color:#cccccc \9;} +.navbar .btn-navbar .icon-bar{display:block;width:18px;height:2px;background-color:#f5f5f5;-webkit-border-radius:1px;-moz-border-radius:1px;border-radius:1px;-webkit-box-shadow:0 1px 0 rgba(0, 0, 0, 0.25);-moz-box-shadow:0 1px 0 rgba(0, 0, 0, 0.25);box-shadow:0 1px 0 rgba(0, 0, 0, 0.25);} +.btn-navbar .icon-bar+.icon-bar{margin-top:3px;} +.navbar .nav>li>.dropdown-menu:before{content:'';display:inline-block;border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid #ccc;border-bottom-color:rgba(0, 0, 0, 0.2);position:absolute;top:-7px;left:9px;} +.navbar .nav>li>.dropdown-menu:after{content:'';display:inline-block;border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #ffffff;position:absolute;top:-6px;left:10px;} +.navbar-fixed-bottom .nav>li>.dropdown-menu:before{border-top:7px solid #ccc;border-top-color:rgba(0, 0, 0, 0.2);border-bottom:0;bottom:-7px;top:auto;} +.navbar-fixed-bottom .nav>li>.dropdown-menu:after{border-top:6px solid #ffffff;border-bottom:0;bottom:-6px;top:auto;} +.navbar .nav li.dropdown>a:hover .caret,.navbar .nav li.dropdown>a:focus .caret{border-top-color:#333333;border-bottom-color:#333333;} +.navbar .nav li.dropdown.open>.dropdown-toggle,.navbar .nav li.dropdown.active>.dropdown-toggle,.navbar .nav li.dropdown.open.active>.dropdown-toggle{background-color:#e5e5e5;color:#555555;} +.navbar .nav li.dropdown>.dropdown-toggle .caret{border-top-color:#777777;border-bottom-color:#777777;} +.navbar .nav li.dropdown.open>.dropdown-toggle .caret,.navbar .nav li.dropdown.active>.dropdown-toggle .caret,.navbar .nav li.dropdown.open.active>.dropdown-toggle .caret{border-top-color:#555555;border-bottom-color:#555555;} +.navbar .pull-right>li>.dropdown-menu,.navbar .nav>li>.dropdown-menu.pull-right{left:auto;right:0;}.navbar .pull-right>li>.dropdown-menu:before,.navbar .nav>li>.dropdown-menu.pull-right:before{left:auto;right:12px;} +.navbar .pull-right>li>.dropdown-menu:after,.navbar .nav>li>.dropdown-menu.pull-right:after{left:auto;right:13px;} +.navbar .pull-right>li>.dropdown-menu .dropdown-menu,.navbar .nav>li>.dropdown-menu.pull-right .dropdown-menu{left:auto;right:100%;margin-left:0;margin-right:-1px;-webkit-border-radius:6px 0 6px 6px;-moz-border-radius:6px 0 6px 6px;border-radius:6px 0 6px 6px;} +.navbar-inverse .navbar-inner{background-color:#1b1b1b;background-image:-moz-linear-gradient(top, #222222, #111111);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#222222), to(#111111));background-image:-webkit-linear-gradient(top, #222222, #111111);background-image:-o-linear-gradient(top, #222222, #111111);background-image:linear-gradient(to bottom, #222222, #111111);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff222222', endColorstr='#ff111111', GradientType=0);border-color:#252525;} +.navbar-inverse .brand,.navbar-inverse .nav>li>a{color:#999999;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);}.navbar-inverse .brand:hover,.navbar-inverse .nav>li>a:hover,.navbar-inverse .brand:focus,.navbar-inverse .nav>li>a:focus{color:#ffffff;} +.navbar-inverse .brand{color:#999999;} +.navbar-inverse .navbar-text{color:#999999;} +.navbar-inverse .nav>li>a:focus,.navbar-inverse .nav>li>a:hover{background-color:transparent;color:#ffffff;} +.navbar-inverse .nav .active>a,.navbar-inverse .nav .active>a:hover,.navbar-inverse .nav .active>a:focus{color:#ffffff;background-color:#111111;} +.navbar-inverse .navbar-link{color:#999999;}.navbar-inverse .navbar-link:hover,.navbar-inverse .navbar-link:focus{color:#ffffff;} +.navbar-inverse .divider-vertical{border-left-color:#111111;border-right-color:#222222;} +.navbar-inverse .nav li.dropdown.open>.dropdown-toggle,.navbar-inverse .nav li.dropdown.active>.dropdown-toggle,.navbar-inverse .nav li.dropdown.open.active>.dropdown-toggle{background-color:#111111;color:#ffffff;} +.navbar-inverse .nav li.dropdown>a:hover .caret,.navbar-inverse .nav li.dropdown>a:focus .caret{border-top-color:#ffffff;border-bottom-color:#ffffff;} +.navbar-inverse .nav li.dropdown>.dropdown-toggle .caret{border-top-color:#999999;border-bottom-color:#999999;} +.navbar-inverse .nav li.dropdown.open>.dropdown-toggle .caret,.navbar-inverse .nav li.dropdown.active>.dropdown-toggle .caret,.navbar-inverse .nav li.dropdown.open.active>.dropdown-toggle .caret{border-top-color:#ffffff;border-bottom-color:#ffffff;} +.navbar-inverse .navbar-search .search-query{color:#ffffff;background-color:#515151;border-color:#111111;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);box-shadow:inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);-webkit-transition:none;-moz-transition:none;-o-transition:none;transition:none;}.navbar-inverse .navbar-search .search-query:-moz-placeholder{color:#cccccc;} +.navbar-inverse .navbar-search .search-query:-ms-input-placeholder{color:#cccccc;} +.navbar-inverse .navbar-search .search-query::-webkit-input-placeholder{color:#cccccc;} +.navbar-inverse .navbar-search .search-query:focus,.navbar-inverse .navbar-search .search-query.focused{padding:5px 15px;color:#333333;text-shadow:0 1px 0 #ffffff;background-color:#ffffff;border:0;-webkit-box-shadow:0 0 3px rgba(0, 0, 0, 0.15);-moz-box-shadow:0 0 3px rgba(0, 0, 0, 0.15);box-shadow:0 0 3px rgba(0, 0, 0, 0.15);outline:0;} +.navbar-inverse .btn-navbar{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#0e0e0e;background-image:-moz-linear-gradient(top, #151515, #040404);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#151515), to(#040404));background-image:-webkit-linear-gradient(top, #151515, #040404);background-image:-o-linear-gradient(top, #151515, #040404);background-image:linear-gradient(to bottom, #151515, #040404);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff151515', endColorstr='#ff040404', GradientType=0);border-color:#040404 #040404 #000000;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#040404;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.navbar-inverse .btn-navbar:hover,.navbar-inverse .btn-navbar:focus,.navbar-inverse .btn-navbar:active,.navbar-inverse .btn-navbar.active,.navbar-inverse .btn-navbar.disabled,.navbar-inverse .btn-navbar[disabled]{color:#ffffff;background-color:#040404;*background-color:#000000;} +.navbar-inverse .btn-navbar:active,.navbar-inverse .btn-navbar.active{background-color:#000000 \9;} +.breadcrumb{padding:8px 15px;margin:0 0 20px;list-style:none;background-color:#f5f5f5;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;}.breadcrumb>li{display:inline-block;*display:inline;*zoom:1;text-shadow:0 1px 0 #ffffff;}.breadcrumb>li>.divider{padding:0 5px;color:#ccc;} +.breadcrumb>.active{color:#999999;} +.pagination{margin:20px 0;} +.pagination ul{display:inline-block;*display:inline;*zoom:1;margin-left:0;margin-bottom:0;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 2px rgba(0, 0, 0, 0.05);-moz-box-shadow:0 1px 2px rgba(0, 0, 0, 0.05);box-shadow:0 1px 2px rgba(0, 0, 0, 0.05);} +.pagination ul>li{display:inline;} +.pagination ul>li>a,.pagination ul>li>span{float:left;padding:4px 12px;line-height:20px;text-decoration:none;background-color:#ffffff;border:1px solid #dddddd;border-left-width:0;} +.pagination ul>li>a:hover,.pagination ul>li>a:focus,.pagination ul>.active>a,.pagination ul>.active>span{background-color:#f5f5f5;} +.pagination ul>.active>a,.pagination ul>.active>span{color:#999999;cursor:default;} +.pagination ul>.disabled>span,.pagination ul>.disabled>a,.pagination ul>.disabled>a:hover,.pagination ul>.disabled>a:focus{color:#999999;background-color:transparent;cursor:default;} +.pagination ul>li:first-child>a,.pagination ul>li:first-child>span{border-left-width:1px;-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px;} +.pagination ul>li:last-child>a,.pagination ul>li:last-child>span{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px;} +.pagination-centered{text-align:center;} +.pagination-right{text-align:right;} +.pagination-large ul>li>a,.pagination-large ul>li>span{padding:11px 19px;font-size:17.5px;} +.pagination-large ul>li:first-child>a,.pagination-large ul>li:first-child>span{-webkit-border-top-left-radius:6px;-moz-border-radius-topleft:6px;border-top-left-radius:6px;-webkit-border-bottom-left-radius:6px;-moz-border-radius-bottomleft:6px;border-bottom-left-radius:6px;} +.pagination-large ul>li:last-child>a,.pagination-large ul>li:last-child>span{-webkit-border-top-right-radius:6px;-moz-border-radius-topright:6px;border-top-right-radius:6px;-webkit-border-bottom-right-radius:6px;-moz-border-radius-bottomright:6px;border-bottom-right-radius:6px;} +.pagination-mini ul>li:first-child>a,.pagination-small ul>li:first-child>a,.pagination-mini ul>li:first-child>span,.pagination-small ul>li:first-child>span{-webkit-border-top-left-radius:3px;-moz-border-radius-topleft:3px;border-top-left-radius:3px;-webkit-border-bottom-left-radius:3px;-moz-border-radius-bottomleft:3px;border-bottom-left-radius:3px;} +.pagination-mini ul>li:last-child>a,.pagination-small ul>li:last-child>a,.pagination-mini ul>li:last-child>span,.pagination-small ul>li:last-child>span{-webkit-border-top-right-radius:3px;-moz-border-radius-topright:3px;border-top-right-radius:3px;-webkit-border-bottom-right-radius:3px;-moz-border-radius-bottomright:3px;border-bottom-right-radius:3px;} +.pagination-small ul>li>a,.pagination-small ul>li>span{padding:2px 10px;font-size:11.9px;} +.pagination-mini ul>li>a,.pagination-mini ul>li>span{padding:0 6px;font-size:10.5px;} +.pager{margin:20px 0;list-style:none;text-align:center;*zoom:1;}.pager:before,.pager:after{display:table;content:"";line-height:0;} +.pager:after{clear:both;} +.pager li{display:inline;} +.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px;} +.pager li>a:hover,.pager li>a:focus{text-decoration:none;background-color:#f5f5f5;} +.pager .next>a,.pager .next>span{float:right;} +.pager .previous>a,.pager .previous>span{float:left;} +.pager .disabled>a,.pager .disabled>a:hover,.pager .disabled>a:focus,.pager .disabled>span{color:#999999;background-color:#fff;cursor:default;} +.thumbnails{margin-left:-20px;list-style:none;*zoom:1;}.thumbnails:before,.thumbnails:after{display:table;content:"";line-height:0;} +.thumbnails:after{clear:both;} +.row-fluid .thumbnails{margin-left:0;} +.thumbnails>li{float:left;margin-bottom:20px;margin-left:20px;} +.thumbnail{display:block;padding:4px;line-height:20px;border:1px solid #ddd;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 3px rgba(0, 0, 0, 0.055);-moz-box-shadow:0 1px 3px rgba(0, 0, 0, 0.055);box-shadow:0 1px 3px rgba(0, 0, 0, 0.055);-webkit-transition:all 0.2s ease-in-out;-moz-transition:all 0.2s ease-in-out;-o-transition:all 0.2s ease-in-out;transition:all 0.2s ease-in-out;} +a.thumbnail:hover,a.thumbnail:focus{border-color:#0088cc;-webkit-box-shadow:0 1px 4px rgba(0, 105, 214, 0.25);-moz-box-shadow:0 1px 4px rgba(0, 105, 214, 0.25);box-shadow:0 1px 4px rgba(0, 105, 214, 0.25);} +.thumbnail>img{display:block;max-width:100%;margin-left:auto;margin-right:auto;} +.thumbnail .caption{padding:9px;color:#555555;} +.alert{padding:8px 35px 8px 14px;margin-bottom:20px;text-shadow:0 1px 0 rgba(255, 255, 255, 0.5);background-color:#fcf8e3;border:1px solid #fbeed5;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} +.alert,.alert h4{color:#c09853;} +.alert h4{margin:0;} +.alert .close{position:relative;top:-2px;right:-21px;line-height:20px;} +.alert-success{background-color:#dff0d8;border-color:#d6e9c6;color:#468847;} +.alert-success h4{color:#468847;} +.alert-danger,.alert-error{background-color:#f2dede;border-color:#eed3d7;color:#b94a48;} +.alert-danger h4,.alert-error h4{color:#b94a48;} +.alert-info{background-color:#d9edf7;border-color:#bce8f1;color:#3a87ad;} +.alert-info h4{color:#3a87ad;} +.alert-block{padding-top:14px;padding-bottom:14px;} +.alert-block>p,.alert-block>ul{margin-bottom:0;} +.alert-block p+p{margin-top:5px;} +@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0;} to{background-position:0 0;}}@-moz-keyframes progress-bar-stripes{from{background-position:40px 0;} to{background-position:0 0;}}@-ms-keyframes progress-bar-stripes{from{background-position:40px 0;} to{background-position:0 0;}}@-o-keyframes progress-bar-stripes{from{background-position:0 0;} to{background-position:40px 0;}}@keyframes progress-bar-stripes{from{background-position:40px 0;} to{background-position:0 0;}}.progress{overflow:hidden;height:20px;margin-bottom:20px;background-color:#f7f7f7;background-image:-moz-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#f5f5f5), to(#f9f9f9));background-image:-webkit-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:-o-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:linear-gradient(to bottom, #f5f5f5, #f9f9f9);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#fff9f9f9', GradientType=0);-webkit-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1);-moz-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1);box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1);-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} +.progress .bar{width:0%;height:100%;color:#ffffff;float:left;font-size:12px;text-align:center;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#0e90d2;background-image:-moz-linear-gradient(top, #149bdf, #0480be);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#149bdf), to(#0480be));background-image:-webkit-linear-gradient(top, #149bdf, #0480be);background-image:-o-linear-gradient(top, #149bdf, #0480be);background-image:linear-gradient(to bottom, #149bdf, #0480be);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff149bdf', endColorstr='#ff0480be', GradientType=0);-webkit-box-shadow:inset 0 -1px 0 rgba(0, 0, 0, 0.15);-moz-box-shadow:inset 0 -1px 0 rgba(0, 0, 0, 0.15);box-shadow:inset 0 -1px 0 rgba(0, 0, 0, 0.15);-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:width 0.6s ease;-moz-transition:width 0.6s ease;-o-transition:width 0.6s ease;transition:width 0.6s ease;} +.progress .bar+.bar{-webkit-box-shadow:inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15);-moz-box-shadow:inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15);} +.progress-striped .bar{background-color:#149bdf;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);-webkit-background-size:40px 40px;-moz-background-size:40px 40px;-o-background-size:40px 40px;background-size:40px 40px;} +.progress.active .bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-moz-animation:progress-bar-stripes 2s linear infinite;-ms-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite;} +.progress-danger .bar,.progress .bar-danger{background-color:#dd514c;background-image:-moz-linear-gradient(top, #ee5f5b, #c43c35);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#c43c35));background-image:-webkit-linear-gradient(top, #ee5f5b, #c43c35);background-image:-o-linear-gradient(top, #ee5f5b, #c43c35);background-image:linear-gradient(to bottom, #ee5f5b, #c43c35);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffc43c35', GradientType=0);} +.progress-danger.progress-striped .bar,.progress-striped .bar-danger{background-color:#ee5f5b;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);} +.progress-success .bar,.progress .bar-success{background-color:#5eb95e;background-image:-moz-linear-gradient(top, #62c462, #57a957);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#57a957));background-image:-webkit-linear-gradient(top, #62c462, #57a957);background-image:-o-linear-gradient(top, #62c462, #57a957);background-image:linear-gradient(to bottom, #62c462, #57a957);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff57a957', GradientType=0);} +.progress-success.progress-striped .bar,.progress-striped .bar-success{background-color:#62c462;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);} +.progress-info .bar,.progress .bar-info{background-color:#4bb1cf;background-image:-moz-linear-gradient(top, #5bc0de, #339bb9);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#339bb9));background-image:-webkit-linear-gradient(top, #5bc0de, #339bb9);background-image:-o-linear-gradient(top, #5bc0de, #339bb9);background-image:linear-gradient(to bottom, #5bc0de, #339bb9);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff339bb9', GradientType=0);} +.progress-info.progress-striped .bar,.progress-striped .bar-info{background-color:#5bc0de;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);} +.progress-warning .bar,.progress .bar-warning{background-color:#faa732;background-image:-moz-linear-gradient(top, #fbb450, #f89406);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));background-image:-webkit-linear-gradient(top, #fbb450, #f89406);background-image:-o-linear-gradient(top, #fbb450, #f89406);background-image:linear-gradient(to bottom, #fbb450, #f89406);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fff89406', GradientType=0);} +.progress-warning.progress-striped .bar,.progress-striped .bar-warning{background-color:#fbb450;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);} +.hero-unit{padding:60px;margin-bottom:30px;font-size:18px;font-weight:200;line-height:30px;color:inherit;background-color:#eeeeee;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;}.hero-unit h1{margin-bottom:0;font-size:60px;line-height:1;color:inherit;letter-spacing:-1px;} +.hero-unit li{line-height:30px;} +.media,.media-body{overflow:hidden;*overflow:visible;zoom:1;} +.media,.media .media{margin-top:15px;} +.media:first-child{margin-top:0;} +.media-object{display:block;} +.media-heading{margin:0 0 5px;} +.media>.pull-left{margin-right:10px;} +.media>.pull-right{margin-left:10px;} +.media-list{margin-left:0;list-style:none;} +.tooltip{position:absolute;z-index:1030;display:block;visibility:visible;font-size:11px;line-height:1.4;opacity:0;filter:alpha(opacity=0);}.tooltip.in{opacity:0.8;filter:alpha(opacity=80);} +.tooltip.top{margin-top:-3px;padding:5px 0;} +.tooltip.right{margin-left:3px;padding:0 5px;} +.tooltip.bottom{margin-top:3px;padding:5px 0;} +.tooltip.left{margin-left:-3px;padding:0 5px;} +.tooltip-inner{max-width:200px;padding:8px;color:#ffffff;text-align:center;text-decoration:none;background-color:#000000;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} +.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid;} +.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000000;} +.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000000;} +.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000000;} +.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000000;} +.popover{position:absolute;top:0;left:0;z-index:1010;display:none;max-width:276px;padding:1px;text-align:left;background-color:#ffffff;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0, 0, 0, 0.2);-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);-moz-box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);white-space:normal;}.popover.top{margin-top:-10px;} +.popover.right{margin-left:10px;} +.popover.bottom{margin-top:10px;} +.popover.left{margin-left:-10px;} +.popover-title{margin:0;padding:8px 14px;font-size:14px;font-weight:normal;line-height:18px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;-webkit-border-radius:5px 5px 0 0;-moz-border-radius:5px 5px 0 0;border-radius:5px 5px 0 0;}.popover-title:empty{display:none;} +.popover-content{padding:9px 14px;} +.popover .arrow,.popover .arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid;} +.popover .arrow{border-width:11px;} +.popover .arrow:after{border-width:10px;content:"";} +.popover.top .arrow{left:50%;margin-left:-11px;border-bottom-width:0;border-top-color:#999;border-top-color:rgba(0, 0, 0, 0.25);bottom:-11px;}.popover.top .arrow:after{bottom:1px;margin-left:-10px;border-bottom-width:0;border-top-color:#ffffff;} +.popover.right .arrow{top:50%;left:-11px;margin-top:-11px;border-left-width:0;border-right-color:#999;border-right-color:rgba(0, 0, 0, 0.25);}.popover.right .arrow:after{left:1px;bottom:-10px;border-left-width:0;border-right-color:#ffffff;} +.popover.bottom .arrow{left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0, 0, 0, 0.25);top:-11px;}.popover.bottom .arrow:after{top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#ffffff;} +.popover.left .arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0, 0, 0, 0.25);}.popover.left .arrow:after{right:1px;border-right-width:0;border-left-color:#ffffff;bottom:-10px;} +.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000000;}.modal-backdrop.fade{opacity:0;} +.modal-backdrop,.modal-backdrop.fade.in{opacity:0.8;filter:alpha(opacity=80);} +.modal{position:fixed;top:10%;left:50%;z-index:1050;width:560px;margin-left:-280px;background-color:#ffffff;border:1px solid #999;border:1px solid rgba(0, 0, 0, 0.3);*border:1px solid #999;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);-moz-box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);-webkit-background-clip:padding-box;-moz-background-clip:padding-box;background-clip:padding-box;outline:none;}.modal.fade{-webkit-transition:opacity .3s linear, top .3s ease-out;-moz-transition:opacity .3s linear, top .3s ease-out;-o-transition:opacity .3s linear, top .3s ease-out;transition:opacity .3s linear, top .3s ease-out;top:-25%;} +.modal.fade.in{top:10%;} +.modal-header{padding:9px 15px;border-bottom:1px solid #eee;}.modal-header .close{margin-top:2px;} +.modal-header h3{margin:0;line-height:30px;} +.modal-body{position:relative;overflow-y:auto;max-height:400px;padding:15px;} +.modal-form{margin-bottom:0;} +.modal-footer{padding:14px 15px 15px;margin-bottom:0;text-align:right;background-color:#f5f5f5;border-top:1px solid #ddd;-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px;-webkit-box-shadow:inset 0 1px 0 #ffffff;-moz-box-shadow:inset 0 1px 0 #ffffff;box-shadow:inset 0 1px 0 #ffffff;*zoom:1;}.modal-footer:before,.modal-footer:after{display:table;content:"";line-height:0;} +.modal-footer:after{clear:both;} +.modal-footer .btn+.btn{margin-left:5px;margin-bottom:0;} +.modal-footer .btn-group .btn+.btn{margin-left:-1px;} +.modal-footer .btn-block+.btn-block{margin-left:0;} +.dropup,.dropdown{position:relative;} +.dropdown-toggle{*margin-bottom:-3px;} +.dropdown-toggle:active,.open .dropdown-toggle{outline:0;} +.caret{display:inline-block;width:0;height:0;vertical-align:top;border-top:4px solid #000000;border-right:4px solid transparent;border-left:4px solid transparent;content:"";} +.dropdown .caret{margin-top:8px;margin-left:2px;} +.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;background-color:#ffffff;border:1px solid #ccc;border:1px solid rgba(0, 0, 0, 0.2);*border-right-width:2px;*border-bottom-width:2px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);-moz-box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;}.dropdown-menu.pull-right{right:0;left:auto;} +.dropdown-menu .divider{*width:100%;height:1px;margin:9px 1px;*margin:-5px 0 5px;overflow:hidden;background-color:#e5e5e5;border-bottom:1px solid #ffffff;} +.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:20px;color:#333333;white-space:nowrap;} +.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus,.dropdown-submenu:hover>a,.dropdown-submenu:focus>a{text-decoration:none;color:#ffffff;background-color:#0081c2;background-image:-moz-linear-gradient(top, #0088cc, #0077b3);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0077b3));background-image:-webkit-linear-gradient(top, #0088cc, #0077b3);background-image:-o-linear-gradient(top, #0088cc, #0077b3);background-image:linear-gradient(to bottom, #0088cc, #0077b3);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0);} +.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{color:#ffffff;text-decoration:none;outline:0;background-color:#0081c2;background-image:-moz-linear-gradient(top, #0088cc, #0077b3);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0077b3));background-image:-webkit-linear-gradient(top, #0088cc, #0077b3);background-image:-o-linear-gradient(top, #0088cc, #0077b3);background-image:linear-gradient(to bottom, #0088cc, #0077b3);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0);} +.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{color:#999999;} +.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);cursor:default;} +.open{*z-index:1000;}.open>.dropdown-menu{display:block;} +.pull-right>.dropdown-menu{right:0;left:auto;} +.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px solid #000000;content:"";} +.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:1px;} +.dropdown-submenu{position:relative;} +.dropdown-submenu>.dropdown-menu{top:0;left:100%;margin-top:-6px;margin-left:-1px;-webkit-border-radius:0 6px 6px 6px;-moz-border-radius:0 6px 6px 6px;border-radius:0 6px 6px 6px;} +.dropdown-submenu:hover>.dropdown-menu{display:block;} +.dropup .dropdown-submenu>.dropdown-menu{top:auto;bottom:0;margin-top:0;margin-bottom:-2px;-webkit-border-radius:5px 5px 5px 0;-moz-border-radius:5px 5px 5px 0;border-radius:5px 5px 5px 0;} +.dropdown-submenu>a:after{display:block;content:" ";float:right;width:0;height:0;border-color:transparent;border-style:solid;border-width:5px 0 5px 5px;border-left-color:#cccccc;margin-top:5px;margin-right:-10px;} +.dropdown-submenu:hover>a:after{border-left-color:#ffffff;} +.dropdown-submenu.pull-left{float:none;}.dropdown-submenu.pull-left>.dropdown-menu{left:-100%;margin-left:10px;-webkit-border-radius:6px 0 6px 6px;-moz-border-radius:6px 0 6px 6px;border-radius:6px 0 6px 6px;} +.dropdown .dropdown-menu .nav-header{padding-left:20px;padding-right:20px;} +.typeahead{z-index:1051;margin-top:2px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} +.accordion{margin-bottom:20px;} +.accordion-group{margin-bottom:2px;border:1px solid #e5e5e5;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} +.accordion-heading{border-bottom:0;} +.accordion-heading .accordion-toggle{display:block;padding:8px 15px;} +.accordion-toggle{cursor:pointer;} +.accordion-inner{padding:9px 15px;border-top:1px solid #e5e5e5;} +.carousel{position:relative;margin-bottom:20px;line-height:1;} +.carousel-inner{overflow:hidden;width:100%;position:relative;} +.carousel-inner>.item{display:none;position:relative;-webkit-transition:0.6s ease-in-out left;-moz-transition:0.6s ease-in-out left;-o-transition:0.6s ease-in-out left;transition:0.6s ease-in-out left;}.carousel-inner>.item>img,.carousel-inner>.item>a>img{display:block;line-height:1;} +.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block;} +.carousel-inner>.active{left:0;} +.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%;} +.carousel-inner>.next{left:100%;} +.carousel-inner>.prev{left:-100%;} +.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0;} +.carousel-inner>.active.left{left:-100%;} +.carousel-inner>.active.right{left:100%;} +.carousel-control{position:absolute;top:40%;left:15px;width:40px;height:40px;margin-top:-20px;font-size:60px;font-weight:100;line-height:30px;color:#ffffff;text-align:center;background:#222222;border:3px solid #ffffff;-webkit-border-radius:23px;-moz-border-radius:23px;border-radius:23px;opacity:0.5;filter:alpha(opacity=50);}.carousel-control.right{left:auto;right:15px;} +.carousel-control:hover,.carousel-control:focus{color:#ffffff;text-decoration:none;opacity:0.9;filter:alpha(opacity=90);} +.carousel-indicators{position:absolute;top:15px;right:15px;z-index:5;margin:0;list-style:none;}.carousel-indicators li{display:block;float:left;width:10px;height:10px;margin-left:5px;text-indent:-999px;background-color:#ccc;background-color:rgba(255, 255, 255, 0.25);border-radius:5px;} +.carousel-indicators .active{background-color:#fff;} +.carousel-caption{position:absolute;left:0;right:0;bottom:0;padding:15px;background:#333333;background:rgba(0, 0, 0, 0.75);} +.carousel-caption h4,.carousel-caption p{color:#ffffff;line-height:20px;} +.carousel-caption h4{margin:0 0 5px;} +.carousel-caption p{margin-bottom:0;} +.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.05);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.05);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.05);}.well blockquote{border-color:#ddd;border-color:rgba(0, 0, 0, 0.15);} +.well-large{padding:24px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;} +.well-small{padding:9px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} +.close{float:right;font-size:20px;font-weight:bold;line-height:20px;color:#000000;text-shadow:0 1px 0 #ffffff;opacity:0.2;filter:alpha(opacity=20);}.close:hover,.close:focus{color:#000000;text-decoration:none;cursor:pointer;opacity:0.4;filter:alpha(opacity=40);} +button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none;} +.pull-right{float:right;} +.pull-left{float:left;} +.hide{display:none;} +.show{display:block;} +.invisible{visibility:hidden;} +.affix{position:fixed;} +.fade{opacity:0;-webkit-transition:opacity 0.15s linear;-moz-transition:opacity 0.15s linear;-o-transition:opacity 0.15s linear;transition:opacity 0.15s linear;}.fade.in{opacity:1;} +.collapse{position:relative;height:0;overflow:hidden;-webkit-transition:height 0.35s ease;-moz-transition:height 0.35s ease;-o-transition:height 0.35s ease;transition:height 0.35s ease;}.collapse.in{height:auto;} +@-ms-viewport{width:device-width;}.hidden{display:none;visibility:hidden;} +.visible-phone{display:none !important;} +.visible-tablet{display:none !important;} +.hidden-desktop{display:none !important;} +.visible-desktop{display:inherit !important;} +@media (min-width:768px) and (max-width:979px){.hidden-desktop{display:inherit !important;} .visible-desktop{display:none !important ;} .visible-tablet{display:inherit !important;} .hidden-tablet{display:none !important;}}@media (max-width:767px){.hidden-desktop{display:inherit !important;} .visible-desktop{display:none !important;} .visible-phone{display:inherit !important;} .hidden-phone{display:none !important;}}.visible-print{display:none !important;} +@media print{.visible-print{display:inherit !important;} .hidden-print{display:none !important;}}@media (max-width:767px){body{padding-left:20px;padding-right:20px;} .navbar-fixed-top,.navbar-fixed-bottom,.navbar-static-top{margin-left:-20px;margin-right:-20px;} .container-fluid{padding:0;} .dl-horizontal dt{float:none;clear:none;width:auto;text-align:left;} .dl-horizontal dd{margin-left:0;} .container{width:auto;} .row-fluid{width:100%;} .row,.thumbnails{margin-left:0;} .thumbnails>li{float:none;margin-left:0;} [class*="span"],.uneditable-input[class*="span"],.row-fluid [class*="span"]{float:none;display:block;width:100%;margin-left:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;} .span12,.row-fluid .span12{width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;} .row-fluid [class*="offset"]:first-child{margin-left:0;} .input-large,.input-xlarge,.input-xxlarge,input[class*="span"],select[class*="span"],textarea[class*="span"],.uneditable-input{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;} .input-prepend input,.input-append input,.input-prepend input[class*="span"],.input-append input[class*="span"]{display:inline-block;width:auto;} .controls-row [class*="span"]+[class*="span"]{margin-left:0;} .modal{position:fixed;top:20px;left:20px;right:20px;width:auto;margin:0;}.modal.fade{top:-100px;} .modal.fade.in{top:20px;}}@media (max-width:480px){.nav-collapse{-webkit-transform:translate3d(0, 0, 0);} .page-header h1 small{display:block;line-height:20px;} input[type="checkbox"],input[type="radio"]{border:1px solid #ccc;} .form-horizontal .control-label{float:none;width:auto;padding-top:0;text-align:left;} .form-horizontal .controls{margin-left:0;} .form-horizontal .control-list{padding-top:0;} .form-horizontal .form-actions{padding-left:10px;padding-right:10px;} .media .pull-left,.media .pull-right{float:none;display:block;margin-bottom:10px;} .media-object{margin-right:0;margin-left:0;} .modal{top:10px;left:10px;right:10px;} .modal-header .close{padding:10px;margin:-10px;} .carousel-caption{position:static;}}@media (min-width:768px) and (max-width:979px){.row{margin-left:-20px;*zoom:1;}.row:before,.row:after{display:table;content:"";line-height:0;} .row:after{clear:both;} [class*="span"]{float:left;min-height:1px;margin-left:20px;} .container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:724px;} .span12{width:724px;} .span11{width:662px;} .span10{width:600px;} .span9{width:538px;} .span8{width:476px;} .span7{width:414px;} .span6{width:352px;} .span5{width:290px;} .span4{width:228px;} .span3{width:166px;} .span2{width:104px;} .span1{width:42px;} .offset12{margin-left:764px;} .offset11{margin-left:702px;} .offset10{margin-left:640px;} .offset9{margin-left:578px;} .offset8{margin-left:516px;} .offset7{margin-left:454px;} .offset6{margin-left:392px;} .offset5{margin-left:330px;} .offset4{margin-left:268px;} .offset3{margin-left:206px;} .offset2{margin-left:144px;} .offset1{margin-left:82px;} .row-fluid{width:100%;*zoom:1;}.row-fluid:before,.row-fluid:after{display:table;content:"";line-height:0;} .row-fluid:after{clear:both;} .row-fluid [class*="span"]{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;float:left;margin-left:2.7624309392265194%;*margin-left:2.709239449864817%;} .row-fluid [class*="span"]:first-child{margin-left:0;} .row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.7624309392265194%;} .row-fluid .span12{width:100%;*width:99.94680851063829%;} .row-fluid .span11{width:91.43646408839778%;*width:91.38327259903608%;} .row-fluid .span10{width:82.87292817679558%;*width:82.81973668743387%;} .row-fluid .span9{width:74.30939226519337%;*width:74.25620077583166%;} .row-fluid .span8{width:65.74585635359117%;*width:65.69266486422946%;} .row-fluid .span7{width:57.18232044198895%;*width:57.12912895262725%;} .row-fluid .span6{width:48.61878453038674%;*width:48.56559304102504%;} .row-fluid .span5{width:40.05524861878453%;*width:40.00205712942283%;} .row-fluid .span4{width:31.491712707182323%;*width:31.43852121782062%;} .row-fluid .span3{width:22.92817679558011%;*width:22.87498530621841%;} .row-fluid .span2{width:14.3646408839779%;*width:14.311449394616199%;} .row-fluid .span1{width:5.801104972375691%;*width:5.747913483013988%;} .row-fluid .offset12{margin-left:105.52486187845304%;*margin-left:105.41847889972962%;} .row-fluid .offset12:first-child{margin-left:102.76243093922652%;*margin-left:102.6560479605031%;} .row-fluid .offset11{margin-left:96.96132596685082%;*margin-left:96.8549429881274%;} .row-fluid .offset11:first-child{margin-left:94.1988950276243%;*margin-left:94.09251204890089%;} .row-fluid .offset10{margin-left:88.39779005524862%;*margin-left:88.2914070765252%;} .row-fluid .offset10:first-child{margin-left:85.6353591160221%;*margin-left:85.52897613729868%;} .row-fluid .offset9{margin-left:79.8342541436464%;*margin-left:79.72787116492299%;} .row-fluid .offset9:first-child{margin-left:77.07182320441989%;*margin-left:76.96544022569647%;} .row-fluid .offset8{margin-left:71.2707182320442%;*margin-left:71.16433525332079%;} .row-fluid .offset8:first-child{margin-left:68.50828729281768%;*margin-left:68.40190431409427%;} .row-fluid .offset7{margin-left:62.70718232044199%;*margin-left:62.600799341718584%;} .row-fluid .offset7:first-child{margin-left:59.94475138121547%;*margin-left:59.838368402492065%;} .row-fluid .offset6{margin-left:54.14364640883978%;*margin-left:54.037263430116376%;} .row-fluid .offset6:first-child{margin-left:51.38121546961326%;*margin-left:51.27483249088986%;} .row-fluid .offset5{margin-left:45.58011049723757%;*margin-left:45.47372751851417%;} .row-fluid .offset5:first-child{margin-left:42.81767955801105%;*margin-left:42.71129657928765%;} .row-fluid .offset4{margin-left:37.01657458563536%;*margin-left:36.91019160691196%;} .row-fluid .offset4:first-child{margin-left:34.25414364640884%;*margin-left:34.14776066768544%;} .row-fluid .offset3{margin-left:28.45303867403315%;*margin-left:28.346655695309746%;} .row-fluid .offset3:first-child{margin-left:25.69060773480663%;*margin-left:25.584224756083227%;} .row-fluid .offset2{margin-left:19.88950276243094%;*margin-left:19.783119783707537%;} .row-fluid .offset2:first-child{margin-left:17.12707182320442%;*margin-left:17.02068884448102%;} .row-fluid .offset1{margin-left:11.32596685082873%;*margin-left:11.219583872105325%;} .row-fluid .offset1:first-child{margin-left:8.56353591160221%;*margin-left:8.457152932878806%;} input,textarea,.uneditable-input{margin-left:0;} .controls-row [class*="span"]+[class*="span"]{margin-left:20px;} input.span12,textarea.span12,.uneditable-input.span12{width:710px;} input.span11,textarea.span11,.uneditable-input.span11{width:648px;} input.span10,textarea.span10,.uneditable-input.span10{width:586px;} input.span9,textarea.span9,.uneditable-input.span9{width:524px;} input.span8,textarea.span8,.uneditable-input.span8{width:462px;} input.span7,textarea.span7,.uneditable-input.span7{width:400px;} input.span6,textarea.span6,.uneditable-input.span6{width:338px;} input.span5,textarea.span5,.uneditable-input.span5{width:276px;} input.span4,textarea.span4,.uneditable-input.span4{width:214px;} input.span3,textarea.span3,.uneditable-input.span3{width:152px;} input.span2,textarea.span2,.uneditable-input.span2{width:90px;} input.span1,textarea.span1,.uneditable-input.span1{width:28px;}}@media (min-width:1200px){.row{margin-left:-30px;*zoom:1;}.row:before,.row:after{display:table;content:"";line-height:0;} .row:after{clear:both;} [class*="span"]{float:left;min-height:1px;margin-left:30px;} .container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:1170px;} .span12{width:1170px;} .span11{width:1070px;} .span10{width:970px;} .span9{width:870px;} .span8{width:770px;} .span7{width:670px;} .span6{width:570px;} .span5{width:470px;} .span4{width:370px;} .span3{width:270px;} .span2{width:170px;} .span1{width:70px;} .offset12{margin-left:1230px;} .offset11{margin-left:1130px;} .offset10{margin-left:1030px;} .offset9{margin-left:930px;} .offset8{margin-left:830px;} .offset7{margin-left:730px;} .offset6{margin-left:630px;} .offset5{margin-left:530px;} .offset4{margin-left:430px;} .offset3{margin-left:330px;} .offset2{margin-left:230px;} .offset1{margin-left:130px;} .row-fluid{width:100%;*zoom:1;}.row-fluid:before,.row-fluid:after{display:table;content:"";line-height:0;} .row-fluid:after{clear:both;} .row-fluid [class*="span"]{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;float:left;margin-left:2.564102564102564%;*margin-left:2.5109110747408616%;} .row-fluid [class*="span"]:first-child{margin-left:0;} .row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.564102564102564%;} .row-fluid .span12{width:100%;*width:99.94680851063829%;} .row-fluid .span11{width:91.45299145299145%;*width:91.39979996362975%;} .row-fluid .span10{width:82.90598290598291%;*width:82.8527914166212%;} .row-fluid .span9{width:74.35897435897436%;*width:74.30578286961266%;} .row-fluid .span8{width:65.81196581196582%;*width:65.75877432260411%;} .row-fluid .span7{width:57.26495726495726%;*width:57.21176577559556%;} .row-fluid .span6{width:48.717948717948715%;*width:48.664757228587014%;} .row-fluid .span5{width:40.17094017094017%;*width:40.11774868157847%;} .row-fluid .span4{width:31.623931623931625%;*width:31.570740134569924%;} .row-fluid .span3{width:23.076923076923077%;*width:23.023731587561375%;} .row-fluid .span2{width:14.52991452991453%;*width:14.476723040552828%;} .row-fluid .span1{width:5.982905982905983%;*width:5.929714493544281%;} .row-fluid .offset12{margin-left:105.12820512820512%;*margin-left:105.02182214948171%;} .row-fluid .offset12:first-child{margin-left:102.56410256410257%;*margin-left:102.45771958537915%;} .row-fluid .offset11{margin-left:96.58119658119658%;*margin-left:96.47481360247316%;} .row-fluid .offset11:first-child{margin-left:94.01709401709402%;*margin-left:93.91071103837061%;} .row-fluid .offset10{margin-left:88.03418803418803%;*margin-left:87.92780505546462%;} .row-fluid .offset10:first-child{margin-left:85.47008547008548%;*margin-left:85.36370249136206%;} .row-fluid .offset9{margin-left:79.48717948717949%;*margin-left:79.38079650845607%;} .row-fluid .offset9:first-child{margin-left:76.92307692307693%;*margin-left:76.81669394435352%;} .row-fluid .offset8{margin-left:70.94017094017094%;*margin-left:70.83378796144753%;} .row-fluid .offset8:first-child{margin-left:68.37606837606839%;*margin-left:68.26968539734497%;} .row-fluid .offset7{margin-left:62.393162393162385%;*margin-left:62.28677941443899%;} .row-fluid .offset7:first-child{margin-left:59.82905982905982%;*margin-left:59.72267685033642%;} .row-fluid .offset6{margin-left:53.84615384615384%;*margin-left:53.739770867430444%;} .row-fluid .offset6:first-child{margin-left:51.28205128205128%;*margin-left:51.175668303327875%;} .row-fluid .offset5{margin-left:45.299145299145295%;*margin-left:45.1927623204219%;} .row-fluid .offset5:first-child{margin-left:42.73504273504273%;*margin-left:42.62865975631933%;} .row-fluid .offset4{margin-left:36.75213675213675%;*margin-left:36.645753773413354%;} .row-fluid .offset4:first-child{margin-left:34.18803418803419%;*margin-left:34.081651209310785%;} .row-fluid .offset3{margin-left:28.205128205128204%;*margin-left:28.0987452264048%;} .row-fluid .offset3:first-child{margin-left:25.641025641025642%;*margin-left:25.53464266230224%;} .row-fluid .offset2{margin-left:19.65811965811966%;*margin-left:19.551736679396257%;} .row-fluid .offset2:first-child{margin-left:17.094017094017094%;*margin-left:16.98763411529369%;} .row-fluid .offset1{margin-left:11.11111111111111%;*margin-left:11.004728132387708%;} .row-fluid .offset1:first-child{margin-left:8.547008547008547%;*margin-left:8.440625568285142%;} input,textarea,.uneditable-input{margin-left:0;} .controls-row [class*="span"]+[class*="span"]{margin-left:30px;} input.span12,textarea.span12,.uneditable-input.span12{width:1156px;} input.span11,textarea.span11,.uneditable-input.span11{width:1056px;} input.span10,textarea.span10,.uneditable-input.span10{width:956px;} input.span9,textarea.span9,.uneditable-input.span9{width:856px;} input.span8,textarea.span8,.uneditable-input.span8{width:756px;} input.span7,textarea.span7,.uneditable-input.span7{width:656px;} input.span6,textarea.span6,.uneditable-input.span6{width:556px;} input.span5,textarea.span5,.uneditable-input.span5{width:456px;} input.span4,textarea.span4,.uneditable-input.span4{width:356px;} input.span3,textarea.span3,.uneditable-input.span3{width:256px;} input.span2,textarea.span2,.uneditable-input.span2{width:156px;} input.span1,textarea.span1,.uneditable-input.span1{width:56px;} .thumbnails{margin-left:-30px;} .thumbnails>li{margin-left:30px;} .row-fluid .thumbnails{margin-left:0;}}@media (max-width:979px){body{padding-top:0;} .navbar-fixed-top,.navbar-fixed-bottom{position:static;} .navbar-fixed-top{margin-bottom:20px;} .navbar-fixed-bottom{margin-top:20px;} .navbar-fixed-top .navbar-inner,.navbar-fixed-bottom .navbar-inner{padding:5px;} .navbar .container{width:auto;padding:0;} .navbar .brand{padding-left:10px;padding-right:10px;margin:0 0 0 -5px;} .nav-collapse{clear:both;} .nav-collapse .nav{float:none;margin:0 0 10px;} .nav-collapse .nav>li{float:none;} .nav-collapse .nav>li>a{margin-bottom:2px;} .nav-collapse .nav>.divider-vertical{display:none;} .nav-collapse .nav .nav-header{color:#777777;text-shadow:none;} .nav-collapse .nav>li>a,.nav-collapse .dropdown-menu a{padding:9px 15px;font-weight:bold;color:#777777;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} .nav-collapse .btn{padding:4px 10px 4px;font-weight:normal;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} .nav-collapse .dropdown-menu li+li a{margin-bottom:2px;} .nav-collapse .nav>li>a:hover,.nav-collapse .nav>li>a:focus,.nav-collapse .dropdown-menu a:hover,.nav-collapse .dropdown-menu a:focus{background-color:#f2f2f2;} .navbar-inverse .nav-collapse .nav>li>a,.navbar-inverse .nav-collapse .dropdown-menu a{color:#999999;} .navbar-inverse .nav-collapse .nav>li>a:hover,.navbar-inverse .nav-collapse .nav>li>a:focus,.navbar-inverse .nav-collapse .dropdown-menu a:hover,.navbar-inverse .nav-collapse .dropdown-menu a:focus{background-color:#111111;} .nav-collapse.in .btn-group{margin-top:5px;padding:0;} .nav-collapse .dropdown-menu{position:static;top:auto;left:auto;float:none;display:none;max-width:none;margin:0 15px;padding:0;background-color:transparent;border:none;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;} .nav-collapse .open>.dropdown-menu{display:block;} .nav-collapse .dropdown-menu:before,.nav-collapse .dropdown-menu:after{display:none;} .nav-collapse .dropdown-menu .divider{display:none;} .nav-collapse .nav>li>.dropdown-menu:before,.nav-collapse .nav>li>.dropdown-menu:after{display:none;} .nav-collapse .navbar-form,.nav-collapse .navbar-search{float:none;padding:10px 15px;margin:10px 0;border-top:1px solid #f2f2f2;border-bottom:1px solid #f2f2f2;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.1);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.1);} .navbar-inverse .nav-collapse .navbar-form,.navbar-inverse .nav-collapse .navbar-search{border-top-color:#111111;border-bottom-color:#111111;} .navbar .nav-collapse .nav.pull-right{float:none;margin-left:0;} .nav-collapse,.nav-collapse.collapse{overflow:hidden;height:0;} .navbar .btn-navbar{display:block;} .navbar-static .navbar-inner{padding-left:10px;padding-right:10px;}}@media (min-width:980px){.nav-collapse.collapse{height:auto !important;overflow:visible !important;}} diff --git a/test/test_blob.rb b/test/test_blob.rb index d79fe64b..dd78311d 100644 --- a/test/test_blob.rb +++ b/test/test_blob.rb @@ -190,6 +190,10 @@ class TestBlob < Test::Unit::TestCase assert blob("JavaScript/intro.js").generated? assert blob("JavaScript/classes.js").generated? + # Minified CSS + assert !blob("CSS/bootstrap.css").generated? + assert blob("CSS/bootstrap.min.css").generated? + # Cython-generated C/C++ assert blob("C/sgd_fast.c").generated? assert blob("C++/wrapper_inner.cpp").generated? From ec786b73bc0ad1b050e465439f9c551e0a2df372 Mon Sep 17 00:00:00 2001 From: "Stuart P. Bentley" Date: Sat, 16 Mar 2013 13:51:08 -0700 Subject: [PATCH 008/184] Add Erlang rebar escript bundles to vendor.yml Fixes #236 --- lib/linguist/vendor.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/linguist/vendor.yml b/lib/linguist/vendor.yml index 7adaeefb..3f8b3f81 100644 --- a/lib/linguist/vendor.yml +++ b/lib/linguist/vendor.yml @@ -24,6 +24,9 @@ # Node dependencies - node_modules/ +# Erlang bundles +- ^rebar$ + # Vendored dependencies - vendor/ From 7efad571767daa39b48993f070512c6c6127db2d Mon Sep 17 00:00:00 2001 From: Giacomand Date: Mon, 25 Mar 2013 09:49:00 +0000 Subject: [PATCH 009/184] Added: * DM (Dream Maker) language. * Sample DM file. The DM language is used in an engine known as BYOND which allows users to easily create their own games in a language that is designed to be accessible for newcomers. I do not know how much a language has to be used on the site to be considered but searching for "BYOND" does show a lot of people using the language. I am also still learning git so if I have missed something then please let me know. --- lib/linguist/languages.yml | 8 ++++ samples/DM/example.dm | 79 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 87 insertions(+) create mode 100644 samples/DM/example.dm diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 68b3c04c..17dc3973 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -343,6 +343,14 @@ DCPU-16 ASM: Diff: primary_extension: .diff + +DM: + type: programming + color: "#075ff1" + primary_extension: .dm + aliases: + - byond + Dylan: type: programming diff --git a/samples/DM/example.dm b/samples/DM/example.dm new file mode 100644 index 00000000..fa39836f --- /dev/null +++ b/samples/DM/example.dm @@ -0,0 +1,79 @@ +// This is a single line comment. +/* + This is a multi-line comment +*/ + +// Pre-processor keywords + +#define PI 3.1415 + +#if PI == 4 +DoStuff() +#elif PI == 3 +DoOtherStuff() +#else +DoNothing() +#endif + + +var/GlobalCounter = 0 +var/const/CONST_VARIABLE = 2 +var/list/MyList = list("anything", 1, new /datum/entity) +var/list/EmptyList[99] // creates a list of 99 null entries +var/list/NullList = null + +/* + Entity Class +*/ + +/datum/entity + var/name = "Entity" + var/number = 0 + +/datum/entity/proc/myFunction() + world.log << "Entity has called myFunction" + +/datum/entity/New() + number = GlobalCounter++ + +/* + Unit Class, Extends from Entity +*/ + +/datum/entity/unit + name = "Unit" + +/datum/entity/unit/New() + ..() // calls the parent's proc; equal to super() and base() in other languages + number = rand(1, 99) + +/datum/entity/unit/myFunction() + world.log << "Unit has overriden and called myFunction" + +// Global Function +/proc/ReverseList(var/list/input) + var/list/output = list() + for(var/i = input.len; i >= 1; i--) // IMPORTANT: List Arrays count from 1. + output += input[i] // "+= x" is ".Add(x)" + return output + +// Bitflags +/proc/DoStuff() + var/bitflag = 0 + bitflag |= 8 + return bitflag + +/proc/DoOtherStuff() + var/bitflag = 65535 // 16 bits is the maximum amount + bitflag &= ~8 + return bitflag + +// Logic +/proc/DoNothing() + var/pi = PI + if(pi == 4) + world.log << "PI is 4" + else if(pi == CONST_VARIABLE) + world.log << "PI is [CONST_VARIABLE]!" + else + world.log << "PI is approximety [pi]" From d4312c05bfbdfa12c81fa33ab5bdb21c610fbb1f Mon Sep 17 00:00:00 2001 From: Giacomand Date: Mon, 25 Mar 2013 09:54:23 +0000 Subject: [PATCH 010/184] - Updated sample file. --- samples/DM/example.dm | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/samples/DM/example.dm b/samples/DM/example.dm index fa39836f..b8f1fad4 100644 --- a/samples/DM/example.dm +++ b/samples/DM/example.dm @@ -8,11 +8,17 @@ #define PI 3.1415 #if PI == 4 -DoStuff() + +#define G 5 + #elif PI == 3 -DoOtherStuff() + +#define I 6 + #else -DoNothing() + +#define K 7 + #endif @@ -77,3 +83,5 @@ var/list/NullList = null world.log << "PI is [CONST_VARIABLE]!" else world.log << "PI is approximety [pi]" + +#undef PI // Undefine PI \ No newline at end of file From d5c3978a6edbc1d72f83f23964133e40149e6b13 Mon Sep 17 00:00:00 2001 From: Giacomand Date: Mon, 25 Mar 2013 10:13:38 +0000 Subject: [PATCH 011/184] * Fixed a mis-formating. --- lib/linguist/languages.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 17dc3973..e57eb942 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -351,7 +351,6 @@ DM: aliases: - byond - Dylan: type: programming color: "#3ebc27" From 465d60ba86e8a1393b843a9b2cddbcd5f322419c Mon Sep 17 00:00:00 2001 From: Giacomand Date: Mon, 25 Mar 2013 16:07:19 +0000 Subject: [PATCH 012/184] * Missed setting the lexer to Text Only. --- lib/linguist/languages.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index e57eb942..2037a56c 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -347,6 +347,7 @@ Diff: DM: type: programming color: "#075ff1" + lexer: Text only primary_extension: .dm aliases: - byond From e26bf5a0d2529fab60b40b025d91e5846893fc83 Mon Sep 17 00:00:00 2001 From: Giacomand Date: Mon, 25 Mar 2013 16:14:06 +0000 Subject: [PATCH 013/184] - Moving diff to after DM. --- lib/linguist/languages.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 2037a56c..4e25f7b9 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -340,9 +340,6 @@ DCPU-16 ASM: - .dasm aliases: - dasm16 - -Diff: - primary_extension: .diff DM: type: programming @@ -352,6 +349,9 @@ DM: aliases: - byond +Diff: + primary_extension: .diff + Dylan: type: programming color: "#3ebc27" From e408b5fbaa2e6cfc4f7b5cb254e31fc65f4db6e8 Mon Sep 17 00:00:00 2001 From: Giacomand Date: Mon, 25 Mar 2013 16:26:14 +0000 Subject: [PATCH 014/184] * Trying this. --- lib/linguist/languages.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 4e25f7b9..274c21c2 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -304,6 +304,14 @@ D-ObjDump: type: data lexer: d-objdump primary_extension: .d-objdump + +DM: + type: programming + color: "#075ff1" + lexer: Text only + primary_extension: .dm + aliases: + - byond DOT: type: programming @@ -341,14 +349,6 @@ DCPU-16 ASM: aliases: - dasm16 -DM: - type: programming - color: "#075ff1" - lexer: Text only - primary_extension: .dm - aliases: - - byond - Diff: primary_extension: .diff From 5b06a46451d536e82e1f825f7c7d266a3b2aaa95 Mon Sep 17 00:00:00 2001 From: "Pointwise, Inc." Date: Thu, 18 Apr 2013 16:11:50 -0500 Subject: [PATCH 015/184] Added Glyph scripting language --- lib/linguist/languages.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 79a1d517..c5d39a0f 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -488,6 +488,11 @@ Gettext Catalog: extensions: - .pot +Glyph: + type: programming + color: "#e4cc98" + primary_extension: .glf + Go: type: programming color: "#8d04eb" From 3b79cf3cf26f8e978c2979e6c8c6157cf0bc7e4c Mon Sep 17 00:00:00 2001 From: "Pointwise, Inc." Date: Wed, 24 Apr 2013 11:30:00 -0500 Subject: [PATCH 016/184] Add lexer --- lib/linguist/languages.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index c5d39a0f..bb62beb3 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -491,6 +491,7 @@ Gettext Catalog: Glyph: type: programming color: "#e4cc98" + lexer: Tcl primary_extension: .glf Go: From 30aa3fd5d6b5abae75d45eacd45ff4a1d9452c75 Mon Sep 17 00:00:00 2001 From: Adam Ferguson Date: Thu, 16 May 2013 10:26:01 -0400 Subject: [PATCH 017/184] Add Jade and Scaml --- lib/linguist/languages.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 6b52b301..635816c3 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -630,6 +630,11 @@ JSON: searchable: false primary_extension: .json +Jade: + group: HTML + type: markup + primary_extension: .jade + Java: type: programming ace_mode: java @@ -1169,6 +1174,11 @@ Scala: color: "#7dd3b0" primary_extension: .scala +Scaml: + group: HTML + type: markup + primary_extension: .scaml + Scheme: type: programming color: "#1e4aec" From 89bc82d9df5e09f057f4bc341d0f0c0e2a3548ae Mon Sep 17 00:00:00 2001 From: Adam Ferguson Date: Thu, 16 May 2013 13:21:58 -0400 Subject: [PATCH 018/184] Add samples for Jade and Scaml --- samples/Jade/hello.jade | 3 +++ samples/Scaml/hello.scaml | 3 +++ 2 files changed, 6 insertions(+) create mode 100644 samples/Jade/hello.jade create mode 100644 samples/Scaml/hello.scaml diff --git a/samples/Jade/hello.jade b/samples/Jade/hello.jade new file mode 100644 index 00000000..32c72739 --- /dev/null +++ b/samples/Jade/hello.jade @@ -0,0 +1,3 @@ +p. + Hello, + World! diff --git a/samples/Scaml/hello.scaml b/samples/Scaml/hello.scaml new file mode 100644 index 00000000..accbf543 --- /dev/null +++ b/samples/Scaml/hello.scaml @@ -0,0 +1,3 @@ +%p + Hello, + World! From 407c40f7d3101b650c8e731509cd049d31f9fcb8 Mon Sep 17 00:00:00 2001 From: Mark Otaris Date: Thu, 23 May 2013 19:34:04 -0300 Subject: [PATCH 019/184] Add '.rbxs' extension for Lua files --- lib/linguist/languages.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 6f234aad..a3bde5c7 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -752,6 +752,7 @@ Lua: primary_extension: .lua extensions: - .nse + - .rbxs M: type: programming From 420594874a7716aee9f2a24d74a7d98acdad72e0 Mon Sep 17 00:00:00 2001 From: Michael Mullis Date: Thu, 30 May 2013 01:17:07 +0000 Subject: [PATCH 020/184] add COBOL language support --- lib/linguist/languages.yml | 9 +++++++++ samples/COBOL/hello_world.cbl | 5 +++++ samples/COBOL/hello_world.ccp | 6 ++++++ samples/COBOL/hello_world.cob | 6 ++++++ samples/COBOL/simple.cpy | 7 +++++++ 5 files changed, 33 insertions(+) create mode 100644 samples/COBOL/hello_world.cbl create mode 100644 samples/COBOL/hello_world.ccp create mode 100644 samples/COBOL/hello_world.cob create mode 100644 samples/COBOL/simple.cpy diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index c61ebd72..461770e0 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -235,6 +235,15 @@ Clojure: filenames: - riemann.config +COBOL: + type: programming + primary_extension: .cob + extensions: + - .cbl + - .cpy + - .cobol + - .ccp + CoffeeScript: type: programming ace_mode: coffee diff --git a/samples/COBOL/hello_world.cbl b/samples/COBOL/hello_world.cbl new file mode 100644 index 00000000..07387bde --- /dev/null +++ b/samples/COBOL/hello_world.cbl @@ -0,0 +1,5 @@ + program-id. hello. + procedure division. + display "Hello, World!". + stop run. + diff --git a/samples/COBOL/hello_world.ccp b/samples/COBOL/hello_world.ccp new file mode 100644 index 00000000..a1efc10b --- /dev/null +++ b/samples/COBOL/hello_world.ccp @@ -0,0 +1,6 @@ + IDENTIFICATION DIVISION. + PROGRAM-ID. hello. + PROCEDURE DIVISION. + DISPLAY "Hello World, yet again.". + STOP RUN. + diff --git a/samples/COBOL/hello_world.cob b/samples/COBOL/hello_world.cob new file mode 100644 index 00000000..da734fa6 --- /dev/null +++ b/samples/COBOL/hello_world.cob @@ -0,0 +1,6 @@ + IDENTIFICATION DIVISION. + PROGRAM-ID. hello. + PROCEDURE DIVISION. + DISPLAY "Hello World!". + STOP RUN. + diff --git a/samples/COBOL/simple.cpy b/samples/COBOL/simple.cpy new file mode 100644 index 00000000..d82c2305 --- /dev/null +++ b/samples/COBOL/simple.cpy @@ -0,0 +1,7 @@ +01 COBOL-TEST-RECORD. + 05 COBOL-TEST-USAGES. + 10 COBOL-4-COMP PIC S9(4) COMP. + 10 COBOL-8-COMP PIC S9(8) COMP. + 10 COBOL-9-COMP PIC S9(9) COMP. + 10 COBOL-4-COMP2 PIC S9(4) COMP-2. + 10 COBOL-7-COMP2 PIC 9(7) COMP-2. From c6d38ab647a3b3e876b02598a9af1d21b55c9470 Mon Sep 17 00:00:00 2001 From: Michael Mullis Date: Thu, 30 May 2013 01:29:36 +0000 Subject: [PATCH 021/184] COBOL comes before Clojure and extensions must be sorted --- lib/linguist/languages.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 461770e0..eba8df5b 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -225,6 +225,15 @@ ChucK: lexer: Java primary_extension: .ck +COBOL: + type: programming + primary_extension: .cob + extensions: + - .cbl + - .ccp + - .cobol + - .cpy + Clojure: type: programming ace_mode: clojure @@ -235,15 +244,6 @@ Clojure: filenames: - riemann.config -COBOL: - type: programming - primary_extension: .cob - extensions: - - .cbl - - .cpy - - .cobol - - .ccp - CoffeeScript: type: programming ace_mode: coffee From f2b80a239fea35eea68850afdc6476a557a19863 Mon Sep 17 00:00:00 2001 From: Michael Mullis Date: Thu, 30 May 2013 01:33:04 +0000 Subject: [PATCH 022/184] COBOL: move up in the sort order --- lib/linguist/languages.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index eba8df5b..44af424c 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -212,6 +212,15 @@ CMake: filenames: - CMakeLists.txt +COBOL: + type: programming + primary_extension: .cob + extensions: + - .cbl + - .ccp + - .cobol + - .cpy + CSS: ace_mode: css primary_extension: .css @@ -225,15 +234,6 @@ ChucK: lexer: Java primary_extension: .ck -COBOL: - type: programming - primary_extension: .cob - extensions: - - .cbl - - .ccp - - .cobol - - .cpy - Clojure: type: programming ace_mode: clojure From 9822b153eb0287da340532bbae749b1863021a71 Mon Sep 17 00:00:00 2001 From: Joshua Peek Date: Mon, 10 Jun 2013 10:36:56 -0500 Subject: [PATCH 023/184] ws --- lib/linguist/classifier.rb | 64 +++++++++++++++++++------------------- 1 file changed, 32 insertions(+), 32 deletions(-) diff --git a/lib/linguist/classifier.rb b/lib/linguist/classifier.rb index 85811791..09efce03 100644 --- a/lib/linguist/classifier.rb +++ b/lib/linguist/classifier.rb @@ -130,38 +130,38 @@ module Linguist Math.log(@languages[language].to_f / @languages_total.to_f) end -private - def verbosity - @verbosity ||= (ENV['LINGUIST_DEBUG']||0).to_i - end + private + def verbosity + @verbosity ||= (ENV['LINGUIST_DEBUG']||0).to_i + end - # Internal: show a table of probabilities for each pair. - # - # The number in each table entry is the number of "points" that each - # token contributes toward the belief that the file under test is a - # particular language. Points are additive. - # - # Points are the number of times a token appears in the file, times - # how much more likely (log of probability ratio) that token is to - # appear in one language vs. the least-likely language. Dashes - # indicate the least-likely language (and zero points) for each token. - def dump_all_tokens(tokens, languages) - maxlen = tokens.map{|tok| tok.size}.max - printf "%#{maxlen}s", "" - puts " #" + languages.map{|lang| sprintf("%10s", lang)}.join - tokmap = Hash.new(0) - tokens.each{|tok| tokmap[tok] += 1} - tokmap.sort.each{|tok, count| - arr = languages.map{|lang| [lang, token_probability(tok, lang)] } - min = arr.map{|a,b| b}.min - minlog = Math.log(min) - if !arr.inject(true) {|result, n| result && n[1] == arr[0][1]} # if not all the same - printf "%#{maxlen}s%5d", tok, count - puts arr.map{|ent| - ent[1] == min ? " -" : sprintf("%10.3f", count*(Math.log(ent[1])-minlog)) - }.join - end - } - end + # Internal: show a table of probabilities for each pair. + # + # The number in each table entry is the number of "points" that each + # token contributes toward the belief that the file under test is a + # particular language. Points are additive. + # + # Points are the number of times a token appears in the file, times + # how much more likely (log of probability ratio) that token is to + # appear in one language vs. the least-likely language. Dashes + # indicate the least-likely language (and zero points) for each token. + def dump_all_tokens(tokens, languages) + maxlen = tokens.map{|tok| tok.size}.max + printf "%#{maxlen}s", "" + puts " #" + languages.map{|lang| sprintf("%10s", lang)}.join + tokmap = Hash.new(0) + tokens.each{|tok| tokmap[tok] += 1} + tokmap.sort.each{|tok, count| + arr = languages.map{|lang| [lang, token_probability(tok, lang)] } + min = arr.map{|a,b| b}.min + minlog = Math.log(min) + if !arr.inject(true) {|result, n| result && n[1] == arr[0][1]} # if not all the same + printf "%#{maxlen}s%5d", tok, count + puts arr.map{|ent| + ent[1] == min ? " -" : sprintf("%10.3f", count*(Math.log(ent[1])-minlog)) + }.join + end + } + end end end From 490afdddd1ded101860a8a9857a16f206bffc881 Mon Sep 17 00:00:00 2001 From: Joshua Peek Date: Mon, 10 Jun 2013 10:37:55 -0500 Subject: [PATCH 024/184] some air --- lib/linguist/classifier.rb | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/lib/linguist/classifier.rb b/lib/linguist/classifier.rb index 09efce03..f9ba6e8a 100644 --- a/lib/linguist/classifier.rb +++ b/lib/linguist/classifier.rb @@ -132,7 +132,7 @@ module Linguist private def verbosity - @verbosity ||= (ENV['LINGUIST_DEBUG']||0).to_i + @verbosity ||= (ENV['LINGUIST_DEBUG'] || 0).to_i end # Internal: show a table of probabilities for each pair. @@ -146,19 +146,19 @@ module Linguist # appear in one language vs. the least-likely language. Dashes # indicate the least-likely language (and zero points) for each token. def dump_all_tokens(tokens, languages) - maxlen = tokens.map{|tok| tok.size}.max + maxlen = tokens.map { |tok| tok.size }.max printf "%#{maxlen}s", "" - puts " #" + languages.map{|lang| sprintf("%10s", lang)}.join + puts " #" + languages.map { |lang| sprintf("%10s", lang) }.join tokmap = Hash.new(0) - tokens.each{|tok| tokmap[tok] += 1} - tokmap.sort.each{|tok, count| - arr = languages.map{|lang| [lang, token_probability(tok, lang)] } - min = arr.map{|a,b| b}.min + tokens.each { |tok| tokmap[tok] += 1 } + tokmap.sort.each { |tok, count| + arr = languages.map { |lang| [lang, token_probability(tok, lang)] } + min = arr.map { |a,b| b }.min minlog = Math.log(min) - if !arr.inject(true) {|result, n| result && n[1] == arr[0][1]} # if not all the same + if !arr.inject(true) { |result, n| result && n[1] == arr[0][1] } printf "%#{maxlen}s%5d", tok, count - puts arr.map{|ent| - ent[1] == min ? " -" : sprintf("%10.3f", count*(Math.log(ent[1])-minlog)) + puts arr.map { |ent| + ent[1] == min ? " -" : sprintf("%10.3f", count * (Math.log(ent[1]) - minlog)) }.join end } From 1a53d1973a44ac2e88f11600f86f514dea508cd3 Mon Sep 17 00:00:00 2001 From: Joshua Peek Date: Mon, 10 Jun 2013 10:39:59 -0500 Subject: [PATCH 025/184] ws --- lib/linguist/blob_helper.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/linguist/blob_helper.rb b/lib/linguist/blob_helper.rb index 47031a49..933604b2 100644 --- a/lib/linguist/blob_helper.rb +++ b/lib/linguist/blob_helper.rb @@ -70,7 +70,7 @@ module Linguist # # Return true or false def likely_binary? - binary_mime_type? and not Language.find_by_filename(name) + binary_mime_type? && !Language.find_by_filename(name) end # Public: Get the Content-Type header value From b1a137135e0f820e43d33fc84e13e1202625b486 Mon Sep 17 00:00:00 2001 From: Joshua Peek Date: Mon, 10 Jun 2013 10:58:33 -0500 Subject: [PATCH 026/184] Axe colorize_without_wrapper --- lib/linguist/blob_helper.rb | 14 -------------- test/test_blob.rb | 7 ------- 2 files changed, 21 deletions(-) diff --git a/lib/linguist/blob_helper.rb b/lib/linguist/blob_helper.rb index 933604b2..b538a11f 100644 --- a/lib/linguist/blob_helper.rb +++ b/lib/linguist/blob_helper.rb @@ -343,19 +343,5 @@ module Linguist options[:options][:encoding] ||= encoding lexer.highlight(data, options) end - - # Public: Highlight syntax of blob without the outer highlight div - # wrapper. - # - # options - A Hash of options (defaults to {}) - # - # Returns html String - def colorize_without_wrapper(options = {}) - if text = colorize(options) - text[%r{
(.*?)
\s*
}m, 1] - else - '' - end - end end end diff --git a/test/test_blob.rb b/test/test_blob.rb index 56d9e6f2..74a247d0 100644 --- a/test/test_blob.rb +++ b/test/test_blob.rb @@ -321,13 +321,6 @@ class TestBlob < Test::Unit::TestCase HTML end - def test_colorize_without_wrapper - assert_equal <<-HTML, blob("Ruby/foo.rb").colorize_without_wrapper -module Foo -end - HTML - end - def test_colorize_does_skip_minified_files assert_nil blob("JavaScript/jquery-1.6.1.min.js").colorize end From 032125b11438ba3d829068fe9a5ccc4a39d7792d Mon Sep 17 00:00:00 2001 From: Joshua Peek Date: Mon, 10 Jun 2013 11:06:18 -0500 Subject: [PATCH 027/184] Axe indexable? --- lib/linguist/blob_helper.rb | 30 ------------------------------ test/test_blob.rb | 14 -------------- 2 files changed, 44 deletions(-) diff --git a/lib/linguist/blob_helper.rb b/lib/linguist/blob_helper.rb index b538a11f..2d6b9ed0 100644 --- a/lib/linguist/blob_helper.rb +++ b/lib/linguist/blob_helper.rb @@ -278,36 +278,6 @@ module Linguist @_generated ||= Generated.generated?(name, lambda { data }) end - # Public: Should the blob be indexed for searching? - # - # Excluded: - # - Files over 0.1MB - # - Non-text files - # - Languages marked as not searchable - # - Generated source files - # - # Please add additional test coverage to - # `test/test_blob.rb#test_indexable` if you make any changes. - # - # Return true or false - def indexable? - if size > 100 * 1024 - false - elsif binary? - false - elsif extname == '.txt' - true - elsif language.nil? - false - elsif !language.searchable? - false - elsif generated? - false - else - true - end - end - # Public: Detects the Language of the blob. # # May load Blob#data diff --git a/test/test_blob.rb b/test/test_blob.rb index 74a247d0..fa96db5d 100644 --- a/test/test_blob.rb +++ b/test/test_blob.rb @@ -287,20 +287,6 @@ class TestBlob < Test::Unit::TestCase assert blob("Test/fixtures/random.rkt").vendored? end - def test_indexable - assert blob("Ruby/foo.rb").indexable? - assert !blob("Text/defu.nkt").indexable? - assert !blob("Text/dump.sql").indexable? - assert !blob("Binary/github.po").indexable? - assert !blob("Binary/linguist.gem").indexable? - - # large binary blobs should fail on size check first, not call - # into charlock_holmes and alloc big buffers for testing encoding - b = blob("Binary/octocat.ai") - b.expects(:binary?).never - assert !b.indexable? - end - def test_language Samples.each do |sample| blob = blob(sample[:path]) From 84dc918729d7b9477fe1573b073071b8d96c37ca Mon Sep 17 00:00:00 2001 From: Joshua Peek Date: Mon, 10 Jun 2013 11:08:49 -0500 Subject: [PATCH 028/184] Linguist 2.7.0 --- github-linguist.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/github-linguist.gemspec b/github-linguist.gemspec index 22cf066d..f69a47c0 100644 --- a/github-linguist.gemspec +++ b/github-linguist.gemspec @@ -1,6 +1,6 @@ Gem::Specification.new do |s| s.name = 'github-linguist' - s.version = '2.6.9' + s.version = '2.7.0' s.summary = "GitHub Language detection" s.authors = "GitHub" From 42050c4d129144c28c80a25c424a9dea221c9415 Mon Sep 17 00:00:00 2001 From: Andrew Kumanyaev Date: Mon, 17 Jun 2013 21:48:39 +0400 Subject: [PATCH 029/184] Update languages.yml Added .podsl extension for Common Lisp language --- lib/linguist/languages.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index adfce612..17f4333f 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -271,6 +271,7 @@ Common Lisp: extensions: - .asd - .lsp + - .podsl - .ny Coq: From 96473849e05c95059f0b35f56034c7bf464a7e45 Mon Sep 17 00:00:00 2001 From: "\"Jason Scheirer\"" Date: Mon, 17 Jun 2013 17:30:10 -0700 Subject: [PATCH 030/184] Add .pyt as an extension for Python --- lib/linguist/languages.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index adfce612..37281660 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -1047,6 +1047,7 @@ Python: - .pyw - .wsgi - .xpy + - .pyt filenames: - wscript From ef6abed81a965db7bf25857837fd11fa2a1f1ec3 Mon Sep 17 00:00:00 2001 From: Jason Scheirer Date: Mon, 17 Jun 2013 22:11:16 -0600 Subject: [PATCH 031/184] Languages.yml entries must be in alphabetical order --- lib/linguist/languages.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 37281660..97ffd5f3 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -1044,10 +1044,10 @@ Python: primary_extension: .py extensions: - .gyp + - .pyt - .pyw - .wsgi - .xpy - - .pyt filenames: - wscript From c1469b25a1646e63c4b1459545e2eaa72e1fb2a2 Mon Sep 17 00:00:00 2001 From: Haralan Dobrev Date: Tue, 18 Jun 2013 17:02:34 +0300 Subject: [PATCH 032/184] Added .tmTheme as XML extension Files with the `.tmTheme` extension similar to `.tmCommand`, `.tmLanguage`, `.tmPreferences` and `.tmSnippet` are configuration XML files for TextMate or SublimeText. The `.tmTheme` extension was missing from this list. --- lib/linguist/languages.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index adfce612..2d0b3a56 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -1373,6 +1373,7 @@ XML: - .tmLanguage - .tmPreferences - .tmSnippet + - .tmTheme - .tml - .ui - .vxml From 10ec56e66771e5a459d954c444eca0365a5c384a Mon Sep 17 00:00:00 2001 From: alisdair sullivan Date: Thu, 20 Jun 2013 14:48:51 -0700 Subject: [PATCH 033/184] change css color representing erlang to slightly less horrendous color --- lib/linguist/languages.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 5526dd85..697d94f7 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -399,7 +399,7 @@ Emacs Lisp: Erlang: type: programming - color: "#949e0e" + color: "#0faf8d" primary_extension: .erl extensions: - .hrl From 479871f0191fe6871e047eb0049237016465ffa4 Mon Sep 17 00:00:00 2001 From: Duncan McGreggor Date: Fri, 21 Jun 2013 14:23:31 -0700 Subject: [PATCH 034/184] Added support for LFE (Lisp Flavored Erlang). --- lib/linguist/languages.yml | 7 ++ samples/LFE/church.lfe | 111 +++++++++++++++++++++++ samples/LFE/gps1.lfe | 104 ++++++++++++++++++++++ samples/LFE/mnesia_demo.lfe | 83 ++++++++++++++++++ samples/LFE/object.lfe | 169 ++++++++++++++++++++++++++++++++++++ 5 files changed, 474 insertions(+) create mode 100644 samples/LFE/church.lfe create mode 100644 samples/LFE/gps1.lfe create mode 100644 samples/LFE/mnesia_demo.lfe create mode 100644 samples/LFE/object.lfe diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 5526dd85..a016897c 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -680,6 +680,13 @@ Kotlin: - .ktm - .kts +LFE: + type: programming + primary_extension: .lfe + color: "#004200" + Lexer: Common Lisp + group: Erlang + LLVM: primary_extension: .ll diff --git a/samples/LFE/church.lfe b/samples/LFE/church.lfe new file mode 100644 index 00000000..b99d44ba --- /dev/null +++ b/samples/LFE/church.lfe @@ -0,0 +1,111 @@ +;; Copyright (c) 2013 Duncan McGreggor +;; +;; Licensed under the Apache License, Version 2.0 (the "License"); +;; you may not use this file except in compliance with the License. +;; You may obtain a copy of the License at +;; +;; http://www.apache.org/licenses/LICENSE-2.0 +;; +;; Unless required by applicable law or agreed to in writing, software +;; distributed under the License is distributed on an "AS IS" BASIS, +;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;; See the License for the specific language governing permissions and +;; limitations under the License. + +;; File : church.lfe +;; Author : Duncan McGreggor +;; Purpose : Demonstrating church numerals from the lambda calculus + +;; The code below was used to create the section of the user guide here: +;; http://lfe.github.io/user-guide/recursion/5.html +;; +;; Here is some example usage: +;; +;; > (slurp '"church.lfe") +;; #(ok church) +;; > (zero) +;; #Fun +;; > (church->int1 (zero)) +;; 0 +;; > (church->int1 (three)) +;; 3 +;; > (church->int1 (five)) +;; 5 +;; > (church->int2 #'five/0) +;; 5 +;; > (church->int2 (lambda () (get-church 25))) +;; 25 + +(defmodule church + (export all)) + +(defun zero () + (lambda (s) + (lambda (x) x))) + +(defun one () + (lambda (s) + (lambda (x) + (funcall s x)))) + +(defun two () + (lambda (s) + (lambda (x) + (funcall s + (funcall s x))))) + +(defun three () + (lambda (s) + (lambda (x) + (funcall s + (funcall s + (funcall s x)))))) + +(defun four () + (lambda (s) + (lambda (x) + (funcall s + (funcall s + (funcall s + (funcall s x))))))) + +(defun five () + (get-church 5)) + +(defun int-successor (n) + (+ n 1)) + +(defun church->int1 (church-numeral) + " + Converts a called church numeral to an integer, e.g.: + > (church->int1 (five)) + " + (funcall + (funcall church-numeral #'int-successor/1) 0)) + +(defun church->int2 (church-numeral) + " + Converts a non-called church numeral to an integer, e.g.: + > (church->int2 #'five/0) + " + (funcall + (funcall + (funcall church-numeral) #'int-successor/1) 0)) + +(defun church-successor (church-numeral) + (lambda (s) + (lambda (x) + (funcall s + (funcall + (funcall church-numeral s) x))))) + +(defun get-church (church-numeral count limit) + (cond ((== count limit) church-numeral) + ((/= count limit) + (get-church + (church-successor church-numeral) + (+ 1 count) + limit)))) + +(defun get-church (integer) + (get-church (zero) 0 integer)) diff --git a/samples/LFE/gps1.lfe b/samples/LFE/gps1.lfe new file mode 100644 index 00000000..41115572 --- /dev/null +++ b/samples/LFE/gps1.lfe @@ -0,0 +1,104 @@ +;;; -*- Mode: LFE; -*- +;;; Code from Paradigms of Artificial Intelligence Programming +;;; Copyright (c) 1991 Peter Norvig + +;;;; File gps1.lisp: First version of GPS (General Problem Solver) + +;;;; Converted to LFE by Robert Virding + +;; Define macros for global variable access. This is a hack and very naughty! +(defsyntax defvar + ([name val] (let ((v val)) (put 'name v) v))) + +(defsyntax setvar + ([name val] (let ((v val)) (put 'name v) v))) + +(defsyntax getvar + ([name] (get 'name))) + +;; Module definition. + +(defmodule gps1 + (export (gps 2) (gps 3) (school-ops 0)) + (import (from lists (member 2) (all 2) (any 2)) + ;; Rename lists functions to be more CL like. + (rename lists ((all 2) every) ((any 2) some) ((filter 2) find-all)))) + +;; An operation. +(defrecord op + action preconds add-list del-list) + +;; General Problem Solver: achieve all goals using *ops*. +(defun gps (state goals ops) + ;; Set global variables + (defvar *state* state) ;The current state: a list of conditions. + (defvar *ops* ops) ;A list of available operators. + (if (every (fun achieve 1) goals) 'solved)) + +(defun gps (state goals) + ;; Set global variables, but use existing *ops* + (defvar *state* state) ;The current state: a list of conditions. + (if (every (fun achieve 1) goals) 'solved)) + +;; A goal is achieved if it already holds or if there is an +;; appropriate op for it that is applicable." +(defun achieve (goal) + (orelse (member goal (getvar *state*)) + (some (fun apply-op 1) + (find-all (lambda (op) (appropriate-p goal op)) + (getvar *ops*))))) + +;; An op is appropriate to a goal if it is in its add list. +(defun appropriate-p (goal op) + (member goal (op-add-list op))) + +;; Print a message and update *state* if op is applicable. +(defun apply-op (op) + (if (every (fun achieve 1) (op-preconds op)) + (progn + (: io fwrite '"executing ~p\n" (list (op-action op))) + (setvar *state* (set-difference (getvar *state*) (op-del-list op))) + (setvar *state* (union (getvar *state*) (op-add-list op))) + 'true))) + +;; Define the set functions to work on list, a listsets module really. +(defun set-difference + ([(cons e es) s2] + (if (member e s2) + (set-difference es s2) + (cons e (set-difference es s2)))) + ([() s2] ())) + +(defun union + ([(cons e es) s2] + (if (member e s2) (union es s2) (cons e (union es s2)))) + ([() s2] ())) + +;;; ============================== + +(defun school-ops () + (list + (make-op action 'drive-son-to-school + preconds '(son-at-home car-works) + add-list '(son-at-school) + del-list '(son-at-home)) + (make-op action 'shop-installs-battery + preconds '(car-needs-battery shop-knows-problem shop-has-money) + add-list '(car-works) + del-list ()) + (make-op action 'tell-shop-problem + preconds '(in-communication-with-shop) + add-list '(shop-knows-problem) + del-list ()) + (make-op action 'telephone-shop + preconds '(know-phone-number) + add-list '(in-communication-with-shop) + del-list ()) + (make-op action 'look-up-number + preconds '(have-phone-book) + add-list '(know-phone-number) + del-list ()) + (make-op action 'give-shop-money + preconds '(have-money) + add-list '(shop-has-money) + del-list '(have-money)))) diff --git a/samples/LFE/mnesia_demo.lfe b/samples/LFE/mnesia_demo.lfe new file mode 100644 index 00000000..f27014b6 --- /dev/null +++ b/samples/LFE/mnesia_demo.lfe @@ -0,0 +1,83 @@ +;; Copyright (c) 2008-2013 Robert Virding +;; +;; Licensed under the Apache License, Version 2.0 (the "License"); +;; you may not use this file except in compliance with the License. +;; You may obtain a copy of the License at +;; +;; http://www.apache.org/licenses/LICENSE-2.0 +;; +;; Unless required by applicable law or agreed to in writing, software +;; distributed under the License is distributed on an "AS IS" BASIS, +;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;; See the License for the specific language governing permissions and +;; limitations under the License. + +;; File : mnesia_demo.lfe +;; Author : Robert Virding +;; Purpose : A simple Mnesia demo file for LFE. + +;; This file contains a simple demo of using LFE to access Mnesia +;; tables. It shows how to use the emp-XXXX macro (ETS match pattern) +;; together with mnesia:match_object, match specifications with +;; mnesia:select and Query List Comprehensions. + +(defmodule mnesia_demo + (export (new 0) (by_place 1) (by_place_ms 1) (by_place_qlc 1))) + +(defrecord person name place job) + +(defun new () + ;; Start mnesia and create a table, we will get an in memory only schema. + (: mnesia start) + (: mnesia create_table 'person '(#(attributes (name place job)))) + ;; Initialise the table. + (let ((people '( + ;; First some people in London. + #(fred london waiter) + #(bert london waiter) + #(john london painter) + #(paul london driver) + ;; Now some in Paris. + #(jean paris waiter) + #(gerard paris driver) + #(claude paris painter) + #(yves paris waiter) + ;; And some in Rome. + #(roberto rome waiter) + #(guiseppe rome driver) + #(paulo rome painter) + ;; And some in Berlin. + #(fritz berlin painter) + #(kurt berlin driver) + #(hans berlin waiter) + #(franz berlin waiter) + ))) + (: lists foreach (match-lambda + ([(tuple n p j)] + (: mnesia transaction + (lambda () + (let ((new (make-person name n place p job j))) + (: mnesia write new)))))) + people))) + +;; Match records by place using match_object and the emp-XXXX macro. +(defun by_place (place) + (: mnesia transaction + (lambda () (: mnesia match_object (emp-person place place))))) + +;; Use match specifications to match records +(defun by_place_ms (place) + (let ((f (lambda () (: mnesia select 'person + (match-spec ([(match-person name n place p job j)] + (when (=:= p place)) + (tuple n j))))))) + (: mnesia transaction f))) + +;; Use Query List Comprehensions to match records +(defun by_place_qlc (place) + (let ((f (lambda () + (let ((q (qlc (lc ((<- person (: mnesia table 'person)) + (=:= (person-place person) place)) + person)))) + (: qlc e q))))) + (: mnesia transaction f))) diff --git a/samples/LFE/object.lfe b/samples/LFE/object.lfe new file mode 100644 index 00000000..f652bc1f --- /dev/null +++ b/samples/LFE/object.lfe @@ -0,0 +1,169 @@ +;; Copyright (c) 2013 Duncan McGreggor +;; +;; Licensed under the Apache License, Version 2.0 (the "License"); +;; you may not use this file except in compliance with the License. +;; You may obtain a copy of the License at +;; +;; http://www.apache.org/licenses/LICENSE-2.0 +;; +;; Unless required by applicable law or agreed to in writing, software +;; distributed under the License is distributed on an "AS IS" BASIS, +;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;; See the License for the specific language governing permissions and +;; limitations under the License. + +;; File : object.lfe +;; Author : Duncan McGreggor +;; Purpose : Demonstrating simple OOP with closures + +;; The simple object system demonstrated below shows how to do the following: +;; * create objects +;; * call methods on those objects +;; * have methods which can call other methods +;; * update the state of an instance variable +;; +;; Note, however, that his example does not demonstrate inheritance. +;; +;; To use the code below in LFE, do the following: +;; +;; $ cd examples +;; $ ../bin/lfe -pa ../ebin +;; +;; Load the file and create a fish-class instance: +;; +;; > (slurp '"object.lfe") +;; #(ok object) +;; > (set mommy-fish (fish-class '"Carp")) +;; #Fun +;; +;; Execute some of the basic methods: +;; +;; > (get-species mommy-fish) +;; "Carp" +;; > (move mommy-fish 17) +;; The Carp swam 17 feet! +;; ok +;; > (get-id mommy-fish) +;; "47eebe91a648f042fc3fb278df663de5" +;; +;; Now let's look at "modifying" state data (e.g., children counts): +;; +;; > (get-children mommy-fish) +;; () +;; > (get-children-count mommy-fish) +;; 0 +;; > (set (mommy-fish baby-fish-1) (reproduce mommy-fish)) +;; (#Fun #Fun) +;; > (get-id mommy-fish) +;; "47eebe91a648f042fc3fb278df663de5" +;; > (get-id baby-fish-1) +;; "fdcf35983bb496650e558a82e34c9935" +;; > (get-children-count mommy-fish) +;; 1 +;; > (set (mommy-fish baby-fish-2) (reproduce mommy-fish)) +;; (#Fun #Fun) +;; > (get-id mommy-fish) +;; "47eebe91a648f042fc3fb278df663de5" +;; > (get-id baby-fish-2) +;; "3e64e5c20fb742dd88dac1032749c2fd" +;; > (get-children-count mommy-fish) +;; 2 +;; > (get-info mommy-fish) +;; id: "47eebe91a648f042fc3fb278df663de5" +;; species: "Carp" +;; children: ["fdcf35983bb496650e558a82e34c9935", +;; "3e64e5c20fb742dd88dac1032749c2fd"] +;; ok + +(defmodule object + (export all)) + +(defun fish-class (species) + " + This is the constructor that will be used most often, only requiring that + one pass a 'species' string. + + When the children are not defined, simply use an empty list. + " + (fish-class species ())) + +(defun fish-class (species children) + " + This contructor is mostly useful as a way of abstracting out the id + generation from the larger constructor. Nothing else uses fish-class/2 + besides fish-class/1, so it's not strictly necessary. + + When the id isn't know, generate one." + (let* (((binary (id (size 128))) (: crypto rand_bytes 16)) + (formatted-id (car + (: io_lib format + '"~32.16.0b" (list id))))) + (fish-class species children formatted-id))) + +(defun fish-class (species children id) + " + This is the constructor used internally, once the children and fish id are + known. + " + (let ((move-verb '"swam")) + (lambda (method-name) + (case method-name + ('id + (lambda (self) id)) + ('species + (lambda (self) species)) + ('children + (lambda (self) children)) + ('info + (lambda (self) + (: io format + '"id: ~p~nspecies: ~p~nchildren: ~p~n" + (list (get-id self) + (get-species self) + (get-children self))))) + ('move + (lambda (self distance) + (: io format + '"The ~s ~s ~p feet!~n" + (list species move-verb distance)))) + ('reproduce + (lambda (self) + (let* ((child (fish-class species)) + (child-id (get-id child)) + (children-ids (: lists append + (list children (list child-id)))) + (parent-id (get-id self)) + (parent (fish-class species children-ids parent-id))) + (list parent child)))) + ('children-count + (lambda (self) + (: erlang length children))))))) + +(defun get-method (object method-name) + " + This is a generic function, used to call into the given object (class + instance). + " + (funcall object method-name)) + +; define object methods +(defun get-id (object) + (funcall (get-method object 'id) object)) + +(defun get-species (object) + (funcall (get-method object 'species) object)) + +(defun get-info (object) + (funcall (get-method object 'info) object)) + +(defun move (object distance) + (funcall (get-method object 'move) object distance)) + +(defun reproduce (object) + (funcall (get-method object 'reproduce) object)) + +(defun get-children (object) + (funcall (get-method object 'children) object)) + +(defun get-children-count (object) + (funcall (get-method object 'children-count) object)) \ No newline at end of file From 68dfff60b5318f30a31d8f8dca9374af01f9f2e2 Mon Sep 17 00:00:00 2001 From: Duncan McGreggor Date: Fri, 21 Jun 2013 14:39:04 -0700 Subject: [PATCH 035/184] Fixed typo (removed capitalization). --- lib/linguist/languages.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index a016897c..36e6a161 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -684,7 +684,7 @@ LFE: type: programming primary_extension: .lfe color: "#004200" - Lexer: Common Lisp + lexer: Common Lisp group: Erlang LLVM: From fdc81d881882e8d3c6dd3af84d33232b9574922a Mon Sep 17 00:00:00 2001 From: Ted Nyman Date: Mon, 24 Jun 2013 14:32:07 -0600 Subject: [PATCH 036/184] Update LICENSE --- LICENSE | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LICENSE b/LICENSE index 13c7639b..d1d7570c 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright (c) 2011 GitHub, Inc. +Copyright (c) 2011-2013 GitHub, Inc. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation From d351d6091df75a38056235465f31bec6a9daeb66 Mon Sep 17 00:00:00 2001 From: Haralan Dobrev Date: Tue, 2 Jul 2013 00:10:42 +0300 Subject: [PATCH 037/184] added JSON extensions for Sublime Text Signed-off-by: Haralan Dobrev --- lib/linguist/languages.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 5526dd85..65a79267 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -632,6 +632,14 @@ JSON: ace_mode: json searchable: false primary_extension: .json + extensions: + - .sublime-keymap + - .sublime_metrics + - .sublime-mousemap + - .sublime-project + - .sublime_session + - .sublime-settings + - .sublime-workspace Java: type: programming From 1bebb50482bbab6a7b2d7afc872e0425819f1e56 Mon Sep 17 00:00:00 2001 From: Ted Nyman Date: Sun, 7 Jul 2013 13:54:22 -0700 Subject: [PATCH 038/184] Exclude LICENSE files --- lib/linguist/vendor.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/linguist/vendor.yml b/lib/linguist/vendor.yml index 8821a921..8330bb20 100644 --- a/lib/linguist/vendor.yml +++ b/lib/linguist/vendor.yml @@ -114,5 +114,8 @@ # Samples folders - ^[Ss]amples/ +# LICENSE files +- ^LICENSE$ + # Test fixtures - ^[Tt]est/fixtures/ From 6a15ae47ee1c66610675bec6a4dd627c40c26865 Mon Sep 17 00:00:00 2001 From: Ted Nyman Date: Sun, 7 Jul 2013 14:07:03 -0700 Subject: [PATCH 039/184] Some space here --- lib/linguist/classifier.rb | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/linguist/classifier.rb b/lib/linguist/classifier.rb index f9ba6e8a..a9707b28 100644 --- a/lib/linguist/classifier.rb +++ b/lib/linguist/classifier.rb @@ -147,16 +147,20 @@ module Linguist # indicate the least-likely language (and zero points) for each token. def dump_all_tokens(tokens, languages) maxlen = tokens.map { |tok| tok.size }.max + printf "%#{maxlen}s", "" puts " #" + languages.map { |lang| sprintf("%10s", lang) }.join + tokmap = Hash.new(0) tokens.each { |tok| tokmap[tok] += 1 } + tokmap.sort.each { |tok, count| arr = languages.map { |lang| [lang, token_probability(tok, lang)] } min = arr.map { |a,b| b }.min minlog = Math.log(min) if !arr.inject(true) { |result, n| result && n[1] == arr[0][1] } printf "%#{maxlen}s%5d", tok, count + puts arr.map { |ent| ent[1] == min ? " -" : sprintf("%10.3f", count * (Math.log(ent[1]) - minlog)) }.join From 62ad7639331e87885e3fde4ec96b716b06470464 Mon Sep 17 00:00:00 2001 From: Ted Nyman Date: Sun, 7 Jul 2013 14:33:18 -0700 Subject: [PATCH 040/184] Better Python script support; update samples.json --- lib/linguist/samples.json | 113 ++++++++++++++++++++++++--------- samples/Python/python2.script! | 47 ++++++++++++++ 2 files changed, 129 insertions(+), 31 deletions(-) create mode 100644 samples/Python/python2.script! diff --git a/lib/linguist/samples.json b/lib/linguist/samples.json index ce06b4d3..a223d53d 100644 --- a/lib/linguist/samples.json +++ b/lib/linguist/samples.json @@ -309,6 +309,9 @@ "wisp": [ ".wisp" ], + "XC": [ + ".xc" + ], "XML": [ ".ant", ".ivy", @@ -380,8 +383,8 @@ ".gemrc" ] }, - "tokens_total": 359968, - "languages_total": 425, + "tokens_total": 360152, + "languages_total": 427, "tokens": { "ABAP": { "*/**": 1, @@ -32447,16 +32450,16 @@ "Python": { "from": 33, "__future__": 2, - "import": 40, + "import": 42, "unicode_literals": 1, "copy": 1, - "sys": 1, + "sys": 2, "functools": 1, "update_wrapper": 2, "future_builtins": 1, "zip": 3, "django.db.models.manager": 1, - "#": 10, + "#": 13, "Imported": 1, "to": 4, "register": 1, @@ -32465,13 +32468,13 @@ "django.conf": 1, "settings": 1, "django.core.exceptions": 1, - "(": 487, + "(": 508, "ObjectDoesNotExist": 2, "MultipleObjectsReturned": 2, "FieldError": 4, "ValidationError": 8, "NON_FIELD_ERRORS": 3, - ")": 498, + ")": 519, "django.core": 1, "validators": 1, "django.db.models.fields": 1, @@ -32514,7 +32517,7 @@ "class": 14, "ModelBase": 4, "type": 4, - "def": 59, + "def": 63, "__new__": 2, "cls": 32, "name": 39, @@ -32524,29 +32527,29 @@ "super": 2, ".__new__": 1, "parents": 8, - "[": 62, + "[": 66, "b": 9, - "for": 49, - "in": 68, - "if": 140, + "for": 52, + "in": 72, + "if": 144, "isinstance": 11, - "]": 62, + "]": 66, "not": 64, - "return": 50, + "return": 53, "module": 6, "attrs.pop": 2, "new_class": 9, "{": 24, "}": 24, "attr_meta": 5, - "None": 84, + "None": 86, "abstract": 3, "getattr": 30, "False": 28, "meta": 12, - "else": 29, + "else": 30, "base_meta": 2, - "is": 28, + "is": 29, "model_module": 1, "sys.modules": 1, "new_class.__module__": 1, @@ -32584,7 +32587,7 @@ "attrs.items": 1, "new_fields": 2, "new_class._meta.local_fields": 3, - "+": 7, + "+": 15, "new_class._meta.local_many_to_many": 2, "new_class._meta.virtual_fields": 1, "field_names": 5, @@ -32592,7 +32595,7 @@ "f.name": 5, "f": 19, "base": 13, - "parent": 4, + "parent": 5, "parent._meta.abstract": 1, "parent._meta.fields": 1, "raise": 22, @@ -32661,7 +32664,7 @@ "opts.order_with_respect_to.rel.to": 1, "cls.__doc__": 3, "cls.__name__": 1, - ".join": 2, + ".join": 3, "f.attname": 5, "opts.fields": 1, "cls.get_absolute_url": 3, @@ -32684,7 +32687,7 @@ "args": 8, "self._state": 1, "args_len": 2, - "len": 8, + "len": 9, "self._meta.fields": 5, "IndexError": 2, "fields_iter": 4, @@ -32784,7 +32787,7 @@ "._update": 1, "meta.order_with_respect_to": 2, "order_value": 2, - "*": 8, + "*": 9, ".count": 1, "self._order": 1, "fields": 10, @@ -32858,7 +32861,7 @@ "unique_togethers.append": 1, "model_class": 11, "unique_together": 2, - "check": 3, + "check": 4, "break": 2, "unique_checks.append": 2, "fields_with_class": 2, @@ -32927,7 +32930,7 @@ "ordered_obj._meta.order_with_respect_to.rel.field_name": 2, "order_name": 4, "ordered_obj._meta.order_with_respect_to.name": 2, - "i": 2, + "i": 7, "j": 2, "enumerate": 1, "ordered_obj.objects.filter": 2, @@ -32964,8 +32967,8 @@ "decorate": 2, "based": 1, "views": 1, - "the": 4, - "of": 2, + "the": 5, + "of": 3, "as_view": 1, ".": 1, "However": 1, @@ -33042,8 +33045,38 @@ "Person": 1, "_message.Message": 1, "_reflection.GeneratedProtocolMessageType": 1, - "SHEBANG#!python": 2, - "print": 1, + "SHEBANG#!python": 3, + "print": 6, + "os": 1, + "main": 2, + "usage": 3, + "string": 1, + "command": 4, + "sys.argv": 2, + "<": 1, + "sys.exit": 1, + "printDelimiter": 4, + "get": 1, + "a": 1, + "list": 1, + "git": 1, + "directories": 1, + "specified": 1, + "gitDirectories": 2, + "getSubdirectories": 2, + "isGitDirectory": 2, + "gitDirectory": 2, + "os.chdir": 1, + "os.getcwd": 1, + "os.system": 1, + "directory": 9, + "filter": 3, + "os.path.abspath": 1, + "subdirectories": 3, + "os.walk": 1, + ".next": 1, + "os.path.isdir": 1, + "__name__": 1, "absolute_import": 1, "division": 1, "with_statement": 1, @@ -37640,6 +37673,22 @@ "input": 1, "text": 1 }, + "XC": { + "int": 2, + "main": 1, + "(": 1, + ")": 1, + "{": 2, + "x": 3, + ";": 4, + "chan": 1, + "c": 3, + "par": 1, + "<:>": 1, + "0": 1, + "}": 2, + "return": 1 + }, "XML": { "": 3, "version=": 4, @@ -38816,7 +38865,7 @@ "PowerShell": 12, "Processing": 74, "Prolog": 4040, - "Python": 4088, + "Python": 4248, "R": 14, "Racket": 360, "Ragel in Ruby Host": 593, @@ -38841,6 +38890,7 @@ "VimL": 20, "Visual Basic": 345, "wisp": 1363, + "XC": 24, "XML": 5622, "XProc": 22, "XQuery": 801, @@ -38916,7 +38966,7 @@ "PowerShell": 2, "Processing": 1, "Prolog": 6, - "Python": 5, + "Python": 6, "R": 1, "Racket": 3, "Ragel in Ruby Host": 3, @@ -38941,6 +38991,7 @@ "VimL": 2, "Visual Basic": 1, "wisp": 1, + "XC": 1, "XML": 3, "XProc": 1, "XQuery": 1, @@ -38948,5 +38999,5 @@ "Xtend": 2, "YAML": 1 }, - "md5": "d233899b021f2ee7af2d7ff73c37a2b3" + "md5": "06f04376114dadff4923b1138204a240" } \ No newline at end of file diff --git a/samples/Python/python2.script! b/samples/Python/python2.script! new file mode 100644 index 00000000..65f034e7 --- /dev/null +++ b/samples/Python/python2.script! @@ -0,0 +1,47 @@ +#!/usr/bin/env python + +import os +import sys + +def main(): + + # usage string + usage = 'usage: gitall command' + + # command check + if len(sys.argv) < 2: + sys.exit(usage) + + command = 'git ' + ' '.join(sys.argv[1:]) + printDelimiter() + print 'Running command:', command + + # get a list of git directories in the specified parent + gitDirectories = getSubdirectories('.', isGitDirectory) + + for gitDirectory in gitDirectories: + os.chdir(gitDirectory) + printDelimiter() + print 'Current respository location:', os.getcwd() + os.system(command) + + printDelimiter() + +def getSubdirectories(directory, filter = None): + directory = os.path.abspath(directory) + subdirectories = os.walk(directory).next()[1] + if filter is None: + return [directory + '/' + i for i in subdirectories] + else: + return [directory + '/' + i for i in subdirectories if filter(directory + '/' + i)] + +def isGitDirectory(directory): + return os.path.isdir(directory + '/.git/') + +def printDelimiter(): + print '\033[91m' + print ('#' * 80) + print '\033[0m' + +if __name__ == '__main__': + main() From 72b70a11bc97aa84b1a61d4a541337f5fa2ab56f Mon Sep 17 00:00:00 2001 From: Ted Nyman Date: Sun, 7 Jul 2013 14:37:01 -0700 Subject: [PATCH 041/184] Bump to 2.8.0 --- github-linguist.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/github-linguist.gemspec b/github-linguist.gemspec index f69a47c0..e38cc371 100644 --- a/github-linguist.gemspec +++ b/github-linguist.gemspec @@ -1,6 +1,6 @@ Gem::Specification.new do |s| s.name = 'github-linguist' - s.version = '2.7.0' + s.version = '2.8.0' s.summary = "GitHub Language detection" s.authors = "GitHub" From 53340ddd4cdc2b36c1db066fd3dc35895581a1c4 Mon Sep 17 00:00:00 2001 From: Ted Nyman Date: Sun, 7 Jul 2013 14:52:46 -0700 Subject: [PATCH 042/184] Even more Python script support --- lib/linguist/samples.json | 253 ++++++++++++++++++++----- samples/Python/python3.script! | 324 +++++++++++++++++++++++++++++++++ 2 files changed, 534 insertions(+), 43 deletions(-) create mode 100644 samples/Python/python3.script! diff --git a/lib/linguist/samples.json b/lib/linguist/samples.json index a223d53d..8d447189 100644 --- a/lib/linguist/samples.json +++ b/lib/linguist/samples.json @@ -383,8 +383,8 @@ ".gemrc" ] }, - "tokens_total": 360152, - "languages_total": 427, + "tokens_total": 361619, + "languages_total": 428, "tokens": { "ABAP": { "*/**": 1, @@ -32448,16 +32448,16 @@ "L": 2 }, "Python": { - "from": 33, + "from": 34, "__future__": 2, - "import": 42, + "import": 47, "unicode_literals": 1, "copy": 1, "sys": 2, "functools": 1, "update_wrapper": 2, "future_builtins": 1, - "zip": 3, + "zip": 8, "django.db.models.manager": 1, "#": 13, "Imported": 1, @@ -32468,13 +32468,13 @@ "django.conf": 1, "settings": 1, "django.core.exceptions": 1, - "(": 508, + "(": 719, "ObjectDoesNotExist": 2, "MultipleObjectsReturned": 2, "FieldError": 4, "ValidationError": 8, "NON_FIELD_ERRORS": 3, - ")": 519, + ")": 730, "django.core": 1, "validators": 1, "django.db.models.fields": 1, @@ -32504,7 +32504,7 @@ "get_model": 3, "django.utils.translation": 1, "ugettext_lazy": 1, - "as": 8, + "as": 11, "_": 5, "django.utils.functional": 1, "curry": 6, @@ -32516,8 +32516,8 @@ "capfirst": 6, "class": 14, "ModelBase": 4, - "type": 4, - "def": 63, + "type": 6, + "def": 68, "__new__": 2, "cls": 32, "name": 39, @@ -32527,20 +32527,20 @@ "super": 2, ".__new__": 1, "parents": 8, - "[": 66, - "b": 9, - "for": 52, - "in": 72, - "if": 144, + "[": 152, + "b": 11, + "for": 59, + "in": 79, + "if": 145, "isinstance": 11, - "]": 66, + "]": 152, "not": 64, - "return": 53, + "return": 57, "module": 6, "attrs.pop": 2, "new_class": 9, - "{": 24, - "}": 24, + "{": 25, + "}": 25, "attr_meta": 5, "None": 86, "abstract": 3, @@ -32555,13 +32555,13 @@ "new_class.__module__": 1, "kwargs": 9, "model_module.__name__.split": 1, - "-": 4, + "-": 30, "new_class.add_to_class": 7, "**kwargs": 9, "subclass_exception": 3, "tuple": 3, "x.DoesNotExist": 1, - "x": 4, + "x": 22, "hasattr": 11, "and": 35, "x._meta.abstract": 2, @@ -32587,7 +32587,7 @@ "attrs.items": 1, "new_fields": 2, "new_class._meta.local_fields": 3, - "+": 15, + "+": 37, "new_class._meta.local_many_to_many": 2, "new_class._meta.virtual_fields": 1, "field_names": 5, @@ -32620,7 +32620,7 @@ "attr_name": 3, "base._meta.module_name": 1, "auto_created": 1, - "True": 15, + "True": 20, "parent_link": 1, "new_class._meta.parents": 1, "copy.deepcopy": 2, @@ -32703,7 +32703,7 @@ "KeyError": 3, "field.get_default": 3, "field.null": 1, - "prop": 4, + "prop": 5, "kwargs.keys": 2, "property": 2, "AttributeError": 1, @@ -32712,7 +32712,7 @@ "signals.post_init.send": 1, "instance": 5, "__repr__": 2, - "u": 3, + "u": 9, "unicode": 8, "UnicodeEncodeError": 1, "UnicodeDecodeError": 1, @@ -32728,7 +32728,7 @@ "__hash__": 1, "hash": 1, "__reduce__": 1, - "data": 9, + "data": 22, "self.__dict__": 1, "defers": 2, "self._deferred": 1, @@ -32787,10 +32787,10 @@ "._update": 1, "meta.order_with_respect_to": 2, "order_value": 2, - "*": 9, + "*": 33, ".count": 1, "self._order": 1, - "fields": 10, + "fields": 12, "update_pk": 3, "bool": 2, "meta.has_auto_field": 1, @@ -32815,7 +32815,7 @@ "strings_only": 1, "_get_next_or_previous_by_FIELD": 1, "self.pk": 6, - "op": 5, + "op": 6, "order": 5, "param": 3, "q": 4, @@ -32878,7 +32878,7 @@ "lookup_kwargs": 8, "self._meta.get_field": 1, "lookup_value": 3, - "str": 1, + "str": 2, "lookup_kwargs.keys": 1, "model_class._default_manager.filter": 2, "*lookup_kwargs": 2, @@ -32911,7 +32911,7 @@ "lambda": 1, "full_clean": 1, "self.clean_fields": 1, - "e": 7, + "e": 13, "e.update_error_dict": 3, "self.clean": 1, "errors.keys": 1, @@ -32992,7 +32992,7 @@ "view.methods": 1, "cls.methods": 1, "MethodViewType": 2, - "d": 4, + "d": 5, "rv": 2, "type.__new__": 1, "rv.methods": 2, @@ -33026,14 +33026,14 @@ "index": 1, "number": 1, "cpp_type": 1, - "label": 1, + "label": 18, "has_default_value": 1, "default_value": 1, "message_type": 1, "enum_type": 1, "is_extension": 1, "extension_scope": 1, - "options": 2, + "options": 3, "extensions": 1, "nested_types": 1, "enum_types": 1, @@ -33045,10 +33045,10 @@ "Person": 1, "_message.Message": 1, "_reflection.GeneratedProtocolMessageType": 1, - "SHEBANG#!python": 3, - "print": 6, + "SHEBANG#!python": 4, + "print": 39, "os": 1, - "main": 2, + "main": 4, "usage": 3, "string": 1, "command": 4, @@ -33057,7 +33057,7 @@ "sys.exit": 1, "printDelimiter": 4, "get": 1, - "a": 1, + "a": 2, "list": 1, "git": 1, "directories": 1, @@ -33076,7 +33076,175 @@ "os.walk": 1, ".next": 1, "os.path.isdir": 1, - "__name__": 1, + "__name__": 2, + "argparse": 1, + "matplotlib.pyplot": 1, + "pl": 1, + "numpy": 1, + "np": 1, + "scipy.optimize": 1, + "prettytable": 1, + "PrettyTable": 6, + "__docformat__": 1, + "S": 4, + "phif": 7, + "U": 10, + "/": 23, + "_parse_args": 2, + "V": 12, + "np.genfromtxt": 8, + "delimiter": 8, + "t": 8, + "U_err": 7, + "offset": 13, + "np.mean": 1, + "np.linspace": 9, + "min": 10, + "max": 11, + "y": 10, + "np.ones": 11, + "x.size": 2, + "pl.plot": 9, + "**6": 6, + ".format": 11, + "pl.errorbar": 8, + "yerr": 8, + "linestyle": 8, + "marker": 4, + "pl.grid": 5, + "pl.legend": 5, + "loc": 5, + "pl.title": 5, + "pl.xlabel": 5, + "ur": 11, + "pl.ylabel": 5, + "pl.savefig": 5, + "pl.clf": 5, + "glanz": 13, + "matt": 13, + "schwarz": 13, + "weiss": 13, + "T0": 1, + "T0_err": 2, + "glanz_phi": 4, + "matt_phi": 4, + "schwarz_phi": 4, + "weiss_phi": 4, + "T_err": 7, + "sigma": 4, + "boltzmann": 12, + "T": 6, + "epsilon": 7, + "T**4": 1, + "glanz_popt": 3, + "glanz_pconv": 1, + "op.curve_fit": 6, + "matt_popt": 3, + "matt_pconv": 1, + "schwarz_popt": 3, + "schwarz_pconv": 1, + "weiss_popt": 3, + "weiss_pconv": 1, + "glanz_x": 3, + "glanz_y": 2, + "*glanz_popt": 1, + "color": 8, + "matt_x": 3, + "matt_y": 2, + "*matt_popt": 1, + "schwarz_x": 3, + "schwarz_y": 2, + "*schwarz_popt": 1, + "weiss_x": 3, + "weiss_y": 2, + "*weiss_popt": 1, + "np.sqrt": 17, + "glanz_pconv.diagonal": 2, + "matt_pconv.diagonal": 2, + "schwarz_pconv.diagonal": 2, + "weiss_pconv.diagonal": 2, + "xerr": 6, + "U_err/S": 4, + "header": 5, + "glanz_table": 2, + "row": 10, + ".size": 4, + "*T_err": 4, + "glanz_phi.size": 1, + "*U_err/S": 4, + "glanz_table.add_row": 1, + "matt_table": 2, + "matt_phi.size": 1, + "matt_table.add_row": 1, + "schwarz_table": 2, + "schwarz_phi.size": 1, + "schwarz_table.add_row": 1, + "weiss_table": 2, + "weiss_phi.size": 1, + "weiss_table.add_row": 1, + "T0**4": 1, + "phi": 5, + "c": 3, + "a*x": 1, + "dx": 6, + "d**": 2, + "dy": 4, + "dx_err": 3, + "np.abs": 1, + "dy_err": 2, + "popt": 5, + "pconv": 2, + "*popt": 2, + "pconv.diagonal": 3, + "table": 2, + "table.align": 1, + "dy.size": 1, + "*dy_err": 1, + "table.add_row": 1, + "U1": 3, + "I1": 3, + "U2": 2, + "I_err": 2, + "p": 1, + "R": 1, + "R_err": 2, + "/I1": 1, + "**2": 2, + "U1/I1**2": 1, + "phi_err": 3, + "alpha": 2, + "beta": 1, + "R0": 6, + "R0_err": 2, + "alpha*R0": 2, + "*np.sqrt": 6, + "*beta*R": 5, + "alpha**2*R0": 5, + "*beta*R0": 7, + "*beta*R0*T0": 2, + "epsilon_err": 2, + "f1": 1, + "f2": 1, + "f3": 1, + "alpha**2": 1, + "*beta": 1, + "*beta*T0": 1, + "*beta*R0**2": 1, + "f1**2": 1, + "f2**2": 1, + "f3**2": 1, + "parser": 1, + "argparse.ArgumentParser": 1, + "description": 1, + "#parser.add_argument": 3, + "metavar": 1, + "nargs": 1, + "help": 2, + "dest": 1, + "default": 1, + "action": 1, + "version": 6, + "parser.parse_args": 1, "absolute_import": 1, "division": 1, "with_statement": 1, @@ -33150,7 +33318,6 @@ "start_line": 1, "method": 5, "uri": 5, - "version": 5, "start_line.split": 1, "version.startswith": 1, "headers": 5, @@ -38865,7 +39032,7 @@ "PowerShell": 12, "Processing": 74, "Prolog": 4040, - "Python": 4248, + "Python": 5715, "R": 14, "Racket": 360, "Ragel in Ruby Host": 593, @@ -38966,7 +39133,7 @@ "PowerShell": 2, "Processing": 1, "Prolog": 6, - "Python": 6, + "Python": 7, "R": 1, "Racket": 3, "Ragel in Ruby Host": 3, @@ -38999,5 +39166,5 @@ "Xtend": 2, "YAML": 1 }, - "md5": "06f04376114dadff4923b1138204a240" + "md5": "0c2809e4b07cb4ec80e99a245694470e" } \ No newline at end of file diff --git a/samples/Python/python3.script! b/samples/Python/python3.script! new file mode 100644 index 00000000..87f8f62a --- /dev/null +++ b/samples/Python/python3.script! @@ -0,0 +1,324 @@ +#!/usr/bin/python +# -*- coding: utf-8 -*- + +# Copyright © 2013 Martin Ueding + +import argparse +import matplotlib.pyplot as pl +import numpy as np +import scipy.optimize as op +from prettytable import PrettyTable + +__docformat__ = "restructuredtext en" + +# Sensitivität der Thermosäule +S = 30e-6 + +def phif(U): + return U / S + +def main(): + options = _parse_args() + + V = 1000 + + data = np.genfromtxt("a-leer.csv", delimiter="\t") + t = data[:,0] + U = data[:,1] / V / 1000 + U_err = 0.7e-3 / V + + offset = np.mean(U[-3:]) + + x = np.linspace(min(t), max(t)) + y = np.ones(x.size) * offset + pl.plot(x, y * 10**6, label="Offset") + + print "Offset: {:.3g} V".format(offset) + + pl.errorbar(t, U * 10**6, yerr=U_err * 10**6, linestyle="none", marker="+", + label="Messdaten") + pl.grid(True) + pl.legend(loc="best") + pl.title(u"Bestimmung des Offsets") + pl.xlabel(ur"Zeit $t / \mathrm{s}$") + pl.ylabel(ur"Thermospannung $U / \mathrm{\mu V}$") + pl.savefig("Plot_a-leer.pdf") + pl.clf() + + V = 100 + + data = np.genfromtxt("a-Lampe.csv", delimiter="\t") + t = data[:,0] + U = data[:,1] / V / 1000 - offset + U_err = 0.7e-3 / V + + x = np.linspace(min(t), max(t)) + y = np.ones(x.size) * max(U) * 0.9 + pl.plot(x, y * 10**6, label=ur"$90\%$") + + pl.errorbar(t, U * 10**6, yerr=U_err * 10**6, linestyle="none", marker="+", + label="Messdaten") + pl.grid(True) + pl.legend(loc="best") + pl.title(u"Bestimmung der Ansprechzeit") + pl.xlabel(ur"Zeit $t / \mathrm{s}$") + pl.ylabel(ur"Thermospannung $U / \mathrm{\mu V}$") + pl.savefig("Plot_a-Lampe.pdf") + pl.clf() + + # Lesliewürfel + print """ +Lesliewürfel +============ +""" + + glanz = np.genfromtxt("b-glanz.csv", delimiter="\t") + matt = np.genfromtxt("b-matt.csv", delimiter="\t") + schwarz = np.genfromtxt("b-schwarz.csv", delimiter="\t") + weiss = np.genfromtxt("b-weiss.csv", delimiter="\t") + + T0 = 19.0 + 273.15 + T0_err = 1.0 + + glanz[:,0] += 273.15 + matt[:,0] += 273.15 + schwarz[:,0] += 273.15 + weiss[:,0] += 273.15 + + glanz[:,1] /= 1000 * V + matt[:,1] /= 1000 * V + schwarz[:,1] /= 1000 * V + weiss[:,1] /= 1000 * V + + glanz[:,1] -= offset + matt[:,1] -= offset + schwarz[:,1] -= offset + weiss[:,1] -= offset + + glanz_phi = phif(glanz[:,1]) + matt_phi = phif(matt[:,1]) + schwarz_phi = phif(schwarz[:,1]) + weiss_phi = phif(weiss[:,1]) + + T_err = 0.3 + + sigma = 5.670373e-8 + + def boltzmann(T, epsilon, offset): + return epsilon * sigma * T**4 + offset + + glanz_popt, glanz_pconv = op.curve_fit(boltzmann, glanz[:,0], glanz_phi) + matt_popt, matt_pconv = op.curve_fit(boltzmann, matt[:,0], matt_phi) + schwarz_popt, schwarz_pconv = op.curve_fit(boltzmann, schwarz[:,0], schwarz_phi) + weiss_popt, weiss_pconv = op.curve_fit(boltzmann, weiss[:,0], weiss_phi) + + glanz_x = np.linspace(min(glanz[:,0]), max(glanz[:,0])) + glanz_y = boltzmann(glanz_x, *glanz_popt) + pl.plot(glanz_x, glanz_y, label="Fit glanz", color="gold") + + matt_x = np.linspace(min(matt[:,0]), max(matt[:,0])) + matt_y = boltzmann(matt_x, *matt_popt) + pl.plot(matt_x, matt_y, label="Fit matt", color="yellow") + + schwarz_x = np.linspace(min(schwarz[:,0]), max(schwarz[:,0])) + schwarz_y = boltzmann(schwarz_x, *schwarz_popt) + pl.plot(schwarz_x, schwarz_y, label="Fit schwarz", color="black") + + weiss_x = np.linspace(min(weiss[:,0]), max(weiss[:,0])) + weiss_y = boltzmann(weiss_x, *weiss_popt) + pl.plot(weiss_x, weiss_y, label="Fit weiss", color="gray") + + print "glanz ε = {:.3g} ± {:.3g}".format(glanz_popt[0], np.sqrt(glanz_pconv.diagonal()[0])) + print "glanz offset = {:.3g} ± {:.3g}".format(glanz_popt[1], np.sqrt(glanz_pconv.diagonal()[1])) + print "matt ε = {:.3g} ± {:.3g}".format(matt_popt[0], np.sqrt(matt_pconv.diagonal()[0])) + print "matt offset = {:.3g} ± {:.3g}".format(matt_popt[1], np.sqrt(matt_pconv.diagonal()[1])) + print "schwarz ε = {:.3g} ± {:.3g}".format(schwarz_popt[0], np.sqrt(schwarz_pconv.diagonal()[0])) + print "schwarz offset = {:.3g} ± {:.3g}".format(schwarz_popt[1], np.sqrt(schwarz_pconv.diagonal()[1])) + print "weiss ε = {:.3g} ± {:.3g}".format(weiss_popt[0], np.sqrt(weiss_pconv.diagonal()[0])) + print "weiss offset = {:.3g} ± {:.3g}".format(weiss_popt[1], np.sqrt(weiss_pconv.diagonal()[1])) + + pl.errorbar(glanz[:,0], glanz_phi, xerr=T_err, yerr=U_err/S, + label="glanz", color="gold", linestyle="none") + pl.errorbar(matt[:,0], matt_phi, xerr=T_err, yerr=U_err/S, + label="matt", color="yellow", linestyle="none") + pl.errorbar(schwarz[:,0], schwarz_phi, xerr=T_err, yerr=U_err/S, + label="schwarz", color="black", linestyle="none") + pl.errorbar(weiss[:,0], weiss_phi, xerr=T_err, yerr=U_err/S, + label="weiss", color="gray", linestyle="none") + + header = ["T / K", "Phi/F in W/m^2", "Fehler T", "Fehler Phi/F"] + + print """ +Tabellen für den Lesliewürfel-Plot +---------------------------------- +""" + + print "Glanz" + glanz_table = PrettyTable(header) + for row in zip(glanz[:,0], glanz_phi, np.ones(glanz[:,0].size)*T_err, np.ones(glanz_phi.size)*U_err/S): + glanz_table.add_row(row) + print glanz_table + print + + print "Matt" + matt_table = PrettyTable(header) + for row in zip(matt[:,0], matt_phi, np.ones(matt[:,0].size)*T_err, np.ones(matt_phi.size)*U_err/S): + matt_table.add_row(row) + print matt_table + print + + print "Schwarz" + schwarz_table = PrettyTable(header) + for row in zip(schwarz[:,0], schwarz_phi, np.ones(schwarz[:,0].size)*T_err, np.ones(schwarz_phi.size)*U_err/S): + schwarz_table.add_row(row) + print schwarz_table + print + + print "Weiß" + weiss_table = PrettyTable(header) + for row in zip(weiss[:,0], weiss_phi, np.ones(weiss[:,0].size)*T_err, np.ones(weiss_phi.size)*U_err/S): + weiss_table.add_row(row) + print weiss_table + print + + epsilon = 0.1 + + x = np.linspace(min([min(x) for x in [glanz[:,0], matt[:,0], schwarz[:,0], + weiss[:,0]]]), + max([max(x) for x in [glanz[:,0], matt[:,0], schwarz[:,0], + weiss[:,0]]]), + 100) + offset = - epsilon * sigma * T0**4 + print "ideal offset = {:.3g}".format(offset) + y = boltzmann(x, epsilon, offset) + pl.plot(x, y, label=ur"$\epsilon = 0.1$") + + + pl.grid(True) + pl.title(u"Lesliewürfel") + pl.xlabel(ur"Temperatur $T / \mathrm{K}$") + pl.ylabel(ur"Strahlungsfluss $\frac{\Phi}{F} / \mathrm{\frac{W}{m^2}}$") + pl.legend(loc="best", prop={"size": 12}) + pl.savefig("Plot_b.pdf") + pl.clf() + + # Aufgabe c + print """ +Aufgabe c +========= + """ + + data = np.genfromtxt("c-erste.csv", delimiter="\t") + d = data[:,0] / 100 + U = data[:,1] / V + phi = phif(U) + + def c(x, a, b): + return a*x + b + + + dx = d**(-2) + dy = phi + + dx_err = np.abs(-2 * d**(-3)) * 0.001 + dy_err = 0.001 / S + + popt, pconv = op.curve_fit(c, dx, dy) + x = np.linspace(min(dx), max(dx)) + y = c(x, *popt) + pl.plot(x, y, label="Fit") + + print "Fitparameter" + print "a", popt[0], "±", np.sqrt(pconv.diagonal()[0]) + print "b", popt[1], "±", np.sqrt(pconv.diagonal()[1]) + + pl.errorbar(dx, dy, xerr=dx_err, yerr=dy_err, linestyle="none", + marker="+", label="Messdaten") + pl.grid(True) + pl.title(u"Halogenlampe bei verschiedenen Abständen") + pl.xlabel(ur"Abstand $d^{-2} / \mathrm{m^{-2}}$") + pl.ylabel(ur"Strahlungsfluss $\frac{\Phi}{F} / \mathrm{\frac{W}{m^2}}$") + pl.legend(loc="best") + pl.savefig("Plot_c-erste.pdf") + pl.clf() + + print + print "Tabelle für Aufgabe c" + fields = ["d^-2 in m^-2", "Phi/F in W/m^2", "Fehler d^-2", "Fehler Phi/F"] + table = PrettyTable(fields) + table.align = "l" + for row in zip(dx, dy, dx_err, np.ones(dy.size)*dy_err): + table.add_row(row) + print table + print + + data = np.genfromtxt("c-zweite.csv", delimiter="\t") + U1 = data[:,0] + I1 = data[:,1] + U2 = data[:,2] / V + + U_err = 0.001 + I_err = 0.01 + + p = U1 * I1 + R = U1 / I1 + R_err = np.sqrt( + (1/I1 * U_err)**2 + + (U1/I1**2 * I_err)**2 + ) + + phi = phif(U2) + phi_err = U_err / S + + alpha = 4.82e-3 + beta = 6.76e-7 + + R0 = 0.35 + R0_err = 0.05 + + T = (-alpha*R0 + np.sqrt(R0)*np.sqrt(4*beta*R + alpha**2*R0 - 4*beta*R0) + + 2*beta*R0*T0)/(2*beta*R0) + + popt, pconv = op.curve_fit(boltzmann, T, phi, sigma=phi_err) + x = np.linspace(min(T), max(T)) + y = boltzmann(x, *popt) + pl.plot(x, y, label="Fit") + + epsilon = popt[0] + epsilon_err = np.sqrt(pconv.diagonal()[0]) + + print "ε = {:.3g} ± {:.3g}".format(epsilon, epsilon_err) + + f1 = (1/(np.sqrt(R0)*np.sqrt(4*beta*R + alpha**2*R0 - 4*beta*R0))) * R_err + f2 = T0_err + f3 = ((-alpha + ((alpha**2 - 4*beta)*np.sqrt(R0))/( 2*np.sqrt(4*beta*R + alpha**2*R0 - 4*beta*R0)) + np.sqrt( 4*beta*R + alpha**2*R0 - 4*beta*R0)/(2*np.sqrt(R0)) + 2*beta*T0)/( 2*beta*R0) - (-alpha*R0 + np.sqrt(R0)*np.sqrt(4*beta*R + alpha**2*R0 - 4*beta*R0) + 2*beta*R0*T0)/( 2*beta*R0**2)) * R0_err + + T_err = np.sqrt(f1**2 + f2**2 + f3**2) + + pl.errorbar(T, phi, xerr=T_err, yerr=phi_err, label="Messdaten", + linestyle="none", marker="+") + pl.grid(True) + pl.legend(loc="best") + pl.title(u"Halogenlampe bei verschiedenen Leistungen") + pl.xlabel(u"Temperatur $T / \mathrm{K}$") + pl.ylabel(ur"Strahlungsfluss $\frac{\Phi}{F} / \mathrm{\frac{W}{m^2}}$") + pl.savefig("Plot_c-zweite.pdf") + pl.clf() + +def _parse_args(): + """ + Parses the command line arguments. + + :return: Namespace with arguments. + :rtype: Namespace + """ + parser = argparse.ArgumentParser(description="") + #parser.add_argument("args", metavar="N", type=str, nargs="*", help="Positional arguments.") + #parser.add_argument("", dest="", type="", default=, help=) + #parser.add_argument("--version", action="version", version="") + + return parser.parse_args() + + +if __name__ == "__main__": + main() From 887933c86a88778b32a371d5f28b77d1817c7ba1 Mon Sep 17 00:00:00 2001 From: Ted Nyman Date: Sun, 7 Jul 2013 14:54:24 -0700 Subject: [PATCH 043/184] Bump to 2.8.1 --- github-linguist.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/github-linguist.gemspec b/github-linguist.gemspec index e38cc371..96319da8 100644 --- a/github-linguist.gemspec +++ b/github-linguist.gemspec @@ -1,6 +1,6 @@ Gem::Specification.new do |s| s.name = 'github-linguist' - s.version = '2.8.0' + s.version = '2.8.1' s.summary = "GitHub Language detection" s.authors = "GitHub" From 438c0a4ec191c412b051193bdaf220a0f4390e80 Mon Sep 17 00:00:00 2001 From: Ted Nyman Date: Sun, 7 Jul 2013 15:17:32 -0700 Subject: [PATCH 044/184] Remove unncessary xc extension --- lib/linguist/languages.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 5526dd85..822a2415 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -1299,8 +1299,8 @@ Unified Parallel C: lexer: C ace_mode: c_cpp color: "#755223" - primary_extension: .upc - + primary_extension: .upc + VHDL: type: programming lexer: vhdl @@ -1350,8 +1350,6 @@ XC: type: programming lexer: C primary_extension: .xc - extensions: - - .xc XML: type: markup From 29f5ea591fa56a0eec09c9578246898c3a25d0a2 Mon Sep 17 00:00:00 2001 From: Ted Nyman Date: Sun, 7 Jul 2013 15:18:01 -0700 Subject: [PATCH 045/184] 2.8.2 --- github-linguist.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/github-linguist.gemspec b/github-linguist.gemspec index 96319da8..302b3f09 100644 --- a/github-linguist.gemspec +++ b/github-linguist.gemspec @@ -1,6 +1,6 @@ Gem::Specification.new do |s| s.name = 'github-linguist' - s.version = '2.8.1' + s.version = '2.8.2' s.summary = "GitHub Language detection" s.authors = "GitHub" From 7fbfe0a4b4bfa2727c348fec9d67326d55e401dd Mon Sep 17 00:00:00 2001 From: Ted Nyman Date: Sun, 7 Jul 2013 15:26:29 -0700 Subject: [PATCH 046/184] Silence this warning --- lib/linguist/language.rb | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/linguist/language.rb b/lib/linguist/language.rb index 54fc4698..aa550890 100644 --- a/lib/linguist/language.rb +++ b/lib/linguist/language.rb @@ -446,7 +446,6 @@ module Linguist if !options['extensions'].include?(extname) options['extensions'] << extname else - warn "#{name} #{extname.inspect} is already defined in samples/. Remove from languages.yml." end end end @@ -456,7 +455,6 @@ module Linguist if !options['filenames'].include?(filename) options['filenames'] << filename else - warn "#{name} #{filename.inspect} is already defined in samples/. Remove from languages.yml." end end end From 22de40f5f617425de253d2b39f7adcc0861563ae Mon Sep 17 00:00:00 2001 From: Ted Nyman Date: Sun, 7 Jul 2013 15:27:59 -0700 Subject: [PATCH 047/184] 2.8.3 --- github-linguist.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/github-linguist.gemspec b/github-linguist.gemspec index 302b3f09..5bd6a046 100644 --- a/github-linguist.gemspec +++ b/github-linguist.gemspec @@ -1,6 +1,6 @@ Gem::Specification.new do |s| s.name = 'github-linguist' - s.version = '2.8.2' + s.version = '2.8.3' s.summary = "GitHub Language detection" s.authors = "GitHub" From 4d3720745e6486c4f61d5779ba2537e68d0cd93f Mon Sep 17 00:00:00 2001 From: cono Date: Mon, 8 Jul 2013 04:01:50 +0300 Subject: [PATCH 048/184] Add Perl's index.fcgi to samples --- samples/Perl/index.fcgi | 102 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 102 insertions(+) create mode 100755 samples/Perl/index.fcgi diff --git a/samples/Perl/index.fcgi b/samples/Perl/index.fcgi new file mode 100755 index 00000000..13834cd3 --- /dev/null +++ b/samples/Perl/index.fcgi @@ -0,0 +1,102 @@ +#!/usr/bin/perl + +use strict; +use warnings; + +use CGI::Fast; +use XML::Hash::XS; +use File::Spec; +use FindBin qw($Bin); + +#use lib File::Spec->catdir($Bin, qw(.. lib)); + +my $_stop = 0; +my $request; +$SIG{'PIPE'} = 'IGNORE'; + +$SIG{'INT'} = $SIG{'TERM'} = sub { + $_stop = 1; + + exit(0) unless defined($request); +}; + +unless ($ENV{'SERVER_SOFTWARE'}) { # for nginx external fcgi + $CGI::Fast::Ext_Request = FCGI::Request( + \*STDIN, \*STDOUT, \*STDERR, + \%ENV, int($ARGV[0] || 0), 1 + ); +} + +my $conv = XML::Hash::XS->new( + use_attr => 1, + indent => 2, + output => \*STDOUT, + xml_decl => 1 +); + +my $tmpl_path = File::Spec->catdir($Bin, qw|.. tmpl|); + + +my $data = { + name => { + nick => 'cono' + }, + tree => { + example => [ + { name => 'Encyclopaedia', parent => 0, id => 1 }, + { name => 'Science', parent => 1, id => 2 }, + { name => 'Culture', parent => 1, id => 3 }, + { name => 'Art', parent => 3, id => 4 }, + { name => 'Craft', parent => 3, id => 5 } + ], + }, + third_party => { + results => [ + { artist_name => 'Madonna', venue => 'Kitchen', event => 'cooking', date => '2013-04-21' }, + { artist_name => 'cono', venue => 'Provectus-IT', event => 'presentation', date => '2013-04-20' }, + ] + } +}; + +while (1) { + eval { + $request = CGI::Fast->new(); + unless ($request) { + $_stop = 1; + + return; + } + + my ($tmpl, $output) = ('nick'); + if ($ENV{'REQUEST_URI'} =~ m|/([a-zA-Z0-9_]+)|) { + $tmpl = $1; + $output = $data->{$tmpl} if exists $data->{$tmpl}; + } + + die "Bad request" unless $output; + + if (-e File::Spec->catfile($tmpl_path, "$tmpl.xslt")) { + print "X-Xslt-Stylesheet: /$tmpl.xslt\r\n"; + } + + print qq(Content-type:application/xml;charset=utf-8\r\n\r\n); + $conv->hash2xml($output); + + }; + + if ($@) { + print qq(Content-type:text/html;charset=utf-8\r\n\r\nError: $@); + } + + $request = undef; + last if $_stop; + + if (-M $0 < 0) { + unless ($ENV{'SERVER_SOFTWARE'}) { # for nginx external fcgi + system("$0 ". int($ARGV[0] || 0).' &'); + } + last; + } +} + +exit(0); From ae44530a66d0ab9a76c4885de15a5473a9dba8ff Mon Sep 17 00:00:00 2001 From: Ted Nyman Date: Sun, 7 Jul 2013 21:26:33 -0700 Subject: [PATCH 049/184] Regenerate samples --- lib/linguist/samples.json | 181 +++++++++++++++++++++++--------------- 1 file changed, 112 insertions(+), 69 deletions(-) diff --git a/lib/linguist/samples.json b/lib/linguist/samples.json index 8d447189..d4248099 100644 --- a/lib/linguist/samples.json +++ b/lib/linguist/samples.json @@ -200,6 +200,7 @@ ".pir" ], "Perl": [ + ".fcgi", ".pl", ".pm", ".script!", @@ -383,8 +384,8 @@ ".gemrc" ] }, - "tokens_total": 361619, - "languages_total": 428, + "tokens_total": 362003, + "languages_total": 429, "tokens": { "ABAP": { "*/**": 1, @@ -29281,20 +29282,20 @@ "package": 14, "App": 131, "Ack": 136, - ";": 1149, - "use": 70, - "warnings": 15, - "strict": 15, - "File": 50, + ";": 1185, + "use": 76, + "warnings": 16, + "strict": 16, + "File": 54, "Next": 27, "Plugin": 2, "Basic": 10, "head1": 31, "NAME": 5, - "-": 843, + "-": 860, "A": 2, "container": 1, - "for": 76, + "for": 78, "functions": 2, "the": 131, "ack": 38, @@ -29305,11 +29306,11 @@ "our": 34, "COPYRIGHT": 6, "BEGIN": 7, - "{": 1092, - "}": 1105, + "{": 1121, + "}": 1134, "fh": 28, - "*STDOUT": 4, - "%": 77, + "*STDOUT": 6, + "%": 78, "types": 26, "type_wanted": 20, "mappings": 29, @@ -29319,9 +29320,9 @@ "dir_sep_chars": 10, "is_cygwin": 6, "is_windows": 12, - "Spec": 9, - "(": 891, - ")": 889, + "Spec": 13, + "(": 919, + ")": 917, "Glob": 4, "Getopt": 6, "Long": 6, @@ -29334,11 +29335,11 @@ "_sgbak": 2, "_build": 2, "actionscript": 2, - "[": 154, - "qw": 32, + "[": 159, + "qw": 35, "as": 33, "mxml": 2, - "]": 150, + "]": 155, "ada": 4, "adb": 2, "ads": 2, @@ -29351,7 +29352,7 @@ "q": 5, "Binary": 2, "files": 41, - "defined": 53, + "defined": 54, "by": 11, "Perl": 6, "T": 2, @@ -29381,17 +29382,17 @@ "xsl": 2, "xslt": 2, "ent": 2, - "while": 30, - "my": 395, - "type": 67, + "while": 31, + "my": 401, + "type": 69, "exts": 6, "each": 14, - "if": 266, + "if": 272, "ref": 33, "ext": 14, - "@": 36, + "@": 38, "push": 30, - "_": 100, + "_": 101, "mk": 2, "mak": 2, "not": 53, @@ -29402,7 +29403,7 @@ "eq": 31, "/MSWin32/": 2, "quotemeta": 5, - "catfile": 3, + "catfile": 4, "SYNOPSIS": 5, "If": 14, "you": 33, @@ -29435,9 +29436,9 @@ "and": 76, "returns": 4, "arguments.": 1, - "sub": 224, + "sub": 225, "@files": 12, - "ENV": 36, + "ENV": 40, "ACKRC": 2, "@dirs": 4, "HOME": 4, @@ -29448,21 +29449,21 @@ "GLOB_TILDE": 2, "filename": 68, "&&": 83, - "e": 19, + "e": 20, "open": 7, "or": 47, - "die": 37, + "die": 38, "@lines": 21, "/./": 2, - "/": 68, + "/": 69, "s*#/": 2, "<$fh>": 4, "chomp": 3, "close": 19, "s/": 22, - "+": 119, + "+": 120, "//": 9, - "return": 156, + "return": 157, "get_command_line_options": 4, "Gets": 3, "command": 13, @@ -29474,10 +29475,10 @@ "opt": 291, "pager": 19, "ACK_PAGER_COLOR": 7, - "||": 47, + "||": 49, "ACK_PAGER": 5, "getopt_specs": 6, - "m": 16, + "m": 17, "after_context": 16, "before_context": 18, "shift": 165, @@ -29490,7 +29491,7 @@ "ACK_COLOR_FILENAME": 5, "ACK_COLOR_LINENO": 4, "column": 4, - "#": 97, + "#": 99, "ignore": 7, "this": 18, "option": 7, @@ -29509,10 +29510,10 @@ "lines": 19, "l": 17, "regex": 28, - "n": 16, + "n": 19, "o": 17, - "output": 31, - "undef": 16, + "output": 36, + "undef": 17, "passthru": 9, "print0": 7, "Q": 7, @@ -29524,7 +29525,7 @@ "remove_dir_sep": 7, "delete": 10, "print_version_statement": 2, - "exit": 14, + "exit": 16, "show_help": 3, "@_": 41, "show_help_types": 2, @@ -29540,9 +29541,9 @@ "must": 5, "be": 30, "later": 2, - "exists": 18, + "exists": 19, "else": 53, - "qq": 16, + "qq": 18, "Unknown": 2, "unshift": 4, "@ARGV": 12, @@ -29552,28 +29553,28 @@ "filetypes_supported": 5, "parser": 12, "Parser": 4, - "new": 53, + "new": 55, "configure": 4, "getoptions": 4, "to_screen": 10, "defaults": 16, - "eval": 7, + "eval": 8, "Win32": 9, "Console": 2, "ANSI": 3, "key": 20, "value": 12, - "<": 14, + "<": 15, "join": 5, "map": 10, "@ret": 10, "from": 19, "warn": 22, - "..": 5, + "..": 7, "uniq": 4, "@uniq": 2, "sort": 8, - "a": 80, + "a": 81, "<=>": 2, "b": 6, "keys": 15, @@ -29590,7 +29591,7 @@ "bar": 3, "<--type-add>": 1, "xml=": 1, - ".": 119, + ".": 121, "Remove": 1, "them": 5, "add": 8, @@ -29612,7 +29613,7 @@ "creating": 2, "with": 26, "...": 2, - "unless": 34, + "unless": 39, "@exts": 8, ".//": 2, "Cannot": 4, @@ -29655,7 +29656,7 @@ "could": 2, "be.": 1, "For": 5, - "example": 4, + "example": 5, "": 1, "The": 20, "filetype": 1, @@ -29677,12 +29678,12 @@ "is_searchable": 8, "lc_basename": 8, "lc": 5, - "r": 10, + "r": 14, "B": 75, "header": 17, "SHEBANG#!#!": 2, "ruby": 3, - "|": 24, + "|": 28, "lua": 2, "erl": 2, "hp": 2, @@ -29710,7 +29711,7 @@ "nOo_/": 2, "_thpppt": 3, "_get_thpppt": 3, - "print": 32, + "print": 35, "_bar": 3, "<<": 6, "&": 22, @@ -29729,7 +29730,7 @@ "no": 21, "Print": 6, "between": 3, - "results": 7, + "results": 8, "different": 2, "files.": 6, "group": 2, @@ -29786,7 +29787,7 @@ "ignored": 6, "directories": 9, "unrestricted": 2, - "name": 38, + "name": 44, "Add/Remove": 2, "dirs": 2, "R": 2, @@ -29822,7 +29823,7 @@ "next": 9, "print_match_or_context": 13, "elsif": 10, - "last": 15, + "last": 17, "max": 12, "nmatches": 61, "show_filename": 35, @@ -29993,7 +29994,7 @@ "SEE": 3, "ALSO": 3, "": 1, - "SHEBANG#!perl": 4, + "SHEBANG#!perl": 5, "MAIN": 1, "main": 3, "env_is_usable": 3, @@ -30367,7 +30368,7 @@ "codesets": 1, "more": 2, "create": 2, - "tree": 1, + "tree": 2, "ideal": 1, "sending": 1, "": 1, @@ -30522,7 +30523,7 @@ "sort_sub": 4, "readdir": 1, "has_stat": 3, - "catdir": 1, + "catdir": 3, "closedir": 1, "": 1, "these": 1, @@ -30550,8 +30551,8 @@ "bless": 7, "could_be_binary": 4, "opened": 1, - "id": 1, - "*STDIN": 1, + "id": 6, + "*STDIN": 2, "size": 5, "_000": 1, "buffer": 9, @@ -30560,15 +30561,59 @@ "seek": 4, "readline": 1, "nexted": 3, + "CGI": 5, + "Fast": 3, + "XML": 2, + "Hash": 11, + "XS": 2, + "FindBin": 1, + "Bin": 3, + "#use": 1, + "lib": 2, + "_stop": 4, + "request": 11, + "SIG": 3, + "nginx": 2, + "external": 2, + "fcgi": 2, + "Ext_Request": 1, + "FCGI": 1, + "Request": 11, + "*STDERR": 1, + "int": 2, + "ARGV": 2, + "conv": 2, + "use_attr": 1, + "indent": 1, + "xml_decl": 1, + "tmpl_path": 2, + "tmpl": 5, + "data": 3, + "nick": 1, + "parent": 5, + "third_party": 1, + "artist_name": 2, + "venue": 2, + "event": 2, + "date": 2, + "zA": 1, + "Z0": 1, + "Content": 2, + "application/xml": 1, + "charset": 2, + "utf": 2, + "hash2xml": 1, + "text/html": 1, + "nError": 1, + "M": 1, + "system": 1, "Foo": 11, "Bar": 1, "@array": 1, "Plack": 25, - "Request": 10, "_001": 1, "HTTP": 16, "Headers": 8, - "Hash": 9, "MultiValue": 9, "Body": 2, "Upload": 2, @@ -30666,7 +30711,6 @@ "_make_upload": 2, "__END__": 2, "Portable": 2, - "request": 6, "PSGI": 6, "app_or_middleware": 1, "req": 28, @@ -30793,7 +30837,6 @@ "mounted.": 1, "hosted": 1, "mod_perl": 1, - "CGI": 2, "scripts": 1, "multiplexed": 1, "tools": 1, @@ -39026,7 +39069,7 @@ "OpenEdge ABL": 762, "Parrot Assembly": 6, "Parrot Internal Representation": 5, - "Perl": 17113, + "Perl": 17497, "PHP": 20647, "PogoScript": 250, "PowerShell": 12, @@ -39127,7 +39170,7 @@ "OpenEdge ABL": 5, "Parrot Assembly": 1, "Parrot Internal Representation": 1, - "Perl": 13, + "Perl": 14, "PHP": 8, "PogoScript": 1, "PowerShell": 2, @@ -39166,5 +39209,5 @@ "Xtend": 2, "YAML": 1 }, - "md5": "0c2809e4b07cb4ec80e99a245694470e" + "md5": "044f21ee2f8688cbafbbea5e5b664823" } \ No newline at end of file From 7d594b55e4003fd70847db5286345129f3192725 Mon Sep 17 00:00:00 2001 From: Ted Nyman Date: Sun, 7 Jul 2013 23:38:11 -0700 Subject: [PATCH 050/184] 2.8.4 --- github-linguist.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/github-linguist.gemspec b/github-linguist.gemspec index 5bd6a046..a6b4f30f 100644 --- a/github-linguist.gemspec +++ b/github-linguist.gemspec @@ -1,6 +1,6 @@ Gem::Specification.new do |s| s.name = 'github-linguist' - s.version = '2.8.3' + s.version = '2.8.4' s.summary = "GitHub Language detection" s.authors = "GitHub" From 23289d8901f54287f881b3466f0a905e9bbb998a Mon Sep 17 00:00:00 2001 From: Aaron Hill Date: Wed, 10 Jul 2013 18:56:41 -0400 Subject: [PATCH 051/184] Added REALbasic --- lib/linguist/languages.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index adbb36c5..3fa9fa65 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -1064,6 +1064,18 @@ R: lexer: S primary_extension: .r +REALbasic: + type: programming + lexer: VB.net + primary_extension: .rbbas + extensions: + - .rbfrm + - .rbmnu + - .rbres + - .rbtbar + - .rbuistate + + RHTML: type: markup group: HTML From 2a56719378620e31b6f9ad410c270cc70f7a58dd Mon Sep 17 00:00:00 2001 From: Alain Gilbert Date: Thu, 11 Jul 2013 11:59:44 -0400 Subject: [PATCH 052/184] There is a lexer for TypeScript in the pygments project --- lib/linguist/languages.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index adbb36c5..295459f7 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -1288,7 +1288,6 @@ Twig: TypeScript: type: programming color: "#31859c" - lexer: Text only aliases: - ts primary_extension: .ts From 4d45f1378372288f26e13cac41194be1fd97f904 Mon Sep 17 00:00:00 2001 From: Paul Betts Date: Thu, 11 Jul 2013 15:53:10 -0700 Subject: [PATCH 053/184] Hide .designer.cs files VS creates a bunch of files that, while important to version, are often also huge and boring. We should suppress them. --- lib/linguist/generated.rb | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/lib/linguist/generated.rb b/lib/linguist/generated.rb index 826fdc93..624885f1 100644 --- a/lib/linguist/generated.rb +++ b/lib/linguist/generated.rb @@ -55,8 +55,9 @@ module Linguist minified_javascript? || compiled_coffeescript? || xcode_project_file? || - generated_net_docfile? || generated_parser? || + generated_net_docfile? || + generated_net_designer_file? || generated_protocol_buffer? end @@ -143,6 +144,16 @@ module Linguist lines[-2].include?("") end + # Internal: Is this a codegen file for a .NET project? + # + # Visual Studio often uses code generation to generate partial classes, and + # these files can be quite unwieldy. Let's hide them. + # + # Returns true or false + def generated_net_designer_file? + name.downcase =~ /\.designer\.cs$/ + end + # Internal: Is the blob of JS a parser generated by PEG.js? # # PEG.js-generated parsers are not meant to be consumed by humans. From f51c5e315958fbad8244af3ffe80632dfb15dee6 Mon Sep 17 00:00:00 2001 From: Ted Nyman Date: Fri, 12 Jul 2013 14:10:55 -0700 Subject: [PATCH 054/184] Update documentation related to Pygments --- lib/linguist/blob_helper.rb | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/lib/linguist/blob_helper.rb b/lib/linguist/blob_helper.rb index 2d6b9ed0..81956e47 100644 --- a/lib/linguist/blob_helper.rb +++ b/lib/linguist/blob_helper.rb @@ -189,11 +189,10 @@ module Linguist # Public: Is the blob safe to colorize? # - # We use Pygments.rb for syntax highlighting blobs, which - # has some quirks and also is essentially 'un-killable' via - # normal timeout. To workaround this we try to - # carefully handling Pygments.rb anything it can't handle. - # + # We use Pygments for syntax highlighting blobs. Pygments + # can be too slow for very large blobs or for certain + # corner-case blobs. + # # Return true or false def safe_to_colorize? !large? && text? && !high_ratio_of_long_lines? From cc0451952012fa107caad9ba728ffb6b5eb6c965 Mon Sep 17 00:00:00 2001 From: Ted Nyman Date: Sat, 13 Jul 2013 23:16:36 -0700 Subject: [PATCH 055/184] Add another escript script --- lib/linguist/samples.json | 330 ++++++++++++++++++++++++++++----- samples/Erlang/release.script! | 122 ++++++++++++ 2 files changed, 408 insertions(+), 44 deletions(-) create mode 100644 samples/Erlang/release.script! diff --git a/lib/linguist/samples.json b/lib/linguist/samples.json index d4248099..1478e7c5 100644 --- a/lib/linguist/samples.json +++ b/lib/linguist/samples.json @@ -384,8 +384,8 @@ ".gemrc" ] }, - "tokens_total": 362003, - "languages_total": 429, + "tokens_total": 363070, + "languages_total": 430, "tokens": { "ABAP": { "*/**": 1, @@ -12484,11 +12484,11 @@ "egrep": 1 }, "Erlang": { - "SHEBANG#!escript": 2, - "%": 13, - "-": 88, - "*": 3, - "erlang": 1, + "SHEBANG#!escript": 3, + "%": 134, + "-": 262, + "*": 9, + "erlang": 5, "smp": 1, "enable": 1, "sname": 1, @@ -12496,43 +12496,43 @@ "mnesia": 1, "debug": 1, "verbose": 1, - "main": 3, - "(": 172, - "[": 46, + "main": 4, + "(": 236, + "[": 66, "String": 2, - "]": 41, - ")": 166, + "]": 61, + ")": 230, "try": 2, "N": 6, "list_to_integer": 1, "F": 16, "fac": 4, - "io": 3, - "format": 3, + "io": 5, + "format": 7, "catch": 2, - "_": 45, + "_": 52, "usage": 3, - "end": 2, - ";": 43, - ".": 28, - "halt": 1, + "end": 3, + ";": 56, + ".": 37, + "halt": 2, "export": 2, "main/1": 1, "For": 1, "each": 1, "header": 1, - "file": 3, + "file": 6, "it": 2, "scans": 1, "thru": 1, "all": 1, "records": 1, - "and": 4, + "and": 8, "create": 1, "helper": 1, "functions": 2, "Helper": 1, - "are": 1, + "are": 3, "setters": 1, "getters": 1, "fields": 4, @@ -12550,20 +12550,20 @@ "<->": 5, "hrl": 1, "relative": 1, - "to": 1, + "to": 2, "current": 1, "dir": 1, - "OutDir": 2, + "OutDir": 4, "ModuleName": 3, "HeaderComment": 2, "ModuleDeclaration": 2, - "+": 208, + "+": 214, "<": 1, "Src": 10, "format_src": 8, - "lists": 6, + "lists": 11, "sort": 1, - "flatten": 5, + "flatten": 6, "read": 2, "generate_type_default_function": 2, "write_file": 1, @@ -12572,22 +12572,22 @@ "HeaderFile": 4, "epp": 1, "parse_file": 1, - "of": 2, - "{": 90, - "ok": 22, + "of": 9, + "{": 109, + "ok": 34, "Tree": 4, - "}": 90, + "}": 109, "parse": 2, - "error": 2, + "error": 4, "Error": 4, "catched_error": 1, - "end.": 2, - "|": 15, + "end.": 3, + "|": 25, "T": 24, "when": 29, "length": 6, "Type": 3, - "A": 4, + "A": 5, "B": 4, "NSrc": 4, "_Type": 1, @@ -12601,7 +12601,7 @@ "if": 1, "generate_setter_getter_function": 5, "generate_type_function": 3, - "true": 1, + "true": 3, "generate_fields_function": 2, "generate_fields_atom_function": 2, "parse_field_name": 5, @@ -12620,7 +12620,7 @@ "parse_field": 6, "AccFields": 6, "AccParentFields": 6, - "case": 1, + "case": 3, "Field": 2, "PField": 2, "parse_field_atom": 4, @@ -12630,7 +12630,7 @@ "to_setter_getter_function": 5, "setter": 2, "getter": 2, - "This": 1, + "This": 2, "is": 1, "auto": 1, "generated": 1, @@ -12640,7 +12640,7 @@ "t": 1, "edit": 1, "record_utils": 1, - "compile": 1, + "compile": 2, "export_all": 1, "include": 1, "abstract_message": 21, @@ -12671,12 +12671,254 @@ "ParentProperty": 6, "is_atom": 2, "set": 13, - "Value": 33, + "Value": 35, "NewObj": 20, "Obj#abstract_message": 7, "Obj#async_message": 3, "NewParentObject": 2, - "undefined.": 1 + "undefined.": 1, + "Mode": 1, + "coding": 1, + "utf": 1, + "tab": 1, + "width": 1, + "c": 2, + "basic": 1, + "offset": 1, + "indent": 1, + "tabs": 1, + "mode": 2, + "BSD": 1, + "LICENSE": 1, + "Copyright": 1, + "Michael": 2, + "Truog": 2, + "": 1, + "at": 1, + "gmail": 1, + "dot": 1, + "com": 1, + "All": 2, + "rights": 1, + "reserved.": 1, + "Redistribution": 1, + "use": 2, + "in": 3, + "source": 2, + "binary": 2, + "forms": 1, + "with": 2, + "or": 3, + "without": 2, + "modification": 1, + "permitted": 1, + "provided": 2, + "that": 1, + "the": 9, + "following": 4, + "conditions": 3, + "met": 1, + "Redistributions": 2, + "code": 2, + "must": 3, + "retain": 1, + "above": 2, + "copyright": 2, + "notice": 2, + "this": 4, + "list": 2, + "disclaimer.": 1, + "form": 1, + "reproduce": 1, + "disclaimer": 1, + "documentation": 1, + "and/or": 1, + "other": 1, + "materials": 2, + "distribution.": 1, + "advertising": 1, + "mentioning": 1, + "features": 1, + "software": 3, + "display": 1, + "acknowledgment": 1, + "product": 1, + "includes": 1, + "developed": 1, + "by": 1, + "The": 1, + "name": 1, + "author": 2, + "may": 1, + "not": 1, + "be": 1, + "used": 1, + "endorse": 1, + "promote": 1, + "products": 1, + "derived": 1, + "from": 1, + "specific": 1, + "prior": 1, + "written": 1, + "permission": 1, + "THIS": 2, + "SOFTWARE": 2, + "IS": 1, + "PROVIDED": 1, + "BY": 1, + "THE": 5, + "COPYRIGHT": 2, + "HOLDERS": 1, + "AND": 4, + "CONTRIBUTORS": 2, + "ANY": 4, + "EXPRESS": 1, + "OR": 8, + "IMPLIED": 2, + "WARRANTIES": 2, + "INCLUDING": 3, + "BUT": 2, + "NOT": 2, + "LIMITED": 2, + "TO": 2, + "OF": 8, + "MERCHANTABILITY": 1, + "FITNESS": 1, + "FOR": 2, + "PARTICULAR": 1, + "PURPOSE": 1, + "ARE": 1, + "DISCLAIMED.": 1, + "IN": 3, + "NO": 1, + "EVENT": 1, + "SHALL": 1, + "OWNER": 1, + "BE": 1, + "LIABLE": 1, + "DIRECT": 1, + "INDIRECT": 1, + "INCIDENTAL": 1, + "SPECIAL": 1, + "EXEMPLARY": 1, + "CONSEQUENTIAL": 1, + "DAMAGES": 1, + "PROCUREMENT": 1, + "SUBSTITUTE": 1, + "GOODS": 1, + "SERVICES": 1, + "LOSS": 1, + "USE": 2, + "DATA": 1, + "PROFITS": 1, + "BUSINESS": 1, + "INTERRUPTION": 1, + "HOWEVER": 1, + "CAUSED": 1, + "ON": 1, + "THEORY": 1, + "LIABILITY": 2, + "WHETHER": 1, + "CONTRACT": 1, + "STRICT": 1, + "TORT": 1, + "NEGLIGENCE": 1, + "OTHERWISE": 1, + "ARISING": 1, + "WAY": 1, + "OUT": 1, + "EVEN": 1, + "IF": 1, + "ADVISED": 1, + "POSSIBILITY": 1, + "SUCH": 1, + "DAMAGE.": 1, + "sys": 2, + "RelToolConfig": 5, + "target_dir": 2, + "TargetDir": 14, + "overlay": 2, + "OverlayConfig": 4, + "consult": 1, + "Spec": 2, + "reltool": 2, + "get_target_spec": 1, + "make_dir": 1, + "eexist": 1, + "exit_code": 3, + "eval_target_spec": 1, + "root_dir": 1, + "process_overlay": 2, + "shell": 3, + "Command": 3, + "Arguments": 3, + "CommandSuffix": 2, + "reverse": 4, + "os": 1, + "cmd": 1, + "io_lib": 2, + "boot_rel_vsn": 2, + "Config": 2, + "_RelToolConfig": 1, + "rel": 2, + "_Name": 1, + "Ver": 1, + "proplists": 1, + "lookup": 1, + "Ver.": 1, + "minimal": 2, + "parsing": 1, + "for": 1, + "handling": 1, + "mustache": 11, + "syntax": 1, + "Body": 2, + "Context": 11, + "Result": 10, + "_Context": 1, + "KeyStr": 6, + "mustache_key": 4, + "C": 4, + "Rest": 10, + "Key": 2, + "list_to_existing_atom": 1, + "dict": 2, + "find": 1, + "support": 1, + "based": 1, + "on": 1, + "rebar": 1, + "overlays": 1, + "BootRelVsn": 2, + "OverlayVars": 2, + "from_list": 1, + "erts_vsn": 1, + "system_info": 1, + "version": 1, + "rel_vsn": 1, + "hostname": 1, + "net_adm": 1, + "localhost": 1, + "BaseDir": 7, + "get_cwd": 1, + "execute_overlay": 6, + "_Vars": 1, + "_BaseDir": 1, + "_TargetDir": 1, + "mkdir": 1, + "Out": 4, + "Vars": 7, + "filename": 3, + "join": 3, + "copy": 1, + "In": 2, + "InFile": 3, + "OutFile": 2, + "filelib": 1, + "is_file": 1, + "ExitCode": 2, + "flush": 1 }, "fish": { "#": 18, @@ -39027,7 +39269,7 @@ "edn": 227, "Elm": 628, "Emacs Lisp": 1756, - "Erlang": 1861, + "Erlang": 2928, "fish": 636, "Forth": 1516, "GAS": 133, @@ -39128,7 +39370,7 @@ "edn": 1, "Elm": 3, "Emacs Lisp": 2, - "Erlang": 4, + "Erlang": 5, "fish": 3, "Forth": 7, "GAS": 1, @@ -39209,5 +39451,5 @@ "Xtend": 2, "YAML": 1 }, - "md5": "044f21ee2f8688cbafbbea5e5b664823" + "md5": "93478efbbf3cf2d97da26c6b2257429a" } \ No newline at end of file diff --git a/samples/Erlang/release.script! b/samples/Erlang/release.script! new file mode 100644 index 00000000..9b06a6dd --- /dev/null +++ b/samples/Erlang/release.script! @@ -0,0 +1,122 @@ +#!/usr/bin/env escript +%%! +%-*-Mode:erlang;coding:utf-8;tab-width:4;c-basic-offset:4;indent-tabs-mode:()-*- +% ex: set ft=erlang fenc=utf-8 sts=4 ts=4 sw=4 et: +%%% +%%%------------------------------------------------------------------------ +%%% BSD LICENSE +%%% +%%% Copyright (c) 2013, Michael Truog +%%% All rights reserved. +%%% +%%% Redistribution and use in source and binary forms, with or without +%%% modification, are permitted provided that the following conditions are met: +%%% +%%% * Redistributions of source code must retain the above copyright +%%% notice, this list of conditions and the following disclaimer. +%%% * Redistributions in binary form must reproduce the above copyright +%%% notice, this list of conditions and the following disclaimer in +%%% the documentation and/or other materials provided with the +%%% distribution. +%%% * All advertising materials mentioning features or use of this +%%% software must display the following acknowledgment: +%%% This product includes software developed by Michael Truog +%%% * The name of the author may not be used to endorse or promote +%%% products derived from this software without specific prior +%%% written permission +%%% +%%% THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND +%%% CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, +%%% INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES +%%% OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +%%% DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR +%%% CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +%%% SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +%%% BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +%%% SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +%%% INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, +%%% WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING +%%% NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +%%% OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH +%%% DAMAGE. +%%%------------------------------------------------------------------------ + +-author('mjtruog [at] gmail (dot) com'). + +-mode(compile). + +main(_) -> + {ok, + [{sys, _} = RelToolConfig, + {target_dir, TargetDir}, + {overlay, OverlayConfig}]} = file:consult("reltool.config"), + {ok, Spec} = reltool:get_target_spec([RelToolConfig]), + case file:make_dir(TargetDir) of + ok -> + ok; + {error, eexist} -> + io:format("release already exists? (~p)~n", [TargetDir]), + exit_code(1) + end, + ok = reltool:eval_target_spec(Spec, code:root_dir(), TargetDir), + ok = process_overlay(RelToolConfig, TargetDir, OverlayConfig), + exit_code(0). + +shell(Command, Arguments) -> + CommandSuffix = " && echo 0 || echo 1", + case lists:reverse(os:cmd(lists:flatten( + io_lib:format(Command ++ CommandSuffix, Arguments)))) of + [_, $0 | _] -> + ok; + [_, $1 | _] -> + io:format("\"~s\" failed!~n", [io_lib:format(Command, Arguments)]), + error + end. + +boot_rel_vsn({sys, Config} = _RelToolConfig) -> + {rel, _Name, Ver, _} = proplists:lookup(rel, Config), + Ver. + +%% minimal parsing for handling mustache syntax +mustache(Body, Context) -> + mustache(Body, "", Context). +mustache([], Result, _Context) -> + lists:reverse(Result); +mustache([${, ${ | KeyStr], Result, Context) -> + mustache_key(KeyStr, "", Result, Context); +mustache([C | Rest], Result, Context) -> + mustache(Rest, [C | Result], Context). +mustache_key([$}, $} | Rest], KeyStr, Result, Context) -> + Key = erlang:list_to_existing_atom(lists:reverse(KeyStr)), + {ok, Value} = dict:find(Key, Context), + mustache(Rest, lists:reverse(Value) ++ Result, Context); +mustache_key([C | Rest], KeyStr, Result, Context) -> + mustache_key(Rest, [C | KeyStr], Result, Context). + +%% support minimal overlay based on rebar overlays +process_overlay(RelToolConfig, TargetDir, OverlayConfig) -> + BootRelVsn = boot_rel_vsn(RelToolConfig), + OverlayVars = + dict:from_list([{erts_vsn, "erts-" ++ erlang:system_info(version)}, + {rel_vsn, BootRelVsn}, + {target_dir, TargetDir}, + {hostname, net_adm:localhost()}]), + {ok, BaseDir} = file:get_cwd(), + execute_overlay(OverlayConfig, OverlayVars, BaseDir, TargetDir). + +execute_overlay([], _Vars, _BaseDir, _TargetDir) -> + ok; +execute_overlay([{mkdir, Out} | Rest], Vars, BaseDir, TargetDir) -> + OutDir = mustache(filename:join(TargetDir, Out), Vars), + ok = shell("mkdir -p ~s", [OutDir]), + execute_overlay(Rest, Vars, BaseDir, TargetDir); +execute_overlay([{copy, In, Out} | Rest], Vars, BaseDir, TargetDir) -> + InFile = mustache(filename:join(BaseDir, In), Vars), + OutFile = mustache(filename:join(TargetDir, Out), Vars), + true = filelib:is_file(InFile), + ok = shell("cp -R ~s ~s", [InFile, OutFile]), + execute_overlay(Rest, Vars, BaseDir, TargetDir). + +exit_code(ExitCode) -> + erlang:halt(ExitCode, [{flush, true}]). + From f23110a98dd472b016c9346394510690ae46be8b Mon Sep 17 00:00:00 2001 From: Ted Nyman Date: Sat, 13 Jul 2013 23:23:41 -0700 Subject: [PATCH 056/184] Bump to 2.8.5 --- github-linguist.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/github-linguist.gemspec b/github-linguist.gemspec index a6b4f30f..0824fe3b 100644 --- a/github-linguist.gemspec +++ b/github-linguist.gemspec @@ -1,6 +1,6 @@ Gem::Specification.new do |s| s.name = 'github-linguist' - s.version = '2.8.4' + s.version = '2.8.5' s.summary = "GitHub Language detection" s.authors = "GitHub" From f73f3095955dab54930686fd0ef20947c5ab54e2 Mon Sep 17 00:00:00 2001 From: Ted Nyman Date: Mon, 15 Jul 2013 12:06:07 -0700 Subject: [PATCH 057/184] Don't bother with .gitignore files --- lib/linguist/vendor.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/linguist/vendor.yml b/lib/linguist/vendor.yml index f8188217..8132cd04 100644 --- a/lib/linguist/vendor.yml +++ b/lib/linguist/vendor.yml @@ -117,8 +117,9 @@ # Samples folders - ^[Ss]amples/ -# LICENSE files +# LICENSE files and gitignore - ^LICENSE$ +- gitignore$ # Test fixtures - ^[Tt]est/fixtures/ From 904e86d901f2a6e585413c6a86a20be25f3945de Mon Sep 17 00:00:00 2001 From: Ted Nyman Date: Mon, 15 Jul 2013 12:07:33 -0700 Subject: [PATCH 058/184] 2.8.6 --- github-linguist.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/github-linguist.gemspec b/github-linguist.gemspec index 0824fe3b..8e87d7b4 100644 --- a/github-linguist.gemspec +++ b/github-linguist.gemspec @@ -1,6 +1,6 @@ Gem::Specification.new do |s| s.name = 'github-linguist' - s.version = '2.8.5' + s.version = '2.8.6' s.summary = "GitHub Language detection" s.authors = "GitHub" From 43f4f5bd32ded77ca1a38d91a95836015b2c42f3 Mon Sep 17 00:00:00 2001 From: Charlie Somerville Date: Wed, 17 Jul 2013 01:51:34 -0700 Subject: [PATCH 059/184] add Slash to linguist --- lib/linguist/languages.yml | 5 ++ samples/Slash/brainfuck.sl | 127 +++++++++++++++++++++++++++++++++++++ 2 files changed, 132 insertions(+) create mode 100644 samples/Slash/brainfuck.sl diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index adbb36c5..0626b98a 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -1204,6 +1204,11 @@ Shell: extensions: - .tmux +Slash: + type: programming + color: "#007eff" + primary_extension: .sl + Smalltalk: type: programming color: "#596706" diff --git a/samples/Slash/brainfuck.sl b/samples/Slash/brainfuck.sl new file mode 100644 index 00000000..834359ba --- /dev/null +++ b/samples/Slash/brainfuck.sl @@ -0,0 +1,127 @@ +<% + +class Env { + def init { + @memory = []; + @ptr = 0; + } + + def ptr { @ptr } + def ptr=(ptr) { @ptr = ptr } + + def current_value { @memory[@ptr] || 0 } + def current_value=(value) { @memory[@ptr] = value } +} + +class AST { + class Next { + def eval(env) { + env.ptr++; + } + } + + class Prev { + def eval(env) { + env.ptr--; + } + } + + class Inc { + def eval(env) { + env.current_value++; + } + } + + class Dec { + def eval(env) { + env.current_value--; + } + } + + class Output { + def eval(env) { + print(env.current_value.char); + } + } + + class Input { + def eval(env) { + ... + } + } + + class Sequence { + def init(nodes) { + @nodes = nodes; + } + + def eval(env) { + for node in @nodes { + node.eval(env); + } + } + } + + class Loop { + def init(seq) { + @seq = seq; + } + + def eval(env) { + while env.current_value != 0 { + @seq.eval(env); + } + } + } +} + +class Parser { + def init(str) { + @chars = str.split(""); + } + + def parse { + @stack = [[]]; + for char in @chars { + _parse_char(char); + } + if @stack.length != 1 { + throw SyntaxError.new("unexpected end of input"); + } + AST::Sequence.new(@stack.last); + } + + def _parse_char(char) { + switch char { + ">" { _add(AST::Next.new); } + "<" { _add(AST::Prev.new); } + "+" { _add(AST::Inc.new); } + "-" { _add(AST::Dec.new); } + "." { _add(AST::Output.new); } + "," { _add(AST::Input.new); } + "[" { _open_loop(); } + "]" { _close_loop(); } + } + } + + def _add(node) { + @stack.last.push(node); + } + + def _open_loop { + @stack.push([]); + } + + def _close_loop { + if @stack.length == 1 { + throw SyntaxError.new("unexpected ']'"); + } + + nodes = @stack.pop; + _add(AST::Loop.new(AST::Sequence.new(nodes))); + } +} + +src = File.read(ARGV.first); +ast = Parser.new(src).parse; +ast.eval(Env.new); From b462e29e1de3635e4a67314f48336961d6451046 Mon Sep 17 00:00:00 2001 From: Charlie Somerville Date: Wed, 17 Jul 2013 02:35:38 -0700 Subject: [PATCH 060/184] update pygments --- github-linguist.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/github-linguist.gemspec b/github-linguist.gemspec index 8e87d7b4..1f1538c8 100644 --- a/github-linguist.gemspec +++ b/github-linguist.gemspec @@ -12,7 +12,7 @@ Gem::Specification.new do |s| s.add_dependency 'charlock_holmes', '~> 0.6.6' s.add_dependency 'escape_utils', '~> 0.3.1' s.add_dependency 'mime-types', '~> 1.19' - s.add_dependency 'pygments.rb', '~> 0.4.2' + s.add_dependency 'pygments.rb', '~> 0.5.2' s.add_development_dependency 'mocha' s.add_development_dependency 'json' s.add_development_dependency 'rake' From 7d6ee108c4904c11302c16206c93cd75cfd88041 Mon Sep 17 00:00:00 2001 From: Ted Nyman Date: Wed, 17 Jul 2013 02:51:07 -0700 Subject: [PATCH 061/184] 2.8.7 --- github-linguist.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/github-linguist.gemspec b/github-linguist.gemspec index 1f1538c8..c5fe0798 100644 --- a/github-linguist.gemspec +++ b/github-linguist.gemspec @@ -1,6 +1,6 @@ Gem::Specification.new do |s| s.name = 'github-linguist' - s.version = '2.8.6' + s.version = '2.8.7' s.summary = "GitHub Language detection" s.authors = "GitHub" From e633d565a914ffe7f2298c870f0a6e2f88f86a23 Mon Sep 17 00:00:00 2001 From: Ted Nyman Date: Wed, 17 Jul 2013 02:59:28 -0700 Subject: [PATCH 062/184] Update samples --- lib/linguist/samples.json | 85 +++++++++++++++++++++++++++++++++++++-- 1 file changed, 82 insertions(+), 3 deletions(-) diff --git a/lib/linguist/samples.json b/lib/linguist/samples.json index 1478e7c5..97e4d386 100644 --- a/lib/linguist/samples.json +++ b/lib/linguist/samples.json @@ -275,6 +275,9 @@ ".sh", ".zsh" ], + "Slash": [ + ".sl" + ], "Standard ML": [ ".sig", ".sml" @@ -384,8 +387,8 @@ ".gemrc" ] }, - "tokens_total": 363070, - "languages_total": 430, + "tokens_total": 363257, + "languages_total": 431, "tokens": { "ABAP": { "*/**": 1, @@ -36480,6 +36483,80 @@ "foodforthought.jpg": 1, "name##*fo": 1 }, + "Slash": { + "<%>": 1, + "class": 11, + "Env": 1, + "def": 18, + "init": 4, + "memory": 3, + "ptr": 9, + "0": 3, + "ptr=": 1, + "current_value": 5, + "current_value=": 1, + "value": 1, + "AST": 4, + "Next": 1, + "eval": 10, + "env": 16, + "Prev": 1, + "Inc": 1, + "Dec": 1, + "Output": 1, + "print": 1, + "char": 5, + "Input": 1, + "Sequence": 2, + "nodes": 6, + "for": 2, + "node": 2, + "in": 2, + "Loop": 1, + "seq": 4, + "while": 1, + "Parser": 1, + "str": 2, + "chars": 2, + "split": 1, + "parse": 1, + "stack": 3, + "_parse_char": 2, + "if": 1, + "length": 1, + "1": 1, + "throw": 1, + "SyntaxError": 1, + "new": 2, + "unexpected": 2, + "end": 1, + "of": 1, + "input": 1, + "last": 1, + "switch": 1, + "<": 1, + "+": 1, + "-": 1, + ".": 1, + "[": 1, + "]": 1, + ")": 7, + ";": 6, + "}": 3, + "@stack.pop": 1, + "_add": 1, + "(": 6, + "Loop.new": 1, + "Sequence.new": 1, + "src": 2, + "File.read": 1, + "ARGV.first": 1, + "ast": 1, + "Parser.new": 1, + ".parse": 1, + "ast.eval": 1, + "Env.new": 1 + }, "Standard ML": { "signature": 2, "LAZY_BASE": 3, @@ -39330,6 +39407,7 @@ "Scilab": 69, "SCSS": 39, "Shell": 3542, + "Slash": 187, "Standard ML": 243, "SuperCollider": 268, "Tea": 3, @@ -39431,6 +39509,7 @@ "Scilab": 3, "SCSS": 1, "Shell": 36, + "Slash": 1, "Standard ML": 2, "SuperCollider": 2, "Tea": 1, @@ -39451,5 +39530,5 @@ "Xtend": 2, "YAML": 1 }, - "md5": "93478efbbf3cf2d97da26c6b2257429a" + "md5": "9231e2a4c298b252befc5e19f2b46581" } \ No newline at end of file From 772a9a582ca9542341353fede803da09f5932afd Mon Sep 17 00:00:00 2001 From: Ted Nyman Date: Wed, 17 Jul 2013 03:01:53 -0700 Subject: [PATCH 063/184] 2.8.8 --- github-linguist.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/github-linguist.gemspec b/github-linguist.gemspec index c5fe0798..9ae1fca4 100644 --- a/github-linguist.gemspec +++ b/github-linguist.gemspec @@ -1,6 +1,6 @@ Gem::Specification.new do |s| s.name = 'github-linguist' - s.version = '2.8.7' + s.version = '2.8.8' s.summary = "GitHub Language detection" s.authors = "GitHub" From 0978258f5790c9996721da1d04580de54bf9a322 Mon Sep 17 00:00:00 2001 From: Jay Phelps Date: Thu, 18 Jul 2013 01:47:14 -0700 Subject: [PATCH 064/184] Added common alternative Handlebars extensions --- lib/linguist/languages.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 0626b98a..256042b5 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -581,7 +581,11 @@ Handlebars: type: markup lexer: Text only primary_extension: .handlebars - + extensions: + - .html.handlebars + - .hbs + - .html.hbs + Haskell: type: programming color: "#29b544" From 00291830782ae6e5bab16ccd05adc26a59114c08 Mon Sep 17 00:00:00 2001 From: Jay Phelps Date: Thu, 18 Jul 2013 02:00:32 -0700 Subject: [PATCH 065/184] Needed handlebars extensions in alpha-numeric order. --- lib/linguist/languages.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 256042b5..52798572 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -582,8 +582,8 @@ Handlebars: lexer: Text only primary_extension: .handlebars extensions: - - .html.handlebars - .hbs + - .html.handlebars - .html.hbs Haskell: From 5a9d35917f748a95900b57fd64fd4c8b073a8553 Mon Sep 17 00:00:00 2001 From: Lazersmoke Date: Fri, 19 Jul 2013 00:02:39 -0500 Subject: [PATCH 066/184] Vendored .DS_Store In case a Mac user uploads lots of folders with .DS_Stores and changes their project language as such. --- lib/linguist/vendor.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/linguist/vendor.yml b/lib/linguist/vendor.yml index 8132cd04..e4d2f86c 100644 --- a/lib/linguist/vendor.yml +++ b/lib/linguist/vendor.yml @@ -123,3 +123,6 @@ # Test fixtures - ^[Tt]est/fixtures/ + +# .DS_Store's +- .[Dd][Ss]_[Ss]tore$ From b71cab6add59dcc6ce4e0a88191a9a2ffd7bf491 Mon Sep 17 00:00:00 2001 From: Ted Nyman Date: Fri, 19 Jul 2013 22:51:59 -0700 Subject: [PATCH 067/184] Give go language a color closer to its website --- lib/linguist/languages.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 0626b98a..4debb8ea 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -497,7 +497,7 @@ Gettext Catalog: Go: type: programming - color: "#8d04eb" + color: "#FCFCA4" primary_extension: .go Gosu: From 4fb910533f2107d785d21c355c6f75c2f66868a3 Mon Sep 17 00:00:00 2001 From: Ted Nyman Date: Sat, 20 Jul 2013 15:05:49 -0700 Subject: [PATCH 068/184] Add another php script sample --- samples/PHP/php2.script! | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 samples/PHP/php2.script! diff --git a/samples/PHP/php2.script! b/samples/PHP/php2.script! new file mode 100644 index 00000000..07935231 --- /dev/null +++ b/samples/PHP/php2.script! @@ -0,0 +1,22 @@ +#!/usr/bin/env php +run(); From 3e26b2a0a7763c24e13e21f4ad04dde33d2b2fc3 Mon Sep 17 00:00:00 2001 From: Ted Nyman Date: Sat, 20 Jul 2013 15:10:46 -0700 Subject: [PATCH 069/184] Update samples file --- lib/linguist/samples.json | 85 +++++++++++++++++++++++++-------------- 1 file changed, 55 insertions(+), 30 deletions(-) diff --git a/lib/linguist/samples.json b/lib/linguist/samples.json index 97e4d386..c7da5dfc 100644 --- a/lib/linguist/samples.json +++ b/lib/linguist/samples.json @@ -387,8 +387,8 @@ ".gemrc" ] }, - "tokens_total": 363257, - "languages_total": 431, + "tokens_total": 363334, + "languages_total": 432, "tokens": { "ABAP": { "*/**": 1, @@ -31240,12 +31240,12 @@ }, "PHP": { "<": 11, - "php": 8, + "php": 12, "namespace": 28, "Symfony": 24, "Component": 24, "Console": 17, - ";": 1382, + ";": 1383, "use": 23, "Input": 6, "InputInterface": 4, @@ -31266,7 +31266,7 @@ "FormatterHelper": 2, "DialogHelper": 2, "class": 21, - "Application": 2, + "Application": 3, "{": 974, "private": 24, "commands": 39, @@ -31282,11 +31282,11 @@ "public": 202, "function": 205, "__construct": 8, - "(": 2415, - ")": 2416, + "(": 2416, + ")": 2417, "this": 928, "-": 1271, - "true": 132, + "true": 133, "array": 296, "getDefaultHelperSet": 2, "getDefaultInputDefinition": 2, @@ -31296,12 +31296,12 @@ "command": 41, "add": 7, "}": 972, - "run": 3, + "run": 4, "input": 20, "null": 164, "output": 60, "if": 450, - "new": 73, + "new": 74, "try": 3, "statusCode": 14, "doRun": 2, @@ -31460,12 +31460,12 @@ "getFile": 2, "getLine": 2, "type": 62, - "file": 2, + "file": 3, "while": 6, "getPrevious": 1, "getSynopsis": 1, "protected": 59, - "defined": 2, + "defined": 5, "ansicon": 4, "getenv": 2, "preg_replace": 4, @@ -31536,14 +31536,14 @@ "array_merge": 32, "setServerParameter": 1, "getServerParameter": 1, - "default": 8, + "default": 9, "getHistory": 1, "getCookieJar": 1, "getCrawler": 1, "getResponse": 1, "getRequest": 1, "click": 1, - "link": 9, + "link": 10, "submit": 2, "getMethod": 6, "getUri": 8, @@ -31594,20 +31594,20 @@ "getParameters": 1, "getFiles": 3, "getServer": 1, - "": 2, + "": 3, "CakePHP": 6, "tm": 6, "Rapid": 2, "Development": 2, "Framework": 2, - "http": 12, + "http": 14, "cakephp": 4, "org": 10, - "Copyright": 4, + "Copyright": 5, "2005": 4, "2012": 4, "Cake": 7, - "Software": 4, + "Software": 5, "Foundation": 4, "Inc": 4, "cakefoundation": 4, @@ -31622,7 +31622,7 @@ "retain": 2, "the": 11, "above": 2, - "copyright": 4, + "copyright": 5, "notice": 2, "Project": 2, "package": 2, @@ -31632,8 +31632,8 @@ "0": 4, "2": 2, "9": 1, - "license": 4, - "www": 2, + "license": 6, + "www": 4, "opensource": 2, "licenses": 2, "mit": 2, @@ -31690,7 +31690,7 @@ "performing": 2, "specific": 1, "resource": 1, - "or": 7, + "or": 9, "resources": 1, "For": 2, "example": 2, @@ -31734,7 +31734,7 @@ "manipulate": 1, "aspects": 1, "created": 8, - "by": 1, + "by": 2, "Dispatcher": 1, "based": 2, "routing.": 1, @@ -31939,7 +31939,7 @@ "_scaffoldError": 1, "php_help": 1, "arg": 1, - "t": 25, + "t": 26, "php_permission": 1, "TRUE": 1, "php_eval": 1, @@ -32041,7 +32041,7 @@ "lowercase": 1, "User": 1, "is": 1, - "have": 1, + "have": 2, "at": 1, "least": 1, "primary": 3, @@ -32258,8 +32258,33 @@ "isUnique": 1, "is_bool": 1, "sql": 1, - "SHEBANG#!php": 2, - "echo": 2 + "SHEBANG#!php": 3, + "echo": 2, + "Yii": 3, + "console": 3, + "bootstrap": 1, + "yiiframework": 2, + "com": 2, + "c": 1, + "2008": 1, + "LLC": 1, + "YII_DEBUG": 2, + "define": 2, + "fcgi": 1, + "doesn": 1, + "STDIN": 3, + "fopen": 1, + "stdin": 1, + "r": 1, + "require": 3, + "__DIR__": 3, + "vendor": 2, + "yiisoft": 1, + "yii2": 1, + "yii": 2, + "autoload": 1, + "config": 3, + "application": 2 }, "PogoScript": { "httpism": 1, @@ -39389,7 +39414,7 @@ "Parrot Assembly": 6, "Parrot Internal Representation": 5, "Perl": 17497, - "PHP": 20647, + "PHP": 20724, "PogoScript": 250, "PowerShell": 12, "Processing": 74, @@ -39491,7 +39516,7 @@ "Parrot Assembly": 1, "Parrot Internal Representation": 1, "Perl": 14, - "PHP": 8, + "PHP": 9, "PogoScript": 1, "PowerShell": 2, "Processing": 1, @@ -39530,5 +39555,5 @@ "Xtend": 2, "YAML": 1 }, - "md5": "9231e2a4c298b252befc5e19f2b46581" + "md5": "23dbdcbc5407d2cd14bbb5926d29774c" } \ No newline at end of file From 78ed103f901b309e1f0962b949a5423753649998 Mon Sep 17 00:00:00 2001 From: Ted Nyman Date: Sat, 20 Jul 2013 23:02:12 -0700 Subject: [PATCH 070/184] Fix casing --- lib/linguist/languages.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 4debb8ea..3d865ff9 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -497,7 +497,7 @@ Gettext Catalog: Go: type: programming - color: "#FCFCA4" + color: "#fcfca4" primary_extension: .go Gosu: From 32a106cedd32a4f4bd58a514b3da734a575e4041 Mon Sep 17 00:00:00 2001 From: Ted Nyman Date: Sat, 20 Jul 2013 23:02:54 -0700 Subject: [PATCH 071/184] 2.8.9 --- github-linguist.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/github-linguist.gemspec b/github-linguist.gemspec index 9ae1fca4..7e06fb51 100644 --- a/github-linguist.gemspec +++ b/github-linguist.gemspec @@ -1,6 +1,6 @@ Gem::Specification.new do |s| s.name = 'github-linguist' - s.version = '2.8.8' + s.version = '2.8.9' s.summary = "GitHub Language detection" s.authors = "GitHub" From dbc36a5e6372f4f9a8fa54b8e556e6da28c2be1a Mon Sep 17 00:00:00 2001 From: Ted Nyman Date: Sat, 20 Jul 2013 23:14:53 -0700 Subject: [PATCH 072/184] More color tweaking --- lib/linguist/languages.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 3d865ff9..9286620b 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -497,7 +497,7 @@ Gettext Catalog: Go: type: programming - color: "#fcfca4" + color: "#dbdbbc" primary_extension: .go Gosu: From 6d9559086129011c4626718e638f92046945c8e3 Mon Sep 17 00:00:00 2001 From: Ted Nyman Date: Sat, 20 Jul 2013 23:15:13 -0700 Subject: [PATCH 073/184] 2.8.10 --- github-linguist.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/github-linguist.gemspec b/github-linguist.gemspec index 7e06fb51..4cfaee59 100644 --- a/github-linguist.gemspec +++ b/github-linguist.gemspec @@ -1,6 +1,6 @@ Gem::Specification.new do |s| s.name = 'github-linguist' - s.version = '2.8.9' + s.version = '2.8.10' s.summary = "GitHub Language detection" s.authors = "GitHub" From 8c42e612716313a03771f1652b2c27ffa1de08e6 Mon Sep 17 00:00:00 2001 From: James Socol Date: Mon, 22 Jul 2013 14:54:37 -0400 Subject: [PATCH 074/184] Update languages.yml Add .adp for AOL Server Tcl files. --- lib/linguist/languages.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 9286620b..175e316b 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -1243,6 +1243,8 @@ Tcl: type: programming color: "#e4cc98" primary_extension: .tcl + extensions: + - .adp Tcsh: type: programming From 4130825a43a9ef107c83ca372ad8e66596cf3ee1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Viktor=20Szak=C3=A1ts?= Date: Wed, 24 Jul 2013 11:46:01 +0200 Subject: [PATCH 075/184] ignore more Git local config files to avoid them being misidentified as Racket, Ruby or else --- lib/linguist/vendor.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/linguist/vendor.yml b/lib/linguist/vendor.yml index 8132cd04..dbc4d527 100644 --- a/lib/linguist/vendor.yml +++ b/lib/linguist/vendor.yml @@ -117,9 +117,11 @@ # Samples folders - ^[Ss]amples/ -# LICENSE files and gitignore +# LICENSE and git config files - ^LICENSE$ +- gitattributes$ - gitignore$ +- gitmodules$ # Test fixtures - ^[Tt]est/fixtures/ From 37429d91a0f7c90099cd76f0f0ebf798a28ea631 Mon Sep 17 00:00:00 2001 From: David Calavera Date: Fri, 26 Jul 2013 15:33:23 -0700 Subject: [PATCH 076/184] Add Docker files to the list of shell formatted files. --- lib/linguist/languages.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 9286620b..f72c03a4 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -1203,6 +1203,8 @@ Shell: primary_extension: .sh extensions: - .tmux + filenames: + - Dockerfile Slash: type: programming From a8e337e0eb2f6b91d17178047f76c36c35564740 Mon Sep 17 00:00:00 2001 From: David Calavera Date: Fri, 26 Jul 2013 15:35:00 -0700 Subject: [PATCH 077/184] Add Dockerfile sample. --- samples/Shell/Dockerfile | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 samples/Shell/Dockerfile diff --git a/samples/Shell/Dockerfile b/samples/Shell/Dockerfile new file mode 100644 index 00000000..46f9b585 --- /dev/null +++ b/samples/Shell/Dockerfile @@ -0,0 +1,30 @@ +# This file describes the standard way to build Docker, using docker +docker-version 0.4.2 +from ubuntu:12.04 +maintainer Solomon Hykes +# Build dependencies +run apt-get install -y -q curl +run apt-get install -y -q git +# Install Go +run curl -s https://go.googlecode.com/files/go1.1.1.linux-amd64.tar.gz | tar -v -C /usr/local -xz +env PATH /usr/local/go/bin:/usr/local/bin:/usr/local/sbin:/usr/bin:/usr/sbin:/bin:/sbin +env GOPATH /go +env CGO_ENABLED 0 +run cd /tmp && echo 'package main' > t.go && go test -a -i -v +# Download dependencies +run PKG=github.com/kr/pty REV=27435c699; git clone http://$PKG /go/src/$PKG && cd /go/src/$PKG && git checkout -f $REV +run PKG=github.com/gorilla/context/ REV=708054d61e5; git clone http://$PKG /go/src/$PKG && cd /go/src/$PKG && git checkout -f $REV +run PKG=github.com/gorilla/mux/ REV=9b36453141c; git clone http://$PKG /go/src/$PKG && cd /go/src/$PKG && git checkout -f $REV +# Run dependencies +run apt-get install -y iptables +# lxc requires updating ubuntu sources +run echo 'deb http://archive.ubuntu.com/ubuntu precise main universe' > /etc/apt/sources.list +run apt-get update +run apt-get install -y lxc +run apt-get install -y aufs-tools +# Upload docker source +add . /go/src/github.com/dotcloud/docker +# Build the binary +run cd /go/src/github.com/dotcloud/docker/docker && go install -ldflags "-X main.GITCOMMIT '??' -d -w" +env PATH /usr/local/go/bin:/go/bin:/usr/local/bin:/usr/local/sbin:/usr/bin:/usr/sbin:/bin:/sbin +cmd ["docker"] From d21d0f281a47a779777b2d2da6c5b41f2bcc7c53 Mon Sep 17 00:00:00 2001 From: David Calavera Date: Fri, 26 Jul 2013 15:47:45 -0700 Subject: [PATCH 078/184] Put the Dockerfile sample into the right directory. --- samples/Shell/{ => filenames}/Dockerfile | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename samples/Shell/{ => filenames}/Dockerfile (100%) diff --git a/samples/Shell/Dockerfile b/samples/Shell/filenames/Dockerfile similarity index 100% rename from samples/Shell/Dockerfile rename to samples/Shell/filenames/Dockerfile From 1d8da964e27f0ba1c004ebf496ed13187961a9a8 Mon Sep 17 00:00:00 2001 From: Ted Nyman Date: Sat, 20 Jul 2013 23:57:05 -0700 Subject: [PATCH 079/184] More color tweaks --- lib/linguist/languages.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 9286620b..06066d05 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -497,7 +497,7 @@ Gettext Catalog: Go: type: programming - color: "#dbdbbc" + color: "#a89b4d" primary_extension: .go Gosu: From 750804876e4d4b6a5b003e147dc8610dae5c1339 Mon Sep 17 00:00:00 2001 From: Ted Nyman Date: Sat, 20 Jul 2013 23:59:23 -0700 Subject: [PATCH 080/184] Docs for the linguist script --- bin/linguist | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/bin/linguist b/bin/linguist index 1be091c3..260d656c 100755 --- a/bin/linguist +++ b/bin/linguist @@ -1,5 +1,10 @@ #!/usr/bin/env ruby +# linguist — detect language type for a file, or, given a directory +# determine language breakdown +# +# usage: linguist + require 'linguist/file_blob' require 'linguist/repository' From 2ae76842a03e2c928e196cfc16aa9c2b59b318cd Mon Sep 17 00:00:00 2001 From: Ted Nyman Date: Sat, 20 Jul 2013 23:59:49 -0700 Subject: [PATCH 081/184] 0.8.11 --- github-linguist.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/github-linguist.gemspec b/github-linguist.gemspec index 4cfaee59..dcfb6c2a 100644 --- a/github-linguist.gemspec +++ b/github-linguist.gemspec @@ -1,6 +1,6 @@ Gem::Specification.new do |s| s.name = 'github-linguist' - s.version = '2.8.10' + s.version = '2.8.11' s.summary = "GitHub Language detection" s.authors = "GitHub" From 80780ab042b040ed3178a648acd36171ec9ead86 Mon Sep 17 00:00:00 2001 From: Ted Nyman Date: Fri, 26 Jul 2013 16:11:56 -0700 Subject: [PATCH 082/184] 2.8.12 --- github-linguist.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/github-linguist.gemspec b/github-linguist.gemspec index dcfb6c2a..945bf981 100644 --- a/github-linguist.gemspec +++ b/github-linguist.gemspec @@ -1,6 +1,6 @@ Gem::Specification.new do |s| s.name = 'github-linguist' - s.version = '2.8.11' + s.version = '2.8.12' s.summary = "GitHub Language detection" s.authors = "GitHub" From 838fbc5626163918f09feb56a1e79dcf242e6d67 Mon Sep 17 00:00:00 2001 From: Ted Nyman Date: Tue, 30 Jul 2013 03:14:51 -0700 Subject: [PATCH 083/184] Drop less from vendor.yml --- lib/linguist/vendor.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/lib/linguist/vendor.yml b/lib/linguist/vendor.yml index dbc4d527..aea60603 100644 --- a/lib/linguist/vendor.yml +++ b/lib/linguist/vendor.yml @@ -62,10 +62,6 @@ - (^|/)yahoo-([^.]*)\.js$ - (^|/)yui([^.]*)\.js$ -# LESS css -- (^|/)less([^.]*)(\.min)?\.js$ -- (^|/)less\-\d+\.\d+\.\d+(\.min)?\.js$ - # WYS editors - (^|/)ckeditor\.js$ - (^|/)tiny_mce([^.]*)\.js$ From 96e8a5d2cc65c312e570d3fbf751083273fef4b9 Mon Sep 17 00:00:00 2001 From: Ted Nyman Date: Tue, 30 Jul 2013 13:30:39 -0700 Subject: [PATCH 084/184] Start detecting CSS --- lib/linguist/language.rb | 7 +++ lib/linguist/repository.rb | 4 +- lib/linguist/samples.json | 117 ++++++++++++++++++++++++++----------- test/test_blob.rb | 8 +-- 4 files changed, 95 insertions(+), 41 deletions(-) diff --git a/lib/linguist/language.rb b/lib/linguist/language.rb index aa550890..0d34f4f9 100644 --- a/lib/linguist/language.rb +++ b/lib/linguist/language.rb @@ -21,6 +21,13 @@ module Linguist # Valid Languages types TYPES = [:data, :markup, :programming] + # Names of non-programming languages that we will still detect + # + # Returns an array + def self.detectable_markup + ["CSS", "Less", "Sass"] + end + # Internal: Create a new Language object # # attributes - A hash of attributes diff --git a/lib/linguist/repository.rb b/lib/linguist/repository.rb index 5c1ffdaf..4b34be0a 100644 --- a/lib/linguist/repository.rb +++ b/lib/linguist/repository.rb @@ -73,8 +73,8 @@ module Linguist # Skip vendored or generated blobs next if blob.vendored? || blob.generated? || blob.language.nil? - # Only include programming languages - if blob.language.type == :programming + # Only include programming languages and acceptable markup languages + if blob.language.type == :programming || Language.detectable_markup.include?(blob.language.name) @sizes[blob.language.group] += blob.size end end diff --git a/lib/linguist/samples.json b/lib/linguist/samples.json index c7da5dfc..74759f0b 100644 --- a/lib/linguist/samples.json +++ b/lib/linguist/samples.json @@ -366,6 +366,7 @@ ".zprofile", ".zshenv", ".zshrc", + "Dockerfile", "PKGBUILD", "bash_logout", "bash_profile", @@ -387,8 +388,8 @@ ".gemrc" ] }, - "tokens_total": 363334, - "languages_total": 432, + "tokens_total": 363536, + "languages_total": 433, "tokens": { "ABAP": { "*/**": 1, @@ -35824,24 +35825,24 @@ "Shell": { "SHEBANG#!bash": 8, "typeset": 5, - "-": 364, - "i": 1, + "-": 391, + "i": 2, "n": 22, "bottles": 6, "no": 16, "while": 3, - "[": 84, - "]": 84, + "[": 85, + "]": 85, "do": 8, - "echo": 69, + "echo": 71, "case": 9, "{": 63, "}": 61, "in": 25, ")": 154, "%": 5, - "s": 13, - ";": 135, + "s": 14, + ";": 138, "esac": 7, "done": 8, "exit": 10, @@ -35853,12 +35854,12 @@ "export": 25, "SCREENDIR": 2, "fi": 34, - "PATH": 12, - "/usr/local/bin": 4, - "/usr/local/sbin": 4, + "PATH": 14, + "/usr/local/bin": 6, + "/usr/local/sbin": 6, "/usr/xpg4/bin": 4, - "/usr/sbin": 4, - "/usr/bin": 6, + "/usr/sbin": 6, + "/usr/bin": 8, "/usr/sfw/bin": 4, "/usr/ccs/bin": 4, "/usr/openwin/bin": 4, @@ -35880,8 +35881,8 @@ "actually": 2, "DISPLAY": 2, "r": 17, - "&&": 56, - ".": 4, + "&&": 65, + ".": 5, "function": 6, "ls": 6, "command": 5, @@ -35891,7 +35892,7 @@ "long": 2, "format...": 2, "ll": 2, - "|": 16, + "|": 17, "less": 2, "XF": 2, "pipe": 2, @@ -35905,7 +35906,7 @@ "extglob": 2, "progcomp": 2, "complete": 82, - "f": 65, + "f": 68, "X": 54, "bunzip2": 2, "bzcat": 2, @@ -35981,7 +35982,7 @@ "opera": 2, "w3m": 2, "galeon": 2, - "curl": 6, + "curl": 8, "dillo": 2, "elinks": 2, "links": 2, @@ -36006,7 +36007,7 @@ "disown": 2, "other": 2, "job": 3, - "v": 9, + "v": 11, "readonly": 4, "unset": 10, "and": 5, @@ -36017,7 +36018,7 @@ "helptopic": 2, "help": 5, "helptopics": 2, - "a": 11, + "a": 12, "unalias": 4, "aliases": 2, "binding": 2, @@ -36037,7 +36038,7 @@ "on": 4, "d": 9, "pushd": 2, - "cd": 6, + "cd": 11, "rmdir": 2, "Make": 2, "directory": 5, @@ -36056,7 +36057,7 @@ "as": 2, "bash...": 2, "quit": 2, - "q": 6, + "q": 8, "even": 3, "shorter": 2, "D": 2, @@ -36083,7 +36084,7 @@ "path": 13, "/opt/local/bin": 2, "/opt/local/sbin": 2, - "/bin": 2, + "/bin": 4, "prompt": 2, "history": 18, "endif": 2, @@ -36144,9 +36145,64 @@ "fpath": 6, "HOME/.zsh/func": 2, "U": 2, + "docker": 1, + "version": 12, + "from": 1, + "ubuntu": 1, + "maintainer": 1, + "Solomon": 1, + "Hykes": 1, + "": 1, + "run": 13, + "apt": 6, + "get": 6, + "install": 8, + "y": 5, + "git": 16, + "https": 2, + "//go.googlecode.com/files/go1.1.1.linux": 1, + "amd64.tar.gz": 1, + "tar": 1, + "C": 1, + "/usr/local": 1, + "xz": 1, + "env": 4, + "/usr/local/go/bin": 2, + "/sbin": 2, + "GOPATH": 1, + "/go": 1, + "CGO_ENABLED": 1, + "/tmp": 1, + "t.go": 1, + "go": 2, + "test": 1, + "PKG": 12, + "github.com/kr/pty": 1, + "REV": 6, + "c699": 1, + "clone": 5, + "http": 3, + "//": 3, + "/go/src/": 6, + "checkout": 3, + "github.com/gorilla/context/": 1, + "d61e5": 1, + "github.com/gorilla/mux/": 1, + "b36453141c": 1, + "iptables": 1, + "/etc/apt/sources.list": 1, + "update": 2, + "lxc": 1, + "aufs": 1, + "tools": 1, + "add": 1, + "/go/src/github.com/dotcloud/docker": 1, + "/go/src/github.com/dotcloud/docker/docker": 1, + "ldflags": 1, + "/go/bin": 1, + "cmd": 1, "pkgname": 1, "stud": 4, - "git": 9, "pkgver": 1, "pkgrel": 1, "pkgdesc": 1, @@ -36162,7 +36218,6 @@ "provides": 1, "conflicts": 1, "_gitroot": 1, - "https": 1, "//github.com/bumptech/stud.git": 1, "_gitname": 1, "build": 2, @@ -36170,14 +36225,12 @@ "pull": 3, "origin": 1, "else": 10, - "clone": 2, "rm": 2, "rf": 1, "package": 1, "PREFIX": 1, "/usr": 1, "DESTDIR": 1, - "install": 2, "Dm755": 1, "init.stud": 1, "mkdir": 2, @@ -36246,7 +36299,6 @@ "rbenv": 2, "versions": 1, "bare": 1, - "version": 11, "&": 5, "prefix": 1, "/dev/null": 6, @@ -36428,7 +36480,6 @@ "build.properties": 1, "an": 1, "property": 1, - "update": 1, "disk.": 1, "That": 1, "scalacOptions": 3, @@ -39431,7 +39482,7 @@ "Scheme": 3478, "Scilab": 69, "SCSS": 39, - "Shell": 3542, + "Shell": 3744, "Slash": 187, "Standard ML": 243, "SuperCollider": 268, @@ -39533,7 +39584,7 @@ "Scheme": 1, "Scilab": 3, "SCSS": 1, - "Shell": 36, + "Shell": 37, "Slash": 1, "Standard ML": 2, "SuperCollider": 2, @@ -39555,5 +39606,5 @@ "Xtend": 2, "YAML": 1 }, - "md5": "23dbdcbc5407d2cd14bbb5926d29774c" + "md5": "748cee37cde5be6ab7d9349db78010df" } \ No newline at end of file diff --git a/test/test_blob.rb b/test/test_blob.rb index a64be883..b57e08fb 100644 --- a/test/test_blob.rb +++ b/test/test_blob.rb @@ -233,7 +233,7 @@ class TestBlob < Test::Unit::TestCase assert blob("public/javascripts/jquery-1.6.1.js").vendored? assert blob("public/javascripts/jquery-1.6.1.min.js").vendored? assert !blob("public/javascripts/jquery.github.menu.js").vendored? - + # jQuery UI assert blob("themes/ui-lightness/jquery-ui.css").vendored? assert blob("themes/ui-lightness/jquery-ui-1.8.22.custom.css").vendored? @@ -249,7 +249,7 @@ class TestBlob < Test::Unit::TestCase assert blob("ui/jquery.ui.accordion.js").vendored? assert blob("ui/minified/jquery.effects.blind.min.js").vendored? assert blob("ui/minified/jquery.ui.accordion.min.js").vendored? - + # MooTools assert blob("public/javascripts/mootools-core-1.3.2-full-compat.js").vendored? @@ -266,10 +266,6 @@ class TestBlob < Test::Unit::TestCase assert blob("public/javascripts/yahoo-min.js").vendored? assert blob("public/javascripts/yuiloader-dom-event.js").vendored? - # LESS - assert blob("public/javascripts/less-1.1.0.js").vendored? - assert blob("public/javascripts/less-1.1.0.min.js").vendored? - # WYS editors assert blob("public/javascripts/ckeditor.js").vendored? assert blob("public/javascripts/tiny_mce.js").vendored? From 0fa54a85d84ee657480eb0b459a97d86cc9a888c Mon Sep 17 00:00:00 2001 From: Ted Nyman Date: Tue, 30 Jul 2013 14:21:04 -0700 Subject: [PATCH 085/184] Include .scss file samples --- lib/linguist/samples.json | 38 ++++++++++++++++++++++---------------- samples/Sass/demo.scss | 12 ++++++++++++ 2 files changed, 34 insertions(+), 16 deletions(-) create mode 100644 samples/Sass/demo.scss diff --git a/lib/linguist/samples.json b/lib/linguist/samples.json index 74759f0b..6837e54b 100644 --- a/lib/linguist/samples.json +++ b/lib/linguist/samples.json @@ -252,7 +252,8 @@ ".rs" ], "Sass": [ - ".sass" + ".sass", + ".scss" ], "Scala": [ ".sbt", @@ -388,8 +389,8 @@ ".gemrc" ] }, - "tokens_total": 363536, - "languages_total": 433, + "tokens_total": 363564, + "languages_total": 434, "tokens": { "ABAP": { "*/**": 1, @@ -35404,22 +35405,27 @@ "port2.recv": 1 }, "Sass": { - "blue": 4, - "#3bbfce": 1, - "margin": 4, - "px": 1, + "blue": 7, + "#3bbfce": 2, + ";": 6, + "margin": 8, + "px": 3, + ".content_navigation": 1, + "{": 2, + "color": 4, + "}": 2, + ".border": 2, + "padding": 2, + "/": 4, + "border": 3, + "solid": 1, ".content": 1, "-": 3, "navigation": 1, - "border": 2, - "color": 3, "darken": 1, "(": 1, "%": 1, - ")": 1, - ".border": 1, - "padding": 1, - "/": 2 + ")": 1 }, "Scala": { "SHEBANG#!sh": 2, @@ -39477,7 +39483,7 @@ "Rebol": 11, "Ruby": 3854, "Rust": 3566, - "Sass": 28, + "Sass": 56, "Scala": 420, "Scheme": 3478, "Scilab": 69, @@ -39579,7 +39585,7 @@ "Rebol": 1, "Ruby": 16, "Rust": 1, - "Sass": 1, + "Sass": 2, "Scala": 3, "Scheme": 1, "Scilab": 3, @@ -39606,5 +39612,5 @@ "Xtend": 2, "YAML": 1 }, - "md5": "748cee37cde5be6ab7d9349db78010df" + "md5": "094112556d8fb14809a3fcbc1a481c7c" } \ No newline at end of file diff --git a/samples/Sass/demo.scss b/samples/Sass/demo.scss new file mode 100644 index 00000000..648d4a01 --- /dev/null +++ b/samples/Sass/demo.scss @@ -0,0 +1,12 @@ +$blue: #3bbfce; +$margin: 16px; + +.content_navigation { + color: $blue; +} + +.border { + padding: $margin / 2; + margin: $margin / 2; + border: 2px $blue solid; +} From 3fc208b4ced98ea9e471eb7fc48cedbbdc28d05f Mon Sep 17 00:00:00 2001 From: Ted Nyman Date: Tue, 30 Jul 2013 14:43:30 -0700 Subject: [PATCH 086/184] Bump to 2.9.0 --- github-linguist.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/github-linguist.gemspec b/github-linguist.gemspec index 945bf981..cb8e6481 100644 --- a/github-linguist.gemspec +++ b/github-linguist.gemspec @@ -1,6 +1,6 @@ Gem::Specification.new do |s| s.name = 'github-linguist' - s.version = '2.8.12' + s.version = '2.9.0' s.summary = "GitHub Language detection" s.authors = "GitHub" From 51a989d5f1af8f92ebd836f035e34db44337e906 Mon Sep 17 00:00:00 2001 From: Ted Nyman Date: Tue, 30 Jul 2013 15:30:47 -0700 Subject: [PATCH 087/184] Update CSS color --- github-linguist.gemspec | 2 +- lib/linguist/languages.yml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/github-linguist.gemspec b/github-linguist.gemspec index cb8e6481..b8854301 100644 --- a/github-linguist.gemspec +++ b/github-linguist.gemspec @@ -1,6 +1,6 @@ Gem::Specification.new do |s| s.name = 'github-linguist' - s.version = '2.9.0' + s.version = '2.9.1' s.summary = "GitHub Language detection" s.authors = "GitHub" diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 3d231c35..737f226a 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -214,6 +214,7 @@ CMake: CSS: ace_mode: css + color: "#1f085e" primary_extension: .css Ceylon: From 70d1649b45c676fef82e151856b1df7e9264022a Mon Sep 17 00:00:00 2001 From: Siraaj Khandkar Date: Fri, 2 Aug 2013 17:17:00 -0400 Subject: [PATCH 088/184] Added an R script sample. --- samples/R/git-punchcard.script! | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100755 samples/R/git-punchcard.script! diff --git a/samples/R/git-punchcard.script! b/samples/R/git-punchcard.script! new file mode 100755 index 00000000..51b3a540 --- /dev/null +++ b/samples/R/git-punchcard.script! @@ -0,0 +1,31 @@ +#! /usr/bin/env Rscript +# vim: filetype=r: + +ParseDates <- function(lines) { + dates <- matrix(unlist(strsplit(lines, " +")), ncol=6, byrow=TRUE) + days <- dates[,1] + times <- dates[,4] + hours <- matrix(unlist(strsplit(times, ":")), ncol=3, byrow=TRUE)[,1] + all.days <- c("Sun", "Sat", "Fri", "Thu", "Wed", "Tue", "Mon") + all.hours <- 0:23 + data.frame( Day = factor(days , levels=all.days) + , Hour = factor(hours, levels=all.hours) + ) +} + +Main <- function() { + lines <- system("git log --format=%ad", intern=TRUE) + punchcard <- as.data.frame(table(ParseDates(lines))) + punchcard <- + ( ggplot2::ggplot(punchcard, ggplot2::aes(y=Day, x=Hour)) + + ggplot2::geom_point(ggplot2::aes(size=Freq)) + + ggplot2::scale_size(range=c(0, 15)) + ) + ggplot2::ggsave( filename = "punchcard.png" + , plot = punchcard + , width = 10 + , height = 5 + ) +} + +Main() From f5ede0d0f91134008f099c28014d215c8e7c9255 Mon Sep 17 00:00:00 2001 From: Ted Nyman Date: Sat, 3 Aug 2013 13:13:49 -0700 Subject: [PATCH 089/184] Update samples --- lib/linguist/samples.json | 74 +++++++++++++++++++++++++++++++-------- 1 file changed, 60 insertions(+), 14 deletions(-) diff --git a/lib/linguist/samples.json b/lib/linguist/samples.json index 6837e54b..834d5ddd 100644 --- a/lib/linguist/samples.json +++ b/lib/linguist/samples.json @@ -229,7 +229,8 @@ ".script!" ], "R": [ - ".R" + ".R", + ".script!" ], "Racket": [ ".scrbl", @@ -389,8 +390,8 @@ ".gemrc" ] }, - "tokens_total": 363564, - "languages_total": 434, + "tokens_total": 363725, + "languages_total": 435, "tokens": { "ABAP": { "*/**": 1, @@ -33718,15 +33719,60 @@ "socket.EAI_NONAME": 1 }, "R": { + "SHEBANG#!Rscript": 1, + "ParseDates": 2, + "<": 12, + "-": 12, + "function": 3, + "(": 28, + "lines": 4, + ")": 28, + "{": 3, + "dates": 3, + "matrix": 2, + "unlist": 2, + "strsplit": 2, + "ncol": 2, + "byrow": 2, + "TRUE": 3, + "days": 2, + "[": 3, + "]": 3, + "times": 2, + "hours": 2, + "all.days": 2, + "c": 2, + "all.hours": 2, + "data.frame": 1, + "Day": 2, + "factor": 2, + "levels": 2, + "Hour": 2, + "}": 3, + "Main": 2, + "system": 1, + "intern": 1, + "punchcard": 4, + "as.data.frame": 1, + "table": 1, + "ggplot2": 6, + "ggplot": 1, + "aes": 2, + "y": 1, + "x": 1, + "+": 2, + "geom_point": 1, + "size": 1, + "Freq": 1, + "scale_size": 1, + "range": 1, + "ggsave": 1, + "filename": 1, + "plot": 1, + "width": 1, + "height": 1, "hello": 2, - "<": 1, - "-": 1, - "function": 1, - "(": 3, - ")": 3, - "{": 1, - "print": 1, - "}": 1 + "print": 1 }, "Racket": { ";": 3, @@ -39477,7 +39523,7 @@ "Processing": 74, "Prolog": 4040, "Python": 5715, - "R": 14, + "R": 175, "Racket": 360, "Ragel in Ruby Host": 593, "Rebol": 11, @@ -39579,7 +39625,7 @@ "Processing": 1, "Prolog": 6, "Python": 7, - "R": 1, + "R": 2, "Racket": 3, "Ragel in Ruby Host": 3, "Rebol": 1, @@ -39612,5 +39658,5 @@ "Xtend": 2, "YAML": 1 }, - "md5": "094112556d8fb14809a3fcbc1a481c7c" + "md5": "46e5ae2843b0698d736a25b77bb70901" } \ No newline at end of file From 76128ccb37d43b3da5d15f654e80107344369d99 Mon Sep 17 00:00:00 2001 From: Ted Nyman Date: Sat, 3 Aug 2013 13:21:58 -0700 Subject: [PATCH 090/184] Add make samples and shebang for make --- samples/Makefile/Makefile | 16 ++++++++++++++++ samples/Makefile/makefile.script! | 3 +++ 2 files changed, 19 insertions(+) create mode 100644 samples/Makefile/Makefile create mode 100644 samples/Makefile/makefile.script! diff --git a/samples/Makefile/Makefile b/samples/Makefile/Makefile new file mode 100644 index 00000000..7dc3792b --- /dev/null +++ b/samples/Makefile/Makefile @@ -0,0 +1,16 @@ +all: hello + +hello: main.o factorial.o hello.o + g++ main.o factorial.o hello.o -o hello + +main.o: main.cpp + g++ -c main.cpp + +factorial.o: factorial.cpp + g++ -c factorial.cpp + +hello.o: hello.cpp + g++ -c hello.cpp + +clean: + rm -rf *o hello diff --git a/samples/Makefile/makefile.script! b/samples/Makefile/makefile.script! new file mode 100644 index 00000000..98ef23d7 --- /dev/null +++ b/samples/Makefile/makefile.script! @@ -0,0 +1,3 @@ +#!/usr/bin/make -f +%: + ls -l From 7b2fec88d1fd96ee75356cb338a4de3f338a72d5 Mon Sep 17 00:00:00 2001 From: Ted Nyman Date: Sat, 3 Aug 2013 13:25:47 -0700 Subject: [PATCH 091/184] Update samples --- lib/linguist/samples.json | 37 +++++++++++++++++++++-- samples/Makefile/{ => filenames}/Makefile | 0 2 files changed, 34 insertions(+), 3 deletions(-) rename samples/Makefile/{ => filenames}/Makefile (100%) diff --git a/lib/linguist/samples.json b/lib/linguist/samples.json index 834d5ddd..30272027 100644 --- a/lib/linguist/samples.json +++ b/lib/linguist/samples.json @@ -143,6 +143,9 @@ "M": [ ".m" ], + "Makefile": [ + ".script!" + ], "Markdown": [ ".md" ], @@ -346,6 +349,9 @@ ".editorconfig", ".gitconfig" ], + "Makefile": [ + "Makefile" + ], "Nginx": [ "nginx.conf" ], @@ -390,8 +396,8 @@ ".gemrc" ] }, - "tokens_total": 363725, - "languages_total": 435, + "tokens_total": 363775, + "languages_total": 437, "tokens": { "ABAP": { "*/**": 1, @@ -24425,6 +24431,29 @@ "c1": 4, "buf_c1_": 1 }, + "Makefile": { + "all": 1, + "hello": 4, + "main.o": 3, + "factorial.o": 3, + "hello.o": 3, + "g": 4, + "+": 8, + "-": 6, + "o": 1, + "main.cpp": 2, + "c": 3, + "factorial.cpp": 2, + "hello.cpp": 2, + "clean": 1, + "rm": 1, + "rf": 1, + "*o": 1, + "SHEBANG#!make": 1, + "%": 1, + "ls": 1, + "l": 1 + }, "Markdown": { "Tender": 1 }, @@ -39498,6 +39527,7 @@ "Logtalk": 36, "Lua": 724, "M": 23373, + "Makefile": 50, "Markdown": 1, "Matlab": 11787, "Max": 136, @@ -39600,6 +39630,7 @@ "Logtalk": 1, "Lua": 3, "M": 28, + "Makefile": 2, "Markdown": 1, "Matlab": 37, "Max": 1, @@ -39658,5 +39689,5 @@ "Xtend": 2, "YAML": 1 }, - "md5": "46e5ae2843b0698d736a25b77bb70901" + "md5": "a1b641b3e2c3d7f897afbcc4d8bf4282" } \ No newline at end of file diff --git a/samples/Makefile/Makefile b/samples/Makefile/filenames/Makefile similarity index 100% rename from samples/Makefile/Makefile rename to samples/Makefile/filenames/Makefile From 432bffe3ec85c895be0f7c76956c2c1009771e13 Mon Sep 17 00:00:00 2001 From: kethomassen Date: Mon, 5 Aug 2013 16:13:18 +1000 Subject: [PATCH 092/184] Change YAML type to data --- lib/linguist/languages.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 737f226a..fe49b259 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -1437,7 +1437,7 @@ Xtend: primary_extension: .xtend YAML: - type: markup + type: data aliases: - yml primary_extension: .yml From 1764674a131870ec4ef5c960ac72179f89679ad4 Mon Sep 17 00:00:00 2001 From: Ted Nyman Date: Mon, 5 Aug 2013 23:02:19 -0700 Subject: [PATCH 093/184] Remove old test --- test/test_blob.rb | 4 ---- 1 file changed, 4 deletions(-) diff --git a/test/test_blob.rb b/test/test_blob.rb index 6017d995..3dd90a99 100644 --- a/test/test_blob.rb +++ b/test/test_blob.rb @@ -201,10 +201,6 @@ class TestBlob < Test::Unit::TestCase # Minified CSS assert !blob("CSS/bootstrap.css").generated? assert blob("CSS/bootstrap.min.css").generated? - - # Cython-generated C/C++ - assert blob("C/sgd_fast.c").generated? - assert blob("C++/wrapper_inner.cpp").generated? end def test_vendored From e6f38cbf45b3740498754bd47264e18b4f3044a5 Mon Sep 17 00:00:00 2001 From: Ted Nyman Date: Mon, 5 Aug 2013 23:17:33 -0700 Subject: [PATCH 094/184] 2.9.2 --- github-linguist.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/github-linguist.gemspec b/github-linguist.gemspec index b8854301..9f0db488 100644 --- a/github-linguist.gemspec +++ b/github-linguist.gemspec @@ -1,6 +1,6 @@ Gem::Specification.new do |s| s.name = 'github-linguist' - s.version = '2.9.1' + s.version = '2.9.2' s.summary = "GitHub Language detection" s.authors = "GitHub" From 64ec42cf4a20c60fe113b27cb092c8a476073494 Mon Sep 17 00:00:00 2001 From: Robin Dupret Date: Fri, 9 Aug 2013 21:47:47 +0200 Subject: [PATCH 095/184] Lex .mspec files like Ruby --- lib/linguist/languages.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 737f226a..1b093186 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -1126,6 +1126,7 @@ Ruby: - .gemspec - .god - .irbrc + - .mspec - .podspec - .rbuild - .rbw From 06b185f7250406697bf93edef62960aec66ff382 Mon Sep 17 00:00:00 2001 From: Ted Nyman Date: Wed, 14 Aug 2013 08:32:50 -0700 Subject: [PATCH 096/184] Fix F# search term --- lib/linguist/languages.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 737f226a..c370b7b6 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -409,7 +409,7 @@ F#: type: programming lexer: FSharp color: "#b845fc" - search_term: ocaml + search_term: fsharp primary_extension: .fs extensions: - .fsi From 6c74d854ec9ec56b9cfa7f96fd189064ded0aeed Mon Sep 17 00:00:00 2001 From: Ted Nyman Date: Wed, 14 Aug 2013 08:35:53 -0700 Subject: [PATCH 097/184] 2.9.3, update samples, update test --- github-linguist.gemspec | 2 +- lib/linguist/samples.json | 759 +++++++++++++++++++++++++++++++++++++- test/test_language.rb | 2 +- 3 files changed, 758 insertions(+), 5 deletions(-) diff --git a/github-linguist.gemspec b/github-linguist.gemspec index 9f0db488..2d3126f0 100644 --- a/github-linguist.gemspec +++ b/github-linguist.gemspec @@ -1,6 +1,6 @@ Gem::Specification.new do |s| s.name = 'github-linguist' - s.version = '2.9.2' + s.version = '2.9.3' s.summary = "GitHub Language detection" s.authors = "GitHub" diff --git a/lib/linguist/samples.json b/lib/linguist/samples.json index 30272027..b0c0f6bb 100644 --- a/lib/linguist/samples.json +++ b/lib/linguist/samples.json @@ -38,6 +38,9 @@ "Coq": [ ".v" ], + "CSS": [ + ".css" + ], "Dart": [ ".dart" ], @@ -396,8 +399,8 @@ ".gemrc" ] }, - "tokens_total": 363775, - "languages_total": 437, + "tokens_total": 407642, + "languages_total": 439, "tokens": { "ABAP": { "*/**": 1, @@ -11894,6 +11897,754 @@ "IHhas_type1.": 1, "IHhas_type2.": 1 }, + "CSS": { + ".clearfix": 8, + "{": 1661, + "*zoom": 48, + ";": 4219, + "}": 1705, + "before": 48, + "after": 96, + "display": 135, + "table": 44, + "content": 66, + "line": 97, + "-": 8839, + "height": 141, + "clear": 32, + "both": 30, + ".hide": 12, + "text": 129, + "font": 142, + "/0": 2, + "a": 268, + "color": 711, + "transparent": 148, + "shadow": 254, + "none": 128, + "background": 770, + "border": 912, + ".input": 216, + "block": 133, + "level": 2, + "width": 215, + "%": 366, + "min": 14, + "px": 2535, + "webkit": 364, + "box": 264, + "sizing": 27, + "moz": 316, + "article": 2, + "aside": 2, + "details": 2, + "figcaption": 2, + "figure": 2, + "footer": 2, + "header": 12, + "hgroup": 2, + "nav": 2, + "section": 2, + "audio": 4, + "canvas": 2, + "video": 4, + "inline": 116, + "*display": 20, + "not": 6, + "(": 748, + "[": 384, + "controls": 2, + "]": 384, + ")": 748, + "html": 4, + "size": 104, + "adjust": 6, + "ms": 13, + "focus": 232, + "outline": 30, + "thin": 8, + "dotted": 10, + "#333": 6, + "auto": 50, + "ring": 6, + "offset": 6, + "hover": 144, + "active": 46, + "sub": 4, + "sup": 4, + "position": 342, + "relative": 18, + "vertical": 56, + "align": 72, + "baseline": 4, + "top": 376, + "em": 6, + "bottom": 309, + "img": 14, + "max": 18, + "middle": 20, + "interpolation": 2, + "mode": 2, + "bicubic": 2, + "#map_canvas": 2, + ".google": 2, + "maps": 2, + "button": 18, + "input": 336, + "select": 90, + "textarea": 76, + "margin": 424, + "*overflow": 3, + "visible": 8, + "normal": 18, + "inner": 37, + "padding": 174, + "type": 174, + "appearance": 6, + "cursor": 30, + "pointer": 12, + "label": 20, + "textfield": 2, + "search": 66, + "decoration": 33, + "cancel": 2, + "overflow": 21, + "@media": 2, + "print": 4, + "*": 2, + "important": 18, + "#000": 2, + "visited": 2, + "underline": 6, + "href": 28, + "attr": 4, + "abbr": 6, + "title": 10, + ".ir": 2, + "pre": 16, + "blockquote": 14, + "solid": 93, + "#999": 6, + "page": 6, + "break": 12, + "inside": 4, + "avoid": 6, + "thead": 38, + "group": 120, + "tr": 92, + "@page": 2, + "cm": 2, + "p": 14, + "h2": 14, + "h3": 14, + "orphans": 2, + "widows": 2, + "body": 3, + "family": 10, + "Helvetica": 6, + "Arial": 6, + "sans": 6, + "serif": 6, + "#333333": 26, + "#ffffff": 136, + "#0088cc": 24, + "#005580": 8, + ".img": 6, + "rounded": 2, + "radius": 534, + "polaroid": 2, + "#fff": 10, + "#ccc": 13, + "rgba": 409, + "circle": 18, + ".row": 126, + "left": 489, + "class*": 100, + "float": 84, + ".container": 32, + ".navbar": 332, + "static": 14, + "fixed": 36, + ".span12": 4, + ".span11": 4, + ".span10": 4, + ".span9": 4, + ".span8": 4, + ".span7": 4, + ".span6": 4, + ".span5": 4, + ".span4": 4, + ".span3": 4, + ".span2": 4, + ".span1": 4, + ".offset12": 6, + ".offset11": 6, + ".offset10": 6, + ".offset9": 6, + ".offset8": 6, + ".offset7": 6, + ".offset6": 6, + ".offset5": 6, + ".offset4": 6, + ".offset3": 6, + ".offset2": 6, + ".offset1": 6, + "fluid": 126, + "*margin": 70, + "first": 179, + "child": 301, + ".controls": 28, + "row": 20, + "+": 105, + "*width": 26, + ".pull": 16, + "right": 258, + ".lead": 2, + "weight": 28, + "small": 66, + "strong": 2, + "bold": 14, + "style": 21, + "italic": 4, + "cite": 2, + ".muted": 2, + "#999999": 50, + "a.muted": 4, + "#808080": 2, + ".text": 14, + "warning": 33, + "#c09853": 14, + "a.text": 16, + "#a47e3c": 4, + "error": 10, + "#b94a48": 20, + "#953b39": 6, + "info": 37, + "#3a87ad": 18, + "#2d6987": 6, + "success": 35, + "#468847": 18, + "#356635": 6, + "center": 17, + "h1": 11, + "h4": 20, + "h5": 6, + "h6": 6, + "inherit": 8, + "rendering": 2, + "optimizelegibility": 2, + ".page": 2, + "#eeeeee": 31, + "ul": 84, + "ol": 10, + "li": 205, + "ul.unstyled": 2, + "ol.unstyled": 2, + "list": 44, + "ul.inline": 4, + "ol.inline": 4, + "dl": 2, + "dt": 6, + "dd": 6, + ".dl": 12, + "horizontal": 60, + "hidden": 9, + "ellipsis": 2, + "white": 25, + "space": 23, + "nowrap": 14, + "hr": 2, + "data": 2, + "original": 2, + "help": 2, + "abbr.initialism": 2, + "transform": 4, + "uppercase": 4, + "blockquote.pull": 10, + "q": 4, + "address": 2, + "code": 6, + "Monaco": 2, + "Menlo": 2, + "Consolas": 2, + "monospace": 2, + "#d14": 2, + "#f7f7f9": 2, + "#e1e1e8": 2, + "word": 6, + "all": 10, + "wrap": 6, + "#f5f5f5": 26, + "pre.prettyprint": 2, + ".pre": 2, + "scrollable": 2, + "y": 2, + "scroll": 2, + ".label": 30, + ".badge": 30, + "empty": 7, + "a.label": 4, + "a.badge": 4, + "#f89406": 27, + "#c67605": 4, + "inverse": 110, + "#1a1a1a": 2, + ".btn": 506, + "mini": 34, + "collapse": 12, + "spacing": 3, + ".table": 180, + "th": 70, + "td": 66, + "#dddddd": 16, + "caption": 18, + "colgroup": 18, + "tbody": 68, + "condensed": 4, + "bordered": 76, + "separate": 4, + "*border": 8, + "topleft": 16, + "last": 118, + "topright": 16, + "tfoot": 12, + "bottomleft": 16, + "bottomright": 16, + "striped": 13, + "nth": 4, + "odd": 4, + "#f9f9f9": 12, + "cell": 2, + "td.span1": 2, + "th.span1": 2, + "td.span2": 2, + "th.span2": 2, + "td.span3": 2, + "th.span3": 2, + "td.span4": 2, + "th.span4": 2, + "td.span5": 2, + "th.span5": 2, + "td.span6": 2, + "th.span6": 2, + "td.span7": 2, + "th.span7": 2, + "td.span8": 2, + "th.span8": 2, + "td.span9": 2, + "th.span9": 2, + "td.span10": 2, + "th.span10": 2, + "td.span11": 2, + "th.span11": 2, + "td.span12": 2, + "th.span12": 2, + "tr.success": 4, + "#dff0d8": 6, + "tr.error": 4, + "#f2dede": 6, + "tr.warning": 4, + "#fcf8e3": 6, + "tr.info": 4, + "#d9edf7": 6, + "#d0e9c6": 2, + "#ebcccc": 2, + "#faf2cc": 2, + "#c4e3f3": 2, + "form": 38, + "fieldset": 2, + "legend": 6, + "#e5e5e5": 28, + ".uneditable": 80, + "#555555": 18, + "#cccccc": 18, + "inset": 132, + "transition": 36, + "linear": 204, + ".2s": 16, + "o": 48, + ".075": 12, + ".6": 6, + "multiple": 2, + "#fcfcfc": 2, + "allowed": 4, + "placeholder": 18, + ".radio": 26, + ".checkbox": 26, + ".radio.inline": 6, + ".checkbox.inline": 6, + "medium": 2, + "large": 40, + "xlarge": 2, + "xxlarge": 2, + "append": 120, + "prepend": 82, + "input.span12": 4, + "textarea.span12": 2, + "input.span11": 4, + "textarea.span11": 2, + "input.span10": 4, + "textarea.span10": 2, + "input.span9": 4, + "textarea.span9": 2, + "input.span8": 4, + "textarea.span8": 2, + "input.span7": 4, + "textarea.span7": 2, + "input.span6": 4, + "textarea.span6": 2, + "input.span5": 4, + "textarea.span5": 2, + "input.span4": 4, + "textarea.span4": 2, + "input.span3": 4, + "textarea.span3": 2, + "input.span2": 4, + "textarea.span2": 2, + "input.span1": 4, + "textarea.span1": 2, + "disabled": 36, + "readonly": 10, + ".control": 150, + "group.warning": 32, + ".help": 44, + "#dbc59e": 6, + ".add": 36, + "on": 36, + "group.error": 32, + "#d59392": 6, + "group.success": 32, + "#7aba7b": 6, + "group.info": 32, + "#7ab5d3": 6, + "invalid": 12, + "#ee5f5b": 18, + "#e9322d": 2, + "#f8b9b7": 6, + ".form": 132, + "actions": 10, + "#595959": 2, + ".dropdown": 126, + "menu": 42, + ".popover": 14, + "z": 12, + "index": 14, + "toggle": 84, + ".active": 86, + "#a9dba9": 2, + "#46a546": 2, + "prepend.input": 22, + "input.search": 2, + "query": 22, + ".search": 22, + "*padding": 36, + "image": 187, + "gradient": 175, + "#e6e6e6": 20, + "from": 40, + "to": 75, + "repeat": 66, + "x": 30, + "filter": 57, + "progid": 48, + "DXImageTransform.Microsoft.gradient": 48, + "startColorstr": 30, + "endColorstr": 30, + "GradientType": 30, + "#bfbfbf": 4, + "*background": 36, + "enabled": 18, + "false": 18, + "#b3b3b3": 2, + ".3em": 6, + ".2": 12, + ".05": 24, + ".btn.active": 8, + ".btn.disabled": 4, + "#d9d9d9": 4, + "s": 25, + ".15": 24, + "default": 12, + "opacity": 15, + "alpha": 7, + "class": 26, + "primary.active": 6, + "warning.active": 6, + "danger.active": 6, + "success.active": 6, + "info.active": 6, + "inverse.active": 6, + "primary": 14, + "#006dcc": 2, + "#0044cc": 20, + "#002a80": 2, + "primary.disabled": 2, + "#003bb3": 2, + "#003399": 2, + "#faa732": 3, + "#fbb450": 16, + "#ad6704": 2, + "warning.disabled": 2, + "#df8505": 2, + "danger": 21, + "#da4f49": 2, + "#bd362f": 20, + "#802420": 2, + "danger.disabled": 2, + "#a9302a": 2, + "#942a25": 2, + "#5bb75b": 2, + "#62c462": 16, + "#51a351": 20, + "#387038": 2, + "success.disabled": 2, + "#499249": 2, + "#408140": 2, + "#49afcd": 2, + "#5bc0de": 16, + "#2f96b4": 20, + "#1f6377": 2, + "info.disabled": 2, + "#2a85a0": 2, + "#24748c": 2, + "#363636": 2, + "#444444": 10, + "#222222": 32, + "#000000": 14, + "inverse.disabled": 2, + "#151515": 12, + "#080808": 2, + "button.btn": 4, + "button.btn.btn": 6, + ".btn.btn": 6, + "link": 28, + "url": 4, + "no": 2, + ".icon": 288, + ".nav": 308, + "pills": 28, + "submenu": 8, + "glass": 2, + "music": 2, + "envelope": 2, + "heart": 2, + "star": 4, + "user": 2, + "film": 2, + "ok": 6, + "remove": 6, + "zoom": 5, + "in": 10, + "out": 10, + "off": 4, + "signal": 2, + "cog": 2, + "trash": 2, + "home": 2, + "file": 2, + "time": 2, + "road": 2, + "download": 4, + "alt": 6, + "upload": 2, + "inbox": 2, + "play": 4, + "refresh": 2, + "lock": 2, + "flag": 2, + "headphones": 2, + "volume": 6, + "down": 12, + "up": 12, + "qrcode": 2, + "barcode": 2, + "tag": 2, + "tags": 2, + "book": 2, + "bookmark": 2, + "camera": 2, + "justify": 2, + "indent": 4, + "facetime": 2, + "picture": 2, + "pencil": 2, + "map": 2, + "marker": 2, + "tint": 2, + "edit": 2, + "share": 4, + "check": 2, + "move": 2, + "step": 4, + "backward": 6, + "fast": 4, + "pause": 2, + "stop": 32, + "forward": 6, + "eject": 2, + "chevron": 8, + "plus": 4, + "sign": 16, + "minus": 4, + "question": 2, + "screenshot": 2, + "ban": 2, + "arrow": 21, + "resize": 8, + "full": 2, + "asterisk": 2, + "exclamation": 2, + "gift": 2, + "leaf": 2, + "fire": 2, + "eye": 4, + "open": 4, + "close": 4, + "plane": 2, + "calendar": 2, + "random": 2, + "comment": 2, + "magnet": 2, + "retweet": 2, + "shopping": 2, + "cart": 2, + "folder": 4, + "hdd": 2, + "bullhorn": 2, + "bell": 2, + "certificate": 2, + "thumbs": 4, + "hand": 8, + "globe": 2, + "wrench": 2, + "tasks": 2, + "briefcase": 2, + "fullscreen": 2, + "toolbar": 8, + ".btn.large": 4, + ".large.dropdown": 2, + "group.open": 18, + ".125": 6, + ".btn.dropdown": 2, + "primary.dropdown": 2, + "warning.dropdown": 2, + "danger.dropdown": 2, + "success.dropdown": 2, + "info.dropdown": 2, + "inverse.dropdown": 2, + ".caret": 70, + ".dropup": 2, + ".divider": 8, + "tabs": 94, + "#ddd": 38, + "stacked": 24, + "tabs.nav": 12, + "pills.nav": 4, + ".dropdown.active": 4, + ".open": 8, + "li.dropdown.open.active": 14, + "li.dropdown.open": 14, + ".tabs": 62, + ".tabbable": 8, + ".tab": 8, + "below": 18, + "pane": 4, + ".pill": 6, + ".disabled": 22, + "*position": 2, + "*z": 2, + "#fafafa": 2, + "#f2f2f2": 22, + "#d4d4d4": 2, + "collapse.collapse": 2, + ".brand": 14, + "#777777": 12, + ".1": 24, + ".nav.pull": 2, + "navbar": 28, + "#ededed": 2, + "navbar.active": 8, + "navbar.disabled": 4, + "bar": 21, + "absolute": 8, + "li.dropdown": 12, + "li.dropdown.active": 8, + "menu.pull": 8, + "#1b1b1b": 2, + "#111111": 18, + "#252525": 2, + "#515151": 2, + "query.focused": 2, + "#0e0e0e": 2, + "#040404": 18, + ".breadcrumb": 8, + ".pagination": 78, + "span": 38, + "centered": 2, + ".pager": 34, + ".next": 4, + ".previous": 4, + ".thumbnails": 12, + ".thumbnail": 6, + "ease": 12, + "a.thumbnail": 4, + ".caption": 2, + ".alert": 34, + "#fbeed5": 2, + ".close": 2, + "#d6e9c6": 2, + "#eed3d7": 2, + "#bce8f1": 2, + "@": 8, + "keyframes": 8, + "progress": 15, + "stripes": 15, + "@keyframes": 2, + ".progress": 22, + "#f7f7f7": 3, + ".bar": 22, + "#0e90d2": 2, + "#149bdf": 11, + "#0480be": 10, + "deg": 20, + ".progress.active": 1, + "animation": 5, + "infinite": 5, + "#dd514c": 1, + "#c43c35": 5, + "danger.progress": 1, + "#5eb95e": 1, + "#57a957": 5, + "success.progress": 1, + "#4bb1cf": 1, + "#339bb9": 5, + "info.progress": 1, + "warning.progress": 1, + ".hero": 3, + "unit": 3, + "letter": 1, + ".media": 11, + "object": 1, + "heading": 1, + ".tooltip": 7, + "visibility": 1, + ".tooltip.in": 1, + ".tooltip.top": 2, + ".tooltip.right": 2, + ".tooltip.bottom": 2, + ".tooltip.left": 2, + "clip": 3, + ".popover.top": 3, + ".popover.right": 3, + ".popover.bottom": 3, + ".popover.left": 3, + "#ebebeb": 1, + ".arrow": 12, + ".modal": 5, + "backdrop": 2, + "backdrop.fade": 1, + "backdrop.fade.in": 1 + }, "Dart": { "class": 1, "Point": 7, @@ -39496,6 +40247,7 @@ "Ceylon": 50, "CoffeeScript": 2951, "Coq": 18259, + "CSS": 43867, "Dart": 68, "Delphi": 30, "Diff": 16, @@ -39599,6 +40351,7 @@ "Ceylon": 1, "CoffeeScript": 9, "Coq": 12, + "CSS": 2, "Dart": 1, "Delphi": 1, "Diff": 1, @@ -39689,5 +40442,5 @@ "Xtend": 2, "YAML": 1 }, - "md5": "a1b641b3e2c3d7f897afbcc4d8bf4282" + "md5": "98ddc204696b84bb42fd75ba9d22e0ca" } \ No newline at end of file diff --git a/test/test_language.rb b/test/test_language.rb index 3ca231b5..efde9cf3 100644 --- a/test/test_language.rb +++ b/test/test_language.rb @@ -160,7 +160,7 @@ class TestLanguage < Test::Unit::TestCase assert_equal 'cpp', Language['C++'].search_term assert_equal 'cfm', Language['ColdFusion'].search_term assert_equal 'dpatch', Language['Darcs Patch'].search_term - assert_equal 'ocaml', Language['F#'].search_term + assert_equal 'fsharp' Language['F#'].search_term assert_equal 'pot', Language['Gettext Catalog'].search_term assert_equal 'irc', Language['IRC log'].search_term assert_equal 'lhs', Language['Literate Haskell'].search_term From e005893d4cedad8669e43fe576855a7cab8172aa Mon Sep 17 00:00:00 2001 From: Ted Nyman Date: Wed, 14 Aug 2013 08:37:03 -0700 Subject: [PATCH 098/184] Syntax --- test/test_language.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_language.rb b/test/test_language.rb index efde9cf3..40e03c62 100644 --- a/test/test_language.rb +++ b/test/test_language.rb @@ -160,7 +160,7 @@ class TestLanguage < Test::Unit::TestCase assert_equal 'cpp', Language['C++'].search_term assert_equal 'cfm', Language['ColdFusion'].search_term assert_equal 'dpatch', Language['Darcs Patch'].search_term - assert_equal 'fsharp' Language['F#'].search_term + assert_equal 'fsharp', Language['F#'].search_term assert_equal 'pot', Language['Gettext Catalog'].search_term assert_equal 'irc', Language['IRC log'].search_term assert_equal 'lhs', Language['Literate Haskell'].search_term From 1a98a1f93886f77327ed75e6ee045deafc0fb550 Mon Sep 17 00:00:00 2001 From: Ted Nyman Date: Wed, 14 Aug 2013 08:55:58 -0700 Subject: [PATCH 099/184] Add an F# alias --- lib/linguist/languages.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index c370b7b6..d1682086 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -410,6 +410,8 @@ F#: lexer: FSharp color: "#b845fc" search_term: fsharp + aliases: + - fsharp primary_extension: .fs extensions: - .fsi From e0104c8d12d05e856b965d401348534e5dea2a95 Mon Sep 17 00:00:00 2001 From: Ted Nyman Date: Wed, 14 Aug 2013 08:57:07 -0700 Subject: [PATCH 100/184] 2.9.4 --- github-linguist.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/github-linguist.gemspec b/github-linguist.gemspec index 2d3126f0..2fde4a68 100644 --- a/github-linguist.gemspec +++ b/github-linguist.gemspec @@ -1,6 +1,6 @@ Gem::Specification.new do |s| s.name = 'github-linguist' - s.version = '2.9.3' + s.version = '2.9.4' s.summary = "GitHub Language detection" s.authors = "GitHub" From 007fc9ebd03379a1bf0700cd7bcfc5e493af9cd7 Mon Sep 17 00:00:00 2001 From: Alessandro Bahgat Date: Wed, 14 Aug 2013 17:33:23 -0400 Subject: [PATCH 101/184] Added .xmi to the extensions for XML --- lib/linguist/languages.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index d1682086..fbde5cdc 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -1400,6 +1400,7 @@ XML: - .xaml - .xlf - .xliff + - .xmi - .xsd - .xul - .zcml From ce97865bd274d8a89116c7d8d22e7e0d6ab4393d Mon Sep 17 00:00:00 2001 From: Seth Vargo Date: Thu, 15 Aug 2013 10:29:39 -0400 Subject: [PATCH 102/184] Add 'Berksfile' to the list of Ruby files --- lib/linguist/languages.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index fbde5cdc..a2a790a0 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -1136,6 +1136,7 @@ Ruby: - .thor - .watchr filenames: + - Berksfile - Gemfile - Guardfile - Podfile From 9dca6fa9cc9e6dee6c5a9df2f63e539835092dd0 Mon Sep 17 00:00:00 2001 From: Ted Nyman Date: Fri, 16 Aug 2013 15:00:34 -0700 Subject: [PATCH 103/184] Vendor READMEs --- lib/linguist/vendor.yml | 4 +++- test/test_blob.rb | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/lib/linguist/vendor.yml b/lib/linguist/vendor.yml index 50acb240..d23d6c65 100644 --- a/lib/linguist/vendor.yml +++ b/lib/linguist/vendor.yml @@ -113,11 +113,13 @@ # Samples folders - ^[Ss]amples/ -# LICENSE and git config files +# LICENSE, README, git config files - ^LICENSE$ - gitattributes$ - gitignore$ - gitmodules$ +- ^README$ +- ^readme$ # Test fixtures - ^[Tt]est/fixtures/ diff --git a/test/test_blob.rb b/test/test_blob.rb index 3dd90a99..09eabfcb 100644 --- a/test/test_blob.rb +++ b/test/test_blob.rb @@ -204,7 +204,7 @@ class TestBlob < Test::Unit::TestCase end def test_vendored - assert !blob("Text/README").vendored? + assert blob("Text/README").vendored? assert !blob("ext/extconf.rb").vendored? # Node dependencies From 53b356deeed547ab0fd8ae554071d3a740574f8a Mon Sep 17 00:00:00 2001 From: Ted Nyman Date: Fri, 16 Aug 2013 15:02:01 -0700 Subject: [PATCH 104/184] Only looking at root dir --- test/test_blob.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_blob.rb b/test/test_blob.rb index 09eabfcb..3dd90a99 100644 --- a/test/test_blob.rb +++ b/test/test_blob.rb @@ -204,7 +204,7 @@ class TestBlob < Test::Unit::TestCase end def test_vendored - assert blob("Text/README").vendored? + assert !blob("Text/README").vendored? assert !blob("ext/extconf.rb").vendored? # Node dependencies From a93e9493e209ef333984e5936492c4a0a7148cfc Mon Sep 17 00:00:00 2001 From: Julik Tarkhanov Date: Mon, 8 Apr 2013 14:53:09 +0200 Subject: [PATCH 105/184] Add OpenGL shading language (GLSL) This is the language used for writing OpenGL shaders, which are becoming much more mainstream lately. --- lib/linguist/languages.yml | 9 + samples/GLSL/SyLens.glsl | 161 +++++++++ samples/GLSL/islandScene.glsl | 630 ++++++++++++++++++++++++++++++++++ samples/GLSL/shader.fp | 68 ++++ 4 files changed, 868 insertions(+) create mode 100644 samples/GLSL/SyLens.glsl create mode 100644 samples/GLSL/islandScene.glsl create mode 100644 samples/GLSL/shader.fp diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index a2a790a0..dc44f473 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -476,6 +476,15 @@ GAS: extensions: - .S +GLSL: + group: C + type: programming + primary_extension: .glsl + extensions: + - .frag + - .glslv + - .shader + Genshi: primary_extension: .kid diff --git a/samples/GLSL/SyLens.glsl b/samples/GLSL/SyLens.glsl new file mode 100644 index 00000000..7e9ec456 --- /dev/null +++ b/samples/GLSL/SyLens.glsl @@ -0,0 +1,161 @@ +#version 120 + +/* + Original Lens Distortion Algorithm from SSontech (Syntheyes) + http://www.ssontech.com/content/lensalg.htm + + r2 is radius squared. + + r2 = image_aspect*image_aspect*u*u + v*v + f = 1 + r2*(k + kcube*sqrt(r2)) + u' = f*u + v' = f*v + +*/ + +// Controls +uniform float kCoeff, kCube, uShift, vShift; +uniform float chroma_red, chroma_green, chroma_blue; +uniform bool apply_disto; + +// Uniform inputs +uniform sampler2D input1; +uniform float adsk_input1_w, adsk_input1_h, adsk_input1_aspect, adsk_input1_frameratio; +uniform float adsk_result_w, adsk_result_h; + +float distortion_f(float r) { + float f = 1 + (r*r)*(kCoeff + kCube * r); + return f; +} + + +float inverse_f(float r) +{ + + // Build a lookup table on the radius, as a fixed-size table. + // We will use a vec3 since we will store the multipled number in the Z coordinate. + // So to recap: x will be the radius, y will be the f(x) distortion, and Z will be x * y; + vec3[48] lut; + + // Since out LUT is shader-global check if it's been computed alrite + // Flame has no overflow bbox so we can safely max out at the image edge, plus some cushion + float max_r = sqrt((adsk_input1_frameratio * adsk_input1_frameratio) + 1) + 0.1; + float incr = max_r / 48; + float lut_r = 0; + float f; + for(int i=0; i < 48; i++) { + f = distortion_f(lut_r); + lut[i] = vec3(lut_r, f, lut_r * f); + lut_r += incr; + } + + float t; + // Now find the nehgbouring elements + // only iterate to 46 since we will need + // 47 as i+1 + for(int i=0; i < 47; i++) { + if(lut[i].z < r && lut[i+1].z > r) { + // BAM! our value is between these two segments + // get the T interpolant and mix + t = (r - lut[i].z) / (lut[i+1].z - lut[i]).z; + return mix(lut[i].y, lut[i+1].y, t ); + } + } +} + +float aberrate(float f, float chroma) +{ + return f + (f * chroma); +} + +vec3 chromaticize_and_invert(float f) +{ + vec3 rgb_f = vec3(aberrate(f, chroma_red), aberrate(f, chroma_green), aberrate(f, chroma_blue)); + // We need to DIVIDE by F when we redistort, and x / y == x * (1 / y) + if(apply_disto) { + rgb_f = 1 / rgb_f; + } + return rgb_f; +} + +void main(void) +{ + vec2 px, uv; + float f = 1; + float r = 1; + + px = gl_FragCoord.xy; + + // Make sure we are still centered + px.x -= (adsk_result_w - adsk_input1_w) / 2; + px.y -= (adsk_result_h - adsk_input1_h) / 2; + + // Push the destination coordinates into the [0..1] range + uv.x = px.x / adsk_input1_w; + uv.y = px.y / adsk_input1_h; + + + // And to Syntheyes UV which are [1..-1] on both X and Y + uv.x = (uv.x *2 ) - 1; + uv.y = (uv.y *2 ) - 1; + + // Add UV shifts + uv.x += uShift; + uv.y += vShift; + + // Make the X value the aspect value, so that the X coordinates go to [-aspect..aspect] + uv.x = uv.x * adsk_input1_frameratio; + + // Compute the radius + r = sqrt(uv.x*uv.x + uv.y*uv.y); + + // If we are redistorting, account for the oversize plate in the input, assume that + // the input aspect is the same + if(apply_disto) { + r = r / (float(adsk_input1_w) / float(adsk_result_w)); + } + + // Apply or remove disto, per channel honoring chromatic aberration + if(apply_disto) { + f = inverse_f(r); + } else { + f = distortion_f(r); + } + + vec2[3] rgb_uvs = vec2[](uv, uv, uv); + + // Compute distortions per component + vec3 rgb_f = chromaticize_and_invert(f); + + // Apply the disto coefficients, per component + rgb_uvs[0] = rgb_uvs[0] * rgb_f.rr; + rgb_uvs[1] = rgb_uvs[1] * rgb_f.gg; + rgb_uvs[2] = rgb_uvs[2] * rgb_f.bb; + + // Convert all the UVs back to the texture space, per color component + for(int i=0; i < 3; i++) { + uv = rgb_uvs[i]; + + // Back from [-aspect..aspect] to [-1..1] + uv.x = uv.x / adsk_input1_frameratio; + + // Remove UV shifts + uv.x -= uShift; + uv.y -= vShift; + + // Back to OGL UV + uv.x = (uv.x + 1) / 2; + uv.y = (uv.y + 1) / 2; + + rgb_uvs[i] = uv; + } + + // Sample the input plate, per component + vec4 sampled; + sampled.r = texture2D(input1, rgb_uvs[0]).r; + sampled.g = texture2D(input1, rgb_uvs[1]).g; + sampled.b = texture2D(input1, rgb_uvs[2]).b; + + // and assign to the output + gl_FragColor.rgba = vec4(sampled.rgb, 1.0 ); +} \ No newline at end of file diff --git a/samples/GLSL/islandScene.glsl b/samples/GLSL/islandScene.glsl new file mode 100644 index 00000000..f417b220 --- /dev/null +++ b/samples/GLSL/islandScene.glsl @@ -0,0 +1,630 @@ +//// High quality (Some browsers may freeze or crash) +//#define HIGHQUALITY + +//// Medium quality (Should be fine on all systems, works on Intel HD2000 on Win7 but quite slow) +//#define MEDIUMQUALITY + +//// Defaults +//#define REFLECTIONS +#define SHADOWS +//#define GRASS +//#define SMALL_WAVES +#define RAGGED_LEAVES +//#define DETAILED_NOISE +//#define LIGHT_AA // 2 sample SSAA +//#define HEAVY_AA // 2x2 RG SSAA +//#define TONEMAP + +//// Configurations +#ifdef MEDIUMQUALITY + #define SHADOWS + #define SMALL_WAVES + #define RAGGED_LEAVES + #define TONEMAP +#endif + +#ifdef HIGHQUALITY + #define REFLECTIONS + #define SHADOWS + //#define GRASS + #define SMALL_WAVES + #define RAGGED_LEAVES + #define DETAILED_NOISE + #define LIGHT_AA + #define TONEMAP +#endif + +// Constants +const float eps = 1e-5; +const float PI = 3.14159265359; + +const vec3 sunDir = vec3(0.79057,-0.47434, 0.0); +const vec3 skyCol = vec3(0.3, 0.5, 0.8); +const vec3 sandCol = vec3(0.9, 0.8, 0.5); +const vec3 treeCol = vec3(0.8, 0.65, 0.3); +const vec3 grassCol = vec3(0.4, 0.5, 0.18); +const vec3 leavesCol = vec3(0.3, 0.6, 0.2); +const vec3 leavesPos = vec3(-5.1,13.4, 0.0); + +#ifdef TONEMAP +const vec3 sunCol = vec3(1.8, 1.7, 1.6); +#else +const vec3 sunCol = vec3(0.9, 0.85, 0.8); +#endif + +const float exposure = 1.1; // Only used when tonemapping + +// Description : Array and textureless GLSL 2D/3D/4D simplex +// noise functions. +// Author : Ian McEwan, Ashima Arts. +// License : Copyright (C) 2011 Ashima Arts. All rights reserved. +// Distributed under the MIT License. See LICENSE file. +// https://github.com/ashima/webgl-noise +vec3 mod289(vec3 x) { + return x - floor(x * (1.0 / 289.0)) * 289.0; +} + +vec4 mod289(vec4 x) { + return x - floor(x * (1.0 / 289.0)) * 289.0; +} + +vec4 permute(vec4 x) { + return mod289(((x*34.0)+1.0)*x); +} + +vec4 taylorInvSqrt(vec4 r) { + return 1.79284291400159 - 0.85373472095314 * r; +} + +float snoise(vec3 v) { + const vec2 C = vec2(1.0/6.0, 1.0/3.0) ; + const vec4 D = vec4(0.0, 0.5, 1.0, 2.0); + +// First corner + vec3 i = floor(v + dot(v, C.yyy) ); + vec3 x0 = v - i + dot(i, C.xxx) ; + +// Other corners + vec3 g = step(x0.yzx, x0.xyz); + vec3 l = 1.0 - g; + vec3 i1 = min( g.xyz, l.zxy ); + vec3 i2 = max( g.xyz, l.zxy ); + + // x0 = x0 - 0.0 + 0.0 * C.xxx; + // x1 = x0 - i1 + 1.0 * C.xxx; + // x2 = x0 - i2 + 2.0 * C.xxx; + // x3 = x0 - 1.0 + 3.0 * C.xxx; + vec3 x1 = x0 - i1 + C.xxx; + vec3 x2 = x0 - i2 + C.yyy; // 2.0*C.x = 1/3 = C.y + vec3 x3 = x0 - D.yyy; // -1.0+3.0*C.x = -0.5 = -D.y + +// Permutations + i = mod289(i); + vec4 p = permute( permute( permute( + i.z + vec4(0.0, i1.z, i2.z, 1.0 )) + + i.y + vec4(0.0, i1.y, i2.y, 1.0 )) + + i.x + vec4(0.0, i1.x, i2.x, 1.0 )); + +// Gradients: 7x7 points over a square, mapped onto an octahedron. +// The ring size 17*17 = 289 is close to a multiple of 49 (49*6 = 294) + float n_ = 0.142857142857; // 1.0/7.0 + vec3 ns = n_ * D.wyz - D.xzx; + + vec4 j = p - 49.0 * floor(p * ns.z * ns.z); // mod(p,7*7) + + vec4 x_ = floor(j * ns.z); + vec4 y_ = floor(j - 7.0 * x_ ); // mod(j,N) + + vec4 x = x_ *ns.x + ns.yyyy; + vec4 y = y_ *ns.x + ns.yyyy; + vec4 h = 1.0 - abs(x) - abs(y); + + vec4 b0 = vec4( x.xy, y.xy ); + vec4 b1 = vec4( x.zw, y.zw ); + + //vec4 s0 = vec4(lessThan(b0,0.0))*2.0 - 1.0; + //vec4 s1 = vec4(lessThan(b1,0.0))*2.0 - 1.0; + vec4 s0 = floor(b0)*2.0 + 1.0; + vec4 s1 = floor(b1)*2.0 + 1.0; + vec4 sh = -step(h, vec4(0.0)); + + vec4 a0 = b0.xzyw + s0.xzyw*sh.xxyy ; + vec4 a1 = b1.xzyw + s1.xzyw*sh.zzww ; + + vec3 p0 = vec3(a0.xy,h.x); + vec3 p1 = vec3(a0.zw,h.y); + vec3 p2 = vec3(a1.xy,h.z); + vec3 p3 = vec3(a1.zw,h.w); + +//Normalise gradients + vec4 norm = taylorInvSqrt(vec4(dot(p0,p0), dot(p1,p1), dot(p2, p2), dot(p3,p3))); + p0 *= norm.x; + p1 *= norm.y; + p2 *= norm.z; + p3 *= norm.w; + +// Mix final noise value + vec4 m = max(0.6 - vec4(dot(x0,x0), dot(x1,x1), dot(x2,x2), dot(x3,x3)), 0.0); + m = m * m; + return 42.0 * dot( m*m, vec4( dot(p0,x0), dot(p1,x1), + dot(p2,x2), dot(p3,x3) ) ); +} + + + +// Main +float fbm(vec3 p) +{ + float final = snoise(p); + p *= 1.94; final += snoise(p) * 0.5; + #ifdef DETAILED_NOISE + p *= 3.75; final += snoise(p) * 0.25; + return final / 1.75; + #else + return final / 1.5; + #endif +} + +float waterHeight(vec3 p) +{ + float d = length(p.xz); + float h = sin(d * 1.5 + iGlobalTime * 3.0) * 12.0 / d; // Island waves + #ifdef SMALL_WAVES + h += fbm(p*0.5); // Other waves + #endif + return h; +} + +vec3 bump(vec3 pos, vec3 rayDir) +{ + float s = 2.0; + + // Fade out waves to reduce aliasing + float dist = dot(pos, rayDir); + s *= dist < 2.0 ? 1.0 : 1.4142 / sqrt(dist); + + // Calculate normal from heightmap + vec2 e = vec2(1e-2, 0.0); + vec3 p = vec3(pos.x, iGlobalTime*0.5, pos.z)*0.7; + float m = waterHeight(p)*s; + return normalize(vec3( + waterHeight(p+e.xyy)*s-m, + 1.0, + waterHeight(p+e.yxy)*s-m + )); +} + +// Ray intersections +vec4 intersectSphere(vec3 rpos, vec3 rdir, vec3 pos, float rad) +{ + vec3 op = pos - rpos; + float b = dot(op, rdir); + float det = b*b - dot(op, op) + rad*rad; + + if (det > 0.0) + { + det = sqrt(det); + float t = b - det; + if (t > eps) + return vec4(-normalize(rpos+rdir*t-pos), t); + } + + return vec4(0.0); +} + +vec4 intersectCylinder(vec3 rpos, vec3 rdir, vec3 pos, float rad) +{ + vec3 op = pos - rpos; + vec2 rdir2 = normalize(rdir.yz); + float b = dot(op.yz, rdir2); + float det = b*b - dot(op.yz, op.yz) + rad*rad; + + if (det > 0.0) + { + det = sqrt(det); + float t = b - det; + if (t > eps) + return vec4(-normalize(rpos.yz+rdir2*t-pos.yz), 0.0, t); + t = b + det; + if (t > eps) + return vec4(-normalize(rpos.yz+rdir2*t-pos.yz), 0.0, t); + } + + return vec4(0.0); +} + +vec4 intersectPlane(vec3 rayPos, vec3 rayDir, vec3 n, float d) +{ + float t = -(dot(rayPos, n) + d) / dot(rayDir, n); + return vec4(n * sign(dot(rayDir, n)), t); +} + +// Helper functions +vec3 rotate(vec3 p, float theta) +{ + float c = cos(theta), s = sin(theta); + return vec3(p.x * c + p.z * s, p.y, + p.z * c - p.x * s); +} + +float impulse(float k, float x) // by iq +{ + float h = k*x; + return h * exp(1.0 - h); +} + +// Raymarched parts of scene +float grass(vec3 pos) +{ + float h = length(pos - vec3(0.0, -7.0, 0.0)) - 8.0; + + if (h > 2.0) return h; // Optimization (Avoid noise if too far away) + + return h + snoise(pos * 3.0) * 0.1 + pos.y * 0.9; +} + +float tree(vec3 pos) +{ + pos.y -= 0.5; + float s = sin(pos.y*0.03); + float c = cos(pos.y*0.03); + mat2 m = mat2(c, -s, s, c); + vec3 p = vec3(m*pos.xy, pos.z); + + float width = 1.0 - pos.y * 0.02 - clamp(sin(pos.y * 8.0) * 0.1, 0.05, 0.1); + + return max(length(p.xz) - width, pos.y - 12.5); +} + +vec2 scene(vec3 pos) +{ + float vtree = tree(pos); + #ifdef GRASS + float vgrass = grass(pos); + float v = min(vtree, vgrass); + #else + float v = vtree; + #endif + return vec2(v, v == vtree ? 2.0 : 1.0); +} + +vec3 normal(vec3 pos) +{ + vec2 eps = vec2(1e-3, 0.0); + float h = scene(pos).x; + return normalize(vec3( + scene(pos-eps.xyy).x-h, + scene(pos-eps.yxy).x-h, + scene(pos-eps.yyx).x-h + )); +} + +float plantsShadow(vec3 rayPos, vec3 rayDir) +{ + // Soft shadow taken from iq + float k = 6.0; + float t = 0.0; + float s = 1.0; + for (int i = 0; i < 30; i++) + { + vec3 pos = rayPos+rayDir*t; + vec2 res = scene(pos); + if (res.x < 0.001) return 0.0; + s = min(s, k*res.x/t); + t += max(res.x, 0.01); + } + + return s*s*(3.0 - 2.0*s); +} + +// Ray-traced parts of scene +vec4 intersectWater(vec3 rayPos, vec3 rayDir) +{ + float h = sin(20.5 + iGlobalTime * 2.0) * 0.03; + float t = -(rayPos.y + 2.5 + h) / rayDir.y; + return vec4(0.0, 1.0, 0.0, t); +} + +vec4 intersectSand(vec3 rayPos, vec3 rayDir) +{ + return intersectSphere(rayPos, rayDir, vec3(0.0,-24.1,0.0), 24.1); +} + +vec4 intersectTreasure(vec3 rayPos, vec3 rayDir) +{ + return vec4(0.0); +} + +vec4 intersectLeaf(vec3 rayPos, vec3 rayDir, float openAmount) +{ + vec3 dir = normalize(vec3(0.0, 1.0, openAmount)); + float offset = 0.0; + + vec4 res = intersectPlane(rayPos, rayDir, dir, 0.0); + vec3 pos = rayPos+rayDir*res.w; + #ifdef RAGGED_LEAVES + offset = snoise(pos*0.8) * 0.3; + #endif + if (pos.y > 0.0 || length(pos * vec3(0.9, 2.0, 1.0)) > 4.0 - offset) res.w = 0.0; + + vec4 res2 = intersectPlane(rayPos, rayDir, vec3(dir.xy, -dir.z), 0.0); + pos = rayPos+rayDir*res2.w; + #ifdef RAGGED_LEAVES + offset = snoise(pos*0.8) * 0.3; + #endif + if (pos.y > 0.0 || length(pos * vec3(0.9, 2.0, 1.0)) > 4.0 - offset) res2.w = 0.0; + + if (res2.w > 0.0 && res2.w < res.w || res.w <= 0.0) + res = res2; + + return res; +} + +vec4 leaves(vec3 rayPos, vec3 rayDir) +{ + float t = 1e20; + vec3 n = vec3(0.0); + + rayPos -= leavesPos; + + float sway = impulse(15.0, fract(iGlobalTime / PI * 0.125)); + float upDownSway = sway * -sin(iGlobalTime) * 0.06; + float openAmount = sway * max(-cos(iGlobalTime) * 0.4, 0.0); + + float angleOffset = -0.1; + for (float k = 0.0; k < 6.2; k += 0.75) + { + // Left-right + float alpha = k + (k - PI) * sway * 0.015; + vec3 p = rotate(rayPos, alpha); + vec3 d = rotate(rayDir, alpha); + + // Up-down + angleOffset *= -1.0; + float theta = -0.4 + + angleOffset + + cos(k) * 0.35 + + upDownSway + + sin(iGlobalTime+k*10.0) * 0.03 * (sway + 0.2); + + p = rotate(p.xzy, theta).xzy; + d = rotate(d.xzy, theta).xzy; + + // Shift + p -= vec3(5.4, 0.0, 0.0); + + // Intersect individual leaf + vec4 res = intersectLeaf(p, d, 1.0+openAmount); + if (res.w > 0.0 && res.w < t) + { + t = res.w; + n = res.xyz; + } + } + + return vec4(n, t); +} + +// Lighting +float shadow(vec3 rayPos, vec3 rayDir) +{ + float s = 1.0; + + // Intersect sand + //vec4 resSand = intersectSand(rayPos, rayDir); + //if (resSand.w > 0.0) return 0.0; + + // Intersect plants + s = min(s, plantsShadow(rayPos, rayDir)); + if (s < 0.0001) return 0.0; + + // Intersect leaves + vec4 resLeaves = leaves(rayPos, rayDir); + if (resLeaves.w > 0.0 && resLeaves.w < 1e7) return 0.0; + + return s; +} + +vec3 light(vec3 p, vec3 n) +{ + float s = 1.0; + + #ifdef SHADOWS + s = shadow(p-sunDir*0.01, -sunDir); + #endif + + vec3 col = sunCol * min(max(dot(n, sunDir), 0.0), s); + col += skyCol * (-n.y * 0.5 + 0.5) * 0.3; + return col; +} + +vec3 lightLeaves(vec3 p, vec3 n) +{ + float s = 1.0; + + #ifdef SHADOWS + s = shadow(p-sunDir*0.01, -sunDir); + #endif + + float ao = min(length(p - leavesPos) * 0.1, 1.0); + + float ns = dot(n, sunDir); + float d = sqrt(max(ns, 0.0)); + vec3 col = sunCol * min(d, s); + col += sunCol * max(-ns, 0.0) * vec3(0.3, 0.3, 0.1) * ao; + col += skyCol * (-n.y * 0.5 + 0.5) * 0.3 * ao; + return col; +} + +vec3 sky(vec3 n) +{ + return skyCol * (1.0 - n.y * 0.8); +} + +// Ray-marching +vec4 plants(vec3 rayPos, vec3 rayDir) +{ + float t = 0.0; + + for (int i = 0; i < 40; i++) + { + vec3 pos = rayPos+rayDir*t; + vec2 res = scene(pos); + float h = res.x; + + if (h < 0.001) + { + vec3 col = res.y == 2.0 ? treeCol : grassCol; + float uvFact = res.y == 2.0 ? 1.0 : 10.0; + + vec3 n = normal(pos); + vec2 uv = vec2(n.x, pos.y * 0.5) * 0.2 * uvFact; + vec3 tex = texture2D(iChannel0, uv).rgb * 0.6 + 0.4; + float ao = min(length(pos - leavesPos) * 0.1, 1.0); + return vec4(col * light(pos, n) * ao * tex, t); + } + + t += h; + } + + return vec4(sky(rayDir), 1e8); +} + +// Final combination +vec3 traceReflection(vec3 rayPos, vec3 rayDir) +{ + vec3 col = vec3(0.0); + float t = 1e20; + + // Intersect plants + vec4 resPlants = plants(rayPos, rayDir); + if (resPlants.w > 0.0 && resPlants.w < t) + { + t = resPlants.w; + col = resPlants.xyz; + } + + // Intersect leaves + vec4 resLeaves = leaves(rayPos, rayDir); + if (resLeaves.w > 0.0 && resLeaves.w < t) + { + vec3 pos = rayPos + rayDir * resLeaves.w; + vec2 uv = (pos.xz - leavesPos.xz) * 0.3; + float tex = texture2D(iChannel0, uv).r * 0.6 + 0.5; + + t = resLeaves.w; + col = leavesCol * lightLeaves(pos, resLeaves.xyz) * tex; + } + + if (t > 1e7) return sky(rayDir); + + return col; +} + +vec3 trace(vec3 rayPos, vec3 rayDir) +{ + vec3 col = vec3(0.0); + float t = 1e20; + + // Intersect sand + vec4 resSand = intersectSand(rayPos, rayDir); + if (resSand.w > 0.0) + { + vec3 pos = rayPos + rayDir * resSand.w; + t = resSand.w; + + col = sandCol * light(pos, resSand.xyz); + } + + // Intersect treasure chest + vec4 resTreasure = intersectTreasure(rayPos, rayDir); + if (resTreasure.w > 0.0 && resTreasure.w < t) + { + vec3 pos = rayPos + rayDir * resTreasure.w; + t = resTreasure.w; + col = leavesCol * light(pos, resTreasure.xyz); + } + + // Intersect leaves + vec4 resLeaves = leaves(rayPos, rayDir); + if (resLeaves.w > 0.0 && resLeaves.w < t) + { + vec3 pos = rayPos + rayDir * resLeaves.w; + vec2 uv = (pos.xz - leavesPos.xz) * 0.3; + float tex = texture2D(iChannel0, uv).r * 0.6 + 0.5; + + t = resLeaves.w; + col = leavesCol * lightLeaves(pos, resLeaves.xyz) * tex; + } + + // Intersect plants + vec4 resPlants = plants(rayPos, rayDir); + if (resPlants.w > 0.0 && resPlants.w < t) + { + t = resPlants.w; + col = resPlants.xyz; + } + + // Intersect water + vec4 resWater = intersectWater(rayPos, rayDir); + if (resWater.w > 0.0 && resWater.w < t) + { + vec3 pos = rayPos + rayDir * resWater.w; + float dist = t - resWater.w; + vec3 n = bump(pos, rayDir); + + float ct = -min(dot(n,rayDir), 0.0); + float fresnel = 0.9 - 0.9 * pow(1.0 - ct, 5.0); + + vec3 trans = col * exp(-dist * vec3(1.0, 0.7, 0.4) * 3.0); + vec3 reflDir = normalize(reflect(rayDir, n)); + vec3 refl = sky(reflDir); + + #ifdef REFLECTIONS + if (dot(pos, rayDir) < -2.0) + refl = traceReflection(pos, reflDir).rgb; + #endif + + t = resWater.t; + col = mix(refl, trans, fresnel); + } + + if (t > 1e7) return sky(rayDir); + + return col; +} + +// Ray-generation +vec3 camera(vec2 px) +{ + vec2 rd = (px / iResolution.yy - vec2(iResolution.x/iResolution.y*0.5-0.5, 0.0)) * 2.0 - 1.0; + float t = sin(iGlobalTime * 0.1) * 0.2; + vec3 rayDir = normalize(vec3(rd.x, rd.y, 1.0)); + vec3 rayPos = vec3(0.0, 3.0, -18.0); + return trace(rayPos, rayDir); +} + +void main(void) +{ + #ifdef HEAVY_AA + vec3 col = camera(gl_FragCoord.xy+vec2(0.0,0.5))*0.25; + col += camera(gl_FragCoord.xy+vec2(0.25,0.0))*0.25; + col += camera(gl_FragCoord.xy+vec2(0.5,0.75))*0.25; + col += camera(gl_FragCoord.xy+vec2(0.75,0.25))*0.25; + #else + vec3 col = camera(gl_FragCoord.xy); + #ifdef LIGHT_AA + col = col * 0.5 + camera(gl_FragCoord.xy+vec2(0.5,0.5))*0.5; + #endif + #endif + + #ifdef TONEMAP + // Optimized Haarm-Peter Duiker’s curve + vec3 x = max(vec3(0.0),col*exposure-0.004); + col = (x*(6.2*x+.5))/(x*(6.2*x+1.7)+0.06); + #else + col = pow(col, vec3(0.4545)); + #endif + + gl_FragColor = vec4(col, 1.0); +} \ No newline at end of file diff --git a/samples/GLSL/shader.fp b/samples/GLSL/shader.fp new file mode 100644 index 00000000..607964f7 --- /dev/null +++ b/samples/GLSL/shader.fp @@ -0,0 +1,68 @@ +/* + * Copyright (C) 2010 Josh A. Beam + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES + * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. + * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; + * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, + * WHETHER IN CONTACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR + * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF + * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ + +const int NUM_LIGHTS = 3; +const vec3 AMBIENT = vec3(0.1, 0.1, 0.1); +const float MAX_DIST = 2.5; +const float MAX_DIST_SQUARED = MAX_DIST * MAX_DIST; + +uniform vec3 lightColor[NUM_LIGHTS]; + +varying vec3 fragmentNormal; +varying vec3 cameraVector; +varying vec3 lightVector[NUM_LIGHTS]; + +void +main() +{ + // initialize diffuse/specular lighting + vec3 diffuse = vec3(0.0, 0.0, 0.0); + vec3 specular = vec3(0.0, 0.0, 0.0); + + // normalize the fragment normal and camera direction + vec3 normal = normalize(fragmentNormal); + vec3 cameraDir = normalize(cameraVector); + + // loop through each light + for(int i = 0; i < NUM_LIGHTS; ++i) { + // calculate distance between 0.0 and 1.0 + float dist = min(dot(lightVector[i], lightVector[i]), MAX_DIST_SQUARED) / MAX_DIST_SQUARED; + float distFactor = 1.0 - dist; + + // diffuse + vec3 lightDir = normalize(lightVector[i]); + float diffuseDot = dot(normal, lightDir); + diffuse += lightColor[i] * clamp(diffuseDot, 0.0, 1.0) * distFactor; + + // specular + vec3 halfAngle = normalize(cameraDir + lightDir); + vec3 specularColor = min(lightColor[i] + 0.5, 1.0); + float specularDot = dot(normal, halfAngle); + specular += specularColor * pow(clamp(specularDot, 0.0, 1.0), 16.0) * distFactor; + } + + vec4 sample = vec4(1.0, 1.0, 1.0, 1.0); + gl_FragColor = vec4(clamp(sample.rgb * (diffuse + AMBIENT) + specular, 0.0, 1.0), sample.a); +} From 254b6de1d372a7cee2b91668832281cb08d648f1 Mon Sep 17 00:00:00 2001 From: Lars Brinkhoff Date: Wed, 31 Jul 2013 12:32:36 +0200 Subject: [PATCH 106/184] Add OpenGL Shading Language. --- lib/linguist/languages.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index dc44f473..aeba3508 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -481,9 +481,12 @@ GLSL: type: programming primary_extension: .glsl extensions: + - .fp - .frag + - .geom - .glslv - .shader + - .vert Genshi: primary_extension: .kid From cd3e88fe8b6f0e97058f1cf995a8a0bf82b2c69a Mon Sep 17 00:00:00 2001 From: dzidzitop Date: Sun, 18 Aug 2013 14:03:16 +0300 Subject: [PATCH 107/184] COPYING is added to excludes as a file that contains copyright information. --- lib/linguist/vendor.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/linguist/vendor.yml b/lib/linguist/vendor.yml index d23d6c65..8967c266 100644 --- a/lib/linguist/vendor.yml +++ b/lib/linguist/vendor.yml @@ -114,6 +114,7 @@ - ^[Ss]amples/ # LICENSE, README, git config files +- ^COPYING$ - ^LICENSE$ - gitattributes$ - gitignore$ From a4bdca6d6b3aaa36d878efbaa8030b93498a7891 Mon Sep 17 00:00:00 2001 From: Paulo Moura Date: Mon, 19 Aug 2013 02:31:33 +0100 Subject: [PATCH 108/184] Add alternative Logtalk source file extension --- lib/linguist/languages.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index ceb126cc..91ba8592 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -748,6 +748,8 @@ Logos: Logtalk: type: programming primary_extension: .lgt + extensions: + - .logtalk Lua: type: programming From c4a90bbbcd022dfea52f33788d2f7b0499b0b3be Mon Sep 17 00:00:00 2001 From: David Date: Thu, 22 Aug 2013 13:47:42 +0200 Subject: [PATCH 109/184] Added Volt language --- lib/linguist/languages.yml | 6 +++ samples/Volt/tesla.volt | 93 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 99 insertions(+) create mode 100644 samples/Volt/tesla.volt diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index f4cf56b6..c016e42f 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -1370,6 +1370,12 @@ Visual Basic: - .vba - .vbs +Volt: + type: programming + lexer: D + color: "#0098db" + primary_extension: .volt + XC: type: programming lexer: C diff --git a/samples/Volt/tesla.volt b/samples/Volt/tesla.volt new file mode 100644 index 00000000..c68d6691 --- /dev/null +++ b/samples/Volt/tesla.volt @@ -0,0 +1,93 @@ +// Copyright © 2012-2013, Jakob Bornecrantz. All rights reserved. +// See copyright notice in src/volt/license.d (BOOST ver. 1.0). +module main; + +import core.stdc.stdio; +import core.stdc.stdlib; + +import watt.process; +import watt.path; + +import results; +import list; +import cmd; + +int main() +{ + auto cmdGroup = new CmdGroup(); + bool printOk = true; + bool printImprovments = true; + bool printFailing = true; + bool printRegressions = true; + string compiler = getEnv("VOLT"); + + if (compiler is null) { + printf("compiler envar not set\n".ptr); + return -1; + } + + /// @todo Scan for files + auto tests = testList; + + int total; + int passed; + int failed; + int improved; + int regressed; + + auto rets = new Result[] (tests.length); + for (size_t i; i < tests.length; i++) { + rets[i] = new Result(); + rets[i].runTest(cmdGroup, tests[i], compiler); + } + + cmdGroup.waitAll(); + + for (size_t i; i < tests.length; i++) { + auto ret = rets[i]; + total++; + if (ret.ok) { + passed++; + improved += cast(int)!ret.hasPassed; + + if (!ret.hasPassed && printImprovments) { + printf("%s: %s, improved!\n".ptr, ret.test.ptr, ret.msg.ptr); + } else if (printOk) { + printf("%s: %s\n".ptr, ret.test.ptr, ret.msg.ptr); + } + } else { + failed++; + regressed += cast(int)ret.hasPassed; + + + if (ret.hasPassed && printRegressions) { + printf("%s: %s, regressed!\n".ptr, ret.test.ptr, ret.msg.ptr); + } else if (printFailing) { + printf("%s: %s\n".ptr, ret.test.ptr, ret.msg.ptr); + } + } + fflush(stdout); + } + + auto xml = fopen("results.xml".ptr, "w+".ptr); + if (xml !is null) { + fprintf(xml, "\n".ptr, + regressed, failed - regressed, total); + for (size_t i; i < rets.length; i++) { + rets[i].xmlLog(xml); + } + fprintf(xml, "\n".ptr); + fflush(xml); + fclose(xml); + xml = null; + } + + auto rate = cast(float)passed / cast(float)total * 100.f; + printf("Summary: %i tests, %i pass%s, %i failure%s, %.2f%% pass rate, %i regressions, %i improvements.\n".ptr, + total, + passed, (passed == 1 ? "".ptr : "es".ptr), + failed, (failed == 1 ? "".ptr : "s".ptr), + cast(double)rate, regressed, improved); + + return regressed ? -1 : 0; +} From 777f1d27d19bd019b45398d1e5104548eb9079a0 Mon Sep 17 00:00:00 2001 From: zulus Date: Fri, 23 Aug 2013 02:53:26 +0200 Subject: [PATCH 110/184] Exclude ExtJS library --- lib/linguist/vendor.yml | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/lib/linguist/vendor.yml b/lib/linguist/vendor.yml index 8967c266..a7a8bcb9 100644 --- a/lib/linguist/vendor.yml +++ b/lib/linguist/vendor.yml @@ -108,7 +108,22 @@ - ^[Pp]ackages/ # ExtJS -- (^|/)extjs/ +- (^|/)extjs/.*?\.js$ +- (^|/)extjs/.*?\.xml$ +- (^|/)extjs/.*?\.txt$ +- (^|/)extjs/.*?\.html$ +- (^|/)extjs/.*?\.properties$ +- (^|/)extjs/.sencha/ +- (^|/)extjs/docs/ +- (^|/)extjs/builds/ +- (^|/)extjs/cmd/ +- (^|/)extjs/examples/ +- (^|/)extjs/locale/ +- (^|/)extjs/packages/ +- (^|/)extjs/plugins/ +- (^|/)extjs/resources/ +- (^|/)extjs/src/ +- (^|/)extjs/welcome/ # Samples folders - ^[Ss]amples/ From 6ec22a16748b5e29e31eeec1416bc665e5001fcd Mon Sep 17 00:00:00 2001 From: liluo Date: Fri, 30 Aug 2013 11:04:46 +0800 Subject: [PATCH 111/184] remove unused else --- lib/linguist/language.rb | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/linguist/language.rb b/lib/linguist/language.rb index 0d34f4f9..0a8d3d54 100644 --- a/lib/linguist/language.rb +++ b/lib/linguist/language.rb @@ -452,7 +452,6 @@ module Linguist extnames.each do |extname| if !options['extensions'].include?(extname) options['extensions'] << extname - else end end end @@ -461,7 +460,6 @@ module Linguist fns.each do |filename| if !options['filenames'].include?(filename) options['filenames'] << filename - else end end end From a9c86d545323dbeca2e9919ed6ba792c820eb041 Mon Sep 17 00:00:00 2001 From: Adam Getchell Date: Sat, 31 Aug 2013 17:11:11 -0700 Subject: [PATCH 112/184] Add LaTeX and BibTeX --- lib/linguist/languages.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index d96125e8..fa7770a8 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -713,6 +713,12 @@ Lasso: ace_mode: lasso color: "#2584c3" primary_extension: .lasso + +LaTeX: + type: markup + primary_extension: .tex + extensions: + - .bib Less: type: markup From 9064369517c793f77f6e93922e110e9a0fea8a92 Mon Sep 17 00:00:00 2001 From: Adam Getchell Date: Sat, 31 Aug 2013 18:08:39 -0700 Subject: [PATCH 113/184] Update languages.yml --- lib/linguist/languages.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index fa7770a8..39efe7b4 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -716,6 +716,7 @@ Lasso: LaTeX: type: markup + lexer: tex primary_extension: .tex extensions: - .bib From e33e76a1a7f5fc012359c17ae2e3db5a8ed4df80 Mon Sep 17 00:00:00 2001 From: Adam Getchell Date: Sat, 31 Aug 2013 18:12:16 -0700 Subject: [PATCH 114/184] Update languages.yml --- lib/linguist/languages.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 39efe7b4..544073a9 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -716,7 +716,7 @@ Lasso: LaTeX: type: markup - lexer: tex + lexer: TeX primary_extension: .tex extensions: - .bib From 7e251d73451c48d0237bdaf50152027e4d8a3d55 Mon Sep 17 00:00:00 2001 From: Adam Getchell Date: Sat, 31 Aug 2013 18:21:14 -0700 Subject: [PATCH 115/184] Add definitions to TeX --- lib/linguist/languages.yml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 544073a9..1902d76f 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -713,13 +713,6 @@ Lasso: ace_mode: lasso color: "#2584c3" primary_extension: .lasso - -LaTeX: - type: markup - lexer: TeX - primary_extension: .tex - extensions: - - .bib Less: type: markup @@ -1296,6 +1289,7 @@ TeX: primary_extension: .tex extensions: - .aux + - .bib - .dtx - .ins - .ltx From d031392507bb67f32e9ba99a97776e81fb2c8596 Mon Sep 17 00:00:00 2001 From: Mouq Date: Sun, 1 Sep 2013 10:14:14 -0400 Subject: [PATCH 116/184] Add .nqp to the list of Perl file extensions --- lib/linguist/languages.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index d96125e8..aafbf7d4 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -1014,6 +1014,7 @@ Perl: - .pm6 - .pod - .psgi + - .nqp Pike: type: programming From 2305496f94364a1dccd746a1a35a1d9db66dafca Mon Sep 17 00:00:00 2001 From: Mouq Date: Sun, 1 Sep 2013 22:06:08 -0400 Subject: [PATCH 117/184] Fix order of extensions --- lib/linguist/languages.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index aafbf7d4..981abfbe 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -1008,13 +1008,13 @@ Perl: primary_extension: .pl extensions: - .PL + - .nqp - .perl - .ph - .plx - .pm6 - .pod - .psgi - - .nqp Pike: type: programming From 33434f08f4f570dd279b53be9a779fbb1be3ceed Mon Sep 17 00:00:00 2001 From: Ted Nyman Date: Mon, 2 Sep 2013 00:02:15 -0700 Subject: [PATCH 118/184] Documentation --- bin/linguist | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/bin/linguist b/bin/linguist index 260d656c..d28aaf7b 100755 --- a/bin/linguist +++ b/bin/linguist @@ -1,7 +1,6 @@ #!/usr/bin/env ruby -# linguist — detect language type for a file, or, given a directory -# determine language breakdown +# linguist — detect language type for a file, or, given a directory, determine language breakdown # # usage: linguist From de8c4daa45a4158ad8ddbc0bc5dbf17fcf2e650b Mon Sep 17 00:00:00 2001 From: Roman Scherer Date: Tue, 3 Sep 2013 21:34:06 +0200 Subject: [PATCH 119/184] Add the ".cljx" file extension to the list of Clojure languages. Some people start writing portable Clojure/Clojurescript code and use the ".cljx" file extension for that. This is driven by this project: https://github.com/lynaghk/cljx --- lib/linguist/languages.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 981abfbe..11e7a62d 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -242,6 +242,7 @@ Clojure: primary_extension: .clj extensions: - .cljs + - .cljx filenames: - riemann.config From 32b7b3e1b1bf9c8694672e83914d2b89e4942069 Mon Sep 17 00:00:00 2001 From: Bulwersator Date: Thu, 5 Sep 2013 20:50:08 +0200 Subject: [PATCH 120/184] Update languages.yml --- lib/linguist/languages.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 11e7a62d..1aaf3423 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -1180,6 +1180,11 @@ SCSS: ace_mode: scss primary_extension: .scss +Squirrel: + type: programming + lexer: C++ + primary_extension: .nut + SQL: type: data ace_mode: sql From 85840aadc287c5d504cee3e28315efb1e76e7c78 Mon Sep 17 00:00:00 2001 From: Bulwersator Date: Thu, 5 Sep 2013 20:54:59 +0200 Subject: [PATCH 121/184] Create Squirrel.nut --- samples/Squirrel/Squirrel.nut | 56 +++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 samples/Squirrel/Squirrel.nut diff --git a/samples/Squirrel/Squirrel.nut b/samples/Squirrel/Squirrel.nut new file mode 100644 index 00000000..105c468c --- /dev/null +++ b/samples/Squirrel/Squirrel.nut @@ -0,0 +1,56 @@ +//example from http://www.squirrel-lang.org/#documentation + +local table = { + a = "10" + subtable = { + array = [1,2,3] + }, + [10 + 123] = "expression index" +} + +local array=[ 1, 2, 3, { a = 10, b = "string" } ]; + +foreach (i,val in array) +{ + ::print("the type of val is"+typeof val); +} + +///////////////////////////////////////////// + +class Entity +{ + constructor(etype,entityname) + { + name = entityname; + type = etype; + } + + x = 0; + y = 0; + z = 0; + name = null; + type = null; +} + +function Entity::MoveTo(newx,newy,newz) +{ + x = newx; + y = newy; + z = newz; +} + +class Player extends Entity { + constructor(entityname) + { + base.constructor("Player",entityname) + } + function DoDomething() + { + ::print("something"); + } + +} + +local newplayer = Player("da playar"); + +newplayer.MoveTo(100,200,300); From 229ab3a268b57a5b4bb3a8e9c81ce65acaafd11f Mon Sep 17 00:00:00 2001 From: Bulwersator Date: Thu, 5 Sep 2013 22:02:09 +0200 Subject: [PATCH 122/184] fix sorting --- lib/linguist/languages.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 1aaf3423..9380797a 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -1180,17 +1180,17 @@ SCSS: ace_mode: scss primary_extension: .scss -Squirrel: - type: programming - lexer: C++ - primary_extension: .nut - SQL: type: data ace_mode: sql searchable: false primary_extension: .sql +Squirrel: + type: programming + lexer: C++ + primary_extension: .nut + Sage: type: programming lexer: Python From 9e9aae1d834e14a0abc37a83b847b109b236bc06 Mon Sep 17 00:00:00 2001 From: Bulwersator Date: Thu, 5 Sep 2013 22:10:49 +0200 Subject: [PATCH 123/184] really fix sorting --- lib/linguist/languages.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 9380797a..34f83773 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -1186,11 +1186,6 @@ SQL: searchable: false primary_extension: .sql -Squirrel: - type: programming - lexer: C++ - primary_extension: .nut - Sage: type: programming lexer: Python @@ -1254,6 +1249,11 @@ Smalltalk: Smarty: primary_extension: .tpl +Squirrel: + type: programming + lexer: C++ + primary_extension: .nut + Standard ML: type: programming color: "#dc566d" From 42311e1bf30dfcb6e4d7de004ab3b2b804c9b8b9 Mon Sep 17 00:00:00 2001 From: "Faith-Anne L. Kocadag" Date: Thu, 5 Sep 2013 22:05:21 -0400 Subject: [PATCH 124/184] Adding .x3d to the list of .xml extensions. Adding .x3d to the list of .xml extensions: [x3d specifications] (http://www.web3d.org/x3d/specifications/x3d_specification.html) --- lib/linguist/languages.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 11e7a62d..d3727ba5 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -1430,6 +1430,7 @@ XML: - .wxi - .wxl - .wxs + - .x3d - .xaml - .xlf - .xliff From e610789d381398b17a0118b05a13dcb7386e6c7a Mon Sep 17 00:00:00 2001 From: Charlie Somerville Date: Sat, 7 Sep 2013 03:10:56 +1000 Subject: [PATCH 125/184] rake samples --- lib/linguist/samples.json | 653 +++++++++++++++++++++++++++++++++++++- 1 file changed, 650 insertions(+), 3 deletions(-) diff --git a/lib/linguist/samples.json b/lib/linguist/samples.json index b0c0f6bb..abb7efc0 100644 --- a/lib/linguist/samples.json +++ b/lib/linguist/samples.json @@ -32,6 +32,12 @@ "Ceylon": [ ".ceylon" ], + "COBOL": [ + ".cbl", + ".ccp", + ".cob", + ".cpy" + ], "CoffeeScript": [ ".coffee" ], @@ -77,6 +83,10 @@ "GAS": [ ".s" ], + "GLSL": [ + ".fp", + ".glsl" + ], "Gosu": [ ".gs", ".gsp", @@ -205,6 +215,9 @@ "Parrot Internal Representation": [ ".pir" ], + "Pascal": [ + ".dpr" + ], "Perl": [ ".fcgi", ".pl", @@ -318,6 +331,9 @@ "Visual Basic": [ ".cls" ], + "Volt": [ + ".volt" + ], "wisp": [ ".wisp" ], @@ -399,8 +415,8 @@ ".gemrc" ] }, - "tokens_total": 407642, - "languages_total": 439, + "tokens_total": 411916, + "languages_total": 448, "tokens": { "ABAP": { "*/**": 1, @@ -9844,6 +9860,37 @@ "<=>": 1, "other.name": 1 }, + "COBOL": { + "program": 1, + "-": 19, + "id.": 1, + "hello.": 3, + "procedure": 1, + "division.": 1, + "display": 1, + ".": 3, + "stop": 1, + "run.": 1, + "IDENTIFICATION": 2, + "DIVISION.": 4, + "PROGRAM": 2, + "ID.": 2, + "PROCEDURE": 2, + "DISPLAY": 2, + "STOP": 2, + "RUN.": 2, + "COBOL": 7, + "TEST": 2, + "RECORD.": 1, + "USAGES.": 1, + "COMP": 5, + "PIC": 5, + "S9": 4, + "(": 5, + ")": 5, + "COMP.": 3, + "COMP2": 2 + }, "CoffeeScript": { "CoffeeScript": 1, "require": 21, @@ -14147,6 +14194,491 @@ "xd": 1, ".subsections_via_symbols": 1 }, + "GLSL": { + "////": 4, + "High": 1, + "quality": 2, + "(": 386, + "Some": 1, + "browsers": 1, + "may": 1, + "freeze": 1, + "or": 1, + "crash": 1, + ")": 386, + "//#define": 10, + "HIGHQUALITY": 2, + "Medium": 1, + "Should": 1, + "be": 1, + "fine": 1, + "on": 3, + "all": 1, + "systems": 1, + "works": 1, + "Intel": 1, + "HD2000": 1, + "Win7": 1, + "but": 1, + "quite": 1, + "slow": 1, + "MEDIUMQUALITY": 2, + "Defaults": 1, + "REFLECTIONS": 3, + "#define": 13, + "SHADOWS": 5, + "GRASS": 3, + "SMALL_WAVES": 4, + "RAGGED_LEAVES": 5, + "DETAILED_NOISE": 3, + "LIGHT_AA": 3, + "//": 36, + "sample": 2, + "SSAA": 2, + "HEAVY_AA": 2, + "x2": 5, + "RG": 1, + "TONEMAP": 5, + "Configurations": 1, + "#ifdef": 14, + "#endif": 14, + "const": 18, + "float": 103, + "eps": 5, + "e": 4, + "-": 108, + ";": 353, + "PI": 3, + "vec3": 165, + "sunDir": 5, + "skyCol": 4, + "sandCol": 2, + "treeCol": 2, + "grassCol": 2, + "leavesCol": 4, + "leavesPos": 4, + "sunCol": 5, + "#else": 5, + "exposure": 1, + "Only": 1, + "used": 1, + "when": 1, + "tonemapping": 1, + "mod289": 4, + "x": 11, + "{": 61, + "return": 47, + "floor": 8, + "*": 115, + "/": 24, + "}": 61, + "vec4": 72, + "permute": 4, + "x*34.0": 1, + "+": 108, + "*x": 3, + "taylorInvSqrt": 2, + "r": 14, + "snoise": 7, + "v": 8, + "vec2": 26, + "C": 1, + "/6.0": 1, + "/3.0": 1, + "D": 1, + "i": 38, + "dot": 30, + "C.yyy": 2, + "x0": 7, + "C.xxx": 2, + "g": 2, + "step": 2, + "x0.yzx": 1, + "x0.xyz": 1, + "l": 1, + "i1": 2, + "min": 11, + "g.xyz": 2, + "l.zxy": 2, + "i2": 2, + "max": 9, + "x1": 4, + "*C.x": 2, + "/3": 1, + "C.y": 1, + "x3": 4, + "D.yyy": 1, + "D.y": 1, + "p": 26, + "i.z": 1, + "i1.z": 1, + "i2.z": 1, + "i.y": 1, + "i1.y": 1, + "i2.y": 1, + "i.x": 1, + "i1.x": 1, + "i2.x": 1, + "n_": 2, + "/7.0": 1, + "ns": 4, + "D.wyz": 1, + "D.xzx": 1, + "j": 4, + "ns.z": 3, + "mod": 2, + "*7": 1, + "x_": 3, + "y_": 2, + "N": 1, + "*ns.x": 2, + "ns.yyyy": 2, + "y": 2, + "h": 21, + "abs": 2, + "b0": 3, + "x.xy": 1, + "y.xy": 1, + "b1": 3, + "x.zw": 1, + "y.zw": 1, + "//vec4": 3, + "s0": 2, + "lessThan": 2, + "*2.0": 4, + "s1": 2, + "sh": 1, + "a0": 1, + "b0.xzyw": 1, + "s0.xzyw*sh.xxyy": 1, + "a1": 1, + "b1.xzyw": 1, + "s1.xzyw*sh.zzww": 1, + "p0": 5, + "a0.xy": 1, + "h.x": 1, + "p1": 5, + "a0.zw": 1, + "h.y": 1, + "p2": 5, + "a1.xy": 1, + "h.z": 1, + "p3": 5, + "a1.zw": 1, + "h.w": 1, + "//Normalise": 1, + "gradients": 1, + "norm": 1, + "norm.x": 1, + "norm.y": 1, + "norm.z": 1, + "norm.w": 1, + "m": 8, + "m*m": 1, + "fbm": 2, + "final": 5, + "waterHeight": 4, + "d": 10, + "length": 7, + "p.xz": 2, + "sin": 8, + "iGlobalTime": 7, + "Island": 1, + "waves": 3, + "p*0.5": 1, + "Other": 1, + "bump": 2, + "pos": 42, + "rayDir": 43, + "s": 23, + "Fade": 1, + "out": 1, + "to": 1, + "reduce": 1, + "aliasing": 1, + "dist": 7, + "<": 23, + "sqrt": 6, + "Calculate": 1, + "normal": 7, + "from": 2, + "heightmap": 1, + "pos.x": 1, + "iGlobalTime*0.5": 1, + "pos.z": 2, + "*0.7": 1, + "*s": 4, + "normalize": 14, + "e.xyy": 1, + "e.yxy": 1, + "intersectSphere": 2, + "rpos": 5, + "rdir": 3, + "rad": 2, + "op": 5, + "b": 5, + "det": 11, + "b*b": 2, + "rad*rad": 2, + "if": 29, + "t": 44, + "rdir*t": 1, + "intersectCylinder": 1, + "rdir2": 2, + "rdir.yz": 1, + "op.yz": 3, + "rpos.yz": 2, + "rdir2*t": 2, + "pos.yz": 2, + "intersectPlane": 3, + "rayPos": 38, + "n": 18, + "sign": 1, + "rotate": 5, + "theta": 6, + "c": 6, + "cos": 4, + "p.x": 2, + "p.z": 2, + "p.y": 1, + "impulse": 2, + "k": 8, + "by": 1, + "iq": 2, + "k*x": 1, + "exp": 2, + "grass": 2, + "Optimization": 1, + "Avoid": 1, + "noise": 1, + "too": 1, + "far": 1, + "away": 1, + "pos.y": 8, + "tree": 2, + "pos.y*0.03": 2, + "mat2": 2, + "m*pos.xy": 1, + "width": 2, + "clamp": 4, + "scene": 7, + "vtree": 4, + "vgrass": 2, + ".x": 4, + "eps.xyy": 1, + "eps.yxy": 1, + "eps.yyx": 1, + "plantsShadow": 2, + "Soft": 1, + "shadow": 4, + "taken": 1, + "for": 7, + "int": 7, + "rayDir*t": 2, + "res": 6, + "res.x": 3, + "k*res.x/t": 1, + "s*s*": 1, + "intersectWater": 2, + "rayPos.y": 1, + "rayDir.y": 1, + "intersectSand": 3, + "intersectTreasure": 2, + "intersectLeaf": 2, + "openAmount": 4, + "dir": 2, + "offset": 5, + "rayDir*res.w": 1, + "pos*0.8": 2, + "||": 3, + "res.w": 6, + "res2": 2, + "dir.xy": 1, + "dir.z": 1, + "rayDir*res2.w": 1, + "res2.w": 3, + "&&": 10, + "leaves": 7, + "e20": 3, + "sway": 5, + "fract": 1, + "upDownSway": 2, + "angleOffset": 3, + "Left": 1, + "right": 1, + "alpha": 3, + "Up": 1, + "down": 1, + "k*10.0": 1, + "p.xzy": 1, + ".xzy": 2, + "d.xzy": 1, + "Shift": 1, + "Intersect": 11, + "individual": 1, + "leaf": 1, + "res.xyz": 1, + "sand": 2, + "resSand": 2, + "//if": 1, + "resSand.w": 4, + "plants": 6, + "resLeaves": 3, + "resLeaves.w": 10, + "e7": 3, + "light": 5, + "sunDir*0.01": 2, + "col": 32, + "n.y": 3, + "lightLeaves": 3, + "ao": 5, + "sky": 5, + "res.y": 2, + "uvFact": 2, + "uv": 12, + "n.x": 1, + "tex": 6, + "texture2D": 6, + "iChannel0": 3, + ".rgb": 2, + "e8": 1, + "traceReflection": 2, + "resPlants": 2, + "resPlants.w": 6, + "resPlants.xyz": 2, + "pos.xz": 2, + "leavesPos.xz": 2, + ".r": 3, + "resLeaves.xyz": 2, + "trace": 2, + "resSand.xyz": 1, + "treasure": 1, + "chest": 1, + "resTreasure": 1, + "resTreasure.w": 4, + "resTreasure.xyz": 1, + "water": 1, + "resWater": 1, + "resWater.w": 4, + "ct": 2, + "fresnel": 2, + "pow": 3, + "trans": 2, + "reflDir": 3, + "reflect": 1, + "refl": 3, + "resWater.t": 1, + "mix": 2, + "camera": 8, + "px": 4, + "rd": 1, + "iResolution.yy": 1, + "iResolution.x/iResolution.y*0.5": 1, + "rd.x": 1, + "rd.y": 1, + "void": 5, + "main": 3, + "gl_FragCoord.xy": 7, + "*0.25": 4, + "*0.5": 1, + "Optimized": 1, + "Haarm": 1, + "Peter": 1, + "Duiker": 1, + "curve": 1, + "col*exposure": 1, + "x*": 2, + ".5": 1, + "gl_FragColor": 2, + "NUM_LIGHTS": 4, + "AMBIENT": 2, + "MAX_DIST": 3, + "MAX_DIST_SQUARED": 3, + "uniform": 7, + "lightColor": 3, + "[": 29, + "]": 29, + "varying": 3, + "fragmentNormal": 2, + "cameraVector": 2, + "lightVector": 4, + "initialize": 1, + "diffuse/specular": 1, + "lighting": 1, + "diffuse": 4, + "specular": 4, + "the": 1, + "fragment": 1, + "and": 2, + "direction": 1, + "cameraDir": 2, + "loop": 1, + "through": 1, + "each": 1, + "calculate": 1, + "distance": 1, + "between": 1, + "distFactor": 3, + "lightDir": 3, + "diffuseDot": 2, + "halfAngle": 2, + "specularColor": 2, + "specularDot": 2, + "sample.rgb": 1, + "sample.a": 1, + "#version": 1, + "kCoeff": 2, + "kCube": 2, + "uShift": 3, + "vShift": 3, + "chroma_red": 2, + "chroma_green": 2, + "chroma_blue": 2, + "bool": 1, + "apply_disto": 4, + "sampler2D": 1, + "input1": 4, + "adsk_input1_w": 4, + "adsk_input1_h": 3, + "adsk_input1_aspect": 1, + "adsk_input1_frameratio": 5, + "adsk_result_w": 3, + "adsk_result_h": 2, + "distortion_f": 3, + "f": 17, + "r*r": 1, + "inverse_f": 2, + "lut": 9, + "max_r": 2, + "incr": 2, + "lut_r": 5, + ".z": 5, + ".y": 2, + "aberrate": 4, + "chroma": 2, + "chromaticize_and_invert": 2, + "rgb_f": 5, + "px.x": 2, + "px.y": 2, + "uv.x": 11, + "uv.y": 7, + "*2": 2, + "uv.x*uv.x": 1, + "uv.y*uv.y": 1, + "else": 1, + "rgb_uvs": 12, + "rgb_f.rr": 1, + "rgb_f.gg": 1, + "rgb_f.bb": 1, + "sampled": 1, + "sampled.r": 1, + "sampled.g": 1, + ".g": 1, + "sampled.b": 1, + ".b": 1, + "gl_FragColor.rgba": 1, + "sampled.rgb": 1 + }, "Gosu": { "print": 4, "(": 54, @@ -30306,6 +30838,30 @@ "say": 1, ".end": 1 }, + "Pascal": { + "program": 1, + "gmail": 1, + ";": 6, + "uses": 1, + "Forms": 1, + "Unit2": 1, + "in": 1, + "{": 2, + "Form2": 2, + "}": 2, + "R": 1, + "*.res": 1, + "begin": 1, + "Application.Initialize": 1, + "Application.MainFormOnTaskbar": 1, + "True": 1, + "Application.CreateForm": 1, + "(": 1, + "TForm2": 1, + ")": 1, + "Application.Run": 1, + "end.": 1 + }, "Perl": { "package": 14, "App": 131, @@ -38683,6 +39239,89 @@ "Boolean": 1, "True": 1 }, + "Volt": { + "module": 1, + "main": 2, + ";": 53, + "import": 7, + "core.stdc.stdio": 1, + "core.stdc.stdlib": 1, + "watt.process": 1, + "watt.path": 1, + "results": 1, + "list": 1, + "cmd": 1, + "int": 8, + "(": 37, + ")": 37, + "{": 12, + "auto": 6, + "cmdGroup": 2, + "new": 3, + "CmdGroup": 1, + "bool": 4, + "printOk": 2, + "true": 4, + "printImprovments": 2, + "printFailing": 2, + "printRegressions": 2, + "string": 1, + "compiler": 3, + "getEnv": 1, + "if": 7, + "is": 2, + "null": 3, + "printf": 6, + ".ptr": 14, + "return": 2, + "-": 3, + "}": 12, + "///": 1, + "@todo": 1, + "Scan": 1, + "for": 4, + "files": 1, + "tests": 2, + "testList": 1, + "total": 5, + "passed": 5, + "failed": 5, + "improved": 3, + "regressed": 6, + "rets": 5, + "Result": 2, + "[": 6, + "]": 6, + "tests.length": 3, + "size_t": 3, + "i": 14, + "<": 3, + "+": 14, + ".runTest": 1, + "cmdGroup.waitAll": 1, + "ret": 1, + "ret.ok": 1, + "cast": 5, + "ret.hasPassed": 4, + "&&": 2, + "ret.test.ptr": 4, + "ret.msg.ptr": 4, + "else": 3, + "fflush": 2, + "stdout": 1, + "xml": 8, + "fopen": 1, + "fprintf": 2, + "rets.length": 1, + ".xmlLog": 1, + "fclose": 1, + "rate": 2, + "float": 2, + "/": 1, + "*": 1, + "f": 1, + "double": 1 + }, "wisp": { ";": 199, "#": 2, @@ -40245,6 +40884,7 @@ "C": 58732, "C++": 21480, "Ceylon": 50, + "COBOL": 90, "CoffeeScript": 2951, "Coq": 18259, "CSS": 43867, @@ -40259,6 +40899,7 @@ "fish": 636, "Forth": 1516, "GAS": 133, + "GLSL": 3766, "Gosu": 413, "Groovy": 69, "Groovy Server Pages": 91, @@ -40298,6 +40939,7 @@ "OpenEdge ABL": 762, "Parrot Assembly": 6, "Parrot Internal Representation": 5, + "Pascal": 30, "Perl": 17497, "PHP": 20724, "PogoScript": 250, @@ -40329,6 +40971,7 @@ "VHDL": 42, "VimL": 20, "Visual Basic": 345, + "Volt": 388, "wisp": 1363, "XC": 24, "XML": 5622, @@ -40349,6 +40992,7 @@ "C": 24, "C++": 20, "Ceylon": 1, + "COBOL": 4, "CoffeeScript": 9, "Coq": 12, "CSS": 2, @@ -40363,6 +41007,7 @@ "fish": 3, "Forth": 7, "GAS": 1, + "GLSL": 3, "Gosu": 5, "Groovy": 2, "Groovy Server Pages": 4, @@ -40402,6 +41047,7 @@ "OpenEdge ABL": 5, "Parrot Assembly": 1, "Parrot Internal Representation": 1, + "Pascal": 1, "Perl": 14, "PHP": 9, "PogoScript": 1, @@ -40433,6 +41079,7 @@ "VHDL": 1, "VimL": 2, "Visual Basic": 1, + "Volt": 1, "wisp": 1, "XC": 1, "XML": 3, @@ -40442,5 +41089,5 @@ "Xtend": 2, "YAML": 1 }, - "md5": "98ddc204696b84bb42fd75ba9d22e0ca" + "md5": "80a4f99d355c505e82a335f7d5cd1f8e" } \ No newline at end of file From fdccffddfc7098b88b6ed37841862089158d7202 Mon Sep 17 00:00:00 2001 From: Charlie Somerville Date: Sat, 7 Sep 2013 03:17:25 +1000 Subject: [PATCH 126/184] rename Delphi to Pascal --- lib/linguist/languages.yml | 17 +++++++------ lib/linguist/samples.json | 35 +++----------------------- samples/{Delphi => Pascal}/program.dpr | 0 3 files changed, 12 insertions(+), 40 deletions(-) rename samples/{Delphi => Pascal}/program.dpr (100%) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index d3727ba5..12566ce7 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -339,14 +339,6 @@ Dart: type: programming primary_extension: .dart -Delphi: - type: programming - color: "#b0ce4e" - primary_extension: .pas - extensions: - - .dfm - - .lpr - DCPU-16 ASM: type: programming lexer: dasm16 @@ -1002,6 +994,15 @@ Parrot Assembly: - pasm primary_extension: .pasm +Pascal: + type: programming + lexer: Delphi + color: "#b0ce4e" + primary_extension: .pas + extensions: + - .dfm + - .lpr + Perl: type: programming ace_mode: perl diff --git a/lib/linguist/samples.json b/lib/linguist/samples.json index abb7efc0..56a3d875 100644 --- a/lib/linguist/samples.json +++ b/lib/linguist/samples.json @@ -50,9 +50,6 @@ "Dart": [ ".dart" ], - "Delphi": [ - ".dpr" - ], "Diff": [ ".patch" ], @@ -415,8 +412,8 @@ ".gemrc" ] }, - "tokens_total": 411916, - "languages_total": 448, + "tokens_total": 411886, + "languages_total": 447, "tokens": { "ABAP": { "*/**": 1, @@ -12722,30 +12719,6 @@ "q": 1, "print": 1 }, - "Delphi": { - "program": 1, - "gmail": 1, - ";": 6, - "uses": 1, - "Forms": 1, - "Unit2": 1, - "in": 1, - "{": 2, - "Form2": 2, - "}": 2, - "R": 1, - "*.res": 1, - "begin": 1, - "Application.Initialize": 1, - "Application.MainFormOnTaskbar": 1, - "True": 1, - "Application.CreateForm": 1, - "(": 1, - "TForm2": 1, - ")": 1, - "Application.Run": 1, - "end.": 1 - }, "Diff": { "diff": 1, "-": 5, @@ -40889,7 +40862,6 @@ "Coq": 18259, "CSS": 43867, "Dart": 68, - "Delphi": 30, "Diff": 16, "Ecl": 281, "edn": 227, @@ -40997,7 +40969,6 @@ "Coq": 12, "CSS": 2, "Dart": 1, - "Delphi": 1, "Diff": 1, "Ecl": 1, "edn": 1, @@ -41089,5 +41060,5 @@ "Xtend": 2, "YAML": 1 }, - "md5": "80a4f99d355c505e82a335f7d5cd1f8e" + "md5": "04aab6477c2dc5ef1be1c9de1886c3f3" } \ No newline at end of file diff --git a/samples/Delphi/program.dpr b/samples/Pascal/program.dpr similarity index 100% rename from samples/Delphi/program.dpr rename to samples/Pascal/program.dpr From a9b944ac362b28b03ca6ec72c9914fb674370bfc Mon Sep 17 00:00:00 2001 From: kethomassen Date: Mon, 9 Sep 2013 16:44:00 +1000 Subject: [PATCH 127/184] Make markup tests pass Yaml ain't Markup Language! --- test/test_language.rb | 1 - 1 file changed, 1 deletion(-) diff --git a/test/test_language.rb b/test/test_language.rb index 3ca231b5..aacc1e84 100644 --- a/test/test_language.rb +++ b/test/test_language.rb @@ -191,7 +191,6 @@ class TestLanguage < Test::Unit::TestCase def test_markup assert_equal :markup, Language['HTML'].type - assert_equal :markup, Language['YAML'].type end def test_other From ee840321d1b709de1998b12b20f46acceb6252b1 Mon Sep 17 00:00:00 2001 From: Ted Nyman Date: Mon, 9 Sep 2013 00:39:34 -0700 Subject: [PATCH 128/184] Add test_data --- test/test_language.rb | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/test_language.rb b/test/test_language.rb index 413a015d..38ed4a06 100644 --- a/test/test_language.rb +++ b/test/test_language.rb @@ -193,6 +193,10 @@ class TestLanguage < Test::Unit::TestCase assert_equal :markup, Language['HTML'].type end + def test_data + assert_equal :data, Language['YAML'].type + end + def test_other assert_nil Language['Brainfuck'].type assert_nil Language['Makefile'].type From 590ed26f7b72d5d98e91a80ffb3f08cc26e51165 Mon Sep 17 00:00:00 2001 From: Andrew Kumanyaev Date: Mon, 9 Sep 2013 11:58:24 +0400 Subject: [PATCH 129/184] Alphabetized list for Common Lisp Via comment https://github.com/github/linguist/pull/536#issuecomment-24046315 --- lib/linguist/languages.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 17f4333f..06b2d142 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -271,8 +271,8 @@ Common Lisp: extensions: - .asd - .lsp - - .podsl - .ny + - .podsl Coq: type: programming From 687e82307e9190c40605408e0a00ed605d74c0dc Mon Sep 17 00:00:00 2001 From: Ted Nyman Date: Wed, 18 Sep 2013 19:00:15 -0700 Subject: [PATCH 130/184] .cfg is used by too many non INI files --- lib/linguist/languages.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index e5b1a6bf..765c1862 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -619,7 +619,6 @@ Haxe: INI: type: data extensions: - - .cfg - .ini - .prefs - .properties From f06167eacabbc7a8055f74247f509298191b07af Mon Sep 17 00:00:00 2001 From: Ted Nyman Date: Wed, 18 Sep 2013 19:02:12 -0700 Subject: [PATCH 131/184] Bump to 2.9.5 --- github-linguist.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/github-linguist.gemspec b/github-linguist.gemspec index 2fde4a68..71846285 100644 --- a/github-linguist.gemspec +++ b/github-linguist.gemspec @@ -1,6 +1,6 @@ Gem::Specification.new do |s| s.name = 'github-linguist' - s.version = '2.9.4' + s.version = '2.9.5' s.summary = "GitHub Language detection" s.authors = "GitHub" From a9db25cc5bb19b758bb9eedae1cd0c3793fec39a Mon Sep 17 00:00:00 2001 From: Ted Nyman Date: Thu, 19 Sep 2013 17:33:26 -0700 Subject: [PATCH 132/184] Fix grammar --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 472fdb29..8a084513 100644 --- a/README.md +++ b/README.md @@ -84,7 +84,7 @@ To run the tests: The majority of patches won't need to touch any Ruby code at all. The [master language list](https://github.com/github/linguist/blob/master/lib/linguist/languages.yml) is just a configuration file. -We try to only add languages once they have a some usage on GitHub, so please note in-the-wild usage examples in your pull request. +We try to only add languages once they have some usage on GitHub, so please note in-the-wild usage examples in your pull request. Almost all bug fixes or new language additions should come with some additional code samples. Just drop them under [`samples/`](https://github.com/github/linguist/tree/master/samples) in the correct subdirectory and our test suite will automatically test them. In most cases you shouldn't need to add any new assertions. From 800f445b224ce9c56414b9e02c661f273b359e4a Mon Sep 17 00:00:00 2001 From: Triangle717 Date: Fri, 20 Sep 2013 16:24:13 -0400 Subject: [PATCH 133/184] Update languages.yml Detect Inno Setup installer scripts (http://www.jrsoftware.org/isinfo.php) --- lib/linguist/languages.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 765c1862..1a97dcfb 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -623,6 +623,9 @@ INI: - .prefs - .properties primary_extension: .ini + +Inno Setup: + primary_extension: .iss IRC log: lexer: IRC logs From 8eef1c33b853a6f97e208ed0ceeb9b027cea5b66 Mon Sep 17 00:00:00 2001 From: Garen Torikian Date: Tue, 24 Sep 2013 16:13:04 -0700 Subject: [PATCH 134/184] Start adding prose content to detector --- lib/linguist/language.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/linguist/language.rb b/lib/linguist/language.rb index 0a8d3d54..a2953e91 100644 --- a/lib/linguist/language.rb +++ b/lib/linguist/language.rb @@ -25,7 +25,7 @@ module Linguist # # Returns an array def self.detectable_markup - ["CSS", "Less", "Sass"] + ["CSS", "Less", "Sass", "Markdown", "Textile", "reStructuredText"] end # Internal: Create a new Language object From a3a6c2f8b391665d471d08ce4316cc02c1af8398 Mon Sep 17 00:00:00 2001 From: Garen Torikian Date: Tue, 24 Sep 2013 16:23:05 -0700 Subject: [PATCH 135/184] Alphabetize, foo' --- lib/linguist/languages.yml | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 765c1862..24afe374 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -29,23 +29,6 @@ ABAP: lexer: ABAP primary_extension: .abap -ASP: - type: programming - color: "#6a40fd" - lexer: aspx-vb - search_term: aspx-vb - aliases: - - aspx - - aspx-vb - primary_extension: .asp - extensions: - - .asax - - .ascx - - .ashx - - .asmx - - .aspx - - .axd - ActionScript: type: programming lexer: ActionScript 3 @@ -91,6 +74,23 @@ Arduino: lexer: C++ primary_extension: .ino +ASP: + type: programming + color: "#6a40fd" + lexer: aspx-vb + search_term: aspx-vb + aliases: + - aspx + - aspx-vb + primary_extension: .asp + extensions: + - .asax + - .ascx + - .ashx + - .asmx + - .aspx + - .axd + Assembly: type: programming lexer: NASM From 5d35d18634b806a3527cb14852b8f296599f4033 Mon Sep 17 00:00:00 2001 From: Garen Torikian Date: Tue, 24 Sep 2013 16:28:54 -0700 Subject: [PATCH 136/184] Add AsciiDoc as an option --- lib/linguist/language.rb | 2 +- lib/linguist/languages.yml | 10 ++++++++++ 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/lib/linguist/language.rb b/lib/linguist/language.rb index a2953e91..9d59aef9 100644 --- a/lib/linguist/language.rb +++ b/lib/linguist/language.rb @@ -25,7 +25,7 @@ module Linguist # # Returns an array def self.detectable_markup - ["CSS", "Less", "Sass", "Markdown", "Textile", "reStructuredText"] + ["CSS", "Less", "Sass", "Markdown", "Textile", "reStructuredText", "AsciiDoc"] end # Internal: Create a new Language object diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 24afe374..e9d9281e 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -74,6 +74,16 @@ Arduino: lexer: C++ primary_extension: .ino +AsciiDoc: + type: markup + lexer: Text only + ace_mode: asciidoc + wrap: true + primary_extension: .asciidoc + extensions: + - .adoc + - .asc + ASP: type: programming color: "#6a40fd" From a0a879a3a3b94bd9bed540d86010487d8fee5b86 Mon Sep 17 00:00:00 2001 From: Garen Torikian Date: Tue, 24 Sep 2013 16:30:02 -0700 Subject: [PATCH 137/184] Add RDoc --- lib/linguist/language.rb | 2 +- lib/linguist/languages.yml | 7 +++++++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/lib/linguist/language.rb b/lib/linguist/language.rb index 9d59aef9..1b9ed814 100644 --- a/lib/linguist/language.rb +++ b/lib/linguist/language.rb @@ -25,7 +25,7 @@ module Linguist # # Returns an array def self.detectable_markup - ["CSS", "Less", "Sass", "Markdown", "Textile", "reStructuredText", "AsciiDoc"] + ["CSS", "Less", "Sass", "Markdown", "Textile", "reStructuredText", "AsciiDoc", "RDoc"] end # Internal: Create a new Language object diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index e9d9281e..7b8109b1 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -1149,6 +1149,13 @@ Rebol: Redcode: primary_extension: .cw +RDoc: + type: markup + lexer: Text only + ace_mode: rdoc + wrap: true + primary_extension: .rdoc + Rouge: type: programming lexer: Clojure From 3c70fffb6765071e7ac09302961416d0a5a0e34d Mon Sep 17 00:00:00 2001 From: Garen Torikian Date: Tue, 24 Sep 2013 16:32:02 -0700 Subject: [PATCH 138/184] Add Org --- lib/linguist/language.rb | 2 +- lib/linguist/languages.yml | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/lib/linguist/language.rb b/lib/linguist/language.rb index 1b9ed814..c64344b4 100644 --- a/lib/linguist/language.rb +++ b/lib/linguist/language.rb @@ -25,7 +25,7 @@ module Linguist # # Returns an array def self.detectable_markup - ["CSS", "Less", "Sass", "Markdown", "Textile", "reStructuredText", "AsciiDoc", "RDoc"] + ["CSS", "Less", "Sass", "Markdown", "Textile", "reStructuredText", "AsciiDoc", "RDoc", "Org"] end # Internal: Create a new Language object diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 7b8109b1..493e807c 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -974,6 +974,12 @@ OpenEdge ABL: - abl primary_extension: .p +Org: + type: markup + lexer: Text only + wrap: true + primary_extension: .org + PHP: type: programming ace_mode: php From a716151c83efc797fe77501c7c34b2290a6a02e6 Mon Sep 17 00:00:00 2001 From: Garen Torikian Date: Tue, 24 Sep 2013 16:33:09 -0700 Subject: [PATCH 139/184] Add Creole --- lib/linguist/language.rb | 2 +- lib/linguist/languages.yml | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/lib/linguist/language.rb b/lib/linguist/language.rb index c64344b4..c5452370 100644 --- a/lib/linguist/language.rb +++ b/lib/linguist/language.rb @@ -25,7 +25,7 @@ module Linguist # # Returns an array def self.detectable_markup - ["CSS", "Less", "Sass", "Markdown", "Textile", "reStructuredText", "AsciiDoc", "RDoc", "Org"] + ["CSS", "Less", "Sass", "Markdown", "Textile", "reStructuredText", "AsciiDoc", "RDoc", "Org", "Creole"] end # Internal: Create a new Language object diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 493e807c..204d048f 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -307,6 +307,12 @@ Cpp-ObjDump: - .c++objdump - .cxx-objdump +Creole: + type: markup + lexer: Text only + wrap: true + primary_extension: .creole + Cucumber: lexer: Gherkin primary_extension: .feature From 50f3b2e398829735147fb4cdff7860029a4d6f04 Mon Sep 17 00:00:00 2001 From: Garen Torikian Date: Tue, 24 Sep 2013 16:34:46 -0700 Subject: [PATCH 140/184] Add Mediawiki --- lib/linguist/language.rb | 2 +- lib/linguist/languages.yml | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/lib/linguist/language.rb b/lib/linguist/language.rb index c5452370..0b7020e8 100644 --- a/lib/linguist/language.rb +++ b/lib/linguist/language.rb @@ -25,7 +25,7 @@ module Linguist # # Returns an array def self.detectable_markup - ["CSS", "Less", "Sass", "Markdown", "Textile", "reStructuredText", "AsciiDoc", "RDoc", "Org", "Creole"] + ["CSS", "Less", "Sass", "Markdown", "Textile", "reStructuredText", "AsciiDoc", "RDoc", "Org", "Creole", "Mediawiki"] end # Internal: Create a new Language object diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 204d048f..1076efca 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -851,6 +851,12 @@ Max: - .maxhelp - .maxpat +Mediawiki: + type: markup + lexer: Text only + wrap: true + primary_extension: .mediawiki + MiniD: # Legacy searchable: false primary_extension: .minid # Dummy extension From 12e92f127be1d4eff9d27a97e1902a0c6f850625 Mon Sep 17 00:00:00 2001 From: Garen Torikian Date: Tue, 24 Sep 2013 21:28:09 -0700 Subject: [PATCH 141/184] Add samples of prose content --- samples/AsciiDoc/encoding.asciidoc | 13 ++ samples/AsciiDoc/list.asc | 10 ++ samples/AsciiDoc/sample.adoc | 25 ++++ samples/Creole/creole.creole | 47 ++++++++ samples/MediaWiki/mediawiki.mediawiki | 90 ++++++++++++++ samples/Org/org.org | 164 ++++++++++++++++++++++++++ samples/RDoc/rdoc.rdoc | 129 ++++++++++++++++++++ 7 files changed, 478 insertions(+) create mode 100644 samples/AsciiDoc/encoding.asciidoc create mode 100644 samples/AsciiDoc/list.asc create mode 100644 samples/AsciiDoc/sample.adoc create mode 100644 samples/Creole/creole.creole create mode 100644 samples/MediaWiki/mediawiki.mediawiki create mode 100644 samples/Org/org.org create mode 100644 samples/RDoc/rdoc.rdoc diff --git a/samples/AsciiDoc/encoding.asciidoc b/samples/AsciiDoc/encoding.asciidoc new file mode 100644 index 00000000..8cf1b761 --- /dev/null +++ b/samples/AsciiDoc/encoding.asciidoc @@ -0,0 +1,13 @@ +Gregory Romé has written an AsciiDoc plugin for the Redmine project management application. + +https://github.com/foo-users/foo +へと `vicmd` キーマップを足してみている試み、 +アニメーションgifです。 + +tag::romé[] +Gregory Romé has written an AsciiDoc plugin for the Redmine project management application. +end::romé[] + +== Überschrift + +* Codierungen sind verrückt auf älteren Versionen von Ruby \ No newline at end of file diff --git a/samples/AsciiDoc/list.asc b/samples/AsciiDoc/list.asc new file mode 100644 index 00000000..066d14fc --- /dev/null +++ b/samples/AsciiDoc/list.asc @@ -0,0 +1,10 @@ +AsciiDoc Home Page +================== + +Example Articles +~~~~~~~~~~~~~~~~ +- Item 1 + +- Item 2 + +- Item 3 diff --git a/samples/AsciiDoc/sample.adoc b/samples/AsciiDoc/sample.adoc new file mode 100644 index 00000000..51e1e45e --- /dev/null +++ b/samples/AsciiDoc/sample.adoc @@ -0,0 +1,25 @@ +Document Title +============== +Doc Writer +:idprefix: id_ + +Preamble paragraph. + +NOTE: This is test, only a test. + +== Section A + +*Section A* paragraph. + +=== Section A Subsection + +*Section A* 'subsection' paragraph. + +== Section B + +*Section B* paragraph. + +.Section B list +* Item 1 +* Item 2 +* Item 3 diff --git a/samples/Creole/creole.creole b/samples/Creole/creole.creole new file mode 100644 index 00000000..7e3b8bef --- /dev/null +++ b/samples/Creole/creole.creole @@ -0,0 +1,47 @@ += Creole + +Creole is a Creole-to-HTML converter for Creole, the lightweight markup +language (http://wikicreole.org/). Github uses this converter to render *.creole files. + +Project page on github: + +* http://github.com/minad/creole + +Travis-CI: + +* https://travis-ci.org/minad/creole + +RDOC: + +* http://rdoc.info/projects/minad/creole + +== INSTALLATION + +{{{ +gem install creole +}}} + +== SYNOPSIS + +{{{ +require 'creole' +html = Creole.creolize('== Creole text') +}}} + +== BUGS + +If you found a bug, please report it at the Creole project's tracker +on GitHub: + +http://github.com/minad/creole/issues + +== AUTHORS + +* Lars Christensen (larsch) +* Daniel Mendler (minad) + +== LICENSE + +Creole is Copyright (c) 2008 - 2013 Lars Christensen, Daniel Mendler. It is free software, and +may be redistributed under the terms specified in the README file of +the Ruby distribution. diff --git a/samples/MediaWiki/mediawiki.mediawiki b/samples/MediaWiki/mediawiki.mediawiki new file mode 100644 index 00000000..088c955c --- /dev/null +++ b/samples/MediaWiki/mediawiki.mediawiki @@ -0,0 +1,90 @@ + += Overview = + +The GDB Tracepoint Analysis feature is an extension to the Tracing and Monitoring Framework that allows the visualization and analysis of C/C++ tracepoint data collected by GDB and stored to a log file. + += Getting Started = + +The feature can be installed from the Eclipse update site by selecting '''Linux Tools''' > '''GDB Tracepoint Analysis'''. + +The feature requires GDB version 7.2 or later to be installed on the local host. The executable program 'gdb' must be found in the path. + += GDB Trace Perspective = + +To open the perspective, select '''Window''' > '''Open Perspective''' > '''Other...''' > '''GDB Trace'''. + +The perspective includes the following views by default: + +* '''Project Explorer''': This view shows the projects in the workspace and is used to create and manage Tracing projects. +* '''Debug''': This view shows the running C/C++ Postmortem Debugger instances and displays the thread and stack trace associated with a tracepoint. +* '''Trace Control''': This view shows the status of the debugger and allows navigation of trace records. +* '''Console''': This view displays console output of the C/C++ Postmortem Debugger. + +The editor area contains the '''Events''' and '''C/C++''' editors when a GDB Trace is opened. + +[[Image:images/GDBTracePerspective.png]] + += Collecting Tracepoint Data = + +Collecting the C/C++ tracepoint data is outside the scope of this feature. It can be done from the GDB command line or by using the CDT debug component within Eclipse. See the CDT FAQ entry in the [[#References | References]] section. + += Importing Tracepoint Data = + +Some information in this section is redundant with the LTTng User Guide. For further details, see the LTTng User Guide entry in the [[#References | References]] section. + +== Creating a Tracing Project == + +In the '''Project Explorer''' view, right-click and select '''New''' > '''Project...''' from the context menu. In the '''New Project''' dialog, select '''Tracing''' > '''Tracing Project''', click '''Next''', name your project and click '''Finish'''. + +== Importing a GDB Trace == + +In your tracing project, right-click on the '''Traces''' folder and select '''Import...'''. Browse to, or enter, a source directory. Select the trace file in the tree. Optionally set the trace type to '''GDB : GDB Trace'''. Click '''Finish'''. + +Alternatively, the trace can be drag & dropped to the '''Traces''' folder from any external file manager. + +== Selecting the GDB Trace Type == + +Right-click the imported trace in the '''Traces''' folder and choose '''Select Trace Type...''' > '''GDB''' > '''GDB Trace''' from the context menu. This step can be omitted if the trace type was selected at import. + +The trace will be updated with the GDB icon [[Image:images/gdb_icon16.png]]. + +== Selecting the Trace Executable == + +The executable file that created the tracepoint data must be identified so that the C/C++ Postmortem Debugger can be launched properly. + +Right-click the GDB trace in the '''Traces''' folder and choose '''Select Trace Executable...''' from the context menu. Browse to, or enter, the path of the executable file and press '''OK'''. + +The selected file must be recognized by GDB as an executable. + += Visualizing Tracepoint Data = + +== Opening a GDB Trace == + +In the '''Traces''' folder, double-click the GDB trace or right-click it and select '''Open''' from the context menu. + +The tracepoint data will be opened in an Events editor, and a C/C++ Postmortem Debugger instance will be launched. + +If available in the workspace, the source code corresponding to the first trace record will also be opened in a C/C++ editor. + +At this point it is recommended to relocate the Events editor outside of the default editor area, so that it is not hidden by the C/C++ editor. + +== Viewing Trace Data == + +In the Events editor, a table is shown with one row for each trace record. The '''Trace Frame''' column shows the sequential trace record number. The '''Tracepoint''' column shows the number assigned by GDB at collection time for this tracepoint. The '''File''' column shows the file name, line number and method where the tracepoint was set. The '''Content''' column shows the data collected at run-time by the tracepoint. + +Searching and filtering can be done on any column by entering a regular expression in the column header. + +== Navigating the GDB Trace == + +Trace records can be selected in the Events editor using the keyboard or mouse. The C/C++ Postmortem Debugger in the '''Debug''' view will be updated to show the stack trace of the current trace record. + +The trace can also be navigated from the '''Trace Control''' view by clicking the '''Next Trace Record''' or '''Previous Trace Record''' buttons. The Events editor and '''Debug''' views will be updated. + += References = + +* [http://wiki.eclipse.org/index.php/Linux_Tools_Project/LTTng2/User_Guide LTTng User Guide] +* [http://wiki.eclipse.org/CDT/User/FAQ#How_can_I_trace_my_application_using_C.2FC.2B.2B_Tracepoints.3F CDT FAQ - How can I trace my application using C/C++ Tracepoints?] + += Updating This Document = + +This document is maintained in a collaborative wiki. If you wish to update or modify this document please visit [http://wiki.eclipse.org/index.php/Linux_Tools_Project/GDB_Tracepoint_Analysis/User_Guide http://wiki.eclipse.org/Linux_Tools_Project/GDB_Tracepoint_Analysis/User_Guide] diff --git a/samples/Org/org.org b/samples/Org/org.org new file mode 100644 index 00000000..5246e97f --- /dev/null +++ b/samples/Org/org.org @@ -0,0 +1,164 @@ +#+OPTIONS: H:3 num:nil toc:nil \n:nil @:t ::t |:t ^:t -:t f:t *:t TeX:t LaTeX:t skip:nil d:(HIDE) tags:not-in-toc +#+STARTUP: align fold nodlcheck hidestars oddeven lognotestate +#+SEQ_TODO: TODO(t) INPROGRESS(i) WAITING(w@) | DONE(d) CANCELED(c@) +#+TAGS: Write(w) Update(u) Fix(f) Check(c) +#+TITLE: org-ruby +#+AUTHOR: Brian Dewey +#+EMAIL: bdewey@gmail.com +#+LANGUAGE: en +#+PRIORITIES: A C B +#+CATEGORY: worg + +{Back to Worg's index} + +* Motivation + + The dominant simple plain-text markup languages for the web are + Textile and Markdown. A factor for the popularity of those markup + formats is the widespread availability of simple, free packages for + converting the formats to HTML. For example, the world of + Ruby-powered websites has settled on RedCloth for converting Textile + to HTML. + + The default way to convert org-mode files to HTML is the powerful + publishing functionality provided by =emacs=. However, =emacs= does + not easiliy integrate into many existing website frameworks. + + =Org-ruby= tries to make it easier to use org-mode files in both + dyanmic and static website generation tools written in + Ruby. =Org-ruby= is a simple Ruby gem to convert org-mode files to + HTML. + +* Using Org-ruby + + =Org-ruby= follows the same model as other Ruby markup + libraries. You install the gem: + + #+BEGIN_EXAMPLE + sudo gem install org-ruby + #+END_EXAMPLE + + Then, to convert an org-file to HTML in your Ruby code: + + #+BEGIN_EXAMPLE + require 'rubygems' + require 'org-ruby' + + data = IO.read(filename) + puts Orgmode::Parser.new(data).to_html + #+END_EXAMPLE + +* Walkthrough: Using org-ruby with Webby + + Here is an example of how to integrate =org-ruby= into Webby, a + static website generation tool written in Ruby. + + Webby follows a similar pattern to other static site generation + tools (like nanoc, Jekyll, and webgen): + + - You author website content in text with simple markup + - Each page is fed through one or more /filters/ to produce HTML + - The HTML is mixed in with layouts to produce the final pages + + For a Webby site, a the source for a page may look like this: + + #+BEGIN_EXAMPLE + --- + title: Special Directories + created_at: 2009-12-17 + status: Complete + filter: + - erb + - maruku + tags: + - powershell + --- + <%= @page.title %> + ================== + + Special Directories are a set of directories, each of which has a + function that will navigate you to the appropriate directory using + the push-location cmdlet. For example, the function `home` might + navigate to `c:\users\bdewey.` + + Install + ------- + + Copy the module to somewhere in `ENV:PSModulePath`. Then, + + InstallModule SpecialDirectories + #+END_EXAMPLE + + In the above example, the text is written in Markdown. At the top of + the file, metadata informs Webby to pass the text through two + /filters/ to produce HTML. The first filter, =erb=, handles embedded + Ruby. In this case, it will replace ~<%= @page.title %>~ with the + page title (=Special Directories=). The second filter uses Maruku to + translate Markdown into HTML. + + You can use the exact same pattern to include org-mode files in a + Webby site. For this walkthrough, I assume you already have Webby + installed, and that you've already created a site. + + 1. Make sure you have =org-ruby= installed: =sudo gem install + org-ruby=. + 2. You need to register a new Webby filter to handle org-mode + content. Webby makes this easy. In the =lib/= folder of your + site, create a file =orgmode.rb=: + + #+BEGIN_EXAMPLE + require 'org-ruby' + + Webby::Filters.register :org do |input| + Orgmode::Parser.new(input).to_html + end + #+END_EXAMPLE + + This code creates a new filter, =org=, that will use the + =org-ruby= parser to translate org-mode input into HTML. + 3. Create your content. For example: + + #+BEGIN_EXAMPLE +--- +title: Orgmode Parser +created_at: 2009-12-21 +status: Under development +filter: + - erb + - org +tags: + - orgmode + - ruby +--- +<%= @page.title %> + + Status: <%= @page.status %> + +* Description + + Helpful Ruby routines for parsing orgmode files. The most + significant thing this library does today is convert orgmode files + to textile. Currently, you cannot do much to customize the + conversion. The supplied textile conversion is optimized for + extracting "content" from the orgfile as opposed to "metadata." + + +* History + +** 2009-12-29: Version 0.4 + + - The first thing output in HTML gets the class "title" + - HTML output is now indented + - Proper support for multi-paragraph list items. + + See? This paragraph is part of the last bullet. + + - Fixed bugs: + - "rake spec" wouldn't work on Linux. Needed "require 'rubygems'". + #+END_EXAMPLE + + This file will go through the =erb= and =org= filters; as defined + in the previous step, the =org= filter will use =org-ruby= to + generate HTML. + + That's all there is to it! diff --git a/samples/RDoc/rdoc.rdoc b/samples/RDoc/rdoc.rdoc new file mode 100644 index 00000000..c0206be6 --- /dev/null +++ b/samples/RDoc/rdoc.rdoc @@ -0,0 +1,129 @@ += \RDoc - Ruby Documentation System + +home :: https://github.com/rdoc/rdoc +rdoc :: http://docs.seattlerb.org/rdoc +bugs :: https://github.com/rdoc/rdoc/issues +code quality :: {code climate}[https://codeclimate.com/github/rdoc/rdoc] + +== Description + +RDoc produces HTML and command-line documentation for Ruby projects. RDoc +includes the +rdoc+ and +ri+ tools for generating and displaying documentation +from the command-line. + +== Generating Documentation + +Once installed, you can create documentation using the +rdoc+ command + + $ rdoc [options] [names...] + +For an up-to-date option summary, type + + $ rdoc --help + +A typical use might be to generate documentation for a package of Ruby +source (such as RDoc itself). + + $ rdoc + +This command generates documentation for all the Ruby and C source +files in and below the current directory. These will be stored in a +documentation tree starting in the subdirectory +doc+. + +You can make this slightly more useful for your readers by having the +index page contain the documentation for the primary file. In our +case, we could type + + % rdoc --main README.rdoc + +You'll find information on the various formatting tricks you can use +in comment blocks in the documentation this generates. + +RDoc uses file extensions to determine how to process each file. File names +ending +.rb+ and +.rbw+ are assumed to be Ruby source. Files +ending +.c+ are parsed as C files. All other files are assumed to +contain just Markup-style markup (with or without leading '#' comment +markers). If directory names are passed to RDoc, they are scanned +recursively for C and Ruby source files only. + +To generate documentation using +rake+ see RDoc::Task. + +To generate documentation programmatically: + + gem 'rdoc' + require 'rdoc/rdoc' + + options = RDoc::Options.new + # see RDoc::Options + + rdoc = RDoc::RDoc.new + rdoc.document options + # see RDoc::RDoc + +== Writing Documentation + +To write documentation for RDoc place a comment above the class, module, +method, constant, or attribute you want documented: + + ## + # This class represents an arbitrary shape by a series of points. + + class Shape + + ## + # Creates a new shape described by a +polyline+. + # + # If the +polyline+ does not end at the same point it started at the + # first pointed is copied and placed at the end of the line. + # + # An ArgumentError is raised if the line crosses itself, but shapes may + # be concave. + + def initialize polyline + # ... + end + + end + +The default comment markup format is the RDoc::Markup format. +TomDoc[rdoc-ref:RDoc::TomDoc], Markdown[rdoc-ref:RDoc::Markdown] and +RD[rdoc-ref:RDoc::RD] format comments are also supported. You can set the +default comment format for your entire project by creating a +.rdoc_options file. See RDoc::Options@Saved+Options for instructions +on creating one. You can also set the comment format for a single file +through the +:markup:+ directive, but this is only recommended if you wish to +switch markup formats. See RDoc::Markup@Other+directives. + +Comments can contain directives that tell RDoc information that it cannot +otherwise discover through parsing. See RDoc::Markup@Directives to control +what is or is not documented, to define method arguments or to break up +methods in a class by topic. See RDoc::Parser::Ruby for directives used to +teach RDoc about metaprogrammed methods. + +See RDoc::Parser::C for documenting C extensions with RDoc. + +To determine how well your project is documented run rdoc -C lib to +get a documentation coverage report. rdoc -C1 lib includes parameter +names in the documentation coverage report. + +== Bugs + +See CONTRIBUTING@Bugs for information on filing a bug report. It's OK to file +a bug report for anything you're having a problem with. If you can't figure +out how to make RDoc produce the output you like that is probably a +documentation bug. + +== License + +RDoc is Copyright (c) 2001-2003 Dave Thomas, The Pragmatic Programmers. +Portions (c) 2007-2011 Eric Hodel. Portions copyright others, see individual +files and LEGAL.rdoc for details. + +RDoc is free software, and may be redistributed under the terms specified in +LICENSE.rdoc. + +== Warranty + +This software is provided "as is" and without any express or implied +warranties, including, without limitation, the implied warranties of +merchantability and fitness for a particular purpose. From 76a13699325041e7e59ac53a4a113bc4288d049d Mon Sep 17 00:00:00 2001 From: Garen Torikian Date: Tue, 24 Sep 2013 21:28:39 -0700 Subject: [PATCH 142/184] Alphabetize detectable markup --- lib/linguist/language.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/linguist/language.rb b/lib/linguist/language.rb index 0b7020e8..f31d3fd6 100644 --- a/lib/linguist/language.rb +++ b/lib/linguist/language.rb @@ -25,7 +25,7 @@ module Linguist # # Returns an array def self.detectable_markup - ["CSS", "Less", "Sass", "Markdown", "Textile", "reStructuredText", "AsciiDoc", "RDoc", "Org", "Creole", "Mediawiki"] + ["AsciiDoc", "CSS", "Creole", "Less", "Markdown", "Mediawiki", "Org", "RDoc", "Sass", "Textile", "reStructuredText"] end # Internal: Create a new Language object From 9e65eb35e7d0768d78119f2271ae32627e2be81c Mon Sep 17 00:00:00 2001 From: Garen Torikian Date: Tue, 24 Sep 2013 21:36:23 -0700 Subject: [PATCH 143/184] :lipstick: --- lib/linguist/language.rb | 2 +- lib/linguist/languages.yml | 52 +++++++++++++++++++------------------- 2 files changed, 27 insertions(+), 27 deletions(-) diff --git a/lib/linguist/language.rb b/lib/linguist/language.rb index f31d3fd6..453a5d21 100644 --- a/lib/linguist/language.rb +++ b/lib/linguist/language.rb @@ -25,7 +25,7 @@ module Linguist # # Returns an array def self.detectable_markup - ["AsciiDoc", "CSS", "Creole", "Less", "Markdown", "Mediawiki", "Org", "RDoc", "Sass", "Textile", "reStructuredText"] + ["AsciiDoc", "CSS", "Creole", "Less", "Markdown", "MediaWiki", "Org", "RDoc", "Sass", "Textile", "reStructuredText"] end # Internal: Create a new Language object diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 1076efca..72255d25 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -22,13 +22,30 @@ # Any additions or modifications (even trivial) should have corresponding # test change in `test/test_blob.rb`. # -# Please keep this list alphabetized. +# Please keep this list alphabetized. Capitalization comes before lower case. ABAP: type: programming lexer: ABAP primary_extension: .abap +ASP: + type: programming + color: "#6a40fd" + lexer: aspx-vb + search_term: aspx-vb + aliases: + - aspx + - aspx-vb + primary_extension: .asp + extensions: + - .asax + - .ascx + - .ashx + - .asmx + - .aspx + - .axd + ActionScript: type: programming lexer: ActionScript 3 @@ -84,23 +101,6 @@ AsciiDoc: - .adoc - .asc -ASP: - type: programming - color: "#6a40fd" - lexer: aspx-vb - search_term: aspx-vb - aliases: - - aspx - - aspx-vb - primary_extension: .asp - extensions: - - .asax - - .ascx - - .ashx - - .asmx - - .aspx - - .axd - Assembly: type: programming lexer: NASM @@ -851,7 +851,7 @@ Max: - .maxhelp - .maxpat -Mediawiki: +MediaWiki: type: markup lexer: Text only wrap: true @@ -1129,6 +1129,13 @@ R: lexer: S primary_extension: .r +RDoc: + type: markup + lexer: Text only + ace_mode: rdoc + wrap: true + primary_extension: .rdoc + RHTML: type: markup group: HTML @@ -1167,13 +1174,6 @@ Rebol: Redcode: primary_extension: .cw -RDoc: - type: markup - lexer: Text only - ace_mode: rdoc - wrap: true - primary_extension: .rdoc - Rouge: type: programming lexer: Clojure From 7946de71169a90bd3f1a4a521db09bbded3108ec Mon Sep 17 00:00:00 2001 From: Aaron Puchert Date: Wed, 25 Sep 2013 12:43:22 +0200 Subject: [PATCH 144/184] Add .Rprofile to filenames for R --- lib/linguist/languages.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 765c1862..e65f42c9 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -1100,6 +1100,8 @@ R: color: "#198ce7" lexer: S primary_extension: .r + filenames: + - .Rprofile RHTML: type: markup From 74ba0f9c39daa2daaee26ba551f0a90494705c75 Mon Sep 17 00:00:00 2001 From: Robert Stoll Date: Fri, 27 Sep 2013 18:21:39 +0200 Subject: [PATCH 145/184] Added ANTLR to the list, Pygments should have a lexer for ANTLR --- lib/linguist/languages.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index cfd7fcc8..ceb376fa 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -62,6 +62,12 @@ Ada: extensions: - .ads +ANTLR: + type: programming + color: "#9DC3FF" + lexer: ANTLR + primary_extension: .g + ApacheConf: type: markup aliases: From b0b7d75bcd8e233568d013ae8534695988f40a10 Mon Sep 17 00:00:00 2001 From: Robert Stoll Date: Fri, 27 Sep 2013 18:43:11 +0200 Subject: [PATCH 146/184] ANTLR was in the wrong order. corrected this mistake --- lib/linguist/languages.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index ceb376fa..c8f0f11b 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -28,7 +28,13 @@ ABAP: type: programming lexer: ABAP primary_extension: .abap - + +ANTLR: + type: programming + color: "#9DC3FF" + lexer: ANTLR + primary_extension: .g + ASP: type: programming color: "#6a40fd" @@ -61,13 +67,7 @@ Ada: primary_extension: .adb extensions: - .ads - -ANTLR: - type: programming - color: "#9DC3FF" - lexer: ANTLR - primary_extension: .g - + ApacheConf: type: markup aliases: From 1b90dfedf9565d3c7b5e2339e4569ccfc29ad41e Mon Sep 17 00:00:00 2001 From: thorn0 Date: Mon, 30 Sep 2013 13:32:41 +0300 Subject: [PATCH 147/184] TypeScript: fixed syntax, it wasn't TypeScript at all --- samples/TypeScript/hello.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/TypeScript/hello.ts b/samples/TypeScript/hello.ts index 4b65a573..184dfcc9 100644 --- a/samples/TypeScript/hello.ts +++ b/samples/TypeScript/hello.ts @@ -1 +1 @@ -console.log "Hello, World!" +console.log("Hello, World!"); From 33d777a6ff289ce0bf6599296334c1fde82d422e Mon Sep 17 00:00:00 2001 From: glts <676c7473@gmail.com> Date: Mon, 30 Sep 2013 21:20:28 +0200 Subject: [PATCH 148/184] Added support for J to languages.yml --- lib/linguist/languages.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index cfd7fcc8..47a2755a 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -643,6 +643,10 @@ Ioke: color: "#078193" primary_extension: .ik +J: + type: programming + primary_extension: .ijs + JSON: type: data group: JavaScript From e194d7238ee4715dfef3ae5aba2e492386de06c3 Mon Sep 17 00:00:00 2001 From: glts <676c7473@gmail.com> Date: Mon, 30 Sep 2013 23:28:35 +0200 Subject: [PATCH 149/184] Added "Text only" lexer for J There is no lexer for J so far, use "Text only" to make the build pass. --- lib/linguist/languages.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 47a2755a..f28aa044 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -645,6 +645,7 @@ Ioke: J: type: programming + lexer: Text only primary_extension: .ijs JSON: From 5232a45d1ff5f2811cf2f55f067987856d78fdbd Mon Sep 17 00:00:00 2001 From: Austin Clements Date: Fri, 11 Oct 2013 21:21:43 -0400 Subject: [PATCH 150/184] Recognize jQuery >= 1.10.0 jQuery recently passed 1.10, but the vendor regexp assumed each component of the version number would be only one digit. Allow multiple digits for the minor and micro versions. --- lib/linguist/vendor.yml | 2 +- test/test_blob.rb | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/linguist/vendor.yml b/lib/linguist/vendor.yml index 8967c266..d7695643 100644 --- a/lib/linguist/vendor.yml +++ b/lib/linguist/vendor.yml @@ -37,7 +37,7 @@ # jQuery - (^|/)jquery([^.]*)(\.min)?\.js$ -- (^|/)jquery\-\d\.\d(\.\d)?(\.min)?\.js$ +- (^|/)jquery\-\d\.\d+(\.\d+)?(\.min)?\.js$ # jQuery UI - (^|/)jquery\-ui(\-\d\.\d+(\.\d+)?)?(\.\w+)?(\.min)?\.(js|css)$ diff --git a/test/test_blob.rb b/test/test_blob.rb index 3dd90a99..325ab125 100644 --- a/test/test_blob.rb +++ b/test/test_blob.rb @@ -236,6 +236,8 @@ class TestBlob < Test::Unit::TestCase assert blob("public/javascripts/jquery-1.5.2.js").vendored? assert blob("public/javascripts/jquery-1.6.1.js").vendored? assert blob("public/javascripts/jquery-1.6.1.min.js").vendored? + assert blob("public/javascripts/jquery-1.10.1.js").vendored? + assert blob("public/javascripts/jquery-1.10.1.min.js").vendored? assert !blob("public/javascripts/jquery.github.menu.js").vendored? # jQuery UI From 921ceaa221fa51e6b982b44fdbcef590747b2267 Mon Sep 17 00:00:00 2001 From: Jaykul Date: Sat, 12 Oct 2013 16:37:49 -0400 Subject: [PATCH 151/184] Update PowerShell File Extensions The three core PowerShell language extensions are .psd1, .ps1 and .psm1 -- plus two xml file extensions: .ps1xml and .clixml which are for formatting rules and serialization. .psm1 modules files use exactly the same syntax as scripts, but are imported rather than executed. .psd1 are metadata files which use a subset of the same syntax (they can be highlighted using the same highlighter, it's just some commands, variables, and types aren't allowed in data files) --- lib/linguist/languages.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index f28aa044..350cc0d2 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -1050,6 +1050,9 @@ PowerShell: aliases: - posh primary_extension: .ps1 + extensions: + - .psm1 + - .psd1 Processing: type: programming @@ -1424,6 +1427,7 @@ XML: extensions: - .axml - .ccxml + - .clixml - .dita - .ditamap - .ditaval @@ -1433,6 +1437,7 @@ XML: - .mxml - .plist - .pt + - .ps1xml - .rdf - .rss - .scxml From 5b8ad31d75307cd9ce6d98f2de500c652b0096c9 Mon Sep 17 00:00:00 2001 From: Jaykul Date: Mon, 14 Oct 2013 13:20:16 -0400 Subject: [PATCH 152/184] Add psc1, fix order in PowerShell I had omitted .psc1 because I wasn't confident it was xml And I have now sorted psd1/psm1 correctly --- lib/linguist/languages.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 350cc0d2..b2f51324 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -1051,8 +1051,8 @@ PowerShell: - posh primary_extension: .ps1 extensions: - - .psm1 - .psd1 + - .psm1 Processing: type: programming @@ -1437,6 +1437,7 @@ XML: - .mxml - .plist - .pt + - .psc1 - .ps1xml - .rdf - .rss From 245521db227e658d6553837055b78782a42bd59e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oliver=20Gond=C5=BEa?= Date: Mon, 14 Oct 2013 19:38:56 +0200 Subject: [PATCH 153/184] Highlight .jelly files as XML [Jelly](http://commons.apache.org/proper/commons-jelly/) is used heavily by stapler/stapler and jenkinsci/jenkins. --- lib/linguist/languages.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 978b703e..4fff1e7b 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -1464,6 +1464,7 @@ XML: - .ditaval - .glade - .grxml + - .jelly - .kml - .mxml - .plist From 85e54e9af24476a8fe5717581e486de14b2e1120 Mon Sep 17 00:00:00 2001 From: Jaykul Date: Mon, 14 Oct 2013 13:52:40 -0400 Subject: [PATCH 154/184] Fix alphabetical order of ps1xml --- lib/linguist/languages.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index b2f51324..675f8a49 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -1436,9 +1436,9 @@ XML: - .kml - .mxml - .plist - - .pt - .psc1 - .ps1xml + - .pt - .rdf - .rss - .scxml From 74eb60a3545c9a759471ead99877a0a19cfac900 Mon Sep 17 00:00:00 2001 From: Jaykul Date: Mon, 14 Oct 2013 14:22:11 -0400 Subject: [PATCH 155/184] Saying my ABCs Fixing https://travis-ci.org/github/linguist/jobs/12531345 I swear: I am not normally dyslexic --- lib/linguist/languages.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 675f8a49..4c591bdd 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -1436,8 +1436,8 @@ XML: - .kml - .mxml - .plist - - .psc1 - .ps1xml + - .psc1 - .pt - .rdf - .rss From 413c881af8e2a9f000e55398a4a73c912958282c Mon Sep 17 00:00:00 2001 From: Charlie Somerville Date: Wed, 16 Oct 2013 11:41:19 -0400 Subject: [PATCH 156/184] add @primary_extension_index to ensure we don't have duped primary exts --- lib/linguist/language.rb | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/lib/linguist/language.rb b/lib/linguist/language.rb index 0a8d3d54..e18e8ab7 100644 --- a/lib/linguist/language.rb +++ b/lib/linguist/language.rb @@ -15,8 +15,10 @@ module Linguist @index = {} @name_index = {} @alias_index = {} - @extension_index = Hash.new { |h,k| h[k] = [] } - @filename_index = Hash.new { |h,k| h[k] = [] } + + @extension_index = Hash.new { |h,k| h[k] = [] } + @filename_index = Hash.new { |h,k| h[k] = [] } + @primary_extension_index = {} # Valid Languages types TYPES = [:data, :markup, :programming] @@ -63,6 +65,12 @@ module Linguist @extension_index[extension] << language end + if @primary_extension_index.key?(language.primary_extension) + raise ArgumentError, "Duplicate primary extension: #{language.primary_extension}" + end + + @primary_extension_index[language.primary_extension] = language + language.filenames.each do |filename| @filename_index[filename] << language end From 086845f1892ec5a38df9306bc357231e8edb75ea Mon Sep 17 00:00:00 2001 From: Charlie Somerville Date: Wed, 16 Oct 2013 11:41:31 -0400 Subject: [PATCH 157/184] use @primary_extension_index in find_by_filename --- lib/linguist/language.rb | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lib/linguist/language.rb b/lib/linguist/language.rb index e18e8ab7..e043be78 100644 --- a/lib/linguist/language.rb +++ b/lib/linguist/language.rb @@ -156,7 +156,10 @@ module Linguist # Returns all matching Languages or [] if none were found. def self.find_by_filename(filename) basename, extname = File.basename(filename), File.extname(filename) - @filename_index[basename] + @extension_index[extname] + langs = [@primary_extension_index[extname]] + + @filename_index[basename] + + @extension_index[extname] + langs.compact.uniq end # Public: Look up Language by its name or lexer. From cabd4fb4c50984f01b4f2473db86df38e1cd8cbc Mon Sep 17 00:00:00 2001 From: Charlie Somerville Date: Wed, 16 Oct 2013 11:44:00 -0400 Subject: [PATCH 158/184] change MUMPS' primary extension from .m to .mumps .m currently clashes with Objective-C, and MUMPS is chosen before Objective-C when creating .m files in Gist. Even if .mumps isn't a legitimate MUMPS extension, I think we should change it anyway since Objective-C is far more likely to be intended when a user uses .m --- lib/linguist/languages.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index e5b1a6bf..4aeda855 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -787,7 +787,7 @@ M: lexer: Common Lisp aliases: - mumps - primary_extension: .m + primary_extension: .mumps Makefile: aliases: From 44638e1c6b30523883b70b6345bdc8186aae3e2f Mon Sep 17 00:00:00 2001 From: Charlie Somerville Date: Wed, 16 Oct 2013 12:20:47 -0400 Subject: [PATCH 159/184] add .m as an alternate extension for MUMPS so it's still picked up --- lib/linguist/languages.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 4aeda855..32dc5780 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -788,6 +788,8 @@ M: aliases: - mumps primary_extension: .mumps + extensions: + - .m Makefile: aliases: From 599e1e2a5111cfcf48302d249605d43d753ab281 Mon Sep 17 00:00:00 2001 From: Charlie Somerville Date: Wed, 16 Oct 2013 12:40:32 -0400 Subject: [PATCH 160/184] update samples.json --- lib/linguist/samples.json | 82229 ++++++++++++++++++------------------ 1 file changed, 41311 insertions(+), 40918 deletions(-) diff --git a/lib/linguist/samples.json b/lib/linguist/samples.json index 56a3d875..ddb379d5 100644 --- a/lib/linguist/samples.json +++ b/lib/linguist/samples.json @@ -1,382 +1,26 @@ { - "extnames": { - "ABAP": [ - ".abap" - ], - "Apex": [ - ".cls" - ], - "AppleScript": [ - ".applescript" - ], - "Arduino": [ - ".ino" - ], - "AutoHotkey": [ - ".ahk" - ], - "Awk": [ - ".awk" - ], - "C": [ - ".c", - ".h" - ], - "C++": [ - ".cc", - ".cpp", - ".cu", - ".h", - ".hpp" - ], - "Ceylon": [ - ".ceylon" - ], - "COBOL": [ - ".cbl", - ".ccp", - ".cob", - ".cpy" - ], - "CoffeeScript": [ - ".coffee" - ], - "Coq": [ - ".v" - ], - "CSS": [ - ".css" - ], - "Dart": [ - ".dart" - ], - "Diff": [ - ".patch" - ], - "Ecl": [ - ".ecl" - ], - "edn": [ - ".edn" - ], - "Elm": [ - ".elm" - ], - "Emacs Lisp": [ - ".el" - ], - "Erlang": [ - ".erl", - ".escript", - ".script!" - ], - "fish": [ - ".fish" - ], - "Forth": [ - ".forth", - ".fth" - ], - "GAS": [ - ".s" - ], - "GLSL": [ - ".fp", - ".glsl" - ], - "Gosu": [ - ".gs", - ".gsp", - ".gst", - ".gsx", - ".vark" - ], - "Groovy": [ - ".gradle", - ".script!" - ], - "Groovy Server Pages": [ - ".gsp" - ], - "Haml": [ - ".haml" - ], - "Handlebars": [ - ".handlebars", - ".hbs" - ], - "Ioke": [ - ".ik" - ], - "Java": [ - ".java" - ], - "JavaScript": [ - ".js", - ".script!" - ], - "JSON": [ - ".json", - ".maxhelp", - ".maxpat" - ], - "Julia": [ - ".jl" - ], - "Kotlin": [ - ".kt" - ], - "Lasso": [ - ".las", - ".lasso", - ".lasso9", - ".ldml" - ], - "Less": [ - ".less" - ], - "Literate CoffeeScript": [ - ".litcoffee" - ], - "LiveScript": [ - ".ls" - ], - "Logos": [ - ".xm" - ], - "Logtalk": [ - ".lgt" - ], - "Lua": [ - ".pd_lua" - ], - "M": [ - ".m" - ], - "Makefile": [ - ".script!" - ], - "Markdown": [ - ".md" - ], - "Matlab": [ - ".m" - ], - "Max": [ - ".mxt" - ], - "Monkey": [ - ".monkey" - ], - "MoonScript": [ - ".moon" - ], - "Nemerle": [ - ".n" - ], - "Nimrod": [ - ".nim" - ], - "NSIS": [ - ".nsh", - ".nsi" - ], - "Nu": [ - ".nu", - ".script!" - ], - "Objective-C": [ - ".h", - ".m" - ], - "OCaml": [ - ".eliom", - ".ml" - ], - "Omgrofl": [ - ".omgrofl" - ], - "Opa": [ - ".opa" - ], - "OpenCL": [ - ".cl" - ], - "OpenEdge ABL": [ - ".cls", - ".p" - ], - "Parrot Assembly": [ - ".pasm" - ], - "Parrot Internal Representation": [ - ".pir" - ], - "Pascal": [ - ".dpr" - ], - "Perl": [ - ".fcgi", - ".pl", - ".pm", - ".script!", - ".t" - ], - "PHP": [ - ".module", - ".php", - ".script!" - ], - "PogoScript": [ - ".pogo" - ], - "PowerShell": [ - ".ps1", - ".psm1" - ], - "Processing": [ - ".pde" - ], - "Prolog": [ - ".pl" - ], - "Python": [ - ".py", - ".script!" - ], - "R": [ - ".R", - ".script!" - ], - "Racket": [ - ".scrbl", - ".script!" - ], - "Ragel in Ruby Host": [ - ".rl" - ], - "Rebol": [ - ".r" + "languages_total": 452, + "filenames": { + "YAML": [ + ".gemrc" ], "Ruby": [ - ".pluginspec", - ".rabl", - ".rake", - ".rb", - ".script!" - ], - "Rust": [ - ".rs" - ], - "Sass": [ - ".sass", - ".scss" - ], - "Scala": [ - ".sbt", - ".script!" - ], - "Scheme": [ - ".sps" - ], - "Scilab": [ - ".sce", - ".sci", - ".tst" - ], - "SCSS": [ - ".scss" - ], - "Shell": [ - ".bash", - ".script!", - ".sh", - ".zsh" - ], - "Slash": [ - ".sl" - ], - "Standard ML": [ - ".sig", - ".sml" - ], - "SuperCollider": [ - ".sc", - ".scd" - ], - "Tea": [ - ".tea" - ], - "TeX": [ - ".cls" - ], - "Turing": [ - ".t" - ], - "TXL": [ - ".txl" - ], - "TypeScript": [ - ".ts" - ], - "Verilog": [ - ".v" - ], - "VHDL": [ - ".vhd" - ], - "Visual Basic": [ - ".cls" - ], - "Volt": [ - ".volt" - ], - "wisp": [ - ".wisp" - ], - "XC": [ - ".xc" - ], - "XML": [ - ".ant", - ".ivy", - ".xml" - ], - "XProc": [ - ".xpl" - ], - "XQuery": [ - ".xqm" - ], - "XSLT": [ - ".xslt" - ], - "Xtend": [ - ".xtend" - ] - }, - "filenames": { - "ApacheConf": [ - ".htaccess", - "apache2.conf", - "httpd.conf" + "Capfile", + "Rakefile" ], "INI": [ ".editorconfig", ".gitconfig" ], - "Makefile": [ - "Makefile" - ], - "Nginx": [ - "nginx.conf" + "VimL": [ + ".gvimrc", + ".vimrc" ], "Perl": [ "ack" ], - "Ruby": [ - "Capfile", - "Rakefile" + "Nginx": [ + "nginx.conf" ], "Shell": [ ".bash_logout", @@ -404,40661 +48,41410 @@ "zshenv", "zshrc" ], - "VimL": [ - ".gvimrc", - ".vimrc" + "ApacheConf": [ + ".htaccess", + "apache2.conf", + "httpd.conf" ], - "YAML": [ - ".gemrc" + "Makefile": [ + "Makefile" ] }, - "tokens_total": 411886, - "languages_total": 447, + "extnames": { + "C": [ + ".c", + ".h" + ], + "LFE": [ + ".lfe" + ], + "Apex": [ + ".cls" + ], + "Standard ML": [ + ".sig", + ".sml" + ], + "Parrot Internal Representation": [ + ".pir" + ], + "Less": [ + ".less" + ], + "NSIS": [ + ".nsh", + ".nsi" + ], + "Markdown": [ + ".md" + ], + "VHDL": [ + ".vhd" + ], + "TypeScript": [ + ".ts" + ], + "TeX": [ + ".cls" + ], + "Rust": [ + ".rs" + ], + "Coq": [ + ".v" + ], + "Nemerle": [ + ".n" + ], + "Matlab": [ + ".m" + ], + "XC": [ + ".xc" + ], + "Scheme": [ + ".sps" + ], + "JSON": [ + ".json", + ".maxhelp", + ".maxpat" + ], + "Omgrofl": [ + ".omgrofl" + ], + "Ragel in Ruby Host": [ + ".rl" + ], + "JavaScript": [ + ".js", + ".script!" + ], + "Makefile": [ + ".script!" + ], + "COBOL": [ + ".cbl", + ".ccp", + ".cob", + ".cpy" + ], + "Groovy Server Pages": [ + ".gsp" + ], + "Pascal": [ + ".dpr" + ], + "Nu": [ + ".nu", + ".script!" + ], + "XML": [ + ".ant", + ".ivy", + ".xml" + ], + "Dart": [ + ".dart" + ], + "Ecl": [ + ".ecl" + ], + "M": [ + ".m" + ], + "AutoHotkey": [ + ".ahk" + ], + "Max": [ + ".mxt" + ], + "Turing": [ + ".t" + ], + "SuperCollider": [ + ".sc", + ".scd" + ], + "Erlang": [ + ".erl", + ".escript", + ".script!" + ], + "Diff": [ + ".patch" + ], + "Scala": [ + ".sbt", + ".script!" + ], + "Sass": [ + ".sass", + ".scss" + ], + "Ceylon": [ + ".ceylon" + ], + "Perl": [ + ".fcgi", + ".pl", + ".pm", + ".script!", + ".t" + ], + "ABAP": [ + ".abap" + ], + "Elm": [ + ".elm" + ], + "OCaml": [ + ".eliom", + ".ml" + ], + "R": [ + ".R", + ".script!" + ], + "Prolog": [ + ".pl" + ], + "Haml": [ + ".haml" + ], + "Logtalk": [ + ".lgt" + ], + "Visual Basic": [ + ".cls" + ], + "PogoScript": [ + ".pogo" + ], + "LiveScript": [ + ".ls" + ], + "OpenEdge ABL": [ + ".cls", + ".p" + ], + "Kotlin": [ + ".kt" + ], + "Xtend": [ + ".xtend" + ], + "Racket": [ + ".scrbl", + ".script!" + ], + "CSS": [ + ".css" + ], + "OpenCL": [ + ".cl" + ], + "Awk": [ + ".awk" + ], + "Groovy": [ + ".gradle", + ".script!" + ], + "Nimrod": [ + ".nim" + ], + "XSLT": [ + ".xslt" + ], + "Rebol": [ + ".r" + ], + "PowerShell": [ + ".ps1", + ".psm1" + ], + "Opa": [ + ".opa" + ], + "GAS": [ + ".s" + ], + "CoffeeScript": [ + ".coffee" + ], + "Lasso": [ + ".las", + ".lasso", + ".lasso9", + ".ldml" + ], + "C++": [ + ".cc", + ".cpp", + ".cu", + ".h", + ".hpp" + ], + "Julia": [ + ".jl" + ], + "edn": [ + ".edn" + ], + "MoonScript": [ + ".moon" + ], + "Lua": [ + ".pd_lua" + ], + "Objective-C": [ + ".h", + ".m" + ], + "wisp": [ + ".wisp" + ], + "TXL": [ + ".txl" + ], + "Ruby": [ + ".pluginspec", + ".rabl", + ".rake", + ".rb", + ".script!" + ], + "Literate CoffeeScript": [ + ".litcoffee" + ], + "Forth": [ + ".forth", + ".fth" + ], + "Java": [ + ".java" + ], + "Arduino": [ + ".ino" + ], + "XQuery": [ + ".xqm" + ], + "Python": [ + ".py", + ".script!" + ], + "AppleScript": [ + ".applescript" + ], + "Monkey": [ + ".monkey" + ], + "GLSL": [ + ".fp", + ".glsl" + ], + "Gosu": [ + ".gs", + ".gsp", + ".gst", + ".gsx", + ".vark" + ], + "XProc": [ + ".xpl" + ], + "Volt": [ + ".volt" + ], + "Tea": [ + ".tea" + ], + "Scilab": [ + ".sce", + ".sci", + ".tst" + ], + "Parrot Assembly": [ + ".pasm" + ], + "fish": [ + ".fish" + ], + "Ioke": [ + ".ik" + ], + "Emacs Lisp": [ + ".el" + ], + "Slash": [ + ".sl" + ], + "SCSS": [ + ".scss" + ], + "PHP": [ + ".module", + ".php", + ".script!" + ], + "Verilog": [ + ".v" + ], + "Squirrel": [ + ".nut" + ], + "Shell": [ + ".bash", + ".script!", + ".sh", + ".zsh" + ], + "Processing": [ + ".pde" + ], + "Handlebars": [ + ".handlebars", + ".hbs" + ], + "Logos": [ + ".xm" + ] + }, + "tokens_total": 413727, + "md5": "91d1a6d24334312acb9f444b358e3495", + "language_tokens": { + "VimL": 20, + "C": 58732, + "LFE": 1711, + "Apex": 4408, + "Standard ML": 243, + "Parrot Internal Representation": 5, + "Less": 39, + "NSIS": 725, + "INI": 27, + "Markdown": 1, + "VHDL": 42, + "TypeScript": 106, + "TeX": 1155, + "Rust": 3566, + "Coq": 18259, + "Nemerle": 17, + "Matlab": 11787, + "XC": 24, + "Scheme": 3478, + "JSON": 619, + "Omgrofl": 57, + "Ragel in Ruby Host": 593, + "JavaScript": 76934, + "Makefile": 50, + "COBOL": 90, + "Groovy Server Pages": 91, + "Pascal": 30, + "Nu": 116, + "XML": 5622, + "Dart": 68, + "Ecl": 281, + "M": 23373, + "AutoHotkey": 3, + "Max": 136, + "Turing": 44, + "SuperCollider": 268, + "Erlang": 2928, + "Diff": 16, + "YAML": 30, + "Scala": 420, + "Sass": 56, + "Perl": 17497, + "Ceylon": 50, + "ABAP": 1500, + "Elm": 628, + "OCaml": 382, + "R": 175, + "Prolog": 4040, + "Haml": 4, + "Logtalk": 36, + "Visual Basic": 345, + "PogoScript": 250, + "LiveScript": 123, + "OpenEdge ABL": 762, + "Kotlin": 155, + "Xtend": 399, + "Racket": 360, + "CSS": 43867, + "OpenCL": 88, + "Awk": 544, + "Groovy": 69, + "Nimrod": 1, + "XSLT": 44, + "Rebol": 11, + "PowerShell": 12, + "Opa": 28, + "GAS": 133, + "CoffeeScript": 2951, + "Lasso": 9849, + "C++": 21480, + "Julia": 247, + "ApacheConf": 1449, + "edn": 227, + "MoonScript": 1718, + "Lua": 724, + "Objective-C": 26518, + "wisp": 1363, + "TXL": 213, + "Ruby": 3854, + "Literate CoffeeScript": 275, + "Forth": 1516, + "Java": 8987, + "Arduino": 20, + "XQuery": 801, + "Python": 5715, + "AppleScript": 1862, + "Monkey": 207, + "GLSL": 3766, + "Gosu": 413, + "XProc": 22, + "Volt": 388, + "Tea": 3, + "Scilab": 69, + "Parrot Assembly": 6, + "fish": 636, + "Ioke": 2, + "Emacs Lisp": 1756, + "Slash": 187, + "SCSS": 39, + "PHP": 20724, + "Verilog": 3778, + "Squirrel": 130, + "Shell": 3744, + "Processing": 74, + "Nginx": 179, + "Handlebars": 69, + "Logos": 93 + }, "tokens": { - "ABAP": { - "*/**": 1, - "*": 56, - "The": 2, - "MIT": 2, - "License": 1, - "(": 8, - ")": 8, - "Copyright": 1, - "c": 3, - "Ren": 1, - "van": 1, - "Mil": 1, - "Permission": 1, - "is": 2, - "hereby": 1, - "granted": 1, - "free": 1, - "of": 6, - "charge": 1, - "to": 10, - "any": 1, - "person": 1, - "obtaining": 1, - "a": 1, - "copy": 2, - "this": 2, - "software": 1, - "and": 3, - "associated": 1, - "documentation": 1, - "files": 4, - "the": 10, - "deal": 1, - "in": 3, - "Software": 3, - "without": 2, - "restriction": 1, - "including": 1, - "limitation": 1, - "rights": 1, - "use": 1, - "modify": 1, - "merge": 1, - "publish": 1, - "distribute": 1, - "sublicense": 1, - "and/or": 1, - "sell": 1, - "copies": 2, - "permit": 1, - "persons": 1, - "whom": 1, - "furnished": 1, - "do": 4, - "so": 1, - "subject": 1, - "following": 1, - "conditions": 1, - "above": 1, - "copyright": 1, - "notice": 2, - "permission": 1, - "shall": 1, - "be": 1, - "included": 1, - "all": 1, - "or": 1, - "substantial": 1, - "portions": 1, - "Software.": 1, - "THE": 6, - "SOFTWARE": 2, - "IS": 1, - "PROVIDED": 1, - "WITHOUT": 1, - "WARRANTY": 1, - "OF": 4, - "ANY": 2, - "KIND": 1, - "EXPRESS": 1, - "OR": 7, - "IMPLIED": 1, - "INCLUDING": 1, - "BUT": 1, - "NOT": 1, - "LIMITED": 1, - "TO": 2, - "WARRANTIES": 1, - "MERCHANTABILITY": 1, - "FITNESS": 1, - "FOR": 2, - "A": 1, - "PARTICULAR": 1, - "PURPOSE": 1, - "AND": 1, - "NONINFRINGEMENT.": 1, - "IN": 4, - "NO": 1, - "EVENT": 1, - "SHALL": 1, - "AUTHORS": 1, - "COPYRIGHT": 1, - "HOLDERS": 1, - "BE": 1, - "LIABLE": 1, - "CLAIM": 1, - "DAMAGES": 1, - "OTHER": 2, - "LIABILITY": 1, - "WHETHER": 1, - "AN": 1, - "ACTION": 1, - "CONTRACT": 1, - "TORT": 1, - "OTHERWISE": 1, - "ARISING": 1, - "FROM": 1, - "OUT": 1, - "CONNECTION": 1, - "WITH": 1, - "USE": 1, - "DEALINGS": 1, - "SOFTWARE.": 1, - "*/": 1, - "-": 978, - "CLASS": 2, - "CL_CSV_PARSER": 6, - "DEFINITION": 2, - "class": 2, - "cl_csv_parser": 2, - "definition": 1, - "public": 3, - "inheriting": 1, - "from": 1, - "cl_object": 1, - "final": 1, - "create": 1, - ".": 9, - "section.": 3, - "not": 3, - "include": 3, - "other": 3, - "source": 3, - "here": 3, - "type": 11, - "pools": 1, - "abap": 1, - "methods": 2, - "constructor": 2, - "importing": 1, - "delegate": 1, - "ref": 1, - "if_csv_parser_delegate": 1, - "csvstring": 1, - "string": 1, - "separator": 1, - "skip_first_line": 1, - "abap_bool": 2, - "parse": 2, - "raising": 1, - "cx_csv_parse_error": 2, - "protected": 1, - "private": 1, - "constants": 1, - "_textindicator": 1, - "value": 2, - "IMPLEMENTATION": 2, - "implementation.": 1, - "": 2, - "+": 9, - "|": 7, - "Instance": 2, - "Public": 1, - "Method": 2, - "CONSTRUCTOR": 1, - "[": 5, - "]": 5, - "DELEGATE": 1, - "TYPE": 5, - "REF": 1, - "IF_CSV_PARSER_DELEGATE": 1, - "CSVSTRING": 1, - "STRING": 1, - "SEPARATOR": 1, - "C": 1, - "SKIP_FIRST_LINE": 1, - "ABAP_BOOL": 1, - "": 2, - "method": 2, - "constructor.": 1, - "super": 1, - "_delegate": 1, - "delegate.": 1, - "_csvstring": 2, - "csvstring.": 1, - "_separator": 1, - "separator.": 1, - "_skip_first_line": 1, - "skip_first_line.": 1, - "endmethod.": 2, - "Get": 1, - "lines": 4, - "data": 3, - "is_first_line": 1, - "abap_true.": 2, - "standard": 2, - "table": 3, - "string.": 3, - "_lines": 1, - "field": 1, - "symbols": 1, - "": 3, - "loop": 1, - "at": 2, - "assigning": 1, - "Parse": 1, - "line": 1, - "values": 2, - "_parse_line": 2, - "Private": 1, - "_LINES": 1, - "<": 1, - "RETURNING": 1, - "STRINGTAB": 1, - "_lines.": 1, - "split": 1, - "cl_abap_char_utilities": 1, - "cr_lf": 1, - "into": 6, - "returning.": 1, - "Space": 2, - "concatenate": 4, - "csvvalue": 6, - "csvvalue.": 5, - "else.": 4, - "char": 2, - "endif.": 6, - "This": 1, - "indicates": 1, - "an": 1, - "error": 1, - "CSV": 1, - "formatting": 1, - "text_ended": 1, - "message": 2, - "e003": 1, - "csv": 1, - "msg.": 2, - "raise": 1, - "exception": 1, - "exporting": 1, - "endwhile.": 2, - "append": 2, - "csvvalues.": 2, - "clear": 1, - "pos": 2, - "endclass.": 1 - }, - "ApacheConf": { - "ServerSignature": 1, - "Off": 1, - "RewriteCond": 15, - "%": 48, - "{": 16, - "REQUEST_METHOD": 1, - "}": 16, - "(": 16, - "HEAD": 1, - "|": 80, - "TRACE": 1, - "DELETE": 1, - "TRACK": 1, - ")": 17, - "[": 17, - "NC": 13, - "OR": 14, - "]": 17, - "THE_REQUEST": 1, - "r": 1, - "n": 1, - "A": 6, - "D": 6, - "HTTP_REFERER": 1, - "<|>": 6, - "C": 5, - "E": 5, - "HTTP_COOKIE": 1, - "REQUEST_URI": 1, - "/": 3, - ";": 2, - "<": 1, - ".": 7, - "HTTP_USER_AGENT": 5, - "java": 1, - "curl": 2, - "wget": 2, - "winhttp": 1, - "HTTrack": 1, - "clshttp": 1, - "archiver": 1, - "loader": 1, - "email": 1, - "harvest": 1, - "extract": 1, - "grab": 1, - "miner": 1, - "libwww": 1, - "-": 43, - "perl": 1, - "python": 1, - "nikto": 1, - "scan": 1, - "#Block": 1, - "mySQL": 1, - "injects": 1, - "QUERY_STRING": 5, - ".*": 3, - "*": 1, - "union": 1, - "select": 1, - "insert": 1, - "cast": 1, - "set": 1, - "declare": 1, - "drop": 1, - "update": 1, - "md5": 1, - "benchmark": 1, - "./": 1, - "localhost": 1, - "loopback": 1, - ".0": 2, - ".1": 1, - "a": 1, - "z0": 1, - "RewriteRule": 1, - "index.php": 1, - "F": 1, - "#": 182, - "ServerRoot": 2, - "#Listen": 2, - "Listen": 2, - "LoadModule": 126, - "authn_file_module": 2, - "/usr/lib/apache2/modules/mod_authn_file.so": 1, - "authn_dbm_module": 2, - "/usr/lib/apache2/modules/mod_authn_dbm.so": 1, - "authn_anon_module": 2, - "/usr/lib/apache2/modules/mod_authn_anon.so": 1, - "authn_dbd_module": 2, - "/usr/lib/apache2/modules/mod_authn_dbd.so": 1, - "authn_default_module": 2, - "/usr/lib/apache2/modules/mod_authn_default.so": 1, - "authn_alias_module": 1, - "/usr/lib/apache2/modules/mod_authn_alias.so": 1, - "authz_host_module": 2, - "/usr/lib/apache2/modules/mod_authz_host.so": 1, - "authz_groupfile_module": 2, - "/usr/lib/apache2/modules/mod_authz_groupfile.so": 1, - "authz_user_module": 2, - "/usr/lib/apache2/modules/mod_authz_user.so": 1, - "authz_dbm_module": 2, - "/usr/lib/apache2/modules/mod_authz_dbm.so": 1, - "authz_owner_module": 2, - "/usr/lib/apache2/modules/mod_authz_owner.so": 1, - "authnz_ldap_module": 1, - "/usr/lib/apache2/modules/mod_authnz_ldap.so": 1, - "authz_default_module": 2, - "/usr/lib/apache2/modules/mod_authz_default.so": 1, - "auth_basic_module": 2, - "/usr/lib/apache2/modules/mod_auth_basic.so": 1, - "auth_digest_module": 2, - "/usr/lib/apache2/modules/mod_auth_digest.so": 1, - "file_cache_module": 1, - "/usr/lib/apache2/modules/mod_file_cache.so": 1, - "cache_module": 2, - "/usr/lib/apache2/modules/mod_cache.so": 1, - "disk_cache_module": 2, - "/usr/lib/apache2/modules/mod_disk_cache.so": 1, - "mem_cache_module": 2, - "/usr/lib/apache2/modules/mod_mem_cache.so": 1, - "dbd_module": 2, - "/usr/lib/apache2/modules/mod_dbd.so": 1, - "dumpio_module": 2, - "/usr/lib/apache2/modules/mod_dumpio.so": 1, - "ext_filter_module": 2, - "/usr/lib/apache2/modules/mod_ext_filter.so": 1, - "include_module": 2, - "/usr/lib/apache2/modules/mod_include.so": 1, - "filter_module": 2, - "/usr/lib/apache2/modules/mod_filter.so": 1, - "charset_lite_module": 1, - "/usr/lib/apache2/modules/mod_charset_lite.so": 1, - "deflate_module": 2, - "/usr/lib/apache2/modules/mod_deflate.so": 1, - "ldap_module": 1, - "/usr/lib/apache2/modules/mod_ldap.so": 1, - "log_forensic_module": 2, - "/usr/lib/apache2/modules/mod_log_forensic.so": 1, - "env_module": 2, - "/usr/lib/apache2/modules/mod_env.so": 1, - "mime_magic_module": 2, - "/usr/lib/apache2/modules/mod_mime_magic.so": 1, - "cern_meta_module": 2, - "/usr/lib/apache2/modules/mod_cern_meta.so": 1, - "expires_module": 2, - "/usr/lib/apache2/modules/mod_expires.so": 1, - "headers_module": 2, - "/usr/lib/apache2/modules/mod_headers.so": 1, - "ident_module": 2, - "/usr/lib/apache2/modules/mod_ident.so": 1, - "usertrack_module": 2, - "/usr/lib/apache2/modules/mod_usertrack.so": 1, - "unique_id_module": 2, - "/usr/lib/apache2/modules/mod_unique_id.so": 1, - "setenvif_module": 2, - "/usr/lib/apache2/modules/mod_setenvif.so": 1, - "version_module": 2, - "/usr/lib/apache2/modules/mod_version.so": 1, - "proxy_module": 2, - "/usr/lib/apache2/modules/mod_proxy.so": 1, - "proxy_connect_module": 2, - "/usr/lib/apache2/modules/mod_proxy_connect.so": 1, - "proxy_ftp_module": 2, - "/usr/lib/apache2/modules/mod_proxy_ftp.so": 1, - "proxy_http_module": 2, - "/usr/lib/apache2/modules/mod_proxy_http.so": 1, - "proxy_ajp_module": 2, - "/usr/lib/apache2/modules/mod_proxy_ajp.so": 1, - "proxy_balancer_module": 2, - "/usr/lib/apache2/modules/mod_proxy_balancer.so": 1, - "ssl_module": 4, - "/usr/lib/apache2/modules/mod_ssl.so": 1, - "mime_module": 4, - "/usr/lib/apache2/modules/mod_mime.so": 1, - "dav_module": 2, - "/usr/lib/apache2/modules/mod_dav.so": 1, - "status_module": 2, - "/usr/lib/apache2/modules/mod_status.so": 1, - "autoindex_module": 2, - "/usr/lib/apache2/modules/mod_autoindex.so": 1, - "asis_module": 2, - "/usr/lib/apache2/modules/mod_asis.so": 1, - "info_module": 2, - "/usr/lib/apache2/modules/mod_info.so": 1, - "suexec_module": 1, - "/usr/lib/apache2/modules/mod_suexec.so": 1, - "cgid_module": 3, - "/usr/lib/apache2/modules/mod_cgid.so": 1, - "cgi_module": 2, - "/usr/lib/apache2/modules/mod_cgi.so": 1, - "dav_fs_module": 2, - "/usr/lib/apache2/modules/mod_dav_fs.so": 1, - "dav_lock_module": 1, - "/usr/lib/apache2/modules/mod_dav_lock.so": 1, - "vhost_alias_module": 2, - "/usr/lib/apache2/modules/mod_vhost_alias.so": 1, - "negotiation_module": 2, - "/usr/lib/apache2/modules/mod_negotiation.so": 1, - "dir_module": 4, - "/usr/lib/apache2/modules/mod_dir.so": 1, - "imagemap_module": 2, - "/usr/lib/apache2/modules/mod_imagemap.so": 1, - "actions_module": 2, - "/usr/lib/apache2/modules/mod_actions.so": 1, - "speling_module": 2, - "/usr/lib/apache2/modules/mod_speling.so": 1, - "userdir_module": 2, - "/usr/lib/apache2/modules/mod_userdir.so": 1, - "alias_module": 4, - "/usr/lib/apache2/modules/mod_alias.so": 1, - "rewrite_module": 2, - "/usr/lib/apache2/modules/mod_rewrite.so": 1, - "": 17, - "mpm_netware_module": 2, - "User": 2, - "daemon": 2, - "Group": 2, - "": 17, - "ServerAdmin": 2, - "you@example.com": 2, - "#ServerName": 2, - "www.example.com": 2, - "DocumentRoot": 2, - "": 6, - "Options": 6, - "FollowSymLinks": 4, - "AllowOverride": 6, - "None": 8, - "Order": 10, - "deny": 10, - "allow": 10, - "Deny": 6, - "from": 10, - "all": 10, - "": 6, - "usr": 2, - "share": 1, - "apache2": 1, - "default": 1, - "site": 1, - "htdocs": 1, - "Indexes": 2, - "Allow": 4, - "DirectoryIndex": 2, - "index.html": 2, - "": 2, - "ht": 1, - "Satisfy": 4, - "All": 4, - "": 2, - "ErrorLog": 2, - "/var/log/apache2/error_log": 1, - "LogLevel": 2, - "warn": 2, - "log_config_module": 3, - "LogFormat": 6, - "combined": 4, - "common": 4, - "logio_module": 3, - "combinedio": 2, - "CustomLog": 2, - "/var/log/apache2/access_log": 2, - "#CustomLog": 2, - "ScriptAlias": 1, - "/cgi": 2, - "bin/": 2, - "#Scriptsock": 2, - "/var/run/apache2/cgisock": 1, - "lib": 1, - "cgi": 3, - "bin": 1, - "DefaultType": 2, - "text/plain": 2, - "TypesConfig": 2, - "/etc/apache2/mime.types": 1, - "#AddType": 4, - "application/x": 6, - "gzip": 6, - ".tgz": 6, - "#AddEncoding": 4, - "x": 4, - "compress": 4, - ".Z": 4, - ".gz": 4, - "AddType": 4, - "#AddHandler": 4, - "script": 2, - ".cgi": 2, - "type": 2, - "map": 2, - "var": 2, - "text/html": 2, - ".shtml": 4, - "#AddOutputFilter": 2, - "INCLUDES": 2, - "#MIMEMagicFile": 2, - "/etc/apache2/magic": 1, - "#ErrorDocument": 8, - "/missing.html": 2, - "http": 2, - "//www.example.com/subscription_info.html": 2, - "#EnableMMAP": 2, - "off": 5, - "#EnableSendfile": 2, - "#Include": 17, - "/etc/apache2/extra/httpd": 11, - "mpm.conf": 2, - "multilang": 2, - "errordoc.conf": 2, - "autoindex.conf": 2, - "languages.conf": 2, - "userdir.conf": 2, - "info.conf": 2, - "vhosts.conf": 2, - "manual.conf": 2, - "dav.conf": 2, - "default.conf": 2, - "ssl.conf": 2, - "SSLRandomSeed": 4, - "startup": 2, - "builtin": 4, - "connect": 2, - "libexec/apache2/mod_authn_file.so": 1, - "libexec/apache2/mod_authn_dbm.so": 1, - "libexec/apache2/mod_authn_anon.so": 1, - "libexec/apache2/mod_authn_dbd.so": 1, - "libexec/apache2/mod_authn_default.so": 1, - "libexec/apache2/mod_authz_host.so": 1, - "libexec/apache2/mod_authz_groupfile.so": 1, - "libexec/apache2/mod_authz_user.so": 1, - "libexec/apache2/mod_authz_dbm.so": 1, - "libexec/apache2/mod_authz_owner.so": 1, - "libexec/apache2/mod_authz_default.so": 1, - "libexec/apache2/mod_auth_basic.so": 1, - "libexec/apache2/mod_auth_digest.so": 1, - "libexec/apache2/mod_cache.so": 1, - "libexec/apache2/mod_disk_cache.so": 1, - "libexec/apache2/mod_mem_cache.so": 1, - "libexec/apache2/mod_dbd.so": 1, - "libexec/apache2/mod_dumpio.so": 1, - "reqtimeout_module": 1, - "libexec/apache2/mod_reqtimeout.so": 1, - "libexec/apache2/mod_ext_filter.so": 1, - "libexec/apache2/mod_include.so": 1, - "libexec/apache2/mod_filter.so": 1, - "substitute_module": 1, - "libexec/apache2/mod_substitute.so": 1, - "libexec/apache2/mod_deflate.so": 1, - "libexec/apache2/mod_log_config.so": 1, - "libexec/apache2/mod_log_forensic.so": 1, - "libexec/apache2/mod_logio.so": 1, - "libexec/apache2/mod_env.so": 1, - "libexec/apache2/mod_mime_magic.so": 1, - "libexec/apache2/mod_cern_meta.so": 1, - "libexec/apache2/mod_expires.so": 1, - "libexec/apache2/mod_headers.so": 1, - "libexec/apache2/mod_ident.so": 1, - "libexec/apache2/mod_usertrack.so": 1, - "#LoadModule": 4, - "libexec/apache2/mod_unique_id.so": 1, - "libexec/apache2/mod_setenvif.so": 1, - "libexec/apache2/mod_version.so": 1, - "libexec/apache2/mod_proxy.so": 1, - "libexec/apache2/mod_proxy_connect.so": 1, - "libexec/apache2/mod_proxy_ftp.so": 1, - "libexec/apache2/mod_proxy_http.so": 1, - "proxy_scgi_module": 1, - "libexec/apache2/mod_proxy_scgi.so": 1, - "libexec/apache2/mod_proxy_ajp.so": 1, - "libexec/apache2/mod_proxy_balancer.so": 1, - "libexec/apache2/mod_ssl.so": 1, - "libexec/apache2/mod_mime.so": 1, - "libexec/apache2/mod_dav.so": 1, - "libexec/apache2/mod_status.so": 1, - "libexec/apache2/mod_autoindex.so": 1, - "libexec/apache2/mod_asis.so": 1, - "libexec/apache2/mod_info.so": 1, - "libexec/apache2/mod_cgi.so": 1, - "libexec/apache2/mod_dav_fs.so": 1, - "libexec/apache2/mod_vhost_alias.so": 1, - "libexec/apache2/mod_negotiation.so": 1, - "libexec/apache2/mod_dir.so": 1, - "libexec/apache2/mod_imagemap.so": 1, - "libexec/apache2/mod_actions.so": 1, - "libexec/apache2/mod_speling.so": 1, - "libexec/apache2/mod_userdir.so": 1, - "libexec/apache2/mod_alias.so": 1, - "libexec/apache2/mod_rewrite.so": 1, - "perl_module": 1, - "libexec/apache2/mod_perl.so": 1, - "php5_module": 1, - "libexec/apache2/libphp5.so": 1, - "hfs_apple_module": 1, - "libexec/apache2/mod_hfs_apple.so": 1, - "mpm_winnt_module": 1, - "_www": 2, - "Library": 2, - "WebServer": 2, - "Documents": 1, - "MultiViews": 1, - "Hh": 1, - "Tt": 1, - "Dd": 1, - "Ss": 2, - "_": 1, - "": 1, - "rsrc": 1, - "": 1, - "": 1, - "namedfork": 1, - "": 1, - "ScriptAliasMatch": 1, - "i": 1, - "webobjects": 1, - "/private/var/run/cgisock": 1, - "CGI": 1, - "Executables": 1, - "/private/etc/apache2/mime.types": 1, - "/private/etc/apache2/magic": 1, - "#MaxRanges": 1, - "unlimited": 1, - "TraceEnable": 1, - "Include": 6, - "/private/etc/apache2/extra/httpd": 11, - "/private/etc/apache2/other/*.conf": 1 - }, - "Apex": { - "global": 70, - "class": 7, - "ArrayUtils": 1, - "{": 219, - "static": 83, - "String": 60, - "[": 102, - "]": 102, - "EMPTY_STRING_ARRAY": 1, - "new": 60, - "}": 219, - ";": 308, - "Integer": 34, - "MAX_NUMBER_OF_ELEMENTS_IN_LIST": 5, - "get": 4, - "return": 106, - "List": 71, - "": 30, - "objectToString": 1, - "(": 481, - "": 22, - "objects": 3, - ")": 481, - "strings": 3, - "null": 92, - "if": 91, - "objects.size": 1, - "for": 24, - "Object": 23, - "obj": 3, - "instanceof": 1, - "strings.add": 1, - "reverse": 2, - "anArray": 14, - "i": 55, - "j": 10, - "anArray.size": 2, - "-": 18, - "tmp": 6, - "while": 8, - "+": 75, - "SObject": 19, - "lowerCase": 1, - "strs": 9, - "returnValue": 22, - "strs.size": 3, - "str": 10, - "returnValue.add": 3, - "str.toLowerCase": 1, - "upperCase": 1, - "str.toUpperCase": 1, - "trim": 1, - "str.trim": 3, - "mergex": 2, - "array1": 8, - "array2": 9, - "merged": 6, - "array1.size": 4, - "array2.size": 2, - "<": 32, - "": 19, - "sObj": 4, - "merged.add": 2, - "Boolean": 38, - "isEmpty": 7, - "objectArray": 17, - "true": 12, - "objectArray.size": 6, - "isNotEmpty": 4, - "pluck": 1, - "fieldName": 3, - "||": 12, - "fieldName.trim": 2, - ".length": 2, - "plucked": 3, - ".get": 4, - "toString": 3, - "void": 9, - "assertArraysAreEqual": 2, - "expected": 16, - "actual": 16, - "//check": 2, - "to": 4, - "see": 2, - "one": 2, - "param": 2, - "is": 5, - "but": 2, - "the": 4, - "other": 2, - "not": 3, - "System.assert": 6, - "&&": 46, - "ArrayUtils.toString": 12, - "expected.size": 4, - "actual.size": 2, - "merg": 2, - "list1": 15, - "list2": 9, - "returnList": 11, - "list1.size": 6, - "list2.size": 2, - "throw": 6, - "IllegalArgumentException": 5, - "elmt": 8, - "returnList.add": 8, - "subset": 6, - "aList": 4, - "count": 10, - "startIndex": 9, - "<=>": 2, - "size": 2, - "1": 2, - "list1.get": 2, - "//": 11, - "//LIST/ARRAY": 1, - "SORTING": 1, - "//FOR": 2, - "FORCE.COM": 1, - "PRIMITIVES": 1, - "Double": 1, - "ID": 1, - "etc.": 1, - "qsort": 18, - "theList": 72, - "PrimitiveComparator": 2, - "sortAsc": 24, - "ObjectComparator": 3, - "comparator": 14, - "theList.size": 2, - "SALESFORCE": 1, - "OBJECTS": 1, - "sObjects": 1, - "ISObjectComparator": 3, - "private": 10, - "lo0": 6, - "hi0": 8, - "lo": 42, - "hi": 50, - "else": 25, - "comparator.compare": 12, - "prs": 8, - "pivot": 14, - "/": 4, - "BooleanUtils": 1, - "isFalse": 1, - "bool": 32, - "false": 13, - "isNotFalse": 1, - "isNotTrue": 1, - "isTrue": 1, - "negate": 1, - "toBooleanDefaultIfNull": 1, - "defaultVal": 2, - "toBoolean": 2, - "value": 10, - "strToBoolean": 1, - "StringUtils.equalsIgnoreCase": 1, - "//Converts": 1, - "an": 4, - "int": 1, - "a": 6, - "boolean": 1, - "specifying": 1, - "//the": 2, - "conversion": 1, - "values.": 1, - "//Returns": 1, - "//Throws": 1, - "trueValue": 2, - "falseValue": 2, - "toInteger": 1, - "toStringYesNo": 1, - "toStringYN": 1, - "trueString": 2, - "falseString": 2, - "xor": 1, - "boolArray": 4, - "boolArray.size": 1, - "firstItem": 2, - "EmailUtils": 1, - "sendEmailWithStandardAttachments": 3, - "recipients": 11, - "emailSubject": 10, - "body": 8, - "useHTML": 6, - "": 1, - "attachmentIDs": 2, - "": 2, - "stdAttachments": 4, - "SELECT": 1, - "id": 1, - "name": 2, - "FROM": 1, - "Attachment": 2, - "WHERE": 1, - "Id": 1, - "IN": 1, - "": 3, - "fileAttachments": 5, - "attachment": 1, - "Messaging.EmailFileAttachment": 2, - "fileAttachment": 2, - "fileAttachment.setFileName": 1, - "attachment.Name": 1, - "fileAttachment.setBody": 1, - "attachment.Body": 1, - "fileAttachments.add": 1, - "sendEmail": 4, - "sendTextEmail": 1, - "textBody": 2, - "sendHTMLEmail": 1, - "htmlBody": 2, - "recipients.size": 1, - "Messaging.SingleEmailMessage": 3, - "mail": 2, - "email": 1, - "saved": 1, - "as": 1, - "activity.": 1, - "mail.setSaveAsActivity": 1, - "mail.setToAddresses": 1, - "mail.setSubject": 1, - "mail.setBccSender": 1, - "mail.setUseSignature": 1, - "mail.setHtmlBody": 1, - "mail.setPlainTextBody": 1, - "fileAttachments.size": 1, - "mail.setFileAttachments": 1, - "Messaging.sendEmail": 1, - "isValidEmailAddress": 2, - "split": 5, - "str.split": 1, - "split.size": 2, - ".split": 1, - "isNotValidEmailAddress": 1, - "public": 10, - "GeoUtils": 1, - "generate": 1, - "KML": 1, - "string": 7, - "given": 2, - "page": 1, - "reference": 1, - "call": 1, - "getContent": 1, - "then": 1, - "cleanup": 1, - "output.": 1, - "generateFromContent": 1, - "PageReference": 2, - "pr": 1, - "ret": 7, - "try": 1, - "pr.getContent": 1, - ".toString": 1, - "ret.replaceAll": 4, - "content": 1, - "produces": 1, - "quote": 1, - "chars": 1, - "we": 1, - "need": 1, - "escape": 1, - "these": 2, - "in": 1, - "node": 1, - "catch": 1, - "exception": 1, - "e": 2, - "system.debug": 2, - "must": 1, - "use": 1, - "ALL": 1, - "since": 1, - "many": 1, - "line": 1, - "may": 1, - "also": 1, - "Map": 33, - "": 2, - "geo_response": 1, - "accountAddressString": 2, - "account": 2, - "acct": 1, - "form": 1, - "address": 1, - "object": 1, - "adr": 9, - "acct.billingstreet": 1, - "acct.billingcity": 1, - "acct.billingstate": 1, - "acct.billingpostalcode": 2, - "acct.billingcountry": 2, - "adr.replaceAll": 4, - "testmethod": 1, - "t1": 1, - "pageRef": 3, - "Page.kmlPreviewTemplate": 1, - "Test.setCurrentPage": 1, - "system.assert": 1, - "GeoUtils.generateFromContent": 1, - "Account": 2, - "billingstreet": 1, - "billingcity": 1, - "billingstate": 1, - "billingpostalcode": 1, - "billingcountry": 1, - "insert": 1, - "system.assertEquals": 1, - "LanguageUtils": 1, - "final": 6, - "HTTP_LANGUAGE_CODE_PARAMETER_KEY": 2, - "DEFAULT_LANGUAGE_CODE": 3, - "Set": 6, - "SUPPORTED_LANGUAGE_CODES": 2, - "//Chinese": 2, - "Simplified": 1, - "Traditional": 1, - "//Dutch": 1, - "//English": 1, - "//Finnish": 1, - "//French": 1, - "//German": 1, - "//Italian": 1, - "//Japanese": 1, - "//Korean": 1, - "//Polish": 1, - "//Portuguese": 1, - "Brazilian": 1, - "//Russian": 1, - "//Spanish": 1, - "//Swedish": 1, - "//Thai": 1, - "//Czech": 1, - "//Danish": 1, - "//Hungarian": 1, - "//Indonesian": 1, - "//Turkish": 1, - "": 29, - "DEFAULTS": 1, - "getLangCodeByHttpParam": 4, - "LANGUAGE_CODE_SET": 1, - "getSuppLangCodeSet": 2, - "ApexPages.currentPage": 4, - ".getParameters": 2, - "LANGUAGE_HTTP_PARAMETER": 7, - "StringUtils.lowerCase": 3, - "StringUtils.replaceChars": 2, - "//underscore": 1, - "//dash": 1, - "DEFAULTS.containsKey": 3, - "DEFAULTS.get": 3, - "StringUtils.isNotBlank": 1, - "SUPPORTED_LANGUAGE_CODES.contains": 2, - "getLangCodeByBrowser": 4, - "LANGUAGES_FROM_BROWSER_AS_STRING": 2, - ".getHeaders": 1, - "LANGUAGES_FROM_BROWSER_AS_LIST": 3, - "splitAndFilterAcceptLanguageHeader": 2, - "LANGUAGES_FROM_BROWSER_AS_LIST.size": 1, - "languageFromBrowser": 6, - "getLangCodeByUser": 3, - "UserInfo.getLanguage": 1, - "getLangCodeByHttpParamOrIfNullThenBrowser": 1, - "StringUtils.defaultString": 4, - "getLangCodeByHttpParamOrIfNullThenUser": 1, - "getLangCodeByBrowserOrIfNullThenHttpParam": 1, - "getLangCodeByBrowserOrIfNullThenUser": 1, - "header": 2, - "tokens": 3, - "StringUtils.split": 1, - "token": 7, - "token.contains": 1, - "token.substring": 1, - "token.indexOf": 1, - "StringUtils.length": 1, - "StringUtils.substring": 1, - "langCodes": 2, - "langCode": 3, - "langCodes.add": 1, - "getLanguageName": 1, - "displayLanguageCode": 13, - "languageCode": 2, - "translatedLanguageNames.get": 2, - "filterLanguageCode": 4, - "getAllLanguages": 3, - "translatedLanguageNames.containsKey": 1, - "translatedLanguageNames": 1, - "TwilioAPI": 2, - "MissingTwilioConfigCustomSettingsException": 2, - "extends": 1, - "Exception": 1, - "TwilioRestClient": 5, - "client": 2, - "getDefaultClient": 2, - "TwilioConfig__c": 5, - "twilioCfg": 7, - "getTwilioConfig": 3, - "TwilioAPI.client": 2, - "twilioCfg.AccountSid__c": 3, - "twilioCfg.AuthToken__c": 3, - "TwilioAccount": 1, - "getDefaultAccount": 1, - ".getAccount": 2, - "TwilioCapability": 2, - "createCapability": 1, - "createClient": 1, - "accountSid": 2, - "authToken": 2, - "Test.isRunningTest": 1, - "dummy": 2, - "sid": 1, - "TwilioConfig__c.getOrgDefaults": 1, - "@isTest": 1, - "test_TwilioAPI": 1, - "System.assertEquals": 5, - "TwilioAPI.getTwilioConfig": 2, - ".AccountSid__c": 1, - ".AuthToken__c": 1, - "TwilioAPI.getDefaultClient": 2, - ".getAccountSid": 1, - ".getSid": 2, - "TwilioAPI.getDefaultAccount": 1 - }, - "AppleScript": { - "set": 108, - "windowWidth": 3, - "to": 128, - "windowHeight": 3, - "delay": 3, - "AppleScript": 2, - "s": 3, - "text": 13, - "item": 13, - "delimiters": 1, - "tell": 40, - "application": 16, - "screen_width": 2, - "(": 89, - "do": 4, - "JavaScript": 2, - "in": 13, - "document": 2, - ")": 88, - "screen_height": 2, - "end": 67, - "myFrontMost": 3, - "name": 8, - "of": 72, - "first": 1, - "processes": 2, - "whose": 1, - "frontmost": 1, - "is": 40, - "true": 8, - "{": 32, - "desktopTop": 2, - "desktopLeft": 1, - "desktopRight": 1, - "desktopBottom": 1, - "}": 32, - "bounds": 2, - "desktop": 1, - "try": 10, - "process": 5, - "w": 5, - "h": 4, - "size": 5, - "drawer": 2, - "window": 5, - "on": 18, - "error": 3, - "position": 1, - "-": 57, - "/": 2, - "property": 7, - "type_list": 6, - "extension_list": 6, - "html": 2, - "not": 5, - "currently": 2, - "handled": 2, - "run": 4, - "FinderSelection": 4, - "the": 56, - "selection": 2, - "as": 27, - "alias": 8, - "list": 9, - "FS": 10, - "Ideally": 2, - "this": 2, - "could": 2, - "be": 2, - "passed": 2, - "open": 8, - "handler": 2, - "SelectionCount": 6, - "number": 6, - "count": 10, - "if": 50, - "then": 28, - "userPicksFolder": 6, - "else": 14, - "MyPath": 4, - "path": 6, - "me": 2, - "If": 2, - "I": 2, - "m": 2, - "a": 4, - "double": 2, - "clicked": 2, - "droplet": 2, - "these_items": 18, - "choose": 2, - "file": 6, - "with": 11, - "prompt": 2, - "type": 6, - "thesefiles": 2, - "item_info": 24, - "repeat": 19, - "i": 10, - "from": 9, - "this_item": 14, - "info": 4, - "for": 5, - "folder": 10, - "processFolder": 8, - "false": 9, - "and": 7, - "or": 6, - "extension": 4, - "theFilePath": 8, - "string": 17, - "thePOSIXFilePath": 8, - "POSIX": 4, - "processFile": 8, - "folders": 2, - "theFolder": 6, - "without": 2, - "invisibles": 2, - "&": 63, - "thePOSIXFileName": 6, - "terminalCommand": 6, - "convertCommand": 4, - "newFileName": 4, - "shell": 2, - "script": 2, - "need": 1, - "pass": 1, - "URL": 1, - "Terminal": 1, - "localMailboxes": 3, - "every": 3, - "mailbox": 2, - "greater": 5, - "than": 6, - "messageCountDisplay": 5, - "return": 16, - "my": 3, - "getMessageCountsForMailboxes": 4, - "everyAccount": 2, - "account": 1, - "eachAccount": 3, - "accountMailboxes": 3, - "outputMessage": 2, - "make": 3, - "new": 2, - "outgoing": 2, - "message": 2, - "properties": 2, - "content": 2, - "subject": 1, - "visible": 2, - "font": 2, - "theMailboxes": 2, - "mailboxes": 1, - "returns": 2, - "displayString": 4, - "eachMailbox": 4, - "mailboxName": 2, - "messageCount": 2, - "messages": 1, - "unreadCount": 2, - "unread": 1, - "padString": 3, - "theString": 4, - "fieldLength": 5, - "integer": 3, - "stringLength": 4, - "length": 1, - "paddedString": 5, - "character": 2, - "less": 1, - "equal": 3, - "paddingLength": 2, - "times": 1, - "space": 1, - "lowFontSize": 9, - "highFontSize": 6, - "messageText": 4, - "userInput": 4, - "display": 4, - "dialog": 4, - "default": 4, - "answer": 3, - "buttons": 3, - "button": 4, - "returned": 5, - "minimumFontSize": 4, - "newFontSize": 6, - "result": 2, - "theText": 3, - "exit": 1, - "fontList": 2, - "activate": 3, - "crazyTextMessage": 2, - "eachCharacter": 4, - "characters": 1, - "some": 1, - "random": 4, - "color": 1, - "current": 3, - "pane": 4, - "UI": 1, - "elements": 1, - "enabled": 2, - "tab": 1, - "group": 1, - "click": 1, - "radio": 1, - "get": 1, - "value": 1, - "field": 1, - "isVoiceOverRunning": 3, - "isRunning": 3, - "contains": 1, - "isVoiceOverRunningWithAppleScript": 3, - "isRunningWithAppleScript": 3, - "VoiceOver": 1, - "x": 1, - "vo": 1, - "cursor": 1, - "currentDate": 3, - "date": 1, - "amPM": 4, - "currentHour": 9, - "minutes": 2, - "<": 2, - "below": 1, - "sound": 1, - "nice": 1, - "currentMinutes": 4, - "ensure": 1, - "nn": 2, - "gets": 1, - "AM": 1, - "readjust": 1, - "hour": 1, - "time": 1, - "currentTime": 3, - "day": 1, - "output": 1, - "say": 1 - }, - "Arduino": { - "void": 2, - "setup": 1, - "(": 4, - ")": 4, - "{": 2, - "Serial.begin": 1, - ";": 2, - "}": 2, - "loop": 1, - "Serial.print": 1 - }, - "AutoHotkey": { - "MsgBox": 1, - "Hello": 1, - "World": 1 - }, - "Awk": { - "SHEBANG#!awk": 1, - "BEGIN": 1, - "{": 17, - "n": 13, - ";": 55, - "printf": 1, - "network_max_bandwidth_in_byte": 3, - "network_max_packet_per_second": 3, - "last3": 3, - "last4": 3, - "last5": 3, - "last6": 3, - "}": 17, - "if": 14, - "(": 14, - "/Average/": 1, - ")": 14, - "#": 48, - "Skip": 1, - "the": 12, - "Average": 1, - "values": 1, - "next": 1, - "/all/": 1, - "This": 8, - "is": 7, - "cpu": 1, - "info": 7, - "print": 35, - "FILENAME": 35, - "-": 2, - "/eth0/": 1, - "eth0": 1, - "network": 1, - "Total": 9, - "number": 9, - "of": 22, - "packets": 4, - "received": 4, - "per": 14, - "second.": 8, - "else": 4, - "transmitted": 4, - "bytes": 4, - "/proc": 1, - "|": 4, - "cswch": 1, - "tps": 1, - "kbmemfree": 1, - "totsck/": 1, - "/": 2, - "[": 1, - "]": 1, - "proc/s": 1, - "context": 1, - "switches": 1, - "second": 6, - "disk": 1, - "total": 1, - "transfers": 1, - "read": 1, - "requests": 2, - "write": 1, - "block": 2, - "reads": 1, - "writes": 1, - "mem": 1, - "Amount": 7, - "free": 2, - "memory": 6, - "available": 1, - "in": 11, - "kilobytes.": 7, - "used": 8, - "does": 1, - "not": 1, - "take": 1, - "into": 1, - "account": 1, - "by": 4, - "kernel": 3, - "itself.": 1, - "Percentage": 2, - "memory.": 1, - "X": 1, - "shared": 1, - "system": 1, - "Always": 1, - "zero": 1, - "with": 1, - "kernels.": 1, - "as": 1, - "buffers": 1, - "to": 1, - "cache": 1, - "data": 1, - "swap": 3, - "space": 2, - "space.": 1, - "socket": 1, - "sockets.": 1, - "Number": 4, - "TCP": 1, - "sockets": 3, - "currently": 4, - "use.": 4, - "UDP": 1, - "RAW": 1, - "IP": 1, - "fragments": 1, - "END": 1 + "VimL": { + "showmatch": 1, + "smartcase": 1, + "nocompatible": 1, + "guioptions": 1, + "toolbar": 1, + "T": 1, + "-": 1, + "no": 1, + "showcmd": 1, + "ignorecase": 1, + "set": 7, + "syntax": 1, + "incsearch": 1, + "on": 1 }, "C": { - "#include": 149, - "const": 357, - "char": 529, - "*blob_type": 2, - ";": 5439, - "struct": 359, - "blob": 6, - "*lookup_blob": 2, - "(": 6213, - "unsigned": 140, - "*sha1": 16, - ")": 6215, - "{": 1528, - "object": 10, - "*obj": 9, - "lookup_object": 2, - "sha1": 20, - "if": 1015, - "obj": 48, - "return": 529, - "create_object": 2, - "OBJ_BLOB": 3, - "alloc_blob_node": 1, - "-": 1803, - "type": 36, - "error": 96, - "sha1_to_hex": 8, - "typename": 2, - "NULL": 330, - "}": 1544, - "*": 253, - "int": 446, - "parse_blob_buffer": 2, - "*item": 10, - "void": 279, - "*buffer": 6, - "long": 105, - "size": 120, - "item": 24, - "object.parsed": 4, - "#ifndef": 84, - "BLOB_H": 2, - "#define": 911, - "extern": 37, - "#endif": 236, - "git_cache_init": 1, - "git_cache": 4, - "*cache": 4, - "size_t": 52, - "git_cached_obj_freeptr": 1, - "free_ptr": 2, - "<": 219, - "git__size_t_powerof2": 1, - "cache": 26, - "size_mask": 6, - "lru_count": 1, - "free_obj": 4, - "git_mutex_init": 1, - "&": 442, - "lock": 6, - "nodes": 10, - "git__malloc": 3, - "sizeof": 71, - "git_cached_obj": 5, - "GITERR_CHECK_ALLOC": 3, - "memset": 4, - "git_cache_free": 1, - "i": 410, - "for": 88, - "+": 551, - "[": 597, - "]": 597, - "git_cached_obj_decref": 3, - "git__free": 15, - "*git_cache_get": 1, - "git_oid": 7, - "*oid": 2, - "uint32_t": 144, - "hash": 12, - "*node": 2, - "*result": 1, - "memcpy": 34, - "oid": 17, - "id": 13, - "git_mutex_lock": 2, - "node": 9, - "&&": 248, - "git_oid_cmp": 6, - "git_cached_obj_incref": 3, - "result": 48, - "git_mutex_unlock": 2, - "*git_cache_try_store": 1, - "*_entry": 1, - "*entry": 2, - "_entry": 1, - "entry": 17, - "else": 190, - "save_commit_buffer": 3, - "*commit_type": 2, - "static": 454, - "commit": 59, - "*check_commit": 1, - "quiet": 5, - "OBJ_COMMIT": 5, - "*lookup_commit_reference_gently": 2, - "deref_tag": 1, - "parse_object": 1, - "check_commit": 2, - "*lookup_commit_reference": 2, - "lookup_commit_reference_gently": 1, - "*lookup_commit_or_die": 2, - "*ref_name": 2, - "*c": 69, - "lookup_commit_reference": 2, - "c": 252, - "die": 5, - "_": 3, - "ref_name": 2, - "hashcmp": 2, - "object.sha1": 8, - "warning": 1, - "*lookup_commit": 2, - "alloc_commit_node": 1, - "*lookup_commit_reference_by_name": 2, - "*name": 12, - "*commit": 10, - "get_sha1": 1, - "name": 28, - "||": 141, - "parse_commit": 3, - "parse_commit_date": 2, - "*buf": 10, - "*tail": 2, - "*dateptr": 1, - "buf": 57, - "tail": 12, - "memcmp": 6, - "while": 70, - "dateptr": 2, - "strtoul": 2, - "commit_graft": 13, - "**commit_graft": 1, - "commit_graft_alloc": 4, - "commit_graft_nr": 5, - "commit_graft_pos": 2, - "lo": 6, - "hi": 5, - "mi": 5, - "/": 9, - "*graft": 3, - "cmp": 9, - "graft": 10, - "register_commit_graft": 2, - "ignore_dups": 2, - "pos": 7, - "free": 62, - "alloc_nr": 1, - "xrealloc": 2, - "parse_commit_buffer": 3, - "buffer": 10, - "*bufptr": 1, - "parent": 7, - "commit_list": 35, - "**pptr": 1, - "<=>": 16, - "bufptr": 12, - "46": 1, - "tree": 3, - "5": 1, - "45": 1, - "n": 70, - "bogus": 1, - "s": 154, - "get_sha1_hex": 2, - "lookup_tree": 1, - "pptr": 5, - "parents": 4, - "lookup_commit_graft": 1, - "*new_parent": 2, - "48": 1, - "7": 1, - "47": 1, - "bad": 1, - "in": 11, - "nr_parent": 3, - "grafts_replace_parents": 1, - "continue": 20, - "new_parent": 6, - "lookup_commit": 2, - "commit_list_insert": 2, - "next": 8, - "date": 5, - "enum": 29, - "object_type": 1, - "ret": 142, - "read_sha1_file": 1, - "find_commit_subject": 2, - "*commit_buffer": 2, - "**subject": 2, - "*eol": 1, - "*p": 9, - "commit_buffer": 1, - "a": 80, - "b_date": 3, - "b": 66, - "a_date": 2, - "*commit_list_get_next": 1, - "*a": 9, - "commit_list_set_next": 1, - "*next": 6, - "commit_list_sort_by_date": 2, - "**list": 5, - "*list": 2, - "llist_mergesort": 1, - "peel_to_type": 1, - "util": 3, - "merge_remote_desc": 3, - "*desc": 1, - "desc": 5, - "xmalloc": 2, - "strdup": 1, - "**commit_list_append": 2, - "**next": 2, - "*new": 1, - "new": 4, - "COMMIT_H": 2, - "*util": 1, - "indegree": 1, - "*parents": 4, - "*tree": 3, - "decoration": 1, - "name_decoration": 3, - "*commit_list_insert": 1, - "commit_list_count": 1, - "*l": 1, - "*commit_list_insert_by_date": 1, - "free_commit_list": 1, - "cmit_fmt": 3, - "CMIT_FMT_RAW": 1, - "CMIT_FMT_MEDIUM": 2, - "CMIT_FMT_DEFAULT": 1, - "CMIT_FMT_SHORT": 1, - "CMIT_FMT_FULL": 1, - "CMIT_FMT_FULLER": 1, - "CMIT_FMT_ONELINE": 1, - "CMIT_FMT_EMAIL": 1, - "CMIT_FMT_USERFORMAT": 1, - "CMIT_FMT_UNSPECIFIED": 1, - "pretty_print_context": 6, - "fmt": 4, - "abbrev": 1, - "*subject": 1, - "*after_subject": 1, - "preserve_subject": 1, - "date_mode": 2, - "date_mode_explicit": 1, - "need_8bit_cte": 2, - "show_notes": 1, - "reflog_walk_info": 1, - "*reflog_info": 1, - "*output_encoding": 2, - "userformat_want": 2, - "notes": 1, - "has_non_ascii": 1, - "*text": 1, - "rev_info": 2, - "*logmsg_reencode": 1, - "*reencode_commit_message": 1, - "**encoding_p": 1, - "get_commit_format": 1, - "*arg": 1, - "*format_subject": 1, - "strbuf": 12, - "*sb": 7, - "*msg": 6, - "*line_separator": 1, - "userformat_find_requirements": 1, - "*fmt": 2, - "*w": 2, - "format_commit_message": 1, - "*format": 2, - "*context": 1, - "pretty_print_commit": 1, - "*pp": 4, - "pp_commit_easy": 1, - "pp_user_info": 1, - "*what": 1, - "*line": 1, - "*encoding": 2, - "pp_title_line": 1, - "**msg_p": 2, - "pp_remainder": 1, - "indent": 1, - "*pop_most_recent_commit": 1, - "mark": 3, - "*pop_commit": 1, - "**stack": 1, - "clear_commit_marks": 1, - "clear_commit_marks_for_object_array": 1, - "object_array": 2, - "sort_in_topological_order": 1, - "**": 6, - "list": 1, - "lifo": 1, - "FLEX_ARRAY": 1, - "typedef": 189, - "*read_graft_line": 1, - "len": 30, - "*lookup_commit_graft": 1, - "*get_merge_bases": 1, - "*rev1": 1, - "*rev2": 1, - "cleanup": 12, - "*get_merge_bases_many": 1, - "*one": 1, - "**twos": 1, - "*get_octopus_merge_bases": 1, - "*in": 1, - "register_shallow": 1, - "unregister_shallow": 1, - "for_each_commit_graft": 1, - "each_commit_graft_fn": 1, - "is_repository_shallow": 1, - "*get_shallow_commits": 1, - "*heads": 2, - "depth": 2, - "shallow_flag": 1, - "not_shallow_flag": 1, - "is_descendant_of": 1, - "in_merge_bases": 1, - "interactive_add": 1, - "argc": 26, - "**argv": 6, - "*prefix": 7, - "patch": 1, - "run_add_interactive": 1, - "*revision": 1, - "*patch_mode": 1, - "**pathspec": 1, - "inline": 3, - "single_parent": 1, - "*reduce_heads": 1, - "commit_extra_header": 7, - "*key": 5, - "*value": 5, - "append_merge_tag_headers": 1, - "***tail": 1, - "commit_tree": 1, - "*ret": 20, - "*author": 2, - "*sign_commit": 2, - "commit_tree_extended": 1, - "*read_commit_extra_headers": 1, - "*read_commit_extra_header_lines": 1, - "free_commit_extra_headers": 1, - "*extra": 1, - "merge_remote_util": 1, - "*get_merge_parent": 1, - "parse_signed_commit": 1, - "*message": 1, - "*signature": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "#ifdef": 64, - "CONFIG_SMP": 1, - "DEFINE_MUTEX": 1, - "cpu_add_remove_lock": 3, - "cpu_maps_update_begin": 9, - "mutex_lock": 5, - "cpu_maps_update_done": 9, - "mutex_unlock": 6, - "RAW_NOTIFIER_HEAD": 1, - "cpu_chain": 4, - "cpu_hotplug_disabled": 7, - "CONFIG_HOTPLUG_CPU": 2, - "task_struct": 5, - "*active_writer": 1, - "mutex": 1, - "refcount": 2, - "cpu_hotplug": 1, - ".active_writer": 1, - ".lock": 1, - "__MUTEX_INITIALIZER": 1, - "cpu_hotplug.lock": 8, - ".refcount": 1, - "get_online_cpus": 2, - "might_sleep": 1, - "cpu_hotplug.active_writer": 6, - "current": 5, - "cpu_hotplug.refcount": 3, - "EXPORT_SYMBOL_GPL": 4, - "put_online_cpus": 2, - "unlikely": 54, - "wake_up_process": 1, - "cpu_hotplug_begin": 4, - "likely": 22, - "break": 244, - "__set_current_state": 1, - "TASK_UNINTERRUPTIBLE": 1, - "schedule": 1, - "cpu_hotplug_done": 4, - "#else": 94, - "__ref": 6, - "register_cpu_notifier": 2, - "notifier_block": 3, - "*nb": 3, - "raw_notifier_chain_register": 1, - "nb": 2, - "__cpu_notify": 6, - "val": 20, - "*v": 3, - "nr_to_call": 2, - "*nr_calls": 1, - "__raw_notifier_call_chain": 1, - "v": 11, - "nr_calls": 9, - "notifier_to_errno": 1, - "cpu_notify": 5, - "cpu_notify_nofail": 4, - "BUG_ON": 4, - "EXPORT_SYMBOL": 8, - "unregister_cpu_notifier": 2, - "raw_notifier_chain_unregister": 1, - "clear_tasks_mm_cpumask": 1, - "cpu": 57, - "WARN_ON": 1, - "cpu_online": 5, - "rcu_read_lock": 1, - "for_each_process": 2, - "p": 60, - "*t": 2, - "t": 32, - "find_lock_task_mm": 1, - "cpumask_clear_cpu": 5, - "mm_cpumask": 1, - "mm": 1, - "task_unlock": 1, - "rcu_read_unlock": 1, - "check_for_tasks": 2, - "write_lock_irq": 1, - "tasklist_lock": 2, - "task_cpu": 1, - "state": 104, - "TASK_RUNNING": 1, - "utime": 1, - "stime": 1, - "printk": 12, - "KERN_WARNING": 3, - "comm": 1, - "task_pid_nr": 1, - "flags": 89, - "write_unlock_irq": 1, - "take_cpu_down_param": 3, - "mod": 13, - "*hcpu": 3, - "take_cpu_down": 2, - "*_param": 1, - "*param": 1, - "_param": 1, - "err": 38, - "__cpu_disable": 1, - "CPU_DYING": 1, - "|": 132, - "param": 2, - "hcpu": 10, - "_cpu_down": 3, - "tasks_frozen": 4, - "CPU_TASKS_FROZEN": 2, - "tcd_param": 2, - ".mod": 1, - ".hcpu": 1, - "num_online_cpus": 2, - "EBUSY": 3, - "EINVAL": 6, - "CPU_DOWN_PREPARE": 1, - "CPU_DOWN_FAILED": 2, - "__func__": 2, - "goto": 159, - "out_release": 3, - "__stop_machine": 1, - "cpumask_of": 1, - "idle_cpu": 1, - "cpu_relax": 1, - "__cpu_die": 1, - "CPU_DEAD": 1, - "CPU_POST_DEAD": 1, - "cpu_down": 2, - "out": 18, - "__cpuinit": 3, - "_cpu_up": 3, - "*idle": 1, - "cpu_present": 1, - "idle": 4, - "idle_thread_get": 1, - "IS_ERR": 1, - "PTR_ERR": 1, - "CPU_UP_PREPARE": 1, - "out_notify": 3, - "__cpu_up": 1, - "CPU_ONLINE": 1, - "CPU_UP_CANCELED": 1, - "cpu_up": 2, - "CONFIG_MEMORY_HOTPLUG": 2, - "nid": 5, - "pg_data_t": 1, - "*pgdat": 1, - "cpu_possible": 1, - "KERN_ERR": 5, - "#if": 92, - "defined": 42, - "CONFIG_IA64": 1, - "cpu_to_node": 1, - "node_online": 1, - "mem_online_node": 1, - "pgdat": 3, - "NODE_DATA": 1, - "ENOMEM": 4, - "node_zonelists": 1, - "_zonerefs": 1, - "zone": 1, - "zonelists_mutex": 2, - "build_all_zonelists": 1, - "CONFIG_PM_SLEEP_SMP": 2, - "cpumask_var_t": 1, - "frozen_cpus": 9, - "__weak": 4, - "arch_disable_nonboot_cpus_begin": 2, - "arch_disable_nonboot_cpus_end": 2, - "disable_nonboot_cpus": 1, - "first_cpu": 3, - "cpumask_first": 1, - "cpu_online_mask": 3, - "cpumask_clear": 2, - "for_each_online_cpu": 1, - "cpumask_set_cpu": 5, - "arch_enable_nonboot_cpus_begin": 2, - "arch_enable_nonboot_cpus_end": 2, - "enable_nonboot_cpus": 1, - "cpumask_empty": 1, - "KERN_INFO": 2, - "for_each_cpu": 1, - "__init": 2, - "alloc_frozen_cpus": 2, - "alloc_cpumask_var": 1, - "GFP_KERNEL": 1, - "__GFP_ZERO": 1, - "core_initcall": 2, - "cpu_hotplug_disable_before_freeze": 2, - "cpu_hotplug_enable_after_thaw": 2, - "cpu_hotplug_pm_callback": 2, - "action": 2, - "*ptr": 1, - "switch": 46, - "case": 273, - "PM_SUSPEND_PREPARE": 1, - "PM_HIBERNATION_PREPARE": 1, - "PM_POST_SUSPEND": 1, - "PM_POST_HIBERNATION": 1, - "default": 33, - "NOTIFY_DONE": 1, - "NOTIFY_OK": 1, - "cpu_hotplug_pm_sync_init": 2, - "pm_notifier": 1, - "notify_cpu_starting": 1, - "CPU_STARTING": 1, - "cpumask_test_cpu": 1, - "CPU_STARTING_FROZEN": 1, - "MASK_DECLARE_1": 3, - "x": 57, - "UL": 1, - "<<": 56, - "MASK_DECLARE_2": 3, - "MASK_DECLARE_4": 3, - "MASK_DECLARE_8": 9, - "cpu_bit_bitmap": 2, - "BITS_PER_LONG": 2, - "BITS_TO_LONGS": 1, - "NR_CPUS": 2, - "DECLARE_BITMAP": 6, - "cpu_all_bits": 2, - "CPU_BITS_ALL": 2, - "CONFIG_INIT_ALL_POSSIBLE": 1, - "cpu_possible_bits": 6, - "CONFIG_NR_CPUS": 5, - "__read_mostly": 5, - "cpumask": 7, - "*const": 4, - "cpu_possible_mask": 2, - "to_cpumask": 15, - "cpu_online_bits": 5, - "cpu_present_bits": 5, - "cpu_present_mask": 2, - "cpu_active_bits": 4, - "cpu_active_mask": 2, - "set_cpu_possible": 1, - "bool": 6, - "possible": 2, - "set_cpu_present": 1, - "present": 2, - "set_cpu_online": 1, - "online": 2, - "set_cpu_active": 1, - "active": 2, - "init_cpu_present": 1, - "*src": 3, - "cpumask_copy": 3, - "src": 16, - "init_cpu_possible": 1, - "init_cpu_online": 1, - "*diff_prefix_from_pathspec": 1, - "git_strarray": 2, - "*pathspec": 2, - "git_buf": 3, - "prefix": 34, - "GIT_BUF_INIT": 3, - "*scan": 2, - "git_buf_common_prefix": 1, - "pathspec": 15, - "scan": 4, - "prefix.ptr": 2, - "git__iswildcard": 1, - "git_buf_truncate": 1, - "prefix.size": 1, - "git_buf_detach": 1, - "git_buf_free": 4, - "diff_pathspec_is_interesting": 2, - "*str": 1, - "count": 17, - "false": 77, - "true": 73, - "str": 162, - "strings": 5, - "diff_path_matches_pathspec": 3, - "git_diff_list": 17, - "*diff": 8, - "*path": 2, - "git_attr_fnmatch": 4, - "*match": 3, - "diff": 93, - "pathspec.length": 1, - "git_vector_foreach": 4, - "match": 16, - "p_fnmatch": 1, - "pattern": 3, - "path": 20, - "FNM_NOMATCH": 1, - "GIT_ATTR_FNMATCH_HASWILD": 1, - "strncmp": 1, - "length": 58, - "GIT_ATTR_FNMATCH_NEGATIVE": 1, - "git_diff_delta": 19, - "*diff_delta__alloc": 1, - "git_delta_t": 5, - "status": 57, - "*delta": 6, - "git__calloc": 3, - "delta": 54, - "old_file.path": 12, - "git_pool_strdup": 3, - "pool": 12, - "new_file.path": 6, - "opts.flags": 8, - "GIT_DIFF_REVERSE": 3, - "GIT_DELTA_ADDED": 4, - "GIT_DELTA_DELETED": 7, - "*diff_delta__dup": 1, - "*d": 1, - "git_pool": 4, - "*pool": 3, - "d": 16, - "fail": 19, - "*diff_delta__merge_like_cgit": 1, - "*b": 6, - "*dup": 1, - "diff_delta__dup": 3, - "dup": 15, - "new_file.oid": 7, - "git_oid_cpy": 5, - "new_file.mode": 4, - "new_file.size": 3, - "new_file.flags": 4, - "old_file.oid": 3, - "GIT_DELTA_UNTRACKED": 5, - "GIT_DELTA_IGNORED": 5, - "GIT_DELTA_UNMODIFIED": 11, - "diff_delta__from_one": 5, - "git_index_entry": 8, - "GIT_DIFF_INCLUDE_IGNORED": 1, - "GIT_DIFF_INCLUDE_UNTRACKED": 1, - "diff_delta__alloc": 2, - "assert": 41, - "GIT_DELTA_MODIFIED": 3, - "old_file.mode": 2, - "mode": 11, - "old_file.size": 1, - "file_size": 6, - "old_file.flags": 2, - "GIT_DIFF_FILE_VALID_OID": 4, - "git_vector_insert": 4, - "deltas": 8, - "diff_delta__from_two": 2, - "*old_entry": 1, - "*new_entry": 1, - "*new_oid": 1, - "GIT_DIFF_INCLUDE_UNMODIFIED": 1, - "*temp": 1, - "old_entry": 5, - "new_entry": 5, - "temp": 11, - "new_oid": 3, - "git_oid_iszero": 2, - "*diff_strdup_prefix": 1, - "strlen": 17, - "git_pool_strcat": 1, - "git_pool_strndup": 1, - "diff_delta__cmp": 3, - "*da": 1, - "*db": 3, - "strcmp": 20, - "da": 2, - "db": 10, - "config_bool": 5, - "git_config": 3, - "*cfg": 2, - "defvalue": 2, - "git_config_get_bool": 1, - "cfg": 6, - "giterr_clear": 1, - "*git_diff_list_alloc": 1, - "git_repository": 7, - "*repo": 7, - "git_diff_options": 7, - "*opts": 6, - "repo": 23, - "git_vector_init": 3, - "git_pool_init": 2, - "git_repository_config__weakptr": 1, - "diffcaps": 13, - "GIT_DIFFCAPS_HAS_SYMLINKS": 2, - "GIT_DIFFCAPS_ASSUME_UNCHANGED": 2, - "GIT_DIFFCAPS_TRUST_EXEC_BIT": 2, - "GIT_DIFFCAPS_TRUST_CTIME": 2, - "opts": 24, - "opts.pathspec": 2, - "opts.old_prefix": 4, - "diff_strdup_prefix": 2, - "old_prefix": 2, - "DIFF_OLD_PREFIX_DEFAULT": 1, - "opts.new_prefix": 4, - "new_prefix": 2, - "DIFF_NEW_PREFIX_DEFAULT": 1, - "*swap": 1, - "swap": 9, - "pathspec.count": 2, - "*pattern": 1, - "pathspec.strings": 1, - "GIT_ATTR_FNMATCH_ALLOWSPACE": 1, - "git_attr_fnmatch__parse": 1, - "GIT_ENOTFOUND": 1, - "git_diff_list_free": 3, - "deltas.contents": 1, - "git_vector_free": 3, - "pathspec.contents": 1, - "git_pool_clear": 2, - "oid_for_workdir_item": 2, - "full_path": 3, - "git_buf_joinpath": 1, - "git_repository_workdir": 1, - "S_ISLNK": 2, - "git_odb__hashlink": 1, - "full_path.ptr": 2, - "git__is_sizet": 1, - "giterr_set": 1, - "GITERR_OS": 1, - "fd": 34, - "git_futils_open_ro": 1, - "git_odb__hashfd": 1, - "GIT_OBJ_BLOB": 1, - "p_close": 1, - "EXEC_BIT_MASK": 3, - "maybe_modified": 2, - "git_iterator": 8, - "*old_iter": 2, - "*oitem": 2, - "*new_iter": 2, - "*nitem": 2, - "noid": 4, - "*use_noid": 1, - "omode": 8, - "oitem": 29, - "nmode": 10, - "nitem": 32, - "GIT_UNUSED": 1, - "old_iter": 8, - "S_ISREG": 1, - "GIT_MODE_TYPE": 3, - "GIT_MODE_PERMS_MASK": 1, - "flags_extended": 2, - "GIT_IDXENTRY_INTENT_TO_ADD": 1, - "GIT_IDXENTRY_SKIP_WORKTREE": 1, - "new_iter": 13, - "GIT_ITERATOR_WORKDIR": 2, - "ctime.seconds": 2, - "mtime.seconds": 2, - "GIT_DIFFCAPS_USE_DEV": 1, - "dev": 2, - "ino": 2, - "uid": 2, - "gid": 2, - "S_ISGITLINK": 1, - "git_submodule": 1, - "*sub": 1, - "GIT_DIFF_IGNORE_SUBMODULES": 1, - "git_submodule_lookup": 1, - "sub": 12, - "ignore": 1, - "GIT_SUBMODULE_IGNORE_ALL": 1, - "use_noid": 2, - "diff_from_iterators": 5, - "**diff_ptr": 1, - "ignore_prefix": 6, - "git_diff_list_alloc": 1, - "old_src": 1, - "new_src": 3, - "git_iterator_current": 2, - "git_iterator_advance": 5, - "delta_type": 8, - "git_buf_len": 1, - "git__prefixcmp": 2, - "git_buf_cstr": 1, - "S_ISDIR": 1, - "GIT_DIFF_RECURSE_UNTRACKED_DIRS": 1, - "git_iterator_current_is_ignored": 2, - "git_buf_sets": 1, - "git_iterator_advance_into_directory": 1, - "git_iterator_free": 4, - "*diff_ptr": 2, - "git_diff_tree_to_tree": 1, - "git_tree": 4, - "*old_tree": 3, - "*new_tree": 1, - "**diff": 4, - "diff_prefix_from_pathspec": 4, - "old_tree": 5, - "new_tree": 2, - "git_iterator_for_tree_range": 4, - "git_diff_index_to_tree": 1, - "git_iterator_for_index_range": 2, - "git_diff_workdir_to_index": 1, - "git_iterator_for_workdir_range": 2, - "git_diff_workdir_to_tree": 1, - "git_diff_merge": 1, - "*onto": 1, - "*from": 1, - "onto_pool": 7, - "git_vector": 1, - "onto_new": 6, - "j": 206, - "onto": 7, - "from": 16, - "deltas.length": 4, - "*o": 8, - "GIT_VECTOR_GET": 2, - "*f": 2, - "f": 184, - "o": 80, - "diff_delta__merge_like_cgit": 1, - "git_vector_swap": 1, - "git_pool_swap": 1, - "git_usage_string": 2, - "git_more_info_string": 2, - "N_": 1, - "startup_info": 3, - "git_startup_info": 2, - "use_pager": 8, - "pager_config": 3, - "*cmd": 5, - "want": 3, - "pager_command_config": 2, - "*var": 1, - "*data": 12, - "data": 69, - "prefixcmp": 3, - "var": 7, - "cmd": 46, - "git_config_maybe_bool": 1, - "value": 9, - "xstrdup": 2, - "check_pager_config": 3, - "c.cmd": 1, - "c.want": 2, - "c.value": 3, - "pager_program": 1, - "commit_pager_choice": 4, - "setenv": 1, - "setup_pager": 1, - "handle_options": 2, - "***argv": 2, - "*argc": 1, - "*envchanged": 1, - "**orig_argv": 1, - "*argv": 6, - "new_argv": 7, - "option_count": 1, - "alias_command": 4, - "trace_argv_printf": 3, - "*argcp": 4, - "subdir": 3, - "chdir": 2, - "die_errno": 3, - "errno": 20, - "saved_errno": 1, - "git_version_string": 1, - "GIT_VERSION": 1, - "RUN_SETUP": 81, - "RUN_SETUP_GENTLY": 16, - "USE_PAGER": 3, - "NEED_WORK_TREE": 18, - "cmd_struct": 4, - "option": 9, - "run_builtin": 2, - "help": 4, - "stat": 3, - "st": 2, - "argv": 54, - "setup_git_directory": 1, - "nongit_ok": 2, - "setup_git_directory_gently": 1, - "have_repository": 1, - "trace_repo_setup": 1, - "setup_work_tree": 1, - "fn": 5, - "fstat": 1, - "fileno": 1, - "stdout": 5, - "S_ISFIFO": 1, - "st.st_mode": 2, - "S_ISSOCK": 1, - "fflush": 2, - "ferror": 2, - "fclose": 5, - "handle_internal_command": 3, - "commands": 3, - "cmd_add": 2, - "cmd_annotate": 1, - "cmd_apply": 1, - "cmd_archive": 1, - "cmd_bisect__helper": 1, - "cmd_blame": 2, - "cmd_branch": 1, - "cmd_bundle": 1, - "cmd_cat_file": 1, - "cmd_check_attr": 1, - "cmd_check_ref_format": 1, - "cmd_checkout": 1, - "cmd_checkout_index": 1, - "cmd_cherry": 1, - "cmd_cherry_pick": 1, - "cmd_clean": 1, - "cmd_clone": 1, - "cmd_column": 1, - "cmd_commit": 1, - "cmd_commit_tree": 1, - "cmd_config": 1, - "cmd_count_objects": 1, - "cmd_describe": 1, - "cmd_diff": 1, - "cmd_diff_files": 1, - "cmd_diff_index": 1, - "cmd_diff_tree": 1, - "cmd_fast_export": 1, - "cmd_fetch": 1, - "cmd_fetch_pack": 1, - "cmd_fmt_merge_msg": 1, - "cmd_for_each_ref": 1, - "cmd_format_patch": 1, - "cmd_fsck": 2, - "cmd_gc": 1, - "cmd_get_tar_commit_id": 1, - "cmd_grep": 1, - "cmd_hash_object": 1, - "cmd_help": 1, - "cmd_index_pack": 1, - "cmd_init_db": 2, - "cmd_log": 1, - "cmd_ls_files": 1, - "cmd_ls_remote": 2, - "cmd_ls_tree": 1, - "cmd_mailinfo": 1, - "cmd_mailsplit": 1, - "cmd_merge": 1, - "cmd_merge_base": 1, - "cmd_merge_file": 1, - "cmd_merge_index": 1, - "cmd_merge_ours": 1, - "cmd_merge_recursive": 4, - "cmd_merge_tree": 1, - "cmd_mktag": 1, - "cmd_mktree": 1, - "cmd_mv": 1, - "cmd_name_rev": 1, - "cmd_notes": 1, - "cmd_pack_objects": 1, - "cmd_pack_redundant": 1, - "cmd_pack_refs": 1, - "cmd_patch_id": 1, - "cmd_prune": 1, - "cmd_prune_packed": 1, - "cmd_push": 1, - "cmd_read_tree": 1, - "cmd_receive_pack": 1, - "cmd_reflog": 1, - "cmd_remote": 1, - "cmd_remote_ext": 1, - "cmd_remote_fd": 1, - "cmd_replace": 1, - "cmd_repo_config": 1, - "cmd_rerere": 1, - "cmd_reset": 1, - "cmd_rev_list": 1, - "cmd_rev_parse": 1, - "cmd_revert": 1, - "cmd_rm": 1, - "cmd_send_pack": 1, - "cmd_shortlog": 1, - "cmd_show": 1, - "cmd_show_branch": 1, - "cmd_show_ref": 1, - "cmd_status": 1, - "cmd_stripspace": 1, - "cmd_symbolic_ref": 1, - "cmd_tag": 1, - "cmd_tar_tree": 1, - "cmd_unpack_file": 1, - "cmd_unpack_objects": 1, - "cmd_update_index": 1, - "cmd_update_ref": 1, - "cmd_update_server_info": 1, - "cmd_upload_archive": 1, - "cmd_upload_archive_writer": 1, - "cmd_var": 1, - "cmd_verify_pack": 1, - "cmd_verify_tag": 1, - "cmd_version": 1, - "cmd_whatchanged": 1, - "cmd_write_tree": 1, - "ext": 4, - "STRIP_EXTENSION": 1, - "*argv0": 1, - "argv0": 2, - "ARRAY_SIZE": 1, - "exit": 20, - "execv_dashed_external": 2, - "STRBUF_INIT": 1, - "*tmp": 1, - "strbuf_addf": 1, - "tmp": 6, - "cmd.buf": 1, - "run_command_v_opt": 1, - "RUN_SILENT_EXEC_FAILURE": 1, - "RUN_CLEAN_ON_EXIT": 1, - "ENOENT": 3, - "strbuf_release": 1, - "run_argv": 2, - "done_alias": 4, - "argcp": 2, - "handle_alias": 1, - "main": 3, - "git_extract_argv0_path": 1, - "git_setup_gettext": 1, - "printf": 4, - "list_common_cmds_help": 1, - "setup_path": 1, - "done_help": 3, - "was_alias": 3, - "fprintf": 18, - "stderr": 15, - "help_unknown_cmd": 1, - "strerror": 4, - "PPC_SHA1": 1, - "git_hash_ctx": 7, - "SHA_CTX": 3, - "*git_hash_new_ctx": 1, - "*ctx": 5, - "ctx": 16, - "SHA1_Init": 4, - "git_hash_free_ctx": 1, - "git_hash_init": 1, - "git_hash_update": 1, - "SHA1_Update": 3, - "git_hash_final": 1, - "*out": 3, - "SHA1_Final": 3, - "git_hash_buf": 1, - "git_hash_vec": 1, - "git_buf_vec": 1, - "*vec": 1, - "vec": 2, - ".data": 1, - ".len": 3, - "": 7, - "HELLO_H": 2, - "hello": 1, - "": 5, - "": 2, - "": 3, - "": 3, - "": 4, - "": 2, - "ULLONG_MAX": 10, - "MIN": 3, - "HTTP_PARSER_DEBUG": 4, - "SET_ERRNO": 47, - "e": 4, - "do": 21, - "parser": 334, - "http_errno": 11, - "error_lineno": 3, - "__LINE__": 50, - "CALLBACK_NOTIFY_": 3, - "FOR": 11, - "ER": 4, - "HTTP_PARSER_ERRNO": 10, - "HPE_OK": 10, - "settings": 6, - "on_##FOR": 4, - "HPE_CB_##FOR": 2, - "CALLBACK_NOTIFY": 10, - "CALLBACK_NOTIFY_NOADVANCE": 2, - "CALLBACK_DATA_": 4, - "LEN": 2, - "FOR##_mark": 7, - "CALLBACK_DATA": 10, - "CALLBACK_DATA_NOADVANCE": 6, - "MARK": 7, - "PROXY_CONNECTION": 4, - "CONNECTION": 4, - "CONTENT_LENGTH": 4, - "TRANSFER_ENCODING": 4, - "UPGRADE": 4, - "CHUNKED": 4, - "KEEP_ALIVE": 4, - "CLOSE": 4, - "*method_strings": 1, - "XX": 63, - "num": 24, - "string": 18, - "#string": 1, - "HTTP_METHOD_MAP": 3, - "#undef": 7, - "tokens": 5, - "int8_t": 3, - "unhex": 3, - "HTTP_PARSER_STRICT": 5, - "uint8_t": 6, - "normal_url_char": 3, - "T": 3, - "s_dead": 10, - "s_start_req_or_res": 4, - "s_res_or_resp_H": 3, - "s_start_res": 5, - "s_res_H": 3, - "s_res_HT": 4, - "s_res_HTT": 3, - "s_res_HTTP": 3, - "s_res_first_http_major": 3, - "s_res_http_major": 3, - "s_res_first_http_minor": 3, - "s_res_http_minor": 3, - "s_res_first_status_code": 3, - "s_res_status_code": 3, - "s_res_status": 3, - "s_res_line_almost_done": 4, - "s_start_req": 6, - "s_req_method": 4, - "s_req_spaces_before_url": 5, - "s_req_schema": 6, - "s_req_schema_slash": 6, - "s_req_schema_slash_slash": 6, - "s_req_host_start": 8, - "s_req_host_v6_start": 7, - "s_req_host_v6": 7, - "s_req_host_v6_end": 7, - "s_req_host": 8, - "s_req_port_start": 7, - "s_req_port": 6, - "s_req_path": 8, - "s_req_query_string_start": 8, - "s_req_query_string": 7, - "s_req_fragment_start": 7, - "s_req_fragment": 7, - "s_req_http_start": 3, - "s_req_http_H": 3, - "s_req_http_HT": 3, - "s_req_http_HTT": 3, - "s_req_http_HTTP": 3, - "s_req_first_http_major": 3, - "s_req_http_major": 3, - "s_req_first_http_minor": 3, - "s_req_http_minor": 3, - "s_req_line_almost_done": 4, - "s_header_field_start": 12, - "s_header_field": 4, - "s_header_value_start": 4, - "s_header_value": 5, - "s_header_value_lws": 3, - "s_header_almost_done": 6, - "s_chunk_size_start": 4, - "s_chunk_size": 3, - "s_chunk_parameters": 3, - "s_chunk_size_almost_done": 4, - "s_headers_almost_done": 4, - "s_headers_done": 4, - "s_chunk_data": 3, - "s_chunk_data_almost_done": 3, - "s_chunk_data_done": 3, - "s_body_identity": 3, - "s_body_identity_eof": 4, - "s_message_done": 3, - "PARSING_HEADER": 2, - "header_states": 1, - "h_general": 23, - "0": 11, - "h_C": 3, - "h_CO": 3, - "h_CON": 3, - "h_matching_connection": 3, - "h_matching_proxy_connection": 3, - "h_matching_content_length": 3, - "h_matching_transfer_encoding": 3, - "h_matching_upgrade": 3, - "h_connection": 6, - "h_content_length": 5, - "h_transfer_encoding": 5, - "h_upgrade": 4, - "h_matching_transfer_encoding_chunked": 3, - "h_matching_connection_keep_alive": 3, - "h_matching_connection_close": 3, - "h_transfer_encoding_chunked": 4, - "h_connection_keep_alive": 4, - "h_connection_close": 4, - "Macros": 1, - "character": 11, - "classes": 1, - "depends": 1, - "on": 4, - "strict": 2, - "define": 14, - "CR": 18, - "r": 58, - "LF": 21, - "LOWER": 7, - "0x20": 1, - "IS_ALPHA": 5, - "z": 47, - "IS_NUM": 14, - "9": 1, - "IS_ALPHANUM": 3, - "IS_HEX": 2, - "TOKEN": 4, - "IS_URL_CHAR": 6, - "IS_HOST_CHAR": 4, - "0x80": 1, - "endif": 6, - "start_state": 1, - "HTTP_REQUEST": 7, - "cond": 1, - "HPE_STRICT": 1, - "HTTP_STRERROR_GEN": 3, - "#n": 1, - "*description": 1, - "http_strerror_tab": 7, - "HTTP_ERRNO_MAP": 3, - "http_message_needs_eof": 4, - "http_parser": 13, - "*parser": 9, - "parse_url_char": 5, - "ch": 145, - "http_parser_execute": 2, - "http_parser_settings": 5, - "*settings": 2, - "unhex_val": 7, - "*header_field_mark": 1, - "*header_value_mark": 1, - "*url_mark": 1, - "*body_mark": 1, - "message_complete": 7, - "HPE_INVALID_EOF_STATE": 1, - "header_field_mark": 2, - "header_value_mark": 2, - "url_mark": 2, - "nread": 7, - "HTTP_MAX_HEADER_SIZE": 2, - "HPE_HEADER_OVERFLOW": 1, - "reexecute_byte": 7, - "HPE_CLOSED_CONNECTION": 1, - "content_length": 27, - "message_begin": 3, - "HTTP_RESPONSE": 3, - "HPE_INVALID_CONSTANT": 3, - "method": 39, - "HTTP_HEAD": 2, - "index": 58, - "STRICT_CHECK": 15, - "HPE_INVALID_VERSION": 12, - "http_major": 11, - "http_minor": 11, - "HPE_INVALID_STATUS": 3, - "status_code": 8, - "HPE_INVALID_METHOD": 4, - "http_method": 4, - "HTTP_CONNECT": 4, - "HTTP_DELETE": 1, - "HTTP_GET": 1, - "HTTP_LOCK": 1, - "HTTP_MKCOL": 2, - "HTTP_NOTIFY": 1, - "HTTP_OPTIONS": 1, - "HTTP_POST": 2, - "HTTP_REPORT": 1, - "HTTP_SUBSCRIBE": 2, - "HTTP_TRACE": 1, - "HTTP_UNLOCK": 2, - "*matcher": 1, - "matcher": 3, - "method_strings": 2, - "HTTP_CHECKOUT": 1, - "HTTP_COPY": 1, - "HTTP_MOVE": 1, - "HTTP_MERGE": 1, - "HTTP_MSEARCH": 1, - "HTTP_MKACTIVITY": 1, - "HTTP_SEARCH": 1, - "HTTP_PROPFIND": 2, - "HTTP_PUT": 2, - "HTTP_PATCH": 1, - "HTTP_PURGE": 1, - "HTTP_UNSUBSCRIBE": 1, - "HTTP_PROPPATCH": 1, - "url": 4, - "HPE_INVALID_URL": 4, - "HPE_LF_EXPECTED": 1, - "HPE_INVALID_HEADER_TOKEN": 2, - "header_field": 5, - "header_state": 42, - "header_value": 6, - "F_UPGRADE": 3, - "HPE_INVALID_CONTENT_LENGTH": 4, - "uint64_t": 8, - "F_CONNECTION_KEEP_ALIVE": 3, - "F_CONNECTION_CLOSE": 3, - "F_CHUNKED": 11, - "F_TRAILING": 3, - "NEW_MESSAGE": 6, - "upgrade": 3, - "on_headers_complete": 3, - "F_SKIPBODY": 4, - "HPE_CB_headers_complete": 1, - "to_read": 6, - "body": 6, - "body_mark": 2, - "HPE_INVALID_CHUNK_SIZE": 2, - "HPE_INVALID_INTERNAL_STATE": 1, - "1": 2, - "HPE_UNKNOWN": 1, - "Does": 1, - "the": 91, - "need": 5, - "to": 37, - "see": 2, - "an": 2, - "EOF": 26, - "find": 1, - "end": 48, - "of": 44, - "message": 3, - "http_should_keep_alive": 2, - "http_method_str": 1, - "m": 8, - "http_parser_init": 2, - "http_parser_type": 3, - "http_errno_name": 1, - "/sizeof": 4, - ".name": 1, - "http_errno_description": 1, - ".description": 1, - "http_parser_parse_url": 2, - "buflen": 3, - "is_connect": 4, - "http_parser_url": 3, - "*u": 2, - "http_parser_url_fields": 2, - "uf": 14, - "old_uf": 4, - "u": 18, - "port": 7, - "field_set": 5, - "UF_MAX": 3, - "UF_SCHEMA": 2, - "UF_HOST": 3, - "UF_PORT": 5, - "UF_PATH": 2, - "UF_QUERY": 2, - "UF_FRAGMENT": 2, - "field_data": 5, - ".off": 2, - "xffff": 1, - "uint16_t": 12, - "http_parser_pause": 2, - "paused": 3, - "HPE_PAUSED": 2, - "http_parser_h": 2, - "__cplusplus": 18, - "HTTP_PARSER_VERSION_MAJOR": 1, - "HTTP_PARSER_VERSION_MINOR": 1, - "": 2, - "_WIN32": 3, - "__MINGW32__": 1, - "_MSC_VER": 5, - "__int8": 2, - "__int16": 2, - "int16_t": 1, - "__int32": 2, - "int32_t": 112, - "__int64": 3, - "int64_t": 2, - "ssize_t": 1, - "": 1, - "*1024": 4, - "DELETE": 2, - "GET": 2, - "HEAD": 2, - "POST": 2, - "PUT": 2, - "CONNECT": 2, - "OPTIONS": 2, - "TRACE": 2, - "COPY": 2, - "LOCK": 2, - "MKCOL": 2, - "MOVE": 2, - "PROPFIND": 2, - "PROPPATCH": 2, - "SEARCH": 3, - "UNLOCK": 2, - "REPORT": 2, - "MKACTIVITY": 2, - "CHECKOUT": 2, - "MERGE": 2, - "MSEARCH": 1, - "M": 1, - "NOTIFY": 2, - "SUBSCRIBE": 2, - "UNSUBSCRIBE": 2, - "PATCH": 2, - "PURGE": 2, - "HTTP_##name": 1, - "HTTP_BOTH": 1, - "OK": 1, - "CB_message_begin": 1, - "CB_url": 1, - "CB_header_field": 1, - "CB_header_value": 1, - "CB_headers_complete": 1, - "CB_body": 1, - "CB_message_complete": 1, - "INVALID_EOF_STATE": 1, - "HEADER_OVERFLOW": 1, - "CLOSED_CONNECTION": 1, - "INVALID_VERSION": 1, - "INVALID_STATUS": 1, - "INVALID_METHOD": 1, - "INVALID_URL": 1, - "INVALID_HOST": 1, - "INVALID_PORT": 1, - "INVALID_PATH": 1, - "INVALID_QUERY_STRING": 1, - "INVALID_FRAGMENT": 1, - "LF_EXPECTED": 1, - "INVALID_HEADER_TOKEN": 1, - "INVALID_CONTENT_LENGTH": 1, - "INVALID_CHUNK_SIZE": 1, - "INVALID_CONSTANT": 1, - "INVALID_INTERNAL_STATE": 1, - "STRICT": 1, - "PAUSED": 1, - "UNKNOWN": 1, - "HTTP_ERRNO_GEN": 3, - "HPE_##n": 1, - "HTTP_PARSER_ERRNO_LINE": 2, - "short": 6, - "http_cb": 3, - "on_message_begin": 1, - "http_data_cb": 4, - "on_url": 1, - "on_header_field": 1, - "on_header_value": 1, - "on_body": 1, - "on_message_complete": 1, - "off": 8, - "*http_method_str": 1, - "*http_errno_name": 1, - "*http_errno_description": 1, - "strncasecmp": 2, - "_strnicmp": 1, - "REF_TABLE_SIZE": 1, - "BUFFER_BLOCK": 5, - "BUFFER_SPAN": 9, - "MKD_LI_END": 1, - "gperf_case_strncmp": 1, - "s1": 6, - "s2": 6, - "GPERF_DOWNCASE": 1, - "GPERF_CASE_STRNCMP": 1, - "link_ref": 2, - "*link": 1, - "*title": 1, - "sd_markdown": 6, - "tag": 1, - "tag_len": 3, - "w": 6, - "is_empty": 4, - "htmlblock_end": 3, - "*curtag": 2, - "*rndr": 4, - "start_of_line": 2, - "tag_size": 3, - "curtag": 8, - "end_tag": 4, - "block_lines": 3, - "htmlblock_end_tag": 1, - "rndr": 25, - "parse_htmlblock": 1, - "*ob": 3, - "do_render": 4, - "tag_end": 7, - "work": 4, - "find_block_tag": 1, - "work.size": 5, - "cb.blockhtml": 6, - "ob": 14, - "opaque": 8, - "parse_table_row": 1, - "columns": 3, - "*col_data": 1, - "header_flag": 3, - "col": 9, - "*row_work": 1, - "cb.table_cell": 3, - "cb.table_row": 2, - "row_work": 4, - "rndr_newbuf": 2, - "cell_start": 5, - "cell_end": 6, - "*cell_work": 1, - "cell_work": 3, - "_isspace": 3, - "parse_inline": 1, - "col_data": 2, - "rndr_popbuf": 2, - "empty_cell": 2, - "parse_table_header": 1, - "*columns": 2, - "**column_data": 1, - "pipes": 23, - "header_end": 7, - "under_end": 1, - "*column_data": 1, - "calloc": 1, - "beg": 10, - "doc_size": 6, - "document": 9, - "UTF8_BOM": 1, - "is_ref": 1, - "md": 18, - "refs": 2, - "expand_tabs": 1, - "text": 22, - "bufputc": 2, - "bufgrow": 1, - "MARKDOWN_GROW": 1, - "cb.doc_header": 2, - "parse_block": 1, - "cb.doc_footer": 2, - "bufrelease": 3, - "free_link_refs": 1, - "work_bufs": 8, - ".size": 2, - "sd_markdown_free": 1, - "*md": 1, - ".asize": 2, - ".item": 2, - "stack_free": 2, - "sd_version": 1, - "*ver_major": 2, - "*ver_minor": 2, - "*ver_revision": 2, - "SUNDOWN_VER_MAJOR": 1, - "SUNDOWN_VER_MINOR": 1, - "SUNDOWN_VER_REVISION": 1, - "": 4, - "": 2, - "": 1, - "": 1, - "": 2, - "__APPLE__": 2, - "TARGET_OS_IPHONE": 1, - "**environ": 1, - "uv__chld": 2, - "EV_P_": 1, - "ev_child*": 1, - "watcher": 4, - "revents": 2, - "rstatus": 1, - "exit_status": 3, - "term_signal": 3, - "uv_process_t": 1, - "*process": 1, - "process": 19, - "child_watcher": 5, - "EV_CHILD": 1, - "ev_child_stop": 2, - "EV_A_": 1, - "WIFEXITED": 1, - "WEXITSTATUS": 2, - "WIFSIGNALED": 2, - "WTERMSIG": 2, - "exit_cb": 3, - "uv__make_socketpair": 2, - "fds": 20, - "SOCK_NONBLOCK": 2, - "fl": 8, - "SOCK_CLOEXEC": 1, - "UV__F_NONBLOCK": 5, - "socketpair": 2, - "AF_UNIX": 2, - "SOCK_STREAM": 2, - "uv__cloexec": 4, - "uv__nonblock": 5, - "uv__make_pipe": 2, - "__linux__": 3, - "UV__O_CLOEXEC": 1, - "UV__O_NONBLOCK": 1, - "uv__pipe2": 1, - "ENOSYS": 1, - "pipe": 1, - "uv__process_init_stdio": 2, - "uv_stdio_container_t*": 4, - "container": 17, - "writable": 8, - "UV_IGNORE": 2, - "UV_CREATE_PIPE": 4, - "UV_INHERIT_FD": 3, - "UV_INHERIT_STREAM": 2, - "data.stream": 7, - "UV_NAMED_PIPE": 2, - "data.fd": 1, - "uv__process_stdio_flags": 2, - "uv_pipe_t*": 1, - "ipc": 1, - "UV_STREAM_READABLE": 2, - "UV_STREAM_WRITABLE": 2, - "uv__process_open_stream": 2, - "child_fd": 3, - "close": 13, - "uv__stream_open": 1, - "uv_stream_t*": 2, - "uv__process_close_stream": 2, - "uv__stream_close": 1, - "uv__process_child_init": 2, - "uv_process_options_t": 2, - "options": 62, - "stdio_count": 7, - "int*": 22, - "options.flags": 4, - "UV_PROCESS_DETACHED": 2, - "setsid": 2, - "close_fd": 2, - "use_fd": 7, - "open": 4, - "O_RDONLY": 1, - "O_RDWR": 2, - "perror": 5, - "_exit": 6, - "dup2": 4, - "options.cwd": 2, - "UV_PROCESS_SETGID": 2, - "setgid": 1, - "options.gid": 1, - "UV_PROCESS_SETUID": 2, - "setuid": 1, - "options.uid": 1, - "environ": 4, - "options.env": 1, - "execvp": 1, - "options.file": 2, - "options.args": 1, - "SPAWN_WAIT_EXEC": 5, - "uv_spawn": 1, - "uv_loop_t*": 1, - "loop": 9, - "uv_process_t*": 3, - "char**": 7, - "save_our_env": 3, - "options.stdio_count": 4, - "malloc": 3, - "signal_pipe": 7, - "pollfd": 1, - "pfd": 2, - "pid_t": 2, - "pid": 13, - "UV_PROCESS_WINDOWS_VERBATIM_ARGUMENTS": 1, - "uv__handle_init": 1, - "uv_handle_t*": 1, - "UV_PROCESS": 1, - "counters.process_init": 1, - "uv__handle_start": 1, - "options.exit_cb": 1, - "options.stdio": 3, - "fork": 2, - "pfd.fd": 1, - "pfd.events": 1, - "POLLIN": 1, - "POLLHUP": 1, - "pfd.revents": 1, - "poll": 1, - "EINTR": 1, - "ev_child_init": 1, - "ev_child_start": 1, - "ev": 2, - "child_watcher.data": 1, - "uv__set_sys_error": 2, - "uv_process_kill": 1, - "signum": 4, - "kill": 4, - "uv_err_t": 1, - "uv_kill": 1, - "uv__new_sys_error": 1, - "uv_ok_": 1, - "uv__process_close": 1, - "handle": 10, - "uv__handle_stop": 1, - "VALUE": 13, - "rb_cRDiscount": 4, - "rb_rdiscount_to_html": 2, - "self": 9, - "*res": 2, - "szres": 8, - "encoding": 14, - "rb_funcall": 14, - "rb_intern": 15, - "rb_str_buf_new": 2, - "Check_Type": 2, - "T_STRING": 2, - "rb_rdiscount__get_flags": 3, - "MMIOT": 2, - "*doc": 2, - "mkd_string": 2, - "RSTRING_PTR": 2, - "RSTRING_LEN": 2, - "mkd_compile": 2, - "doc": 6, - "mkd_document": 1, - "res": 4, - "rb_str_cat": 4, - "mkd_cleanup": 2, - "rb_respond_to": 1, - "rb_rdiscount_toc_content": 2, - "mkd_toc": 1, - "ruby_obj": 11, - "MKD_TABSTOP": 1, - "MKD_NOHEADER": 1, - "Qtrue": 10, - "MKD_NOPANTS": 1, - "MKD_NOHTML": 1, - "MKD_TOC": 1, - "MKD_NOIMAGE": 1, - "MKD_NOLINKS": 1, - "MKD_NOTABLES": 1, - "MKD_STRICT": 1, - "MKD_AUTOLINK": 1, - "MKD_SAFELINK": 1, - "MKD_NO_EXT": 1, - "Init_rdiscount": 1, - "rb_define_class": 1, - "rb_cObject": 1, - "rb_define_method": 2, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 2, - "": 1, - "": 1, - "": 3, - "": 1, - "sharedObjectsStruct": 1, - "shared": 1, - "double": 126, - "R_Zero": 2, - "R_PosInf": 2, - "R_NegInf": 2, - "R_Nan": 2, - "redisServer": 1, - "server": 1, - "redisCommand": 6, - "*commandTable": 1, - "redisCommandTable": 5, - "getCommand": 1, - "setCommand": 1, - "noPreloadGetKeys": 6, - "setnxCommand": 1, - "setexCommand": 1, - "psetexCommand": 1, - "appendCommand": 1, - "strlenCommand": 1, - "delCommand": 1, - "existsCommand": 1, - "setbitCommand": 1, - "getbitCommand": 1, - "setrangeCommand": 1, - "getrangeCommand": 2, - "incrCommand": 1, - "decrCommand": 1, - "mgetCommand": 1, - "rpushCommand": 1, - "lpushCommand": 1, - "rpushxCommand": 1, - "lpushxCommand": 1, - "linsertCommand": 1, - "rpopCommand": 1, - "lpopCommand": 1, - "brpopCommand": 1, - "brpoplpushCommand": 1, - "blpopCommand": 1, - "llenCommand": 1, - "lindexCommand": 1, - "lsetCommand": 1, - "lrangeCommand": 1, - "ltrimCommand": 1, - "lremCommand": 1, - "rpoplpushCommand": 1, - "saddCommand": 1, - "sremCommand": 1, - "smoveCommand": 1, - "sismemberCommand": 1, - "scardCommand": 1, - "spopCommand": 1, - "srandmemberCommand": 1, - "sinterCommand": 2, - "sinterstoreCommand": 1, - "sunionCommand": 1, - "sunionstoreCommand": 1, - "sdiffCommand": 1, - "sdiffstoreCommand": 1, - "zaddCommand": 1, - "zincrbyCommand": 1, - "zremCommand": 1, - "zremrangebyscoreCommand": 1, - "zremrangebyrankCommand": 1, - "zunionstoreCommand": 1, - "zunionInterGetKeys": 4, - "zinterstoreCommand": 1, - "zrangeCommand": 1, - "zrangebyscoreCommand": 1, - "zrevrangebyscoreCommand": 1, - "zcountCommand": 1, - "zrevrangeCommand": 1, - "zcardCommand": 1, - "zscoreCommand": 1, - "zrankCommand": 1, - "zrevrankCommand": 1, - "hsetCommand": 1, - "hsetnxCommand": 1, - "hgetCommand": 1, - "hmsetCommand": 1, - "hmgetCommand": 1, - "hincrbyCommand": 1, - "hincrbyfloatCommand": 1, - "hdelCommand": 1, - "hlenCommand": 1, - "hkeysCommand": 1, - "hvalsCommand": 1, - "hgetallCommand": 1, - "hexistsCommand": 1, - "incrbyCommand": 1, - "decrbyCommand": 1, - "incrbyfloatCommand": 1, - "getsetCommand": 1, - "msetCommand": 1, - "msetnxCommand": 1, - "randomkeyCommand": 1, - "selectCommand": 1, - "moveCommand": 1, - "renameCommand": 1, - "renameGetKeys": 2, - "renamenxCommand": 1, - "expireCommand": 1, - "expireatCommand": 1, - "pexpireCommand": 1, - "pexpireatCommand": 1, - "keysCommand": 1, - "dbsizeCommand": 1, - "authCommand": 3, - "pingCommand": 2, - "echoCommand": 2, - "saveCommand": 1, - "bgsaveCommand": 1, - "bgrewriteaofCommand": 1, - "shutdownCommand": 2, - "lastsaveCommand": 1, - "typeCommand": 1, - "multiCommand": 2, - "execCommand": 2, - "discardCommand": 2, - "syncCommand": 1, - "flushdbCommand": 1, - "flushallCommand": 1, - "sortCommand": 1, - "infoCommand": 4, - "monitorCommand": 2, - "ttlCommand": 1, - "pttlCommand": 1, - "persistCommand": 1, - "slaveofCommand": 2, - "debugCommand": 1, - "configCommand": 1, - "subscribeCommand": 2, - "unsubscribeCommand": 2, - "psubscribeCommand": 2, - "punsubscribeCommand": 2, - "publishCommand": 1, - "watchCommand": 2, - "unwatchCommand": 1, - "clusterCommand": 1, - "restoreCommand": 1, - "migrateCommand": 1, - "askingCommand": 1, - "dumpCommand": 1, - "objectCommand": 1, - "clientCommand": 1, - "evalCommand": 1, - "evalShaCommand": 1, - "slowlogCommand": 1, - "scriptCommand": 2, - "timeCommand": 2, - "bitopCommand": 1, - "bitcountCommand": 1, - "redisLogRaw": 3, - "level": 12, - "syslogLevelMap": 2, - "LOG_DEBUG": 1, - "LOG_INFO": 1, - "LOG_NOTICE": 1, - "LOG_WARNING": 1, - "FILE": 3, - "*fp": 3, - "rawmode": 2, - "REDIS_LOG_RAW": 2, - "xff": 3, - "server.verbosity": 4, - "fp": 13, - "server.logfile": 8, - "fopen": 3, - "msg": 10, - "timeval": 4, - "tv": 8, - "gettimeofday": 4, - "strftime": 1, - "localtime": 1, - "tv.tv_sec": 4, - "snprintf": 2, - "tv.tv_usec/1000": 1, - "getpid": 7, - "server.syslog_enabled": 3, - "syslog": 1, - "redisLog": 33, - "...": 127, - "va_list": 3, - "ap": 4, - "REDIS_MAX_LOGMSG_LEN": 1, - "va_start": 3, - "vsnprintf": 1, - "va_end": 3, - "redisLogFromHandler": 2, - "server.daemonize": 5, - "O_APPEND": 2, - "O_CREAT": 2, - "O_WRONLY": 2, - "STDOUT_FILENO": 2, - "ll2string": 3, - "write": 7, - "time": 10, - "oom": 3, - "REDIS_WARNING": 19, - "sleep": 1, - "abort": 1, - "ustime": 7, - "ust": 7, - "*1000000": 1, - "tv.tv_usec": 3, - "mstime": 5, - "/1000": 1, - "exitFromChild": 1, - "retcode": 3, - "COVERAGE_TEST": 1, - "dictVanillaFree": 1, - "*privdata": 8, - "*val": 4, - "DICT_NOTUSED": 6, - "privdata": 8, - "zfree": 2, - "dictListDestructor": 2, - "listRelease": 1, - "list*": 1, - "dictSdsKeyCompare": 6, - "*key1": 4, - "*key2": 4, - "l1": 4, - "l2": 3, - "sdslen": 14, - "sds": 13, - "key1": 5, - "key2": 5, - "dictSdsKeyCaseCompare": 2, - "strcasecmp": 13, - "dictRedisObjectDestructor": 7, - "decrRefCount": 6, - "dictSdsDestructor": 4, - "sdsfree": 2, - "dictObjKeyCompare": 2, - "robj": 7, - "*o1": 2, - "*o2": 2, - "o1": 7, - "ptr": 18, - "o2": 7, - "dictObjHash": 2, - "key": 9, - "dictGenHashFunction": 5, - "dictSdsHash": 4, - "char*": 166, - "dictSdsCaseHash": 2, - "dictGenCaseHashFunction": 1, - "dictEncObjKeyCompare": 4, - "robj*": 3, - "REDIS_ENCODING_INT": 4, - "getDecodedObject": 3, - "dictEncObjHash": 4, - "REDIS_ENCODING_RAW": 1, - "dictType": 8, - "setDictType": 1, - "zsetDictType": 1, - "dbDictType": 2, - "keyptrDictType": 2, - "commandTableDictType": 2, - "hashDictType": 1, - "keylistDictType": 4, - "clusterNodesDictType": 1, - "htNeedsResize": 3, - "dict": 11, - "*dict": 5, - "used": 10, - "dictSlots": 3, - "dictSize": 10, - "DICT_HT_INITIAL_SIZE": 2, - "used*100/size": 1, - "REDIS_HT_MINFILL": 1, - "tryResizeHashTables": 2, - "server.dbnum": 8, - "server.db": 23, - ".dict": 9, - "dictResize": 2, - ".expires": 8, - "incrementallyRehash": 2, - "dictIsRehashing": 2, - "dictRehashMilliseconds": 2, - "updateDictResizePolicy": 2, - "server.rdb_child_pid": 12, - "server.aof_child_pid": 10, - "dictEnableResize": 1, - "dictDisableResize": 1, - "activeExpireCycle": 2, - "iteration": 6, - "start": 10, - "timelimit": 5, - "*REDIS_EXPIRELOOKUPS_TIME_PERC/REDIS_HZ/100": 1, - "expired": 4, - "redisDb": 3, - "expires": 3, - "slots": 2, - "now": 5, - "num*100/slots": 1, - "REDIS_EXPIRELOOKUPS_PER_CRON": 2, - "dictEntry": 2, - "*de": 2, - "de": 12, - "dictGetRandomKey": 4, - "dictGetSignedIntegerVal": 1, - "dictGetKey": 4, - "*keyobj": 2, - "createStringObject": 11, - "propagateExpire": 2, - "keyobj": 6, - "dbDelete": 2, - "server.stat_expiredkeys": 3, - "xf": 1, - "REDIS_EXPIRELOOKUPS_PER_CRON/4": 1, - "updateLRUClock": 3, - "server.lruclock": 2, - "server.unixtime/REDIS_LRU_CLOCK_RESOLUTION": 1, - "REDIS_LRU_CLOCK_MAX": 1, - "trackOperationsPerSecond": 2, - "server.ops_sec_last_sample_time": 3, - "ops": 1, - "server.stat_numcommands": 4, - "server.ops_sec_last_sample_ops": 3, - "ops_sec": 3, - "ops*1000/t": 1, - "server.ops_sec_samples": 4, - "server.ops_sec_idx": 4, - "%": 2, - "REDIS_OPS_SEC_SAMPLES": 3, - "getOperationsPerSecond": 2, - "sum": 3, - "clientsCronHandleTimeout": 2, - "redisClient": 12, - "time_t": 4, - "server.unixtime": 10, - "server.maxidletime": 3, - "REDIS_SLAVE": 3, - "REDIS_MASTER": 2, - "REDIS_BLOCKED": 2, - "pubsub_channels": 2, - "listLength": 14, - "pubsub_patterns": 2, - "lastinteraction": 3, - "REDIS_VERBOSE": 3, - "freeClient": 1, - "bpop.timeout": 2, - "addReply": 13, - "shared.nullmultibulk": 2, - "unblockClientWaitingData": 1, - "clientsCronResizeQueryBuffer": 2, - "querybuf_size": 3, - "sdsAllocSize": 1, - "querybuf": 6, - "idletime": 2, - "REDIS_MBULK_BIG_ARG": 1, - "querybuf_size/": 1, - "querybuf_peak": 2, - "sdsavail": 1, - "sdsRemoveFreeSpace": 1, - "clientsCron": 2, - "numclients": 3, - "server.clients": 7, - "iterations": 4, - "numclients/": 1, - "REDIS_HZ*10": 1, - "listNode": 4, - "*head": 1, - "listRotate": 1, - "head": 3, - "listFirst": 2, - "listNodeValue": 3, - "run_with_period": 6, - "_ms_": 2, - "loops": 2, - "/REDIS_HZ": 2, - "serverCron": 2, - "aeEventLoop": 2, - "*eventLoop": 2, - "*clientData": 1, - "server.cronloops": 3, - "REDIS_NOTUSED": 5, - "eventLoop": 2, - "clientData": 1, - "server.watchdog_period": 3, - "watchdogScheduleSignal": 1, - "zmalloc_used_memory": 8, - "server.stat_peak_memory": 5, - "server.shutdown_asap": 3, - "prepareForShutdown": 2, - "REDIS_OK": 23, - "vkeys": 8, - "server.activerehashing": 2, - "server.slaves": 9, - "server.aof_rewrite_scheduled": 4, - "rewriteAppendOnlyFileBackground": 2, - "statloc": 5, - "wait3": 1, - "WNOHANG": 1, - "exitcode": 3, - "bysignal": 4, - "backgroundSaveDoneHandler": 1, - "backgroundRewriteDoneHandler": 1, - "server.saveparamslen": 3, - "saveparam": 1, - "*sp": 1, - "server.saveparams": 2, - "server.dirty": 3, - "sp": 4, - "changes": 2, - "server.lastsave": 3, - "seconds": 2, - "REDIS_NOTICE": 13, - "rdbSaveBackground": 1, - "server.rdb_filename": 4, - "server.aof_rewrite_perc": 3, - "server.aof_current_size": 2, - "server.aof_rewrite_min_size": 2, - "base": 1, - "server.aof_rewrite_base_size": 4, - "growth": 3, - "server.aof_current_size*100/base": 1, - "server.aof_flush_postponed_start": 2, - "flushAppendOnlyFile": 2, - "server.masterhost": 7, - "freeClientsInAsyncFreeQueue": 1, - "replicationCron": 1, - "server.cluster_enabled": 6, - "clusterCron": 1, - "beforeSleep": 2, - "*ln": 3, - "server.unblocked_clients": 4, - "ln": 8, - "redisAssert": 1, - "listDelNode": 1, - "REDIS_UNBLOCKED": 1, - "server.current_client": 3, - "processInputBuffer": 1, - "createSharedObjects": 2, - "shared.crlf": 2, - "createObject": 31, - "REDIS_STRING": 31, - "sdsnew": 27, - "shared.ok": 3, - "shared.err": 1, - "shared.emptybulk": 1, - "shared.czero": 1, - "shared.cone": 1, - "shared.cnegone": 1, - "shared.nullbulk": 1, - "shared.emptymultibulk": 1, - "shared.pong": 2, - "shared.queued": 2, - "shared.wrongtypeerr": 1, - "shared.nokeyerr": 1, - "shared.syntaxerr": 2, - "shared.sameobjecterr": 1, - "shared.outofrangeerr": 1, - "shared.noscripterr": 1, - "shared.loadingerr": 2, - "shared.slowscripterr": 2, - "shared.masterdownerr": 2, - "shared.bgsaveerr": 2, - "shared.roslaveerr": 2, - "shared.oomerr": 2, - "shared.space": 1, - "shared.colon": 1, - "shared.plus": 1, - "REDIS_SHARED_SELECT_CMDS": 1, - "shared.select": 1, - "sdscatprintf": 24, - "sdsempty": 8, - "shared.messagebulk": 1, - "shared.pmessagebulk": 1, - "shared.subscribebulk": 1, - "shared.unsubscribebulk": 1, - "shared.psubscribebulk": 1, - "shared.punsubscribebulk": 1, - "shared.del": 1, - "shared.rpop": 1, - "shared.lpop": 1, - "REDIS_SHARED_INTEGERS": 1, - "shared.integers": 2, - "void*": 135, - "REDIS_SHARED_BULKHDR_LEN": 1, - "shared.mbulkhdr": 1, - "shared.bulkhdr": 1, - "initServerConfig": 2, - "getRandomHexChars": 1, - "server.runid": 3, - "REDIS_RUN_ID_SIZE": 2, - "server.arch_bits": 3, - "server.port": 7, - "REDIS_SERVERPORT": 1, - "server.bindaddr": 2, - "server.unixsocket": 7, - "server.unixsocketperm": 2, - "server.ipfd": 9, - "server.sofd": 9, - "REDIS_DEFAULT_DBNUM": 1, - "REDIS_MAXIDLETIME": 1, - "server.client_max_querybuf_len": 1, - "REDIS_MAX_QUERYBUF_LEN": 1, - "server.loading": 4, - "server.syslog_ident": 2, - "zstrdup": 5, - "server.syslog_facility": 2, - "LOG_LOCAL0": 1, - "server.aof_state": 7, - "REDIS_AOF_OFF": 5, - "server.aof_fsync": 1, - "AOF_FSYNC_EVERYSEC": 1, - "server.aof_no_fsync_on_rewrite": 1, - "REDIS_AOF_REWRITE_PERC": 1, - "REDIS_AOF_REWRITE_MIN_SIZE": 1, - "server.aof_last_fsync": 1, - "server.aof_rewrite_time_last": 2, - "server.aof_rewrite_time_start": 2, - "server.aof_delayed_fsync": 2, - "server.aof_fd": 4, - "server.aof_selected_db": 1, - "server.pidfile": 3, - "server.aof_filename": 3, - "server.requirepass": 4, - "server.rdb_compression": 1, - "server.rdb_checksum": 1, - "server.maxclients": 6, - "REDIS_MAX_CLIENTS": 1, - "server.bpop_blocked_clients": 2, - "server.maxmemory": 6, - "server.maxmemory_policy": 11, - "REDIS_MAXMEMORY_VOLATILE_LRU": 3, - "server.maxmemory_samples": 3, - "server.hash_max_ziplist_entries": 1, - "REDIS_HASH_MAX_ZIPLIST_ENTRIES": 1, - "server.hash_max_ziplist_value": 1, - "REDIS_HASH_MAX_ZIPLIST_VALUE": 1, - "server.list_max_ziplist_entries": 1, - "REDIS_LIST_MAX_ZIPLIST_ENTRIES": 1, - "server.list_max_ziplist_value": 1, - "REDIS_LIST_MAX_ZIPLIST_VALUE": 1, - "server.set_max_intset_entries": 1, - "REDIS_SET_MAX_INTSET_ENTRIES": 1, - "server.zset_max_ziplist_entries": 1, - "REDIS_ZSET_MAX_ZIPLIST_ENTRIES": 1, - "server.zset_max_ziplist_value": 1, - "REDIS_ZSET_MAX_ZIPLIST_VALUE": 1, - "server.repl_ping_slave_period": 1, - "REDIS_REPL_PING_SLAVE_PERIOD": 1, - "server.repl_timeout": 1, - "REDIS_REPL_TIMEOUT": 1, - "server.cluster.configfile": 1, - "server.lua_caller": 1, - "server.lua_time_limit": 1, - "REDIS_LUA_TIME_LIMIT": 1, - "server.lua_client": 1, - "server.lua_timedout": 2, - "resetServerSaveParams": 2, - "appendServerSaveParams": 3, - "*60": 1, - "server.masterauth": 1, - "server.masterport": 2, - "server.master": 3, - "server.repl_state": 6, - "REDIS_REPL_NONE": 1, - "server.repl_syncio_timeout": 1, - "REDIS_REPL_SYNCIO_TIMEOUT": 1, - "server.repl_serve_stale_data": 2, - "server.repl_slave_ro": 2, - "server.repl_down_since": 2, - "server.client_obuf_limits": 9, - "REDIS_CLIENT_LIMIT_CLASS_NORMAL": 3, - ".hard_limit_bytes": 3, - ".soft_limit_bytes": 3, - ".soft_limit_seconds": 3, - "REDIS_CLIENT_LIMIT_CLASS_SLAVE": 3, - "*1024*256": 1, - "*1024*64": 1, - "REDIS_CLIENT_LIMIT_CLASS_PUBSUB": 3, - "*1024*32": 1, - "*1024*8": 1, - "/R_Zero": 2, - "R_Zero/R_Zero": 1, - "server.commands": 1, - "dictCreate": 6, - "populateCommandTable": 2, - "server.delCommand": 1, - "lookupCommandByCString": 3, - "server.multiCommand": 1, - "server.lpushCommand": 1, - "server.slowlog_log_slower_than": 1, - "REDIS_SLOWLOG_LOG_SLOWER_THAN": 1, - "server.slowlog_max_len": 1, - "REDIS_SLOWLOG_MAX_LEN": 1, - "server.assert_failed": 1, - "server.assert_file": 1, - "server.assert_line": 1, - "server.bug_report_start": 1, - "adjustOpenFilesLimit": 2, - "rlim_t": 3, - "maxfiles": 6, - "rlimit": 1, - "limit": 3, - "getrlimit": 1, - "RLIMIT_NOFILE": 2, - "oldlimit": 5, - "limit.rlim_cur": 2, - "limit.rlim_max": 1, - "setrlimit": 1, - "initServer": 2, - "signal": 2, - "SIGHUP": 1, - "SIG_IGN": 2, - "SIGPIPE": 1, - "setupSignalHandlers": 2, - "openlog": 1, - "LOG_PID": 1, - "LOG_NDELAY": 1, - "LOG_NOWAIT": 1, - "listCreate": 6, - "server.clients_to_close": 1, - "server.monitors": 2, - "server.el": 7, - "aeCreateEventLoop": 1, - "zmalloc": 2, - "*server.dbnum": 1, - "anetTcpServer": 1, - "server.neterr": 4, - "ANET_ERR": 2, - "unlink": 3, - "anetUnixServer": 1, - ".blocking_keys": 1, - ".watched_keys": 1, - ".id": 1, - "server.pubsub_channels": 2, - "server.pubsub_patterns": 4, - "listSetFreeMethod": 1, - "freePubsubPattern": 1, - "listSetMatchMethod": 1, - "listMatchPubsubPattern": 1, - "aofRewriteBufferReset": 1, - "server.aof_buf": 3, - "server.rdb_save_time_last": 2, - "server.rdb_save_time_start": 2, - "server.stat_numconnections": 2, - "server.stat_evictedkeys": 3, - "server.stat_starttime": 2, - "server.stat_keyspace_misses": 2, - "server.stat_keyspace_hits": 2, - "server.stat_fork_time": 2, - "server.stat_rejected_conn": 2, - "server.lastbgsave_status": 3, - "server.stop_writes_on_bgsave_err": 2, - "aeCreateTimeEvent": 1, - "aeCreateFileEvent": 2, - "AE_READABLE": 2, - "acceptTcpHandler": 1, - "AE_ERR": 2, - "acceptUnixHandler": 1, - "REDIS_AOF_ON": 2, - "LL*": 1, - "REDIS_MAXMEMORY_NO_EVICTION": 2, - "clusterInit": 1, - "scriptingInit": 1, - "slowlogInit": 1, - "bioInit": 1, - "numcommands": 5, - "sflags": 1, - "retval": 3, - "arity": 3, - "addReplyErrorFormat": 1, - "authenticated": 3, - "proc": 14, - "addReplyError": 6, - "getkeys_proc": 1, - "firstkey": 1, - "hashslot": 3, - "server.cluster.state": 1, - "REDIS_CLUSTER_OK": 1, - "ask": 3, - "clusterNode": 1, - "*n": 1, - "getNodeByQuery": 1, - "server.cluster.myself": 1, - "addReplySds": 3, - "ip": 4, - "freeMemoryIfNeeded": 2, - "REDIS_CMD_DENYOOM": 1, - "REDIS_ERR": 5, - "REDIS_CMD_WRITE": 2, - "REDIS_REPL_CONNECTED": 3, - "tolower": 2, - "REDIS_MULTI": 1, - "queueMultiCommand": 1, - "call": 1, - "REDIS_CALL_FULL": 1, - "save": 2, - "REDIS_SHUTDOWN_SAVE": 1, - "nosave": 2, - "REDIS_SHUTDOWN_NOSAVE": 1, - "SIGKILL": 2, - "rdbRemoveTempFile": 1, - "aof_fsync": 1, - "rdbSave": 1, - "addReplyBulk": 1, - "addReplyMultiBulkLen": 1, - "addReplyBulkLongLong": 2, - "bytesToHuman": 3, - "*s": 3, - "sprintf": 10, - "n/": 3, - "LL*1024*1024": 2, - "LL*1024*1024*1024": 1, - "genRedisInfoString": 2, - "*section": 2, - "info": 64, - "uptime": 2, - "rusage": 1, - "self_ru": 2, - "c_ru": 2, - "lol": 3, - "bib": 3, - "allsections": 12, - "defsections": 11, - "sections": 11, - "section": 14, - "getrusage": 2, - "RUSAGE_SELF": 1, - "RUSAGE_CHILDREN": 1, - "getClientsMaxBuffers": 1, - "utsname": 1, - "sdscat": 14, - "uname": 1, - "REDIS_VERSION": 4, - "redisGitSHA1": 3, - "strtol": 2, - "redisGitDirty": 3, - "name.sysname": 1, - "name.release": 1, - "name.machine": 1, - "aeGetApiName": 1, - "__GNUC__": 7, - "__GNUC_MINOR__": 2, - "__GNUC_PATCHLEVEL__": 1, - "uptime/": 1, - "*24": 1, - "hmem": 3, - "peak_hmem": 3, - "zmalloc_get_rss": 1, - "lua_gc": 1, - "server.lua": 1, - "LUA_GCCOUNT": 1, - "*1024LL": 1, - "zmalloc_get_fragmentation_ratio": 1, - "ZMALLOC_LIB": 2, - "aofRewriteBufferSize": 2, - "bioPendingJobsOfType": 1, - "REDIS_BIO_AOF_FSYNC": 1, - "perc": 3, - "eta": 4, - "elapsed": 3, - "off_t": 1, - "remaining_bytes": 1, - "server.loading_total_bytes": 3, - "server.loading_loaded_bytes": 3, - "server.loading_start_time": 2, - "elapsed*remaining_bytes": 1, - "/server.loading_loaded_bytes": 1, - "REDIS_REPL_TRANSFER": 2, - "server.repl_transfer_left": 1, - "server.repl_transfer_lastio": 1, - "slaveid": 3, - "listIter": 2, - "li": 6, - "listRewind": 2, - "listNext": 2, - "*slave": 2, - "*state": 1, - "anetPeerToString": 1, - "slave": 3, - "replstate": 1, - "REDIS_REPL_WAIT_BGSAVE_START": 1, - "REDIS_REPL_WAIT_BGSAVE_END": 1, - "REDIS_REPL_SEND_BULK": 1, - "REDIS_REPL_ONLINE": 1, - "float": 26, - "self_ru.ru_stime.tv_sec": 1, - "self_ru.ru_stime.tv_usec/1000000": 1, - "self_ru.ru_utime.tv_sec": 1, - "self_ru.ru_utime.tv_usec/1000000": 1, - "c_ru.ru_stime.tv_sec": 1, - "c_ru.ru_stime.tv_usec/1000000": 1, - "c_ru.ru_utime.tv_sec": 1, - "c_ru.ru_utime.tv_usec/1000000": 1, - "calls": 4, - "microseconds": 1, - "microseconds/c": 1, - "keys": 4, - "REDIS_MONITOR": 1, - "slaveseldb": 1, - "listAddNodeTail": 1, - "mem_used": 9, - "mem_tofree": 3, - "mem_freed": 4, - "slaves": 3, - "obuf_bytes": 3, - "getClientOutputBufferMemoryUsage": 1, - "k": 15, - "keys_freed": 3, - "bestval": 5, - "bestkey": 9, - "REDIS_MAXMEMORY_ALLKEYS_LRU": 2, - "REDIS_MAXMEMORY_ALLKEYS_RANDOM": 2, - "REDIS_MAXMEMORY_VOLATILE_RANDOM": 1, - "thiskey": 7, - "thisval": 8, - "dictFind": 1, - "dictGetVal": 2, - "estimateObjectIdleTime": 1, - "REDIS_MAXMEMORY_VOLATILE_TTL": 1, - "flushSlavesOutputBuffers": 1, - "linuxOvercommitMemoryValue": 2, - "fgets": 1, - "atoi": 3, - "linuxOvercommitMemoryWarning": 2, - "createPidFile": 2, - "daemonize": 2, - "STDIN_FILENO": 1, - "STDERR_FILENO": 2, - "version": 4, - "usage": 2, - "redisAsciiArt": 2, - "*16": 2, - "ascii_logo": 1, - "sigtermHandler": 2, - "sig": 2, - "sigaction": 6, - "act": 6, - "sigemptyset": 2, - "act.sa_mask": 2, - "act.sa_flags": 2, - "act.sa_handler": 1, - "SIGTERM": 1, - "HAVE_BACKTRACE": 1, - "SA_NODEFER": 1, - "SA_RESETHAND": 1, - "SA_SIGINFO": 1, - "act.sa_sigaction": 1, - "sigsegvHandler": 1, - "SIGSEGV": 1, - "SIGBUS": 1, - "SIGFPE": 1, - "SIGILL": 1, - "memtest": 2, - "megabytes": 1, - "passes": 1, - "zmalloc_enable_thread_safeness": 1, - "srand": 1, - "dictSetHashFunctionSeed": 1, - "*configfile": 1, - "configfile": 2, - "sdscatrepr": 1, - "loadServerConfig": 1, - "loadAppendOnlyFile": 1, - "/1000000": 2, - "rdbLoad": 1, - "aeSetBeforeSleepProc": 1, - "aeMain": 1, - "aeDeleteEventLoop": 1, - "": 1, - "": 2, - "": 2, - "//": 257, - "rfUTF8_IsContinuationbyte": 1, - "e.t.c.": 1, - "rfFReadLine_UTF8": 5, - "FILE*": 64, - "utf8": 36, - "uint32_t*": 34, - "byteLength": 197, - "bufferSize": 6, - "eof": 53, - "bytesN": 98, - "bIndex": 5, - "RF_NEWLINE_CRLF": 1, - "newLineFound": 1, - "*bufferSize": 1, - "RF_OPTION_FGETS_READBYTESN": 5, - "RF_MALLOC": 47, - "tempBuff": 6, - "RF_LF": 10, - "buff": 95, - "RF_SUCCESS": 14, - "RE_FILE_EOF": 22, - "found": 20, - "*eofReached": 14, - "LOG_ERROR": 64, - "RF_HEXEQ_UI": 7, - "rfFgetc_UTF32BE": 3, - "else//": 14, - "undo": 5, - "peek": 5, - "ahead": 5, - "file": 6, - "pointer": 5, - "fseek": 19, - "SEEK_CUR": 19, - "rfFgets_UTF32LE": 2, - "eofReached": 4, - "rfFgetc_UTF32LE": 4, - "rfFgets_UTF16BE": 2, - "rfFgetc_UTF16BE": 4, - "rfFgets_UTF16LE": 2, - "rfFgetc_UTF16LE": 4, - "rfFgets_UTF8": 2, - "rfFgetc_UTF8": 3, - "RF_HEXEQ_C": 9, - "fgetc": 9, - "check": 8, - "RE_FILE_READ": 2, - "cp": 12, - "c2": 13, - "c3": 9, - "c4": 5, - "i_READ_CHECK": 20, - "///": 4, - "success": 4, - "cc": 24, - "we": 10, - "more": 2, - "bytes": 225, - "xC0": 3, - "xC1": 1, - "RE_UTF8_INVALID_SEQUENCE_INVALID_BYTE": 6, - "RE_UTF8_INVALID_SEQUENCE_END": 6, - "rfUTF8_IsContinuationByte": 12, - "RE_UTF8_INVALID_SEQUENCE_CONBYTE": 6, - "decoded": 3, - "codepoint": 47, - "F": 38, - "xE0": 2, - "xF": 5, - "decode": 6, - "xF0": 2, - "RF_HEXGE_C": 1, - "xBF": 2, - "//invalid": 1, - "byte": 6, - "are": 6, - "xFF": 1, - "//if": 1, - "needing": 1, - "than": 5, - "swapE": 21, - "v1": 38, - "v2": 26, - "rfUTILS_Endianess": 24, - "RF_LITTLE_ENDIAN": 23, - "fread": 12, - "endianess": 40, - "needed": 10, - "rfUTILS_SwapEndianUS": 10, - "RF_HEXGE_US": 4, - "xD800": 8, - "RF_HEXLE_US": 4, - "xDFFF": 8, - "RF_HEXL_US": 8, - "RF_HEXG_US": 8, - "xDBFF": 4, - "RE_UTF16_INVALID_SEQUENCE": 20, - "RE_UTF16_NO_SURRPAIR": 2, - "xDC00": 4, - "user": 2, - "wants": 2, - "ff": 10, - "uint16_t*": 11, - "surrogate": 4, - "pair": 4, - "existence": 2, - "RF_BIG_ENDIAN": 10, - "rfUTILS_SwapEndianUI": 11, - "rfFback_UTF32BE": 2, - "i_FSEEK_CHECK": 14, - "rfFback_UTF32LE": 2, - "rfFback_UTF16BE": 2, - "rfFback_UTF16LE": 2, - "rfFback_UTF8": 2, - "depending": 1, - "number": 19, - "read": 1, - "backwards": 1, - "RE_UTF8_INVALID_SEQUENCE": 2, - "REFU_IO_H": 2, - "": 2, - "opening": 2, - "bracket": 4, - "calling": 4, - "C": 14, - "xA": 1, - "RF_CR": 1, - "xD": 1, - "REFU_WIN32_VERSION": 1, - "i_PLUSB_WIN32": 2, - "foff_rft": 2, - "off64_t": 1, - "///Fseek": 1, - "and": 15, - "Ftelll": 1, - "definitions": 1, - "rfFseek": 2, - "i_FILE_": 16, - "i_OFFSET_": 4, - "i_WHENCE_": 4, - "_fseeki64": 1, - "rfFtell": 2, - "_ftelli64": 1, - "fseeko64": 1, - "ftello64": 1, - "i_DECLIMEX_": 121, - "rfFReadLine_UTF16BE": 6, - "rfFReadLine_UTF16LE": 4, - "rfFReadLine_UTF32BE": 1, - "rfFReadLine_UTF32LE": 4, - "rfFgets_UTF32BE": 1, - "RF_IAMHERE_FOR_DOXYGEN": 22, - "rfPopen": 2, - "command": 2, - "i_rfPopen": 2, - "i_CMD_": 2, - "i_MODE_": 2, - "i_rfLMS_WRAP2": 5, - "rfPclose": 1, - "stream": 3, - "///closing": 1, - "#endif//include": 1, - "guards": 2, - "": 1, - "": 2, - "local": 5, - "stack": 6, - "memory": 4, - "RF_OPTION_DEFAULT_ARGUMENTS": 24, - "RF_String*": 222, - "rfString_Create": 4, - "i_rfString_Create": 3, - "READ_VSNPRINTF_ARGS": 5, - "rfUTF8_VerifySequence": 7, - "RF_FAILURE": 24, - "RE_STRING_INIT_FAILURE": 8, - "buffAllocated": 11, - "RF_String": 27, - "i_NVrfString_Create": 3, - "i_rfString_CreateLocal1": 3, - "RF_OPTION_SOURCE_ENCODING": 30, - "RF_UTF8": 8, - "characterLength": 16, - "*codepoints": 2, - "rfLMS_MacroEvalPtr": 2, - "RF_LMS": 6, - "RF_UTF16_LE": 9, - "RF_UTF16_BE": 7, - "codepoints": 44, - "i/2": 2, - "#elif": 14, - "RF_UTF32_LE": 3, - "RF_UTF32_BE": 3, - "UTF16": 4, - "rfUTF16_Decode": 5, - "rfUTF16_Decode_swap": 5, - "RF_UTF16_BE//": 2, - "RF_UTF32_LE//": 2, - "copy": 4, - "UTF32": 4, - "into": 8, - "RF_UTF32_BE//": 2, - "": 2, - "any": 3, - "other": 16, - "UTF": 17, - "8": 15, - "encode": 2, - "them": 3, - "rfUTF8_Encode": 4, - "While": 2, - "attempting": 2, - "create": 2, - "temporary": 4, - "given": 5, - "sequence": 6, - "could": 2, - "not": 6, - "be": 6, - "properly": 2, - "encoded": 2, - "RE_UTF8_ENCODING": 2, - "End": 2, - "Non": 2, - "code=": 2, - "normally": 1, - "since": 5, - "here": 5, - "have": 2, - "validity": 2, - "get": 4, - "Error": 2, - "at": 3, - "String": 11, - "Allocation": 2, - "due": 2, - "invalid": 2, - "rfLMS_Push": 4, - "Memory": 4, - "allocation": 3, - "Local": 2, - "Stack": 2, - "failed": 2, - "Insufficient": 2, - "space": 4, - "Consider": 2, - "compiling": 2, - "library": 3, - "with": 9, - "bigger": 3, - "Quitting": 2, - "proccess": 2, - "RE_LOCALMEMSTACK_INSUFFICIENT": 8, - "i_NVrfString_CreateLocal": 3, - "during": 1, - "rfString_Init": 3, - "i_rfString_Init": 3, - "i_NVrfString_Init": 3, - "rfString_Create_cp": 2, - "rfString_Init_cp": 3, - "RF_HEXLE_UI": 8, - "RF_HEXGE_UI": 6, - "C0": 3, - "ffff": 4, - "xFC0": 4, - "xF000": 2, - "xE": 2, - "F000": 2, - "C0000": 2, - "E": 11, - "RE_UTF8_INVALID_CODE_POINT": 2, - "rfString_Create_i": 2, - "numLen": 8, - "max": 4, - "is": 17, - "most": 3, - "environment": 3, - "so": 4, - "chars": 3, - "will": 3, - "certainly": 3, - "fit": 3, - "it": 12, - "strcpy": 4, - "rfString_Init_i": 2, - "rfString_Create_f": 2, - "rfString_Init_f": 2, - "rfString_Create_UTF16": 2, - "rfString_Init_UTF16": 3, - "utf8ByteLength": 34, - "last": 1, - "utf": 1, - "null": 4, - "termination": 3, - "byteLength*2": 1, - "allocate": 1, - "same": 1, - "as": 4, - "different": 1, - "RE_INPUT": 1, - "ends": 3, - "rfString_Create_UTF32": 2, - "rfString_Init_UTF32": 3, - "codeBuffer": 9, - "xFEFF": 1, - "big": 14, - "endian": 20, - "xFFFE0000": 1, - "little": 7, - "according": 1, - "standard": 1, - "no": 4, - "BOM": 1, - "means": 1, - "rfUTF32_Length": 1, - "i_rfString_Assign": 3, - "dest": 7, - "sourceP": 2, - "source": 8, - "RF_REALLOC": 9, - "rfString_Assign_char": 2, - "<5)>": 1, - "rfString_Create_nc": 3, - "i_rfString_Create_nc": 3, - "bytesWritten": 2, - "i_NVrfString_Create_nc": 3, - "rfString_Init_nc": 4, - "i_rfString_Init_nc": 3, - "i_NVrfString_Init_nc": 3, - "rfString_Destroy": 2, - "rfString_Deinit": 3, - "rfString_ToUTF16": 4, - "charsN": 5, - "rfUTF8_Decode": 2, - "rfUTF16_Encode": 1, - "rfString_ToUTF32": 4, - "rfString_Length": 5, - "RF_STRING_ITERATE_START": 9, - "RF_STRING_ITERATE_END": 9, - "rfString_GetChar": 2, - "thisstr": 210, - "codePoint": 18, - "RF_STRING_INDEX_OUT_OF_BOUNDS": 2, - "rfString_BytePosToCodePoint": 7, - "rfString_BytePosToCharPos": 4, - "thisstrP": 32, - "bytepos": 12, - "before": 4, - "charPos": 8, - "byteI": 7, - "i_rfString_Equal": 3, - "s1P": 2, - "s2P": 2, - "i_rfString_Find": 5, - "sstrP": 6, - "optionsP": 11, - "sstr": 39, - "*optionsP": 8, - "RF_BITFLAG_ON": 5, - "RF_CASE_IGNORE": 2, - "strstr": 2, - "RF_MATCH_WORD": 5, - "exact": 6, - "": 1, - "0x5a": 1, - "0x7a": 1, - "substring": 5, - "search": 1, - "zero": 2, - "equals": 1, - "then": 1, - "okay": 1, - "rfString_Equal": 4, - "RFS_": 8, - "ERANGE": 1, - "RE_STRING_TOFLOAT_UNDERFLOW": 1, - "RE_STRING_TOFLOAT": 1, - "rfString_Copy_OUT": 2, - "srcP": 6, - "rfString_Copy_IN": 2, - "dst": 15, - "rfString_Copy_chars": 2, - "bytePos": 23, - "terminate": 1, - "i_rfString_ScanfAfter": 3, - "afterstrP": 2, - "format": 4, - "afterstr": 5, - "sscanf": 1, - "<=0)>": 1, - "Counts": 1, - "how": 1, - "many": 1, - "times": 1, - "occurs": 1, - "inside": 2, - "i_rfString_Count": 5, - "sstr2": 2, - "move": 12, - "rfString_FindBytePos": 10, - "rfString_Tokenize": 2, - "sep": 3, - "tokensN": 2, - "RF_String**": 2, - "*tokensN": 1, - "rfString_Count": 4, - "lstr": 6, - "lstrP": 1, - "rstr": 24, - "rstrP": 5, - "rfString_After": 4, - "rfString_Beforev": 4, - "parNP": 6, - "i_rfString_Beforev": 16, - "parN": 10, - "*parNP": 2, - "minPos": 17, - "thisPos": 8, - "argList": 8, - "va_arg": 2, - "i_rfString_Before": 5, - "i_rfString_After": 5, - "afterP": 2, - "after": 6, - "rfString_Afterv": 4, - "i_rfString_Afterv": 16, - "minPosLength": 3, - "go": 8, - "i_rfString_Append": 3, - "otherP": 4, - "strncat": 1, - "rfString_Append_i": 2, - "rfString_Append_f": 2, - "i_rfString_Prepend": 3, - "goes": 1, - "i_rfString_Remove": 6, - "numberP": 1, - "*numberP": 1, - "occurences": 5, - "done": 1, - "<=thisstr->": 1, - "i_rfString_KeepOnly": 3, - "keepstrP": 2, - "keepLength": 2, - "charValue": 12, - "*keepChars": 1, - "keepstr": 5, - "exists": 6, - "charBLength": 5, - "keepChars": 4, - "*keepLength": 1, - "rfString_Iterate_Start": 6, - "rfString_Iterate_End": 4, - "": 1, - "does": 1, - "exist": 2, - "back": 1, - "cover": 1, - "that": 9, - "effectively": 1, - "gets": 1, - "deleted": 1, - "rfUTF8_FromCodepoint": 1, - "this": 5, - "kind": 1, - "non": 1, - "clean": 1, - "way": 1, - "macro": 2, - "internally": 1, - "uses": 1, - "byteIndex_": 12, - "variable": 1, - "use": 1, - "determine": 1, - "backs": 1, - "memmove": 1, - "by": 1, - "contiuing": 1, - "make": 3, - "sure": 2, - "position": 1, - "won": 1, - "array": 1, - "rfString_PruneStart": 2, - "nBytePos": 23, - "rfString_PruneEnd": 2, - "RF_STRING_ITERATEB_START": 2, - "RF_STRING_ITERATEB_END": 2, - "rfString_PruneMiddleB": 2, - "pBytePos": 15, - "indexing": 1, - "works": 1, - "pbytePos": 2, - "pth": 2, - "include": 6, - "rfString_PruneMiddleF": 2, - "got": 1, - "all": 2, - "i_rfString_Replace": 6, - "numP": 1, - "*numP": 1, - "RF_StringX": 2, - "just": 1, - "finding": 1, - "foundN": 10, - "bSize": 4, - "bytePositions": 17, - "bSize*sizeof": 1, - "rfStringX_FromString_IN": 1, - "temp.bIndex": 2, - "temp.bytes": 1, - "temp.byteLength": 1, - "rfStringX_Deinit": 1, - "replace": 3, - "removed": 2, - "one": 2, - "orSize": 5, - "nSize": 4, - "number*diff": 1, - "strncpy": 3, - "smaller": 1, - "diff*number": 1, - "remove": 1, - "equal": 1, - "i_rfString_StripStart": 3, - "subP": 7, - "RF_String*sub": 2, - "noMatch": 8, - "*subValues": 2, - "subLength": 6, - "subValues": 8, - "*subLength": 2, - "i_rfString_StripEnd": 3, - "lastBytePos": 4, - "testity": 2, - "i_rfString_Strip": 3, - "res1": 2, - "rfString_StripStart": 3, - "res2": 2, - "rfString_StripEnd": 3, - "rfString_Create_fUTF8": 2, - "rfString_Init_fUTF8": 3, - "unused": 3, - "rfString_Assign_fUTF8": 2, - "FILE*f": 2, - "utf8BufferSize": 4, - "function": 6, - "rfString_Append_fUTF8": 2, - "rfString_Append": 5, - "rfString_Create_fUTF16": 2, - "rfString_Init_fUTF16": 3, - "rfString_Assign_fUTF16": 2, - "rfString_Append_fUTF16": 2, - "char*utf8": 3, - "rfString_Create_fUTF32": 2, - "rfString_Init_fUTF32": 3, - "<0)>": 1, - "Failure": 1, - "initialize": 1, - "reading": 1, - "Little": 1, - "Endian": 1, - "32": 1, - "bytesN=": 1, - "rfString_Assign_fUTF32": 2, - "rfString_Append_fUTF32": 2, - "i_rfString_Fwrite": 5, - "sP": 2, - "encodingP": 1, - "*utf32": 1, - "utf16": 11, - "*encodingP": 1, - "fwrite": 5, - "logging": 5, - "utf32": 10, - "i_WRITE_CHECK": 1, - "RE_FILE_WRITE": 1, - "REFU_USTRING_H": 2, - "": 1, - "RF_MODULE_STRINGS//": 1, - "included": 2, - "module": 3, - "": 1, - "argument": 1, - "wrapping": 1, - "functionality": 1, - "": 1, - "unicode": 2, - "xFF0FFFF": 1, - "rfUTF8_IsContinuationByte2": 1, - "b__": 3, - "0xBF": 1, - "pragma": 1, - "pack": 2, - "push": 1, - "internal": 4, - "author": 1, - "Lefteris": 1, - "09": 1, - "12": 1, - "2010": 1, - "endinternal": 1, - "brief": 1, - "A": 11, - "representation": 2, - "The": 1, - "Refu": 2, - "Unicode": 1, - "has": 2, - "two": 1, - "versions": 1, - "One": 1, - "ref": 1, - "what": 1, - "operations": 1, - "can": 2, - "performed": 1, - "extended": 3, - "Strings": 2, - "Functions": 1, - "convert": 1, - "but": 1, - "always": 2, - "Once": 1, - "been": 1, - "created": 1, - "assumed": 1, - "valid": 1, - "every": 1, - "performs": 1, - "unless": 1, - "otherwise": 1, - "specified": 1, - "All": 1, - "functions": 2, - "which": 1, - "isinherited": 1, - "StringX": 2, - "their": 1, - "description": 1, - "safely": 1, - "specific": 1, - "or": 1, - "needs": 1, - "manipulate": 1, - "Extended": 1, - "To": 1, - "documentation": 1, - "even": 1, - "clearer": 1, - "should": 2, - "marked": 1, - "notinherited": 1, - "cppcode": 1, - "constructor": 1, - "i_StringCHandle": 1, - "@endcpp": 1, - "@endinternal": 1, - "*/": 1, - "#pragma": 1, - "pop": 1, - "i_rfString_CreateLocal": 2, - "__VA_ARGS__": 66, - "RP_SELECT_FUNC_IF_NARGIS": 5, - "i_SELECT_RF_STRING_CREATE": 1, - "i_SELECT_RF_STRING_CREATE1": 1, - "i_SELECT_RF_STRING_CREATE0": 1, - "///Internal": 1, - "creates": 1, - "i_SELECT_RF_STRING_CREATELOCAL": 1, - "i_SELECT_RF_STRING_CREATELOCAL1": 1, - "i_SELECT_RF_STRING_CREATELOCAL0": 1, - "i_SELECT_RF_STRING_INIT": 1, - "i_SELECT_RF_STRING_INIT1": 1, - "i_SELECT_RF_STRING_INIT0": 1, - "code": 6, - "i_SELECT_RF_STRING_CREATE_NC": 1, - "i_SELECT_RF_STRING_CREATE_NC1": 1, - "i_SELECT_RF_STRING_CREATE_NC0": 1, - "i_SELECT_RF_STRING_INIT_NC": 1, - "i_SELECT_RF_STRING_INIT_NC1": 1, - "i_SELECT_RF_STRING_INIT_NC0": 1, - "//@": 1, - "rfString_Assign": 2, - "i_DESTINATION_": 2, - "i_SOURCE_": 2, - "rfString_ToUTF8": 2, - "i_STRING_": 2, - "rfString_ToCstr": 2, - "uint32_t*length": 1, - "string_": 9, - "startCharacterPos_": 4, - "characterUnicodeValue_": 4, - "j_": 6, - "//Two": 1, - "macros": 1, - "accomplish": 1, - "going": 1, - "backwards.": 1, - "This": 1, - "its": 1, - "pair.": 1, - "rfString_IterateB_Start": 1, - "characterPos_": 5, - "b_index_": 6, - "c_index_": 3, - "rfString_IterateB_End": 1, - "i_STRING1_": 2, - "i_STRING2_": 2, - "i_rfLMSX_WRAP2": 4, - "rfString_Find": 3, - "i_THISSTR_": 60, - "i_SEARCHSTR_": 26, - "i_OPTIONS_": 28, - "i_rfLMS_WRAP3": 4, - "i_RFI8_": 54, - "RF_SELECT_FUNC_IF_NARGGT": 10, - "i_NPSELECT_RF_STRING_FIND": 1, - "i_NPSELECT_RF_STRING_FIND1": 1, - "RF_COMPILE_ERROR": 33, - "i_NPSELECT_RF_STRING_FIND0": 1, - "RF_SELECT_FUNC": 10, - "i_SELECT_RF_STRING_FIND": 1, - "i_SELECT_RF_STRING_FIND2": 1, - "i_SELECT_RF_STRING_FIND3": 1, - "i_SELECT_RF_STRING_FIND1": 1, - "i_SELECT_RF_STRING_FIND0": 1, - "rfString_ToInt": 1, - "int32_t*": 1, - "rfString_ToDouble": 1, - "double*": 1, - "rfString_ScanfAfter": 2, - "i_AFTERSTR_": 8, - "i_FORMAT_": 2, - "i_VAR_": 2, - "i_rfLMSX_WRAP4": 11, - "i_NPSELECT_RF_STRING_COUNT": 1, - "i_NPSELECT_RF_STRING_COUNT1": 1, - "i_NPSELECT_RF_STRING_COUNT0": 1, - "i_SELECT_RF_STRING_COUNT": 1, - "i_SELECT_RF_STRING_COUNT2": 1, - "i_rfLMSX_WRAP3": 5, - "i_SELECT_RF_STRING_COUNT3": 1, - "i_SELECT_RF_STRING_COUNT1": 1, - "i_SELECT_RF_STRING_COUNT0": 1, - "rfString_Between": 3, - "i_rfString_Between": 4, - "i_NPSELECT_RF_STRING_BETWEEN": 1, - "i_NPSELECT_RF_STRING_BETWEEN1": 1, - "i_NPSELECT_RF_STRING_BETWEEN0": 1, - "i_SELECT_RF_STRING_BETWEEN": 1, - "i_SELECT_RF_STRING_BETWEEN4": 1, - "i_LEFTSTR_": 6, - "i_RIGHTSTR_": 6, - "i_RESULT_": 12, - "i_rfLMSX_WRAP5": 9, - "i_SELECT_RF_STRING_BETWEEN5": 1, - "i_SELECT_RF_STRING_BETWEEN3": 1, - "i_SELECT_RF_STRING_BETWEEN2": 1, - "i_SELECT_RF_STRING_BETWEEN1": 1, - "i_SELECT_RF_STRING_BETWEEN0": 1, - "i_NPSELECT_RF_STRING_BEFOREV": 1, - "i_NPSELECT_RF_STRING_BEFOREV1": 1, - "RF_SELECT_FUNC_IF_NARGGT2": 2, - "i_LIMSELECT_RF_STRING_BEFOREV": 1, - "i_NPSELECT_RF_STRING_BEFOREV0": 1, - "i_LIMSELECT_RF_STRING_BEFOREV1": 1, - "i_LIMSELECT_RF_STRING_BEFOREV0": 1, - "i_SELECT_RF_STRING_BEFOREV": 1, - "i_SELECT_RF_STRING_BEFOREV5": 1, - "i_ARG1_": 56, - "i_ARG2_": 56, - "i_ARG3_": 56, - "i_ARG4_": 56, - "i_RFUI8_": 28, - "i_SELECT_RF_STRING_BEFOREV6": 1, - "i_rfLMSX_WRAP6": 2, - "i_SELECT_RF_STRING_BEFOREV7": 1, - "i_rfLMSX_WRAP7": 2, - "i_SELECT_RF_STRING_BEFOREV8": 1, - "i_rfLMSX_WRAP8": 2, - "i_SELECT_RF_STRING_BEFOREV9": 1, - "i_rfLMSX_WRAP9": 2, - "i_SELECT_RF_STRING_BEFOREV10": 1, - "i_rfLMSX_WRAP10": 2, - "i_SELECT_RF_STRING_BEFOREV11": 1, - "i_rfLMSX_WRAP11": 2, - "i_SELECT_RF_STRING_BEFOREV12": 1, - "i_rfLMSX_WRAP12": 2, - "i_SELECT_RF_STRING_BEFOREV13": 1, - "i_rfLMSX_WRAP13": 2, - "i_SELECT_RF_STRING_BEFOREV14": 1, - "i_rfLMSX_WRAP14": 2, - "i_SELECT_RF_STRING_BEFOREV15": 1, - "i_rfLMSX_WRAP15": 2, - "i_SELECT_RF_STRING_BEFOREV16": 1, - "i_rfLMSX_WRAP16": 2, - "i_SELECT_RF_STRING_BEFOREV17": 1, - "i_rfLMSX_WRAP17": 2, - "i_SELECT_RF_STRING_BEFOREV18": 1, - "i_rfLMSX_WRAP18": 2, - "rfString_Before": 3, - "i_NPSELECT_RF_STRING_BEFORE": 1, - "i_NPSELECT_RF_STRING_BEFORE1": 1, - "i_NPSELECT_RF_STRING_BEFORE0": 1, - "i_SELECT_RF_STRING_BEFORE": 1, - "i_SELECT_RF_STRING_BEFORE3": 1, - "i_SELECT_RF_STRING_BEFORE4": 1, - "i_SELECT_RF_STRING_BEFORE2": 1, - "i_SELECT_RF_STRING_BEFORE1": 1, - "i_SELECT_RF_STRING_BEFORE0": 1, - "i_NPSELECT_RF_STRING_AFTER": 1, - "i_NPSELECT_RF_STRING_AFTER1": 1, - "i_NPSELECT_RF_STRING_AFTER0": 1, - "i_SELECT_RF_STRING_AFTER": 1, - "i_SELECT_RF_STRING_AFTER3": 1, - "i_OUTSTR_": 6, - "i_SELECT_RF_STRING_AFTER4": 1, - "i_SELECT_RF_STRING_AFTER2": 1, - "i_SELECT_RF_STRING_AFTER1": 1, - "i_SELECT_RF_STRING_AFTER0": 1, - "i_NPSELECT_RF_STRING_AFTERV": 1, - "i_NPSELECT_RF_STRING_AFTERV1": 1, - "i_LIMSELECT_RF_STRING_AFTERV": 1, - "i_NPSELECT_RF_STRING_AFTERV0": 1, - "i_LIMSELECT_RF_STRING_AFTERV1": 1, - "i_LIMSELECT_RF_STRING_AFTERV0": 1, - "i_SELECT_RF_STRING_AFTERV": 1, - "i_SELECT_RF_STRING_AFTERV5": 1, - "i_SELECT_RF_STRING_AFTERV6": 1, - "i_SELECT_RF_STRING_AFTERV7": 1, - "i_SELECT_RF_STRING_AFTERV8": 1, - "i_SELECT_RF_STRING_AFTERV9": 1, - "i_SELECT_RF_STRING_AFTERV10": 1, - "i_SELECT_RF_STRING_AFTERV11": 1, - "i_SELECT_RF_STRING_AFTERV12": 1, - "i_SELECT_RF_STRING_AFTERV13": 1, - "i_SELECT_RF_STRING_AFTERV14": 1, - "i_SELECT_RF_STRING_AFTERV15": 1, - "i_SELECT_RF_STRING_AFTERV16": 1, - "i_SELECT_RF_STRING_AFTERV17": 1, - "i_SELECT_RF_STRING_AFTERV18": 1, - "i_OTHERSTR_": 4, - "rfString_Prepend": 2, - "rfString_Remove": 3, - "i_NPSELECT_RF_STRING_REMOVE": 1, - "i_NPSELECT_RF_STRING_REMOVE1": 1, - "i_NPSELECT_RF_STRING_REMOVE0": 1, - "i_SELECT_RF_STRING_REMOVE": 1, - "i_SELECT_RF_STRING_REMOVE2": 1, - "i_REPSTR_": 16, - "i_RFUI32_": 8, - "i_SELECT_RF_STRING_REMOVE3": 1, - "i_NUMBER_": 12, - "i_SELECT_RF_STRING_REMOVE4": 1, - "i_SELECT_RF_STRING_REMOVE1": 1, - "i_SELECT_RF_STRING_REMOVE0": 1, - "rfString_KeepOnly": 2, - "I_KEEPSTR_": 2, - "rfString_Replace": 3, - "i_NPSELECT_RF_STRING_REPLACE": 1, - "i_NPSELECT_RF_STRING_REPLACE1": 1, - "i_NPSELECT_RF_STRING_REPLACE0": 1, - "i_SELECT_RF_STRING_REPLACE": 1, - "i_SELECT_RF_STRING_REPLACE3": 1, - "i_SELECT_RF_STRING_REPLACE4": 1, - "i_SELECT_RF_STRING_REPLACE5": 1, - "i_SELECT_RF_STRING_REPLACE2": 1, - "i_SELECT_RF_STRING_REPLACE1": 1, - "i_SELECT_RF_STRING_REPLACE0": 1, - "i_SUBSTR_": 6, - "rfString_Strip": 2, - "rfString_Fwrite": 2, - "i_NPSELECT_RF_STRING_FWRITE": 1, - "i_NPSELECT_RF_STRING_FWRITE1": 1, - "i_NPSELECT_RF_STRING_FWRITE0": 1, - "i_SELECT_RF_STRING_FWRITE": 1, - "i_SELECT_RF_STRING_FWRITE3": 1, - "i_STR_": 8, - "i_ENCODING_": 4, - "i_SELECT_RF_STRING_FWRITE2": 1, - "i_SELECT_RF_STRING_FWRITE1": 1, - "i_SELECT_RF_STRING_FWRITE0": 1, - "rfString_Fwrite_fUTF8": 1, - "closing": 1, - "#error": 4, - "Attempted": 1, - "manipulation": 1, - "flag": 1, - "off.": 1, - "Rebuild": 1, - "added": 1, - "you": 1, - "#endif//": 1, - "PY_SSIZE_T_CLEAN": 1, - "Py_PYTHON_H": 1, - "Python": 2, - "headers": 1, - "compile": 1, - "extensions": 1, - "please": 1, - "install": 1, - "development": 1, - "Python.": 1, - "PY_VERSION_HEX": 11, - "Cython": 1, - "requires": 1, - ".": 1, - "offsetof": 2, - "member": 2, - "type*": 1, - "WIN32": 2, - "MS_WINDOWS": 2, - "__stdcall": 2, - "__cdecl": 2, - "__fastcall": 2, - "DL_IMPORT": 2, - "DL_EXPORT": 2, - "PY_LONG_LONG": 5, - "LONG_LONG": 1, - "Py_HUGE_VAL": 2, - "HUGE_VAL": 1, - "PYPY_VERSION": 1, - "CYTHON_COMPILING_IN_PYPY": 3, - "CYTHON_COMPILING_IN_CPYTHON": 6, - "Py_ssize_t": 35, - "PY_SSIZE_T_MAX": 1, - "INT_MAX": 1, - "PY_SSIZE_T_MIN": 1, - "INT_MIN": 1, - "PY_FORMAT_SIZE_T": 1, - "CYTHON_FORMAT_SSIZE_T": 2, - "PyInt_FromSsize_t": 6, - "PyInt_FromLong": 3, - "PyInt_AsSsize_t": 3, - "__Pyx_PyInt_AsInt": 2, - "PyNumber_Index": 1, - "PyNumber_Check": 2, - "PyFloat_Check": 2, - "PyNumber_Int": 1, - "PyErr_Format": 4, - "PyExc_TypeError": 4, - "Py_TYPE": 7, - "tp_name": 4, - "PyObject*": 24, - "__Pyx_PyIndex_Check": 3, - "PyComplex_Check": 1, - "PyIndex_Check": 2, - "PyErr_WarnEx": 1, - "category": 2, - "stacklevel": 1, - "PyErr_Warn": 1, - "__PYX_BUILD_PY_SSIZE_T": 2, - "Py_REFCNT": 1, - "ob_refcnt": 1, - "ob_type": 7, - "Py_SIZE": 1, - "PyVarObject*": 1, - "ob_size": 1, - "PyVarObject_HEAD_INIT": 1, - "PyObject_HEAD_INIT": 1, - "PyType_Modified": 1, - "PyObject": 276, - "itemsize": 1, - "readonly": 1, - "ndim": 2, - "*shape": 1, - "*strides": 1, - "*suboffsets": 1, - "*internal": 1, - "Py_buffer": 6, - "PyBUF_SIMPLE": 1, - "PyBUF_WRITABLE": 3, - "PyBUF_FORMAT": 3, - "PyBUF_ND": 2, - "PyBUF_STRIDES": 6, - "PyBUF_C_CONTIGUOUS": 1, - "PyBUF_F_CONTIGUOUS": 1, - "PyBUF_ANY_CONTIGUOUS": 1, - "PyBUF_INDIRECT": 2, - "PyBUF_RECORDS": 1, - "PyBUF_FULL": 1, - "PY_MAJOR_VERSION": 13, - "__Pyx_BUILTIN_MODULE_NAME": 2, - "__Pyx_PyCode_New": 2, - "l": 7, - "fv": 4, - "cell": 4, - "fline": 4, - "lnos": 4, - "PyCode_New": 2, - "PY_MINOR_VERSION": 1, - "PyUnicode_FromString": 2, - "PyUnicode_Decode": 1, - "Py_TPFLAGS_CHECKTYPES": 1, - "Py_TPFLAGS_HAVE_INDEX": 1, - "Py_TPFLAGS_HAVE_NEWBUFFER": 1, - "PyUnicode_KIND": 1, - "CYTHON_PEP393_ENABLED": 2, - "__Pyx_PyUnicode_READY": 2, - "op": 8, - "PyUnicode_IS_READY": 1, - "_PyUnicode_Ready": 1, - "__Pyx_PyUnicode_GET_LENGTH": 2, - "PyUnicode_GET_LENGTH": 1, - "__Pyx_PyUnicode_READ_CHAR": 2, - "PyUnicode_READ_CHAR": 1, - "__Pyx_PyUnicode_READ": 2, - "PyUnicode_READ": 1, - "PyUnicode_GET_SIZE": 1, - "Py_UCS4": 2, - "PyUnicode_AS_UNICODE": 1, - "Py_UNICODE*": 1, - "PyBaseString_Type": 1, - "PyUnicode_Type": 2, - "PyStringObject": 2, - "PyUnicodeObject": 1, - "PyString_Type": 2, - "PyString_Check": 2, - "PyUnicode_Check": 1, - "PyString_CheckExact": 2, - "PyUnicode_CheckExact": 1, - "PyBytesObject": 1, - "PyBytes_Type": 1, - "PyBytes_Check": 1, - "PyBytes_CheckExact": 1, - "PyBytes_FromString": 2, - "PyString_FromString": 2, - "PyBytes_FromStringAndSize": 1, - "PyString_FromStringAndSize": 1, - "PyBytes_FromFormat": 1, - "PyString_FromFormat": 1, - "PyBytes_DecodeEscape": 1, - "PyString_DecodeEscape": 1, - "PyBytes_AsString": 2, - "PyString_AsString": 1, - "PyBytes_AsStringAndSize": 1, - "PyString_AsStringAndSize": 1, - "PyBytes_Size": 1, - "PyString_Size": 1, - "PyBytes_AS_STRING": 1, - "PyString_AS_STRING": 1, - "PyBytes_GET_SIZE": 1, - "PyString_GET_SIZE": 1, - "PyBytes_Repr": 1, - "PyString_Repr": 1, - "PyBytes_Concat": 1, - "PyString_Concat": 1, - "PyBytes_ConcatAndDel": 1, - "PyString_ConcatAndDel": 1, - "PySet_Check": 1, - "PyObject_TypeCheck": 3, - "PySet_Type": 2, - "PyFrozenSet_Check": 1, - "PyFrozenSet_Type": 1, - "PySet_CheckExact": 2, - "__Pyx_TypeCheck": 1, - "PyTypeObject": 25, - "PyIntObject": 1, - "PyLongObject": 2, - "PyInt_Type": 1, - "PyLong_Type": 1, - "PyInt_Check": 1, - "PyLong_Check": 1, - "PyInt_CheckExact": 1, - "PyLong_CheckExact": 1, - "PyInt_FromString": 1, - "PyLong_FromString": 1, - "PyInt_FromUnicode": 1, - "PyLong_FromUnicode": 1, - "PyLong_FromLong": 1, - "PyInt_FromSize_t": 1, - "PyLong_FromSize_t": 1, - "PyLong_FromSsize_t": 1, - "PyInt_AsLong": 2, - "PyLong_AsLong": 1, - "PyInt_AS_LONG": 1, - "PyLong_AS_LONG": 1, - "PyLong_AsSsize_t": 1, - "PyInt_AsUnsignedLongMask": 1, - "PyLong_AsUnsignedLongMask": 1, - "PyInt_AsUnsignedLongLongMask": 1, - "PyLong_AsUnsignedLongLongMask": 1, - "PyBoolObject": 1, - "Py_hash_t": 1, - "__Pyx_PyInt_FromHash_t": 2, - "__Pyx_PyInt_AsHash_t": 2, - "__Pyx_PySequence_GetSlice": 2, - "PySequence_GetSlice": 2, - "__Pyx_PySequence_SetSlice": 2, - "PySequence_SetSlice": 2, - "__Pyx_PySequence_DelSlice": 2, - "PySequence_DelSlice": 2, - "PyErr_SetString": 3, - "PyExc_SystemError": 3, - "tp_as_mapping": 3, - "PyMethod_New": 2, - "func": 3, - "klass": 1, - "PyInstanceMethod_New": 1, - "__Pyx_GetAttrString": 2, - "PyObject_GetAttrString": 2, - "__Pyx_SetAttrString": 2, - "PyObject_SetAttrString": 2, - "__Pyx_DelAttrString": 2, - "PyObject_DelAttrString": 2, - "__Pyx_NAMESTR": 2, - "__Pyx_DOCSTR": 2, - "__Pyx_PyNumber_Divide": 2, - "y": 14, - "PyNumber_TrueDivide": 1, - "__Pyx_PyNumber_InPlaceDivide": 2, - "PyNumber_InPlaceTrueDivide": 1, - "PyNumber_Divide": 1, - "PyNumber_InPlaceDivide": 1, - "__PYX_EXTERN_C": 3, - "_USE_MATH_DEFINES": 1, - "__PYX_HAVE__sklearn__linear_model__sgd_fast": 1, - "__PYX_HAVE_API__sklearn__linear_model__sgd_fast": 1, - "_OPENMP": 1, - "": 1, - "PYREX_WITHOUT_ASSERTIONS": 1, - "CYTHON_WITHOUT_ASSERTIONS": 1, - "CYTHON_INLINE": 65, - "__inline__": 1, - "__inline": 1, - "__STDC_VERSION__": 2, - "L": 1, - "CYTHON_UNUSED": 14, - "**p": 1, - "is_unicode": 1, - "is_str": 1, - "intern": 1, - "__Pyx_StringTabEntry": 2, - "__Pyx_PyBytes_FromUString": 1, - "__Pyx_PyBytes_AsUString": 1, - "__Pyx_Owned_Py_None": 1, - "Py_INCREF": 10, - "Py_None": 8, - "__Pyx_PyBool_FromLong": 1, - "Py_True": 2, - "Py_False": 2, - "__Pyx_PyObject_IsTrue": 1, - "__Pyx_PyNumber_Int": 1, - "__Pyx_PyIndex_AsSsize_t": 1, - "__Pyx_PyInt_FromSize_t": 1, - "__Pyx_PyInt_AsSize_t": 1, - "__pyx_PyFloat_AsDouble": 12, - "PyFloat_CheckExact": 1, - "PyFloat_AS_DOUBLE": 1, - "PyFloat_AsDouble": 2, - "__pyx_PyFloat_AsFloat": 1, - "__builtin_expect": 2, - "*__pyx_m": 1, - "*__pyx_b": 1, - "*__pyx_empty_tuple": 1, - "*__pyx_empty_bytes": 1, - "__pyx_lineno": 58, - "__pyx_clineno": 58, - "__pyx_cfilenm": 1, - "__FILE__": 4, - "*__pyx_filename": 7, - "CYTHON_CCOMPLEX": 12, - "_Complex_I": 3, - "": 1, - "": 1, - "__sun__": 1, - "fj": 1, - "*__pyx_f": 1, - "IS_UNSIGNED": 1, - "__Pyx_StructField_": 2, - "__PYX_BUF_FLAGS_PACKED_STRUCT": 1, - "__Pyx_StructField_*": 1, - "fields": 1, - "arraysize": 1, - "typegroup": 1, - "is_unsigned": 1, - "__Pyx_TypeInfo": 2, - "__Pyx_TypeInfo*": 2, - "offset": 1, - "__Pyx_StructField": 2, - "__Pyx_StructField*": 1, - "field": 1, - "parent_offset": 1, - "__Pyx_BufFmt_StackElem": 1, - "root": 1, - "__Pyx_BufFmt_StackElem*": 2, - "fmt_offset": 1, - "new_count": 1, - "enc_count": 1, - "struct_alignment": 1, - "is_complex": 1, - "enc_type": 1, - "new_packmode": 1, - "enc_packmode": 1, - "is_valid_array": 1, - "__Pyx_BufFmt_Context": 1, - "npy_int8": 1, - "__pyx_t_5numpy_int8_t": 1, - "npy_int16": 1, - "__pyx_t_5numpy_int16_t": 1, - "npy_int32": 1, - "__pyx_t_5numpy_int32_t": 4, - "npy_int64": 1, - "__pyx_t_5numpy_int64_t": 1, - "npy_uint8": 1, - "__pyx_t_5numpy_uint8_t": 1, - "npy_uint16": 1, - "__pyx_t_5numpy_uint16_t": 1, - "npy_uint32": 1, - "__pyx_t_5numpy_uint32_t": 1, - "npy_uint64": 1, - "__pyx_t_5numpy_uint64_t": 1, - "npy_float32": 1, - "__pyx_t_5numpy_float32_t": 1, - "npy_float64": 1, - "__pyx_t_5numpy_float64_t": 4, - "npy_long": 1, - "__pyx_t_5numpy_int_t": 1, - "npy_longlong": 2, - "__pyx_t_5numpy_long_t": 1, - "__pyx_t_5numpy_longlong_t": 1, - "npy_ulong": 1, - "__pyx_t_5numpy_uint_t": 1, - "npy_ulonglong": 2, - "__pyx_t_5numpy_ulong_t": 1, - "__pyx_t_5numpy_ulonglong_t": 1, - "npy_intp": 1, - "__pyx_t_5numpy_intp_t": 1, - "npy_uintp": 1, - "__pyx_t_5numpy_uintp_t": 1, - "npy_double": 2, - "__pyx_t_5numpy_float_t": 1, - "__pyx_t_5numpy_double_t": 1, - "npy_longdouble": 1, - "__pyx_t_5numpy_longdouble_t": 1, - "__pyx_t_7sklearn_5utils_13weight_vector_DOUBLE": 2, - "__pyx_t_7sklearn_5utils_13weight_vector_INTEGER": 1, - "__pyx_t_7sklearn_5utils_11seq_dataset_DOUBLE": 7, - "__pyx_t_7sklearn_5utils_11seq_dataset_INTEGER": 7, - "__pyx_t_7sklearn_12linear_model_8sgd_fast_DOUBLE": 4, - "__pyx_t_7sklearn_12linear_model_8sgd_fast_INTEGER": 3, - "std": 8, - "complex": 2, - "__pyx_t_float_complex": 27, - "_Complex": 2, - "real": 2, - "imag": 2, - "__pyx_t_double_complex": 27, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_LossFunction": 15, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Regression": 11, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Huber": 6, - "__pyx_obj_7sklearn_5utils_11seq_dataset_SequentialDataset": 5, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_EpsilonInsensitive": 6, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Classification": 7, - "__pyx_obj_7sklearn_5utils_11seq_dataset_CSRDataset": 2, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Log": 5, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Hinge": 6, - "__pyx_obj_7sklearn_5utils_11seq_dataset_ArrayDataset": 2, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_SquaredHinge": 6, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_ModifiedHuber": 5, - "__pyx_obj_7sklearn_5utils_13weight_vector_WeightVector": 3, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_SquaredLoss": 5, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_SquaredEpsilonInsensitive": 6, - "npy_cfloat": 1, - "__pyx_t_5numpy_cfloat_t": 1, - "npy_cdouble": 2, - "__pyx_t_5numpy_cdouble_t": 1, - "npy_clongdouble": 1, - "__pyx_t_5numpy_clongdouble_t": 1, - "__pyx_t_5numpy_complex_t": 1, - "PyObject_HEAD": 3, - "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_LossFunction": 5, - "*__pyx_vtab": 3, - "__pyx_base": 18, - "__pyx_vtabstruct_7sklearn_5utils_11seq_dataset_SequentialDataset": 4, - "n_samples": 1, - "epsilon": 2, - "current_index": 2, - "stride": 2, - "*X_data_ptr": 2, - "*X_indptr_ptr": 1, - "*X_indices_ptr": 1, - "*Y_data_ptr": 2, - "PyArrayObject": 8, - "*feature_indices": 2, - "*feature_indices_ptr": 2, - "*index": 2, - "*index_data_ptr": 2, - "*sample_weight_data": 2, - "threshold": 2, - "n_features": 2, - "__pyx_vtabstruct_7sklearn_5utils_13weight_vector_WeightVector": 3, - "*w_data_ptr": 1, - "wscale": 1, - "sq_norm": 1, - "*__pyx_vtabptr_7sklearn_5utils_11seq_dataset_SequentialDataset": 1, - "__pyx_vtabstruct_7sklearn_5utils_11seq_dataset_ArrayDataset": 2, - "*__pyx_vtabptr_7sklearn_5utils_11seq_dataset_ArrayDataset": 1, - "__pyx_vtabstruct_7sklearn_5utils_11seq_dataset_CSRDataset": 2, - "*__pyx_vtabptr_7sklearn_5utils_11seq_dataset_CSRDataset": 1, - "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_EpsilonInsensitive": 2, - "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_Regression": 3, - "*__pyx_vtabptr_7sklearn_12linear_model_8sgd_fast_EpsilonInsensitive": 1, - "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_SquaredHinge": 2, - "*__pyx_vtabptr_7sklearn_12linear_model_8sgd_fast_SquaredHinge": 1, - "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_Huber": 2, - "*__pyx_vtabptr_7sklearn_12linear_model_8sgd_fast_Huber": 1, - "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_Hinge": 2, - "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_Classification": 1, - "*__pyx_vtabptr_7sklearn_12linear_model_8sgd_fast_Hinge": 1, - "*__pyx_vtabptr_7sklearn_5utils_13weight_vector_WeightVector": 1, - "CYTHON_REFNANNY": 3, - "__Pyx_RefNannyAPIStruct": 3, - "*__Pyx_RefNanny": 1, - "*__Pyx_RefNannyImportAPI": 1, - "*modname": 1, - "__Pyx_RefNannyDeclarations": 11, - "*__pyx_refnanny": 1, - "WITH_THREAD": 1, - "__Pyx_RefNannySetupContext": 12, - "acquire_gil": 4, - "PyGILState_STATE": 1, - "__pyx_gilstate_save": 2, - "PyGILState_Ensure": 1, - "__pyx_refnanny": 8, - "__Pyx_RefNanny": 8, - "SetupContext": 3, - "PyGILState_Release": 1, - "__Pyx_RefNannyFinishContext": 14, - "FinishContext": 1, - "__Pyx_INCREF": 6, - "INCREF": 1, - "__Pyx_DECREF": 20, - "DECREF": 1, - "__Pyx_GOTREF": 24, - "GOTREF": 1, - "__Pyx_GIVEREF": 9, - "GIVEREF": 1, - "__Pyx_XINCREF": 2, - "__Pyx_XDECREF": 20, - "__Pyx_XGOTREF": 2, - "__Pyx_XGIVEREF": 5, - "Py_DECREF": 2, - "Py_XINCREF": 1, - "Py_XDECREF": 1, - "__Pyx_CLEAR": 1, - "__Pyx_XCLEAR": 1, - "*__Pyx_GetName": 1, - "__Pyx_ErrRestore": 1, - "*type": 4, - "*tb": 2, - "__Pyx_ErrFetch": 1, - "**type": 1, - "**value": 1, - "**tb": 1, - "__Pyx_Raise": 4, - "*cause": 1, - "__Pyx_RaiseArgtupleInvalid": 7, - "func_name": 2, - "num_min": 1, - "num_max": 1, - "num_found": 1, - "__Pyx_RaiseDoubleKeywordsError": 1, - "kw_name": 1, - "__Pyx_ParseOptionalKeywords": 4, - "*kwds": 1, - "**argnames": 1, - "*kwds2": 1, - "*values": 1, - "num_pos_args": 1, - "function_name": 1, - "__Pyx_ArgTypeTest": 1, - "none_allowed": 1, - "__Pyx_GetBufferAndValidate": 1, - "Py_buffer*": 2, - "dtype": 1, - "nd": 1, - "cast": 1, - "__Pyx_SafeReleaseBuffer": 1, - "__Pyx_TypeTest": 1, - "__Pyx_RaiseBufferFallbackError": 1, - "*__Pyx_GetItemInt_Generic": 1, - "*r": 7, - "PyObject_GetItem": 1, - "__Pyx_GetItemInt_List": 1, - "to_py_func": 6, - "__Pyx_GetItemInt_List_Fast": 1, - "__Pyx_GetItemInt_Generic": 6, - "*__Pyx_GetItemInt_List_Fast": 1, - "PyList_GET_SIZE": 5, - "PyList_GET_ITEM": 3, - "PySequence_GetItem": 3, - "__Pyx_GetItemInt_Tuple": 1, - "__Pyx_GetItemInt_Tuple_Fast": 1, - "*__Pyx_GetItemInt_Tuple_Fast": 1, - "PyTuple_GET_SIZE": 14, - "PyTuple_GET_ITEM": 15, - "__Pyx_GetItemInt": 1, - "__Pyx_GetItemInt_Fast": 2, - "PyList_CheckExact": 1, - "PyTuple_CheckExact": 1, - "PySequenceMethods": 1, - "*m": 1, - "tp_as_sequence": 1, - "sq_item": 2, - "sq_length": 2, - "PySequence_Check": 1, - "__Pyx_RaiseTooManyValuesError": 1, - "expected": 2, - "__Pyx_RaiseNeedMoreValuesError": 1, - "__Pyx_RaiseNoneNotIterableError": 1, - "__Pyx_IterFinish": 1, - "__Pyx_IternextUnpackEndCheck": 1, - "*retval": 1, - "shape": 1, - "strides": 1, - "suboffsets": 1, - "__Pyx_Buf_DimInfo": 2, - "pybuffer": 1, - "__Pyx_Buffer": 2, - "*rcbuffer": 1, - "diminfo": 1, - "__Pyx_LocalBuf_ND": 1, - "__Pyx_GetBuffer": 2, - "*view": 2, - "__Pyx_ReleaseBuffer": 2, - "PyObject_GetBuffer": 1, - "PyBuffer_Release": 1, - "__Pyx_zeros": 1, - "__Pyx_minusones": 1, - "*__Pyx_Import": 1, - "*from_list": 1, - "__Pyx_RaiseImportError": 1, - "__Pyx_Print": 1, - "__pyx_print": 1, - "__pyx_print_kwargs": 1, - "__Pyx_PrintOne": 1, - "__Pyx_CREAL": 4, - ".real": 3, - "__Pyx_CIMAG": 4, - ".imag": 3, - "__real__": 1, - "__imag__": 1, - "__Pyx_SET_CREAL": 2, - "__Pyx_SET_CIMAG": 2, - "__pyx_t_float_complex_from_parts": 1, - "__Pyx_c_eqf": 2, - "__Pyx_c_sumf": 2, - "__Pyx_c_difff": 2, - "__Pyx_c_prodf": 2, - "__Pyx_c_quotf": 2, - "__Pyx_c_negf": 2, - "__Pyx_c_is_zerof": 3, - "__Pyx_c_conjf": 3, - "conj": 3, - "__Pyx_c_absf": 3, - "abs": 2, - "__Pyx_c_powf": 3, - "pow": 2, - "conjf": 1, - "cabsf": 1, - "cpowf": 1, - "__pyx_t_double_complex_from_parts": 1, - "__Pyx_c_eq": 2, - "__Pyx_c_sum": 2, - "__Pyx_c_diff": 2, - "__Pyx_c_prod": 2, - "__Pyx_c_quot": 2, - "__Pyx_c_neg": 2, - "__Pyx_c_is_zero": 3, - "__Pyx_c_conj": 3, - "__Pyx_c_abs": 3, - "__Pyx_c_pow": 3, - "cabs": 1, - "cpow": 1, - "__Pyx_PyInt_AsUnsignedChar": 1, - "__Pyx_PyInt_AsUnsignedShort": 1, - "__Pyx_PyInt_AsUnsignedInt": 1, - "__Pyx_PyInt_AsChar": 1, - "__Pyx_PyInt_AsShort": 1, - "signed": 5, - "__Pyx_PyInt_AsSignedChar": 1, - "__Pyx_PyInt_AsSignedShort": 1, - "__Pyx_PyInt_AsSignedInt": 1, - "__Pyx_PyInt_AsLongDouble": 1, - "__Pyx_PyInt_AsUnsignedLong": 1, - "__Pyx_PyInt_AsUnsignedLongLong": 1, - "__Pyx_PyInt_AsLong": 1, - "__Pyx_PyInt_AsLongLong": 1, - "__Pyx_PyInt_AsSignedLong": 1, - "__Pyx_PyInt_AsSignedLongLong": 1, - "__Pyx_WriteUnraisable": 4, - "clineno": 1, - "lineno": 1, - "*filename": 2, - "__Pyx_check_binary_version": 1, - "__Pyx_SetVtable": 1, - "*vtable": 1, - "__Pyx_PyIdentifier_FromString": 3, - "*__Pyx_ImportModule": 1, - "*__Pyx_ImportType": 1, - "*module_name": 1, - "*class_name": 1, - "__Pyx_GetVtable": 1, - "code_line": 4, - "PyCodeObject*": 2, - "code_object": 2, - "__Pyx_CodeObjectCacheEntry": 1, - "__Pyx_CodeObjectCache": 2, - "max_count": 1, - "__Pyx_CodeObjectCacheEntry*": 2, - "entries": 2, - "__pyx_code_cache": 1, - "__pyx_bisect_code_objects": 1, - "PyCodeObject": 1, - "*__pyx_find_code_object": 1, - "__pyx_insert_code_object": 1, - "__Pyx_AddTraceback": 7, - "*funcname": 1, - "c_line": 1, - "py_line": 1, - "__Pyx_InitStrings": 1, - "*__pyx_ptype_7cpython_4type_type": 1, - "*__pyx_ptype_5numpy_dtype": 1, - "*__pyx_ptype_5numpy_flatiter": 1, - "*__pyx_ptype_5numpy_broadcast": 1, - "*__pyx_ptype_5numpy_ndarray": 1, - "*__pyx_ptype_5numpy_ufunc": 1, - "*__pyx_f_5numpy__util_dtypestring": 1, - "PyArray_Descr": 1, - "*__pyx_ptype_7sklearn_5utils_13weight_vector_WeightVector": 1, - "*__pyx_ptype_7sklearn_5utils_11seq_dataset_SequentialDataset": 1, - "*__pyx_ptype_7sklearn_5utils_11seq_dataset_ArrayDataset": 1, - "*__pyx_ptype_7sklearn_5utils_11seq_dataset_CSRDataset": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_LossFunction": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Regression": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Classification": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_ModifiedHuber": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Hinge": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_SquaredHinge": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Log": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_SquaredLoss": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Huber": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_EpsilonInsensitive": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_SquaredEpsilonInsensitive": 1, - "__pyx_f_7sklearn_12linear_model_8sgd_fast_max": 1, - "__pyx_f_7sklearn_12linear_model_8sgd_fast_min": 1, - "__pyx_f_7sklearn_12linear_model_8sgd_fast_sqnorm": 1, - "__pyx_f_7sklearn_12linear_model_8sgd_fast_l1penalty": 1, - "__Pyx_TypeInfo_nn___pyx_t_7sklearn_12linear_model_8sgd_fast_DOUBLE": 1, - "__Pyx_MODULE_NAME": 1, - "__pyx_module_is_main_sklearn__linear_model__sgd_fast": 1, - "*__pyx_builtin_NotImplementedError": 1, - "*__pyx_builtin_range": 1, - "*__pyx_builtin_ValueError": 1, - "*__pyx_builtin_RuntimeError": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12LossFunction_loss": 2, - "*__pyx_v_self": 52, - "__pyx_v_p": 46, - "__pyx_v_y": 46, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12LossFunction_2dloss": 2, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_10Regression_loss": 2, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_10Regression_2dloss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_14Classification_loss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_14Classification_2dloss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_13ModifiedHuber_loss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_13ModifiedHuber_2dloss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_13ModifiedHuber_4__reduce__": 1, - "__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Hinge___init__": 1, - "__pyx_v_threshold": 2, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Hinge_2loss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Hinge_4dloss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Hinge_6__reduce__": 1, - "__pyx_pf_7sklearn_12linear_model_8sgd_fast_12SquaredHinge___init__": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12SquaredHinge_2loss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12SquaredHinge_4dloss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12SquaredHinge_6__reduce__": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_3Log_loss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_3Log_2dloss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_3Log_4__reduce__": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_11SquaredLoss_loss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_11SquaredLoss_2dloss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_11SquaredLoss_4__reduce__": 1, - "__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Huber___init__": 1, - "__pyx_v_c": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Huber_2loss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Huber_4dloss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Huber_6__reduce__": 1, - "__pyx_pf_7sklearn_12linear_model_8sgd_fast_18EpsilonInsensitive___init__": 1, - "__pyx_v_epsilon": 2, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_18EpsilonInsensitive_2loss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_18EpsilonInsensitive_4dloss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_18EpsilonInsensitive_6__reduce__": 1, - "__pyx_pf_7sklearn_12linear_model_8sgd_fast_25SquaredEpsilonInsensitive___init__": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_25SquaredEpsilonInsensitive_2loss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_25SquaredEpsilonInsensitive_4dloss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_25SquaredEpsilonInsensitive_6__reduce__": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_plain_sgd": 1, - "*__pyx_self": 1, - "*__pyx_v_weights": 1, - "__pyx_v_intercept": 1, - "*__pyx_v_loss": 1, - "__pyx_v_penalty_type": 1, - "__pyx_v_alpha": 1, - "__pyx_v_C": 1, - "__pyx_v_rho": 1, - "*__pyx_v_dataset": 1, - "__pyx_v_n_iter": 1, - "__pyx_v_fit_intercept": 1, - "__pyx_v_verbose": 1, - "__pyx_v_shuffle": 1, - "*__pyx_v_seed": 1, - "__pyx_v_weight_pos": 1, - "__pyx_v_weight_neg": 1, - "__pyx_v_learning_rate": 1, - "__pyx_v_eta0": 1, - "__pyx_v_power_t": 1, - "__pyx_v_t": 1, - "__pyx_v_intercept_decay": 1, - "__pyx_pf_5numpy_7ndarray___getbuffer__": 1, - "*__pyx_v_info": 2, - "__pyx_v_flags": 1, - "__pyx_pf_5numpy_7ndarray_2__releasebuffer__": 1, - "__pyx_k_1": 1, - "__pyx_k_2": 1, - "__pyx_k_3": 1, - "__pyx_k_4": 1, - "__pyx_k_6": 1, - "__pyx_k_8": 1, - "__pyx_k_10": 1, - "__pyx_k_12": 1, - "__pyx_k_13": 1, - "__pyx_k_16": 1, - "__pyx_k_20": 1, - "__pyx_k_21": 1, - "__pyx_k__B": 1, - "__pyx_k__C": 1, - "__pyx_k__H": 1, - "__pyx_k__I": 1, - "__pyx_k__L": 1, - "__pyx_k__O": 1, - "__pyx_k__Q": 1, - "__pyx_k__b": 1, - "__pyx_k__c": 1, - "__pyx_k__d": 1, - "__pyx_k__f": 1, - "__pyx_k__g": 1, - "__pyx_k__h": 1, - "__pyx_k__i": 1, - "__pyx_k__l": 1, - "__pyx_k__p": 1, - "__pyx_k__q": 1, - "__pyx_k__t": 1, - "__pyx_k__u": 1, - "__pyx_k__w": 1, - "__pyx_k__y": 1, - "__pyx_k__Zd": 1, - "__pyx_k__Zf": 1, - "__pyx_k__Zg": 1, - "__pyx_k__np": 1, - "__pyx_k__any": 1, - "__pyx_k__eta": 1, - "__pyx_k__rho": 1, - "__pyx_k__sys": 1, - "__pyx_k__eta0": 1, - "__pyx_k__loss": 1, - "__pyx_k__seed": 1, - "__pyx_k__time": 1, - "__pyx_k__xnnz": 1, - "__pyx_k__alpha": 1, - "__pyx_k__count": 1, - "__pyx_k__dloss": 1, - "__pyx_k__dtype": 1, - "__pyx_k__epoch": 1, - "__pyx_k__isinf": 1, - "__pyx_k__isnan": 1, - "__pyx_k__numpy": 1, - "__pyx_k__order": 1, - "__pyx_k__range": 1, - "__pyx_k__shape": 1, - "__pyx_k__zeros": 1, - "__pyx_k__n_iter": 1, - "__pyx_k__update": 1, - "__pyx_k__dataset": 1, - "__pyx_k__epsilon": 1, - "__pyx_k__float64": 1, - "__pyx_k__nonzero": 1, - "__pyx_k__power_t": 1, - "__pyx_k__shuffle": 1, - "__pyx_k__sumloss": 1, - "__pyx_k__t_start": 1, - "__pyx_k__verbose": 1, - "__pyx_k__weights": 1, - "__pyx_k____main__": 1, - "__pyx_k____test__": 1, - "__pyx_k__is_hinge": 1, - "__pyx_k__intercept": 1, - "__pyx_k__n_samples": 1, - "__pyx_k__plain_sgd": 1, - "__pyx_k__threshold": 1, - "__pyx_k__x_ind_ptr": 1, - "__pyx_k__ValueError": 1, - "__pyx_k__n_features": 1, - "__pyx_k__q_data_ptr": 1, - "__pyx_k__weight_neg": 1, - "__pyx_k__weight_pos": 1, - "__pyx_k__x_data_ptr": 1, - "__pyx_k__RuntimeError": 1, - "__pyx_k__class_weight": 1, - "__pyx_k__penalty_type": 1, - "__pyx_k__fit_intercept": 1, - "__pyx_k__learning_rate": 1, - "__pyx_k__sample_weight": 1, - "__pyx_k__intercept_decay": 1, - "__pyx_k__NotImplementedError": 1, - "*__pyx_kp_s_1": 1, - "*__pyx_kp_u_10": 1, - "*__pyx_kp_u_12": 1, - "*__pyx_kp_u_13": 1, - "*__pyx_kp_u_16": 1, - "*__pyx_kp_s_2": 1, - "*__pyx_kp_s_20": 1, - "*__pyx_n_s_21": 1, - "*__pyx_kp_s_3": 1, - "*__pyx_kp_s_4": 1, - "*__pyx_kp_u_6": 1, - "*__pyx_kp_u_8": 1, - "*__pyx_n_s__C": 1, - "*__pyx_n_s__NotImplementedError": 1, - "*__pyx_n_s__RuntimeError": 1, - "*__pyx_n_s__ValueError": 1, - "*__pyx_n_s____main__": 1, - "*__pyx_n_s____test__": 1, - "*__pyx_n_s__alpha": 1, - "*__pyx_n_s__any": 1, - "*__pyx_n_s__c": 1, - "*__pyx_n_s__class_weight": 1, - "*__pyx_n_s__count": 1, - "*__pyx_n_s__dataset": 1, - "*__pyx_n_s__dloss": 1, - "*__pyx_n_s__dtype": 1, - "*__pyx_n_s__epoch": 1, - "*__pyx_n_s__epsilon": 1, - "*__pyx_n_s__eta": 1, - "*__pyx_n_s__eta0": 1, - "*__pyx_n_s__fit_intercept": 1, - "*__pyx_n_s__float64": 1, - "*__pyx_n_s__i": 1, - "*__pyx_n_s__intercept": 1, - "*__pyx_n_s__intercept_decay": 1, - "*__pyx_n_s__is_hinge": 1, - "*__pyx_n_s__isinf": 1, - "*__pyx_n_s__isnan": 1, - "*__pyx_n_s__learning_rate": 1, - "*__pyx_n_s__loss": 1, - "*__pyx_n_s__n_features": 1, - "*__pyx_n_s__n_iter": 1, - "*__pyx_n_s__n_samples": 1, - "*__pyx_n_s__nonzero": 1, - "*__pyx_n_s__np": 1, - "*__pyx_n_s__numpy": 1, - "*__pyx_n_s__order": 1, - "*__pyx_n_s__p": 1, - "*__pyx_n_s__penalty_type": 1, - "*__pyx_n_s__plain_sgd": 1, - "*__pyx_n_s__power_t": 1, - "*__pyx_n_s__q": 1, - "*__pyx_n_s__q_data_ptr": 1, - "*__pyx_n_s__range": 1, - "*__pyx_n_s__rho": 1, - "*__pyx_n_s__sample_weight": 1, - "*__pyx_n_s__seed": 1, - "*__pyx_n_s__shape": 1, - "*__pyx_n_s__shuffle": 1, - "*__pyx_n_s__sumloss": 1, - "*__pyx_n_s__sys": 1, - "*__pyx_n_s__t": 1, - "*__pyx_n_s__t_start": 1, - "*__pyx_n_s__threshold": 1, - "*__pyx_n_s__time": 1, - "*__pyx_n_s__u": 1, - "*__pyx_n_s__update": 1, - "*__pyx_n_s__verbose": 1, - "*__pyx_n_s__w": 1, - "*__pyx_n_s__weight_neg": 1, - "*__pyx_n_s__weight_pos": 1, - "*__pyx_n_s__weights": 1, - "*__pyx_n_s__x_data_ptr": 1, - "*__pyx_n_s__x_ind_ptr": 1, - "*__pyx_n_s__xnnz": 1, - "*__pyx_n_s__y": 1, - "*__pyx_n_s__zeros": 1, - "*__pyx_int_15": 1, - "*__pyx_k_tuple_5": 1, - "*__pyx_k_tuple_7": 1, - "*__pyx_k_tuple_9": 1, - "*__pyx_k_tuple_11": 1, - "*__pyx_k_tuple_14": 1, - "*__pyx_k_tuple_15": 1, - "*__pyx_k_tuple_17": 1, - "*__pyx_k_tuple_18": 1, - "*__pyx_k_codeobj_19": 1, - "*__pyx_pw_7sklearn_12linear_model_8sgd_fast_12LossFunction_1loss": 3, - "*__pyx_args": 9, - "*__pyx_kwds": 9, - "__pyx_f_7sklearn_12linear_model_8sgd_fast_12LossFunction_loss": 1, - "__pyx_skip_dispatch": 6, - "__pyx_r": 39, - "*__pyx_t_1": 6, - "*__pyx_t_2": 3, - "*__pyx_t_3": 3, - "*__pyx_t_4": 3, - "__pyx_t_5": 12, - "__pyx_v_self": 15, - "tp_dictoffset": 3, - "__pyx_t_1": 69, - "PyObject_GetAttr": 3, - "__pyx_n_s__loss": 2, - "__pyx_filename": 51, - "__pyx_f": 42, - "__pyx_L1_error": 33, - "PyCFunction_Check": 3, - "PyCFunction_GET_FUNCTION": 3, - "PyCFunction": 3, - "__pyx_pw_7sklearn_12linear_model_8sgd_fast_12LossFunction_1loss": 1, - "__pyx_t_2": 21, - "PyFloat_FromDouble": 9, - "__pyx_t_3": 39, - "__pyx_t_4": 27, - "PyTuple_New": 3, - "PyTuple_SET_ITEM": 6, - "PyObject_Call": 6, - "PyErr_Occurred": 9, - "__pyx_L0": 18, - "__pyx_builtin_NotImplementedError": 3, - "__pyx_empty_tuple": 3, - "__pyx_doc_7sklearn_12linear_model_8sgd_fast_12LossFunction_loss": 1, - "*__pyx_r": 6, - "**__pyx_pyargnames": 3, - "__pyx_n_s__p": 6, - "__pyx_n_s__y": 6, - "values": 30, - "__pyx_kwds": 15, - "kw_args": 15, - "pos_args": 12, - "__pyx_args": 21, - "__pyx_L5_argtuple_error": 12, - "PyDict_Size": 3, - "PyDict_GetItem": 6, - "__pyx_L3_error": 18, - "__pyx_pyargnames": 3, - "__pyx_L4_argument_unpacking_done": 6, - "__pyx_pf_7sklearn_12linear_model_8sgd_fast_12LossFunction_loss": 1, - "__pyx_vtab": 2, - "loss": 1, - "*__pyx_pw_7sklearn_12linear_model_8sgd_fast_12LossFunction_3dloss": 3, - "__pyx_f_7sklearn_12linear_model_8sgd_fast_12LossFunction_dloss": 1, - "__pyx_n_s__dloss": 1, - "__pyx_pw_7sklearn_12linear_model_8sgd_fast_12LossFunction_3dloss": 1, - "__pyx_doc_7sklearn_12linear_model_8sgd_fast_12LossFunction_2dloss": 1, - "__pyx_pf_7sklearn_12linear_model_8sgd_fast_12LossFunction_2dloss": 1, - "dloss": 1, - "*__pyx_pw_7sklearn_12linear_model_8sgd_fast_10Regression_1loss": 3, - "__pyx_f_7sklearn_12linear_model_8sgd_fast_10Regression_loss": 1, - "__pyx_pw_7sklearn_12linear_model_8sgd_fast_10Regression_1loss": 1, - "__pyx_pf_7sklearn_12linear_model_8sgd_fast_10Regression_loss": 1, - "__pyx_base.__pyx_vtab": 1, - "__pyx_base.loss": 1, - "__wglew_h__": 2, - "__WGLEW_H__": 1, - "__wglext_h_": 2, - "wglext.h": 1, - "wglew.h": 1, - "WINAPI": 119, - "": 1, - "GLEW_STATIC": 1, - "WGL_3DFX_multisample": 2, - "WGL_SAMPLE_BUFFERS_3DFX": 1, - "WGL_SAMPLES_3DFX": 1, - "WGLEW_3DFX_multisample": 1, - "WGLEW_GET_VAR": 49, - "__WGLEW_3DFX_multisample": 2, - "WGL_3DL_stereo_control": 2, - "WGL_STEREO_EMITTER_ENABLE_3DL": 1, - "WGL_STEREO_EMITTER_DISABLE_3DL": 1, - "WGL_STEREO_POLARITY_NORMAL_3DL": 1, - "WGL_STEREO_POLARITY_INVERT_3DL": 1, - "BOOL": 84, - "PFNWGLSETSTEREOEMITTERSTATE3DLPROC": 2, - "HDC": 65, - "hDC": 33, - "UINT": 30, - "uState": 1, - "wglSetStereoEmitterState3DL": 1, - "WGLEW_GET_FUN": 120, - "__wglewSetStereoEmitterState3DL": 2, - "WGLEW_3DL_stereo_control": 1, - "__WGLEW_3DL_stereo_control": 2, - "WGL_AMD_gpu_association": 2, - "WGL_GPU_VENDOR_AMD": 1, - "F00": 1, - "WGL_GPU_RENDERER_STRING_AMD": 1, - "F01": 1, - "WGL_GPU_OPENGL_VERSION_STRING_AMD": 1, - "F02": 1, - "WGL_GPU_FASTEST_TARGET_GPUS_AMD": 1, - "A2": 2, - "WGL_GPU_RAM_AMD": 1, - "A3": 2, - "WGL_GPU_CLOCK_AMD": 1, - "A4": 2, - "WGL_GPU_NUM_PIPES_AMD": 1, - "A5": 3, - "WGL_GPU_NUM_SIMD_AMD": 1, - "A6": 2, - "WGL_GPU_NUM_RB_AMD": 1, - "A7": 2, - "WGL_GPU_NUM_SPI_AMD": 1, - "A8": 2, - "VOID": 6, - "PFNWGLBLITCONTEXTFRAMEBUFFERAMDPROC": 2, - "HGLRC": 14, - "dstCtx": 1, - "GLint": 18, - "srcX0": 1, - "srcY0": 1, - "srcX1": 1, - "srcY1": 1, - "dstX0": 1, - "dstY0": 1, - "dstX1": 1, - "dstY1": 1, - "GLbitfield": 1, - "mask": 1, - "GLenum": 8, - "filter": 1, - "PFNWGLCREATEASSOCIATEDCONTEXTAMDPROC": 2, - "PFNWGLCREATEASSOCIATEDCONTEXTATTRIBSAMDPROC": 2, - "hShareContext": 2, - "attribList": 2, - "PFNWGLDELETEASSOCIATEDCONTEXTAMDPROC": 2, - "hglrc": 5, - "PFNWGLGETCONTEXTGPUIDAMDPROC": 2, - "PFNWGLGETCURRENTASSOCIATEDCONTEXTAMDPROC": 2, - "PFNWGLGETGPUIDSAMDPROC": 2, - "maxCount": 1, - "UINT*": 6, - "ids": 1, - "INT": 3, - "PFNWGLGETGPUINFOAMDPROC": 2, - "property": 1, - "dataType": 1, - "PFNWGLMAKEASSOCIATEDCONTEXTCURRENTAMDPROC": 2, - "wglBlitContextFramebufferAMD": 1, - "__wglewBlitContextFramebufferAMD": 2, - "wglCreateAssociatedContextAMD": 1, - "__wglewCreateAssociatedContextAMD": 2, - "wglCreateAssociatedContextAttribsAMD": 1, - "__wglewCreateAssociatedContextAttribsAMD": 2, - "wglDeleteAssociatedContextAMD": 1, - "__wglewDeleteAssociatedContextAMD": 2, - "wglGetContextGPUIDAMD": 1, - "__wglewGetContextGPUIDAMD": 2, - "wglGetCurrentAssociatedContextAMD": 1, - "__wglewGetCurrentAssociatedContextAMD": 2, - "wglGetGPUIDsAMD": 1, - "__wglewGetGPUIDsAMD": 2, - "wglGetGPUInfoAMD": 1, - "__wglewGetGPUInfoAMD": 2, - "wglMakeAssociatedContextCurrentAMD": 1, - "__wglewMakeAssociatedContextCurrentAMD": 2, - "WGLEW_AMD_gpu_association": 1, - "__WGLEW_AMD_gpu_association": 2, - "WGL_ARB_buffer_region": 2, - "WGL_FRONT_COLOR_BUFFER_BIT_ARB": 1, - "WGL_BACK_COLOR_BUFFER_BIT_ARB": 1, - "WGL_DEPTH_BUFFER_BIT_ARB": 1, - "WGL_STENCIL_BUFFER_BIT_ARB": 1, - "HANDLE": 14, - "PFNWGLCREATEBUFFERREGIONARBPROC": 2, - "iLayerPlane": 5, - "uType": 1, - "PFNWGLDELETEBUFFERREGIONARBPROC": 2, - "hRegion": 3, - "PFNWGLRESTOREBUFFERREGIONARBPROC": 2, - "width": 3, - "height": 3, - "xSrc": 1, - "ySrc": 1, - "PFNWGLSAVEBUFFERREGIONARBPROC": 2, - "wglCreateBufferRegionARB": 1, - "__wglewCreateBufferRegionARB": 2, - "wglDeleteBufferRegionARB": 1, - "__wglewDeleteBufferRegionARB": 2, - "wglRestoreBufferRegionARB": 1, - "__wglewRestoreBufferRegionARB": 2, - "wglSaveBufferRegionARB": 1, - "__wglewSaveBufferRegionARB": 2, - "WGLEW_ARB_buffer_region": 1, - "__WGLEW_ARB_buffer_region": 2, - "WGL_ARB_create_context": 2, - "WGL_CONTEXT_DEBUG_BIT_ARB": 1, - "WGL_CONTEXT_FORWARD_COMPATIBLE_BIT_ARB": 1, - "WGL_CONTEXT_MAJOR_VERSION_ARB": 1, - "WGL_CONTEXT_MINOR_VERSION_ARB": 1, - "WGL_CONTEXT_LAYER_PLANE_ARB": 1, - "WGL_CONTEXT_FLAGS_ARB": 1, - "ERROR_INVALID_VERSION_ARB": 1, - "ERROR_INVALID_PROFILE_ARB": 1, - "PFNWGLCREATECONTEXTATTRIBSARBPROC": 2, - "wglCreateContextAttribsARB": 1, - "__wglewCreateContextAttribsARB": 2, - "WGLEW_ARB_create_context": 1, - "__WGLEW_ARB_create_context": 2, - "WGL_ARB_create_context_profile": 2, - "WGL_CONTEXT_CORE_PROFILE_BIT_ARB": 1, - "WGL_CONTEXT_COMPATIBILITY_PROFILE_BIT_ARB": 1, - "WGL_CONTEXT_PROFILE_MASK_ARB": 1, - "WGLEW_ARB_create_context_profile": 1, - "__WGLEW_ARB_create_context_profile": 2, - "WGL_ARB_create_context_robustness": 2, - "WGL_CONTEXT_ROBUST_ACCESS_BIT_ARB": 1, - "WGL_LOSE_CONTEXT_ON_RESET_ARB": 1, - "WGL_CONTEXT_RESET_NOTIFICATION_STRATEGY_ARB": 1, - "WGL_NO_RESET_NOTIFICATION_ARB": 1, - "WGLEW_ARB_create_context_robustness": 1, - "__WGLEW_ARB_create_context_robustness": 2, - "WGL_ARB_extensions_string": 2, - "PFNWGLGETEXTENSIONSSTRINGARBPROC": 2, - "hdc": 16, - "wglGetExtensionsStringARB": 1, - "__wglewGetExtensionsStringARB": 2, - "WGLEW_ARB_extensions_string": 1, - "__WGLEW_ARB_extensions_string": 2, - "WGL_ARB_framebuffer_sRGB": 2, - "WGL_FRAMEBUFFER_SRGB_CAPABLE_ARB": 1, - "A9": 2, - "WGLEW_ARB_framebuffer_sRGB": 1, - "__WGLEW_ARB_framebuffer_sRGB": 2, - "WGL_ARB_make_current_read": 2, - "ERROR_INVALID_PIXEL_TYPE_ARB": 1, - "ERROR_INCOMPATIBLE_DEVICE_CONTEXTS_ARB": 1, - "PFNWGLGETCURRENTREADDCARBPROC": 2, - "PFNWGLMAKECONTEXTCURRENTARBPROC": 2, - "hDrawDC": 2, - "hReadDC": 2, - "wglGetCurrentReadDCARB": 1, - "__wglewGetCurrentReadDCARB": 2, - "wglMakeContextCurrentARB": 1, - "__wglewMakeContextCurrentARB": 2, - "WGLEW_ARB_make_current_read": 1, - "__WGLEW_ARB_make_current_read": 2, - "WGL_ARB_multisample": 2, - "WGL_SAMPLE_BUFFERS_ARB": 1, - "WGL_SAMPLES_ARB": 1, - "WGLEW_ARB_multisample": 1, - "__WGLEW_ARB_multisample": 2, - "WGL_ARB_pbuffer": 2, - "WGL_DRAW_TO_PBUFFER_ARB": 1, - "D": 8, - "WGL_MAX_PBUFFER_PIXELS_ARB": 1, - "WGL_MAX_PBUFFER_WIDTH_ARB": 1, - "WGL_MAX_PBUFFER_HEIGHT_ARB": 1, - "WGL_PBUFFER_LARGEST_ARB": 1, - "WGL_PBUFFER_WIDTH_ARB": 1, - "WGL_PBUFFER_HEIGHT_ARB": 1, - "WGL_PBUFFER_LOST_ARB": 1, - "DECLARE_HANDLE": 6, - "HPBUFFERARB": 12, - "PFNWGLCREATEPBUFFERARBPROC": 2, - "iPixelFormat": 6, - "iWidth": 2, - "iHeight": 2, - "piAttribList": 4, - "PFNWGLDESTROYPBUFFERARBPROC": 2, - "hPbuffer": 14, - "PFNWGLGETPBUFFERDCARBPROC": 2, - "PFNWGLQUERYPBUFFERARBPROC": 2, - "iAttribute": 8, - "piValue": 8, - "PFNWGLRELEASEPBUFFERDCARBPROC": 2, - "wglCreatePbufferARB": 1, - "__wglewCreatePbufferARB": 2, - "wglDestroyPbufferARB": 1, - "__wglewDestroyPbufferARB": 2, - "wglGetPbufferDCARB": 1, - "__wglewGetPbufferDCARB": 2, - "wglQueryPbufferARB": 1, - "__wglewQueryPbufferARB": 2, - "wglReleasePbufferDCARB": 1, - "__wglewReleasePbufferDCARB": 2, - "WGLEW_ARB_pbuffer": 1, - "__WGLEW_ARB_pbuffer": 2, - "WGL_ARB_pixel_format": 2, - "WGL_NUMBER_PIXEL_FORMATS_ARB": 1, - "WGL_DRAW_TO_WINDOW_ARB": 1, - "WGL_DRAW_TO_BITMAP_ARB": 1, - "WGL_ACCELERATION_ARB": 1, - "WGL_NEED_PALETTE_ARB": 1, - "WGL_NEED_SYSTEM_PALETTE_ARB": 1, - "WGL_SWAP_LAYER_BUFFERS_ARB": 1, - "WGL_SWAP_METHOD_ARB": 1, - "WGL_NUMBER_OVERLAYS_ARB": 1, - "WGL_NUMBER_UNDERLAYS_ARB": 1, - "WGL_TRANSPARENT_ARB": 1, - "WGL_SHARE_DEPTH_ARB": 1, - "WGL_SHARE_STENCIL_ARB": 1, - "WGL_SHARE_ACCUM_ARB": 1, - "WGL_SUPPORT_GDI_ARB": 1, - "WGL_SUPPORT_OPENGL_ARB": 1, - "WGL_DOUBLE_BUFFER_ARB": 1, - "WGL_STEREO_ARB": 1, - "WGL_PIXEL_TYPE_ARB": 1, - "WGL_COLOR_BITS_ARB": 1, - "WGL_RED_BITS_ARB": 1, - "WGL_RED_SHIFT_ARB": 1, - "WGL_GREEN_BITS_ARB": 1, - "WGL_GREEN_SHIFT_ARB": 1, - "WGL_BLUE_BITS_ARB": 1, - "WGL_BLUE_SHIFT_ARB": 1, - "WGL_ALPHA_BITS_ARB": 1, - "B": 9, - "WGL_ALPHA_SHIFT_ARB": 1, - "WGL_ACCUM_BITS_ARB": 1, - "WGL_ACCUM_RED_BITS_ARB": 1, - "WGL_ACCUM_GREEN_BITS_ARB": 1, - "WGL_ACCUM_BLUE_BITS_ARB": 1, - "WGL_ACCUM_ALPHA_BITS_ARB": 1, - "WGL_DEPTH_BITS_ARB": 1, - "WGL_STENCIL_BITS_ARB": 1, - "WGL_AUX_BUFFERS_ARB": 1, - "WGL_NO_ACCELERATION_ARB": 1, - "WGL_GENERIC_ACCELERATION_ARB": 1, - "WGL_FULL_ACCELERATION_ARB": 1, - "WGL_SWAP_EXCHANGE_ARB": 1, - "WGL_SWAP_COPY_ARB": 1, - "WGL_SWAP_UNDEFINED_ARB": 1, - "WGL_TYPE_RGBA_ARB": 1, - "WGL_TYPE_COLORINDEX_ARB": 1, - "WGL_TRANSPARENT_RED_VALUE_ARB": 1, - "WGL_TRANSPARENT_GREEN_VALUE_ARB": 1, - "WGL_TRANSPARENT_BLUE_VALUE_ARB": 1, - "WGL_TRANSPARENT_ALPHA_VALUE_ARB": 1, - "WGL_TRANSPARENT_INDEX_VALUE_ARB": 1, - "PFNWGLCHOOSEPIXELFORMATARBPROC": 2, - "piAttribIList": 2, - "FLOAT": 4, - "*pfAttribFList": 2, - "nMaxFormats": 2, - "*piFormats": 2, - "*nNumFormats": 2, - "PFNWGLGETPIXELFORMATATTRIBFVARBPROC": 2, - "nAttributes": 4, - "piAttributes": 4, - "*pfValues": 2, - "PFNWGLGETPIXELFORMATATTRIBIVARBPROC": 2, - "*piValues": 2, - "wglChoosePixelFormatARB": 1, - "__wglewChoosePixelFormatARB": 2, - "wglGetPixelFormatAttribfvARB": 1, - "__wglewGetPixelFormatAttribfvARB": 2, - "wglGetPixelFormatAttribivARB": 1, - "__wglewGetPixelFormatAttribivARB": 2, - "WGLEW_ARB_pixel_format": 1, - "__WGLEW_ARB_pixel_format": 2, - "WGL_ARB_pixel_format_float": 2, - "WGL_TYPE_RGBA_FLOAT_ARB": 1, - "A0": 3, - "WGLEW_ARB_pixel_format_float": 1, - "__WGLEW_ARB_pixel_format_float": 2, - "WGL_ARB_render_texture": 2, - "WGL_BIND_TO_TEXTURE_RGB_ARB": 1, - "WGL_BIND_TO_TEXTURE_RGBA_ARB": 1, - "WGL_TEXTURE_FORMAT_ARB": 1, - "WGL_TEXTURE_TARGET_ARB": 1, - "WGL_MIPMAP_TEXTURE_ARB": 1, - "WGL_TEXTURE_RGB_ARB": 1, - "WGL_TEXTURE_RGBA_ARB": 1, - "WGL_NO_TEXTURE_ARB": 2, - "WGL_TEXTURE_CUBE_MAP_ARB": 1, - "WGL_TEXTURE_1D_ARB": 1, - "WGL_TEXTURE_2D_ARB": 1, - "WGL_MIPMAP_LEVEL_ARB": 1, - "WGL_CUBE_MAP_FACE_ARB": 1, - "WGL_TEXTURE_CUBE_MAP_POSITIVE_X_ARB": 1, - "WGL_TEXTURE_CUBE_MAP_NEGATIVE_X_ARB": 1, - "WGL_TEXTURE_CUBE_MAP_POSITIVE_Y_ARB": 1, - "WGL_TEXTURE_CUBE_MAP_NEGATIVE_Y_ARB": 1, - "WGL_TEXTURE_CUBE_MAP_POSITIVE_Z_ARB": 1, - "WGL_TEXTURE_CUBE_MAP_NEGATIVE_Z_ARB": 1, - "WGL_FRONT_LEFT_ARB": 1, - "WGL_FRONT_RIGHT_ARB": 1, - "WGL_BACK_LEFT_ARB": 1, - "WGL_BACK_RIGHT_ARB": 1, - "WGL_AUX0_ARB": 1, - "WGL_AUX1_ARB": 1, - "WGL_AUX2_ARB": 1, - "WGL_AUX3_ARB": 1, - "WGL_AUX4_ARB": 1, - "WGL_AUX5_ARB": 1, - "WGL_AUX6_ARB": 1, - "WGL_AUX7_ARB": 1, - "WGL_AUX8_ARB": 1, - "WGL_AUX9_ARB": 1, - "PFNWGLBINDTEXIMAGEARBPROC": 2, - "iBuffer": 2, - "PFNWGLRELEASETEXIMAGEARBPROC": 2, - "PFNWGLSETPBUFFERATTRIBARBPROC": 2, - "wglBindTexImageARB": 1, - "__wglewBindTexImageARB": 2, - "wglReleaseTexImageARB": 1, - "__wglewReleaseTexImageARB": 2, - "wglSetPbufferAttribARB": 1, - "__wglewSetPbufferAttribARB": 2, - "WGLEW_ARB_render_texture": 1, - "__WGLEW_ARB_render_texture": 2, - "WGL_ATI_pixel_format_float": 2, - "WGL_TYPE_RGBA_FLOAT_ATI": 1, - "GL_RGBA_FLOAT_MODE_ATI": 1, - "GL_COLOR_CLEAR_UNCLAMPED_VALUE_ATI": 1, - "WGLEW_ATI_pixel_format_float": 1, - "__WGLEW_ATI_pixel_format_float": 2, - "WGL_ATI_render_texture_rectangle": 2, - "WGL_TEXTURE_RECTANGLE_ATI": 1, - "WGLEW_ATI_render_texture_rectangle": 1, - "__WGLEW_ATI_render_texture_rectangle": 2, - "WGL_EXT_create_context_es2_profile": 2, - "WGL_CONTEXT_ES2_PROFILE_BIT_EXT": 1, - "WGLEW_EXT_create_context_es2_profile": 1, - "__WGLEW_EXT_create_context_es2_profile": 2, - "WGL_EXT_depth_float": 2, - "WGL_DEPTH_FLOAT_EXT": 1, - "WGLEW_EXT_depth_float": 1, - "__WGLEW_EXT_depth_float": 2, - "WGL_EXT_display_color_table": 2, - "GLboolean": 53, - "PFNWGLBINDDISPLAYCOLORTABLEEXTPROC": 2, - "GLushort": 3, - "PFNWGLCREATEDISPLAYCOLORTABLEEXTPROC": 2, - "PFNWGLDESTROYDISPLAYCOLORTABLEEXTPROC": 2, - "PFNWGLLOADDISPLAYCOLORTABLEEXTPROC": 2, - "GLushort*": 1, - "table": 1, - "GLuint": 9, - "wglBindDisplayColorTableEXT": 1, - "__wglewBindDisplayColorTableEXT": 2, - "wglCreateDisplayColorTableEXT": 1, - "__wglewCreateDisplayColorTableEXT": 2, - "wglDestroyDisplayColorTableEXT": 1, - "__wglewDestroyDisplayColorTableEXT": 2, - "wglLoadDisplayColorTableEXT": 1, - "__wglewLoadDisplayColorTableEXT": 2, - "WGLEW_EXT_display_color_table": 1, - "__WGLEW_EXT_display_color_table": 2, - "WGL_EXT_extensions_string": 2, - "PFNWGLGETEXTENSIONSSTRINGEXTPROC": 2, - "wglGetExtensionsStringEXT": 1, - "__wglewGetExtensionsStringEXT": 2, - "WGLEW_EXT_extensions_string": 1, - "__WGLEW_EXT_extensions_string": 2, - "WGL_EXT_framebuffer_sRGB": 2, - "WGL_FRAMEBUFFER_SRGB_CAPABLE_EXT": 1, - "WGLEW_EXT_framebuffer_sRGB": 1, - "__WGLEW_EXT_framebuffer_sRGB": 2, - "WGL_EXT_make_current_read": 2, - "ERROR_INVALID_PIXEL_TYPE_EXT": 1, - "PFNWGLGETCURRENTREADDCEXTPROC": 2, - "PFNWGLMAKECONTEXTCURRENTEXTPROC": 2, - "wglGetCurrentReadDCEXT": 1, - "__wglewGetCurrentReadDCEXT": 2, - "wglMakeContextCurrentEXT": 1, - "__wglewMakeContextCurrentEXT": 2, - "WGLEW_EXT_make_current_read": 1, - "__WGLEW_EXT_make_current_read": 2, - "WGL_EXT_multisample": 2, - "WGL_SAMPLE_BUFFERS_EXT": 1, - "WGL_SAMPLES_EXT": 1, - "WGLEW_EXT_multisample": 1, - "__WGLEW_EXT_multisample": 2, - "WGL_EXT_pbuffer": 2, - "WGL_DRAW_TO_PBUFFER_EXT": 1, - "WGL_MAX_PBUFFER_PIXELS_EXT": 1, - "WGL_MAX_PBUFFER_WIDTH_EXT": 1, - "WGL_MAX_PBUFFER_HEIGHT_EXT": 1, - "WGL_OPTIMAL_PBUFFER_WIDTH_EXT": 1, - "WGL_OPTIMAL_PBUFFER_HEIGHT_EXT": 1, - "WGL_PBUFFER_LARGEST_EXT": 1, - "WGL_PBUFFER_WIDTH_EXT": 1, - "WGL_PBUFFER_HEIGHT_EXT": 1, - "HPBUFFEREXT": 6, - "PFNWGLCREATEPBUFFEREXTPROC": 2, - "PFNWGLDESTROYPBUFFEREXTPROC": 2, - "PFNWGLGETPBUFFERDCEXTPROC": 2, - "PFNWGLQUERYPBUFFEREXTPROC": 2, - "PFNWGLRELEASEPBUFFERDCEXTPROC": 2, - "wglCreatePbufferEXT": 1, - "__wglewCreatePbufferEXT": 2, - "wglDestroyPbufferEXT": 1, - "__wglewDestroyPbufferEXT": 2, - "wglGetPbufferDCEXT": 1, - "__wglewGetPbufferDCEXT": 2, - "wglQueryPbufferEXT": 1, - "__wglewQueryPbufferEXT": 2, - "wglReleasePbufferDCEXT": 1, - "__wglewReleasePbufferDCEXT": 2, - "WGLEW_EXT_pbuffer": 1, - "__WGLEW_EXT_pbuffer": 2, - "WGL_EXT_pixel_format": 2, - "WGL_NUMBER_PIXEL_FORMATS_EXT": 1, - "WGL_DRAW_TO_WINDOW_EXT": 1, - "WGL_DRAW_TO_BITMAP_EXT": 1, - "WGL_ACCELERATION_EXT": 1, - "WGL_NEED_PALETTE_EXT": 1, - "WGL_NEED_SYSTEM_PALETTE_EXT": 1, - "WGL_SWAP_LAYER_BUFFERS_EXT": 1, - "WGL_SWAP_METHOD_EXT": 1, - "WGL_NUMBER_OVERLAYS_EXT": 1, - "WGL_NUMBER_UNDERLAYS_EXT": 1, - "WGL_TRANSPARENT_EXT": 1, - "WGL_TRANSPARENT_VALUE_EXT": 1, - "WGL_SHARE_DEPTH_EXT": 1, - "WGL_SHARE_STENCIL_EXT": 1, - "WGL_SHARE_ACCUM_EXT": 1, - "WGL_SUPPORT_GDI_EXT": 1, - "WGL_SUPPORT_OPENGL_EXT": 1, - "WGL_DOUBLE_BUFFER_EXT": 1, - "WGL_STEREO_EXT": 1, - "WGL_PIXEL_TYPE_EXT": 1, - "WGL_COLOR_BITS_EXT": 1, - "WGL_RED_BITS_EXT": 1, - "WGL_RED_SHIFT_EXT": 1, - "WGL_GREEN_BITS_EXT": 1, - "WGL_GREEN_SHIFT_EXT": 1, - "WGL_BLUE_BITS_EXT": 1, - "WGL_BLUE_SHIFT_EXT": 1, - "WGL_ALPHA_BITS_EXT": 1, - "WGL_ALPHA_SHIFT_EXT": 1, - "WGL_ACCUM_BITS_EXT": 1, - "WGL_ACCUM_RED_BITS_EXT": 1, - "WGL_ACCUM_GREEN_BITS_EXT": 1, - "WGL_ACCUM_BLUE_BITS_EXT": 1, - "WGL_ACCUM_ALPHA_BITS_EXT": 1, - "WGL_DEPTH_BITS_EXT": 1, - "WGL_STENCIL_BITS_EXT": 1, - "WGL_AUX_BUFFERS_EXT": 1, - "WGL_NO_ACCELERATION_EXT": 1, - "WGL_GENERIC_ACCELERATION_EXT": 1, - "WGL_FULL_ACCELERATION_EXT": 1, - "WGL_SWAP_EXCHANGE_EXT": 1, - "WGL_SWAP_COPY_EXT": 1, - "WGL_SWAP_UNDEFINED_EXT": 1, - "WGL_TYPE_RGBA_EXT": 1, - "WGL_TYPE_COLORINDEX_EXT": 1, - "PFNWGLCHOOSEPIXELFORMATEXTPROC": 2, - "PFNWGLGETPIXELFORMATATTRIBFVEXTPROC": 2, - "PFNWGLGETPIXELFORMATATTRIBIVEXTPROC": 2, - "wglChoosePixelFormatEXT": 1, - "__wglewChoosePixelFormatEXT": 2, - "wglGetPixelFormatAttribfvEXT": 1, - "__wglewGetPixelFormatAttribfvEXT": 2, - "wglGetPixelFormatAttribivEXT": 1, - "__wglewGetPixelFormatAttribivEXT": 2, - "WGLEW_EXT_pixel_format": 1, - "__WGLEW_EXT_pixel_format": 2, - "WGL_EXT_pixel_format_packed_float": 2, - "WGL_TYPE_RGBA_UNSIGNED_FLOAT_EXT": 1, - "WGLEW_EXT_pixel_format_packed_float": 1, - "__WGLEW_EXT_pixel_format_packed_float": 2, - "WGL_EXT_swap_control": 2, - "PFNWGLGETSWAPINTERVALEXTPROC": 2, - "PFNWGLSWAPINTERVALEXTPROC": 2, - "interval": 1, - "wglGetSwapIntervalEXT": 1, - "__wglewGetSwapIntervalEXT": 2, - "wglSwapIntervalEXT": 1, - "__wglewSwapIntervalEXT": 2, - "WGLEW_EXT_swap_control": 1, - "__WGLEW_EXT_swap_control": 2, - "WGL_I3D_digital_video_control": 2, - "WGL_DIGITAL_VIDEO_CURSOR_ALPHA_FRAMEBUFFER_I3D": 1, - "WGL_DIGITAL_VIDEO_CURSOR_ALPHA_VALUE_I3D": 1, - "WGL_DIGITAL_VIDEO_CURSOR_INCLUDED_I3D": 1, - "WGL_DIGITAL_VIDEO_GAMMA_CORRECTED_I3D": 1, - "PFNWGLGETDIGITALVIDEOPARAMETERSI3DPROC": 2, - "PFNWGLSETDIGITALVIDEOPARAMETERSI3DPROC": 2, - "wglGetDigitalVideoParametersI3D": 1, - "__wglewGetDigitalVideoParametersI3D": 2, - "wglSetDigitalVideoParametersI3D": 1, - "__wglewSetDigitalVideoParametersI3D": 2, - "WGLEW_I3D_digital_video_control": 1, - "__WGLEW_I3D_digital_video_control": 2, - "WGL_I3D_gamma": 2, - "WGL_GAMMA_TABLE_SIZE_I3D": 1, - "WGL_GAMMA_EXCLUDE_DESKTOP_I3D": 1, - "PFNWGLGETGAMMATABLEI3DPROC": 2, - "iEntries": 2, - "USHORT*": 2, - "puRed": 2, - "USHORT": 4, - "*puGreen": 2, - "*puBlue": 2, - "PFNWGLGETGAMMATABLEPARAMETERSI3DPROC": 2, - "PFNWGLSETGAMMATABLEI3DPROC": 2, - "PFNWGLSETGAMMATABLEPARAMETERSI3DPROC": 2, - "wglGetGammaTableI3D": 1, - "__wglewGetGammaTableI3D": 2, - "wglGetGammaTableParametersI3D": 1, - "__wglewGetGammaTableParametersI3D": 2, - "wglSetGammaTableI3D": 1, - "__wglewSetGammaTableI3D": 2, - "wglSetGammaTableParametersI3D": 1, - "__wglewSetGammaTableParametersI3D": 2, - "WGLEW_I3D_gamma": 1, - "__WGLEW_I3D_gamma": 2, - "WGL_I3D_genlock": 2, - "WGL_GENLOCK_SOURCE_MULTIVIEW_I3D": 1, - "WGL_GENLOCK_SOURCE_EXTERNAL_SYNC_I3D": 1, - "WGL_GENLOCK_SOURCE_EXTERNAL_FIELD_I3D": 1, - "WGL_GENLOCK_SOURCE_EXTERNAL_TTL_I3D": 1, - "WGL_GENLOCK_SOURCE_DIGITAL_SYNC_I3D": 1, - "WGL_GENLOCK_SOURCE_DIGITAL_FIELD_I3D": 1, - "WGL_GENLOCK_SOURCE_EDGE_FALLING_I3D": 1, - "WGL_GENLOCK_SOURCE_EDGE_RISING_I3D": 1, - "WGL_GENLOCK_SOURCE_EDGE_BOTH_I3D": 1, - "PFNWGLDISABLEGENLOCKI3DPROC": 2, - "PFNWGLENABLEGENLOCKI3DPROC": 2, - "PFNWGLGENLOCKSAMPLERATEI3DPROC": 2, - "uRate": 2, - "PFNWGLGENLOCKSOURCEDELAYI3DPROC": 2, - "uDelay": 2, - "PFNWGLGENLOCKSOURCEEDGEI3DPROC": 2, - "uEdge": 2, - "PFNWGLGENLOCKSOURCEI3DPROC": 2, - "uSource": 2, - "PFNWGLGETGENLOCKSAMPLERATEI3DPROC": 2, - "PFNWGLGETGENLOCKSOURCEDELAYI3DPROC": 2, - "PFNWGLGETGENLOCKSOURCEEDGEI3DPROC": 2, - "PFNWGLGETGENLOCKSOURCEI3DPROC": 2, - "PFNWGLISENABLEDGENLOCKI3DPROC": 2, - "BOOL*": 3, - "pFlag": 3, - "PFNWGLQUERYGENLOCKMAXSOURCEDELAYI3DPROC": 2, - "uMaxLineDelay": 1, - "*uMaxPixelDelay": 1, - "wglDisableGenlockI3D": 1, - "__wglewDisableGenlockI3D": 2, - "wglEnableGenlockI3D": 1, - "__wglewEnableGenlockI3D": 2, - "wglGenlockSampleRateI3D": 1, - "__wglewGenlockSampleRateI3D": 2, - "wglGenlockSourceDelayI3D": 1, - "__wglewGenlockSourceDelayI3D": 2, - "wglGenlockSourceEdgeI3D": 1, - "__wglewGenlockSourceEdgeI3D": 2, - "wglGenlockSourceI3D": 1, - "__wglewGenlockSourceI3D": 2, - "wglGetGenlockSampleRateI3D": 1, - "__wglewGetGenlockSampleRateI3D": 2, - "wglGetGenlockSourceDelayI3D": 1, - "__wglewGetGenlockSourceDelayI3D": 2, - "wglGetGenlockSourceEdgeI3D": 1, - "__wglewGetGenlockSourceEdgeI3D": 2, - "wglGetGenlockSourceI3D": 1, - "__wglewGetGenlockSourceI3D": 2, - "wglIsEnabledGenlockI3D": 1, - "__wglewIsEnabledGenlockI3D": 2, - "wglQueryGenlockMaxSourceDelayI3D": 1, - "__wglewQueryGenlockMaxSourceDelayI3D": 2, - "WGLEW_I3D_genlock": 1, - "__WGLEW_I3D_genlock": 2, - "WGL_I3D_image_buffer": 2, - "WGL_IMAGE_BUFFER_MIN_ACCESS_I3D": 1, - "WGL_IMAGE_BUFFER_LOCK_I3D": 1, - "PFNWGLASSOCIATEIMAGEBUFFEREVENTSI3DPROC": 2, - "HANDLE*": 3, - "pEvent": 1, - "LPVOID": 3, - "*pAddress": 1, - "DWORD": 5, - "*pSize": 1, - "PFNWGLCREATEIMAGEBUFFERI3DPROC": 2, "dwSize": 1, - "uFlags": 1, - "PFNWGLDESTROYIMAGEBUFFERI3DPROC": 2, - "pAddress": 2, - "PFNWGLRELEASEIMAGEBUFFEREVENTSI3DPROC": 2, - "LPVOID*": 1, - "wglAssociateImageBufferEventsI3D": 1, - "__wglewAssociateImageBufferEventsI3D": 2, - "wglCreateImageBufferI3D": 1, - "__wglewCreateImageBufferI3D": 2, - "wglDestroyImageBufferI3D": 1, - "__wglewDestroyImageBufferI3D": 2, - "wglReleaseImageBufferEventsI3D": 1, - "__wglewReleaseImageBufferEventsI3D": 2, - "WGLEW_I3D_image_buffer": 1, - "__WGLEW_I3D_image_buffer": 2, - "WGL_I3D_swap_frame_lock": 2, - "PFNWGLDISABLEFRAMELOCKI3DPROC": 2, - "PFNWGLENABLEFRAMELOCKI3DPROC": 2, - "PFNWGLISENABLEDFRAMELOCKI3DPROC": 2, - "PFNWGLQUERYFRAMELOCKMASTERI3DPROC": 2, - "wglDisableFrameLockI3D": 1, - "__wglewDisableFrameLockI3D": 2, - "wglEnableFrameLockI3D": 1, - "__wglewEnableFrameLockI3D": 2, - "wglIsEnabledFrameLockI3D": 1, - "__wglewIsEnabledFrameLockI3D": 2, - "wglQueryFrameLockMasterI3D": 1, - "__wglewQueryFrameLockMasterI3D": 2, - "WGLEW_I3D_swap_frame_lock": 1, - "__WGLEW_I3D_swap_frame_lock": 2, - "WGL_I3D_swap_frame_usage": 2, - "PFNWGLBEGINFRAMETRACKINGI3DPROC": 2, - "PFNWGLENDFRAMETRACKINGI3DPROC": 2, - "PFNWGLGETFRAMEUSAGEI3DPROC": 2, - "float*": 1, - "pUsage": 1, - "PFNWGLQUERYFRAMETRACKINGI3DPROC": 2, - "DWORD*": 1, - "pFrameCount": 1, - "*pMissedFrames": 1, - "*pLastMissedUsage": 1, - "wglBeginFrameTrackingI3D": 1, - "__wglewBeginFrameTrackingI3D": 2, - "wglEndFrameTrackingI3D": 1, - "__wglewEndFrameTrackingI3D": 2, - "wglGetFrameUsageI3D": 1, - "__wglewGetFrameUsageI3D": 2, - "wglQueryFrameTrackingI3D": 1, - "__wglewQueryFrameTrackingI3D": 2, - "WGLEW_I3D_swap_frame_usage": 1, - "__WGLEW_I3D_swap_frame_usage": 2, - "WGL_NV_DX_interop": 2, - "WGL_ACCESS_READ_ONLY_NV": 1, - "WGL_ACCESS_READ_WRITE_NV": 1, - "WGL_ACCESS_WRITE_DISCARD_NV": 1, - "PFNWGLDXCLOSEDEVICENVPROC": 2, - "hDevice": 9, - "PFNWGLDXLOCKOBJECTSNVPROC": 2, - "hObjects": 2, - "PFNWGLDXOBJECTACCESSNVPROC": 2, - "hObject": 2, - "access": 2, - "PFNWGLDXOPENDEVICENVPROC": 2, - "dxDevice": 1, - "PFNWGLDXREGISTEROBJECTNVPROC": 2, - "dxObject": 2, - "PFNWGLDXSETRESOURCESHAREHANDLENVPROC": 2, - "shareHandle": 1, - "PFNWGLDXUNLOCKOBJECTSNVPROC": 2, - "PFNWGLDXUNREGISTEROBJECTNVPROC": 2, - "wglDXCloseDeviceNV": 1, - "__wglewDXCloseDeviceNV": 2, - "wglDXLockObjectsNV": 1, - "__wglewDXLockObjectsNV": 2, - "wglDXObjectAccessNV": 1, - "__wglewDXObjectAccessNV": 2, - "wglDXOpenDeviceNV": 1, - "__wglewDXOpenDeviceNV": 2, - "wglDXRegisterObjectNV": 1, - "__wglewDXRegisterObjectNV": 2, - "wglDXSetResourceShareHandleNV": 1, - "__wglewDXSetResourceShareHandleNV": 2, - "wglDXUnlockObjectsNV": 1, - "__wglewDXUnlockObjectsNV": 2, - "wglDXUnregisterObjectNV": 1, - "__wglewDXUnregisterObjectNV": 2, - "WGLEW_NV_DX_interop": 1, - "__WGLEW_NV_DX_interop": 2, - "WGL_NV_copy_image": 2, - "PFNWGLCOPYIMAGESUBDATANVPROC": 2, - "hSrcRC": 1, - "srcName": 1, - "srcTarget": 1, - "srcLevel": 1, - "srcX": 1, - "srcY": 1, - "srcZ": 1, - "hDstRC": 1, - "dstName": 1, - "dstTarget": 1, - "dstLevel": 1, - "dstX": 1, - "dstY": 1, - "dstZ": 1, - "GLsizei": 4, - "wglCopyImageSubDataNV": 1, - "__wglewCopyImageSubDataNV": 2, - "WGLEW_NV_copy_image": 1, - "__WGLEW_NV_copy_image": 2, - "WGL_NV_float_buffer": 2, - "WGL_FLOAT_COMPONENTS_NV": 1, - "B0": 1, - "WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_R_NV": 1, - "B1": 1, - "WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_RG_NV": 1, - "B2": 1, - "WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_RGB_NV": 1, - "B3": 1, - "WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_RGBA_NV": 1, - "B4": 1, - "WGL_TEXTURE_FLOAT_R_NV": 1, - "B5": 1, - "WGL_TEXTURE_FLOAT_RG_NV": 1, - "B6": 1, - "WGL_TEXTURE_FLOAT_RGB_NV": 1, - "B7": 1, - "WGL_TEXTURE_FLOAT_RGBA_NV": 1, - "B8": 1, - "WGLEW_NV_float_buffer": 1, - "__WGLEW_NV_float_buffer": 2, - "WGL_NV_gpu_affinity": 2, - "WGL_ERROR_INCOMPATIBLE_AFFINITY_MASKS_NV": 1, - "D0": 1, - "WGL_ERROR_MISSING_AFFINITY_MASK_NV": 1, - "D1": 1, - "HGPUNV": 5, - "_GPU_DEVICE": 1, - "cb": 1, - "CHAR": 2, - "DeviceName": 1, - "DeviceString": 1, - "Flags": 1, - "RECT": 1, - "rcVirtualScreen": 1, - "GPU_DEVICE": 1, - "*PGPU_DEVICE": 1, - "PFNWGLCREATEAFFINITYDCNVPROC": 2, - "*phGpuList": 1, - "PFNWGLDELETEDCNVPROC": 2, - "PFNWGLENUMGPUDEVICESNVPROC": 2, - "hGpu": 1, - "iDeviceIndex": 1, - "PGPU_DEVICE": 1, - "lpGpuDevice": 1, - "PFNWGLENUMGPUSFROMAFFINITYDCNVPROC": 2, - "hAffinityDC": 1, - "iGpuIndex": 2, - "*hGpu": 1, - "PFNWGLENUMGPUSNVPROC": 2, - "*phGpu": 1, - "wglCreateAffinityDCNV": 1, - "__wglewCreateAffinityDCNV": 2, - "wglDeleteDCNV": 1, - "__wglewDeleteDCNV": 2, - "wglEnumGpuDevicesNV": 1, - "__wglewEnumGpuDevicesNV": 2, - "wglEnumGpusFromAffinityDCNV": 1, - "__wglewEnumGpusFromAffinityDCNV": 2, - "wglEnumGpusNV": 1, - "__wglewEnumGpusNV": 2, - "WGLEW_NV_gpu_affinity": 1, - "__WGLEW_NV_gpu_affinity": 2, - "WGL_NV_multisample_coverage": 2, - "WGL_COVERAGE_SAMPLES_NV": 1, - "WGL_COLOR_SAMPLES_NV": 1, - "B9": 1, - "WGLEW_NV_multisample_coverage": 1, - "__WGLEW_NV_multisample_coverage": 2, - "WGL_NV_present_video": 2, - "WGL_NUM_VIDEO_SLOTS_NV": 1, - "F0": 1, - "HVIDEOOUTPUTDEVICENV": 2, - "PFNWGLBINDVIDEODEVICENVPROC": 2, - "hDc": 6, - "uVideoSlot": 2, - "hVideoDevice": 4, - "PFNWGLENUMERATEVIDEODEVICESNVPROC": 2, - "HVIDEOOUTPUTDEVICENV*": 1, - "phDeviceList": 2, - "PFNWGLQUERYCURRENTCONTEXTNVPROC": 2, - "wglBindVideoDeviceNV": 1, - "__wglewBindVideoDeviceNV": 2, - "wglEnumerateVideoDevicesNV": 1, - "__wglewEnumerateVideoDevicesNV": 2, - "wglQueryCurrentContextNV": 1, - "__wglewQueryCurrentContextNV": 2, - "WGLEW_NV_present_video": 1, - "__WGLEW_NV_present_video": 2, - "WGL_NV_render_depth_texture": 2, - "WGL_BIND_TO_TEXTURE_DEPTH_NV": 1, - "WGL_BIND_TO_TEXTURE_RECTANGLE_DEPTH_NV": 1, - "WGL_DEPTH_TEXTURE_FORMAT_NV": 1, - "WGL_TEXTURE_DEPTH_COMPONENT_NV": 1, - "WGL_DEPTH_COMPONENT_NV": 1, - "WGLEW_NV_render_depth_texture": 1, - "__WGLEW_NV_render_depth_texture": 2, - "WGL_NV_render_texture_rectangle": 2, - "WGL_BIND_TO_TEXTURE_RECTANGLE_RGB_NV": 1, - "WGL_BIND_TO_TEXTURE_RECTANGLE_RGBA_NV": 1, - "A1": 1, - "WGL_TEXTURE_RECTANGLE_NV": 1, - "WGLEW_NV_render_texture_rectangle": 1, - "__WGLEW_NV_render_texture_rectangle": 2, - "WGL_NV_swap_group": 2, - "PFNWGLBINDSWAPBARRIERNVPROC": 2, - "group": 3, - "barrier": 1, - "PFNWGLJOINSWAPGROUPNVPROC": 2, - "PFNWGLQUERYFRAMECOUNTNVPROC": 2, - "GLuint*": 3, - "PFNWGLQUERYMAXSWAPGROUPSNVPROC": 2, - "maxGroups": 1, - "*maxBarriers": 1, - "PFNWGLQUERYSWAPGROUPNVPROC": 2, - "*barrier": 1, - "PFNWGLRESETFRAMECOUNTNVPROC": 2, - "wglBindSwapBarrierNV": 1, - "__wglewBindSwapBarrierNV": 2, - "wglJoinSwapGroupNV": 1, - "__wglewJoinSwapGroupNV": 2, - "wglQueryFrameCountNV": 1, - "__wglewQueryFrameCountNV": 2, - "wglQueryMaxSwapGroupsNV": 1, - "__wglewQueryMaxSwapGroupsNV": 2, - "wglQuerySwapGroupNV": 1, - "__wglewQuerySwapGroupNV": 2, - "wglResetFrameCountNV": 1, - "__wglewResetFrameCountNV": 2, - "WGLEW_NV_swap_group": 1, - "__WGLEW_NV_swap_group": 2, - "WGL_NV_vertex_array_range": 2, - "PFNWGLALLOCATEMEMORYNVPROC": 2, - "GLfloat": 3, - "readFrequency": 1, - "writeFrequency": 1, - "priority": 1, - "PFNWGLFREEMEMORYNVPROC": 2, - "*pointer": 1, - "wglAllocateMemoryNV": 1, - "__wglewAllocateMemoryNV": 2, - "wglFreeMemoryNV": 1, - "__wglewFreeMemoryNV": 2, - "WGLEW_NV_vertex_array_range": 1, - "__WGLEW_NV_vertex_array_range": 2, - "WGL_NV_video_capture": 2, - "WGL_UNIQUE_ID_NV": 1, - "CE": 1, - "WGL_NUM_VIDEO_CAPTURE_SLOTS_NV": 1, - "CF": 1, - "HVIDEOINPUTDEVICENV": 5, - "PFNWGLBINDVIDEOCAPTUREDEVICENVPROC": 2, - "PFNWGLENUMERATEVIDEOCAPTUREDEVICESNVPROC": 2, - "HVIDEOINPUTDEVICENV*": 1, - "PFNWGLLOCKVIDEOCAPTUREDEVICENVPROC": 2, - "PFNWGLQUERYVIDEOCAPTUREDEVICENVPROC": 2, - "PFNWGLRELEASEVIDEOCAPTUREDEVICENVPROC": 2, - "wglBindVideoCaptureDeviceNV": 1, - "__wglewBindVideoCaptureDeviceNV": 2, - "wglEnumerateVideoCaptureDevicesNV": 1, - "__wglewEnumerateVideoCaptureDevicesNV": 2, - "wglLockVideoCaptureDeviceNV": 1, - "__wglewLockVideoCaptureDeviceNV": 2, - "wglQueryVideoCaptureDeviceNV": 1, - "__wglewQueryVideoCaptureDeviceNV": 2, - "wglReleaseVideoCaptureDeviceNV": 1, - "__wglewReleaseVideoCaptureDeviceNV": 2, - "WGLEW_NV_video_capture": 1, - "__WGLEW_NV_video_capture": 2, - "WGL_NV_video_output": 2, - "WGL_BIND_TO_VIDEO_RGB_NV": 1, - "WGL_BIND_TO_VIDEO_RGBA_NV": 1, - "C1": 1, - "WGL_BIND_TO_VIDEO_RGB_AND_DEPTH_NV": 1, - "C2": 1, - "WGL_VIDEO_OUT_COLOR_NV": 1, - "C3": 1, - "WGL_VIDEO_OUT_ALPHA_NV": 1, - "C4": 1, - "WGL_VIDEO_OUT_DEPTH_NV": 1, - "C5": 1, - "WGL_VIDEO_OUT_COLOR_AND_ALPHA_NV": 1, - "C6": 1, - "WGL_VIDEO_OUT_COLOR_AND_DEPTH_NV": 1, - "C7": 1, - "WGL_VIDEO_OUT_FRAME": 1, - "C8": 1, - "WGL_VIDEO_OUT_FIELD_1": 1, - "C9": 1, - "WGL_VIDEO_OUT_FIELD_2": 1, - "CA": 1, - "WGL_VIDEO_OUT_STACKED_FIELDS_1_2": 1, - "CB": 1, - "WGL_VIDEO_OUT_STACKED_FIELDS_2_1": 1, - "CC": 1, - "HPVIDEODEV": 4, - "PFNWGLBINDVIDEOIMAGENVPROC": 2, - "iVideoBuffer": 2, - "PFNWGLGETVIDEODEVICENVPROC": 2, - "numDevices": 1, - "HPVIDEODEV*": 1, - "PFNWGLGETVIDEOINFONVPROC": 2, - "hpVideoDevice": 1, - "long*": 2, - "pulCounterOutputPbuffer": 1, - "*pulCounterOutputVideo": 1, - "PFNWGLRELEASEVIDEODEVICENVPROC": 2, - "PFNWGLRELEASEVIDEOIMAGENVPROC": 2, - "PFNWGLSENDPBUFFERTOVIDEONVPROC": 2, - "iBufferType": 1, - "pulCounterPbuffer": 1, - "bBlock": 1, - "wglBindVideoImageNV": 1, - "__wglewBindVideoImageNV": 2, - "wglGetVideoDeviceNV": 1, - "__wglewGetVideoDeviceNV": 2, - "wglGetVideoInfoNV": 1, - "__wglewGetVideoInfoNV": 2, - "wglReleaseVideoDeviceNV": 1, - "__wglewReleaseVideoDeviceNV": 2, - "wglReleaseVideoImageNV": 1, - "__wglewReleaseVideoImageNV": 2, - "wglSendPbufferToVideoNV": 1, - "__wglewSendPbufferToVideoNV": 2, - "WGLEW_NV_video_output": 1, - "__WGLEW_NV_video_output": 2, - "WGL_OML_sync_control": 2, - "PFNWGLGETMSCRATEOMLPROC": 2, - "INT32*": 1, - "numerator": 1, - "INT32": 1, - "*denominator": 1, - "PFNWGLGETSYNCVALUESOMLPROC": 2, - "INT64*": 3, - "INT64": 18, - "*msc": 3, - "*sbc": 3, - "PFNWGLSWAPBUFFERSMSCOMLPROC": 2, - "target_msc": 3, - "divisor": 3, - "remainder": 3, - "PFNWGLSWAPLAYERBUFFERSMSCOMLPROC": 2, - "fuPlanes": 1, - "PFNWGLWAITFORMSCOMLPROC": 2, - "PFNWGLWAITFORSBCOMLPROC": 2, - "target_sbc": 1, - "wglGetMscRateOML": 1, - "__wglewGetMscRateOML": 2, - "wglGetSyncValuesOML": 1, - "__wglewGetSyncValuesOML": 2, - "wglSwapBuffersMscOML": 1, - "__wglewSwapBuffersMscOML": 2, - "wglSwapLayerBuffersMscOML": 1, - "__wglewSwapLayerBuffersMscOML": 2, - "wglWaitForMscOML": 1, - "__wglewWaitForMscOML": 2, - "wglWaitForSbcOML": 1, - "__wglewWaitForSbcOML": 2, - "WGLEW_OML_sync_control": 1, - "__WGLEW_OML_sync_control": 2, - "GLEW_MX": 4, - "WGLEW_EXPORT": 167, - "GLEWAPI": 6, - "WGLEWContextStruct": 2, - "WGLEWContext": 1, - "wglewContextInit": 2, - "WGLEWContext*": 2, - "wglewContextIsSupported": 2, - "wglewInit": 1, - "wglewGetContext": 4, - "wglewIsSupported": 2, - "wglewGetExtension": 1, - "yajl_status_to_string": 1, - "yajl_status": 4, - "statStr": 6, - "yajl_status_ok": 1, - "yajl_status_client_canceled": 1, - "yajl_status_insufficient_data": 1, - "yajl_status_error": 1, - "yajl_handle": 10, - "yajl_alloc": 1, - "yajl_callbacks": 1, - "callbacks": 3, - "yajl_parser_config": 1, - "config": 4, - "yajl_alloc_funcs": 3, - "afs": 8, - "allowComments": 4, - "validateUTF8": 3, - "hand": 28, - "afsBuffer": 3, - "realloc": 1, - "yajl_set_default_alloc_funcs": 1, - "YA_MALLOC": 1, - "yajl_handle_t": 1, - "alloc": 6, - "checkUTF8": 1, - "lexer": 4, - "yajl_lex_alloc": 1, - "bytesConsumed": 2, - "decodeBuf": 2, - "yajl_buf_alloc": 1, - "yajl_bs_init": 1, - "stateStack": 3, - "yajl_bs_push": 1, - "yajl_state_start": 1, - "yajl_reset_parser": 1, - "yajl_lex_realloc": 1, - "yajl_free": 1, - "yajl_bs_free": 1, - "yajl_buf_free": 1, - "yajl_lex_free": 1, - "YA_FREE": 2, - "yajl_parse": 2, - "jsonText": 4, - "jsonTextLen": 4, - "yajl_do_parse": 1, - "yajl_parse_complete": 1, - "yajl_get_error": 1, - "verbose": 2, - "yajl_render_error_string": 1, - "yajl_get_bytes_consumed": 1, - "yajl_free_error": 1 - }, - "C++": { - "class": 34, - "Bar": 2, - "{": 553, - "protected": 4, - "char": 122, - "*name": 6, - ";": 2308, - "public": 27, - "void": 152, - "hello": 2, - "(": 2438, - ")": 2440, - "}": 552, - "foo": 2, - "cudaArray*": 1, - "cu_array": 4, - "texture": 1, - "": 1, - "2": 1, - "cudaReadModeElementType": 1, - "tex": 4, - "cudaChannelFormatDesc": 1, - "description": 5, - "cudaCreateChannelDesc": 1, - "": 1, - "cudaMallocArray": 1, - "&": 148, - "width": 5, - "height": 5, - "cudaMemcpyToArray": 1, - "image": 1, - "width*height*sizeof": 1, - "float": 9, - "cudaMemcpyHostToDevice": 1, - "tex.addressMode": 2, - "[": 204, - "]": 204, - "cudaAddressModeClamp": 2, - "tex.filterMode": 1, - "cudaFilterModePoint": 1, - "tex.normalized": 1, - "false": 43, - "//": 239, - "do": 5, - "not": 2, - "normalize": 1, - "coordinates": 1, - "cudaBindTextureToArray": 1, - "dim3": 2, - "blockDim": 2, - "gridDim": 2, - "+": 55, - "blockDim.x": 2, - "-": 227, - "/": 15, - "blockDim.y": 2, - "kernel": 2, - "<<": 19, - "<": 56, - "d_data": 1, - "cudaUnbindTexture": 1, - "//end": 1, - "__global__": 1, - "float*": 1, - "odata": 2, - "int": 148, - "unsigned": 22, - "x": 48, - "blockIdx.x*blockDim.x": 1, - "threadIdx.x": 1, - "y": 16, - "blockIdx.y*blockDim.y": 1, - "threadIdx.y": 1, - "if": 296, - "&&": 24, - "c": 52, - "tex2D": 1, - "y*width": 1, - "#include": 106, - "": 1, - "": 1, - "": 2, - "static": 260, - "Env": 13, - "*env_instance": 1, - "*": 159, - "NULL": 108, - "*Env": 1, - "instance": 4, - "env_instance": 3, - "new": 9, - "return": 147, - "QObject": 2, - "QCoreApplication": 1, - "parse": 3, - "const": 166, - "**envp": 1, - "**env": 1, - "**": 2, - "QString": 20, - "envvar": 2, - "name": 21, - "value": 18, - "indexOfEquals": 5, - "for": 18, - "env": 3, - "envp": 4, - "*env": 1, - "envvar.indexOf": 1, - "continue": 2, - "envvar.left": 1, - "envvar.mid": 1, - "m_map.insert": 1, - "QVariantMap": 3, - "asVariantMap": 2, - "m_map": 2, - "#ifndef": 23, - "ENV_H": 3, - "#define": 190, - "": 1, - "Q_OBJECT": 1, - "*instance": 1, - "private": 12, - "#endif": 82, - "GDSDBREADER_H": 3, - "": 1, - "GDS_DIR": 1, - "enum": 6, - "level": 1, - "LEVEL_ONE": 1, - "LEVEL_TWO": 1, - "LEVEL_THREE": 1, - "dbDataStructure": 2, - "label": 1, - "quint32": 3, - "depth": 1, - "userIndex": 1, - "QByteArray": 1, - "data": 2, - "This": 6, - "is": 35, - "COMPRESSED": 1, - "optimize": 1, - "ram": 1, - "and": 14, - "disk": 1, - "space": 2, - "decompressed": 1, - "quint64": 1, - "uniqueID": 1, - "QVector": 2, - "": 1, - "nextItems": 1, - "": 1, - "nextItemsIndices": 1, - "dbDataStructure*": 1, - "father": 1, - "fatherIndex": 1, - "bool": 99, - "noFatherRoot": 1, - "Used": 1, - "to": 75, - "tell": 1, - "this": 22, - "node": 1, - "the": 178, - "root": 1, - "so": 1, - "hasn": 1, - "t": 13, - "in": 9, - "argument": 1, - "list": 2, - "of": 48, - "an": 3, - "operator": 10, - "overload.": 1, - "A": 1, - "friend": 10, - "stream": 5, - "myclass.label": 2, - "myclass.depth": 2, - "myclass.userIndex": 2, - "qCompress": 2, - "myclass.data": 4, - "myclass.uniqueID": 2, - "myclass.nextItemsIndices": 2, - "myclass.fatherIndex": 2, - "myclass.noFatherRoot": 2, - "myclass.fileName": 2, - "myclass.firstLineData": 4, - "myclass.linesNumbers": 2, - "QDataStream": 2, - "myclass": 1, - "//Don": 1, - "read": 1, - "it": 2, - "either": 1, - "qUncompress": 2, - "": 1, - "using": 1, - "namespace": 26, - "std": 49, - "main": 2, - "cout": 1, - "endl": 1, - "": 1, - "": 1, - "": 1, - "EC_KEY_regenerate_key": 1, - "EC_KEY": 3, - "*eckey": 2, - "BIGNUM": 9, - "*priv_key": 1, - "ok": 3, - "BN_CTX": 2, - "*ctx": 2, - "EC_POINT": 4, - "*pub_key": 1, - "eckey": 7, - "EC_GROUP": 2, - "*group": 2, - "EC_KEY_get0_group": 2, - "ctx": 26, - "BN_CTX_new": 2, - "goto": 156, - "err": 26, - "pub_key": 6, - "EC_POINT_new": 4, - "group": 12, - "EC_POINT_mul": 3, - "priv_key": 2, - "EC_KEY_set_private_key": 1, - "EC_KEY_set_public_key": 2, - "EC_POINT_free": 4, - "BN_CTX_free": 2, - "ECDSA_SIG_recover_key_GFp": 3, - "ECDSA_SIG": 3, - "*ecsig": 1, - "*msg": 2, - "msglen": 2, - "recid": 3, - "check": 2, - "ret": 24, - "*x": 1, - "*e": 1, - "*order": 1, - "*sor": 1, - "*eor": 1, - "*field": 1, - "*R": 1, - "*O": 1, - "*Q": 1, - "*rr": 1, - "*zero": 1, - "n": 28, - "i": 47, - "BN_CTX_start": 1, - "order": 8, - "BN_CTX_get": 8, - "EC_GROUP_get_order": 1, - "BN_copy": 1, - "BN_mul_word": 1, - "BN_add": 1, - "ecsig": 3, - "r": 36, - "field": 3, - "EC_GROUP_get_curve_GFp": 1, - "BN_cmp": 1, - "R": 6, - "EC_POINT_set_compressed_coordinates_GFp": 1, - "%": 4, - "O": 5, - "EC_POINT_is_at_infinity": 1, - "Q": 5, - "EC_GROUP_get_degree": 1, - "e": 14, - "BN_bin2bn": 3, - "msg": 1, - "*msglen": 1, - "BN_rshift": 1, - "zero": 3, - "BN_zero": 1, - "BN_mod_sub": 1, - "rr": 4, - "BN_mod_inverse": 1, - "sor": 3, - "BN_mod_mul": 2, - "s": 9, - "eor": 3, - "BN_CTX_end": 1, - "CKey": 26, - "SetCompressedPubKey": 4, - "EC_KEY_set_conv_form": 1, - "pkey": 14, - "POINT_CONVERSION_COMPRESSED": 1, - "fCompressedPubKey": 5, - "true": 39, - "Reset": 5, - "EC_KEY_new_by_curve_name": 2, - "NID_secp256k1": 2, - "throw": 4, - "key_error": 6, - "fSet": 7, - "b": 57, - "EC_KEY_dup": 1, - "b.pkey": 2, - "b.fSet": 2, - "EC_KEY_copy": 1, - "hash": 20, - "sizeof": 14, - "vchSig": 18, - "nSize": 2, - "vchSig.clear": 2, - "vchSig.resize": 2, - "Shrink": 1, - "fit": 1, - "actual": 1, - "size": 9, - "SignCompact": 2, - "uint256": 10, - "vector": 14, - "": 19, - "fOk": 3, - "*sig": 2, - "ECDSA_do_sign": 1, - "char*": 14, - "sig": 11, - "nBitsR": 3, - "BN_num_bits": 2, - "nBitsS": 3, - "nRecId": 4, - "<4;>": 1, - "keyRec": 5, - "1": 2, - "GetPubKey": 5, - "break": 34, - "BN_bn2bin": 2, - "/8": 2, - "ECDSA_SIG_free": 2, - "SetCompactSignature": 2, - "vchSig.size": 2, - "nV": 6, - "<27>": 1, - "ECDSA_SIG_new": 1, - "EC_KEY_free": 1, - "Verify": 2, - "ECDSA_verify": 1, - "VerifyCompact": 2, - "key": 23, - "key.SetCompactSignature": 1, - "key.GetPubKey": 1, - "IsValid": 4, - "fCompr": 3, - "CSecret": 4, - "secret": 2, - "GetSecret": 2, - "key2": 1, - "key2.SetSecret": 1, - "key2.GetPubKey": 1, - "BITCOIN_KEY_H": 2, - "": 1, - "": 2, - "": 1, - "definition": 1, - "runtime_error": 2, - "explicit": 3, - "string": 10, - "str": 2, - "CKeyID": 5, - "uint160": 8, - "CScriptID": 3, - "CPubKey": 11, - "vchPubKey": 6, - "vchPubKeyIn": 2, - "a": 84, - "a.vchPubKey": 3, - "b.vchPubKey": 3, - "IMPLEMENT_SERIALIZE": 1, - "READWRITE": 1, - "GetID": 1, - "Hash160": 1, - "GetHash": 1, - "Hash": 1, - "vchPubKey.begin": 1, - "vchPubKey.end": 1, - "vchPubKey.size": 3, - "||": 17, - "IsCompressed": 2, - "Raw": 1, - "typedef": 38, - "secure_allocator": 2, - "CPrivKey": 3, - "EC_KEY*": 1, - "IsNull": 1, - "MakeNewKey": 1, - "fCompressed": 3, - "SetPrivKey": 1, - "vchPrivKey": 1, - "SetSecret": 1, - "vchSecret": 1, - "GetPrivKey": 1, - "SetPubKey": 1, - "Sign": 1, - "#ifdef": 16, - "Q_OS_LINUX": 2, - "": 1, - "#if": 44, - "QT_VERSION": 1, - "QT_VERSION_CHECK": 1, - "#error": 9, - "Something": 1, - "wrong": 1, - "with": 6, - "setup.": 1, - "Please": 3, - "report": 2, - "mailing": 1, - "argc": 2, - "char**": 2, - "argv": 2, - "google_breakpad": 1, - "ExceptionHandler": 1, - "eh": 1, - "Utils": 4, - "exceptionHandler": 2, - "qInstallMsgHandler": 1, - "messageHandler": 2, - "QApplication": 1, - "app": 1, - "STATIC_BUILD": 1, - "Q_INIT_RESOURCE": 2, - "WebKit": 1, - "InspectorBackendStub": 1, - "app.setWindowIcon": 1, - "QIcon": 1, - "app.setApplicationName": 1, - "app.setOrganizationName": 1, - "app.setOrganizationDomain": 1, - "app.setApplicationVersion": 1, - "PHANTOMJS_VERSION_STRING": 1, - "Phantom": 1, - "phantom": 1, - "phantom.execute": 1, - "app.exec": 1, - "phantom.returnValue": 1, - "INTERNAL_SUPPRESS_PROTOBUF_FIELD_DEPRECATION": 1, - "": 1, - "": 2, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "persons": 4, - "google": 72, - "protobuf": 72, - "Descriptor*": 3, - "Person_descriptor_": 6, - "internal": 46, - "GeneratedMessageReflection*": 1, - "Person_reflection_": 4, - "protobuf_AssignDesc_protocol_2dbuffer_2eproto": 4, - "protobuf_AddDesc_protocol_2dbuffer_2eproto": 6, - "FileDescriptor*": 1, - "file": 6, - "DescriptorPool": 3, - "generated_pool": 2, - "FindFileByName": 1, - "GOOGLE_CHECK": 1, - "message_type": 1, - "Person_offsets_": 2, - "GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET": 3, - "Person": 65, - "name_": 30, - "GeneratedMessageReflection": 1, - "default_instance_": 8, - "_has_bits_": 14, - "_unknown_fields_": 5, - "MessageFactory": 3, - "generated_factory": 1, - "GOOGLE_PROTOBUF_DECLARE_ONCE": 1, - "protobuf_AssignDescriptors_once_": 2, - "inline": 39, - "protobuf_AssignDescriptorsOnce": 4, - "GoogleOnceInit": 1, - "protobuf_RegisterTypes": 2, - "InternalRegisterGeneratedMessage": 1, - "default_instance": 3, - "protobuf_ShutdownFile_protocol_2dbuffer_2eproto": 4, - "delete": 6, - "already_here": 3, - "GOOGLE_PROTOBUF_VERIFY_VERSION": 1, - "InternalAddGeneratedFile": 1, - "InternalRegisterGeneratedFile": 1, - "InitAsDefaultInstance": 3, - "OnShutdown": 1, - "struct": 8, - "StaticDescriptorInitializer_protocol_2dbuffer_2eproto": 2, - "static_descriptor_initializer_protocol_2dbuffer_2eproto_": 1, - "_MSC_VER": 3, - "kNameFieldNumber": 2, - "Message": 7, - "SharedCtor": 4, - "from": 25, - "MergeFrom": 9, - "_cached_size_": 7, - "const_cast": 3, - "string*": 11, - "kEmptyString": 12, - "memset": 2, - "SharedDtor": 3, - "SetCachedSize": 2, - "GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN": 2, - "GOOGLE_SAFE_CONCURRENT_WRITES_END": 2, - "descriptor": 2, - "*default_instance_": 1, - "Person*": 7, - "New": 4, - "Clear": 5, - "xffu": 3, - "has_name": 6, - "clear": 2, - "mutable_unknown_fields": 4, - "MergePartialFromCodedStream": 2, - "io": 4, - "CodedInputStream*": 2, - "input": 6, - "DO_": 4, - "EXPRESSION": 2, - "uint32": 2, - "tag": 6, - "while": 11, - "ReadTag": 1, - "switch": 3, - "WireFormatLite": 9, - "GetTagFieldNumber": 1, - "case": 33, - "GetTagWireType": 2, - "WIRETYPE_LENGTH_DELIMITED": 1, - "ReadString": 1, - "mutable_name": 3, - "WireFormat": 10, - "VerifyUTF8String": 3, - ".data": 3, - ".length": 3, - "PARSE": 1, - "else": 46, - "handle_uninterpreted": 2, - "ExpectAtEnd": 1, - "default": 4, - "WIRETYPE_END_GROUP": 1, - "SkipField": 1, - "#undef": 3, - "SerializeWithCachedSizes": 2, - "CodedOutputStream*": 2, - "output": 5, - "SERIALIZE": 2, - "WriteString": 1, - "unknown_fields": 7, - ".empty": 3, - "SerializeUnknownFields": 1, - "uint8*": 4, - "SerializeWithCachedSizesToArray": 2, - "target": 6, - "WriteStringToArray": 1, - "SerializeUnknownFieldsToArray": 1, - "ByteSize": 2, - "total_size": 5, - "StringSize": 1, - "ComputeUnknownFieldsSize": 1, - "GOOGLE_CHECK_NE": 2, - "source": 9, - "dynamic_cast_if_available": 1, - "": 12, - "ReflectionOps": 1, - "Merge": 1, - "from._has_bits_": 1, - "from.has_name": 1, - "set_name": 7, - "from.name": 1, - "from.unknown_fields": 1, - "CopyFrom": 5, - "IsInitialized": 3, - "Swap": 2, - "other": 7, - "swap": 3, - "_unknown_fields_.Swap": 1, - "Metadata": 3, - "GetMetadata": 2, - "metadata": 2, - "metadata.descriptor": 1, - "metadata.reflection": 1, - "PROTOBUF_protocol_2dbuffer_2eproto__INCLUDED": 3, - "": 1, - "GOOGLE_PROTOBUF_VERSION": 1, - "was": 3, - "generated": 2, - "by": 5, - "newer": 2, - "version": 4, - "protoc": 2, - "which": 2, - "incompatible": 2, - "your": 3, - "Protocol": 2, - "Buffer": 2, - "headers.": 3, - "update": 1, - "GOOGLE_PROTOBUF_MIN_PROTOC_VERSION": 1, - "older": 1, - "regenerate": 1, - "protoc.": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "virtual": 10, - "*this": 1, - "UnknownFieldSet": 2, - "UnknownFieldSet*": 1, - "GetCachedSize": 1, - "clear_name": 2, - "size_t": 5, - "release_name": 2, - "set_allocated_name": 2, - "set_has_name": 7, - "clear_has_name": 5, - "mutable": 1, - "u": 9, - "|": 8, - "*name_": 1, - "assign": 3, - "reinterpret_cast": 7, - "temp": 2, - "SWIG": 2, - "QSCICOMMAND_H": 2, - "__APPLE__": 4, - "extern": 4, - "": 1, - "": 2, - "": 1, - "QsciScintilla": 7, - "brief": 2, - "The": 8, - "QsciCommand": 7, - "represents": 1, - "editor": 1, - "command": 9, - "that": 7, - "may": 2, - "have": 1, - "one": 42, - "or": 10, - "two": 1, - "keys": 3, - "bound": 4, - "it.": 2, - "Methods": 1, - "are": 3, - "provided": 1, - "change": 1, - "remove": 1, - "binding.": 1, - "Each": 1, - "has": 2, - "user": 2, - "friendly": 2, - "use": 1, - "mapping": 1, - "dialogs.": 1, - "QSCINTILLA_EXPORT": 2, - "defines": 1, - "different": 1, - "commands": 1, - "can": 3, - "be": 9, - "assigned": 1, - "key.": 1, - "Command": 4, - "Move": 26, - "down": 12, - "line.": 33, - "LineDown": 1, - "QsciScintillaBase": 100, - "SCI_LINEDOWN": 1, - "Extend": 33, - "selection": 39, - "LineDownExtend": 1, - "SCI_LINEDOWNEXTEND": 1, - "rectangular": 9, - "LineDownRectExtend": 1, - "SCI_LINEDOWNRECTEXTEND": 1, - "Scroll": 5, - "view": 2, - "LineScrollDown": 1, - "SCI_LINESCROLLDOWN": 1, - "up": 13, - "LineUp": 1, - "SCI_LINEUP": 1, - "LineUpExtend": 1, - "SCI_LINEUPEXTEND": 1, - "LineUpRectExtend": 1, - "SCI_LINEUPRECTEXTEND": 1, - "LineScrollUp": 1, - "SCI_LINESCROLLUP": 1, - "start": 11, - "document.": 8, - "ScrollToStart": 1, - "SCI_SCROLLTOSTART": 1, - "end": 18, - "ScrollToEnd": 1, - "SCI_SCROLLTOEND": 1, - "vertically": 1, - "centre": 1, - "current": 9, - "VerticalCentreCaret": 1, - "SCI_VERTICALCENTRECARET": 1, - "paragraph.": 4, - "ParaDown": 1, - "SCI_PARADOWN": 1, - "ParaDownExtend": 1, - "SCI_PARADOWNEXTEND": 1, - "ParaUp": 1, - "SCI_PARAUP": 1, - "ParaUpExtend": 1, - "SCI_PARAUPEXTEND": 1, - "left": 7, - "character.": 9, - "CharLeft": 1, - "SCI_CHARLEFT": 1, - "CharLeftExtend": 1, - "SCI_CHARLEFTEXTEND": 1, - "CharLeftRectExtend": 1, - "SCI_CHARLEFTRECTEXTEND": 1, - "right": 8, - "CharRight": 1, - "SCI_CHARRIGHT": 1, - "CharRightExtend": 1, - "SCI_CHARRIGHTEXTEND": 1, - "CharRightRectExtend": 1, - "SCI_CHARRIGHTRECTEXTEND": 1, - "word.": 9, - "WordLeft": 1, - "SCI_WORDLEFT": 1, - "WordLeftExtend": 1, - "SCI_WORDLEFTEXTEND": 1, - "WordRight": 1, - "SCI_WORDRIGHT": 1, - "WordRightExtend": 1, - "SCI_WORDRIGHTEXTEND": 1, - "previous": 5, - "WordLeftEnd": 1, - "SCI_WORDLEFTEND": 1, - "WordLeftEndExtend": 1, - "SCI_WORDLEFTENDEXTEND": 1, - "next": 6, - "WordRightEnd": 1, - "SCI_WORDRIGHTEND": 1, - "WordRightEndExtend": 1, - "SCI_WORDRIGHTENDEXTEND": 1, - "word": 6, - "part.": 4, - "WordPartLeft": 1, - "SCI_WORDPARTLEFT": 1, - "WordPartLeftExtend": 1, - "SCI_WORDPARTLEFTEXTEND": 1, - "WordPartRight": 1, - "SCI_WORDPARTRIGHT": 1, - "WordPartRightExtend": 1, - "SCI_WORDPARTRIGHTEXTEND": 1, - "document": 16, - "Home": 1, - "SCI_HOME": 1, - "HomeExtend": 1, - "SCI_HOMEEXTEND": 1, - "HomeRectExtend": 1, - "SCI_HOMERECTEXTEND": 1, - "displayed": 10, - "HomeDisplay": 1, - "SCI_HOMEDISPLAY": 1, - "HomeDisplayExtend": 1, - "SCI_HOMEDISPLAYEXTEND": 1, - "HomeWrap": 1, - "SCI_HOMEWRAP": 1, - "HomeWrapExtend": 1, - "SCI_HOMEWRAPEXTEND": 1, - "first": 8, - "visible": 6, - "character": 8, - "VCHome": 1, - "SCI_VCHOME": 1, - "VCHomeExtend": 1, - "SCI_VCHOMEEXTEND": 1, - "VCHomeRectExtend": 1, - "SCI_VCHOMERECTEXTEND": 1, - "VCHomeWrap": 1, - "SCI_VCHOMEWRAP": 1, - "VCHomeWrapExtend": 1, - "SCI_VCHOMEWRAPEXTEND": 1, - "LineEnd": 1, - "SCI_LINEEND": 1, - "LineEndExtend": 1, - "SCI_LINEENDEXTEND": 1, - "LineEndRectExtend": 1, - "SCI_LINEENDRECTEXTEND": 1, - "LineEndDisplay": 1, - "SCI_LINEENDDISPLAY": 1, - "LineEndDisplayExtend": 1, - "SCI_LINEENDDISPLAYEXTEND": 1, - "LineEndWrap": 1, - "SCI_LINEENDWRAP": 1, - "LineEndWrapExtend": 1, - "SCI_LINEENDWRAPEXTEND": 1, - "DocumentStart": 1, - "SCI_DOCUMENTSTART": 1, - "DocumentStartExtend": 1, - "SCI_DOCUMENTSTARTEXTEND": 1, - "DocumentEnd": 1, - "SCI_DOCUMENTEND": 1, - "DocumentEndExtend": 1, - "SCI_DOCUMENTENDEXTEND": 1, - "page.": 13, - "PageUp": 1, - "SCI_PAGEUP": 1, - "PageUpExtend": 1, - "SCI_PAGEUPEXTEND": 1, - "PageUpRectExtend": 1, - "SCI_PAGEUPRECTEXTEND": 1, - "PageDown": 1, - "SCI_PAGEDOWN": 1, - "PageDownExtend": 1, - "SCI_PAGEDOWNEXTEND": 1, - "PageDownRectExtend": 1, - "SCI_PAGEDOWNRECTEXTEND": 1, - "Stuttered": 4, - "move": 2, - "StutteredPageUp": 1, - "SCI_STUTTEREDPAGEUP": 1, - "extend": 2, - "StutteredPageUpExtend": 1, - "SCI_STUTTEREDPAGEUPEXTEND": 1, - "StutteredPageDown": 1, - "SCI_STUTTEREDPAGEDOWN": 1, - "StutteredPageDownExtend": 1, - "SCI_STUTTEREDPAGEDOWNEXTEND": 1, - "Delete": 10, - "SCI_CLEAR": 1, - "DeleteBack": 1, - "SCI_DELETEBACK": 1, - "at": 4, - "DeleteBackNotLine": 1, - "SCI_DELETEBACKNOTLINE": 1, - "left.": 2, - "DeleteWordLeft": 1, - "SCI_DELWORDLEFT": 1, - "right.": 2, - "DeleteWordRight": 1, - "SCI_DELWORDRIGHT": 1, - "DeleteWordRightEnd": 1, - "SCI_DELWORDRIGHTEND": 1, - "line": 10, - "DeleteLineLeft": 1, - "SCI_DELLINELEFT": 1, - "DeleteLineRight": 1, - "SCI_DELLINERIGHT": 1, - "LineDelete": 1, - "SCI_LINEDELETE": 1, - "Cut": 2, - "clipboard.": 5, - "LineCut": 1, - "SCI_LINECUT": 1, - "Copy": 2, - "LineCopy": 1, - "SCI_LINECOPY": 1, - "Transpose": 1, - "lines.": 1, - "LineTranspose": 1, - "SCI_LINETRANSPOSE": 1, - "Duplicate": 2, - "LineDuplicate": 1, - "SCI_LINEDUPLICATE": 1, - "Select": 33, - "whole": 2, - "SelectAll": 1, - "SCI_SELECTALL": 1, - "selected": 2, - "lines": 3, - "MoveSelectedLinesUp": 1, - "SCI_MOVESELECTEDLINESUP": 1, - "MoveSelectedLinesDown": 1, - "SCI_MOVESELECTEDLINESDOWN": 1, - "selection.": 1, - "SelectionDuplicate": 1, - "SCI_SELECTIONDUPLICATE": 1, - "Convert": 2, - "lower": 1, - "case.": 2, - "SelectionLowerCase": 1, - "SCI_LOWERCASE": 1, - "upper": 1, - "SelectionUpperCase": 1, - "SCI_UPPERCASE": 1, - "SelectionCut": 1, - "SCI_CUT": 1, - "SelectionCopy": 1, - "SCI_COPY": 1, - "Paste": 2, - "SCI_PASTE": 1, - "Toggle": 1, - "insert/overtype.": 1, - "EditToggleOvertype": 1, - "SCI_EDITTOGGLEOVERTYPE": 1, - "Insert": 2, - "platform": 1, - "dependent": 1, - "newline.": 1, - "Newline": 1, - "SCI_NEWLINE": 1, - "formfeed.": 1, - "Formfeed": 1, - "SCI_FORMFEED": 1, - "Indent": 1, - "level.": 2, - "Tab": 1, - "SCI_TAB": 1, - "De": 1, - "indent": 1, - "Backtab": 1, - "SCI_BACKTAB": 1, - "Cancel": 2, - "any": 5, - "operation.": 1, - "SCI_CANCEL": 1, - "Undo": 2, - "last": 4, - "command.": 5, - "SCI_UNDO": 1, - "Redo": 2, - "SCI_REDO": 1, - "Zoom": 2, - "in.": 1, - "ZoomIn": 1, - "SCI_ZOOMIN": 1, - "out.": 1, - "ZoomOut": 1, - "SCI_ZOOMOUT": 1, - "Return": 3, - "will": 2, - "executed": 1, - "instance.": 2, - "scicmd": 2, - "Execute": 1, - "execute": 1, - "Binds": 2, - "If": 4, - "then": 6, - "binding": 3, - "removed.": 2, - "invalid": 5, - "unchanged.": 1, - "Valid": 1, - "control": 1, - "Key_Down": 1, - "Key_Up": 1, - "Key_Left": 1, - "Key_Right": 1, - "Key_Home": 1, - "Key_End": 1, - "Key_PageUp": 1, - "Key_PageDown": 1, - "Key_Delete": 1, - "Key_Insert": 1, - "Key_Escape": 1, - "Key_Backspace": 1, - "Key_Tab": 1, - "Key_Return.": 1, - "Keys": 1, - "modified": 2, - "combination": 1, - "SHIFT": 1, - "CTRL": 1, - "ALT": 1, - "META.": 1, - "sa": 8, - "setAlternateKey": 3, - "validKey": 3, - "setKey": 3, - "alternate": 3, - "altkey": 3, - "alternateKey": 3, - "currently": 2, - "returned.": 4, - "qkey": 2, - "qaltkey": 2, - "valid": 2, - "QsciCommandSet": 1, - "*qs": 1, - "cmd": 1, - "*desc": 1, - "bindKey": 1, - "qk": 1, - "scik": 1, - "*qsCmd": 1, - "scikey": 1, - "scialtkey": 1, - "*descCmd": 1, - "QSCIPRINTER_H": 2, - "": 1, - "": 1, - "QT_BEGIN_NAMESPACE": 1, - "QRect": 2, - "QPainter": 2, - "QT_END_NAMESPACE": 1, - "QsciPrinter": 9, - "sub": 2, - "Qt": 1, - "QPrinter": 3, - "able": 1, - "print": 4, - "text": 5, - "Scintilla": 2, - "further": 1, - "classed": 1, - "alter": 1, - "layout": 1, - "adding": 2, - "headers": 3, - "footers": 2, - "example.": 1, - "Constructs": 1, - "printer": 1, - "paint": 1, - "device": 1, - "mode": 4, - "mode.": 1, - "PrinterMode": 1, - "ScreenResolution": 1, - "Destroys": 1, - "Format": 1, - "page": 4, - "example": 1, - "before": 1, - "drawn": 2, - "on": 1, - "painter": 4, - "used": 4, - "add": 3, - "customised": 2, - "graphics.": 2, - "drawing": 4, - "actually": 1, - "being": 2, - "rather": 1, - "than": 1, - "sized.": 1, - "methods": 1, - "must": 1, - "only": 1, - "called": 1, - "when": 5, - "true.": 1, - "area": 5, - "draw": 1, - "text.": 3, - "should": 1, - "necessary": 1, - "reserve": 1, - "By": 1, - "relative": 1, - "printable": 1, - "Use": 1, - "setFullPage": 1, - "because": 2, - "calling": 1, - "printRange": 2, - "you": 1, - "want": 2, - "try": 1, - "over": 1, - "pagenr": 2, - "number": 3, - "numbered": 1, - "formatPage": 1, - "points": 2, - "each": 2, - "font": 2, - "printing.": 2, - "setMagnification": 2, - "magnification": 3, - "mag": 2, - "Sets": 2, - "printing": 2, - "magnification.": 1, - "Print": 1, - "range": 1, - "qsb.": 1, - "negative": 2, - "signifies": 2, - "returned": 2, - "there": 1, - "no": 1, - "error.": 1, - "*qsb": 1, - "wrap": 4, - "WrapWord.": 1, - "setWrapMode": 2, - "WrapMode": 3, - "wrapMode": 2, - "wmode.": 1, - "wmode": 1, - "v8": 9, - "Scanner": 16, - "UnicodeCache*": 4, - "unicode_cache": 3, - "unicode_cache_": 10, - "octal_pos_": 5, - "Location": 14, - "harmony_scoping_": 4, - "harmony_modules_": 4, - "Initialize": 4, - "Utf16CharacterStream*": 3, - "source_": 7, - "Init": 3, - "has_line_terminator_before_next_": 9, - "SkipWhiteSpace": 4, - "Scan": 5, - "uc32": 19, - "ScanHexNumber": 2, - "expected_length": 4, - "ASSERT": 17, - "prevent": 1, - "overflow": 1, - "digits": 3, - "c0_": 64, - "d": 8, - "HexValue": 2, - "j": 4, - "PushBack": 8, - "Advance": 44, - "STATIC_ASSERT": 5, - "Token": 212, - "NUM_TOKENS": 1, - "byte": 1, - "one_char_tokens": 2, - "ILLEGAL": 120, - "LPAREN": 2, - "RPAREN": 2, - "COMMA": 2, - "COLON": 2, - "SEMICOLON": 2, - "CONDITIONAL": 2, - "f": 5, - "LBRACK": 2, - "RBRACK": 2, - "LBRACE": 2, - "RBRACE": 2, - "BIT_NOT": 2, - "Value": 23, - "Next": 3, - "current_": 2, - "next_": 2, - "has_multiline_comment_before_next_": 5, - "static_cast": 7, - "token": 64, - "": 1, - "pos": 12, - "source_pos": 10, - "next_.token": 3, - "next_.location.beg_pos": 3, - "next_.location.end_pos": 4, - "current_.token": 4, - "IsByteOrderMark": 2, - "xFEFF": 1, - "xFFFE": 1, - "start_position": 2, - "IsWhiteSpace": 2, - "IsLineTerminator": 6, - "SkipSingleLineComment": 6, - "undo": 4, - "WHITESPACE": 6, - "SkipMultiLineComment": 3, - "ch": 5, - "ScanHtmlComment": 3, - "LT": 2, - "next_.literal_chars": 13, - "ScanString": 3, - "LTE": 1, - "ASSIGN_SHL": 1, - "SHL": 1, - "GTE": 1, - "ASSIGN_SAR": 1, - "ASSIGN_SHR": 1, - "SHR": 1, - "SAR": 1, - "GT": 1, - "EQ_STRICT": 1, - "EQ": 1, - "ASSIGN": 1, - "NE_STRICT": 1, - "NE": 1, - "NOT": 1, - "INC": 1, - "ASSIGN_ADD": 1, - "ADD": 1, - "DEC": 1, - "ASSIGN_SUB": 1, - "SUB": 1, - "ASSIGN_MUL": 1, - "MUL": 1, - "ASSIGN_MOD": 1, - "MOD": 1, - "ASSIGN_DIV": 1, - "DIV": 1, - "AND": 1, - "ASSIGN_BIT_AND": 1, - "BIT_AND": 1, - "OR": 1, - "ASSIGN_BIT_OR": 1, - "BIT_OR": 1, - "ASSIGN_BIT_XOR": 1, - "BIT_XOR": 1, - "IsDecimalDigit": 2, - "ScanNumber": 3, - "PERIOD": 1, - "IsIdentifierStart": 2, - "ScanIdentifierOrKeyword": 2, - "EOS": 1, - "SeekForward": 4, - "current_pos": 4, - "ASSERT_EQ": 1, - "ScanEscape": 2, - "IsCarriageReturn": 2, - "IsLineFeed": 2, - "fall": 2, - "through": 2, - "v": 3, - "xx": 1, - "xxx": 1, - "error": 1, - "immediately": 1, - "octal": 1, - "escape": 1, - "quote": 3, - "consume": 2, - "LiteralScope": 4, - "literal": 2, - ".": 2, - "X": 2, - "E": 3, - "l": 1, - "p": 5, - "w": 1, - "keyword": 1, - "Unescaped": 1, - "in_character_class": 2, - "AddLiteralCharAdvance": 3, - "literal.Complete": 2, - "ScanLiteralUnicodeEscape": 3, - "V8_SCANNER_H_": 3, - "ParsingFlags": 1, - "kNoParsingFlags": 1, - "kLanguageModeMask": 4, - "kAllowLazy": 1, - "kAllowNativesSyntax": 1, - "kAllowModules": 1, - "CLASSIC_MODE": 2, - "STRICT_MODE": 2, - "EXTENDED_MODE": 2, - "detect": 1, - "x16": 1, - "x36.": 1, - "Utf16CharacterStream": 3, - "pos_": 6, - "buffer_cursor_": 5, - "buffer_end_": 3, - "ReadBlock": 2, - "": 1, - "kEndOfInput": 2, - "code_unit_count": 7, - "buffered_chars": 2, - "SlowSeekForward": 2, - "int32_t": 1, - "code_unit": 6, - "uc16*": 3, - "UnicodeCache": 3, - "unibrow": 11, - "Utf8InputBuffer": 2, - "<1024>": 2, - "Utf8Decoder": 2, - "StaticResource": 2, - "": 2, - "utf8_decoder": 1, - "utf8_decoder_": 2, - "uchar": 4, - "kIsIdentifierStart.get": 1, - "IsIdentifierPart": 1, - "kIsIdentifierPart.get": 1, - "kIsLineTerminator.get": 1, - "kIsWhiteSpace.get": 1, - "Predicate": 4, - "": 1, - "128": 4, - "kIsIdentifierStart": 1, - "": 1, - "kIsIdentifierPart": 1, - "": 1, - "kIsLineTerminator": 1, - "": 1, - "kIsWhiteSpace": 1, - "DISALLOW_COPY_AND_ASSIGN": 2, - "LiteralBuffer": 6, - "is_ascii_": 10, - "position_": 17, - "backing_store_": 7, - "backing_store_.length": 4, - "backing_store_.Dispose": 3, - "INLINE": 2, - "AddChar": 2, - "uint32_t": 8, - "ExpandBuffer": 2, - "kMaxAsciiCharCodeU": 1, - "": 6, - "kASCIISize": 1, - "ConvertToUtf16": 2, - "*reinterpret_cast": 1, - "": 2, - "kUC16Size": 2, - "is_ascii": 3, - "Vector": 13, - "uc16": 5, - "utf16_literal": 3, - "backing_store_.start": 5, - "ascii_literal": 3, - "length": 8, - "kInitialCapacity": 2, - "kGrowthFactory": 2, - "kMinConversionSlack": 1, - "kMaxGrowth": 2, - "MB": 1, - "NewCapacity": 3, - "min_capacity": 2, - "capacity": 3, - "Max": 1, - "new_capacity": 2, - "Min": 1, - "new_store": 6, - "memcpy": 1, - "new_store.start": 3, - "new_content_size": 4, - "src": 2, - "": 1, - "dst": 2, - "Scanner*": 2, - "self": 5, - "scanner_": 5, - "complete_": 4, - "StartLiteral": 2, - "DropLiteral": 2, - "Complete": 1, - "TerminateLiteral": 2, - "beg_pos": 5, - "end_pos": 4, - "kNoOctalLocation": 1, - "scanner_contants": 1, - "current_token": 1, - "location": 4, - "current_.location": 2, - "literal_ascii_string": 1, - "ASSERT_NOT_NULL": 9, - "current_.literal_chars": 11, - "literal_utf16_string": 1, - "is_literal_ascii": 1, - "literal_length": 1, - "literal_contains_escapes": 1, - "source_length": 3, - "location.end_pos": 1, - "location.beg_pos": 1, - "STRING": 1, - "peek": 1, - "peek_location": 1, - "next_.location": 1, - "next_literal_ascii_string": 1, - "next_literal_utf16_string": 1, - "is_next_literal_ascii": 1, - "next_literal_length": 1, - "kCharacterLookaheadBufferSize": 3, - "ScanOctalEscape": 1, - "octal_position": 1, - "clear_octal_position": 1, - "HarmonyScoping": 1, - "SetHarmonyScoping": 1, - "scoping": 2, - "HarmonyModules": 1, - "SetHarmonyModules": 1, - "modules": 2, - "HasAnyLineTerminatorBeforeNext": 1, - "ScanRegExpPattern": 1, - "seen_equal": 1, - "ScanRegExpFlags": 1, - "IsIdentifier": 1, - "CharacterStream*": 1, - "buffer": 1, - "TokenDesc": 3, - "LiteralBuffer*": 2, - "literal_chars": 1, - "free_buffer": 3, - "literal_buffer1_": 3, - "literal_buffer2_": 2, - "AddLiteralChar": 2, - "tok": 2, - "else_": 2, - "ScanDecimalDigits": 1, - "seen_period": 1, - "ScanIdentifierSuffix": 1, - "LiteralScope*": 1, - "ScanIdentifierUnicodeEscape": 1, - "desc": 2, - "as": 1, - "look": 1, - "ahead": 1, - "UTILS_H": 3, - "": 1, - "": 1, - "": 1, - "QTemporaryFile": 1, - "showUsage": 1, - "QtMsgType": 1, - "type": 6, - "dump_path": 1, - "minidump_id": 1, - "void*": 1, - "context": 8, - "succeeded": 1, - "QVariant": 1, - "coffee2js": 1, - "script": 1, - "injectJsInFrame": 2, - "jsFilePath": 5, - "libraryPath": 5, - "QWebFrame": 4, - "*targetFrame": 4, - "startingScript": 2, - "Encoding": 3, - "jsFileEnc": 2, - "readResourceFileUtf8": 1, - "resourceFilePath": 1, - "loadJSForDebug": 2, - "autorun": 2, - "cleanupFromDebug": 1, - "findScript": 1, - "jsFromScriptFile": 1, - "scriptPath": 1, - "enc": 1, - "shouldn": 1, - "instantiated": 1, - "QTemporaryFile*": 2, - "m_tempHarness": 1, - "We": 1, - "make": 1, - "sure": 1, - "clean": 1, - "after": 1, - "ourselves": 1, - "m_tempWrapper": 1, - "V8_DECLARE_ONCE": 1, - "init_once": 2, - "V8": 21, - "is_running_": 6, - "has_been_set_up_": 4, - "has_been_disposed_": 6, - "has_fatal_error_": 5, - "use_crankshaft_": 6, - "List": 3, - "": 3, - "call_completed_callbacks_": 16, - "LazyMutex": 1, - "entropy_mutex": 1, - "LAZY_MUTEX_INITIALIZER": 1, - "EntropySource": 3, - "entropy_source": 4, - "Deserializer*": 2, - "des": 3, - "FlagList": 1, - "EnforceFlagImplications": 1, - "InitializeOncePerProcess": 4, - "Isolate": 9, - "CurrentPerIsolateThreadData": 4, - "EnterDefaultIsolate": 1, - "thread_id": 1, - ".Equals": 1, - "ThreadId": 1, - "Current": 5, - "isolate": 15, - "IsDead": 2, - "Isolate*": 6, - "SetFatalError": 2, - "TearDown": 5, - "IsDefaultIsolate": 1, - "ElementsAccessor": 2, - "LOperand": 2, - "TearDownCaches": 1, - "RegisteredExtension": 1, - "UnregisterAll": 1, - "OS": 3, - "seed_random": 2, - "uint32_t*": 2, - "state": 15, - "FLAG_random_seed": 2, - "val": 3, - "ScopedLock": 1, - "lock": 1, - "entropy_mutex.Pointer": 1, - "random": 1, - "random_base": 3, - "xFFFF": 2, - "FFFF": 1, - "SetEntropySource": 2, - "SetReturnAddressLocationResolver": 3, - "ReturnAddressLocationResolver": 2, - "resolver": 3, - "StackFrame": 1, - "Random": 3, - "Context*": 4, - "IsGlobalContext": 1, - "ByteArray*": 1, - "seed": 2, - "random_seed": 1, - "": 1, - "GetDataStartAddress": 1, - "RandomPrivate": 2, - "private_random_seed": 1, - "IdleNotification": 3, - "hint": 3, - "FLAG_use_idle_notification": 1, - "HEAP": 1, - "AddCallCompletedCallback": 2, - "CallCompletedCallback": 4, - "callback": 7, - "Lazy": 1, - "init.": 1, - "Add": 1, - "RemoveCallCompletedCallback": 2, - "Remove": 1, - "FireCallCompletedCallback": 2, - "HandleScopeImplementer*": 1, - "handle_scope_implementer": 5, - "CallDepthIsZero": 1, - "IncrementCallDepth": 1, - "DecrementCallDepth": 1, - "union": 1, - "double": 23, - "double_value": 1, - "uint64_t": 2, - "uint64_t_value": 1, - "double_int_union": 2, - "Object*": 4, - "FillHeapNumberWithRandom": 2, - "heap_number": 4, - "random_bits": 2, - "binary_million": 3, - "r.double_value": 3, - "r.uint64_t_value": 1, - "HeapNumber": 1, - "cast": 1, - "set_value": 1, - "InitializeOncePerProcessImpl": 3, - "SetUp": 4, - "FLAG_crankshaft": 1, - "Serializer": 1, - "enabled": 1, - "CPU": 2, - "SupportsCrankshaft": 1, - "PostSetUp": 1, - "RuntimeProfiler": 1, - "GlobalSetUp": 1, - "FLAG_stress_compaction": 1, - "FLAG_force_marking_deque_overflows": 1, - "FLAG_gc_global": 1, - "FLAG_max_new_space_size": 1, - "kPageSizeBits": 1, - "SetUpCaches": 1, - "SetUpJSCallerSavedCodeData": 1, - "SamplerRegistry": 1, - "ExternalReference": 1, - "CallOnce": 1, - "V8_V8_H_": 3, - "defined": 21, - "GOOGLE3": 2, - "DEBUG": 3, - "NDEBUG": 4, - "both": 1, - "set": 1, - "Deserializer": 1, - "AllStatic": 1, - "IsRunning": 1, - "UseCrankshaft": 1, - "FatalProcessOutOfMemory": 1, - "take_snapshot": 1, - "NilValue": 1, - "kNullValue": 1, - "kUndefinedValue": 1, - "EqualityKind": 1, - "kStrictEquality": 1, - "kNonStrictEquality": 1, - "PY_SSIZE_T_CLEAN": 1, - "Py_PYTHON_H": 1, - "Python": 1, - "needed": 1, - "compile": 1, - "C": 1, - "extensions": 1, - "please": 1, - "install": 1, - "development": 1, - "Python.": 1, - "#else": 24, - "": 1, - "offsetof": 2, - "member": 2, - "type*": 1, - "WIN32": 2, - "MS_WINDOWS": 2, - "__stdcall": 2, - "__cdecl": 2, - "__fastcall": 2, - "DL_IMPORT": 2, - "DL_EXPORT": 2, - "PY_LONG_LONG": 5, - "LONG_LONG": 1, - "PY_VERSION_HEX": 9, - "METH_COEXIST": 1, - "PyDict_CheckExact": 1, - "op": 6, - "Py_TYPE": 4, - "PyDict_Type": 1, - "PyDict_Contains": 1, - "o": 20, - "PySequence_Contains": 1, - "Py_ssize_t": 17, - "PY_SSIZE_T_MAX": 1, - "INT_MAX": 1, - "PY_SSIZE_T_MIN": 1, - "INT_MIN": 1, - "PY_FORMAT_SIZE_T": 1, - "PyInt_FromSsize_t": 2, - "z": 46, - "PyInt_FromLong": 13, - "PyInt_AsSsize_t": 2, - "PyInt_AsLong": 2, - "PyNumber_Index": 1, - "PyNumber_Int": 1, - "PyIndex_Check": 1, - "PyNumber_Check": 1, - "PyErr_WarnEx": 1, - "category": 2, - "message": 2, - "stacklevel": 1, - "PyErr_Warn": 1, - "Py_REFCNT": 1, - "ob": 6, - "PyObject*": 16, - "ob_refcnt": 1, - "ob_type": 7, - "Py_SIZE": 1, - "PyVarObject*": 1, - "ob_size": 1, - "PyVarObject_HEAD_INIT": 1, - "PyObject_HEAD_INIT": 1, - "PyType_Modified": 1, - "*buf": 1, - "PyObject": 221, - "*obj": 2, - "len": 1, - "itemsize": 2, - "readonly": 2, - "ndim": 2, - "*format": 1, - "*shape": 1, - "*strides": 1, - "*suboffsets": 1, - "*internal": 1, - "Py_buffer": 5, - "PyBUF_SIMPLE": 1, - "PyBUF_WRITABLE": 1, - "PyBUF_FORMAT": 1, - "PyBUF_ND": 2, - "PyBUF_STRIDES": 5, - "PyBUF_C_CONTIGUOUS": 3, - "PyBUF_F_CONTIGUOUS": 3, - "PyBUF_ANY_CONTIGUOUS": 1, - "PyBUF_INDIRECT": 1, - "PY_MAJOR_VERSION": 10, - "__Pyx_BUILTIN_MODULE_NAME": 2, - "Py_TPFLAGS_CHECKTYPES": 1, - "Py_TPFLAGS_HAVE_INDEX": 1, - "Py_TPFLAGS_HAVE_NEWBUFFER": 1, - "PyBaseString_Type": 1, - "PyUnicode_Type": 2, - "PyStringObject": 2, - "PyUnicodeObject": 1, - "PyString_Type": 2, - "PyString_Check": 2, - "PyUnicode_Check": 1, - "PyString_CheckExact": 2, - "PyUnicode_CheckExact": 1, - "PyBytesObject": 1, - "PyBytes_Type": 1, - "PyBytes_Check": 1, - "PyBytes_CheckExact": 1, - "PyBytes_FromString": 2, - "PyString_FromString": 1, - "PyBytes_FromStringAndSize": 1, - "PyString_FromStringAndSize": 1, - "PyBytes_FromFormat": 1, - "PyString_FromFormat": 1, - "PyBytes_DecodeEscape": 1, - "PyString_DecodeEscape": 1, - "PyBytes_AsString": 2, - "PyString_AsString": 1, - "PyBytes_AsStringAndSize": 1, - "PyString_AsStringAndSize": 1, - "PyBytes_Size": 1, - "PyString_Size": 1, - "PyBytes_AS_STRING": 1, - "PyString_AS_STRING": 1, - "PyBytes_GET_SIZE": 1, - "PyString_GET_SIZE": 1, - "PyBytes_Repr": 1, - "PyString_Repr": 1, - "PyBytes_Concat": 1, - "PyString_Concat": 1, - "PyBytes_ConcatAndDel": 1, - "PyString_ConcatAndDel": 1, - "PySet_Check": 1, - "obj": 42, - "PyObject_TypeCheck": 3, - "PySet_Type": 2, - "PyFrozenSet_Check": 1, - "PyFrozenSet_Type": 1, - "PySet_CheckExact": 2, - "__Pyx_TypeCheck": 1, - "PyTypeObject": 2, - "PyIntObject": 1, - "PyLongObject": 2, - "PyInt_Type": 1, - "PyLong_Type": 1, - "PyInt_Check": 1, - "PyLong_Check": 1, - "PyInt_CheckExact": 1, - "PyLong_CheckExact": 1, - "PyInt_FromString": 1, - "PyLong_FromString": 1, - "PyInt_FromUnicode": 1, - "PyLong_FromUnicode": 1, - "PyLong_FromLong": 1, - "PyInt_FromSize_t": 1, - "PyLong_FromSize_t": 1, - "PyLong_FromSsize_t": 1, - "PyLong_AsLong": 1, - "PyInt_AS_LONG": 1, - "PyLong_AS_LONG": 1, - "PyLong_AsSsize_t": 1, - "PyInt_AsUnsignedLongMask": 1, - "PyLong_AsUnsignedLongMask": 1, - "PyInt_AsUnsignedLongLongMask": 1, - "PyLong_AsUnsignedLongLongMask": 1, - "PyBoolObject": 1, - "__Pyx_PyNumber_Divide": 2, - "PyNumber_TrueDivide": 1, - "__Pyx_PyNumber_InPlaceDivide": 2, - "PyNumber_InPlaceTrueDivide": 1, - "PyNumber_Divide": 1, - "PyNumber_InPlaceDivide": 1, - "__Pyx_PySequence_GetSlice": 2, - "PySequence_GetSlice": 2, - "__Pyx_PySequence_SetSlice": 2, - "PySequence_SetSlice": 2, - "__Pyx_PySequence_DelSlice": 2, - "PySequence_DelSlice": 2, - "unlikely": 69, - "PyErr_SetString": 4, - "PyExc_SystemError": 3, - "likely": 15, - "tp_as_mapping": 3, - "PyErr_Format": 4, - "PyExc_TypeError": 5, - "tp_name": 4, - "PyMethod_New": 2, - "func": 3, - "klass": 1, - "PyInstanceMethod_New": 1, - "__Pyx_GetAttrString": 2, - "PyObject_GetAttrString": 3, - "__Pyx_SetAttrString": 2, - "PyObject_SetAttrString": 2, - "__Pyx_DelAttrString": 2, - "PyObject_DelAttrString": 2, - "__Pyx_NAMESTR": 3, - "__Pyx_DOCSTR": 3, - "__cplusplus": 10, - "__PYX_EXTERN_C": 2, - "_USE_MATH_DEFINES": 1, - "": 1, - "__PYX_HAVE_API__wrapper_inner": 1, - "PYREX_WITHOUT_ASSERTIONS": 1, - "CYTHON_WITHOUT_ASSERTIONS": 1, - "CYTHON_INLINE": 68, - "__GNUC__": 5, - "__inline__": 1, - "#elif": 3, - "__inline": 1, - "__STDC_VERSION__": 2, - "L": 1, - "CYTHON_UNUSED": 7, - "**p": 1, - "*s": 1, - "long": 5, - "encoding": 1, - "is_unicode": 1, - "is_str": 1, - "intern": 1, - "__Pyx_StringTabEntry": 1, - "__Pyx_PyBytes_FromUString": 1, - "__Pyx_PyBytes_AsUString": 1, - "__Pyx_PyBool_FromLong": 1, - "Py_INCREF": 3, - "Py_True": 2, - "Py_False": 2, - "__Pyx_PyObject_IsTrue": 8, - "__Pyx_PyNumber_Int": 1, - "__Pyx_PyIndex_AsSsize_t": 1, - "__Pyx_PyInt_FromSize_t": 1, - "__Pyx_PyInt_AsSize_t": 1, - "__pyx_PyFloat_AsDouble": 3, - "PyFloat_CheckExact": 1, - "PyFloat_AS_DOUBLE": 1, - "PyFloat_AsDouble": 1, - "__GNUC_MINOR__": 1, - "__builtin_expect": 2, - "*__pyx_m": 1, - "*__pyx_b": 1, - "*__pyx_empty_tuple": 1, - "*__pyx_empty_bytes": 1, - "__pyx_lineno": 80, - "__pyx_clineno": 80, - "__pyx_cfilenm": 1, - "__FILE__": 2, - "*__pyx_filename": 1, - "CYTHON_CCOMPLEX": 12, - "_Complex_I": 3, - "": 1, - "": 1, - "__sun__": 1, - "fj": 1, - "*__pyx_f": 1, - "npy_int8": 1, - "__pyx_t_5numpy_int8_t": 1, - "npy_int16": 1, - "__pyx_t_5numpy_int16_t": 1, - "npy_int32": 1, - "__pyx_t_5numpy_int32_t": 1, - "npy_int64": 1, - "__pyx_t_5numpy_int64_t": 1, - "npy_uint8": 1, - "__pyx_t_5numpy_uint8_t": 1, - "npy_uint16": 1, - "__pyx_t_5numpy_uint16_t": 1, - "npy_uint32": 1, - "__pyx_t_5numpy_uint32_t": 1, - "npy_uint64": 1, - "__pyx_t_5numpy_uint64_t": 1, - "npy_float32": 1, - "__pyx_t_5numpy_float32_t": 1, - "npy_float64": 1, - "__pyx_t_5numpy_float64_t": 1, - "npy_long": 1, - "__pyx_t_5numpy_int_t": 1, - "npy_longlong": 1, - "__pyx_t_5numpy_long_t": 1, - "npy_intp": 10, - "__pyx_t_5numpy_intp_t": 1, - "npy_uintp": 1, - "__pyx_t_5numpy_uintp_t": 1, - "npy_ulong": 1, - "__pyx_t_5numpy_uint_t": 1, - "npy_ulonglong": 1, - "__pyx_t_5numpy_ulong_t": 1, - "npy_double": 2, - "__pyx_t_5numpy_float_t": 1, - "__pyx_t_5numpy_double_t": 1, - "npy_longdouble": 1, - "__pyx_t_5numpy_longdouble_t": 1, - "complex": 2, - "__pyx_t_float_complex": 27, - "_Complex": 2, - "real": 2, - "imag": 2, - "__pyx_t_double_complex": 27, - "npy_cfloat": 1, - "__pyx_t_5numpy_cfloat_t": 1, - "npy_cdouble": 2, - "__pyx_t_5numpy_cdouble_t": 1, - "npy_clongdouble": 1, - "__pyx_t_5numpy_clongdouble_t": 1, - "__pyx_t_5numpy_complex_t": 1, - "CYTHON_REFNANNY": 3, - "__Pyx_RefNannyAPIStruct": 4, - "*__Pyx_RefNanny": 1, - "__Pyx_RefNannyImportAPI": 1, - "*modname": 1, - "*m": 1, - "*p": 1, - "*r": 1, - "m": 4, - "PyImport_ImportModule": 1, - "modname": 1, - "PyLong_AsVoidPtr": 1, - "Py_XDECREF": 3, - "__Pyx_RefNannySetupContext": 13, - "*__pyx_refnanny": 1, - "__Pyx_RefNanny": 6, - "SetupContext": 1, - "__LINE__": 84, - "__Pyx_RefNannyFinishContext": 12, - "FinishContext": 1, - "__pyx_refnanny": 5, - "__Pyx_INCREF": 36, - "INCREF": 1, - "__Pyx_DECREF": 66, - "DECREF": 1, - "__Pyx_GOTREF": 60, - "GOTREF": 1, - "__Pyx_GIVEREF": 10, - "GIVEREF": 1, - "__Pyx_XDECREF": 26, - "Py_DECREF": 1, - "__Pyx_XGIVEREF": 7, - "__Pyx_XGOTREF": 1, - "__Pyx_TypeTest": 4, - "*type": 3, - "*__Pyx_GetName": 1, - "*dict": 1, - "__Pyx_ErrRestore": 1, - "*value": 2, - "*tb": 2, - "__Pyx_ErrFetch": 1, - "**type": 1, - "**value": 1, - "**tb": 1, - "__Pyx_Raise": 8, - "__Pyx_RaiseNoneNotIterableError": 1, - "__Pyx_RaiseNeedMoreValuesError": 1, - "index": 2, - "__Pyx_RaiseTooManyValuesError": 1, - "expected": 1, - "__Pyx_UnpackTupleError": 2, - "*__Pyx_Import": 1, - "*from_list": 1, - "__Pyx_Print": 1, - "__pyx_print": 1, - "__pyx_print_kwargs": 1, - "__Pyx_PrintOne": 4, - "*o": 1, - "*__Pyx_PyInt_to_py_Py_intptr_t": 1, - "Py_intptr_t": 1, - "__Pyx_CREAL": 4, - ".real": 3, - "__Pyx_CIMAG": 4, - ".imag": 3, - "__real__": 1, - "__imag__": 1, - "_WIN32": 1, - "__Pyx_SET_CREAL": 2, - "__Pyx_SET_CIMAG": 2, - "__pyx_t_float_complex_from_parts": 1, - "__Pyx_c_eqf": 2, - "__Pyx_c_sumf": 2, + "WGL_ARB_create_context": 2, "__Pyx_c_difff": 2, - "__Pyx_c_prodf": 2, - "__Pyx_c_quotf": 2, - "__Pyx_c_negf": 2, - "__Pyx_c_is_zerof": 3, - "__Pyx_c_conjf": 3, - "conj": 3, - "__Pyx_c_absf": 3, - "abs": 2, - "__Pyx_c_powf": 3, - "pow": 2, - "conjf": 1, - "cabsf": 1, - "cpowf": 1, - "__pyx_t_double_complex_from_parts": 1, - "__Pyx_c_eq": 2, - "__Pyx_c_sum": 2, - "__Pyx_c_diff": 2, - "__Pyx_c_prod": 2, - "__Pyx_c_quot": 2, - "__Pyx_c_neg": 2, - "__Pyx_c_is_zero": 3, - "__Pyx_c_conj": 3, - "__Pyx_c_abs": 3, - "__Pyx_c_pow": 3, - "cabs": 1, - "cpow": 1, - "__Pyx_PyInt_AsUnsignedChar": 1, - "short": 3, - "__Pyx_PyInt_AsUnsignedShort": 1, - "__Pyx_PyInt_AsUnsignedInt": 1, - "__Pyx_PyInt_AsChar": 1, - "__Pyx_PyInt_AsShort": 1, - "__Pyx_PyInt_AsInt": 1, - "signed": 5, - "__Pyx_PyInt_AsSignedChar": 1, - "__Pyx_PyInt_AsSignedShort": 1, - "__Pyx_PyInt_AsSignedInt": 1, - "__Pyx_PyInt_AsLongDouble": 1, - "__Pyx_PyInt_AsUnsignedLong": 1, - "__Pyx_PyInt_AsUnsignedLongLong": 1, - "__Pyx_PyInt_AsLong": 1, - "__Pyx_PyInt_AsLongLong": 1, - "__Pyx_PyInt_AsSignedLong": 1, - "__Pyx_PyInt_AsSignedLongLong": 1, - "__Pyx_WriteUnraisable": 3, - "__Pyx_ExportFunction": 1, - "*__pyx_f_5numpy_PyArray_MultiIterNew2": 2, - "*__pyx_f_5numpy_PyArray_MultiIterNew3": 2, - "*__pyx_f_5numpy_PyArray_MultiIterNew4": 2, - "*__pyx_f_5numpy_PyArray_MultiIterNew5": 2, - "*__pyx_f_5numpy__util_dtypestring": 2, - "PyArray_Descr": 6, - "__pyx_f_5numpy_set_array_base": 1, - "PyArrayObject": 19, - "*__pyx_f_5numpy_get_array_base": 1, - "inner_work_1d": 2, - "inner_work_2d": 2, - "__Pyx_MODULE_NAME": 1, - "__pyx_module_is_main_wrapper_inner": 1, - "*__pyx_builtin_ValueError": 1, - "*__pyx_builtin_range": 1, - "*__pyx_builtin_RuntimeError": 1, - "__pyx_k_1": 1, - "__pyx_k_2": 1, - "__pyx_k_3": 1, - "__pyx_k_5": 1, - "__pyx_k_7": 1, - "__pyx_k_9": 1, - "__pyx_k_11": 1, - "__pyx_k_12": 1, - "__pyx_k_15": 1, - "__pyx_k__B": 2, - "__pyx_k__H": 2, - "__pyx_k__I": 2, - "__pyx_k__L": 2, - "__pyx_k__O": 2, - "__pyx_k__Q": 2, - "__pyx_k__b": 2, - "__pyx_k__d": 2, - "__pyx_k__f": 2, - "__pyx_k__g": 2, - "__pyx_k__h": 2, - "__pyx_k__i": 2, - "__pyx_k__l": 2, - "__pyx_k__q": 2, - "__pyx_k__Zd": 2, - "__pyx_k__Zf": 2, - "__pyx_k__Zg": 2, - "__pyx_k__np": 1, - "__pyx_k__buf": 1, - "__pyx_k__obj": 1, - "__pyx_k__base": 1, - "__pyx_k__ndim": 1, - "__pyx_k__ones": 1, - "__pyx_k__descr": 1, - "__pyx_k__names": 1, - "__pyx_k__numpy": 1, - "__pyx_k__range": 1, - "__pyx_k__shape": 1, - "__pyx_k__fields": 1, - "__pyx_k__format": 1, - "__pyx_k__strides": 1, - "__pyx_k____main__": 1, - "__pyx_k____test__": 1, - "__pyx_k__itemsize": 1, - "__pyx_k__readonly": 1, - "__pyx_k__type_num": 1, - "__pyx_k__byteorder": 1, - "__pyx_k__ValueError": 1, - "__pyx_k__suboffsets": 1, - "__pyx_k__work_module": 1, - "__pyx_k__RuntimeError": 1, - "__pyx_k__pure_py_test": 1, - "__pyx_k__wrapper_inner": 1, - "__pyx_k__do_awesome_work": 1, - "*__pyx_kp_s_1": 1, - "*__pyx_kp_u_11": 1, - "*__pyx_kp_u_12": 1, - "*__pyx_kp_u_15": 1, - "*__pyx_kp_s_2": 1, - "*__pyx_kp_s_3": 1, - "*__pyx_kp_u_5": 1, - "*__pyx_kp_u_7": 1, - "*__pyx_kp_u_9": 1, - "*__pyx_n_s__RuntimeError": 1, - "*__pyx_n_s__ValueError": 1, - "*__pyx_n_s____main__": 1, - "*__pyx_n_s____test__": 1, - "*__pyx_n_s__base": 1, - "*__pyx_n_s__buf": 1, - "*__pyx_n_s__byteorder": 1, - "*__pyx_n_s__descr": 1, - "*__pyx_n_s__do_awesome_work": 1, - "*__pyx_n_s__fields": 1, - "*__pyx_n_s__format": 1, - "*__pyx_n_s__itemsize": 1, - "*__pyx_n_s__names": 1, - "*__pyx_n_s__ndim": 1, - "*__pyx_n_s__np": 1, - "*__pyx_n_s__numpy": 1, - "*__pyx_n_s__obj": 1, - "*__pyx_n_s__ones": 1, - "*__pyx_n_s__pure_py_test": 1, - "*__pyx_n_s__range": 1, - "*__pyx_n_s__readonly": 1, - "*__pyx_n_s__shape": 1, - "*__pyx_n_s__strides": 1, - "*__pyx_n_s__suboffsets": 1, - "*__pyx_n_s__type_num": 1, - "*__pyx_n_s__work_module": 1, - "*__pyx_n_s__wrapper_inner": 1, - "*__pyx_int_5": 1, - "*__pyx_int_15": 1, - "*__pyx_k_tuple_4": 1, - "*__pyx_k_tuple_6": 1, - "*__pyx_k_tuple_8": 1, - "*__pyx_k_tuple_10": 1, - "*__pyx_k_tuple_13": 1, - "*__pyx_k_tuple_14": 1, - "*__pyx_k_tuple_16": 1, - "__pyx_v_num_x": 4, - "*__pyx_v_data_ptr": 2, - "*__pyx_v_answer_ptr": 2, - "__pyx_v_nd": 6, - "*__pyx_v_dims": 2, - "__pyx_v_typenum": 6, - "*__pyx_v_data_np": 2, - "__pyx_v_sum": 6, - "__pyx_t_1": 154, - "*__pyx_t_2": 4, - "*__pyx_t_3": 4, - "*__pyx_t_4": 3, - "__pyx_t_5": 75, - "__pyx_kp_s_1": 1, - "__pyx_filename": 79, - "__pyx_f": 79, - "__pyx_L1_error": 88, - "__pyx_v_dims": 4, - "NPY_DOUBLE": 3, - "__pyx_t_2": 120, - "PyArray_SimpleNewFromData": 2, - "__pyx_v_data_ptr": 2, - "Py_None": 38, - "__pyx_ptype_5numpy_ndarray": 2, - "__pyx_v_data_np": 10, - "__Pyx_GetName": 4, - "__pyx_m": 4, - "__pyx_n_s__work_module": 3, - "__pyx_t_3": 113, - "PyObject_GetAttr": 4, - "__pyx_n_s__do_awesome_work": 3, - "PyTuple_New": 4, - "PyTuple_SET_ITEM": 4, - "__pyx_t_4": 35, - "PyObject_Call": 11, - "PyErr_Occurred": 2, - "__pyx_v_answer_ptr": 2, - "__pyx_L0": 24, - "__pyx_v_num_y": 2, - "__pyx_kp_s_2": 1, - "*__pyx_pf_13wrapper_inner_pure_py_test": 2, - "*__pyx_self": 2, - "*unused": 2, - "PyMethodDef": 1, - "__pyx_mdef_13wrapper_inner_pure_py_test": 1, - "PyCFunction": 1, - "__pyx_pf_13wrapper_inner_pure_py_test": 1, - "METH_NOARGS": 1, - "*__pyx_v_data": 1, - "*__pyx_r": 7, - "*__pyx_t_1": 8, - "__pyx_self": 2, - "__pyx_v_data": 7, - "__pyx_kp_s_3": 1, - "__pyx_n_s__np": 1, - "__pyx_n_s__ones": 1, - "__pyx_k_tuple_4": 1, - "__pyx_r": 39, - "__Pyx_AddTraceback": 7, - "__pyx_pf_5numpy_7ndarray___getbuffer__": 2, - "*__pyx_v_self": 4, - "*__pyx_v_info": 4, - "__pyx_v_flags": 4, - "__pyx_v_copy_shape": 5, - "__pyx_v_i": 6, - "__pyx_v_ndim": 6, - "__pyx_v_endian_detector": 6, - "__pyx_v_little_endian": 8, - "__pyx_v_t": 29, - "*__pyx_v_f": 2, - "*__pyx_v_descr": 2, - "__pyx_v_offset": 9, - "__pyx_v_hasfields": 4, - "__pyx_t_6": 40, - "__pyx_t_7": 9, - "*__pyx_t_8": 1, - "*__pyx_t_9": 1, - "__pyx_v_info": 33, - "__pyx_v_self": 16, - "PyArray_NDIM": 1, - "__pyx_L5": 6, - "PyArray_CHKFLAGS": 2, - "NPY_C_CONTIGUOUS": 1, - "__pyx_builtin_ValueError": 5, - "__pyx_k_tuple_6": 1, - "__pyx_L6": 6, - "NPY_F_CONTIGUOUS": 1, - "__pyx_k_tuple_8": 1, - "__pyx_L7": 2, - "buf": 1, - "PyArray_DATA": 1, - "strides": 5, - "malloc": 2, - "shape": 3, - "PyArray_STRIDES": 2, - "PyArray_DIMS": 2, - "__pyx_L8": 2, - "suboffsets": 1, - "PyArray_ITEMSIZE": 1, - "PyArray_ISWRITEABLE": 1, - "__pyx_v_f": 31, - "descr": 2, - "__pyx_v_descr": 10, - "PyDataType_HASFIELDS": 2, - "__pyx_L11": 7, - "type_num": 2, - "byteorder": 4, - "__pyx_k_tuple_10": 1, - "__pyx_L13": 2, - "NPY_BYTE": 2, - "__pyx_L14": 18, - "NPY_UBYTE": 2, - "NPY_SHORT": 2, - "NPY_USHORT": 2, - "NPY_INT": 2, - "NPY_UINT": 2, - "NPY_LONG": 1, - "NPY_ULONG": 1, - "NPY_LONGLONG": 1, - "NPY_ULONGLONG": 1, - "NPY_FLOAT": 1, - "NPY_LONGDOUBLE": 1, - "NPY_CFLOAT": 1, - "NPY_CDOUBLE": 1, - "NPY_CLONGDOUBLE": 1, - "NPY_OBJECT": 1, - "__pyx_t_8": 16, - "PyNumber_Remainder": 1, - "__pyx_kp_u_11": 1, - "format": 6, - "__pyx_L12": 2, - "__pyx_t_9": 7, - "__pyx_f_5numpy__util_dtypestring": 1, - "__pyx_L2": 2, - "__pyx_pf_5numpy_7ndarray_1__releasebuffer__": 2, - "PyArray_HASFIELDS": 1, - "free": 2, - "*__pyx_f_5numpy_PyArray_MultiIterNew1": 1, - "*__pyx_v_a": 5, - "PyArray_MultiIterNew": 5, - "__pyx_v_a": 5, - "*__pyx_v_b": 4, - "__pyx_v_b": 4, - "*__pyx_v_c": 3, - "__pyx_v_c": 3, - "*__pyx_v_d": 2, - "__pyx_v_d": 2, - "*__pyx_v_e": 1, - "__pyx_v_e": 1, - "*__pyx_v_end": 1, - "*__pyx_v_offset": 1, - "*__pyx_v_child": 1, - "*__pyx_v_fields": 1, - "*__pyx_v_childname": 1, - "*__pyx_v_new_offset": 1, - "*__pyx_v_t": 1, - "*__pyx_t_5": 1, - "__pyx_t_10": 7, - "*__pyx_t_11": 1, - "__pyx_v_child": 8, - "__pyx_v_fields": 7, - "__pyx_v_childname": 4, - "__pyx_v_new_offset": 5, - "names": 2, - "PyTuple_GET_SIZE": 2, - "PyTuple_GET_ITEM": 3, - "PyObject_GetItem": 1, - "fields": 1, - "PyTuple_CheckExact": 1, - "tuple": 3, - "__pyx_ptype_5numpy_dtype": 1, - "__pyx_v_end": 2, - "PyNumber_Subtract": 2, - "PyObject_RichCompare": 8, - "__pyx_int_15": 1, - "Py_LT": 2, - "__pyx_builtin_RuntimeError": 2, - "__pyx_k_tuple_13": 1, - "__pyx_k_tuple_14": 1, - "elsize": 1, - "__pyx_k_tuple_16": 1, - "__pyx_L10": 2, - "Py_EQ": 6 - }, - "Ceylon": { - "doc": 2, - "by": 1, - "shared": 5, - "void": 1, - "test": 1, - "(": 4, - ")": 4, - "{": 3, - "print": 1, - ";": 4, - "}": 3, - "class": 1, - "Test": 2, - "name": 4, - "satisfies": 1, - "Comparable": 1, - "": 1, - "String": 2, - "actual": 2, - "string": 1, - "Comparison": 1, - "compare": 1, - "other": 1, - "return": 1, - "<=>": 1, - "other.name": 1 - }, - "COBOL": { - "program": 1, - "-": 19, - "id.": 1, - "hello.": 3, - "procedure": 1, - "division.": 1, - "display": 1, - ".": 3, - "stop": 1, - "run.": 1, - "IDENTIFICATION": 2, - "DIVISION.": 4, - "PROGRAM": 2, - "ID.": 2, - "PROCEDURE": 2, - "DISPLAY": 2, - "STOP": 2, - "RUN.": 2, - "COBOL": 7, - "TEST": 2, - "RECORD.": 1, - "USAGES.": 1, - "COMP": 5, - "PIC": 5, - "S9": 4, - "(": 5, - ")": 5, - "COMP.": 3, - "COMP2": 2 - }, - "CoffeeScript": { - "CoffeeScript": 1, - "require": 21, - "CoffeeScript.require": 1, - "CoffeeScript.eval": 1, - "(": 193, - "code": 20, - "options": 16, - "{": 31, - "}": 34, - ")": 196, - "-": 107, - "options.bare": 2, - "on": 3, - "eval": 2, - "CoffeeScript.compile": 2, - "CoffeeScript.run": 3, - "Function": 1, - "return": 29, - "unless": 19, - "window": 1, - "CoffeeScript.load": 2, - "url": 2, - "callback": 35, - "xhr": 2, - "new": 12, - "window.ActiveXObject": 1, - "or": 22, - "XMLHttpRequest": 1, - "xhr.open": 1, - "true": 8, - "xhr.overrideMimeType": 1, - "if": 102, - "of": 7, - "xhr.onreadystatechange": 1, - "xhr.readyState": 1, - "is": 36, - "xhr.status": 1, - "in": 32, - "[": 134, - "]": 134, - "xhr.responseText": 1, - "else": 53, - "throw": 3, - "Error": 1, - "xhr.send": 1, - "null": 15, - "runScripts": 3, - "scripts": 2, - "document.getElementsByTagName": 1, - "coffees": 2, - "s": 10, - "for": 14, - "when": 16, - "s.type": 1, - "index": 4, - "length": 4, - "coffees.length": 1, - "do": 2, - "execute": 3, - "script": 7, - "+": 31, - ".type": 1, - "script.src": 2, - "script.innerHTML": 1, - "window.addEventListener": 1, - "addEventListener": 1, - "no": 3, - "attachEvent": 1, - "class": 11, - "Animal": 3, - "constructor": 6, - "@name": 2, - "move": 3, - "meters": 2, - "alert": 4, - "Snake": 2, - "extends": 6, - "super": 4, - "Horse": 2, - "sam": 1, - "tom": 1, - "sam.move": 1, - "tom.move": 1, - "#": 35, - "fs": 2, - "path": 3, - "Lexer": 3, - "RESERVED": 3, - "parser": 1, - "vm": 1, - "require.extensions": 3, - "module": 1, - "filename": 6, - "content": 4, - "compile": 5, - "fs.readFileSync": 1, - "module._compile": 1, - "require.registerExtension": 2, - "exports.VERSION": 1, - "exports.RESERVED": 1, - "exports.helpers": 2, - "exports.compile": 1, - "merge": 1, - "try": 3, - "js": 5, - "parser.parse": 3, - "lexer.tokenize": 3, - ".compile": 1, - "options.header": 1, - "catch": 2, - "err": 20, - "err.message": 2, - "options.filename": 5, - "header": 1, - "exports.tokens": 1, - "exports.nodes": 1, - "source": 5, - "typeof": 2, - "exports.run": 1, - "mainModule": 1, - "require.main": 1, - "mainModule.filename": 4, - "process.argv": 1, - "then": 24, - "fs.realpathSync": 2, - "mainModule.moduleCache": 1, - "and": 20, - "mainModule.paths": 1, - "._nodeModulePaths": 1, - "path.dirname": 2, - "path.extname": 1, - "isnt": 7, - "mainModule._compile": 2, - "exports.eval": 1, - "code.trim": 1, - "Script": 2, - "vm.Script": 1, - "options.sandbox": 4, - "instanceof": 2, - "Script.createContext": 2, - ".constructor": 1, - "sandbox": 8, - "k": 4, - "v": 4, - "own": 2, - "sandbox.global": 1, - "sandbox.root": 1, - "sandbox.GLOBAL": 1, - "global": 3, - "sandbox.__filename": 3, - "||": 3, - "sandbox.__dirname": 1, - "sandbox.module": 2, - "sandbox.require": 2, - "Module": 2, - "_module": 3, - "options.modulename": 1, - "_require": 2, - "Module._load": 1, - "_module.filename": 1, - "r": 4, - "Object.getOwnPropertyNames": 1, - "_require.paths": 1, - "_module.paths": 1, - "Module._nodeModulePaths": 1, - "process.cwd": 1, - "_require.resolve": 1, - "request": 2, - "Module._resolveFilename": 1, - "o": 4, - "o.bare": 1, - "ensure": 1, - "value": 25, - "vm.runInThisContext": 1, - "vm.runInContext": 1, - "lexer": 1, - "parser.lexer": 1, - "lex": 1, - "tag": 33, - "@yytext": 1, - "@yylineno": 1, - "@tokens": 7, - "@pos": 2, - "setInput": 1, - "upcomingInput": 1, - "parser.yy": 1, - "console.log": 1, - "number": 13, - "opposite": 2, - "square": 4, - "x": 6, - "*": 21, - "list": 2, - "math": 1, - "root": 1, - "Math.sqrt": 1, - "cube": 1, - "race": 1, - "winner": 2, - "runners...": 1, - "print": 1, - "runners": 1, - "elvis": 1, - "cubes": 1, - "math.cube": 1, - "num": 2, - "Rewriter": 2, - "INVERSES": 2, - "count": 5, - "starts": 1, - "compact": 1, - "last": 3, - "exports.Lexer": 1, - "tokenize": 1, - "opts": 1, - "WHITESPACE.test": 1, - "code.replace": 1, - "/": 44, - "r/g": 1, - ".replace": 3, - "TRAILING_SPACES": 2, - "@code": 1, - "The": 7, - "remainder": 1, - "the": 4, - "code.": 1, - "@line": 4, - "opts.line": 1, - "current": 5, - "line.": 1, - "@indent": 3, - "indentation": 3, - "level.": 3, - "@indebt": 1, - "over": 1, - "at": 2, - "@outdebt": 1, - "under": 1, - "outdentation": 1, - "@indents": 1, - "stack": 4, - "all": 1, - "levels.": 1, - "@ends": 1, - "pairing": 1, - "up": 1, - "tokens.": 1, - "Stream": 1, - "parsed": 1, - "tokens": 5, - "form": 1, - "line": 6, - ".": 13, - "i": 8, - "while": 4, - "@chunk": 9, - "i..": 1, - "@identifierToken": 1, - "@commentToken": 1, - "@whitespaceToken": 1, - "@lineToken": 1, - "@heredocToken": 1, - "@stringToken": 1, - "@numberToken": 1, - "@regexToken": 1, - "@jsToken": 1, - "@literalToken": 1, - "@closeIndentation": 1, - "@error": 10, - "@ends.pop": 1, - "opts.rewrite": 1, - "off": 1, - ".rewrite": 1, - "identifierToken": 1, - "match": 23, - "IDENTIFIER.exec": 1, - "input": 1, - "id": 16, - "colon": 3, - "@tag": 3, - "@token": 12, - "id.length": 1, - "forcedIdentifier": 4, - "prev": 17, - "not": 4, - "prev.spaced": 3, - "JS_KEYWORDS": 1, - "COFFEE_KEYWORDS": 1, - "id.toUpperCase": 1, - "LINE_BREAK": 2, - "@seenFor": 4, - "yes": 5, - "UNARY": 4, - "RELATION": 3, - "@value": 1, - "@tokens.pop": 1, - "JS_FORBIDDEN": 1, - "String": 1, - "id.reserved": 1, - "COFFEE_ALIAS_MAP": 1, - "COFFEE_ALIASES": 1, - "switch": 7, - "input.length": 1, - "numberToken": 1, - "NUMBER.exec": 1, - "BOX": 1, - "/.test": 4, - "/E/.test": 1, - "x/.test": 1, - "d*": 1, - "d": 2, - "lexedLength": 2, - "number.length": 1, - "octalLiteral": 2, - "/.exec": 2, - "parseInt": 5, - ".toString": 3, - "binaryLiteral": 2, - "b": 1, - "stringToken": 1, - "@chunk.charAt": 3, - "SIMPLESTR.exec": 1, - "string": 9, - "MULTILINER": 2, - "@balancedString": 1, - "<": 6, - "string.indexOf": 1, - "@interpolateString": 2, - "@escapeLines": 1, - "octalEsc": 1, - "|": 21, - "string.length": 1, - "heredocToken": 1, - "HEREDOC.exec": 1, - "heredoc": 4, - "quote": 5, - "heredoc.charAt": 1, - "doc": 11, - "@sanitizeHeredoc": 2, - "indent": 7, - "<=>": 1, - "indexOf": 1, - "interpolateString": 1, - "token": 1, - "STRING": 2, - "makeString": 1, - "n": 16, - "Matches": 1, - "consumes": 1, - "comments": 1, - "commentToken": 1, - "@chunk.match": 1, - "COMMENT": 2, - "comment": 2, - "here": 3, - "herecomment": 4, - "Array": 1, - ".join": 2, - "comment.length": 1, - "jsToken": 1, - "JSTOKEN.exec": 1, - "script.length": 1, - "regexToken": 1, - "HEREGEX.exec": 1, - "@heregexToken": 1, - "NOT_REGEX": 2, - "NOT_SPACED_REGEX": 2, - "REGEX.exec": 1, - "regex": 5, - "flags": 2, - "..1": 1, - "match.length": 1, - "heregexToken": 1, - "heregex": 1, - "body": 2, - "body.indexOf": 1, - "re": 1, - "body.replace": 1, - "HEREGEX_OMIT": 3, - "//g": 1, - "re.match": 1, - "*/": 2, - "heregex.length": 1, - "@tokens.push": 1, - "tokens.push": 1, - "value...": 1, - "continue": 3, - "value.replace": 2, - "/g": 3, - "spaced": 1, - "reserved": 1, - "word": 1, - "value.length": 2, - "MATH": 3, - "COMPARE": 3, - "COMPOUND_ASSIGN": 2, - "SHIFT": 3, - "LOGIC": 3, - ".spaced": 1, - "CALLABLE": 2, - "INDEXABLE": 2, - "@ends.push": 1, - "@pair": 1, - "sanitizeHeredoc": 1, - "HEREDOC_ILLEGAL.test": 1, - "doc.indexOf": 1, - "HEREDOC_INDENT.exec": 1, - "attempt": 2, - "attempt.length": 1, - "indent.length": 1, - "doc.replace": 2, - "///": 12, - "///g": 1, - "n/": 1, - "tagParameters": 1, - "this": 6, - "tokens.length": 1, - "tok": 5, - "stack.push": 1, - "stack.length": 1, - "stack.pop": 2, - "closeIndentation": 1, - "@outdentToken": 1, - "balancedString": 1, - "str": 1, - "end": 2, - "continueCount": 3, - "str.length": 1, - "letter": 1, - "str.charAt": 1, - "missing": 1, - "starting": 1, - "Hello": 1, - "name.capitalize": 1, - "OUTDENT": 1, - "THROW": 1, - "EXTENDS": 1, - "&": 4, - "false": 4, - "delete": 1, - "break": 1, - "debugger": 1, - "finally": 2, - "undefined": 1, - "until": 1, - "loop": 1, - "by": 1, - "&&": 1, - "case": 1, - "default": 1, - "function": 2, - "var": 1, - "void": 1, - "with": 1, - "const": 1, - "let": 2, - "enum": 1, - "export": 1, - "import": 1, - "native": 1, - "__hasProp": 1, - "__extends": 1, - "__slice": 1, - "__bind": 1, - "__indexOf": 1, - "implements": 1, - "interface": 1, - "package": 1, - "private": 1, - "protected": 1, - "public": 1, - "static": 1, - "yield": 1, - "arguments": 1, - "S": 10, - "OPERATOR": 1, - "%": 1, - "compound": 1, - "assign": 1, - "compare": 1, - "zero": 1, - "fill": 1, - "right": 1, - "shift": 2, - "doubles": 1, - "logic": 1, - "soak": 1, - "access": 1, - "range": 1, - "splat": 1, - "WHITESPACE": 1, - "###": 3, - "s*#": 1, - "##": 1, - ".*": 1, - "CODE": 1, - "MULTI_DENT": 1, - "SIMPLESTR": 1, - "JSTOKEN": 1, - "REGEX": 1, - "disallow": 1, - "leading": 1, - "whitespace": 1, - "equals": 1, - "signs": 1, - "every": 1, - "other": 1, - "thing": 1, - "anything": 1, - "escaped": 1, - "character": 1, - "imgy": 2, - "w": 2, - "HEREGEX": 1, - "#.*": 1, - "n/g": 1, - "HEREDOC_INDENT": 1, - "HEREDOC_ILLEGAL": 1, - "//": 1, - "LINE_CONTINUER": 1, - "s*": 1, - "BOOL": 1, - "NOT_REGEX.concat": 1, - "CALLABLE.concat": 1, - "async": 1, - "nack": 1, - "bufferLines": 3, - "pause": 2, - "sourceScriptEnv": 3, - "join": 8, - "exists": 5, - "basename": 2, - "resolve": 2, - "module.exports": 1, - "RackApplication": 1, - "@configuration": 1, - "@root": 8, - "@firstHost": 1, - "@logger": 1, - "@configuration.getLogger": 1, - "@readyCallbacks": 3, - "@quitCallbacks": 3, - "@statCallbacks": 3, - "ready": 1, - "@state": 11, - "@readyCallbacks.push": 1, - "@initialize": 2, - "quit": 1, - "@quitCallbacks.push": 1, - "@terminate": 2, - "queryRestartFile": 1, - "fs.stat": 1, - "stats": 1, - "@mtime": 5, - "lastMtime": 2, - "stats.mtime.getTime": 1, - "setPoolRunOnceFlag": 1, - "@statCallbacks.length": 1, - "alwaysRestart": 2, - "@pool.runOnce": 1, - "statCallback": 2, - "@statCallbacks.push": 1, - "loadScriptEnvironment": 1, - "env": 18, - "async.reduce": 1, - "scriptExists": 2, - "loadRvmEnvironment": 1, - "rvmrcExists": 2, - "rvm": 1, - "@configuration.rvmPath": 1, - "rvmExists": 2, - "libexecPath": 1, - "before": 2, - ".trim": 1, - "loadEnvironment": 1, - "@queryRestartFile": 2, - "@loadScriptEnvironment": 1, - "@configuration.env": 1, - "@loadRvmEnvironment": 1, - "initialize": 1, - "@quit": 3, - "@loadEnvironment": 1, - "@logger.error": 3, - "@pool": 2, - "nack.createPool": 1, - "size": 1, - ".POW_WORKERS": 1, - "@configuration.workers": 1, - "idle": 1, - ".POW_TIMEOUT": 1, - "@configuration.timeout": 1, - "@pool.stdout": 1, - "@logger.info": 1, - "@pool.stderr": 1, - "@logger.warning": 1, - "@pool.on": 2, - "process": 2, - "@logger.debug": 2, - "readyCallback": 2, - "terminate": 1, - "@ready": 3, - "@pool.quit": 1, - "quitCallback": 2, - "handle": 1, - "req": 4, - "res": 3, - "next": 3, - "resume": 2, - "@setPoolRunOnceFlag": 1, - "@restartIfNecessary": 1, - "req.proxyMetaVariables": 1, - "SERVER_PORT": 1, - "@configuration.dstPort.toString": 1, - "@pool.proxy": 1, - "restart": 1, - "restartIfNecessary": 1, - "mtimeChanged": 2, - "@restart": 1, - "writeRvmBoilerplate": 1, - "powrc": 3, - "boilerplate": 2, - "@constructor.rvmBoilerplate": 1, - "fs.readFile": 1, - "contents": 2, - "contents.indexOf": 1, - "fs.writeFile": 1, - "@rvmBoilerplate": 1, - "dnsserver": 1, - "exports.Server": 1, - "Server": 2, - "dnsserver.Server": 1, - "NS_T_A": 3, - "NS_T_NS": 2, - "NS_T_CNAME": 1, - "NS_T_SOA": 2, - "NS_C_IN": 5, - "NS_RCODE_NXDOMAIN": 2, - "domain": 6, - "@rootAddress": 2, - "@domain": 3, - "domain.toLowerCase": 1, - "@soa": 2, - "createSOA": 2, - "@on": 1, - "@handleRequest": 1, - "handleRequest": 1, - "question": 5, - "req.question": 1, - "subdomain": 10, - "@extractSubdomain": 1, - "question.name": 3, - "isARequest": 2, - "res.addRR": 2, - "subdomain.getAddress": 1, - ".isEmpty": 1, - "isNSRequest": 2, - "res.header.rcode": 1, - "res.send": 1, - "extractSubdomain": 1, - "name": 5, - "Subdomain.extract": 1, - "question.type": 2, - "question.class": 2, - "mname": 2, - "rname": 2, - "serial": 2, - "Date": 1, - ".getTime": 1, - "refresh": 2, - "retry": 2, - "expire": 2, - "minimum": 2, - "dnsserver.createSOA": 1, - "exports.createServer": 1, - "address": 4, - "exports.Subdomain": 1, - "Subdomain": 4, - "@extract": 1, - "name.toLowerCase": 1, - "offset": 4, - "name.length": 1, - "domain.length": 1, - "name.slice": 2, - "@for": 2, - "IPAddressSubdomain.pattern.test": 1, - "IPAddressSubdomain": 2, - "EncodedSubdomain.pattern.test": 1, - "EncodedSubdomain": 2, - "@subdomain": 1, - "@address": 2, - "@labels": 2, - ".split": 1, - "@length": 3, - "@labels.length": 1, - "isEmpty": 1, - "getAddress": 3, - "@pattern": 2, - "@labels.slice": 1, - "a": 2, - "z0": 2, - "decode": 2, - "exports.encode": 1, - "encode": 1, - "ip": 2, - "byte": 2, - "ip.split": 1, - "<<": 1, - "PATTERN": 1, - "exports.decode": 1, - "PATTERN.test": 1, - "ip.push": 1, - "xFF": 1, - "ip.join": 1 - }, - "Coq": { - "Inductive": 41, - "day": 9, - "Type": 86, - "|": 457, - "monday": 5, - "tuesday": 3, - "wednesday": 3, - "thursday": 3, - "friday": 3, - "saturday": 3, - "sunday": 2, - "day.": 1, - "Definition": 46, - "next_weekday": 3, - "(": 1248, - "d": 6, - ")": 1249, - "match": 70, - "with": 223, - "end.": 52, - "Example": 37, - "test_next_weekday": 1, - "tuesday.": 1, - "Proof.": 208, - "simpl.": 70, - "reflexivity.": 199, - "Qed.": 194, - "bool": 38, - "true": 68, - "false": 48, - "bool.": 1, - "negb": 10, - "b": 89, - "andb": 8, - "b1": 35, - "b2": 23, - "orb": 8, - "test_orb1": 1, - "true.": 16, - "test_orb2": 1, - "false.": 12, - "test_orb3": 1, - "test_orb4": 1, - "nandb": 5, - "end": 16, - "test_nandb1": 1, - "test_nandb2": 1, - "test_nandb3": 1, - "test_nandb4": 1, - "andb3": 5, - "b3": 2, - "test_andb31": 1, - "test_andb32": 1, - "test_andb33": 1, - "test_andb34": 1, - "Module": 11, - "Playground1.": 5, - "nat": 108, - "O": 98, - "S": 186, - "-": 508, - "nat.": 4, - "pred": 3, - "n": 369, - "minustwo": 1, - "Fixpoint": 36, - "evenb": 5, - "oddb": 5, - ".": 433, - "test_oddb1": 1, - "test_oddb2": 1, - "plus": 10, - "m": 201, - "mult": 3, - "minus": 3, - "_": 67, - "exp": 2, - "base": 3, - "power": 2, - "p": 81, - "factorial": 2, - "test_factorial1": 1, - "Notation": 39, - "x": 266, - "y": 116, - "at": 17, - "level": 11, - "left": 6, - "associativity": 7, - "nat_scope.": 3, - "beq_nat": 24, - "forall": 248, - "+": 227, - "n.": 44, - "Theorem": 115, - "plus_O_n": 1, - "intros": 258, - "plus_1_1": 1, - "mult_0_1": 1, - "*": 59, - "O.": 5, - "plus_id_example": 1, - "m.": 21, - "H.": 100, - "rewrite": 241, - "plus_id_exercise": 1, - "o": 25, - "o.": 4, - "H": 76, - "mult_0_plus": 1, - "plus_O_n.": 1, - "mult_1_plus": 1, - "plus_1_1.": 1, - "mult_1": 1, - "induction": 81, - "as": 77, - "[": 170, - "plus_1_neq_0": 1, - "destruct": 94, - "]": 173, - "Case": 51, - "IHn": 12, - "plus_comm": 3, - "plus_distr.": 1, - "beq_nat_refl": 3, - "plus_rearrange": 1, - "q": 15, - "q.": 2, - "assert": 68, - "plus_comm.": 3, - "plus_swap": 2, - "p.": 9, - "plus_assoc.": 4, - "H2": 12, - "H2.": 20, - "plus_swap.": 2, - "<->": 31, - "IHm": 2, - "reflexivity": 16, - "Qed": 23, - "mult_comm": 2, - "Proof": 12, - "0": 5, - "simpl": 116, - "mult_0_r.": 4, - "mult_distr": 1, - "mult_1_distr.": 1, - "mult_1.": 1, - "bad": 1, - "zero_nbeq_S": 1, - "andb_false_r": 1, - "plus_ble_compat_1": 1, - "ble_nat": 6, - "IHp.": 2, - "S_nbeq_0": 1, - "mult_1_1": 1, - "plus_0_r.": 1, - "all3_spec": 1, - "c": 70, - "c.": 5, - "b.": 14, - "Lemma": 51, - "mult_plus_1": 1, - "IHm.": 1, - "mult_mult": 1, - "IHn.": 3, - "mult_plus_1.": 1, - "mult_plus_distr_r": 1, - "mult_mult.": 3, - "H1": 18, - "plus_assoc": 1, - "H1.": 31, - "H3": 4, - "H3.": 5, - "mult_assoc": 1, - "mult_plus_distr_r.": 1, - "bin": 9, - "BO": 4, - "D": 9, - "M": 4, - "bin.": 1, - "incbin": 2, - "bin2un": 3, - "bin_comm": 1, - "End": 15, - "Require": 17, - "Import": 11, - "List": 2, - "Multiset": 2, - "PermutSetoid": 1, - "Relations": 2, - "Sorting.": 1, - "Section": 4, - "defs.": 2, - "Variable": 7, - "A": 113, - "Type.": 3, - "leA": 25, - "relation": 19, - "A.": 6, - "eqA": 29, - "Let": 8, - "gtA": 1, - "y.": 15, - "Hypothesis": 7, - "leA_dec": 4, - "{": 39, - "}": 35, - "eqA_dec": 26, - "leA_refl": 1, - "leA_trans": 2, - "z": 14, - "z.": 6, - "leA_antisym": 1, - "Hint": 9, - "Resolve": 5, - "leA_refl.": 1, - "Immediate": 1, - "leA_antisym.": 1, - "emptyBag": 4, - "EmptyBag": 2, - "singletonBag": 10, - "SingletonBag": 2, - "eqA_dec.": 2, - "Tree": 24, - "Tree_Leaf": 9, - "Tree_Node": 11, - "Tree.": 1, - "leA_Tree": 16, - "a": 207, - "t": 93, - "True": 1, - "T1": 25, - "T2": 20, - "leA_Tree_Leaf": 5, - "Tree_Leaf.": 1, - ";": 375, - "auto": 73, - "datatypes.": 47, - "leA_Tree_Node": 1, - "G": 6, - "is_heap": 18, - "Prop": 17, - "nil_is_heap": 5, - "node_is_heap": 7, - "invert_heap": 3, - "/": 41, - "T2.": 1, - "inversion": 104, - "is_heap_rect": 1, - "P": 32, - "T": 49, - "T.": 9, - "simple": 7, - "PG": 2, - "PD": 2, - "PN.": 2, - "elim": 21, - "H4": 7, - "intros.": 27, - "apply": 340, - "X0": 2, - "is_heap_rec": 1, - "Set": 4, - "X": 191, - "low_trans": 3, - "merge_lem": 3, - "l1": 89, - "l2": 73, - "list": 78, - "merge_exist": 5, - "l": 379, - "Sorted": 5, - "meq": 15, - "list_contents": 30, - "munion": 18, - "HdRel": 4, - "l2.": 8, - "Morphisms.": 2, - "Instance": 7, - "Equivalence": 2, - "@meq": 4, - "constructor": 6, - "red.": 1, - "meq_trans.": 1, - "Defined.": 1, - "Proper": 5, - "@munion": 1, - "now": 24, - "meq_congr.": 1, - "merge": 5, - "fix": 2, - "l1.": 5, - "rename": 2, - "into": 2, - "l.": 26, - "revert": 5, - "H0.": 24, - "a0": 15, - "l0": 7, - "Sorted_inv": 2, - "in": 221, - "H0": 16, - "clear": 7, - "merge0.": 2, - "using": 18, - "cons_sort": 2, - "cons_leA": 2, - "munion_ass.": 2, - "cons_leA.": 2, - "@HdRel_inv": 2, - "trivial": 15, - "merge0": 1, - "setoid_rewrite": 2, - "munion_ass": 1, - "munion_comm.": 2, - "repeat": 11, - "munion_comm": 1, - "contents": 12, - "multiset": 2, - "t1": 48, - "t2": 51, - "equiv_Tree": 1, - "insert_spec": 3, - "insert_exist": 4, - "insert": 2, - "unfold": 58, - "T0": 2, - "treesort_twist1": 1, - "T3": 2, - "HeapT3": 1, - "ConT3": 1, - "LeA.": 1, - "LeA": 1, - "treesort_twist2": 1, - "build_heap": 3, - "heap_exist": 3, - "list_to_heap": 2, - "nil": 46, - "exact": 4, - "nil_is_heap.": 1, - "i": 11, - "meq_trans": 10, - "meq_right": 2, - "meq_sym": 2, - "flat_spec": 3, - "flat_exist": 3, - "heap_to_list": 2, - "h": 14, - "s1": 20, - "i1": 15, - "m1": 1, - "s2": 2, - "i2": 10, - "m2.": 1, - "meq_congr": 1, - "munion_rotate.": 1, - "treesort": 1, - "&": 21, - "permutation": 43, - "intro": 27, - "permutation.": 1, - "exists": 60, - "Export": 10, - "SfLib.": 2, - "AExp.": 2, - "aexp": 30, - "ANum": 18, - "APlus": 14, - "AMinus": 9, - "AMult": 9, - "aexp.": 1, - "bexp": 22, - "BTrue": 10, - "BFalse": 11, - "BEq": 9, - "BLe": 9, - "BNot": 9, - "BAnd": 10, - "bexp.": 1, - "aeval": 46, - "e": 53, - "a1": 56, - "a2": 62, - "test_aeval1": 1, - "beval": 16, - "optimize_0plus": 15, - "e2": 54, - "e1": 58, - "test_optimize_0plus": 1, - "optimize_0plus_sound": 4, - "e.": 15, - "e1.": 1, - "SCase": 24, - "SSCase": 3, - "IHe2.": 10, - "IHe1.": 11, - "aexp_cases": 3, - "try": 17, - "IHe1": 6, - "IHe2": 6, - "optimize_0plus_all": 2, - "Tactic": 9, - "tactic": 9, - "first": 18, - "ident": 9, - "Case_aux": 38, - "optimize_0plus_all_sound": 1, - "bexp_cases": 4, - "optimize_and": 5, - "optimize_and_sound": 1, - "IHe": 2, - "aevalR_first_try.": 2, - "aevalR": 18, - "E_Anum": 1, - "E_APlus": 2, - "n1": 45, - "n2": 41, - "E_AMinus": 2, - "E_AMult": 2, - "Reserved": 4, - "E_ANum": 1, - "where": 6, - "bevalR": 11, - "E_BTrue": 1, - "E_BFalse": 1, - "E_BEq": 1, - "E_BLe": 1, - "E_BNot": 1, - "E_BAnd": 1, - "aeval_iff_aevalR": 9, - "split.": 17, - "subst": 7, - "generalize": 13, - "dependent": 6, - "IHa1": 1, - "IHa2": 1, - "beval_iff_bevalR": 1, - "*.": 110, - "subst.": 43, - "IHbevalR": 1, - "IHbevalR1": 1, - "IHbevalR2": 1, - "a.": 6, - "constructor.": 16, - "<": 76, - "remember": 12, - "IHa.": 1, - "IHa1.": 1, - "IHa2.": 1, - "silly_presburger_formula": 1, - "<=>": 12, - "3": 2, - "omega": 7, - "Id": 7, - "id": 7, - "id.": 1, - "beq_id": 14, - "id1": 2, - "id2": 2, - "beq_id_refl": 1, - "i.": 2, - "beq_nat_refl.": 1, - "beq_id_eq": 4, - "i2.": 8, - "i1.": 3, - "beq_nat_eq": 2, - "beq_id_false_not_eq": 1, - "C.": 3, - "n0": 5, - "beq_false_not_eq": 1, - "not_eq_beq_id_false": 1, - "not_eq_beq_false.": 1, - "beq_nat_sym": 2, - "AId": 4, - "com_cases": 1, - "SKIP": 5, - "IFB": 4, - "WHILE": 5, - "c1": 14, - "c2": 9, - "e3": 1, - "cl": 1, - "st": 113, - "E_IfTrue": 2, - "THEN": 3, - "ELSE": 3, - "FI": 3, - "E_WhileEnd": 2, - "DO": 4, - "END": 4, - "E_WhileLoop": 2, - "ceval_cases": 1, - "E_Skip": 1, - "E_Ass": 1, - "E_Seq": 1, - "E_IfFalse": 1, - "assignment": 1, - "command": 2, - "if": 10, - "st1": 2, - "IHi1": 3, - "Heqst1": 1, - "Hceval.": 4, - "Hceval": 2, - "assumption.": 61, - "bval": 2, - "ceval_step": 3, - "Some": 21, - "ceval_step_more": 7, - "x1.": 3, - "omega.": 7, - "x2.": 2, - "IHHce.": 2, - "%": 3, - "IHHce1.": 1, - "IHHce2.": 1, - "x0": 14, - "plus2": 1, - "nx": 3, - "Y": 38, - "ny": 2, - "XtimesYinZ": 1, - "Z": 11, - "ny.": 1, - "loop": 2, - "contra.": 19, - "loopdef.": 1, - "Heqloopdef.": 8, - "contra1.": 1, - "IHcontra2.": 1, - "no_whiles": 15, - "com": 5, - "ct": 2, - "cf": 2, - "no_Whiles": 10, - "noWhilesSKIP": 1, - "noWhilesAss": 1, - "noWhilesSeq": 1, - "noWhilesIf": 1, - "no_whiles_eqv": 1, - "noWhilesSKIP.": 1, - "noWhilesAss.": 1, - "noWhilesSeq.": 1, - "IHc1.": 2, - "auto.": 47, - "eauto": 10, - "andb_true_elim1": 4, - "IHc2.": 2, - "andb_true_elim2": 4, - "noWhilesIf.": 1, - "andb_true_intro.": 2, - "no_whiles_terminate": 1, - "state": 6, - "st.": 7, - "update": 2, - "IHc1": 2, - "IHc2": 2, - "H5.": 1, - "x1": 11, - "r": 11, - "r.": 3, - "symmetry": 4, - "Heqr.": 1, - "H4.": 2, - "s": 13, - "Heqr": 3, - "H8.": 1, - "H10": 1, - "assumption": 10, - "beval_short_circuit": 5, - "beval_short_circuit_eqv": 1, - "sinstr": 8, - "SPush": 8, - "SLoad": 6, - "SPlus": 10, - "SMinus": 11, - "SMult": 11, - "sinstr.": 1, - "s_execute": 21, - "stack": 7, - "prog": 2, - "cons": 26, - "al": 3, - "bl": 3, - "s_execute1": 1, - "empty_state": 2, - "s_execute2": 1, - "s_compile": 36, - "v": 28, - "s_compile1": 1, - "execute_theorem": 1, - "other": 20, - "other.": 4, - "app_ass.": 6, - "s_compile_correct": 1, - "app_nil_end.": 1, - "execute_theorem.": 1, - "Eqdep_dec.": 1, - "Arith.": 2, - "eq_rect_eq_nat": 2, - "Q": 3, - "eq_rect": 3, - "h.": 1, - "K_dec_set": 1, - "eq_nat_dec.": 1, - "Scheme": 1, - "le_ind": 1, - "replace": 4, - "le_n": 4, - "fun": 17, - "refl_equal": 4, - "pattern": 2, - "case": 2, - "trivial.": 14, - "contradiction": 8, - "le_Sn_n": 5, - "le_S": 6, - "Heq": 8, - "m0": 1, - "HeqS": 3, - "injection": 4, - "HeqS.": 2, - "eq_rect_eq_nat.": 1, - "IHp": 2, - "dep_pair_intro": 2, - "Hx": 20, - "Hy": 14, - "<=n),>": 1, - "x=": 1, - "exist": 7, - "Hy.": 3, - "Heq.": 6, - "le_uniqueness_proof": 1, - "Hy0": 1, - "card": 2, - "f": 108, - "card_interval": 1, - "<=n}>": 1, - "proj1_sig": 1, - "proj2_sig": 1, - "Hp": 5, - "Hq": 3, - "Hpq.": 1, - "Hmn.": 1, - "Hmn": 1, - "interval_dec": 1, - "left.": 3, - "dep_pair_intro.": 3, - "right.": 9, - "discriminate": 3, - "le_Sn_le": 2, - "eq_S.": 1, - "Hneq.": 2, - "card_inj_aux": 1, - "g": 6, - "False.": 1, - "Hfbound": 1, - "Hfinj": 1, - "Hgsurj.": 1, - "Hgsurj": 3, - "Hfx": 2, - "le_n_O_eq.": 2, - "Hfbound.": 2, - "Hx.": 5, - "le_lt_dec": 9, - "xSn": 21, - "then": 9, - "else": 9, - "is": 4, - "bounded": 1, - "injective": 6, - "Hlefx": 1, - "Hgefx": 1, - "Hlefy": 1, - "Hgefy": 1, - "Hfinj.": 3, - "sym_not_eq.": 2, - "Heqf.": 2, - "Hneqy.": 2, - "le_lt_trans": 2, - "le_O_n.": 2, - "le_neq_lt": 2, - "Hneqx.": 2, - "pred_inj.": 1, - "lt_O_neq": 2, - "neq_dep_intro": 2, - "inj_restrict": 1, - "Heqf": 1, - "surjective": 1, - "Hlep.": 3, - "Hle": 1, - "Hlt": 3, - "Hfsurj": 2, - "le_n_S": 1, - "Hlep": 4, - "Hneq": 7, - "Heqx.": 2, - "Heqx": 4, - "Hle.": 1, - "le_not_lt": 1, - "lt_trans": 4, - "lt_n_Sn.": 1, - "Hlt.": 1, - "lt_irrefl": 2, - "lt_le_trans": 1, - "pose": 2, - "let": 3, - "Hneqx": 1, - "Hneqy": 1, - "Heqg": 1, - "Hdec": 3, - "Heqy": 1, - "Hginj": 1, - "HSnx.": 1, - "HSnx": 1, - "interval_discr": 1, - "<=m}>": 1, - "card_inj": 1, - "interval_dec.": 1, - "card_interval.": 2, - "Basics.": 2, - "NatList.": 2, - "natprod": 5, - "pair": 7, - "natprod.": 1, - "fst": 3, - "snd": 3, - "swap_pair": 1, - "surjective_pairing": 1, - "count": 7, - "remove_one": 3, - "test_remove_one1": 1, - "remove_all": 2, - "bag": 3, - "app_ass": 1, - "l3": 12, - "natlist": 7, - "l3.": 1, - "remove_decreases_count": 1, - "s.": 4, - "ble_n_Sn.": 1, - "IHs.": 2, - "natoption": 5, - "None": 9, - "natoption.": 1, - "index": 3, - "option_elim": 2, - "hd_opt": 8, - "test_hd_opt1": 2, - "None.": 2, - "test_hd_opt2": 2, - "option_elim_hd": 1, - "head": 1, - "beq_natlist": 5, - "v1": 7, - "r1": 2, - "v2": 2, - "r2": 2, - "test_beq_natlist1": 1, - "test_beq_natlist2": 1, - "beq_natlist_refl": 1, - "IHl.": 7, - "silly1": 1, - "eq1": 6, - "eq2.": 9, - "eq2": 1, - "silly2a": 1, - "eq1.": 5, - "silly_ex": 1, - "silly3": 1, - "symmetry.": 2, - "rev_exercise": 1, - "rev_involutive.": 1, - "Setoid": 1, - "Compare_dec": 1, - "ListNotations.": 1, - "Implicit": 15, - "Arguments.": 2, - "Permutation.": 2, - "Permutation": 38, - "perm_nil": 1, - "perm_skip": 1, - "Local": 7, - "Constructors": 3, - "Permutation_nil": 2, - "HF.": 3, - "@nil": 1, - "HF": 2, - "||": 1, - "Permutation_nil_cons": 1, - "discriminate.": 2, - "Permutation_refl": 1, - "Permutation_sym": 1, - "Hperm": 7, - "perm_trans": 1, - "Permutation_trans": 4, - "Logic.eq": 2, - "@Permutation": 5, - "iff": 1, - "@In": 1, - "red": 6, - "Permutation_in.": 2, - "Permutation_app_tail": 2, - "tl": 8, - "eapply": 8, - "Permutation_app_head": 2, - "app_comm_cons": 5, - "Permutation_app": 3, - "Hpermmm": 1, - "idtac": 1, - "Global": 5, - "@app": 1, - "Permutation_app.": 1, - "Permutation_add_inside": 1, - "Permutation_cons_append": 1, - "IHl": 8, - "Permutation_cons_append.": 3, - "Permutation_app_comm": 3, - "app_nil_r": 1, - "app_assoc": 2, - "Permutation_cons_app": 3, - "Permutation_middle": 2, - "Permutation_rev": 3, - "rev": 7, - "1": 1, - "@rev": 1, - "2": 1, - "Permutation_length": 2, - "length": 21, - "transitivity": 4, - "@length": 1, - "Permutation_length.": 1, - "Permutation_ind_bis": 2, - "Hnil": 1, - "Hskip": 3, - "Hswap": 2, - "Htrans.": 1, - "Htrans": 1, - "eauto.": 7, - "Ltac": 1, - "break_list": 5, - "Permutation_nil_app_cons": 1, - "l4": 3, - "P.": 5, - "IH": 3, - "Permutation_middle.": 3, - "perm_swap.": 2, - "perm_swap": 1, - "eq_refl": 2, - "In_split": 1, - "Permutation_app_inv": 1, - "NoDup": 4, - "incl": 3, - "N.": 1, - "E": 7, - "Ha": 6, - "In": 6, - "N": 1, - "Hal": 1, - "Hl": 1, - "exfalso.": 1, - "NoDup_Permutation_bis": 2, - "inversion_clear": 6, - "intuition.": 2, - "Permutation_NoDup": 1, - "Permutation_map": 1, - "Hf": 15, - "injective_bounded_surjective": 1, - "set": 1, - "seq": 2, - "map": 4, - "x.": 3, - "in_map_iff.": 2, - "in_seq": 4, - "arith": 4, - "NoDup_cardinal_incl": 1, - "injective_map_NoDup": 2, - "seq_NoDup": 1, - "map_length": 1, - "by": 7, - "in_map_iff": 1, - "split": 14, - "nat_bijection_Permutation": 1, - "BD.": 1, - "seq_NoDup.": 1, - "map_length.": 1, - "Injection": 1, - "Permutation_alt": 1, - "Alternative": 1, - "characterization": 1, - "of": 4, - "via": 1, - "nth_error": 7, - "and": 1, - "nth": 2, - "adapt": 4, - "adapt_injective": 1, - "adapt.": 2, - "EQ.": 2, - "LE": 11, - "LT": 14, - "eq_add_S": 2, - "Hf.": 1, - "Lt.le_lt_or_eq": 3, - "LE.": 3, - "EQ": 8, - "lt": 3, - "LT.": 5, - "Lt.S_pred": 3, - "Lt.lt_not_le": 2, - "adapt_ok": 2, - "nth_error_app1": 1, - "nth_error_app2": 1, - "arith.": 8, - "Minus.minus_Sn_m": 1, - "Permutation_nth_error": 2, - "IHP": 2, - "IHP2": 1, - "Hg": 2, - "E.": 2, - "L12": 2, - "app_length.": 2, - "plus_n_Sm.": 1, - "adapt_injective.": 1, - "nth_error_None": 4, - "Hn": 1, - "Hf2": 1, - "Hf3": 2, - "Lt.le_or_lt": 1, - "Lt.lt_irrefl": 2, - "Lt.lt_le_trans": 2, - "Hf1": 1, - "do": 4, - "congruence.": 1, - "Permutation_alt.": 1, - "Permutation_app_swap": 1, - "only": 3, - "parsing": 3, - "Omega": 1, - "SetoidList.": 1, - "nil.": 2, - "..": 4, - "Permut.": 1, - "eqA_equiv": 1, - "eqA.": 1, - "list_contents_app": 5, - "permut_refl": 1, - "permut_sym": 4, - "permut_trans": 5, - "permut_cons_eq": 3, - "meq_left": 1, - "meq_singleton": 1, - "permut_cons": 5, - "permut_app": 1, - "specialize": 6, - "a0.": 1, - "decide": 1, - "permut_add_inside_eq": 1, - "permut_add_cons_inside": 3, - "permut_add_inside": 1, - "permut_middle": 1, - "permut_refl.": 5, - "permut_sym_app": 1, - "permut_rev": 1, - "permut_add_cons_inside.": 1, - "app_nil_end": 1, - "results": 1, - "permut_conv_inv": 1, - "plus_reg_l.": 1, - "permut_app_inv1": 1, - "list_contents_app.": 1, - "plus_reg_l": 1, - "multiplicity": 6, - "Fact": 3, - "if_eqA_then": 1, - "B": 6, - "if_eqA_refl": 3, - "decide_left": 1, - "if_eqA": 1, - "contradict": 3, - "A1": 2, - "if_eqA_rewrite_r": 1, - "A2": 4, - "Hxx": 1, - "multiplicity_InA": 4, - "InA": 8, - "multiplicity_InA_O": 2, - "multiplicity_InA_S": 1, - "multiplicity_NoDupA": 1, - "NoDupA": 3, - "NEQ": 1, - "compatible": 1, - "permut_InA_InA": 3, - "multiplicity_InA.": 1, - "meq.": 2, - "permut_cons_InA": 3, - "permut_nil": 3, - "Abs": 2, - "permut_length_1": 1, - "permut_length_2": 1, - "permut_length_1.": 2, - "@if_eqA_rewrite_l": 2, - "permut_length": 1, - "InA_split": 1, - "h2": 1, - "plus_n_Sm": 1, - "f_equal.": 1, - "app_length": 1, - "IHl1": 1, - "permut_remove_hd": 1, - "f_equal": 1, - "if_eqA_rewrite_l": 1, - "NoDupA_equivlistA_permut": 1, - "Equivalence_Reflexive.": 1, - "change": 1, - "Equivalence_Reflexive": 1, - "Forall2": 2, - "permutation_Permutation": 1, - "Forall2.": 1, - "proof": 1, - "IHA": 2, - "Forall2_app_inv_r": 1, - "Hl1": 1, - "Hl2": 1, - "Forall2_app": 1, - "Forall2_cons": 1, - "Permutation_impl_permutation": 1, - "permut_eqA": 1, - "Permut_permut.": 1, - "permut_right": 1, - "permut_tran": 1, - "Lists.": 1, - "X.": 4, - "app": 5, - "snoc": 9, - "Arguments": 11, - "list123": 1, - "right": 2, - "test_repeat1": 1, - "nil_app": 1, - "rev_snoc": 1, - "snoc_with_append": 1, - "v.": 1, - "IHl1.": 1, - "prod": 3, - "Y.": 1, - "type_scope.": 1, - "combine": 3, - "lx": 4, - "ly": 4, - "tx": 2, - "ty": 7, - "tp": 2, - "option": 6, - "xs": 7, - "plus3": 2, - "prod_curry": 3, - "prod_uncurry": 3, - "uncurry_uncurry": 1, - "curry_uncurry": 1, - "filter": 3, - "test": 4, - "countoddmembers": 1, - "k": 7, - "fmostlytrue": 5, - "override": 5, - "ftrue": 1, - "override_example1": 1, - "override_example2": 1, - "override_example3": 1, - "override_example4": 1, - "override_example": 1, - "constfun": 1, - "unfold_example_bad": 1, - "plus3.": 1, - "override_eq": 1, - "f.": 1, - "override.": 2, - "override_neq": 1, - "x2": 3, - "k1": 5, - "k2": 4, - "eq.": 11, - "silly4": 1, - "silly5": 1, - "sillyex1": 1, - "j": 6, - "j.": 1, - "silly6": 1, - "silly7": 1, - "sillyex2": 1, - "assertion": 3, - "Hl.": 1, - "eq": 4, - "beq_nat_O_l": 1, - "beq_nat_O_r": 1, - "double_injective": 1, - "double": 2, - "fold_map": 2, - "fold": 1, - "total": 2, - "fold_map_correct": 1, - "fold_map.": 1, - "forallb": 4, - "existsb": 3, - "existsb2": 2, - "existsb_correct": 1, - "existsb2.": 1, - "index_okx": 1, - "mumble": 5, - "mumble.": 1, - "grumble": 3, - "Logic.": 1, - "Prop.": 1, - "partial_function": 6, - "R": 54, - "y1": 6, - "y2": 5, - "y2.": 3, - "next_nat_partial_function": 1, - "next_nat.": 1, - "partial_function.": 5, - "Q.": 2, - "le_not_a_partial_function": 1, - "le": 1, - "not.": 3, - "Nonsense.": 4, - "le_n.": 6, - "le_S.": 4, - "total_relation_not_partial_function": 1, - "total_relation": 1, - "total_relation1.": 2, - "empty_relation_not_partial_funcion": 1, - "empty_relation.": 1, - "reflexive": 5, - "le_reflexive": 1, - "le.": 4, - "reflexive.": 1, - "transitive": 8, - "le_trans": 4, - "Hnm": 3, - "Hmo.": 4, - "Hnm.": 3, - "IHHmo.": 1, - "lt.": 2, - "transitive.": 1, - "Hm": 1, - "le_S_n": 2, - "Sn_le_Sm__n_le_m.": 1, - "not": 1, - "TODO": 1, - "Hmo": 1, - "symmetric": 2, - "antisymmetric": 3, - "le_antisymmetric": 1, - "Sn_le_Sm__n_le_m": 2, - "IHb": 1, - "equivalence": 1, - "order": 2, - "preorder": 1, - "le_order": 1, - "order.": 1, - "le_reflexive.": 1, - "le_antisymmetric.": 1, - "le_trans.": 1, - "clos_refl_trans": 8, - "rt_step": 1, - "rt_refl": 1, - "rt_trans": 3, - "next_nat_closure_is_le": 1, - "next_nat": 1, - "rt_refl.": 2, - "IHle.": 1, - "rt_step.": 2, - "nn.": 1, - "IHclos_refl_trans1.": 2, - "IHclos_refl_trans2.": 2, - "refl_step_closure": 11, - "rsc_refl": 1, - "rsc_step": 4, - "rsc_R": 2, - "rsc_refl.": 4, - "rsc_trans": 4, - "IHrefl_step_closure": 1, - "rtc_rsc_coincide": 1, - "IHrefl_step_closure.": 1, - "Imp.": 1, - "Relations.": 1, - "tm": 43, - "tm_const": 45, - "tm_plus": 30, - "tm.": 3, - "SimpleArith0.": 2, - "eval": 8, - "SimpleArith1.": 2, - "E_Const": 2, - "E_Plus": 2, - "test_step_1": 1, - "ST_Plus1.": 2, - "ST_PlusConstConst.": 3, - "test_step_2": 1, - "ST_Plus2.": 2, - "step_deterministic": 1, - "step.": 3, - "Hy1": 2, - "Hy2.": 2, - "step_cases": 4, - "Hy2": 3, - "SCase.": 3, - "Hy1.": 5, - "IHHy1": 2, - "SimpleArith2.": 1, - "value": 25, - "v_const": 4, - "step": 9, - "ST_PlusConstConst": 3, - "ST_Plus1": 2, - "strong_progress": 2, - "value_not_same_as_normal_form": 2, - "normal_form": 3, - "t.": 4, - "normal_form.": 2, - "v_funny.": 1, - "Temp1.": 1, - "Temp2.": 1, - "ST_Funny": 1, - "Temp3.": 1, - "Temp4.": 2, - "tm_true": 8, - "tm_false": 5, - "tm_if": 10, - "v_true": 1, - "v_false": 1, - "tm_false.": 3, - "ST_IfTrue": 1, - "ST_IfFalse": 1, - "ST_If": 1, - "t3": 6, - "bool_step_prop4": 1, - "bool_step_prop4_holds": 1, - "bool_step_prop4.": 2, - "ST_ShortCut.": 1, - "IHt1.": 1, - "t2.": 4, - "t3.": 2, - "ST_If.": 2, - "Temp5.": 1, - "stepmany": 4, - "normalizing": 1, - "IHt2": 3, - "H11": 2, - "H12": 2, - "H21": 3, - "H22": 2, - "nf_same_as_value": 3, - "H12.": 1, - "H22.": 1, - "H11.": 1, - "stepmany_congr_1": 1, - "stepmany_congr2": 1, - "eval__value": 1, - "HE.": 1, - "eval_cases": 1, - "HE": 1, - "v_const.": 1, - "Sorted.": 1, - "Mergesort.": 1, - "STLC.": 1, - "ty_Bool": 10, - "ty_arrow": 7, - "ty.": 2, - "tm_var": 6, - "tm_app": 7, - "tm_abs": 9, - "idB": 2, - "idBB": 2, - "idBBBB": 2, - "v_abs": 1, - "t_true": 1, - "t_false": 1, - "value.": 1, - "ST_App2": 1, - "step_example3": 1, - "idB.": 1, - "rsc_step.": 2, - "ST_App1.": 2, - "ST_AppAbs.": 3, - "v_abs.": 2, - "context": 1, - "partial_map": 4, - "Context.": 1, - "empty": 3, - "extend": 1, - "Gamma": 10, - "has_type": 4, - "appears_free_in": 1, - "S.": 1, - "HT": 1, - "T_Var.": 1, - "extend_neq": 1, - "Heqe.": 3, - "T_Abs.": 1, - "context_invariance...": 2, - "Hafi.": 2, - "extend.": 2, - "IHt.": 1, - "Coiso1.": 2, - "Coiso2.": 3, - "HeqCoiso1.": 1, - "HeqCoiso2.": 1, - "beq_id_false_not_eq.": 1, - "ex_falso_quodlibet.": 1, - "preservation": 1, - "HT.": 1, - "substitution_preserves_typing": 1, - "T11.": 4, - "HT1.": 1, - "T_App": 2, - "IHHT1.": 1, - "IHHT2.": 1, - "tm_cases": 1, - "Ht": 1, - "Ht.": 3, - "IHt1": 2, - "T11": 2, - "ST_App2.": 1, - "ty_Bool.": 1, - "IHt3": 1, - "ST_IfTrue.": 1, - "ST_IfFalse.": 1, - "types_unique": 1, - "T12": 2, - "IHhas_type.": 1, - "IHhas_type1.": 1, - "IHhas_type2.": 1 - }, - "CSS": { - ".clearfix": 8, - "{": 1661, - "*zoom": 48, - ";": 4219, - "}": 1705, - "before": 48, - "after": 96, - "display": 135, - "table": 44, - "content": 66, - "line": 97, - "-": 8839, - "height": 141, - "clear": 32, - "both": 30, - ".hide": 12, - "text": 129, - "font": 142, - "/0": 2, - "a": 268, - "color": 711, - "transparent": 148, - "shadow": 254, - "none": 128, - "background": 770, - "border": 912, - ".input": 216, - "block": 133, - "level": 2, - "width": 215, - "%": 366, - "min": 14, - "px": 2535, - "webkit": 364, - "box": 264, - "sizing": 27, - "moz": 316, - "article": 2, - "aside": 2, - "details": 2, - "figcaption": 2, - "figure": 2, - "footer": 2, - "header": 12, - "hgroup": 2, - "nav": 2, - "section": 2, - "audio": 4, - "canvas": 2, - "video": 4, - "inline": 116, - "*display": 20, - "not": 6, - "(": 748, - "[": 384, - "controls": 2, - "]": 384, - ")": 748, - "html": 4, - "size": 104, - "adjust": 6, - "ms": 13, - "focus": 232, - "outline": 30, - "thin": 8, - "dotted": 10, - "#333": 6, - "auto": 50, - "ring": 6, - "offset": 6, - "hover": 144, - "active": 46, - "sub": 4, - "sup": 4, - "position": 342, - "relative": 18, - "vertical": 56, - "align": 72, - "baseline": 4, - "top": 376, - "em": 6, - "bottom": 309, - "img": 14, - "max": 18, - "middle": 20, - "interpolation": 2, - "mode": 2, - "bicubic": 2, - "#map_canvas": 2, - ".google": 2, - "maps": 2, - "button": 18, - "input": 336, - "select": 90, - "textarea": 76, - "margin": 424, - "*overflow": 3, - "visible": 8, - "normal": 18, - "inner": 37, - "padding": 174, - "type": 174, - "appearance": 6, - "cursor": 30, - "pointer": 12, - "label": 20, - "textfield": 2, - "search": 66, - "decoration": 33, - "cancel": 2, - "overflow": 21, - "@media": 2, - "print": 4, - "*": 2, - "important": 18, - "#000": 2, - "visited": 2, - "underline": 6, - "href": 28, - "attr": 4, - "abbr": 6, - "title": 10, - ".ir": 2, - "pre": 16, - "blockquote": 14, - "solid": 93, - "#999": 6, - "page": 6, - "break": 12, - "inside": 4, - "avoid": 6, - "thead": 38, - "group": 120, - "tr": 92, - "@page": 2, - "cm": 2, - "p": 14, - "h2": 14, - "h3": 14, - "orphans": 2, - "widows": 2, - "body": 3, - "family": 10, - "Helvetica": 6, - "Arial": 6, - "sans": 6, - "serif": 6, - "#333333": 26, - "#ffffff": 136, - "#0088cc": 24, - "#005580": 8, - ".img": 6, - "rounded": 2, - "radius": 534, - "polaroid": 2, - "#fff": 10, - "#ccc": 13, - "rgba": 409, - "circle": 18, - ".row": 126, - "left": 489, - "class*": 100, - "float": 84, - ".container": 32, - ".navbar": 332, - "static": 14, - "fixed": 36, - ".span12": 4, - ".span11": 4, - ".span10": 4, - ".span9": 4, - ".span8": 4, - ".span7": 4, - ".span6": 4, - ".span5": 4, - ".span4": 4, - ".span3": 4, - ".span2": 4, - ".span1": 4, - ".offset12": 6, - ".offset11": 6, - ".offset10": 6, - ".offset9": 6, - ".offset8": 6, - ".offset7": 6, - ".offset6": 6, - ".offset5": 6, - ".offset4": 6, - ".offset3": 6, - ".offset2": 6, - ".offset1": 6, - "fluid": 126, - "*margin": 70, - "first": 179, - "child": 301, - ".controls": 28, - "row": 20, - "+": 105, - "*width": 26, - ".pull": 16, - "right": 258, - ".lead": 2, - "weight": 28, - "small": 66, - "strong": 2, - "bold": 14, - "style": 21, - "italic": 4, - "cite": 2, - ".muted": 2, - "#999999": 50, - "a.muted": 4, - "#808080": 2, - ".text": 14, - "warning": 33, - "#c09853": 14, - "a.text": 16, - "#a47e3c": 4, - "error": 10, - "#b94a48": 20, - "#953b39": 6, - "info": 37, - "#3a87ad": 18, - "#2d6987": 6, - "success": 35, - "#468847": 18, - "#356635": 6, - "center": 17, - "h1": 11, - "h4": 20, - "h5": 6, - "h6": 6, - "inherit": 8, - "rendering": 2, - "optimizelegibility": 2, - ".page": 2, - "#eeeeee": 31, - "ul": 84, - "ol": 10, - "li": 205, - "ul.unstyled": 2, - "ol.unstyled": 2, - "list": 44, - "ul.inline": 4, - "ol.inline": 4, - "dl": 2, - "dt": 6, - "dd": 6, - ".dl": 12, - "horizontal": 60, - "hidden": 9, - "ellipsis": 2, - "white": 25, - "space": 23, - "nowrap": 14, - "hr": 2, - "data": 2, - "original": 2, - "help": 2, - "abbr.initialism": 2, - "transform": 4, - "uppercase": 4, - "blockquote.pull": 10, - "q": 4, - "address": 2, - "code": 6, - "Monaco": 2, - "Menlo": 2, - "Consolas": 2, - "monospace": 2, - "#d14": 2, - "#f7f7f9": 2, - "#e1e1e8": 2, - "word": 6, - "all": 10, - "wrap": 6, - "#f5f5f5": 26, - "pre.prettyprint": 2, - ".pre": 2, - "scrollable": 2, - "y": 2, - "scroll": 2, - ".label": 30, - ".badge": 30, - "empty": 7, - "a.label": 4, - "a.badge": 4, - "#f89406": 27, - "#c67605": 4, - "inverse": 110, - "#1a1a1a": 2, - ".btn": 506, - "mini": 34, - "collapse": 12, - "spacing": 3, - ".table": 180, - "th": 70, - "td": 66, - "#dddddd": 16, - "caption": 18, - "colgroup": 18, - "tbody": 68, - "condensed": 4, - "bordered": 76, - "separate": 4, - "*border": 8, - "topleft": 16, - "last": 118, - "topright": 16, - "tfoot": 12, - "bottomleft": 16, - "bottomright": 16, - "striped": 13, - "nth": 4, - "odd": 4, - "#f9f9f9": 12, - "cell": 2, - "td.span1": 2, - "th.span1": 2, - "td.span2": 2, - "th.span2": 2, - "td.span3": 2, - "th.span3": 2, - "td.span4": 2, - "th.span4": 2, - "td.span5": 2, - "th.span5": 2, - "td.span6": 2, - "th.span6": 2, - "td.span7": 2, - "th.span7": 2, - "td.span8": 2, - "th.span8": 2, - "td.span9": 2, - "th.span9": 2, - "td.span10": 2, - "th.span10": 2, - "td.span11": 2, - "th.span11": 2, - "td.span12": 2, - "th.span12": 2, - "tr.success": 4, - "#dff0d8": 6, - "tr.error": 4, - "#f2dede": 6, - "tr.warning": 4, - "#fcf8e3": 6, - "tr.info": 4, - "#d9edf7": 6, - "#d0e9c6": 2, - "#ebcccc": 2, - "#faf2cc": 2, - "#c4e3f3": 2, - "form": 38, - "fieldset": 2, - "legend": 6, - "#e5e5e5": 28, - ".uneditable": 80, - "#555555": 18, - "#cccccc": 18, - "inset": 132, - "transition": 36, - "linear": 204, - ".2s": 16, - "o": 48, - ".075": 12, - ".6": 6, - "multiple": 2, - "#fcfcfc": 2, - "allowed": 4, - "placeholder": 18, - ".radio": 26, - ".checkbox": 26, - ".radio.inline": 6, - ".checkbox.inline": 6, - "medium": 2, - "large": 40, - "xlarge": 2, - "xxlarge": 2, - "append": 120, - "prepend": 82, - "input.span12": 4, - "textarea.span12": 2, - "input.span11": 4, - "textarea.span11": 2, - "input.span10": 4, - "textarea.span10": 2, - "input.span9": 4, - "textarea.span9": 2, - "input.span8": 4, - "textarea.span8": 2, - "input.span7": 4, - "textarea.span7": 2, - "input.span6": 4, - "textarea.span6": 2, - "input.span5": 4, - "textarea.span5": 2, - "input.span4": 4, - "textarea.span4": 2, - "input.span3": 4, - "textarea.span3": 2, - "input.span2": 4, - "textarea.span2": 2, - "input.span1": 4, - "textarea.span1": 2, - "disabled": 36, - "readonly": 10, - ".control": 150, - "group.warning": 32, - ".help": 44, - "#dbc59e": 6, - ".add": 36, - "on": 36, - "group.error": 32, - "#d59392": 6, - "group.success": 32, - "#7aba7b": 6, - "group.info": 32, - "#7ab5d3": 6, - "invalid": 12, - "#ee5f5b": 18, - "#e9322d": 2, - "#f8b9b7": 6, - ".form": 132, - "actions": 10, - "#595959": 2, - ".dropdown": 126, - "menu": 42, - ".popover": 14, - "z": 12, - "index": 14, - "toggle": 84, - ".active": 86, - "#a9dba9": 2, - "#46a546": 2, - "prepend.input": 22, - "input.search": 2, - "query": 22, - ".search": 22, - "*padding": 36, - "image": 187, - "gradient": 175, - "#e6e6e6": 20, - "from": 40, - "to": 75, - "repeat": 66, - "x": 30, - "filter": 57, - "progid": 48, - "DXImageTransform.Microsoft.gradient": 48, - "startColorstr": 30, - "endColorstr": 30, - "GradientType": 30, - "#bfbfbf": 4, - "*background": 36, - "enabled": 18, - "false": 18, - "#b3b3b3": 2, - ".3em": 6, - ".2": 12, - ".05": 24, - ".btn.active": 8, - ".btn.disabled": 4, - "#d9d9d9": 4, - "s": 25, - ".15": 24, - "default": 12, - "opacity": 15, - "alpha": 7, - "class": 26, - "primary.active": 6, - "warning.active": 6, - "danger.active": 6, - "success.active": 6, - "info.active": 6, - "inverse.active": 6, - "primary": 14, - "#006dcc": 2, - "#0044cc": 20, - "#002a80": 2, - "primary.disabled": 2, - "#003bb3": 2, - "#003399": 2, - "#faa732": 3, - "#fbb450": 16, - "#ad6704": 2, - "warning.disabled": 2, - "#df8505": 2, - "danger": 21, - "#da4f49": 2, - "#bd362f": 20, - "#802420": 2, - "danger.disabled": 2, - "#a9302a": 2, - "#942a25": 2, - "#5bb75b": 2, - "#62c462": 16, - "#51a351": 20, - "#387038": 2, - "success.disabled": 2, - "#499249": 2, - "#408140": 2, - "#49afcd": 2, - "#5bc0de": 16, - "#2f96b4": 20, - "#1f6377": 2, - "info.disabled": 2, - "#2a85a0": 2, - "#24748c": 2, - "#363636": 2, - "#444444": 10, - "#222222": 32, - "#000000": 14, - "inverse.disabled": 2, - "#151515": 12, - "#080808": 2, - "button.btn": 4, - "button.btn.btn": 6, - ".btn.btn": 6, - "link": 28, - "url": 4, - "no": 2, - ".icon": 288, - ".nav": 308, - "pills": 28, - "submenu": 8, - "glass": 2, - "music": 2, - "envelope": 2, - "heart": 2, - "star": 4, - "user": 2, - "film": 2, - "ok": 6, - "remove": 6, - "zoom": 5, - "in": 10, - "out": 10, - "off": 4, - "signal": 2, - "cog": 2, - "trash": 2, - "home": 2, - "file": 2, - "time": 2, - "road": 2, - "download": 4, - "alt": 6, - "upload": 2, - "inbox": 2, - "play": 4, - "refresh": 2, - "lock": 2, - "flag": 2, - "headphones": 2, - "volume": 6, - "down": 12, - "up": 12, - "qrcode": 2, - "barcode": 2, - "tag": 2, - "tags": 2, - "book": 2, - "bookmark": 2, - "camera": 2, - "justify": 2, - "indent": 4, - "facetime": 2, - "picture": 2, - "pencil": 2, - "map": 2, - "marker": 2, - "tint": 2, - "edit": 2, - "share": 4, - "check": 2, - "move": 2, - "step": 4, - "backward": 6, - "fast": 4, - "pause": 2, - "stop": 32, - "forward": 6, - "eject": 2, - "chevron": 8, - "plus": 4, - "sign": 16, - "minus": 4, - "question": 2, - "screenshot": 2, - "ban": 2, - "arrow": 21, - "resize": 8, - "full": 2, - "asterisk": 2, - "exclamation": 2, - "gift": 2, - "leaf": 2, - "fire": 2, - "eye": 4, - "open": 4, - "close": 4, - "plane": 2, - "calendar": 2, - "random": 2, - "comment": 2, - "magnet": 2, - "retweet": 2, - "shopping": 2, - "cart": 2, - "folder": 4, - "hdd": 2, - "bullhorn": 2, - "bell": 2, - "certificate": 2, - "thumbs": 4, - "hand": 8, - "globe": 2, - "wrench": 2, - "tasks": 2, - "briefcase": 2, - "fullscreen": 2, - "toolbar": 8, - ".btn.large": 4, - ".large.dropdown": 2, - "group.open": 18, - ".125": 6, - ".btn.dropdown": 2, - "primary.dropdown": 2, - "warning.dropdown": 2, - "danger.dropdown": 2, - "success.dropdown": 2, - "info.dropdown": 2, - "inverse.dropdown": 2, - ".caret": 70, - ".dropup": 2, - ".divider": 8, - "tabs": 94, - "#ddd": 38, - "stacked": 24, - "tabs.nav": 12, - "pills.nav": 4, - ".dropdown.active": 4, - ".open": 8, - "li.dropdown.open.active": 14, - "li.dropdown.open": 14, - ".tabs": 62, - ".tabbable": 8, - ".tab": 8, - "below": 18, - "pane": 4, - ".pill": 6, - ".disabled": 22, - "*position": 2, - "*z": 2, - "#fafafa": 2, - "#f2f2f2": 22, - "#d4d4d4": 2, - "collapse.collapse": 2, - ".brand": 14, - "#777777": 12, - ".1": 24, - ".nav.pull": 2, - "navbar": 28, - "#ededed": 2, - "navbar.active": 8, - "navbar.disabled": 4, - "bar": 21, - "absolute": 8, - "li.dropdown": 12, - "li.dropdown.active": 8, - "menu.pull": 8, - "#1b1b1b": 2, - "#111111": 18, - "#252525": 2, - "#515151": 2, - "query.focused": 2, - "#0e0e0e": 2, - "#040404": 18, - ".breadcrumb": 8, - ".pagination": 78, - "span": 38, - "centered": 2, - ".pager": 34, - ".next": 4, - ".previous": 4, - ".thumbnails": 12, - ".thumbnail": 6, - "ease": 12, - "a.thumbnail": 4, - ".caption": 2, - ".alert": 34, - "#fbeed5": 2, - ".close": 2, - "#d6e9c6": 2, - "#eed3d7": 2, - "#bce8f1": 2, - "@": 8, - "keyframes": 8, - "progress": 15, - "stripes": 15, - "@keyframes": 2, - ".progress": 22, - "#f7f7f7": 3, - ".bar": 22, - "#0e90d2": 2, - "#149bdf": 11, - "#0480be": 10, - "deg": 20, - ".progress.active": 1, - "animation": 5, - "infinite": 5, - "#dd514c": 1, - "#c43c35": 5, - "danger.progress": 1, - "#5eb95e": 1, - "#57a957": 5, - "success.progress": 1, - "#4bb1cf": 1, - "#339bb9": 5, - "info.progress": 1, - "warning.progress": 1, - ".hero": 3, - "unit": 3, - "letter": 1, - ".media": 11, - "object": 1, - "heading": 1, - ".tooltip": 7, - "visibility": 1, - ".tooltip.in": 1, - ".tooltip.top": 2, - ".tooltip.right": 2, - ".tooltip.bottom": 2, - ".tooltip.left": 2, - "clip": 3, - ".popover.top": 3, - ".popover.right": 3, - ".popover.bottom": 3, - ".popover.left": 3, - "#ebebeb": 1, - ".arrow": 12, - ".modal": 5, - "backdrop": 2, - "backdrop.fade": 1, - "backdrop.fade.in": 1 - }, - "Dart": { - "class": 1, - "Point": 7, - "{": 3, - "(": 7, - "this.x": 1, - "this.y": 1, - ")": 7, - ";": 8, - "distanceTo": 1, - "other": 1, - "var": 3, - "dx": 3, - "x": 2, - "-": 2, - "other.x": 1, - "dy": 3, - "y": 2, - "other.y": 1, - "return": 1, - "Math.sqrt": 1, - "*": 2, - "+": 1, - "}": 3, - "main": 1, - "p": 1, - "new": 2, - "q": 1, - "print": 1 - }, - "Diff": { - "diff": 1, - "-": 5, - "git": 1, - "a/lib/linguist.rb": 2, - "b/lib/linguist.rb": 2, - "index": 1, - "d472341..8ad9ffb": 1, - "+": 3 - }, - "Ecl": { - "#option": 1, - "(": 32, - "true": 1, - ")": 32, - ";": 23, - "namesRecord": 4, - "RECORD": 1, - "string20": 1, - "surname": 1, - "string10": 2, - "forename": 1, - "integer2": 5, - "age": 2, - "dadAge": 1, - "mumAge": 1, - "END": 1, - "namesRecord2": 3, - "record": 1, - "extra": 1, - "end": 1, - "namesTable": 11, - "dataset": 2, - "FLAT": 2, - "namesTable2": 9, - "aveAgeL": 3, - "l": 1, - "l.dadAge": 1, - "+": 16, - "l.mumAge": 1, - "/2": 2, - "aveAgeR": 4, - "r": 1, - "r.dadAge": 1, - "r.mumAge": 1, - "output": 9, - "join": 11, - "left": 2, - "right": 3, - "//Several": 1, - "simple": 1, - "examples": 1, - "of": 1, - "sliding": 2, - "syntax": 1, - "left.age": 8, - "right.age": 12, - "-": 5, - "and": 10, - "<": 1, - "between": 7, - "//Same": 1, - "but": 1, - "on": 1, - "strings.": 1, - "Also": 1, - "includes": 1, - "to": 1, - "ensure": 1, - "sort": 1, - "is": 1, - "done": 1, - "by": 1, - "non": 1, - "before": 1, - "sliding.": 1, - "left.surname": 2, - "right.surname": 4, - "[": 4, - "]": 4, - "all": 1, - "//This": 1, - "should": 1, - "not": 1, - "generate": 1, - "a": 1, - "self": 1 - }, - "edn": { - "[": 24, - "{": 22, - "db/id": 22, - "#db/id": 22, - "db.part/db": 6, - "]": 24, - "db/ident": 3, - "object/name": 18, - "db/doc": 4, - "db/valueType": 3, - "db.type/string": 2, - "db/index": 3, - "true": 3, - "db/cardinality": 3, - "db.cardinality/one": 3, - "db.install/_attribute": 3, - "}": 22, - "object/meanRadius": 18, - "db.type/double": 1, - "data/source": 2, - "db.part/tx": 2, - "db.part/user": 17 - }, - "Elm": { - "import": 3, - "List": 1, - "(": 119, - "intercalate": 2, - "intersperse": 3, - ")": 116, - "Website.Skeleton": 1, - "Website.ColorScheme": 1, - "addFolder": 4, - "folder": 2, - "lst": 6, - "let": 2, - "add": 2, - "x": 13, - "y": 7, - "+": 14, - "in": 2, - "f": 8, - "n": 2, - "xs": 9, - "map": 11, - "elements": 2, - "[": 31, - "]": 31, - "functional": 2, - "reactive": 2, - "-": 11, - "example": 3, - "name": 6, - "loc": 2, - "Text.link": 1, - "toText": 6, - "toLinks": 2, - "title": 2, - "links": 2, - "flow": 4, - "right": 8, - "width": 3, - "text": 4, - "italic": 1, - "bold": 2, - ".": 9, - "Text.color": 1, - "accent4": 1, - "insertSpace": 2, - "case": 5, - "of": 7, - "{": 1, - "spacer": 2, - ";": 1, - "}": 1, - "subsection": 2, - "w": 7, - "info": 2, - "down": 3, - "words": 2, - "markdown": 1, - "|": 3, - "###": 1, - "Basic": 1, - "Examples": 1, - "Each": 1, - "listed": 1, - "below": 1, - "focuses": 1, - "on": 1, - "a": 5, - "single": 1, - "function": 1, - "or": 1, - "concept.": 1, - "These": 1, - "examples": 1, - "demonstrate": 1, - "all": 1, - "the": 1, - "basic": 1, - "building": 1, - "blocks": 1, - "Elm.": 1, - "content": 2, - "exampleSets": 2, - "plainText": 1, - "main": 3, - "lift": 1, - "skeleton": 1, - "Window.width": 1, - "asText": 1, - "qsort": 4, - "filter": 2, - "<)x)>": 1, - "data": 1, - "Tree": 3, - "Node": 8, - "Empty": 8, - "empty": 2, - "singleton": 2, - "v": 8, - "insert": 4, - "tree": 7, - "left": 7, - "if": 2, - "then": 2, - "else": 2, - "<": 1, - "fromList": 3, - "foldl": 1, - "depth": 5, - "max": 1, - "t1": 2, - "t2": 3, - "display": 4, - "monospace": 1, - "concat": 1, - "show": 2 - }, - "Emacs Lisp": { - "(": 156, - "print": 1, - ")": 144, - ";": 333, - "ess": 48, - "-": 294, - "julia.el": 2, - "ESS": 5, - "julia": 39, - "mode": 12, - "and": 3, - "inferior": 13, - "interaction": 1, - "Copyright": 1, - "C": 2, - "Vitalie": 3, - "Spinu.": 1, - "Filename": 1, - "Author": 1, - "Spinu": 2, - "based": 1, - "on": 2, - "mode.el": 1, - "from": 3, - "lang": 1, - "project": 1, - "Maintainer": 1, - "Created": 1, - "Keywords": 1, - "This": 4, - "file": 10, - "is": 5, - "*NOT*": 1, - "part": 2, - "of": 8, - "GNU": 4, - "Emacs.": 1, - "program": 6, - "free": 1, - "software": 1, - "you": 1, - "can": 1, - "redistribute": 1, - "it": 3, - "and/or": 1, - "modify": 5, - "under": 1, - "the": 10, - "terms": 1, - "General": 3, - "Public": 3, - "License": 3, - "as": 1, - "published": 1, - "by": 1, - "Free": 2, - "Software": 2, - "Foundation": 2, - "either": 1, - "version": 2, - "any": 1, - "later": 1, - "version.": 1, - "distributed": 1, - "in": 3, - "hope": 1, - "that": 2, - "will": 1, - "be": 2, - "useful": 1, - "but": 2, - "WITHOUT": 1, - "ANY": 1, - "WARRANTY": 1, - "without": 1, - "even": 1, - "implied": 1, - "warranty": 1, - "MERCHANTABILITY": 1, - "or": 3, - "FITNESS": 1, - "FOR": 1, - "A": 1, - "PARTICULAR": 1, - "PURPOSE.": 1, - "See": 1, - "for": 8, - "more": 1, - "details.": 1, - "You": 1, - "should": 2, - "have": 1, - "received": 1, - "a": 4, - "copy": 2, - "along": 1, - "with": 4, - "this": 1, - "see": 2, - "COPYING.": 1, - "If": 1, - "not": 1, - "write": 2, - "to": 4, - "Inc.": 1, - "Franklin": 1, - "Street": 1, - "Fifth": 1, - "Floor": 1, - "Boston": 1, - "MA": 1, - "USA.": 1, - "Commentary": 1, - "customise": 1, - "name": 8, - "point": 6, - "your": 1, - "release": 1, - "basic": 1, - "start": 13, - "M": 2, - "x": 2, - "julia.": 2, - "require": 2, - "auto": 1, - "alist": 9, - "table": 9, - "character": 1, - "quote": 2, - "transpose": 1, - "syntax": 7, - "entry": 4, - ".": 40, - "Syntax": 3, - "inside": 1, - "char": 6, - "defvar": 5, - "let": 3, - "make": 4, - "defconst": 5, - "regex": 5, - "unquote": 1, - "forloop": 1, - "subset": 2, - "regexp": 6, - "font": 6, - "lock": 6, - "defaults": 2, - "list": 3, - "identity": 1, - "keyword": 2, - "face": 4, - "constant": 1, - "cons": 1, - "function": 7, - "keep": 2, - "string": 8, - "paragraph": 3, - "concat": 7, - "page": 2, - "delimiter": 2, - "separate": 1, - "ignore": 2, - "fill": 1, - "prefix": 2, - "t": 6, - "final": 1, - "newline": 1, - "comment": 6, - "add": 4, - "skip": 1, - "column": 1, - "indent": 8, - "S": 2, - "line": 5, - "calculate": 1, - "parse": 1, - "sexp": 1, - "comments": 1, - "style": 2, - "default": 1, - "ignored": 1, - "local": 6, - "process": 5, - "nil": 12, - "dump": 2, - "files": 1, - "_": 1, - "autoload": 1, - "defun": 5, - "send": 3, - "visibly": 1, - "temporary": 1, - "directory": 2, - "temp": 2, - "insert": 1, - "format": 3, - "load": 1, - "command": 5, - "get": 3, - "help": 3, - "topics": 1, - "&": 3, - "optional": 3, - "proc": 3, - "words": 1, - "vector": 1, - "com": 1, - "error": 6, - "s": 5, - "*in": 1, - "[": 3, - "n": 1, - "]": 3, - "*": 1, - "at": 5, - ".*": 2, - "+": 5, - "w*": 1, - "http": 1, - "//docs.julialang.org/en/latest/search/": 1, - "q": 1, - "%": 1, - "include": 1, - "funargs": 1, - "re": 2, - "args": 10, - "language": 1, - "STERM": 1, - "editor": 2, - "R": 2, - "pager": 2, - "versions": 1, - "Julia": 1, - "made": 1, - "available.": 1, - "String": 1, - "arguments": 2, - "used": 1, - "when": 2, - "starting": 1, - "group": 1, - "###autoload": 2, - "interactive": 2, - "setq": 2, - "customize": 5, - "emacs": 1, - "<": 1, - "hook": 4, - "complete": 1, - "object": 2, - "completion": 4, - "functions": 2, - "first": 1, - "if": 4, - "fboundp": 1, - "end": 1, - "workaround": 1, - "set": 3, - "variable": 3, - "post": 1, - "run": 2, - "settings": 1, - "notably": 1, - "null": 1, - "dribble": 1, - "buffer": 3, - "debugging": 1, - "only": 1, - "dialect": 1, - "current": 2, - "arg": 1, - "let*": 2, - "jl": 2, - "space": 1, - "just": 1, - "case": 1, - "read": 1, - "..": 3, - "multi": 1, - "...": 1, - "tb": 1, - "logo": 1, - "goto": 2, - "min": 1, - "while": 1, - "search": 1, - "forward": 1, - "replace": 1, - "match": 1, - "max": 1, - "inject": 1, - "code": 1, - "etc": 1, - "hooks": 1, - "busy": 1, - "funname": 5, - "eldoc": 1, - "show": 1, - "symbol": 2, - "aggressive": 1, - "car": 1, - "funname.start": 1, - "sequence": 1, - "nth": 1, - "W": 1, - "window": 2, - "width": 1, - "minibuffer": 1, - "length": 1, - "doc": 1, - "propertize": 1, - "use": 1, - "classes": 1, - "screws": 1, - "egrep": 1 - }, - "Erlang": { - "SHEBANG#!escript": 3, - "%": 134, - "-": 262, - "*": 9, - "erlang": 5, - "smp": 1, - "enable": 1, - "sname": 1, - "factorial": 1, - "mnesia": 1, - "debug": 1, - "verbose": 1, - "main": 4, - "(": 236, - "[": 66, - "String": 2, - "]": 61, - ")": 230, - "try": 2, - "N": 6, - "list_to_integer": 1, - "F": 16, - "fac": 4, - "io": 5, - "format": 7, - "catch": 2, - "_": 52, - "usage": 3, - "end": 3, - ";": 56, - ".": 37, - "halt": 2, - "export": 2, - "main/1": 1, - "For": 1, - "each": 1, - "header": 1, - "file": 6, - "it": 2, - "scans": 1, - "thru": 1, - "all": 1, - "records": 1, - "and": 8, - "create": 1, - "helper": 1, - "functions": 2, - "Helper": 1, - "are": 3, - "setters": 1, - "getters": 1, - "fields": 4, - "fields_atom": 4, - "type": 6, - "module": 2, - "record_helper": 1, - "make/1": 1, - "make/2": 1, - "make": 3, - "HeaderFiles": 5, - "atom_to_list": 18, - "X": 12, - "||": 6, - "<->": 5, - "hrl": 1, - "relative": 1, - "to": 2, - "current": 1, - "dir": 1, - "OutDir": 4, - "ModuleName": 3, - "HeaderComment": 2, - "ModuleDeclaration": 2, - "+": 214, - "<": 1, - "Src": 10, - "format_src": 8, - "lists": 11, - "sort": 1, - "flatten": 6, - "read": 2, - "generate_type_default_function": 2, - "write_file": 1, - "erl": 1, - "list_to_binary": 1, - "HeaderFile": 4, - "epp": 1, - "parse_file": 1, - "of": 9, - "{": 109, - "ok": 34, - "Tree": 4, - "}": 109, - "parse": 2, - "error": 4, - "Error": 4, - "catched_error": 1, - "end.": 3, - "|": 25, - "T": 24, - "when": 29, - "length": 6, - "Type": 3, - "A": 5, - "B": 4, - "NSrc": 4, - "_Type": 1, - "Type1": 2, - "parse_record": 3, - "attribute": 1, - "record": 4, - "RecordInfo": 2, - "RecordName": 41, - "RecordFields": 10, - "if": 1, - "generate_setter_getter_function": 5, - "generate_type_function": 3, - "true": 3, - "generate_fields_function": 2, - "generate_fields_atom_function": 2, - "parse_field_name": 5, - "record_field": 9, - "atom": 9, - "FieldName": 26, - "field": 4, - "_FieldName": 2, - "ParentRecordName": 8, - "parent_field": 2, - "parse_field_name_atom": 5, - "concat": 5, - "_S": 3, - "S": 6, - "concat_ext": 4, - "parse_field": 6, - "AccFields": 6, - "AccParentFields": 6, - "case": 3, - "Field": 2, - "PField": 2, - "parse_field_atom": 4, - "zzz": 1, - "Fields": 4, - "field_atom": 1, - "to_setter_getter_function": 5, - "setter": 2, - "getter": 2, - "This": 2, - "is": 1, - "auto": 1, - "generated": 1, - "file.": 1, - "Please": 1, - "don": 1, - "t": 1, - "edit": 1, - "record_utils": 1, - "compile": 2, - "export_all": 1, - "include": 1, - "abstract_message": 21, - "async_message": 12, - "clientId": 5, - "destination": 5, - "messageId": 5, - "timestamp": 5, - "timeToLive": 5, - "headers": 5, - "body": 5, - "correlationId": 5, - "correlationIdBytes": 5, - "get": 12, - "Obj": 49, - "is_record": 25, - "Obj#abstract_message.body": 1, - "Obj#abstract_message.clientId": 1, - "Obj#abstract_message.destination": 1, - "Obj#abstract_message.headers": 1, - "Obj#abstract_message.messageId": 1, - "Obj#abstract_message.timeToLive": 1, - "Obj#abstract_message.timestamp": 1, - "Obj#async_message.correlationId": 1, - "Obj#async_message.correlationIdBytes": 1, - "parent": 5, - "Obj#async_message.parent": 3, - "ParentProperty": 6, - "is_atom": 2, - "set": 13, - "Value": 35, - "NewObj": 20, - "Obj#abstract_message": 7, - "Obj#async_message": 3, - "NewParentObject": 2, - "undefined.": 1, - "Mode": 1, - "coding": 1, - "utf": 1, - "tab": 1, - "width": 1, - "c": 2, - "basic": 1, - "offset": 1, - "indent": 1, - "tabs": 1, - "mode": 2, - "BSD": 1, - "LICENSE": 1, - "Copyright": 1, - "Michael": 2, - "Truog": 2, - "": 1, - "at": 1, - "gmail": 1, - "dot": 1, - "com": 1, - "All": 2, - "rights": 1, - "reserved.": 1, - "Redistribution": 1, - "use": 2, - "in": 3, - "source": 2, - "binary": 2, - "forms": 1, - "with": 2, - "or": 3, - "without": 2, - "modification": 1, - "permitted": 1, - "provided": 2, - "that": 1, - "the": 9, - "following": 4, - "conditions": 3, - "met": 1, - "Redistributions": 2, - "code": 2, - "must": 3, - "retain": 1, - "above": 2, - "copyright": 2, - "notice": 2, - "this": 4, - "list": 2, - "disclaimer.": 1, - "form": 1, - "reproduce": 1, - "disclaimer": 1, - "documentation": 1, - "and/or": 1, - "other": 1, - "materials": 2, - "distribution.": 1, - "advertising": 1, - "mentioning": 1, - "features": 1, - "software": 3, - "display": 1, - "acknowledgment": 1, - "product": 1, - "includes": 1, - "developed": 1, - "by": 1, - "The": 1, - "name": 1, - "author": 2, - "may": 1, - "not": 1, - "be": 1, - "used": 1, - "endorse": 1, - "promote": 1, - "products": 1, - "derived": 1, - "from": 1, - "specific": 1, - "prior": 1, - "written": 1, - "permission": 1, - "THIS": 2, - "SOFTWARE": 2, - "IS": 1, - "PROVIDED": 1, - "BY": 1, - "THE": 5, - "COPYRIGHT": 2, - "HOLDERS": 1, - "AND": 4, - "CONTRIBUTORS": 2, - "ANY": 4, - "EXPRESS": 1, - "OR": 8, - "IMPLIED": 2, - "WARRANTIES": 2, - "INCLUDING": 3, - "BUT": 2, - "NOT": 2, - "LIMITED": 2, - "TO": 2, - "OF": 8, - "MERCHANTABILITY": 1, - "FITNESS": 1, - "FOR": 2, - "PARTICULAR": 1, - "PURPOSE": 1, - "ARE": 1, - "DISCLAIMED.": 1, - "IN": 3, - "NO": 1, - "EVENT": 1, - "SHALL": 1, - "OWNER": 1, - "BE": 1, - "LIABLE": 1, - "DIRECT": 1, - "INDIRECT": 1, - "INCIDENTAL": 1, - "SPECIAL": 1, - "EXEMPLARY": 1, - "CONSEQUENTIAL": 1, - "DAMAGES": 1, - "PROCUREMENT": 1, - "SUBSTITUTE": 1, - "GOODS": 1, - "SERVICES": 1, - "LOSS": 1, - "USE": 2, - "DATA": 1, - "PROFITS": 1, - "BUSINESS": 1, - "INTERRUPTION": 1, - "HOWEVER": 1, - "CAUSED": 1, - "ON": 1, - "THEORY": 1, - "LIABILITY": 2, - "WHETHER": 1, - "CONTRACT": 1, - "STRICT": 1, - "TORT": 1, - "NEGLIGENCE": 1, - "OTHERWISE": 1, - "ARISING": 1, - "WAY": 1, - "OUT": 1, - "EVEN": 1, - "IF": 1, - "ADVISED": 1, - "POSSIBILITY": 1, - "SUCH": 1, - "DAMAGE.": 1, - "sys": 2, - "RelToolConfig": 5, - "target_dir": 2, - "TargetDir": 14, - "overlay": 2, - "OverlayConfig": 4, - "consult": 1, - "Spec": 2, - "reltool": 2, - "get_target_spec": 1, - "make_dir": 1, - "eexist": 1, - "exit_code": 3, - "eval_target_spec": 1, - "root_dir": 1, - "process_overlay": 2, - "shell": 3, - "Command": 3, - "Arguments": 3, - "CommandSuffix": 2, - "reverse": 4, - "os": 1, - "cmd": 1, - "io_lib": 2, - "boot_rel_vsn": 2, - "Config": 2, - "_RelToolConfig": 1, - "rel": 2, - "_Name": 1, - "Ver": 1, - "proplists": 1, - "lookup": 1, - "Ver.": 1, - "minimal": 2, - "parsing": 1, - "for": 1, - "handling": 1, - "mustache": 11, - "syntax": 1, - "Body": 2, - "Context": 11, - "Result": 10, - "_Context": 1, - "KeyStr": 6, - "mustache_key": 4, - "C": 4, - "Rest": 10, - "Key": 2, - "list_to_existing_atom": 1, - "dict": 2, - "find": 1, - "support": 1, - "based": 1, - "on": 1, - "rebar": 1, - "overlays": 1, - "BootRelVsn": 2, - "OverlayVars": 2, - "from_list": 1, - "erts_vsn": 1, - "system_info": 1, - "version": 1, - "rel_vsn": 1, - "hostname": 1, - "net_adm": 1, - "localhost": 1, - "BaseDir": 7, - "get_cwd": 1, - "execute_overlay": 6, - "_Vars": 1, - "_BaseDir": 1, - "_TargetDir": 1, - "mkdir": 1, - "Out": 4, - "Vars": 7, - "filename": 3, - "join": 3, - "copy": 1, - "In": 2, - "InFile": 3, - "OutFile": 2, - "filelib": 1, - "is_file": 1, - "ExitCode": 2, - "flush": 1 - }, - "fish": { - "#": 18, - "set": 49, - "-": 102, - "g": 1, - "IFS": 4, - "n": 5, - "t": 2, - "l": 15, - "configdir": 2, - "/.config": 1, - "if": 21, - "q": 9, - "XDG_CONFIG_HOME": 2, - "end": 33, - "not": 8, - "fish_function_path": 4, - "configdir/fish/functions": 1, - "__fish_sysconfdir/functions": 1, - "__fish_datadir/functions": 3, - "contains": 4, - "[": 13, - "]": 13, - "fish_complete_path": 4, - "configdir/fish/completions": 1, - "__fish_sysconfdir/completions": 1, - "__fish_datadir/completions": 3, - "test": 7, - "d": 3, - "/usr/xpg4/bin": 3, - "PATH": 6, - "path_list": 4, - "/bin": 1, - "/usr/bin": 1, - "/usr/X11R6/bin": 1, - "/usr/local/bin": 1, - "__fish_bin_dir": 1, - "switch": 3, - "USER": 1, - "case": 9, - "root": 1, - "/sbin": 1, - "/usr/sbin": 1, - "/usr/local/sbin": 1, - "for": 1, - "i": 5, - "in": 2, "function": 6, - "fish_sigtrap_handler": 1, - "on": 2, - "signal": 1, - "TRAP": 1, - "no": 2, - "scope": 1, - "shadowing": 1, - "description": 2, - "breakpoint": 1, - "__fish_on_interactive": 2, - "event": 1, - "fish_prompt": 1, - "__fish_config_interactive": 1, - "functions": 5, - "e": 6, - "eval": 5, - "S": 1, - "If": 2, - "we": 2, - "are": 1, - "an": 1, - "interactive": 8, - "shell": 1, - "should": 2, - "enable": 1, - "full": 4, - "job": 5, - "control": 5, - "since": 1, - "it": 1, - "behave": 1, - "like": 2, - "the": 1, - "real": 1, - "code": 1, - "was": 1, - "executed.": 1, - "don": 1, - "do": 1, - "this": 1, - "commands": 1, - "that": 1, - "expect": 1, - "to": 1, - "be": 1, - "used": 1, - "interactively": 1, - "less": 1, - "wont": 1, - "work": 1, - "using": 1, - "eval.": 1, - "mode": 5, - "status": 7, - "is": 3, - "else": 3, - "none": 1, - "echo": 3, - "|": 3, - ".": 2, - "<": 1, - "&": 1, - "res": 2, - "return": 6, - "funced": 3, - "editor": 7, - "EDITOR": 1, - "funcname": 14, - "while": 2, - "argv": 9, - "h": 1, - "help": 1, - "__fish_print_help": 1, - "set_color": 4, - "red": 2, - "printf": 3, - "(": 7, - "_": 3, - ")": 7, - "normal": 2, - "begin": 2, - ";": 7, - "or": 3, - "init": 5, - "nend": 2, - "editor_cmd": 2, - "type": 1, - "f": 3, - "/dev/null": 2, - "fish": 3, - "z": 1, - "fish_indent": 2, - "indent": 1, - "prompt": 2, - "read": 1, - "p": 1, - "c": 1, - "s": 1, - "cmd": 2, - "TMPDIR": 2, - "/tmp": 1, - "tmpname": 8, - "%": 2, - "self": 2, - "random": 2, - "stat": 2, - "rm": 1 - }, - "Forth": { - "(": 88, - "Block": 2, - "words.": 6, - ")": 87, - "variable": 3, - "blk": 3, - "current": 5, - "-": 473, - "block": 8, - "n": 22, - "addr": 11, - ";": 61, - "buffer": 2, - "evaluate": 1, - "extended": 3, - "semantics": 3, - "flush": 1, - "load": 2, - "...": 4, - "dup": 10, - "save": 2, - "input": 2, - "in": 4, - "@": 13, - "source": 5, - "#source": 2, - "interpret": 1, - "restore": 1, - "buffers": 2, - "update": 1, - "extension": 4, - "empty": 2, - "scr": 2, - "list": 1, - "bounds": 1, - "do": 2, - "i": 5, - "emit": 2, - "loop": 4, - "refill": 2, - "thru": 1, - "x": 10, - "y": 5, - "+": 17, - "swap": 12, - "*": 9, - "forth": 2, - "Copyright": 3, - "Lars": 3, - "Brinkhoff": 3, - "Kernel": 4, - "#tib": 2, - "TODO": 12, - ".r": 1, - ".": 5, - "[": 16, - "char": 10, - "]": 15, - "parse": 5, - "type": 3, - "immediate": 19, - "<": 14, - "flag": 4, - "r": 18, - "x1": 5, - "x2": 5, - "R": 13, - "rot": 2, - "r@": 2, - "noname": 1, - "align": 2, - "here": 9, - "c": 3, - "allot": 2, - "lastxt": 4, - "SP": 1, - "query": 1, - "tib": 1, - "body": 1, - "true": 1, - "tuck": 2, - "over": 5, - "u.r": 1, - "u": 3, - "if": 9, - "drop": 4, - "false": 1, - "else": 6, - "then": 5, - "unused": 1, - "value": 1, - "create": 2, - "does": 5, - "within": 1, - "compile": 2, - "Forth2012": 2, - "core": 1, - "action": 1, - "of": 3, - "defer": 2, - "name": 1, - "s": 4, - "c@": 2, - "negate": 1, - "nip": 2, - "bl": 4, - "word": 9, - "ahead": 2, - "resolve": 4, - "literal": 4, - "postpone": 14, - "nonimmediate": 1, - "caddr": 1, - "C": 9, - "find": 2, - "cells": 1, - "postponers": 1, - "execute": 1, - "unresolved": 4, - "orig": 5, - "chars": 1, - "n1": 2, - "n2": 2, - "orig1": 1, - "orig2": 1, - "branch": 5, - "dodoes_code": 1, - "code": 3, - "begin": 2, - "dest": 5, - "while": 2, - "repeat": 2, - "until": 1, - "recurse": 1, - "pad": 3, - "If": 1, - "necessary": 1, - "and": 3, - "keep": 1, - "parsing.": 1, - "string": 3, - "cmove": 1, - "state": 2, - "cr": 3, - "abort": 3, - "": 1, - "Undefined": 1, - "ok": 1, - "HELLO": 4, - "KataDiversion": 1, - "Forth": 1, - "utils": 1, - "the": 7, - "stack": 3, - "EMPTY": 1, - "DEPTH": 2, - "IF": 10, - "BEGIN": 3, - "DROP": 5, - "UNTIL": 3, - "THEN": 10, - "power": 2, - "**": 2, - "n1_pow_n2": 1, - "SWAP": 8, - "DUP": 14, - "DO": 2, - "OVER": 2, - "LOOP": 2, - "NIP": 4, - "compute": 1, - "highest": 1, - "below": 1, - "N.": 1, - "e.g.": 2, - "MAXPOW2": 2, - "log2_n": 1, - "ABORT": 1, - "ELSE": 7, - "|": 4, - "I": 5, - "i*2": 1, - "/": 3, - "kata": 1, - "test": 1, - "given": 3, - "N": 6, - "has": 1, - "two": 2, - "adjacent": 2, - "bits": 3, - "NOT": 3, - "TWO": 3, - "ADJACENT": 3, - "BITS": 3, - "bool": 1, - "uses": 1, - "following": 1, - "algorithm": 1, - "return": 5, - "A": 5, - "X": 5, - "LOG2": 1, - "end": 1, - "OR": 1, - "INVERT": 1, - "maximum": 1, - "number": 4, - "which": 3, - "can": 2, - "be": 2, - "made": 2, - "with": 2, - "MAX": 2, - "NB": 3, - "m": 2, - "**n": 1, - "numbers": 1, - "or": 1, - "less": 1, - "have": 1, - "not": 1, - "bits.": 1, - "see": 1, - "http": 1, - "//www.codekata.com/2007/01/code_kata_fifte.html": 1, - "HOW": 1, - "MANY": 1, - "Tools": 2, - ".s": 1, - "depth": 1, - "traverse": 1, - "dictionary": 1, - "assembler": 1, - "kernel": 1, - "bye": 1, - "cs": 2, - "pick": 1, - "roll": 1, - "editor": 1, - "forget": 1, - "reveal": 1, - "tools": 1, - "nr": 1, - "synonym": 1, - "undefined": 2, - "defined": 1, - "invert": 1, - "/cell": 2, - "cell": 2 - }, - "GAS": { - ".cstring": 1, - "LC0": 2, - ".ascii": 2, - ".text": 1, - ".globl": 2, - "_main": 2, - "LFB3": 4, - "pushq": 1, - "%": 6, - "rbp": 2, - "LCFI0": 3, - "movq": 1, - "rsp": 1, - "LCFI1": 2, - "leaq": 1, - "(": 1, - "rip": 1, - ")": 1, - "rdi": 1, - "call": 1, - "_puts": 1, - "movl": 1, - "eax": 1, - "leave": 1, - "ret": 1, - "LFE3": 2, - ".section": 1, - "__TEXT": 1, - "__eh_frame": 1, - "coalesced": 1, - "no_toc": 1, - "+": 2, - "strip_static_syms": 1, - "live_support": 1, - "EH_frame1": 2, - ".set": 5, - "L": 10, - "set": 10, - "LECIE1": 2, - "-": 7, - "LSCIE1": 2, - ".long": 6, - ".byte": 20, - "xc": 1, - ".align": 2, - "_main.eh": 2, - "LSFDE1": 1, - "LEFDE1": 2, - "LASFDE1": 3, - ".quad": 2, - ".": 1, - "xe": 1, - "xd": 1, - ".subsections_via_symbols": 1 - }, - "GLSL": { - "////": 4, - "High": 1, - "quality": 2, - "(": 386, - "Some": 1, - "browsers": 1, - "may": 1, - "freeze": 1, - "or": 1, - "crash": 1, - ")": 386, - "//#define": 10, - "HIGHQUALITY": 2, - "Medium": 1, - "Should": 1, - "be": 1, - "fine": 1, - "on": 3, - "all": 1, - "systems": 1, - "works": 1, - "Intel": 1, - "HD2000": 1, - "Win7": 1, - "but": 1, - "quite": 1, - "slow": 1, - "MEDIUMQUALITY": 2, - "Defaults": 1, - "REFLECTIONS": 3, - "#define": 13, - "SHADOWS": 5, - "GRASS": 3, - "SMALL_WAVES": 4, - "RAGGED_LEAVES": 5, - "DETAILED_NOISE": 3, - "LIGHT_AA": 3, - "//": 36, - "sample": 2, - "SSAA": 2, - "HEAVY_AA": 2, - "x2": 5, - "RG": 1, - "TONEMAP": 5, - "Configurations": 1, - "#ifdef": 14, - "#endif": 14, - "const": 18, - "float": 103, - "eps": 5, - "e": 4, - "-": 108, - ";": 353, - "PI": 3, - "vec3": 165, - "sunDir": 5, - "skyCol": 4, - "sandCol": 2, - "treeCol": 2, - "grassCol": 2, - "leavesCol": 4, - "leavesPos": 4, - "sunCol": 5, - "#else": 5, - "exposure": 1, - "Only": 1, - "used": 1, - "when": 1, - "tonemapping": 1, - "mod289": 4, - "x": 11, - "{": 61, - "return": 47, - "floor": 8, - "*": 115, - "/": 24, - "}": 61, - "vec4": 72, - "permute": 4, - "x*34.0": 1, - "+": 108, - "*x": 3, - "taylorInvSqrt": 2, - "r": 14, - "snoise": 7, - "v": 8, - "vec2": 26, - "C": 1, - "/6.0": 1, - "/3.0": 1, - "D": 1, - "i": 38, - "dot": 30, - "C.yyy": 2, - "x0": 7, - "C.xxx": 2, - "g": 2, - "step": 2, - "x0.yzx": 1, - "x0.xyz": 1, - "l": 1, - "i1": 2, - "min": 11, - "g.xyz": 2, - "l.zxy": 2, - "i2": 2, - "max": 9, - "x1": 4, - "*C.x": 2, - "/3": 1, - "C.y": 1, - "x3": 4, - "D.yyy": 1, - "D.y": 1, - "p": 26, - "i.z": 1, - "i1.z": 1, - "i2.z": 1, - "i.y": 1, - "i1.y": 1, - "i2.y": 1, - "i.x": 1, - "i1.x": 1, - "i2.x": 1, - "n_": 2, - "/7.0": 1, - "ns": 4, - "D.wyz": 1, - "D.xzx": 1, - "j": 4, - "ns.z": 3, - "mod": 2, - "*7": 1, - "x_": 3, - "y_": 2, - "N": 1, - "*ns.x": 2, - "ns.yyyy": 2, - "y": 2, - "h": 21, - "abs": 2, - "b0": 3, - "x.xy": 1, - "y.xy": 1, - "b1": 3, - "x.zw": 1, - "y.zw": 1, - "//vec4": 3, - "s0": 2, - "lessThan": 2, - "*2.0": 4, - "s1": 2, - "sh": 1, - "a0": 1, - "b0.xzyw": 1, - "s0.xzyw*sh.xxyy": 1, - "a1": 1, - "b1.xzyw": 1, - "s1.xzyw*sh.zzww": 1, - "p0": 5, - "a0.xy": 1, - "h.x": 1, - "p1": 5, - "a0.zw": 1, - "h.y": 1, - "p2": 5, - "a1.xy": 1, - "h.z": 1, - "p3": 5, - "a1.zw": 1, - "h.w": 1, - "//Normalise": 1, - "gradients": 1, - "norm": 1, - "norm.x": 1, - "norm.y": 1, - "norm.z": 1, - "norm.w": 1, - "m": 8, - "m*m": 1, - "fbm": 2, - "final": 5, - "waterHeight": 4, - "d": 10, - "length": 7, - "p.xz": 2, - "sin": 8, - "iGlobalTime": 7, - "Island": 1, - "waves": 3, - "p*0.5": 1, - "Other": 1, - "bump": 2, - "pos": 42, - "rayDir": 43, - "s": 23, - "Fade": 1, - "out": 1, - "to": 1, - "reduce": 1, - "aliasing": 1, - "dist": 7, - "<": 23, - "sqrt": 6, - "Calculate": 1, - "normal": 7, - "from": 2, - "heightmap": 1, - "pos.x": 1, - "iGlobalTime*0.5": 1, - "pos.z": 2, - "*0.7": 1, - "*s": 4, - "normalize": 14, - "e.xyy": 1, - "e.yxy": 1, - "intersectSphere": 2, - "rpos": 5, - "rdir": 3, - "rad": 2, - "op": 5, - "b": 5, - "det": 11, - "b*b": 2, - "rad*rad": 2, - "if": 29, - "t": 44, - "rdir*t": 1, - "intersectCylinder": 1, - "rdir2": 2, - "rdir.yz": 1, - "op.yz": 3, - "rpos.yz": 2, - "rdir2*t": 2, - "pos.yz": 2, - "intersectPlane": 3, - "rayPos": 38, - "n": 18, - "sign": 1, - "rotate": 5, - "theta": 6, - "c": 6, - "cos": 4, - "p.x": 2, - "p.z": 2, - "p.y": 1, - "impulse": 2, - "k": 8, - "by": 1, - "iq": 2, - "k*x": 1, - "exp": 2, - "grass": 2, - "Optimization": 1, - "Avoid": 1, - "noise": 1, - "too": 1, - "far": 1, - "away": 1, - "pos.y": 8, - "tree": 2, - "pos.y*0.03": 2, - "mat2": 2, - "m*pos.xy": 1, - "width": 2, - "clamp": 4, - "scene": 7, - "vtree": 4, - "vgrass": 2, - ".x": 4, - "eps.xyy": 1, - "eps.yxy": 1, - "eps.yyx": 1, - "plantsShadow": 2, - "Soft": 1, - "shadow": 4, - "taken": 1, - "for": 7, - "int": 7, - "rayDir*t": 2, - "res": 6, - "res.x": 3, - "k*res.x/t": 1, - "s*s*": 1, - "intersectWater": 2, - "rayPos.y": 1, - "rayDir.y": 1, - "intersectSand": 3, - "intersectTreasure": 2, - "intersectLeaf": 2, - "openAmount": 4, - "dir": 2, - "offset": 5, - "rayDir*res.w": 1, - "pos*0.8": 2, - "||": 3, - "res.w": 6, - "res2": 2, - "dir.xy": 1, - "dir.z": 1, - "rayDir*res2.w": 1, - "res2.w": 3, - "&&": 10, - "leaves": 7, - "e20": 3, - "sway": 5, - "fract": 1, - "upDownSway": 2, - "angleOffset": 3, - "Left": 1, - "right": 1, - "alpha": 3, - "Up": 1, - "down": 1, - "k*10.0": 1, - "p.xzy": 1, - ".xzy": 2, - "d.xzy": 1, - "Shift": 1, - "Intersect": 11, - "individual": 1, - "leaf": 1, - "res.xyz": 1, - "sand": 2, - "resSand": 2, - "//if": 1, - "resSand.w": 4, - "plants": 6, - "resLeaves": 3, - "resLeaves.w": 10, - "e7": 3, - "light": 5, - "sunDir*0.01": 2, - "col": 32, - "n.y": 3, - "lightLeaves": 3, - "ao": 5, - "sky": 5, - "res.y": 2, - "uvFact": 2, - "uv": 12, - "n.x": 1, - "tex": 6, - "texture2D": 6, - "iChannel0": 3, - ".rgb": 2, - "e8": 1, - "traceReflection": 2, - "resPlants": 2, - "resPlants.w": 6, - "resPlants.xyz": 2, - "pos.xz": 2, - "leavesPos.xz": 2, - ".r": 3, - "resLeaves.xyz": 2, - "trace": 2, - "resSand.xyz": 1, - "treasure": 1, - "chest": 1, - "resTreasure": 1, - "resTreasure.w": 4, - "resTreasure.xyz": 1, - "water": 1, - "resWater": 1, - "resWater.w": 4, - "ct": 2, - "fresnel": 2, - "pow": 3, - "trans": 2, - "reflDir": 3, - "reflect": 1, - "refl": 3, - "resWater.t": 1, - "mix": 2, - "camera": 8, - "px": 4, - "rd": 1, - "iResolution.yy": 1, - "iResolution.x/iResolution.y*0.5": 1, - "rd.x": 1, - "rd.y": 1, - "void": 5, - "main": 3, - "gl_FragCoord.xy": 7, - "*0.25": 4, - "*0.5": 1, - "Optimized": 1, - "Haarm": 1, - "Peter": 1, - "Duiker": 1, - "curve": 1, - "col*exposure": 1, - "x*": 2, - ".5": 1, - "gl_FragColor": 2, - "NUM_LIGHTS": 4, - "AMBIENT": 2, - "MAX_DIST": 3, - "MAX_DIST_SQUARED": 3, - "uniform": 7, - "lightColor": 3, - "[": 29, - "]": 29, - "varying": 3, - "fragmentNormal": 2, - "cameraVector": 2, - "lightVector": 4, - "initialize": 1, - "diffuse/specular": 1, - "lighting": 1, - "diffuse": 4, - "specular": 4, - "the": 1, - "fragment": 1, - "and": 2, - "direction": 1, - "cameraDir": 2, - "loop": 1, - "through": 1, - "each": 1, - "calculate": 1, - "distance": 1, - "between": 1, - "distFactor": 3, - "lightDir": 3, - "diffuseDot": 2, - "halfAngle": 2, - "specularColor": 2, - "specularDot": 2, - "sample.rgb": 1, - "sample.a": 1, - "#version": 1, - "kCoeff": 2, - "kCube": 2, - "uShift": 3, - "vShift": 3, - "chroma_red": 2, - "chroma_green": 2, - "chroma_blue": 2, - "bool": 1, - "apply_disto": 4, - "sampler2D": 1, - "input1": 4, - "adsk_input1_w": 4, - "adsk_input1_h": 3, - "adsk_input1_aspect": 1, - "adsk_input1_frameratio": 5, - "adsk_result_w": 3, - "adsk_result_h": 2, - "distortion_f": 3, - "f": 17, - "r*r": 1, - "inverse_f": 2, - "lut": 9, - "max_r": 2, - "incr": 2, - "lut_r": 5, - ".z": 5, - ".y": 2, - "aberrate": 4, - "chroma": 2, - "chromaticize_and_invert": 2, - "rgb_f": 5, - "px.x": 2, - "px.y": 2, - "uv.x": 11, - "uv.y": 7, - "*2": 2, - "uv.x*uv.x": 1, - "uv.y*uv.y": 1, - "else": 1, - "rgb_uvs": 12, - "rgb_f.rr": 1, - "rgb_f.gg": 1, - "rgb_f.bb": 1, - "sampled": 1, - "sampled.r": 1, - "sampled.g": 1, - ".g": 1, - "sampled.b": 1, - ".b": 1, - "gl_FragColor.rgba": 1, - "sampled.rgb": 1 - }, - "Gosu": { - "print": 4, - "(": 54, - ")": 55, - "<%!-->": 1, - "defined": 1, - "in": 3, - "Hello": 2, - "gst": 1, - "<": 1, - "%": 2, - "@": 1, - "params": 1, - "users": 2, - "Collection": 1, - "": 1, - "<%>": 2, - "for": 2, - "user": 1, - "{": 28, - "user.LastName": 1, - "}": 28, - "user.FirstName": 1, - "user.Department": 1, - "package": 2, - "example": 2, - "enhancement": 1, - "String": 6, - "function": 11, - "toPerson": 1, - "Person": 7, - "var": 10, - "vals": 4, - "this.split": 1, - "return": 4, - "new": 6, - "[": 4, - "]": 4, - "as": 3, - "int": 2, - "Relationship.valueOf": 2, - "hello": 1, - "uses": 2, - "java.util.*": 1, - "java.io.File": 1, - "class": 1, - "extends": 1, - "Contact": 1, - "implements": 1, - "IEmailable": 2, - "_name": 4, - "_age": 3, - "Integer": 3, - "Age": 1, - "_relationship": 2, - "Relationship": 3, - "readonly": 1, - "RelationshipOfPerson": 1, - "delegate": 1, - "_emailHelper": 2, - "represents": 1, - "enum": 1, - "FRIEND": 1, - "FAMILY": 1, - "BUSINESS_CONTACT": 1, - "static": 7, - "ALL_PEOPLE": 2, - "HashMap": 1, - "": 1, - "construct": 1, - "name": 4, - "age": 4, - "relationship": 2, - "EmailHelper": 1, - "this": 1, - "property": 2, - "get": 1, - "Name": 3, - "set": 1, - "override": 1, - "getEmailName": 1, - "incrementAge": 1, - "+": 2, - "@Deprecated": 1, - "printPersonInfo": 1, - "addPerson": 4, - "p": 5, - "if": 4, - "ALL_PEOPLE.containsKey": 2, - ".Name": 1, - "throw": 1, - "IllegalArgumentException": 1, - "p.Name": 2, - "addAllPeople": 1, - "contacts": 2, - "List": 1, - "": 1, - "contact": 3, - "typeis": 1, - "and": 1, - "not": 1, - "contact.Name": 1, - "getAllPeopleOlderThanNOrderedByName": 1, - "allPeople": 1, - "ALL_PEOPLE.Values": 3, - "allPeople.where": 1, - "-": 3, - "p.Age": 1, - ".orderBy": 1, - "loadPersonFromDB": 1, - "id": 1, - "using": 2, - "conn": 1, - "DBConnectionManager.getConnection": 1, - "stmt": 1, - "conn.prepareStatement": 1, - "stmt.setInt": 1, - "result": 1, - "stmt.executeQuery": 1, - "result.next": 1, - "result.getString": 2, - "result.getInt": 1, - "loadFromFile": 1, - "file": 3, - "File": 2, - "file.eachLine": 1, - "line": 1, - "line.HasContent": 1, - "line.toPerson": 1, - "saveToFile": 1, - "writer": 2, - "FileWriter": 1, - "PersonCSVTemplate.renderToString": 1, - "PersonCSVTemplate.render": 1 - }, - "Groovy": { - "task": 1, - "echoDirListViaAntBuilder": 1, - "(": 7, - ")": 7, - "{": 3, - "description": 1, - "//Docs": 1, - "http": 1, - "//ant.apache.org/manual/Types/fileset.html": 1, - "//Echo": 1, - "the": 3, - "Gradle": 1, - "project": 1, - "name": 1, - "via": 1, - "ant": 1, - "echo": 1, - "plugin": 1, - "ant.echo": 3, - "message": 1, - "project.name": 1, - "path": 2, - "//Gather": 1, - "list": 1, - "of": 1, - "files": 1, - "in": 1, - "a": 1, - "subdirectory": 1, - "ant.fileScanner": 1, - "fileset": 1, - "dir": 1, - "}": 3, - ".each": 1, - "//Print": 1, - "each": 1, - "file": 1, - "to": 1, - "screen": 1, - "with": 1, - "CWD": 1, - "projectDir": 1, - "removed.": 1, - "println": 2, - "it.toString": 1, - "-": 1, - "SHEBANG#!groovy": 1 - }, - "Groovy Server Pages": { - "": 4, - "": 4, - "": 4, - "http": 3, - "equiv=": 3, - "content=": 4, - "": 4, - "Testing": 3, - "with": 3, - "SiteMesh": 2, - "and": 2, - "Resources": 2, - "": 4, - "name=": 1, - "": 2, - "module=": 2, - "": 4, - "": 4, - "": 4, - "": 4, - "<%@>": 1, - "page": 2, - "contentType=": 1, - "Using": 1, - "directive": 1, - "tag": 1, - "": 2, - "Print": 1, - "{": 1, - "example": 1, - "}": 1 - }, - "Haml": { - "%": 1, - "p": 1, - "Hello": 1, - "World": 1 - }, - "Handlebars": { - "
": 5, - "class=": 5, - "

": 3, - "{": 16, - "title": 1, - "}": 16, - "

": 3, - "body": 3, - "
": 5, - "By": 2, - "fullName": 2, - "author": 2, - "Comments": 1, - "#each": 1, - "comments": 1, - "

": 1, - "

": 1, - "/each": 1 - }, - "INI": { - ";": 1, - "editorconfig.org": 1, - "root": 1, - "true": 3, - "[": 2, - "*": 1, - "]": 2, - "indent_style": 1, - "space": 1, - "indent_size": 1, - "end_of_line": 1, - "lf": 1, - "charset": 1, - "utf": 1, - "-": 1, - "trim_trailing_whitespace": 1, - "insert_final_newline": 1, - "user": 1, - "name": 1, - "Josh": 1, - "Peek": 1, - "email": 1, - "josh@github.com": 1 - }, - "Ioke": { - "SHEBANG#!ioke": 1, - "println": 1 - }, - "Java": { - "package": 6, - "clojure.asm": 1, - ";": 891, - "import": 66, - "java.lang.reflect.Constructor": 1, - "java.lang.reflect.Method": 1, - "public": 214, - "class": 12, - "Type": 42, - "{": 434, - "final": 78, - "static": 141, - "int": 62, - "VOID": 5, - "BOOLEAN": 6, - "CHAR": 6, - "BYTE": 6, - "SHORT": 6, - "INT": 6, - "FLOAT": 6, - "LONG": 7, - "DOUBLE": 7, - "ARRAY": 6, - "OBJECT": 7, - "VOID_TYPE": 3, - "new": 131, - "(": 1097, - ")": 1097, - "BOOLEAN_TYPE": 3, - "CHAR_TYPE": 3, - "BYTE_TYPE": 3, - "SHORT_TYPE": 3, - "INT_TYPE": 3, - "FLOAT_TYPE": 3, - "LONG_TYPE": 3, - "DOUBLE_TYPE": 3, - "private": 77, - "sort": 18, - "char": 13, - "[": 54, - "]": 54, - "buf": 43, - "off": 25, - "len": 24, - "this.sort": 2, - "this.len": 2, - "}": 434, - "this.buf": 2, - "this.off": 1, - "getType": 10, - "String": 33, - "typeDescriptor": 1, - "return": 267, - "typeDescriptor.toCharArray": 1, - "Class": 10, - "c": 21, - "if": 116, - "c.isPrimitive": 2, - "Integer.TYPE": 2, - "else": 33, - "Void.TYPE": 3, - "Boolean.TYPE": 2, - "Byte.TYPE": 2, - "Character.TYPE": 2, - "Short.TYPE": 2, - "Double.TYPE": 2, - "Float.TYPE": 2, - "getDescriptor": 15, - "getObjectType": 1, - "name": 10, - "l": 5, - "name.length": 2, - "+": 83, - "name.getChars": 1, - "getArgumentTypes": 2, - "methodDescriptor": 2, - "methodDescriptor.toCharArray": 2, - "size": 16, - "while": 10, - "true": 21, - "car": 18, - "break": 4, - "args": 6, - ".len": 1, - "Method": 3, - "method": 2, - "classes": 2, - "method.getParameterTypes": 1, - "types": 3, - "classes.length": 2, - "for": 16, - "i": 54, - "-": 15, - "getReturnType": 2, - "methodDescriptor.indexOf": 1, - "method.getReturnType": 1, - "switch": 6, - "case": 56, - "//": 16, - "default": 6, - "getSort": 1, - "getDimensions": 3, - "getElementType": 2, - "getClassName": 1, - "StringBuffer": 14, - "b": 7, - ".getClassName": 1, - "b.append": 1, - "b.toString": 1, - ".replace": 2, - "getInternalName": 2, - "buf.toString": 4, - "getMethodDescriptor": 2, - "returnType": 1, - "argumentTypes": 2, - "buf.append": 21, - "<": 13, - "argumentTypes.length": 1, - ".getDescriptor": 1, - "returnType.getDescriptor": 1, - "void": 25, - "c.getName": 1, - "getConstructorDescriptor": 1, - "Constructor": 1, - "parameters": 4, - "c.getParameterTypes": 1, - "parameters.length": 2, - ".toString": 1, - "m": 1, - "m.getParameterTypes": 1, - "m.getReturnType": 1, - "d": 10, - "d.isPrimitive": 1, - "d.isArray": 1, - "d.getComponentType": 1, - "d.getName": 1, - "name.charAt": 1, - "getSize": 1, - "||": 8, - "getOpcode": 1, - "opcode": 17, - "Opcodes.IALOAD": 1, - "Opcodes.IASTORE": 1, - "boolean": 36, - "equals": 2, - "Object": 31, - "o": 12, - "this": 16, - "instanceof": 19, - "false": 12, - "t": 6, - "t.sort": 1, - "Type.OBJECT": 2, - "Type.ARRAY": 2, - "t.len": 1, - "j": 9, - "t.off": 1, - "end": 4, - "t.buf": 1, - "hashCode": 1, - "hc": 4, - "*": 2, - "toString": 1, - "clojure.lang": 1, - "java.lang.ref.Reference": 1, - "java.math.BigInteger": 1, - "java.util.Map": 3, - "java.util.concurrent.ConcurrentHashMap": 1, - "java.lang.ref.SoftReference": 1, - "java.lang.ref.ReferenceQueue": 1, - "Util": 1, - "equiv": 17, - "k1": 40, - "k2": 38, - "null": 80, - "Number": 9, - "&&": 6, - "Numbers.equal": 1, - "IPersistentCollection": 5, - "pcequiv": 2, - "k1.equals": 2, - "long": 5, - "double": 4, - "c1": 2, - "c2": 2, - ".equiv": 2, - "identical": 1, - "classOf": 1, - "x": 8, - "x.getClass": 1, - "compare": 1, - "Numbers.compare": 1, - "Comparable": 1, - ".compareTo": 1, - "hash": 3, - "o.hashCode": 2, - "hasheq": 1, - "Numbers.hasheq": 1, - "IHashEq": 2, - ".hasheq": 1, - "hashCombine": 1, - "seed": 5, - "//a": 1, - "la": 1, - "boost": 1, - "e3779b9": 1, - "<<": 1, - "isPrimitive": 1, - "isInteger": 1, - "Integer": 2, - "Long": 1, - "BigInt": 1, - "BigInteger": 1, - "ret1": 2, - "ret": 4, - "nil": 2, - "ISeq": 2, - "": 1, - "clearCache": 1, - "ReferenceQueue": 1, - "rq": 1, - "ConcurrentHashMap": 1, - "K": 2, - "Reference": 3, - "": 3, - "cache": 1, - "//cleanup": 1, - "any": 1, - "dead": 1, - "entries": 1, - "rq.poll": 2, - "Map.Entry": 1, - "e": 31, - "cache.entrySet": 1, - "val": 3, - "e.getValue": 1, - "val.get": 1, - "cache.remove": 1, - "e.getKey": 1, - "RuntimeException": 5, - "runtimeException": 2, - "s": 10, - "Throwable": 4, - "sneakyThrow": 1, - "throw": 9, - "NullPointerException": 3, - "Util.": 1, - "": 1, - "sneakyThrow0": 2, - "@SuppressWarnings": 1, - "": 1, - "extends": 10, - "throws": 26, - "T": 2, - "nokogiri.internals": 1, - "nokogiri.internals.NokogiriHelpers.getNokogiriClass": 1, - "nokogiri.internals.NokogiriHelpers.isNamespace": 1, - "nokogiri.internals.NokogiriHelpers.stringOrNil": 1, - "nokogiri.HtmlDocument": 1, - "nokogiri.NokogiriService": 1, - "nokogiri.XmlDocument": 1, - "org.apache.xerces.parsers.DOMParser": 1, - "org.apache.xerces.xni.Augmentations": 1, - "org.apache.xerces.xni.QName": 1, - "org.apache.xerces.xni.XMLAttributes": 1, - "org.apache.xerces.xni.XNIException": 1, - "org.apache.xerces.xni.parser.XMLDocumentFilter": 1, - "org.apache.xerces.xni.parser.XMLParserConfiguration": 1, - "org.cyberneko.html.HTMLConfiguration": 1, - "org.cyberneko.html.filters.DefaultFilter": 1, - "org.jruby.Ruby": 2, - "org.jruby.RubyClass": 2, - "org.jruby.runtime.ThreadContext": 1, - "org.jruby.runtime.builtin.IRubyObject": 2, - "org.w3c.dom.Document": 1, - "org.w3c.dom.NamedNodeMap": 1, - "org.w3c.dom.NodeList": 1, - "HtmlDomParserContext": 3, - "XmlDomParserContext": 1, - "Ruby": 43, - "runtime": 88, - "IRubyObject": 35, - "options": 4, - "super": 7, - "encoding": 2, - "@Override": 6, - "protected": 8, - "initErrorHandler": 1, - "options.strict": 1, - "errorHandler": 6, - "NokogiriStrictErrorHandler": 1, - "options.noError": 2, - "options.noWarning": 2, - "NokogiriNonStrictErrorHandler4NekoHtml": 1, - "initParser": 1, - "XMLParserConfiguration": 1, - "config": 2, - "HTMLConfiguration": 1, - "XMLDocumentFilter": 3, - "removeNSAttrsFilter": 2, - "RemoveNSAttrsFilter": 2, - "elementValidityCheckFilter": 3, - "ElementValidityCheckFilter": 3, - "//XMLDocumentFilter": 1, - "filters": 3, - "config.setErrorHandler": 1, - "this.errorHandler": 2, - "parser": 1, - "DOMParser": 1, - "setProperty": 4, - "java_encoding": 2, - "setFeature": 4, - "enableDocumentFragment": 1, - "XmlDocument": 8, - "getNewEmptyDocument": 1, - "ThreadContext": 2, - "context": 8, - "XmlDocument.rbNew": 1, - "getNokogiriClass": 1, - "context.getRuntime": 3, - "wrapDocument": 1, - "RubyClass": 92, - "klazz": 107, - "Document": 2, - "document": 5, - "HtmlDocument": 7, - "htmlDocument": 6, - "NokogiriService.HTML_DOCUMENT_ALLOCATOR.allocate": 1, - "htmlDocument.setDocumentNode": 1, - "ruby_encoding.isNil": 1, - "detected_encoding": 2, - "detected_encoding.isNil": 1, - "ruby_encoding": 3, - "charset": 2, - "tryGetCharsetFromHtml5MetaTag": 2, - "stringOrNil": 1, - "htmlDocument.setEncoding": 1, - "htmlDocument.setParsedEncoding": 1, - ".equalsIgnoreCase": 5, - "document.getDocumentElement": 2, - ".getNodeName": 4, - "NodeList": 2, - "list": 1, - ".getChildNodes": 2, - "list.getLength": 1, - "list.item": 2, - "headers": 1, - "headers.getLength": 1, - "headers.item": 2, - "NamedNodeMap": 1, - "nodeMap": 1, - ".getAttributes": 1, - "k": 5, - "nodeMap.getLength": 1, - "nodeMap.item": 2, - ".getNodeValue": 1, - "DefaultFilter": 2, - "startElement": 2, - "QName": 2, - "element": 3, - "XMLAttributes": 2, - "attrs": 4, - "Augmentations": 2, - "augs": 4, - "XNIException": 2, - "attrs.getLength": 1, - "isNamespace": 1, - "attrs.getQName": 1, - "attrs.removeAttributeAt": 1, - "element.uri": 1, - "super.startElement": 2, - "NokogiriErrorHandler": 2, - "element_names": 3, - "g": 1, - "r": 1, - "w": 1, - "y": 1, - "z": 1, - "isValid": 2, - "testee": 1, - "testee.toCharArray": 1, - "index": 4, - ".length": 1, - "testee.equals": 1, - "name.rawname": 2, - "errorHandler.getErrors": 1, - ".add": 1, - "Exception": 1, - "hudson.model": 1, - "hudson.ExtensionListView": 1, - "hudson.Functions": 1, - "hudson.Platform": 1, - "hudson.PluginManager": 1, - "hudson.cli.declarative.CLIResolver": 1, - "hudson.model.listeners.ItemListener": 1, - "hudson.slaves.ComputerListener": 1, - "hudson.util.CopyOnWriteList": 1, - "hudson.util.FormValidation": 1, - "jenkins.model.Jenkins": 1, - "org.jvnet.hudson.reactor.ReactorException": 1, - "org.kohsuke.stapler.QueryParameter": 1, - "org.kohsuke.stapler.Stapler": 1, - "org.kohsuke.stapler.StaplerRequest": 1, - "org.kohsuke.stapler.StaplerResponse": 1, - "javax.servlet.ServletContext": 1, - "javax.servlet.ServletException": 1, - "java.io.File": 1, - "java.io.IOException": 10, - "java.text.NumberFormat": 1, - "java.text.ParseException": 1, - "java.util.Collections": 2, - "java.util.List": 1, - "hudson.Util.fixEmpty": 1, - "Hudson": 5, - "Jenkins": 2, - "transient": 2, - "CopyOnWriteList": 4, - "": 2, - "itemListeners": 2, - "ExtensionListView.createCopyOnWriteList": 2, - "ItemListener.class": 1, - "": 2, - "computerListeners": 2, - "ComputerListener.class": 1, - "@CLIResolver": 1, - "getInstance": 2, - "Jenkins.getInstance": 2, - "File": 2, - "root": 6, - "ServletContext": 2, - "IOException": 8, - "InterruptedException": 2, - "ReactorException": 2, - "PluginManager": 1, - "pluginManager": 2, - "getJobListeners": 1, - "getComputerListeners": 1, - "Slave": 3, - "getSlave": 1, - "Node": 1, - "n": 3, - "getNode": 1, - "List": 3, - "": 2, - "getSlaves": 1, - "slaves": 3, - "setSlaves": 1, - "setNodes": 1, - "TopLevelItem": 3, - "getJob": 1, - "getItem": 1, - "getJobCaseInsensitive": 1, - "match": 2, - "Functions.toEmailSafeString": 2, - "item": 2, - "getItems": 1, - "item.getName": 1, - "synchronized": 1, - "doQuietDown": 2, - "StaplerResponse": 4, - "rsp": 6, - "ServletException": 3, - ".generateResponse": 2, - "doLogRss": 1, - "StaplerRequest": 4, - "req": 6, - "qs": 3, - "req.getQueryString": 1, - "rsp.sendRedirect2": 1, - "doFieldCheck": 3, - "fixEmpty": 8, - "req.getParameter": 4, - "FormValidation": 2, - "@QueryParameter": 4, - "value": 11, - "type": 3, - "errorText": 3, - "warningText": 3, - "FormValidation.error": 4, - "FormValidation.warning": 1, - "try": 26, - "type.equalsIgnoreCase": 2, - "NumberFormat.getInstance": 2, - ".parse": 2, - ".floatValue": 1, - "<=>": 1, - "0": 1, - "error": 1, - "Messages": 1, - "Hudson_NotAPositiveNumber": 1, - "equalsIgnoreCase": 1, - "number": 1, - "negative": 1, - "NumberFormat": 1, - "parse": 1, - "floatValue": 1, - "Messages.Hudson_NotANegativeNumber": 1, - "catch": 27, - "ParseException": 1, - "Messages.Hudson_NotANumber": 1, - "FormValidation.ok": 1, - "isWindows": 1, - "File.pathSeparatorChar": 1, - "isDarwin": 1, - "Platform.isDarwin": 1, - "adminCheck": 3, - "Stapler.getCurrentRequest": 1, - "Stapler.getCurrentResponse": 1, - "isAdmin": 4, - "rsp.sendError": 1, - "StaplerResponse.SC_FORBIDDEN": 1, - ".getACL": 1, - ".hasPermission": 1, - "ADMINISTER": 1, - "XSTREAM.alias": 1, - "Hudson.class": 1, - "MasterComputer": 1, - "Jenkins.MasterComputer": 1, - "CloudList": 3, - "Jenkins.CloudList": 1, - "h": 2, - "needed": 1, - "XStream": 1, - "deserialization": 1, - "nokogiri": 6, - "java.util.HashMap": 1, - "org.jruby.RubyArray": 1, - "org.jruby.RubyFixnum": 1, - "org.jruby.RubyModule": 1, - "org.jruby.runtime.ObjectAllocator": 1, - "org.jruby.runtime.load.BasicLibraryService": 1, - "NokogiriService": 1, - "implements": 3, - "BasicLibraryService": 1, - "nokogiriClassCacheGvarName": 1, - "Map": 1, - "": 2, - "nokogiriClassCache": 2, - "basicLoad": 1, - "ruby": 25, - "init": 2, - "createNokogiriClassCahce": 2, - "Collections.synchronizedMap": 1, - "HashMap": 1, - "nokogiriClassCache.put": 26, - "ruby.getClassFromPath": 26, - "RubyModule": 18, - "ruby.defineModule": 1, - "xmlModule": 7, - "nokogiri.defineModuleUnder": 3, - "xmlSaxModule": 3, - "xmlModule.defineModuleUnder": 1, - "htmlModule": 5, - "htmlSaxModule": 3, - "htmlModule.defineModuleUnder": 1, - "xsltModule": 3, - "createNokogiriModule": 2, - "createSyntaxErrors": 2, - "xmlNode": 5, - "createXmlModule": 2, - "createHtmlModule": 2, - "createDocuments": 2, - "createSaxModule": 2, - "createXsltModule": 2, - "encHandler": 1, - "nokogiri.defineClassUnder": 2, - "ruby.getObject": 13, - "ENCODING_HANDLER_ALLOCATOR": 2, - "encHandler.defineAnnotatedMethods": 1, - "EncodingHandler.class": 1, - "syntaxError": 2, - "ruby.getStandardError": 2, - ".getAllocator": 1, - "xmlSyntaxError": 4, - "xmlModule.defineClassUnder": 23, - "XML_SYNTAXERROR_ALLOCATOR": 2, - "xmlSyntaxError.defineAnnotatedMethods": 1, - "XmlSyntaxError.class": 1, - "node": 14, - "XML_NODE_ALLOCATOR": 2, - "node.defineAnnotatedMethods": 1, - "XmlNode.class": 1, - "attr": 1, - "XML_ATTR_ALLOCATOR": 2, - "attr.defineAnnotatedMethods": 1, - "XmlAttr.class": 1, - "attrDecl": 1, - "XML_ATTRIBUTE_DECL_ALLOCATOR": 2, - "attrDecl.defineAnnotatedMethods": 1, - "XmlAttributeDecl.class": 1, - "characterData": 3, - "comment": 1, - "XML_COMMENT_ALLOCATOR": 2, - "comment.defineAnnotatedMethods": 1, - "XmlComment.class": 1, - "text": 2, - "XML_TEXT_ALLOCATOR": 2, - "text.defineAnnotatedMethods": 1, - "XmlText.class": 1, - "cdata": 1, - "XML_CDATA_ALLOCATOR": 2, - "cdata.defineAnnotatedMethods": 1, - "XmlCdata.class": 1, - "dtd": 1, - "XML_DTD_ALLOCATOR": 2, - "dtd.defineAnnotatedMethods": 1, - "XmlDtd.class": 1, - "documentFragment": 1, - "XML_DOCUMENT_FRAGMENT_ALLOCATOR": 2, - "documentFragment.defineAnnotatedMethods": 1, - "XmlDocumentFragment.class": 1, - "XML_ELEMENT_ALLOCATOR": 2, - "element.defineAnnotatedMethods": 1, - "XmlElement.class": 1, - "elementContent": 1, - "XML_ELEMENT_CONTENT_ALLOCATOR": 2, - "elementContent.defineAnnotatedMethods": 1, - "XmlElementContent.class": 1, - "elementDecl": 1, - "XML_ELEMENT_DECL_ALLOCATOR": 2, - "elementDecl.defineAnnotatedMethods": 1, - "XmlElementDecl.class": 1, - "entityDecl": 1, - "XML_ENTITY_DECL_ALLOCATOR": 2, - "entityDecl.defineAnnotatedMethods": 1, - "XmlEntityDecl.class": 1, - "entityDecl.defineConstant": 6, - "RubyFixnum.newFixnum": 6, - "XmlEntityDecl.INTERNAL_GENERAL": 1, - "XmlEntityDecl.EXTERNAL_GENERAL_PARSED": 1, - "XmlEntityDecl.EXTERNAL_GENERAL_UNPARSED": 1, - "XmlEntityDecl.INTERNAL_PARAMETER": 1, - "XmlEntityDecl.EXTERNAL_PARAMETER": 1, - "XmlEntityDecl.INTERNAL_PREDEFINED": 1, - "entref": 1, - "XML_ENTITY_REFERENCE_ALLOCATOR": 2, - "entref.defineAnnotatedMethods": 1, - "XmlEntityReference.class": 1, - "namespace": 1, - "XML_NAMESPACE_ALLOCATOR": 2, - "namespace.defineAnnotatedMethods": 1, - "XmlNamespace.class": 1, - "nodeSet": 1, - "XML_NODESET_ALLOCATOR": 2, - "nodeSet.defineAnnotatedMethods": 1, - "XmlNodeSet.class": 1, - "pi": 1, - "XML_PROCESSING_INSTRUCTION_ALLOCATOR": 2, - "pi.defineAnnotatedMethods": 1, - "XmlProcessingInstruction.class": 1, - "reader": 1, - "XML_READER_ALLOCATOR": 2, - "reader.defineAnnotatedMethods": 1, - "XmlReader.class": 1, - "schema": 2, - "XML_SCHEMA_ALLOCATOR": 2, - "schema.defineAnnotatedMethods": 1, - "XmlSchema.class": 1, - "relaxng": 1, - "XML_RELAXNG_ALLOCATOR": 2, - "relaxng.defineAnnotatedMethods": 1, - "XmlRelaxng.class": 1, - "xpathContext": 1, - "XML_XPATHCONTEXT_ALLOCATOR": 2, - "xpathContext.defineAnnotatedMethods": 1, - "XmlXpathContext.class": 1, - "htmlElemDesc": 1, - "htmlModule.defineClassUnder": 3, - "HTML_ELEMENT_DESCRIPTION_ALLOCATOR": 2, - "htmlElemDesc.defineAnnotatedMethods": 1, - "HtmlElementDescription.class": 1, - "htmlEntityLookup": 1, - "HTML_ENTITY_LOOKUP_ALLOCATOR": 2, - "htmlEntityLookup.defineAnnotatedMethods": 1, - "HtmlEntityLookup.class": 1, - "xmlDocument": 5, - "XML_DOCUMENT_ALLOCATOR": 2, - "xmlDocument.defineAnnotatedMethods": 1, - "XmlDocument.class": 1, - "//RubyModule": 1, - "htmlDoc": 1, - "html.defineOrGetClassUnder": 1, - "HTML_DOCUMENT_ALLOCATOR": 2, - "htmlDocument.defineAnnotatedMethods": 1, - "HtmlDocument.class": 1, - "xmlSaxParserContext": 5, - "xmlSaxModule.defineClassUnder": 2, - "XML_SAXPARSER_CONTEXT_ALLOCATOR": 2, - "xmlSaxParserContext.defineAnnotatedMethods": 1, - "XmlSaxParserContext.class": 1, - "xmlSaxPushParser": 1, - "XML_SAXPUSHPARSER_ALLOCATOR": 2, - "xmlSaxPushParser.defineAnnotatedMethods": 1, - "XmlSaxPushParser.class": 1, - "htmlSaxParserContext": 4, - "htmlSaxModule.defineClassUnder": 1, - "HTML_SAXPARSER_CONTEXT_ALLOCATOR": 2, - "htmlSaxParserContext.defineAnnotatedMethods": 1, - "HtmlSaxParserContext.class": 1, - "stylesheet": 1, - "xsltModule.defineClassUnder": 1, - "XSLT_STYLESHEET_ALLOCATOR": 2, - "stylesheet.defineAnnotatedMethods": 1, - "XsltStylesheet.class": 2, - "xsltModule.defineAnnotatedMethod": 1, - "ObjectAllocator": 60, - "allocate": 30, - "EncodingHandler": 1, - "clone": 47, - "htmlDocument.clone": 1, - "clone.setMetaClass": 23, - "CloneNotSupportedException": 23, - "HtmlSaxParserContext": 5, - "htmlSaxParserContext.clone": 1, - "HtmlElementDescription": 1, - "HtmlEntityLookup": 1, - "XmlAttr": 5, - "xmlAttr": 3, - "xmlAttr.clone": 1, - "XmlCdata": 5, - "xmlCdata": 3, - "xmlCdata.clone": 1, - "XmlComment": 5, - "xmlComment": 3, - "xmlComment.clone": 1, - "xmlDocument.clone": 1, - "XmlDocumentFragment": 5, - "xmlDocumentFragment": 3, - "xmlDocumentFragment.clone": 1, - "XmlDtd": 5, - "xmlDtd": 3, - "xmlDtd.clone": 1, - "XmlElement": 5, - "xmlElement": 3, - "xmlElement.clone": 1, - "XmlElementDecl": 5, - "xmlElementDecl": 3, - "xmlElementDecl.clone": 1, - "XmlEntityReference": 5, - "xmlEntityRef": 3, - "xmlEntityRef.clone": 1, - "XmlNamespace": 5, - "xmlNamespace": 3, - "xmlNamespace.clone": 1, - "XmlNode": 5, - "xmlNode.clone": 1, - "XmlNodeSet": 5, - "xmlNodeSet": 5, - "xmlNodeSet.clone": 1, - "xmlNodeSet.setNodes": 1, - "RubyArray.newEmptyArray": 1, - "XmlProcessingInstruction": 5, - "xmlProcessingInstruction": 3, - "xmlProcessingInstruction.clone": 1, - "XmlReader": 5, - "xmlReader": 5, - "xmlReader.clone": 1, - "XmlAttributeDecl": 1, - "XmlEntityDecl": 1, - "runtime.newNotImplementedError": 1, - "XmlRelaxng": 5, - "xmlRelaxng": 3, - "xmlRelaxng.clone": 1, - "XmlSaxParserContext": 5, - "xmlSaxParserContext.clone": 1, - "XmlSaxPushParser": 1, - "XmlSchema": 5, - "xmlSchema": 3, - "xmlSchema.clone": 1, - "XmlSyntaxError": 5, - "xmlSyntaxError.clone": 1, - "XmlText": 6, - "xmlText": 3, - "xmlText.clone": 1, - "XmlXpathContext": 5, - "xmlXpathContext": 3, - "xmlXpathContext.clone": 1, - "XsltStylesheet": 4, - "xsltStylesheet": 3, - "xsltStylesheet.clone": 1, - "persons": 1, - "ProtocolBuffer": 2, - "registerAllExtensions": 1, - "com.google.protobuf.ExtensionRegistry": 2, - "registry": 1, - "interface": 1, - "PersonOrBuilder": 2, - "com.google.protobuf.MessageOrBuilder": 1, - "hasName": 5, - "java.lang.String": 15, - "getName": 3, - "com.google.protobuf.ByteString": 13, - "getNameBytes": 5, - "Person": 10, - "com.google.protobuf.GeneratedMessage": 1, - "com.google.protobuf.GeneratedMessage.Builder": 2, - "": 1, - "builder": 4, - "this.unknownFields": 4, - "builder.getUnknownFields": 1, - "noInit": 1, - "com.google.protobuf.UnknownFieldSet.getDefaultInstance": 1, - "defaultInstance": 4, - "getDefaultInstance": 2, - "getDefaultInstanceForType": 2, - "com.google.protobuf.UnknownFieldSet": 2, - "unknownFields": 3, - "@java.lang.Override": 4, - "getUnknownFields": 3, - "com.google.protobuf.CodedInputStream": 5, - "input": 18, - "com.google.protobuf.ExtensionRegistryLite": 8, - "extensionRegistry": 16, - "com.google.protobuf.InvalidProtocolBufferException": 9, - "initFields": 2, - "mutable_bitField0_": 1, - "com.google.protobuf.UnknownFieldSet.Builder": 1, - "com.google.protobuf.UnknownFieldSet.newBuilder": 1, - "done": 4, - "tag": 3, - "input.readTag": 1, - "parseUnknownField": 1, - "bitField0_": 15, - "|": 5, - "name_": 18, - "input.readBytes": 1, - "e.setUnfinishedMessage": 1, - "e.getMessage": 1, - ".setUnfinishedMessage": 1, - "finally": 2, - "unknownFields.build": 1, - "makeExtensionsImmutable": 1, - "com.google.protobuf.Descriptors.Descriptor": 4, - "persons.ProtocolBuffer.internal_static_persons_Person_descriptor": 3, - "com.google.protobuf.GeneratedMessage.FieldAccessorTable": 4, - "internalGetFieldAccessorTable": 2, - "persons.ProtocolBuffer.internal_static_persons_Person_fieldAccessorTable": 2, - ".ensureFieldAccessorsInitialized": 2, - "persons.ProtocolBuffer.Person.class": 2, - "persons.ProtocolBuffer.Person.Builder.class": 2, - "com.google.protobuf.Parser": 2, - "": 3, - "PARSER": 2, - "com.google.protobuf.AbstractParser": 1, - "parsePartialFrom": 1, - "getParserForType": 1, - "NAME_FIELD_NUMBER": 1, - "java.lang.Object": 7, - "&": 7, - "ref": 16, - "bs": 1, - "bs.toStringUtf8": 1, - "bs.isValidUtf8": 1, - "com.google.protobuf.ByteString.copyFromUtf8": 2, - "byte": 4, - "memoizedIsInitialized": 4, - "isInitialized": 5, - "writeTo": 1, - "com.google.protobuf.CodedOutputStream": 2, - "output": 2, - "getSerializedSize": 2, - "output.writeBytes": 1, - ".writeTo": 1, - "memoizedSerializedSize": 3, - ".computeBytesSize": 1, - ".getSerializedSize": 1, - "serialVersionUID": 1, - "L": 1, - "writeReplace": 1, - "java.io.ObjectStreamException": 1, - "super.writeReplace": 1, - "persons.ProtocolBuffer.Person": 22, - "parseFrom": 8, - "data": 8, - "PARSER.parseFrom": 8, - "java.io.InputStream": 4, - "parseDelimitedFrom": 2, - "PARSER.parseDelimitedFrom": 2, - "Builder": 20, - "newBuilder": 5, - "Builder.create": 1, - "newBuilderForType": 2, - "prototype": 2, - ".mergeFrom": 2, - "toBuilder": 1, - "com.google.protobuf.GeneratedMessage.BuilderParent": 2, - "parent": 4, - "": 1, - "persons.ProtocolBuffer.PersonOrBuilder": 1, - "maybeForceBuilderInitialization": 3, - "com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders": 1, - "create": 2, - "clear": 1, - "super.clear": 1, - "buildPartial": 3, - "getDescriptorForType": 1, - "persons.ProtocolBuffer.Person.getDefaultInstance": 2, - "build": 1, - "result": 5, - "result.isInitialized": 1, - "newUninitializedMessageException": 1, - "from_bitField0_": 2, - "to_bitField0_": 3, - "result.name_": 1, - "result.bitField0_": 1, - "onBuilt": 1, - "mergeFrom": 5, - "com.google.protobuf.Message": 1, - "other": 6, - "super.mergeFrom": 1, - "other.hasName": 1, - "other.name_": 1, - "onChanged": 4, - "this.mergeUnknownFields": 1, - "other.getUnknownFields": 1, - "parsedMessage": 5, - "PARSER.parsePartialFrom": 1, - "e.getUnfinishedMessage": 1, - ".toStringUtf8": 1, - "setName": 1, - "clearName": 1, - ".getName": 1, - "setNameBytes": 1, - "defaultInstance.initFields": 1, - "internal_static_persons_Person_descriptor": 3, - "internal_static_persons_Person_fieldAccessorTable": 2, - "com.google.protobuf.Descriptors.FileDescriptor": 5, - "descriptor": 3, - "descriptorData": 2, - "com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner": 2, - "assigner": 2, - "assignDescriptors": 1, - ".getMessageTypes": 1, - ".get": 1, - ".internalBuildGeneratedFileFrom": 1 - }, - "JavaScript": { - "function": 1210, - "(": 8513, - ")": 8521, - "{": 2736, - ";": 4052, - "//": 410, - "jshint": 1, - "_": 9, - "var": 910, - "Modal": 2, - "content": 5, - "options": 56, - "this.options": 6, - "this.": 2, - "element": 19, - ".delegate": 2, - ".proxy": 1, - "this.hide": 1, - "this": 577, - "}": 2712, - "Modal.prototype": 1, - "constructor": 8, - "toggle": 10, - "return": 944, - "[": 1459, - "this.isShown": 3, - "]": 1456, - "show": 10, - "that": 33, - "e": 663, - ".Event": 1, - "element.trigger": 1, - "if": 1230, - "||": 648, - "e.isDefaultPrevented": 2, - ".addClass": 1, - "true": 147, - "escape.call": 1, - "backdrop.call": 1, - "transition": 1, - ".support.transition": 1, - "&&": 1017, - "that.": 3, - "element.hasClass": 1, - "element.parent": 1, - ".length": 24, - "element.appendTo": 1, - "document.body": 8, - "//don": 1, - "in": 170, - "shown": 2, - "hide": 8, - "body": 22, - "modal": 4, - "-": 705, - "open": 2, - "fade": 4, - "hidden": 12, - "
": 4, - "class=": 5, - "static": 2, - "keyup.dismiss.modal": 2, - "object": 59, - "string": 41, - "click.modal.data": 1, - "api": 1, - "data": 145, - "target": 44, - "href": 9, - ".extend": 1, - "target.data": 1, - "this.data": 5, - "e.preventDefault": 1, - "target.modal": 1, - "option": 12, - "window.jQuery": 7, - "Animal": 12, - "Horse": 12, - "Snake": 12, - "sam": 4, - "tom": 4, - "__hasProp": 2, - "Object.prototype.hasOwnProperty": 6, - "__extends": 6, - "child": 17, - "parent": 15, - "for": 262, - "key": 85, - "__hasProp.call": 2, - "ctor": 6, - "this.constructor": 5, - "ctor.prototype": 3, - "parent.prototype": 6, - "child.prototype": 4, - "new": 86, - "child.__super__": 3, - "name": 161, - "this.name": 7, - "Animal.prototype.move": 2, - "meters": 4, - "alert": 11, - "+": 1135, - "Snake.__super__.constructor.apply": 2, - "arguments": 83, - "Snake.prototype.move": 2, - "Snake.__super__.move.call": 2, - "Horse.__super__.constructor.apply": 2, - "Horse.prototype.move": 2, - "Horse.__super__.move.call": 2, - "sam.move": 2, - "tom.move": 2, - ".call": 10, - ".hasOwnProperty": 2, - "Animal.name": 1, - "_super": 4, - "Snake.name": 1, - "Horse.name": 1, - "console.log": 3, - "util": 1, - "require": 9, - "net": 1, - "stream": 1, - "url": 23, - "EventEmitter": 3, - ".EventEmitter": 1, - "FreeList": 2, - ".FreeList": 1, - "HTTPParser": 2, - "process.binding": 1, - ".HTTPParser": 1, - "assert": 8, - ".ok": 1, - "END_OF_FILE": 3, - "debug": 15, - "process.env.NODE_DEBUG": 2, - "/http/.test": 1, - "x": 33, - "console.error": 3, - "else": 307, - "parserOnHeaders": 2, - "headers": 41, - "this.maxHeaderPairs": 2, - "<": 209, - "this._headers.length": 1, - "this._headers": 13, - "this._headers.concat": 1, - "this._url": 1, - "parserOnHeadersComplete": 2, - "info": 2, - "parser": 27, - "info.headers": 1, - "info.url": 1, - "parser._headers": 6, - "parser._url": 4, - "parser.incoming": 9, - "IncomingMessage": 4, - "parser.socket": 4, - "parser.incoming.httpVersionMajor": 1, - "info.versionMajor": 2, - "parser.incoming.httpVersionMinor": 1, - "info.versionMinor": 2, - "parser.incoming.httpVersion": 1, - "parser.incoming.url": 1, - "n": 874, - "headers.length": 2, - "parser.maxHeaderPairs": 4, - "Math.min": 5, - "i": 853, - "k": 302, - "v": 135, - "parser.incoming._addHeaderLine": 2, - "info.method": 2, - "parser.incoming.method": 1, - "parser.incoming.statusCode": 2, - "info.statusCode": 1, - "parser.incoming.upgrade": 4, - "info.upgrade": 2, - "skipBody": 3, - "false": 142, - "response": 3, - "to": 92, - "HEAD": 3, - "or": 38, - "CONNECT": 1, - "parser.onIncoming": 3, - "info.shouldKeepAlive": 1, - "parserOnBody": 2, - "b": 961, - "start": 20, - "len": 11, - "slice": 10, - "b.slice": 1, - "parser.incoming._paused": 2, - "parser.incoming._pendings.length": 2, - "parser.incoming._pendings.push": 2, - "parser.incoming._emitData": 1, - "parserOnMessageComplete": 2, - "parser.incoming.complete": 2, - "parser.incoming.readable": 1, - "parser.incoming._emitEnd": 1, - "parser.socket.readable": 1, - "parser.socket.resume": 1, - "parsers": 2, - "HTTPParser.REQUEST": 2, - "parser.onHeaders": 1, - "parser.onHeadersComplete": 1, - "parser.onBody": 1, - "parser.onMessageComplete": 1, - "exports.parsers": 1, - "CRLF": 13, - "STATUS_CODES": 2, - "exports.STATUS_CODES": 1, - "RFC": 16, - "obsoleted": 1, - "by": 12, - "connectionExpression": 1, - "/Connection/i": 1, - "transferEncodingExpression": 1, - "/Transfer": 1, - "Encoding/i": 1, - "closeExpression": 1, - "/close/i": 1, - "chunkExpression": 1, - "/chunk/i": 1, - "contentLengthExpression": 1, - "/Content": 1, - "Length/i": 1, - "dateExpression": 1, - "/Date/i": 1, - "expectExpression": 1, - "/Expect/i": 1, - "continueExpression": 1, - "/100": 2, - "continue/i": 1, - "dateCache": 5, - "utcDate": 2, - "d": 771, - "Date": 4, - "d.toUTCString": 1, - "setTimeout": 19, - "undefined": 328, - "d.getMilliseconds": 1, - "socket": 26, - "stream.Stream.call": 2, - "this.socket": 10, - "this.connection": 8, - "this.httpVersion": 1, - "null": 427, - "this.complete": 2, - "this.headers": 2, - "this.trailers": 2, - "this.readable": 1, - "this._paused": 3, - "this._pendings": 1, - "this._endEmitted": 3, - "this.url": 1, - "this.method": 2, - "this.statusCode": 3, - "this.client": 1, - "util.inherits": 7, - "stream.Stream": 2, - "exports.IncomingMessage": 1, - "IncomingMessage.prototype.destroy": 1, - "error": 20, - "this.socket.destroy": 3, - "IncomingMessage.prototype.setEncoding": 1, - "encoding": 26, - "StringDecoder": 2, - ".StringDecoder": 1, - "lazy": 1, - "load": 5, - "this._decoder": 2, - "IncomingMessage.prototype.pause": 1, - "this.socket.pause": 1, - "IncomingMessage.prototype.resume": 1, - "this.socket.resume": 1, - "this._emitPending": 1, - "IncomingMessage.prototype._emitPending": 1, - "callback": 23, - "this._pendings.length": 1, - "self": 17, - "process.nextTick": 1, - "while": 53, - "self._paused": 1, - "self._pendings.length": 2, - "chunk": 14, - "self._pendings.shift": 1, - "Buffer.isBuffer": 2, - "self._emitData": 1, - "self.readable": 1, - "self._emitEnd": 1, - "IncomingMessage.prototype._emitData": 1, - "this._decoder.write": 1, - "string.length": 1, - "this.emit": 5, - "IncomingMessage.prototype._emitEnd": 1, - "IncomingMessage.prototype._addHeaderLine": 1, - "field": 36, - "value": 98, - "dest": 12, - "field.toLowerCase": 1, - "switch": 30, - "case": 136, - ".push": 3, - "break": 111, - "default": 21, - "field.slice": 1, - "OutgoingMessage": 5, - "this.output": 3, - "this.outputEncodings": 2, - "this.writable": 1, - "this._last": 3, - "this.chunkedEncoding": 6, - "this.shouldKeepAlive": 4, - "this.useChunkedEncodingByDefault": 4, - "this.sendDate": 3, - "this._hasBody": 6, - "this._trailer": 5, - "this.finished": 4, - "exports.OutgoingMessage": 1, - "OutgoingMessage.prototype.destroy": 1, - "OutgoingMessage.prototype._send": 1, - "this._headerSent": 5, - "typeof": 132, - "this._header": 10, - "this.output.unshift": 1, - "this.outputEncodings.unshift": 1, - "this._writeRaw": 2, - "OutgoingMessage.prototype._writeRaw": 1, - "data.length": 3, - "this.connection._httpMessage": 3, - "this.connection.writable": 3, - "this.output.length": 5, - "this._buffer": 2, - "c": 775, - "this.output.shift": 2, - "this.outputEncodings.shift": 2, - "this.connection.write": 4, - "OutgoingMessage.prototype._buffer": 1, - "length": 48, - "this.output.push": 2, - "this.outputEncodings.push": 2, - "lastEncoding": 2, - "lastData": 2, - "data.constructor": 1, - "lastData.constructor": 1, - "OutgoingMessage.prototype._storeHeader": 1, - "firstLine": 2, - "sentConnectionHeader": 3, - "sentContentLengthHeader": 4, - "sentTransferEncodingHeader": 3, - "sentDateHeader": 3, - "sentExpect": 3, - "messageHeader": 7, - "store": 3, - "connectionExpression.test": 1, - "closeExpression.test": 1, - "self._last": 4, - "self.shouldKeepAlive": 4, - "transferEncodingExpression.test": 1, - "chunkExpression.test": 1, - "self.chunkedEncoding": 1, - "contentLengthExpression.test": 1, - "dateExpression.test": 1, - "expectExpression.test": 1, - "keys": 11, - "Object.keys": 5, - "isArray": 10, - "Array.isArray": 7, - "l": 312, - "keys.length": 5, - "j": 265, - "value.length": 1, - "shouldSendKeepAlive": 2, - "this.agent": 2, - "this._send": 8, - "OutgoingMessage.prototype.setHeader": 1, - "arguments.length": 18, - "throw": 27, - "Error": 16, - "name.toLowerCase": 6, - "this._headerNames": 5, - "OutgoingMessage.prototype.getHeader": 1, - "OutgoingMessage.prototype.removeHeader": 1, - "delete": 39, - "OutgoingMessage.prototype._renderHeaders": 1, - "OutgoingMessage.prototype.write": 1, - "this._implicitHeader": 2, - "TypeError": 2, - "chunk.length": 2, - "ret": 62, - "Buffer.byteLength": 2, - "len.toString": 2, - "OutgoingMessage.prototype.addTrailers": 1, - "OutgoingMessage.prototype.end": 1, - "hot": 3, - ".toString": 3, - "this.write": 1, - "Last": 2, - "chunk.": 1, - "this._finish": 2, - "OutgoingMessage.prototype._finish": 1, - "instanceof": 19, - "ServerResponse": 5, - "DTRACE_HTTP_SERVER_RESPONSE": 1, - "ClientRequest": 6, - "DTRACE_HTTP_CLIENT_REQUEST": 1, - "OutgoingMessage.prototype._flush": 1, - "this.socket.writable": 2, - "XXX": 1, - "Necessary": 1, - "this.socket.write": 1, - "req": 32, - "OutgoingMessage.call": 2, - "req.method": 5, - "req.httpVersionMajor": 2, - "req.httpVersionMinor": 2, - "exports.ServerResponse": 1, - "ServerResponse.prototype.statusCode": 1, - "onServerResponseClose": 3, - "this._httpMessage.emit": 2, - "ServerResponse.prototype.assignSocket": 1, - "socket._httpMessage": 9, - "socket.on": 2, - "this._flush": 1, - "ServerResponse.prototype.detachSocket": 1, - "socket.removeListener": 5, - "ServerResponse.prototype.writeContinue": 1, - "this._sent100": 2, - "ServerResponse.prototype._implicitHeader": 1, - "this.writeHead": 1, - "ServerResponse.prototype.writeHead": 1, - "statusCode": 7, - "reasonPhrase": 4, - "headerIndex": 4, - "obj": 40, - "this._renderHeaders": 3, - "obj.length": 1, - "obj.push": 1, - "statusLine": 2, - "statusCode.toString": 1, - "this._expect_continue": 1, - "this._storeHeader": 2, - "ServerResponse.prototype.writeHeader": 1, - "this.writeHead.apply": 1, - "Agent": 5, - "self.options": 2, - "self.requests": 6, - "self.sockets": 3, - "self.maxSockets": 1, - "self.options.maxSockets": 1, - "Agent.defaultMaxSockets": 2, - "self.on": 1, - "host": 29, - "port": 29, - "localAddress": 15, - ".shift": 1, - ".onSocket": 1, - "socket.destroy": 10, - "self.createConnection": 2, - "net.createConnection": 3, - "exports.Agent": 1, - "Agent.prototype.defaultPort": 1, - "Agent.prototype.addRequest": 1, - "this.sockets": 9, - "this.maxSockets": 1, - "req.onSocket": 1, - "this.createSocket": 2, - "this.requests": 5, - "Agent.prototype.createSocket": 1, - "util._extend": 1, - "options.port": 4, - "options.host": 4, - "options.localAddress": 3, - "s": 290, - "onFree": 3, - "self.emit": 9, - "s.on": 4, - "onClose": 3, - "err": 5, - "self.removeSocket": 2, - "onRemove": 3, - "s.removeListener": 3, - "Agent.prototype.removeSocket": 1, - "index": 5, - ".indexOf": 2, - ".splice": 5, - ".emit": 1, - "globalAgent": 3, - "exports.globalAgent": 1, - "cb": 16, - "self.agent": 3, - "options.agent": 3, - "defaultPort": 3, - "options.defaultPort": 1, - "options.hostname": 1, - "options.setHost": 1, - "setHost": 2, - "self.socketPath": 4, - "options.socketPath": 1, - "method": 30, - "self.method": 3, - "options.method": 2, - ".toUpperCase": 3, - "self.path": 3, - "options.path": 2, - "self.once": 2, - "options.headers": 7, - "self.setHeader": 1, - "this.getHeader": 2, - "hostHeader": 3, - "this.setHeader": 2, - "options.auth": 2, - "//basic": 1, - "auth": 1, - "Buffer": 1, - "self.useChunkedEncodingByDefault": 2, - "self._storeHeader": 2, - "self.getHeader": 1, - "self._renderHeaders": 1, - "options.createConnection": 4, - "self.onSocket": 3, - "self.agent.addRequest": 1, - "conn": 3, - "self._deferToConnect": 1, - "self._flush": 1, - "exports.ClientRequest": 1, - "ClientRequest.prototype._implicitHeader": 1, - "this.path": 1, - "ClientRequest.prototype.abort": 1, - "this._deferToConnect": 3, - "createHangUpError": 3, - "error.code": 1, - "freeParser": 9, - "parser.socket.onend": 1, - "parser.socket.ondata": 1, - "parser.socket.parser": 1, - "parsers.free": 1, - "req.parser": 1, - "socketCloseListener": 2, - "socket.parser": 3, - "req.emit": 8, - "req.res": 8, - "req.res.readable": 1, - "req.res.emit": 1, - "res": 14, - "req.res._emitPending": 1, - "res._emitEnd": 1, - "res.emit": 1, - "req._hadError": 3, - "parser.finish": 6, - "socketErrorListener": 2, - "err.message": 1, - "err.stack": 1, - "socketOnEnd": 1, - "this._httpMessage": 3, - "this.parser": 2, - "socketOnData": 1, - "end": 14, - "parser.execute": 2, - "bytesParsed": 4, - "socket.ondata": 3, - "socket.onend": 3, - "bodyHead": 4, - "d.slice": 2, - "eventName": 21, - "req.listeners": 1, - "req.upgradeOrConnect": 1, - "socket.emit": 1, - "parserOnIncomingClient": 1, - "shouldKeepAlive": 4, - "res.upgrade": 1, - "skip": 5, - "isHeadResponse": 2, - "res.statusCode": 1, - "Clear": 1, - "so": 8, - "we": 25, - "don": 5, - "continue": 18, - "ve": 3, - "been": 5, - "upgraded": 1, - "via": 2, - "WebSockets": 1, - "also": 5, - "shouldn": 2, - "AGENT": 2, - "socket.destroySoon": 2, - "keep": 1, - "alive": 1, - "close": 2, - "free": 1, - "number": 13, - "an": 12, - "important": 1, - "promisy": 1, - "thing": 2, - "all": 16, - "the": 107, - "onSocket": 3, - "self.socket.writable": 1, - "self.socket": 5, - ".apply": 7, - "arguments_": 2, - "self.socket.once": 1, - "ClientRequest.prototype.setTimeout": 1, - "msecs": 4, - "this.once": 2, - "emitTimeout": 4, - "this.socket.setTimeout": 1, - "this.socket.once": 1, - "this.setTimeout": 3, - "sock": 1, - "ClientRequest.prototype.setNoDelay": 1, - "ClientRequest.prototype.setSocketKeepAlive": 1, - "ClientRequest.prototype.clearTimeout": 1, - "exports.request": 2, - "url.parse": 1, - "options.protocol": 3, - "exports.get": 1, - "req.end": 1, - "ondrain": 3, - "httpSocketSetup": 2, - "Server": 6, - "requestListener": 6, - "net.Server.call": 1, - "allowHalfOpen": 1, - "this.addListener": 2, - "this.httpAllowHalfOpen": 1, - "connectionListener": 3, - "net.Server": 1, - "exports.Server": 1, - "exports.createServer": 1, - "outgoing": 2, - "incoming": 2, - "abortIncoming": 3, - "incoming.length": 2, - "incoming.shift": 2, - "serverSocketCloseListener": 3, - "socket.setTimeout": 1, - "*": 70, - "minute": 1, - "timeout": 2, - "socket.once": 1, - "parsers.alloc": 1, - "parser.reinitialize": 1, - "this.maxHeadersCount": 2, - "<<": 4, - "socket.addListener": 2, - "self.listeners": 2, - "req.socket": 1, - "self.httpAllowHalfOpen": 1, - "socket.writable": 2, - "socket.end": 2, - "outgoing.length": 2, - "._last": 1, - "socket._httpMessage._last": 1, - "incoming.push": 1, - "res.shouldKeepAlive": 1, - "DTRACE_HTTP_SERVER_REQUEST": 1, - "outgoing.push": 1, - "res.assignSocket": 1, - "res.on": 1, - "res.detachSocket": 1, - "res._last": 1, - "m": 76, - "outgoing.shift": 1, - "m.assignSocket": 1, - "req.headers": 2, - "continueExpression.test": 1, - "res._expect_continue": 1, - "res.writeContinue": 1, - "Not": 4, - "a": 1489, - "response.": 1, - "even": 3, - "exports._connectionListener": 1, - "Client": 6, - "this.host": 1, - "this.port": 1, - "maxSockets": 1, - "Client.prototype.request": 1, - "path": 5, - "self.host": 1, - "self.port": 1, - "c.on": 2, - "exports.Client": 1, - "module.deprecate": 2, - "exports.createClient": 1, - "cubes": 4, - "list": 21, - "math": 4, - "num": 23, - "opposite": 6, - "race": 4, - "square": 10, - "__slice": 2, - "Array.prototype.slice": 6, - "root": 5, - "Math.sqrt": 2, - "cube": 2, - "runners": 6, - "winner": 6, - "__slice.call": 2, - "print": 2, - "elvis": 4, - "_i": 10, - "_len": 6, - "_results": 6, - "list.length": 5, - "_results.push": 2, - "math.cube": 2, - ".slice": 6, - "A": 24, - "w": 110, - "ma": 3, - "c.isReady": 4, - "try": 44, - "s.documentElement.doScroll": 2, - "catch": 38, - "c.ready": 7, - "Qa": 1, - "b.src": 4, - "c.ajax": 1, - "async": 5, - "dataType": 6, - "c.globalEval": 1, - "b.text": 3, - "b.textContent": 2, - "b.innerHTML": 3, - "b.parentNode": 4, - "b.parentNode.removeChild": 2, - "X": 6, - "f": 666, - "a.length": 23, - "o": 322, - "c.isFunction": 9, - "d.call": 3, - "J": 5, - ".getTime": 3, - "Y": 3, - "Z": 6, - "na": 1, - ".type": 2, - "c.event.handle.apply": 1, - "oa": 1, - "r": 261, - "c.data": 12, - "a.liveFired": 4, - "i.live": 1, - "a.button": 2, - "a.type": 14, - "u": 304, - "i.live.slice": 1, - "u.length": 3, - "i.origType.replace": 1, - "O": 6, - "f.push": 5, - "i.selector": 3, - "u.splice": 1, - "a.target": 5, - ".closest": 4, - "a.currentTarget": 4, - "j.length": 2, - ".selector": 1, - ".elem": 1, - "i.preType": 2, - "a.relatedTarget": 2, - "d.push": 1, - "elem": 101, - "handleObj": 2, - "d.length": 8, - "j.elem": 2, - "a.data": 2, - "j.handleObj.data": 1, - "a.handleObj": 2, - "j.handleObj": 1, - "j.handleObj.origHandler.apply": 1, - "pa": 1, - "b.replace": 3, - "/": 290, - "./g": 2, - ".replace": 38, - "/g": 37, - "qa": 1, - "a.parentNode": 6, - "a.parentNode.nodeType": 2, - "ra": 1, - "b.each": 1, - "this.nodeName": 4, - ".nodeName": 2, - "f.events": 1, - "e.handle": 2, - "e.events": 2, - "c.event.add": 1, - ".data": 3, - "sa": 2, - ".ownerDocument": 5, - "ta.test": 1, - "c.support.checkClone": 2, - "ua.test": 1, - "c.fragments": 2, - "b.createDocumentFragment": 1, - "c.clean": 1, - "fragment": 27, - "cacheable": 2, - "K": 4, - "c.each": 2, - "va.concat.apply": 1, - "va.slice": 1, - "wa": 1, - "a.document": 3, - "a.nodeType": 27, - "a.defaultView": 2, - "a.parentWindow": 2, - "c.fn.init": 1, - "Ra": 2, - "A.jQuery": 3, - "Sa": 2, - "A.": 3, - "A.document": 1, - "T": 4, - "Ta": 1, - "<[\\w\\W]+>": 4, - "|": 206, - "#": 13, - "Ua": 1, - ".": 91, - "Va": 1, - "S/": 4, - "Wa": 2, - "u00A0": 2, - "Xa": 1, - "<(\\w+)\\s*\\/?>": 4, - "<\\/\\1>": 4, - "P": 4, - "navigator.userAgent": 3, - "xa": 3, - "Q": 6, - "L": 10, - "Object.prototype.toString": 7, - "aa": 1, - "ba": 3, - "Array.prototype.push": 4, - "R": 2, - "ya": 2, - "Array.prototype.indexOf": 4, - "c.fn": 2, - "c.prototype": 1, - "init": 7, - "this.context": 17, - "this.length": 40, - "s.body": 2, - "this.selector": 16, - "Ta.exec": 1, - "b.ownerDocument": 6, - "Xa.exec": 1, - "c.isPlainObject": 3, - "s.createElement": 10, - "c.fn.attr.call": 1, - "f.createElement": 1, - "a.cacheable": 1, - "a.fragment.cloneNode": 1, - "a.fragment": 1, - ".childNodes": 2, - "c.merge": 4, - "s.getElementById": 1, - "b.id": 1, - "T.find": 1, - "/.test": 19, - "s.getElementsByTagName": 2, - "b.jquery": 1, - ".find": 5, - "T.ready": 1, - "a.selector": 4, - "a.context": 2, - "c.makeArray": 3, - "selector": 40, - "jquery": 3, - "size": 6, - "toArray": 2, - "R.call": 2, - "get": 24, - "this.toArray": 3, - "this.slice": 5, - "pushStack": 4, - "c.isArray": 5, - "ba.apply": 1, - "f.prevObject": 1, - "f.context": 1, - "f.selector": 2, - "each": 17, - "ready": 31, - "c.bindReady": 1, - "a.call": 17, - "Q.push": 1, - "eq": 2, - "first": 10, - "this.eq": 4, - "last": 6, - "this.pushStack": 12, - "R.apply": 1, - ".join": 14, - "map": 7, - "c.map": 1, - "this.prevObject": 3, - "push": 11, - "sort": 4, - ".sort": 9, - "splice": 5, - "c.fn.init.prototype": 1, - "c.extend": 7, - "c.fn.extend": 4, - "noConflict": 4, - "isReady": 5, - "c.fn.triggerHandler": 1, - ".triggerHandler": 1, - "bindReady": 5, - "s.readyState": 2, - "s.addEventListener": 3, - "A.addEventListener": 1, - "s.attachEvent": 3, - "A.attachEvent": 1, - "A.frameElement": 1, - "isFunction": 12, - "isPlainObject": 4, - "a.setInterval": 2, - "a.constructor": 2, - "aa.call": 3, - "a.constructor.prototype": 2, - "isEmptyObject": 7, - "parseJSON": 4, - "c.trim": 3, - "a.replace": 7, - "@": 1, - "d*": 8, - "eE": 4, - "s*": 15, - "A.JSON": 1, - "A.JSON.parse": 2, - "Function": 3, - "c.error": 2, - "noop": 3, - "globalEval": 2, - "Va.test": 1, - "s.documentElement": 2, - "d.type": 2, - "c.support.scriptEval": 2, - "d.appendChild": 3, - "s.createTextNode": 2, - "d.text": 1, - "b.insertBefore": 3, - "b.firstChild": 5, - "b.removeChild": 3, - "nodeName": 20, - "a.nodeName": 12, - "a.nodeName.toUpperCase": 2, - "b.toUpperCase": 3, - "b.apply": 2, - "b.call": 4, - "trim": 5, - "makeArray": 3, - "ba.call": 1, - "inArray": 5, - "b.indexOf": 2, - "b.length": 12, - "merge": 2, - "grep": 6, - "f.length": 5, - "f.concat.apply": 1, - "guid": 5, - "proxy": 4, - "a.apply": 2, - "b.guid": 2, - "a.guid": 7, - "c.guid": 1, - "uaMatch": 3, - "a.toLowerCase": 4, - "webkit": 6, - "w.": 17, - "/.exec": 4, - "opera": 4, - ".*version": 4, - "msie": 4, - "/compatible/.test": 1, - "mozilla": 4, - ".*": 20, - "rv": 4, - "browser": 11, - "version": 10, - "c.uaMatch": 1, - "P.browser": 2, - "c.browser": 1, - "c.browser.version": 1, - "P.version": 1, - "c.browser.webkit": 1, - "c.browser.safari": 1, - "c.inArray": 2, - "ya.call": 1, - "s.removeEventListener": 1, - "s.detachEvent": 1, - "c.support": 2, - "d.style.display": 5, - "d.innerHTML": 2, - "d.getElementsByTagName": 6, - "e.length": 9, - "leadingWhitespace": 3, - "d.firstChild.nodeType": 1, - "tbody": 7, - "htmlSerialize": 3, - "style": 30, - "/red/.test": 1, - "j.getAttribute": 2, - "hrefNormalized": 3, - "opacity": 13, - "j.style.opacity": 1, - "cssFloat": 4, - "j.style.cssFloat": 1, - "checkOn": 4, - ".value": 1, - "optSelected": 3, - ".appendChild": 1, - ".selected": 1, - "parentNode": 10, - "d.removeChild": 1, - ".parentNode": 7, - "deleteExpando": 3, - "checkClone": 1, - "scriptEval": 1, - "noCloneEvent": 3, - "boxModel": 1, - "b.type": 4, - "b.appendChild": 1, - "a.insertBefore": 2, - "a.firstChild": 6, - "b.test": 1, - "c.support.deleteExpando": 2, - "a.removeChild": 2, - "d.attachEvent": 2, - "d.fireEvent": 1, - "c.support.noCloneEvent": 1, - "d.detachEvent": 1, - "d.cloneNode": 1, - ".fireEvent": 3, - "s.createDocumentFragment": 1, - "a.appendChild": 3, - "d.firstChild": 2, - "a.cloneNode": 3, - ".cloneNode": 4, - ".lastChild.checked": 2, - "k.style.width": 1, - "k.style.paddingLeft": 1, - "s.body.appendChild": 1, - "c.boxModel": 1, - "c.support.boxModel": 1, - "k.offsetWidth": 1, - "s.body.removeChild": 1, - ".style.display": 5, - "n.setAttribute": 1, - "c.support.submitBubbles": 1, - "c.support.changeBubbles": 1, - "c.props": 2, - "readonly": 3, - "maxlength": 2, - "cellspacing": 2, - "rowspan": 2, - "colspan": 2, - "tabindex": 4, - "usemap": 2, - "frameborder": 2, - "G": 11, - "Ya": 2, - "za": 3, - "cache": 45, - "expando": 14, - "noData": 3, - "embed": 3, - "applet": 2, - "c.noData": 2, - "a.nodeName.toLowerCase": 3, - "c.cache": 2, - "removeData": 8, - "c.isEmptyObject": 1, - "c.removeData": 2, - "c.expando": 2, - "a.removeAttribute": 3, - "this.each": 42, - "a.split": 4, - "this.triggerHandler": 6, - "this.trigger": 2, - ".each": 3, - "queue": 7, - "dequeue": 6, - "c.queue": 3, - "d.shift": 2, - "d.unshift": 2, - "f.call": 1, - "c.dequeue": 4, - "delay": 4, - "c.fx": 1, - "c.fx.speeds": 1, - "this.queue": 4, - "clearQueue": 2, - "Aa": 3, - "t": 436, - "ca": 6, - "Za": 2, - "r/g": 2, - "/href": 1, - "src": 7, - "style/": 1, - "ab": 1, - "button": 24, - "input": 25, - "/i": 22, - "bb": 2, - "select": 20, - "textarea": 8, - "area": 2, - "Ba": 3, - "/radio": 1, - "checkbox/": 1, - "attr": 13, - "c.attr": 4, - "removeAttr": 5, - "this.nodeType": 4, - "this.removeAttribute": 1, - "addClass": 2, - "r.addClass": 1, - "r.attr": 1, - ".split": 19, - "e.nodeType": 7, - "e.className": 14, - "j.indexOf": 1, - "removeClass": 2, - "n.removeClass": 1, - "n.attr": 1, - "j.replace": 2, - "toggleClass": 2, - "j.toggleClass": 1, - "j.attr": 1, - "i.hasClass": 1, - "this.className": 10, - "hasClass": 2, - "": 1, - "className": 4, - "replace": 8, - "indexOf": 5, - "val": 13, - "c.nodeName": 4, - "b.attributes.value": 1, - ".specified": 1, - "b.value": 4, - "b.selectedIndex": 2, - "b.options": 1, - "": 1, - "i=": 31, - "selected": 5, - "a=": 23, - "test": 21, - "type": 49, - "support": 13, - "getAttribute": 3, - "on": 37, - "o=": 13, - "n=": 10, - "r=": 18, - "nodeType=": 6, - "call": 9, - "checked=": 1, - "this.selected": 1, - ".val": 5, - "this.selectedIndex": 1, - "this.value": 4, - "attrFn": 2, - "css": 7, - "html": 10, - "text": 14, - "width": 32, - "height": 25, - "offset": 21, - "c.attrFn": 1, - "c.isXMLDoc": 1, - "a.test": 2, - "ab.test": 1, - "a.getAttributeNode": 7, - ".nodeValue": 1, - "b.specified": 2, - "bb.test": 2, - "cb.test": 1, - "a.href": 2, - "c.support.style": 1, - "a.style.cssText": 3, - "a.setAttribute": 7, - "c.support.hrefNormalized": 1, - "a.getAttribute": 11, - "c.style": 1, - "db": 1, - "handle": 15, - "click": 11, - "events": 18, - "altKey": 4, - "attrChange": 4, - "attrName": 4, - "bubbles": 4, - "cancelable": 4, - "charCode": 7, - "clientX": 6, - "clientY": 5, - "ctrlKey": 6, - "currentTarget": 4, - "detail": 3, - "eventPhase": 4, - "fromElement": 6, - "handler": 14, - "keyCode": 6, - "layerX": 3, - "layerY": 3, - "metaKey": 5, - "newValue": 3, - "offsetX": 4, - "offsetY": 4, - "originalTarget": 1, - "pageX": 4, - "pageY": 4, - "prevValue": 3, - "relatedNode": 4, - "relatedTarget": 6, - "screenX": 4, - "screenY": 4, - "shiftKey": 4, - "srcElement": 5, - "toElement": 5, - "view": 4, - "wheelDelta": 3, - "which": 8, - "mouseover": 12, - "mouseout": 12, - "form": 12, - "click.specialSubmit": 2, - "submit": 14, - "image": 5, - "keypress.specialSubmit": 2, - "password": 5, - ".specialSubmit": 2, - "radio": 17, - "checkbox": 14, - "multiple": 7, - "_change_data": 6, - "focusout": 11, - "change": 16, - "file": 5, - ".specialChange": 4, - "focusin": 9, - "bind": 3, - "one": 15, - "unload": 5, - "live": 8, - "lastToggle": 4, - "die": 3, - "hover": 3, - "mouseenter": 9, - "mouseleave": 9, - "focus": 7, - "blur": 8, - "resize": 3, - "scroll": 6, - "dblclick": 3, - "mousedown": 3, - "mouseup": 3, - "mousemove": 3, - "keydown": 4, - "keypress": 4, - "keyup": 3, - "onunload": 1, - "g": 441, - "h": 499, - "q": 34, - "h.nodeType": 4, - "p": 110, - "y": 101, - "S": 8, - "H": 8, - "M": 9, - "I": 7, - "f.exec": 2, - "p.push": 2, - "p.length": 10, - "r.exec": 1, - "n.relative": 5, - "ga": 2, - "p.shift": 4, - "n.match.ID.test": 2, - "k.find": 6, - "v.expr": 4, - "k.filter": 5, - "v.set": 5, - "expr": 2, - "p.pop": 4, - "set": 22, - "z": 21, - "h.parentNode": 3, - "D": 9, - "k.error": 2, - "j.call": 2, - ".nodeType": 9, - "E": 11, - "l.push": 2, - "l.push.apply": 1, - "k.uniqueSort": 5, - "B": 5, - "g.sort": 1, - "g.length": 2, - "g.splice": 2, - "k.matches": 1, - "n.order.length": 1, - "n.order": 1, - "n.leftMatch": 1, - ".exec": 2, - "q.splice": 1, - "y.substr": 1, - "y.length": 1, - "Syntax": 3, - "unrecognized": 3, - "expression": 4, - "ID": 8, - "NAME": 2, - "TAG": 2, - "u00c0": 2, - "uFFFF": 2, - "leftMatch": 2, - "attrMap": 2, - "attrHandle": 2, - "g.getAttribute": 1, - "relative": 4, - "W/.test": 1, - "h.toLowerCase": 2, - "": 1, - "previousSibling": 5, - "nth": 5, - "odd": 2, - "not": 26, - "reset": 2, - "contains": 8, - "only": 10, - "id": 38, - "class": 5, - "Array": 3, - "sourceIndex": 1, - "div": 28, - "script": 7, - "": 4, - "name=": 2, - "href=": 2, - "": 2, - "

": 2, - "

": 2, - ".TEST": 2, - "
": 3, - "CLASS": 1, - "HTML": 9, - "find": 7, - "filter": 10, - "nextSibling": 3, - "iframe": 3, - "": 1, - "": 1, - "
": 1, - "
": 1, - "": 4, - "
": 5, - "": 3, - "": 3, - "": 2, - "": 2, - "": 1, - "": 1, - "": 1, - "": 1, - "before": 8, - "after": 7, - "position": 7, - "absolute": 2, - "top": 12, - "left": 14, - "margin": 8, - "border": 7, - "px": 31, - "solid": 2, - "#000": 2, - "padding": 4, - "": 1, - "": 1, - "fixed": 1, - "marginTop": 3, - "marginLeft": 2, - "using": 5, - "borderTopWidth": 1, - "borderLeftWidth": 1, - "Left": 1, - "Top": 1, - "pageXOffset": 2, - "pageYOffset": 1, - "Height": 1, - "Width": 1, - "inner": 2, - "outer": 2, - "scrollTo": 1, - "CSS1Compat": 1, - "client": 3, - "window": 16, - "document": 26, - "window.document": 2, - "navigator": 3, - "window.navigator": 2, - "location": 2, - "window.location": 5, - "jQuery": 48, - "context": 48, - "The": 9, - "is": 67, - "actually": 2, - "just": 2, - "jQuery.fn.init": 2, - "rootjQuery": 8, - "Map": 4, - "over": 7, - "of": 28, - "overwrite": 4, - "_jQuery": 4, - "window.": 6, - "central": 2, - "reference": 5, - "simple": 3, - "way": 2, - "check": 8, - "strings": 8, - "both": 2, - "optimize": 3, - "quickExpr": 2, - "Check": 10, - "has": 9, - "non": 8, - "whitespace": 7, - "character": 3, - "it": 112, - "rnotwhite": 2, - "Used": 3, - "trimming": 2, - "trimLeft": 4, - "trimRight": 4, - "digits": 3, - "rdigit": 1, - "d/": 3, - "Match": 3, - "standalone": 2, - "tag": 2, - "rsingleTag": 2, - "JSON": 5, - "RegExp": 12, - "rvalidchars": 2, - "rvalidescape": 2, - "rvalidbraces": 2, - "Useragent": 2, - "rwebkit": 2, - "ropera": 2, - "rmsie": 2, - "rmozilla": 2, - "Keep": 2, - "UserAgent": 2, - "use": 10, - "with": 18, - "jQuery.browser": 4, - "userAgent": 3, - "For": 5, - "matching": 3, - "engine": 2, - "and": 42, - "browserMatch": 3, - "deferred": 25, - "used": 13, - "DOM": 21, - "readyList": 6, - "event": 31, - "DOMContentLoaded": 14, - "Save": 2, - "some": 2, - "core": 2, - "methods": 8, - "toString": 4, - "hasOwn": 2, - "String.prototype.trim": 3, - "Class": 2, - "pairs": 2, - "class2type": 3, - "jQuery.fn": 4, - "jQuery.prototype": 2, - "match": 30, - "doc": 4, - "Handle": 14, - "DOMElement": 2, - "selector.nodeType": 2, - "exists": 9, - "once": 4, - "finding": 2, - "Are": 2, - "dealing": 2, - "selector.charAt": 4, - "selector.length": 4, - "Assume": 2, - "are": 18, - "regex": 3, - "quickExpr.exec": 2, - "Verify": 3, - "no": 19, - "was": 6, - "specified": 4, - "#id": 3, - "HANDLE": 2, - "array": 7, - "context.ownerDocument": 2, - "If": 21, - "single": 2, - "passed": 5, - "clean": 3, - "like": 5, - "method.": 3, - "jQuery.fn.init.prototype": 2, - "jQuery.extend": 11, - "jQuery.fn.extend": 4, - "copy": 16, - "copyIsArray": 2, - "clone": 5, - "deep": 12, - "situation": 2, - "boolean": 8, - "when": 20, - "something": 3, - "possible": 3, - "jQuery.isFunction": 6, - "extend": 13, - "itself": 4, - "argument": 2, - "Only": 5, - "deal": 2, - "null/undefined": 2, - "values": 10, - "Extend": 2, - "base": 2, - "Prevent": 2, - "never": 2, - "ending": 2, - "loop": 7, - "Recurse": 2, - "bring": 2, - "Return": 2, - "modified": 3, - "Is": 2, - "be": 12, - "Set": 4, - "occurs.": 2, - "counter": 2, - "track": 2, - "how": 2, - "many": 3, - "items": 2, - "wait": 12, - "fires.": 2, - "See": 9, - "#6781": 2, - "readyWait": 6, - "Hold": 2, - "release": 2, - "holdReady": 3, - "hold": 6, - "jQuery.readyWait": 6, - "jQuery.ready": 16, - "Either": 2, - "released": 2, - "DOMready/load": 2, - "yet": 2, - "jQuery.isReady": 6, - "Make": 17, - "sure": 18, - "at": 58, - "least": 4, - "IE": 28, - "gets": 6, - "little": 4, - "overzealous": 4, - "ticket": 4, - "#5443": 4, - "Remember": 2, - "normal": 2, - "Ready": 2, - "fired": 12, - "decrement": 2, - "need": 10, - "there": 6, - "functions": 6, - "bound": 8, - "execute": 4, - "readyList.resolveWith": 1, - "Trigger": 2, - "any": 12, - "jQuery.fn.trigger": 2, - ".trigger": 3, - ".unbind": 4, - "jQuery._Deferred": 3, - "Catch": 2, - "cases": 4, - "where": 2, - ".ready": 2, - "called": 2, - "already": 6, - "occurred.": 2, - "document.readyState": 4, - "asynchronously": 2, - "allow": 6, - "scripts": 2, - "opportunity": 2, - "Mozilla": 2, - "Opera": 2, - "nightlies": 3, - "currently": 4, - "document.addEventListener": 6, - "Use": 7, - "handy": 2, - "fallback": 4, - "window.onload": 4, - "will": 7, - "always": 6, - "work": 6, - "window.addEventListener": 2, - "model": 14, - "document.attachEvent": 6, - "ensure": 2, - "firing": 16, - "onload": 2, - "maybe": 2, - "late": 2, - "but": 4, - "safe": 3, - "iframes": 2, - "window.attachEvent": 2, - "frame": 23, - "continually": 2, - "see": 6, - "toplevel": 7, - "window.frameElement": 2, - "document.documentElement.doScroll": 4, - "doScrollCheck": 6, - "test/unit/core.js": 2, - "details": 3, - "concerning": 2, - "isFunction.": 2, - "Since": 3, - "aren": 5, - "pass": 7, - "through": 3, - "as": 11, - "well": 2, - "jQuery.type": 4, - "obj.nodeType": 2, - "jQuery.isWindow": 2, - "own": 4, - "property": 15, - "must": 4, - "Object": 4, - "obj.constructor": 2, - "hasOwn.call": 6, - "obj.constructor.prototype": 2, - "Own": 2, - "properties": 7, - "enumerated": 2, - "firstly": 2, - "speed": 4, - "up": 4, - "then": 8, - "own.": 2, - "msg": 4, - "leading/trailing": 2, - "removed": 3, - "can": 10, - "breaking": 1, - "spaces": 3, - "rnotwhite.test": 2, - "xA0": 7, - "document.removeEventListener": 2, - "document.detachEvent": 2, - "trick": 2, - "Diego": 2, - "Perini": 2, - "http": 6, - "//javascript.nwbox.com/IEContentLoaded/": 2, - "waiting": 2, - "Promise": 1, - "promiseMethods": 3, - "Static": 1, - "sliceDeferred": 1, - "Create": 1, - "callbacks": 10, - "_Deferred": 4, - "stored": 4, - "args": 31, - "avoid": 5, - "doing": 3, - "flag": 1, - "know": 3, - "cancelled": 5, - "done": 10, - "f1": 1, - "f2": 1, - "...": 1, - "_fired": 5, - "args.length": 3, - "deferred.done.apply": 2, - "callbacks.push": 1, - "deferred.resolveWith": 5, - "resolve": 7, - "given": 3, - "resolveWith": 4, - "make": 2, - "available": 1, - "#8421": 1, - "callbacks.shift": 1, - "finally": 3, - "Has": 1, - "resolved": 1, - "isResolved": 3, - "Cancel": 1, - "cancel": 6, - "Full": 1, - "fledged": 1, - "two": 1, - "Deferred": 5, - "func": 3, - "failDeferred": 1, - "promise": 14, - "Add": 4, - "errorDeferred": 1, - "doneCallbacks": 2, - "failCallbacks": 2, - "deferred.done": 2, - ".fail": 2, - ".fail.apply": 1, - "fail": 10, - "failDeferred.done": 1, - "rejectWith": 2, - "failDeferred.resolveWith": 1, - "reject": 4, - "failDeferred.resolve": 1, - "isRejected": 2, - "failDeferred.isResolved": 1, - "pipe": 2, - "fnDone": 2, - "fnFail": 2, - "jQuery.Deferred": 1, - "newDefer": 3, - "jQuery.each": 2, - "fn": 14, - "action": 3, - "returned": 4, - "fn.apply": 1, - "returned.promise": 2, - ".then": 3, - "newDefer.resolve": 1, - "newDefer.reject": 1, - ".promise": 5, - "Get": 4, - "provided": 1, - "aspect": 1, - "added": 1, - "promiseMethods.length": 1, - "failDeferred.cancel": 1, - "deferred.cancel": 2, - "Unexpose": 1, - "Call": 1, - "func.call": 1, - "helper": 1, - "firstParam": 6, - "count": 4, - "<=>": 1, - "1": 97, - "resolveFunc": 2, - "sliceDeferred.call": 2, - "Strange": 1, - "bug": 3, - "FF4": 1, - "Values": 1, - "changed": 3, - "onto": 2, - "sometimes": 1, - "outside": 2, - ".when": 1, - "Cloning": 2, - "into": 2, - "fresh": 1, - "solves": 1, - "issue": 1, - "deferred.reject": 1, - "deferred.promise": 1, - "jQuery.support": 1, - "document.createElement": 26, - "documentElement": 2, - "document.documentElement": 2, - "opt": 2, - "marginDiv": 5, - "bodyStyle": 1, - "tds": 6, - "isSupported": 7, - "Preliminary": 1, - "tests": 48, - "div.setAttribute": 1, - "div.innerHTML": 7, - "div.getElementsByTagName": 6, - "Can": 2, - "automatically": 2, - "inserted": 1, - "insert": 1, - "them": 3, - "empty": 3, - "tables": 1, - "link": 2, - "elements": 9, - "serialized": 3, - "correctly": 1, - "innerHTML": 1, - "This": 3, - "requires": 1, - "wrapper": 1, - "information": 5, - "from": 7, - "uses": 3, - ".cssText": 2, - "instead": 6, - "/top/.test": 2, - "URLs": 1, - "optgroup": 5, - "opt.selected": 1, - "Test": 3, - "setAttribute": 1, - "camelCase": 3, - "class.": 1, - "works": 1, - "attrFixes": 1, - "get/setAttribute": 1, - "ie6/7": 1, - "getSetAttribute": 3, - "div.className": 1, - "Will": 2, - "defined": 3, - "later": 1, - "submitBubbles": 3, - "changeBubbles": 3, - "focusinBubbles": 2, - "inlineBlockNeedsLayout": 3, - "shrinkWrapBlocks": 2, - "reliableMarginRight": 2, - "checked": 4, - "status": 3, - "properly": 2, - "cloned": 1, - "input.checked": 1, - "support.noCloneChecked": 1, - "input.cloneNode": 1, - ".checked": 2, - "inside": 3, - "disabled": 11, - "selects": 1, - "Fails": 2, - "Internet": 1, - "Explorer": 1, - "div.test": 1, - "support.deleteExpando": 1, - "div.addEventListener": 1, - "div.attachEvent": 2, - "div.fireEvent": 1, - "node": 23, - "being": 2, - "appended": 2, - "input.value": 5, - "input.setAttribute": 5, - "support.radioValue": 2, - "div.appendChild": 4, - "document.createDocumentFragment": 3, - "fragment.appendChild": 2, - "div.firstChild": 3, - "WebKit": 9, - "doesn": 2, - "inline": 3, - "display": 7, - "none": 4, - "GC": 2, - "references": 1, - "across": 1, - "JS": 7, - "boundary": 1, - "isNode": 11, - "elem.nodeType": 8, - "nodes": 14, - "global": 5, - "attached": 1, - "directly": 2, - "occur": 1, - "jQuery.cache": 3, - "defining": 1, - "objects": 7, - "its": 2, - "allows": 1, - "code": 2, - "shortcut": 1, + "keepstrP": 2, + "shutdownCommand": 2, + "trackOperationsPerSecond": 2, + "PM_POST_HIBERNATION": 1, + "normal_url_char": 3, + "utf8BufferSize": 4, + "p_fnmatch": 1, + "header_value": 6, + "PFNWGLDELETEDCNVPROC": 2, + "server.repl_transfer_lastio": 1, + "RF_String*": 222, + "": 1, + "CALLBACK_DATA_": 4, + "server.list_max_ziplist_value": 1, + "yajl_get_error": 1, + "wglResetFrameCountNV": 1, + "*__pyx_n_s__shape": 1, + "__pyx_k__seed": 1, + "new_packmode": 1, + "fv": 4, + "PyExc_TypeError": 4, + "i_SELECT_RF_STRING_REPLACE3": 1, + "rfString_Append_f": 2, + "sremCommand": 1, + "infoCommand": 4, + "LOG_NOWAIT": 1, + "CALLBACK_NOTIFY_NOADVANCE": 2, + "PFNWGLENDFRAMETRACKINGI3DPROC": 2, + "wglDestroyDisplayColorTableEXT": 1, + "__pyx_k__shuffle": 1, + "CMIT_FMT_RAW": 1, + "name.machine": 1, + "RAW_NOTIFIER_HEAD": 1, + "charsN": 5, + "git_usage_string": 2, + "__Pyx_c_prodf": 2, + "PyString_AsStringAndSize": 1, + "git_cache_init": 1, + "setup_work_tree": 1, + "__Pyx_ArgTypeTest": 1, + "INCREF": 1, + "Strings": 2, + "RF_UTF32_BE//": 2, + "*denominator": 1, + "PyBUF_RECORDS": 1, + "i_SELECT_RF_STRING_BEFORE2": 1, + "hashcmp": 2, + "wglQuerySwapGroupNV": 1, + "D1": 1, + "WGL_EXT_depth_float": 2, + "WGLEW_EXT_create_context_es2_profile": 1, + "setup_git_directory_gently": 1, + "lru_count": 1, + "size_mask": 6, + "uRate": 2, + "rfString_ToDouble": 1, + "i_SELECT_RF_STRING_CREATELOCAL": 1, + "commandTableDictType": 2, + "ignore": 1, + "http_method": 4, + "tag_len": 3, + "XX": 63, + "signal": 2, + "passes": 1, + "core_initcall": 2, + "HTTP_GET": 1, + "bestkey": 9, + "command": 2, + "MASK_DECLARE_8": 9, + "__wglewDXSetResourceShareHandleNV": 2, + "__Pyx_SafeReleaseBuffer": 1, + "num_found": 1, + "char": 529, + "schedule": 1, + "*get_merge_bases": 1, + "cpu_active_bits": 4, + "#endif": 236, + "PFNWGLQUERYGENLOCKMAXSOURCEDELAYI3DPROC": 2, + "WGL_ALPHA_BITS_ARB": 1, + "__pyx_k__range": 1, + "PyBoolObject": 1, + "rfString_PruneMiddleF": 2, + "decrbyCommand": 1, + "*after_subject": 1, + "wglReleaseVideoCaptureDeviceNV": 1, + "i_OPTIONS_": 28, + "representation": 2, + "columns": 3, + "cmd_revert": 1, + "yajl_state_start": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_14Classification_2dloss": 1, + "i_NPSELECT_RF_STRING_BEFORE": 1, + "backwards": 1, + "...": 127, + "commit_graft": 13, + "WGL_DRAW_TO_WINDOW_EXT": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_13ModifiedHuber_4__reduce__": 1, + "l": 7, + "reading": 1, + "config_bool": 5, + "doc": 6, + "ops_sec": 3, + "format_commit_message": 1, + "wglEnumGpuDevicesNV": 1, + "Py_None": 8, + "PyString_Type": 2, + "CPU_STARTING_FROZEN": 1, + "querybuf_peak": 2, + "PFNWGLISENABLEDFRAMELOCKI3DPROC": 2, + "PFNWGLGENLOCKSOURCEEDGEI3DPROC": 2, + "PyCodeObject": 1, + "PyLong_CheckExact": 1, + "": 1, + "diff_strdup_prefix": 2, + "xffff": 1, + "RF_String*sub": 2, + "ob": 14, + "tree": 3, + "SEEK_CUR": 19, + "WGL_GPU_OPENGL_VERSION_STRING_AMD": 1, + ".imag": 3, + "i_SELECT_RF_STRING_AFTERV5": 1, + "nBytePos": 23, + "COMMIT_H": 2, + "cmd_checkout": 1, + "RF_OPTION_DEFAULT_ARGUMENTS": 24, + "server.logfile": 8, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_SquaredHinge": 6, + "LONG_LONG": 1, + "*tree": 3, + "sort_in_topological_order": 1, + "sequence": 6, + "wglGetContextGPUIDAMD": 1, + "__Pyx_GetItemInt_Tuple": 1, + "i_SELECT_RF_STRING_BETWEEN": 1, + "REDIS_SHUTDOWN_SAVE": 1, + "__Pyx_PyUnicode_GET_LENGTH": 2, + "REDIS_CLIENT_LIMIT_CLASS_PUBSUB": 3, + "acceptTcpHandler": 1, + "wglBindDisplayColorTableEXT": 1, + "WGL_SWAP_LAYER_BUFFERS_ARB": 1, + "i_LIMSELECT_RF_STRING_BEFOREV": 1, + "i_SOURCE_": 2, + "rfString_Init_fUTF16": 3, + "GIT_DELTA_ADDED": 4, + "while": 70, + "cond": 1, + "i_rfString_Create_nc": 3, + "__WGLEW_NV_DX_interop": 2, + "__wglewGetGenlockSampleRateI3D": 2, + "WGL_SWAP_UNDEFINED_ARB": 1, + "ERROR_INVALID_PIXEL_TYPE_ARB": 1, + "CR": 18, + "setenv": 1, + "COPY": 2, + "readFrequency": 1, + "WGL_NV_present_video": 2, + "WGL_GENLOCK_SOURCE_EDGE_FALLING_I3D": 1, + "wglCreatePbufferEXT": 1, + "*__pyx_k_tuple_18": 1, + "*__pyx_n_s__u": 1, + "__pyx_k_10": 1, + "creates": 1, + "GIT_DIFFCAPS_USE_DEV": 1, + "REDIS_DEFAULT_DBNUM": 1, + "srcP": 6, + "wglQueryMaxSwapGroupsNV": 1, + "WGLEW_NV_gpu_affinity": 1, + "CYTHON_INLINE": 65, + "put_online_cpus": 2, + "ids": 1, + "WGL_STEREO_POLARITY_INVERT_3DL": 1, + "num_max": 1, + "*X_indices_ptr": 1, + "sdiffCommand": 1, + "off64_t": 1, + "tv.tv_usec/1000": 1, + "__WGLEW_EXT_pixel_format_packed_float": 2, + "*__pyx_n_s__range": 1, + "spopCommand": 1, + "server.maxclients": 6, + "temp": 11, + "_param": 1, "same": 1, - "jQuery.expando": 12, - "Avoid": 1, - "more": 6, - "than": 3, - "trying": 1, - "pvt": 8, - "internalKey": 12, - "getByName": 3, - "unique": 2, - "since": 1, - "their": 3, - "ends": 1, - "jQuery.uuid": 1, - "TODO": 2, - "hack": 2, - "ONLY.": 2, - "Avoids": 2, - "exposing": 2, - "metadata": 2, - "plain": 2, - "JSON.stringify": 4, - ".toJSON": 4, - "jQuery.noop": 2, - "An": 1, - "jQuery.data": 15, - "key/value": 1, - "pair": 1, - "shallow": 1, - "copied": 1, - "existing": 1, - "thisCache": 15, - "Internal": 1, - "separate": 1, - "destroy": 1, - "unless": 2, - "internal": 8, - "had": 1, - "isEmptyDataObject": 3, - "internalCache": 3, - "Browsers": 1, - "deletion": 1, - "refuse": 1, - "expandos": 2, - "other": 3, - "browsers": 2, - "faster": 1, - "iterating": 1, - "persist": 1, - "existed": 1, - "Otherwise": 2, - "eliminate": 2, - "lookups": 2, - "entries": 2, - "longer": 2, - "exist": 2, - "does": 9, - "us": 2, - "nor": 2, - "have": 6, - "removeAttribute": 3, - "Document": 2, - "these": 2, - "jQuery.support.deleteExpando": 3, - "elem.removeAttribute": 6, - "only.": 2, - "_data": 3, - "determining": 3, - "acceptData": 3, - "elem.nodeName": 2, - "jQuery.noData": 2, - "elem.nodeName.toLowerCase": 2, - "elem.getAttribute": 7, - ".attributes": 2, - "attr.length": 2, - ".name": 3, - "name.indexOf": 2, - "jQuery.camelCase": 6, - "name.substring": 2, - "dataAttr": 6, - "parts": 28, - "key.split": 2, - "Try": 4, - "fetch": 4, - "internally": 5, - "jQuery.removeData": 2, - "nothing": 2, - "found": 10, - "HTML5": 3, - "attribute": 5, - "key.replace": 2, - "rmultiDash": 3, - ".toLowerCase": 7, - "jQuery.isNaN": 1, - "parseFloat": 30, - "rbrace.test": 2, - "jQuery.parseJSON": 2, - "isn": 2, - "option.selected": 2, - "jQuery.support.optDisabled": 2, - "option.disabled": 2, - "option.getAttribute": 2, - "option.parentNode.disabled": 2, - "jQuery.nodeName": 3, - "option.parentNode": 2, - "specific": 2, - "We": 6, - "get/set": 2, - "attributes": 14, - "comment": 3, - "nType": 8, - "jQuery.attrFn": 2, - "Fallback": 2, - "prop": 24, - "supported": 2, - "jQuery.prop": 2, - "hooks": 14, - "notxml": 8, - "jQuery.isXMLDoc": 2, - "Normalize": 1, - "needed": 2, - "jQuery.attrFix": 2, - "jQuery.attrHooks": 2, - "boolHook": 3, - "rboolean.test": 4, - "value.toLowerCase": 2, - "formHook": 3, - "forms": 1, - "certain": 2, - "characters": 6, - "rinvalidChar.test": 1, - "jQuery.removeAttr": 2, - "hooks.set": 2, - "elem.setAttribute": 2, - "hooks.get": 2, - "Non": 3, - "existent": 2, - "normalize": 2, - "propName": 8, - "jQuery.support.getSetAttribute": 1, - "jQuery.attr": 2, - "elem.removeAttributeNode": 1, - "elem.getAttributeNode": 1, - "corresponding": 2, - "jQuery.propFix": 2, - "attrHooks": 3, - "tabIndex": 4, - "readOnly": 2, - "htmlFor": 2, - "maxLength": 2, - "cellSpacing": 2, - "cellPadding": 2, - "rowSpan": 2, - "colSpan": 2, - "useMap": 2, - "frameBorder": 2, - "contentEditable": 2, - "auto": 3, - "&": 13, - "getData": 3, - "setData": 3, - "changeData": 3, - "bubbling": 1, - "live.": 2, - "hasDuplicate": 1, - "baseHasDuplicate": 2, - "rBackslash": 1, - "rNonWord": 1, - "W/": 2, - "Sizzle": 1, - "results": 4, - "seed": 1, - "origContext": 1, - "context.nodeType": 2, - "checkSet": 1, - "extra": 1, - "cur": 6, - "pop": 1, - "prune": 1, - "contextXML": 1, - "Sizzle.isXML": 1, - "soFar": 1, - "Reset": 1, - "cy": 4, - "f.isWindow": 2, - "cv": 2, - "cj": 4, - ".appendTo": 2, - "b.css": 1, - "b.remove": 1, - "ck": 5, - "c.createElement": 12, - "ck.frameBorder": 1, - "ck.width": 1, - "ck.height": 1, - "c.body.appendChild": 1, - "cl": 3, - "ck.createElement": 1, - "ck.contentWindow": 1, - "ck.contentDocument": 1, - ".document": 1, - "cl.write": 1, - "cl.createElement": 1, - "cl.body.appendChild": 1, - "f.css": 24, - "c.body.removeChild": 1, - "cu": 18, - "f.each": 21, - "cp.concat.apply": 1, - "cp.slice": 1, - "ct": 34, - "cq": 3, - "cs": 3, - "f.now": 2, - "ci": 29, - "a.ActiveXObject": 3, - "ch": 58, - "a.XMLHttpRequest": 1, - "a.dataFilter": 2, - "a.dataType": 1, - "a.dataTypes": 2, - "a.converters": 3, - "o.split": 1, - "f.error": 4, - "m.replace": 1, - "a.contents": 1, - "a.responseFields": 1, - "f.shift": 1, - "a.mimeType": 1, - "c.getResponseHeader": 1, - ".test": 1, - "f.unshift": 2, - "b_": 4, - "f.isArray": 8, - "bF.test": 1, - "c.dataTypes": 1, - "h.length": 3, - "bU": 4, - "c.dataTypes.unshift": 1, - "bZ": 3, - "f.isFunction": 21, - "b.toLowerCase": 3, - "bQ": 3, - "h.substr": 1, - "bD": 3, - "bx": 2, - "a.offsetWidth": 6, - "a.offsetHeight": 2, - "bn": 2, - "f.ajax": 3, - "f.globalEval": 2, - "bf": 6, - "bm": 3, - "f.nodeName": 16, - "bl": 3, - "a.getElementsByTagName": 9, - "f.grep": 3, - "a.defaultChecked": 1, - "a.checked": 4, - "bk": 5, - "a.querySelectorAll": 1, - "bj": 3, - "b.nodeType": 6, - "b.clearAttributes": 2, - "b.mergeAttributes": 2, - "b.nodeName.toLowerCase": 1, - "b.outerHTML": 1, - "a.outerHTML": 1, - "b.selected": 1, - "a.defaultSelected": 1, - "b.defaultValue": 1, - "a.defaultValue": 1, - "b.defaultChecked": 1, - "b.checked": 1, - "a.value": 8, - "b.removeAttribute": 3, - "f.expando": 23, - "bi": 27, - "f.hasData": 2, - "f.data": 25, - "d.events": 1, - "f.extend": 23, - "": 1, - "bh": 1, - "table": 6, - "getElementsByTagName": 1, - "0": 220, - "appendChild": 1, - "ownerDocument": 9, - "createElement": 3, - "b=": 25, - "e=": 21, - "nodeType": 1, - "d=": 15, - "W": 3, - "N": 2, - "f._data": 15, - "r.live": 1, - "a.target.disabled": 1, - "a.namespace": 1, - "a.namespace.split": 1, - "r.live.slice": 1, - "s.length": 2, - "g.origType.replace": 1, - "q.push": 1, - "g.selector": 3, - "s.splice": 1, - "m.selector": 1, - "n.test": 2, - "g.namespace": 1, - "m.elem.disabled": 1, - "m.elem": 1, - "g.preType": 3, - "f.contains": 5, - "level": 3, - "m.level": 1, - "": 1, - "e.elem": 2, - "e.handleObj.data": 1, - "e.handleObj": 1, - "e.handleObj.origHandler.apply": 1, - "a.isPropagationStopped": 1, - "e.level": 1, - "a.isImmediatePropagationStopped": 1, - "e.type": 6, - "e.originalEvent": 1, - "e.liveFired": 1, - "f.event.handle.call": 1, - ".preventDefault": 1, - "F": 8, - "f.removeData": 4, - "i.resolve": 1, - "c.replace": 4, - "f.isNaN": 3, - "i.test": 1, - "f.parseJSON": 2, - "a.navigator": 1, - "a.location": 1, - "e.isReady": 1, - "c.documentElement.doScroll": 2, - "e.ready": 6, - "e.fn.init": 1, - "a.jQuery": 2, - "a.": 2, - "d.userAgent": 1, - "C": 4, - "e.fn": 2, - "e.prototype": 1, - "c.body": 4, - "a.charAt": 2, - "i.exec": 1, - "d.ownerDocument": 1, - "n.exec": 1, - "e.isPlainObject": 1, - "e.fn.attr.call": 1, - "k.createElement": 1, - "e.buildFragment": 1, - "j.cacheable": 1, - "e.clone": 1, - "j.fragment": 2, - "e.merge": 3, - "c.getElementById": 1, - "h.id": 1, - "f.find": 2, - "d.jquery": 1, - "e.isFunction": 5, - "f.ready": 1, - "e.makeArray": 1, - "D.call": 4, - "e.isArray": 2, - "C.apply": 1, - "d.prevObject": 1, - "d.context": 2, - "d.selector": 2, - "e.each": 2, - "e.bindReady": 1, - "y.done": 1, - "D.apply": 1, - "e.map": 1, - "e.fn.init.prototype": 1, - "e.extend": 2, - "e.fn.extend": 1, - "": 1, - "f=": 13, - "g=": 15, - "h=": 19, - "jQuery=": 2, - "isReady=": 1, - "y.resolveWith": 1, - "e.fn.trigger": 1, - "e._Deferred": 1, - "c.readyState": 2, - "c.addEventListener": 4, - "a.addEventListener": 4, - "c.attachEvent": 3, - "a.attachEvent": 6, - "a.frameElement": 1, - "isWindow": 2, - "isNaN": 6, - "m.test": 1, - "String": 2, - "A.call": 1, - "e.isWindow": 2, - "B.call": 3, - "e.trim": 1, - "a.JSON": 1, - "a.JSON.parse": 2, - "o.test": 1, - "e.error": 2, - "parseXML": 1, - "a.DOMParser": 1, - "DOMParser": 1, - "d.parseFromString": 1, - "ActiveXObject": 1, - "c.async": 4, - "c.loadXML": 1, - "c.documentElement": 4, - "d.nodeName": 4, - "j.test": 3, - "a.execScript": 1, - "a.eval.call": 1, - "c.apply": 2, - "c.call": 3, - "E.call": 1, - "C.call": 1, - "F.call": 1, - "c.length": 8, - "": 1, - "j=": 14, - "k=": 11, - "h.concat.apply": 1, - "f.concat": 1, - "g.guid": 3, - "e.guid": 3, - "access": 2, - "e.access": 1, - "now": 5, - "s.exec": 1, - "t.exec": 1, - "u.exec": 1, - "a.indexOf": 2, - "v.exec": 1, - "sub": 4, - "a.fn.init": 2, - "a.superclass": 1, - "a.fn": 2, - "a.prototype": 1, - "a.fn.constructor": 1, - "a.sub": 1, - "this.sub": 2, - "e.fn.init.call": 1, - "a.fn.init.prototype": 1, - "e.uaMatch": 1, - "x.browser": 2, - "e.browser": 1, - "e.browser.version": 1, - "x.version": 1, - "e.browser.webkit": 1, - "e.browser.safari": 1, - "c.removeEventListener": 2, - "c.detachEvent": 1, - "": 1, - "c=": 24, - "shift": 1, - "apply": 8, - "h.call": 2, - "g.resolveWith": 3, - "<=1&&a&&f.isFunction(a.promise)?a:f.Deferred();if(d>": 1, - "g.reject": 1, - "g.promise": 1, - "f.support": 2, - "a.innerHTML": 7, - "f.appendChild": 1, - "a.firstChild.nodeType": 2, - "e.getAttribute": 2, - "e.style.opacity": 1, - "e.style.cssFloat": 1, - "h.value": 3, - "g.selected": 1, - "a.className": 1, - "h.checked": 2, - "j.noCloneChecked": 1, - "h.cloneNode": 1, - "f.disabled": 1, - "j.optDisabled": 1, - "g.disabled": 1, - "j.deleteExpando": 1, - "a.fireEvent": 1, - "j.noCloneEvent": 1, - "a.detachEvent": 1, - "h.setAttribute": 2, - "j.radioValue": 1, - "c.createDocumentFragment": 1, - "k.appendChild": 1, - "j.checkClone": 1, - "k.cloneNode": 1, - "a.style.width": 1, - "a.style.paddingLeft": 1, - "visibility": 3, - "background": 56, - "l.style": 1, - "l.appendChild": 1, - "j.appendChecked": 1, - "j.boxModel": 1, - "a.style": 8, - "a.style.display": 3, - "a.style.zoom": 1, - "j.inlineBlockNeedsLayout": 1, - "j.shrinkWrapBlocks": 1, - ".offsetHeight": 4, - "j.reliableHiddenOffsets": 1, - "c.defaultView": 2, - "c.defaultView.getComputedStyle": 3, - "i.style.width": 1, - "i.style.marginRight": 1, - "j.reliableMarginRight": 1, - "parseInt": 12, - "marginRight": 2, - ".marginRight": 2, - "l.innerHTML": 1, - "f.boxModel": 1, - "f.support.boxModel": 4, - "uuid": 2, - "f.fn.jquery": 1, - "Math.random": 2, - "D/g": 2, - "hasData": 2, - "f.cache": 5, - "f.acceptData": 4, - "f.uuid": 1, - "f.noop": 4, - "f.camelCase": 5, - ".events": 1, - "f.support.deleteExpando": 3, - "f.noData": 2, - "f.fn.extend": 9, - "g.indexOf": 2, - "g.substring": 1, - "b.triggerHandler": 2, - "_mark": 2, - "_unmark": 3, - "f.makeArray": 5, - "e.push": 3, - "f.queue": 3, - "c.shift": 2, - "c.unshift": 1, - "f.dequeue": 4, - "f.fx": 2, - "f.fx.speeds": 1, - "d.resolveWith": 1, - "f.Deferred": 2, - "f._Deferred": 2, - "l.done": 1, - "d.promise": 1, - "rea": 1, - "autofocus": 1, - "autoplay": 1, - "controls": 1, - "defer": 1, - "required": 1, - "scoped": 1, - "f.access": 3, - "f.attr": 2, - "f.removeAttr": 3, - "f.prop": 2, - "removeProp": 1, - "f.propFix": 6, - "c.addClass": 1, - "f.trim": 2, - "c.removeClass": 1, - "g.nodeType": 6, - "g.className": 4, - "h.replace": 2, - "d.toggleClass": 1, - "d.attr": 1, - "h.hasClass": 1, - "": 1, - "f.valHooks": 7, - "e.nodeName.toLowerCase": 1, - "c.get": 1, - "e.value": 1, - "e.val": 1, - "f.map": 5, - "this.nodeName.toLowerCase": 1, - "this.type": 3, - "c.set": 1, - "valHooks": 1, - "a.attributes.value": 1, - "a.text": 1, - "a.selectedIndex": 3, - "a.options": 2, - "": 3, - "optDisabled": 1, - "selected=": 1, - "attrFix": 1, - "f.attrFn": 3, - "f.isXMLDoc": 4, - "f.attrFix": 3, - "f.attrHooks": 5, - "t.test": 2, - "d.toLowerCase": 1, - "c.toLowerCase": 4, - "u.test": 1, - "i.set": 1, - "i.get": 1, - "f.support.getSetAttribute": 2, - "a.removeAttributeNode": 1, - "q.test": 1, - "f.support.radioValue": 1, - "c.specified": 1, - "c.value": 1, - "r.test": 1, - "s.test": 1, - "propFix": 1, - "cellpadding": 1, - "contenteditable": 1, - "f.propHooks": 1, - "h.set": 1, - "h.get": 1, - "propHooks": 1, - "f.attrHooks.value": 1, - "v.get": 1, - "f.attrHooks.name": 1, - "f.valHooks.button": 1, - "d.nodeValue": 3, - "f.support.hrefNormalized": 1, - "f.support.style": 1, - "f.attrHooks.style": 1, - "a.style.cssText.toLowerCase": 1, - "f.support.optSelected": 1, - "f.propHooks.selected": 2, - "b.parentNode.selectedIndex": 1, - "f.support.checkOn": 1, - "f.inArray": 4, - "s.": 1, - "f.event": 2, - "add": 15, - "d.handler": 1, - "g.handler": 1, - "d.guid": 4, - "f.guid": 3, - "i.events": 2, - "i.handle": 2, - "f.event.triggered": 3, - "f.event.handle.apply": 1, - "k.elem": 2, - "c.split": 2, - "l.indexOf": 1, - "l.split": 1, - "n.shift": 1, - "h.namespace": 2, - "n.slice": 1, - "h.type": 1, - "h.guid": 2, - "f.event.special": 5, - "p.setup": 1, - "p.setup.call": 1, - "p.add": 1, - "p.add.call": 1, - "h.handler.guid": 2, - "o.push": 1, - "f.event.global": 2, - "remove": 9, - "s.events": 1, - "c.type": 9, - "c.handler": 1, - "c.charAt": 1, - "f.event.remove": 5, - "h.indexOf": 3, - "h.split": 2, - "m.shift": 1, - "m.slice": 1, - "q.namespace": 1, - "q.handler": 1, - "p.splice": 1, - "": 1, - "u=": 12, - "elem=": 4, - "customEvent": 1, - "trigger": 4, - "h.slice": 1, - "i.shift": 1, - "i.sort": 1, - "f.event.customEvent": 1, - "f.Event": 2, - "c.exclusive": 2, - "c.namespace": 2, - "i.join": 2, - "c.namespace_re": 1, - "c.preventDefault": 3, - "c.stopPropagation": 1, - "b.events": 4, - "f.event.trigger": 6, - "b.handle.elem": 2, - "c.result": 3, - "c.target": 3, - "do": 15, - "c.currentTarget": 2, - "m.apply": 1, - "k.parentNode": 1, - "k.ownerDocument": 1, - "c.target.ownerDocument": 1, - "c.isPropagationStopped": 1, - "c.isDefaultPrevented": 2, - "o._default": 1, - "o._default.call": 1, - "e.ownerDocument": 1, - "f.event.fix": 2, - "a.event": 1, - "Array.prototype.slice.call": 1, - "namespace_re": 1, - "namespace": 1, - "handler=": 1, - "data=": 2, - "handleObj=": 1, - "result=": 1, - "preventDefault": 4, - "stopPropagation": 5, - "isImmediatePropagationStopped": 2, - "result": 9, - "props": 21, - "split": 4, - "fix": 1, - "Event": 3, - "target=": 2, - "relatedTarget=": 1, - "fromElement=": 1, - "pageX=": 2, - "scrollLeft": 2, - "clientLeft": 2, - "pageY=": 1, - "scrollTop": 2, - "clientTop": 2, - "which=": 3, - "metaKey=": 1, - "2": 66, - "3": 13, - "4": 4, - "1e8": 1, - "special": 3, - "setup": 5, - "teardown": 6, - "origType": 2, - "beforeunload": 1, - "onbeforeunload=": 3, - "removeEvent=": 1, - "removeEventListener": 3, - "detachEvent": 2, - "Event=": 1, - "originalEvent=": 1, - "type=": 5, - "isDefaultPrevented=": 2, - "defaultPrevented": 1, - "returnValue=": 2, - "getPreventDefault": 2, - "timeStamp=": 1, - "prototype=": 2, - "originalEvent": 2, - "isPropagationStopped=": 1, - "cancelBubble=": 1, - "stopImmediatePropagation": 1, - "isImmediatePropagationStopped=": 1, - "isDefaultPrevented": 1, - "isPropagationStopped": 1, - "G=": 1, - "H=": 1, - "submit=": 1, - "specialSubmit": 3, - "closest": 3, - "keyCode=": 1, - "J=": 1, - "selectedIndex": 1, - "a.selected": 1, - "z.test": 3, - "d.readOnly": 1, - "c.liveFired": 1, - "f.event.special.change": 1, - "filters": 1, - "beforedeactivate": 1, - "K.call": 2, - "a.keyCode": 2, - "beforeactivate": 1, - "f.event.add": 2, - "f.event.special.change.filters": 1, - "I.focus": 1, - "I.beforeactivate": 1, - "f.support.focusinBubbles": 1, - "c.originalEvent": 1, - "a.preventDefault": 3, - "f.fn": 9, - "e.apply": 1, - "this.one": 1, - "unbind": 2, - "this.unbind": 2, - "delegate": 1, - "this.live": 1, - "undelegate": 1, - "this.die": 1, - "triggerHandler": 1, - "%": 26, - ".guid": 1, - "this.click": 1, - "this.mouseenter": 1, - ".mouseleave": 1, - "g.charAt": 1, - "n.unbind": 1, - "y.exec": 1, - "a.push": 2, - "n.length": 1, - "": 1, - "this.bind": 2, - "": 2, - "sizcache=": 4, - "sizset": 2, - "sizset=": 2, - "toLowerCase": 3, - "d.nodeType": 5, - "k.isXML": 4, - "a.exec": 2, - "x.push": 1, - "x.length": 8, - "m.exec": 1, - "l.relative": 6, - "x.shift": 4, - "l.match.ID.test": 2, - "q.expr": 4, - "q.set": 4, - "x.pop": 4, - "d.parentNode": 4, - "e.call": 1, - "f.push.apply": 1, - "k.contains": 5, - "a.sort": 1, - "": 1, - "matches=": 1, - "matchesSelector=": 1, - "l.order.length": 1, - "l.order": 1, - "l.leftMatch": 1, - "j.substr": 1, - "": 1, - "__sizzle__": 1, - "sizzle": 1, - "l.match.PSEUDO.test": 1, - "a.document.nodeType": 1, - "a.getElementsByClassName": 3, - "a.lastChild.className": 1, - "l.order.splice": 1, - "l.find.CLASS": 1, - "b.getElementsByClassName": 2, - "c.documentElement.contains": 1, - "a.contains": 2, - "c.documentElement.compareDocumentPosition": 1, - "a.compareDocumentPosition": 1, - "a.ownerDocument": 1, - ".documentElement": 1, - "b.nodeName": 2, - "l.match.PSEUDO.exec": 1, - "l.match.PSEUDO": 1, - "f.expr": 4, - "k.selectors": 1, - "f.expr.filters": 3, - "f.unique": 4, - "f.text": 2, - "k.getText": 1, - "/Until": 1, - "parents": 2, - "prevUntil": 2, - "prevAll": 2, - "U": 1, - "f.expr.match.POS": 1, - "V": 2, - "children": 3, - "contents": 4, - "next": 9, - "prev": 2, - ".filter": 2, - "": 1, - "e.splice": 1, - "this.filter": 2, - "": 1, - "": 1, - ".is": 2, - "c.push": 3, - "g.parentNode": 2, - "U.test": 1, - "": 1, - "f.find.matchesSelector": 2, - "g.ownerDocument": 1, - "this.parent": 2, - ".children": 1, - "a.jquery": 2, - "f.merge": 2, - "this.get": 1, - "andSelf": 1, - "this.add": 1, - "f.dir": 6, - "parentsUntil": 1, - "f.nth": 2, - "nextAll": 1, - "nextUntil": 1, - "siblings": 1, - "f.sibling": 2, - "a.parentNode.firstChild": 1, - "a.contentDocument": 1, - "a.contentWindow.document": 1, - "a.childNodes": 1, - "T.call": 1, - "P.test": 1, - "f.filter": 2, - "R.test": 1, - "Q.test": 1, - "e.reverse": 1, - "g.join": 1, - "f.find.matches": 1, - "dir": 1, - "sibling": 1, - "a.nextSibling": 1, - "<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\\w:]+)[^>": 1, - "/ig": 3, - "tbody/i": 1, - "bc": 1, - "bd": 1, - "/checked": 1, - "s*.checked.": 1, - "java": 1, - "ecma": 1, - "script/i": 1, - "CDATA": 1, - "bg": 3, - "legend": 1, - "thead": 2, - "tr": 23, - "td": 3, - "col": 7, - "_default": 5, - "bg.optgroup": 1, - "bg.option": 1, - "bg.tbody": 1, - "bg.tfoot": 1, - "bg.colgroup": 1, - "bg.caption": 1, - "bg.thead": 1, - "bg.th": 1, - "bg.td": 1, - "f.support.htmlSerialize": 1, - "bg._default": 2, - "c.text": 2, - "this.empty": 3, - ".append": 6, - ".createTextNode": 1, - "wrapAll": 1, - ".wrapAll": 2, - ".eq": 1, - ".clone": 1, - "b.map": 1, - "wrapInner": 1, - ".wrapInner": 1, - "b.contents": 1, - "c.wrapAll": 1, - "b.append": 1, - "wrap": 2, - "unwrap": 1, - ".replaceWith": 1, - "this.childNodes": 1, - ".end": 1, - "append": 1, - "this.domManip": 4, - "this.appendChild": 1, - "prepend": 1, - "this.insertBefore": 1, - "this.firstChild": 1, - "this.parentNode.insertBefore": 2, - "a.push.apply": 2, - "this.nextSibling": 2, - ".toArray": 1, - "f.cleanData": 4, - "d.parentNode.removeChild": 1, - "b.getElementsByTagName": 1, - "this.map": 3, - "f.clone": 2, - ".innerHTML.replace": 1, - "bc.test": 2, - "f.support.leadingWhitespace": 2, - "Z.test": 2, - "_.exec": 2, - ".getElementsByTagName": 2, - ".innerHTML": 3, - "c.html": 3, - "replaceWith": 1, - "c.replaceWith": 1, - ".detach": 1, - "this.parentNode": 1, - ".remove": 2, - ".before": 1, - "detach": 1, - "this.remove": 1, - "domManip": 1, - "f.support.checkClone": 2, - "bd.test": 2, - ".domManip": 1, - "g.html": 1, - "g.domManip": 1, - "j.parentNode": 1, - "f.support.parentNode": 1, - "i.nodeType": 1, - "i.childNodes.length": 1, - "f.buildFragment": 2, - "e.fragment": 1, - "h.childNodes.length": 1, - "h.firstChild": 2, - "": 1, - "k.length": 2, - ".charAt": 1, - "f.fragments": 3, - "i.createDocumentFragment": 1, - "f.clean": 1, - "appendTo": 1, - "prependTo": 1, - "insertBefore": 1, - "insertAfter": 1, - "replaceAll": 1, - "g.childNodes.length": 1, - "this.clone": 1, - ".get": 3, - "d.concat": 1, - "e.selector": 1, - "f.support.noCloneEvent": 1, - "f.support.noCloneChecked": 1, - "b.createElement": 2, - "b.createTextNode": 2, - "k.replace": 2, - "o.innerHTML": 1, - "o.lastChild": 1, - "f.support.tbody": 1, - "ba.test": 1, - "o.firstChild": 2, - "o.firstChild.childNodes": 1, - "o.childNodes": 2, - "q.length": 1, - ".childNodes.length": 1, - ".parentNode.removeChild": 2, - "o.insertBefore": 1, - "Z.exec": 1, - "f.support.appendChecked": 1, - "k.nodeType": 1, - "h.push": 1, - "be.test": 1, - ".type.toLowerCase": 1, - "h.splice.apply": 1, - ".concat": 3, - "cleanData": 1, - "j.nodeName": 1, - "j.nodeName.toLowerCase": 1, - "f.removeEvent": 1, - "b.handle": 2, - "j.removeAttribute": 2, - "bo": 2, - "/alpha": 1, - "bp": 1, - "/opacity": 1, - "bq": 2, - "br": 19, - "ms": 2, - "bs": 2, - "bt": 42, - "bu": 11, - "bv": 2, - "de": 1, - "bw": 2, - "bz": 7, - "bA": 3, - "bB": 5, - "bC": 2, - "f.fn.css": 1, - "f.style": 4, - "cssHooks": 1, - "a.style.opacity": 2, - "cssNumber": 3, - "zIndex": 1, - "fontWeight": 1, - "zoom": 1, - "lineHeight": 1, - "widows": 1, - "orphans": 1, - "cssProps": 1, - "f.support.cssFloat": 1, - "f.cssHooks": 3, - "f.cssProps": 2, - "k.get": 1, - "bu.test": 1, - "d.replace": 1, - "f.cssNumber": 1, - "k.set": 1, - "g.get": 1, - "swap": 1, - "f.curCSS": 1, - "f.swap": 2, - "<0||e==null){e=a.style[b];return>": 1, - "0px": 1, - "f.support.opacity": 1, - "f.cssHooks.opacity": 1, - "bp.test": 1, - "a.currentStyle": 4, - "a.currentStyle.filter": 1, - "a.style.filter": 1, - "RegExp.": 1, - "c.zoom": 1, - "b*100": 1, - "d.filter": 1, - "c.filter": 2, - "bo.test": 1, - "g.replace": 1, - "f.support.reliableMarginRight": 1, - "f.cssHooks.marginRight": 1, - "a.style.marginRight": 1, - "a.ownerDocument.defaultView": 1, - "e.getComputedStyle": 1, - "g.getPropertyValue": 1, - "a.ownerDocument.documentElement": 1, - "c.documentElement.currentStyle": 1, - "a.runtimeStyle": 2, - "bs.test": 1, - "bt.test": 1, - "f.left": 3, - "a.runtimeStyle.left": 2, - "a.currentStyle.left": 1, - "f.pixelLeft": 1, - "f.expr.filters.hidden": 2, - "f.support.reliableHiddenOffsets": 1, - "f.expr.filters.visible": 1, - "bE": 2, - "bF": 1, - "bG": 3, - "n/g": 1, - "bH": 2, - "/#.*": 1, - "bI": 1, - "/mg": 1, - "bJ": 1, - "color": 4, - "date": 1, - "datetime": 1, - "email": 2, - "month": 1, - "range": 2, - "search": 5, - "tel": 2, - "time": 1, - "week": 1, - "bK": 1, - "about": 1, - "app": 2, - "storage": 1, - "extension": 1, - "widget": 1, - "bL": 1, - "GET": 1, - "bM": 2, - "bN": 2, - "bO": 2, - "<\\/script>": 2, - "/gi": 2, - "bP": 1, - "bR": 2, - "*/": 2, - "bS": 1, - "bT": 2, - "f.fn.load": 1, - "bV": 3, - "bW": 5, - "bX": 8, - "e.href": 1, - "bY": 1, - "bW.href": 2, - "bS.exec": 1, - "bW.toLowerCase": 1, - "bT.apply": 1, - "a.slice": 2, - "f.param": 2, - "f.ajaxSettings.traditional": 2, - "complete": 6, - "a.responseText": 1, - "a.isResolved": 1, - "a.done": 1, - "i.html": 1, - "i.each": 1, - "serialize": 1, - "this.serializeArray": 1, - "serializeArray": 1, - "this.elements": 2, - "this.disabled": 1, - "this.checked": 1, - "bP.test": 1, - "bJ.test": 1, - ".map": 1, - "b.name": 2, - "success": 2, - "getScript": 1, - "f.get": 2, - "getJSON": 1, - "ajaxSetup": 1, - "f.ajaxSettings": 4, - "ajaxSettings": 1, - "isLocal": 1, - "bK.test": 1, - "contentType": 4, - "processData": 3, - "accepts": 5, - "xml": 3, - "json": 2, - "/xml/": 1, - "/html/": 1, - "/json/": 1, - "responseFields": 1, - "converters": 2, - "a.String": 1, - "f.parseXML": 1, - "ajaxPrefilter": 1, - "ajaxTransport": 1, - "ajax": 2, - "clearTimeout": 2, - "v.readyState": 1, - "d.ifModified": 1, - "v.getResponseHeader": 2, - "f.lastModified": 1, - "f.etag": 1, - "v.status": 1, - "v.statusText": 1, - "h.resolveWith": 1, - "h.rejectWith": 1, - "v.statusCode": 2, - "g.trigger": 2, - "i.resolveWith": 1, - "f.active": 1, - "f.ajaxSetup": 3, - "d.statusCode": 1, - "readyState": 1, - "setRequestHeader": 6, - "getAllResponseHeaders": 1, - "getResponseHeader": 1, - "bI.exec": 1, - "overrideMimeType": 1, - "d.mimeType": 1, - "abort": 4, - "p.abort": 1, - "h.promise": 1, - "v.success": 1, - "v.done": 1, - "v.error": 1, - "v.fail": 1, - "v.complete": 1, - "i.done": 1, - "<2)for(b>": 1, - "url=": 1, - "dataTypes=": 1, - "crossDomain=": 2, - "exec": 8, - "80": 2, - "443": 2, - "param": 3, - "traditional": 1, - "s=": 12, - "t=": 19, - "toUpperCase": 1, - "hasContent=": 1, - "active": 2, - "ajaxStart": 1, - "hasContent": 2, - "cache=": 1, - "x=": 1, - "y=": 5, - "1_=": 1, - "_=": 1, - "Content": 1, - "Type": 1, - "ifModified": 1, - "lastModified": 3, - "Modified": 1, - "etag": 3, - "None": 1, - "Accept": 1, - "dataTypes": 4, - "q=": 1, - "01": 1, - "beforeSend": 2, - "p=": 5, - "No": 1, - "Transport": 1, - "readyState=": 1, - "ajaxSend": 1, - "v.abort": 1, - "d.timeout": 1, - "p.send": 1, - "encodeURIComponent": 2, - "f.isPlainObject": 1, - "d.join": 1, - "cc": 2, - "cd": 3, - "jsonp": 1, - "jsonpCallback": 1, - "f.ajaxPrefilter": 2, - "b.contentType": 1, - "b.data": 5, - "b.dataTypes": 2, - "b.jsonp": 3, - "cd.test": 2, - "b.url": 4, - "b.jsonpCallback": 4, - "d.always": 1, - "b.converters": 1, - "/javascript": 1, - "ecmascript/": 1, - "a.cache": 2, - "a.crossDomain": 2, - "a.global": 1, - "f.ajaxTransport": 2, - "c.head": 1, - "c.getElementsByTagName": 1, - "send": 2, - "d.async": 1, - "a.scriptCharset": 2, - "d.charset": 1, - "d.src": 1, - "a.url": 1, - "d.onload": 3, - "d.onreadystatechange": 2, - "d.readyState": 2, - "/loaded": 1, - "complete/.test": 1, - "e.removeChild": 1, - "e.insertBefore": 1, - "e.firstChild": 1, - "ce": 6, - "cg": 7, - "cf": 7, - "f.ajaxSettings.xhr": 2, - "this.isLocal": 1, - "cors": 1, - "f.support.ajax": 1, - "c.crossDomain": 3, - "f.support.cors": 1, - "c.xhr": 1, - "c.username": 2, - "h.open": 2, - "c.url": 2, - "c.password": 1, - "c.xhrFields": 3, - "c.mimeType": 2, - "h.overrideMimeType": 2, - "h.setRequestHeader": 1, - "h.send": 1, - "c.hasContent": 1, - "h.readyState": 3, - "h.onreadystatechange": 2, - "h.abort": 1, - "h.status": 1, - "h.getAllResponseHeaders": 1, - "h.responseXML": 1, - "n.documentElement": 1, - "m.xml": 1, - "m.text": 2, - "h.responseText": 1, - "h.statusText": 1, - "c.isLocal": 1, - ".unload": 1, - "cm": 2, - "cn": 1, - "co": 5, - "cp": 1, - "cr": 20, - "a.webkitRequestAnimationFrame": 1, - "a.mozRequestAnimationFrame": 1, - "a.oRequestAnimationFrame": 1, - "this.animate": 2, - "d.style": 3, - ".style": 1, - "": 1, - "_toggle": 2, - "animate": 4, - "fadeTo": 1, - "queue=": 2, - "animatedProperties=": 1, - "animatedProperties": 2, - "specialEasing": 2, - "easing": 3, - "swing": 2, - "overflow=": 2, - "overflow": 2, - "overflowX": 1, - "overflowY": 1, - "float": 3, - "display=": 3, - "zoom=": 1, - "fx": 10, - "l=": 10, - "m=": 2, - "custom": 5, - "stop": 7, - "timers": 3, - "slideDown": 1, - "slideUp": 1, - "slideToggle": 1, - "fadeIn": 1, - "fadeOut": 1, - "fadeToggle": 1, - "duration": 4, - "duration=": 2, - "off": 1, - "speeds": 4, - "old=": 1, - "complete=": 1, - "old": 2, - "linear": 1, - "Math": 51, - "cos": 1, - "PI": 54, - "5": 23, - "options=": 1, - "prop=": 3, - "orig=": 1, - "orig": 3, - "step": 7, - "startTime=": 1, - "start=": 1, - "end=": 1, - "unit=": 1, - "unit": 1, - "now=": 1, - "pos=": 1, - "state=": 1, - "co=": 2, - "tick": 3, - "interval": 3, - "show=": 1, - "hide=": 1, - "e.duration": 3, - "this.startTime": 2, - "this.now": 3, - "this.end": 2, - "this.pos": 4, - "this.state": 3, - "this.update": 2, - "e.animatedProperties": 5, - "this.prop": 2, - "e.overflow": 2, - "f.support.shrinkWrapBlocks": 1, - "e.hide": 2, - ".hide": 2, - "e.show": 1, - "e.orig": 1, - "e.complete.call": 1, - "Infinity": 1, - "h/e.duration": 1, - "f.easing": 1, - "this.start": 2, - "*this.pos": 1, - "f.timers": 2, - "a.splice": 1, - "f.fx.stop": 1, - "clearInterval": 6, - "slow": 1, - "fast": 1, - "a.elem": 2, - "a.now": 4, - "a.elem.style": 3, - "a.prop": 5, - "Math.max": 10, - "a.unit": 1, - "f.expr.filters.animated": 1, - "b.elem": 1, - "cw": 1, - "able": 1, - "cx": 2, - "f.fn.offset": 2, - "f.offset.setOffset": 2, - "b.ownerDocument.body": 2, - "f.offset.bodyOffset": 2, - "b.getBoundingClientRect": 1, - "e.documentElement": 4, - "c.top": 4, - "c.left": 4, - "e.body": 3, - "g.clientTop": 1, - "h.clientTop": 1, - "g.clientLeft": 1, - "h.clientLeft": 1, - "i.pageYOffset": 1, - "g.scrollTop": 1, - "h.scrollTop": 2, - "i.pageXOffset": 1, - "g.scrollLeft": 1, - "h.scrollLeft": 2, - "f.offset.initialize": 3, - "b.offsetParent": 2, - "g.documentElement": 1, - "g.body": 1, - "g.defaultView": 1, - "j.getComputedStyle": 2, - "b.currentStyle": 2, - "b.offsetTop": 2, - "b.offsetLeft": 2, - "f.offset.supportsFixedPosition": 2, - "k.position": 4, - "b.scrollTop": 1, - "b.scrollLeft": 1, - "f.offset.doesNotAddBorder": 1, - "f.offset.doesAddBorderForTableAndCells": 1, - "cw.test": 1, - "c.borderTopWidth": 2, - "c.borderLeftWidth": 2, - "f.offset.subtractsBorderForOverflowNotVisible": 1, - "c.overflow": 1, - "i.offsetTop": 1, - "i.offsetLeft": 1, - "i.scrollTop": 1, - "i.scrollLeft": 1, - "f.offset": 1, - "initialize": 3, - "b.style": 1, - "d.nextSibling.firstChild.firstChild": 1, - "this.doesNotAddBorder": 1, - "e.offsetTop": 4, - "this.doesAddBorderForTableAndCells": 1, - "h.offsetTop": 1, - "e.style.position": 2, - "e.style.top": 2, - "this.supportsFixedPosition": 1, - "d.style.overflow": 1, - "d.style.position": 1, - "this.subtractsBorderForOverflowNotVisible": 1, - "this.doesNotIncludeMarginInBodyOffset": 1, - "a.offsetTop": 2, - "bodyOffset": 1, - "a.offsetLeft": 1, - "f.offset.doesNotIncludeMarginInBodyOffset": 1, - "setOffset": 1, - "a.style.position": 1, - "e.offset": 1, - "e.position": 1, - "l.top": 1, - "l.left": 1, - "b.top": 2, - "k.top": 1, - "g.top": 1, - "b.left": 2, - "k.left": 1, - "g.left": 1, - "b.using.call": 1, - "e.css": 1, - "this.offsetParent": 2, - "this.offset": 2, - "cx.test": 2, - "b.offset": 1, - "d.top": 2, - "d.left": 2, - "offsetParent": 1, - "a.offsetParent": 1, - "g.document.documentElement": 1, - "g.document.body": 1, - "g.scrollTo": 1, - ".scrollLeft": 1, - ".scrollTop": 1, - "e.document.documentElement": 1, - "e.document.compatMode": 1, - "e.document.body": 1, - "this.css": 1, - "Prioritize": 1, - "": 1, - "XSS": 1, - "location.hash": 1, - "#9521": 1, - "Matches": 1, - "dashed": 1, - "camelizing": 1, - "rdashAlpha": 1, - "rmsPrefix": 1, - "fcamelCase": 1, - "letter": 3, - "readyList.fireWith": 1, - ".off": 1, - "jQuery.Callbacks": 2, - "IE8": 2, - "exceptions": 2, - "#9897": 1, - "elems": 9, - "chainable": 4, - "emptyGet": 3, - "bulk": 3, - "elems.length": 1, - "Sets": 3, - "jQuery.access": 2, - "Optionally": 1, - "executed": 1, - "Bulk": 1, - "operations": 1, - "iterate": 1, - "executing": 1, - "exec.call": 1, - "they": 2, - "run": 1, - "against": 1, - "entire": 1, - "fn.call": 2, - "value.call": 1, - "Gets": 2, - "frowned": 1, - "upon.": 1, - "More": 1, - "//docs.jquery.com/Utilities/jQuery.browser": 1, - "ua": 6, - "ua.toLowerCase": 1, - "rwebkit.exec": 1, - "ropera.exec": 1, - "rmsie.exec": 1, - "ua.indexOf": 1, - "rmozilla.exec": 1, - "jQuerySub": 7, - "jQuerySub.fn.init": 2, - "jQuerySub.superclass": 1, - "jQuerySub.fn": 2, - "jQuerySub.prototype": 1, - "jQuerySub.fn.constructor": 1, - "jQuerySub.sub": 1, - "jQuery.fn.init.call": 1, - "rootjQuerySub": 2, - "jQuerySub.fn.init.prototype": 1, - "jQuery.uaMatch": 1, - "browserMatch.browser": 2, - "jQuery.browser.version": 1, - "browserMatch.version": 1, - "jQuery.browser.webkit": 1, - "jQuery.browser.safari": 1, - "flagsCache": 3, - "createFlags": 2, - "flags": 13, - "flags.split": 1, - "flags.length": 1, - "Convert": 1, - "formatted": 2, - "Actual": 2, - "Stack": 1, - "fire": 4, - "calls": 1, - "repeatable": 1, - "lists": 2, - "stack": 2, - "forgettable": 1, - "memory": 8, - "Flag": 2, - "First": 3, - "fireWith": 1, - "firingStart": 3, - "End": 1, - "firingLength": 4, - "Index": 1, - "firingIndex": 5, - "several": 1, - "actual": 1, - "Inspect": 1, - "recursively": 1, - "mode": 1, - "flags.unique": 1, - "self.has": 1, - "list.push": 1, - "Fire": 1, - "flags.memory": 1, - "flags.stopOnFalse": 1, - "Mark": 1, - "halted": 1, - "flags.once": 1, - "stack.length": 1, - "stack.shift": 1, - "self.fireWith": 1, - "self.disable": 1, - "Callbacks": 1, - "collection": 3, - "Do": 2, - "current": 7, - "batch": 2, - "With": 1, - "/a": 1, - ".55": 1, - "basic": 1, - "all.length": 1, - "supports": 2, - "select.appendChild": 1, - "strips": 1, - "leading": 1, - "div.firstChild.nodeType": 1, - "manipulated": 1, - "normalizes": 1, - "around": 1, - "issue.": 1, - "#5145": 1, - "existence": 1, - "styleFloat": 1, - "a.style.cssFloat": 1, - "defaults": 3, - "working": 1, - "property.": 1, - "too": 1, + "config": 4, + "WGL_BIND_TO_TEXTURE_RGBA_ARB": 1, + "i_rfLMSX_WRAP3": 5, + "incrbyfloatCommand": 1, + "__pyx_base.loss": 1, + "#n": 1, + "list_common_cmds_help": 1, + "CPU_DOWN_FAILED": 2, + "__WGLEW_I3D_gamma": 2, + "their": 1, + "ops*1000/t": 1, + "endianess": 40, + "__wglewEnumerateVideoDevicesNV": 2, + "PyUnicodeObject": 1, + "server.aof_rewrite_min_size": 2, + "microseconds/c": 1, + "dictSdsKeyCompare": 6, + "elapsed*remaining_bytes": 1, + "lpushCommand": 1, + "s_req_line_almost_done": 4, + "do": 21, + "IS_ALPHA": 5, + "long": 105, + "S_ISDIR": 1, + "define": 14, + "s_req_http_HTTP": 3, + "UNLOCK": 2, + "*barrier": 1, + "GPU_DEVICE": 1, + "fmt_offset": 1, + "rfString_Init_fUTF32": 3, + "cc": 24, + "under_end": 1, + "register_shallow": 1, + "__wglewSwapLayerBuffersMscOML": 2, + "PyBytesObject": 1, + "rpushxCommand": 1, + "cmd_ls_tree": 1, + "WGL_BIND_TO_VIDEO_RGBA_NV": 1, + "pybuffer": 1, + "i_FORMAT_": 2, + "_ms_": 2, + "SIG_IGN": 2, + "task_pid_nr": 1, + "C6": 1, + "PFNWGLSETPBUFFERATTRIBARBPROC": 2, + "2010": 1, + "pfd.revents": 1, + "HTTP_PARSER_STRICT": 5, + "dictSize": 10, + "HTTP_##name": 1, + "PFNWGLRELEASETEXIMAGEARBPROC": 2, + "keylistDictType": 4, + "pollfd": 1, + "listSetFreeMethod": 1, + "characterLength": 16, + "sdsavail": 1, + "aeEventLoop": 2, + "byteLength*2": 1, + "keyptrDictType": 2, + "*o2": 2, + "MKD_NOHEADER": 1, + "run_command_v_opt": 1, + "linuxOvercommitMemoryWarning": 2, + "error_lineno": 3, + "__wglewGetDigitalVideoParametersI3D": 2, + "wglGetPixelFormatAttribivEXT": 1, + "__pyx_obj_7sklearn_5utils_13weight_vector_WeightVector": 3, + "i_SELECT_RF_STRING_CREATE_NC0": 1, + "header_field_mark": 2, + "rfString_Init_nc": 4, + "SIGBUS": 1, + "xF000": 2, + "shared.plus": 1, + "lookup_object": 2, + "wglQueryFrameLockMasterI3D": 1, + "WGL_AUX8_ARB": 1, + "__pyx_k__C": 1, + "max_count": 1, + "close_fd": 2, + "res": 4, + "ssize_t": 1, + "cmd_mktag": 1, + "WGLEW_EXT_depth_float": 1, + "pair": 4, + "free": 62, + "}": 1544, + "IS_URL_CHAR": 6, + "wglGenlockSourceEdgeI3D": 1, + "__pyx_k__np": 1, + "node_online": 1, + "localtime": 1, + "REDIS_MAXMEMORY_NO_EVICTION": 2, + "WGL_SHARE_STENCIL_ARB": 1, + "MKD_TABSTOP": 1, + "character": 11, + "WGL_IMAGE_BUFFER_LOCK_I3D": 1, + "c_line": 1, + "PyTuple_CheckExact": 1, + "pathspec.contents": 1, + "psubscribeCommand": 2, + "*fmt": 2, + "__wglewDestroyPbufferARB": 2, + "*retval": 1, + "RF_UTF16_BE//": 2, + "<5)>": 1, + "*bufferSize": 1, + "PFNWGLGETGENLOCKSOURCEEDGEI3DPROC": 2, + "CONNECT": 2, + "PFNWGLGETFRAMEUSAGEI3DPROC": 2, + "backwards.": 1, + "commit_buffer": 1, + "gperf_case_strncmp": 1, + "WGL_TEXTURE_CUBE_MAP_ARB": 1, + "hdc": 16, + "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_Hinge": 2, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_EpsilonInsensitive": 6, + "*__pyx_filename": 7, + "ob_type": 7, + "variable": 1, + "cpu_possible_bits": 6, + "tv.tv_sec": 4, + "idle_thread_get": 1, + "options.uid": 1, + "might_sleep": 1, + "col_data": 2, + "rfString_Remove": 3, + "htNeedsResize": 3, + "": 7, + "OBJ_BLOB": 3, + "rfFReadLine_UTF32BE": 1, + "h_matching_connection_keep_alive": 3, + "*__pyx_kp_u_13": 1, + "cmd_remote_ext": 1, + "hDevice": 9, + "__pyx_f_7sklearn_12linear_model_8sgd_fast_max": 1, + "i_SELECT_RF_STRING_AFTER2": 1, + "int32_t*": 1, + "#pragma": 1, + "REFU_USTRING_H": 2, + "git_buf_cstr": 1, + "cpu_present": 1, + "is": 17, + "HTTP_PARSER_VERSION_MAJOR": 1, + "LOWER": 7, + "": 1, + "PFNWGLLOADDISPLAYCOLORTABLEEXTPROC": 2, + "UV__O_CLOEXEC": 1, + "*codepoints": 2, + "nongit_ok": 2, + "param": 2, + "s_req_host_start": 8, + "RSTRING_LEN": 2, + "a": 80, + "*1024*8": 1, + "WGLEW_ARB_pixel_format_float": 1, + "__pyx_k__eta": 1, + "*swap": 1, + "rfString_Init_cp": 3, + ".off": 2, + "__pyx_k__p": 1, + "__pyx_k_1": 1, + "expand_tabs": 1, + "iterations": 4, + "*columns": 2, + "PFNWGLDXUNREGISTEROBJECTNVPROC": 2, + "__pyx_n_s__loss": 2, + "__Pyx_PyInt_AsLongDouble": 1, + "__Pyx_RefNannySetupContext": 12, + "i_SELECT_RF_STRING_AFTERV12": 1, + "cmd_branch": 1, + "*get_shallow_commits": 1, + "git_more_info_string": 2, + "rfString_Create_f": 2, + "new_prefix": 2, + "rfFReadLine_UTF16BE": 6, + "authenticated": 3, + "__wglewJoinSwapGroupNV": 2, + "wglQueryCurrentContextNV": 1, + "PFNWGLCREATEPBUFFEREXTPROC": 2, + "*__pyx_v_dataset": 1, + "functions": 2, + "shared.pmessagebulk": 1, + "null": 4, + "l2": 3, + "__wglewReleasePbufferDCEXT": 2, + "Python": 2, + "i_SELECT_RF_STRING_REPLACE": 1, + "specific": 1, + "h_transfer_encoding_chunked": 4, + "*patch_mode": 1, + "*n": 1, + "": 1, + "server.current_client": 3, + "WGL_TEXTURE_FLOAT_RGBA_NV": 1, + "WGL_PIXEL_TYPE_ARB": 1, + "back": 1, + "keepstr": 5, + "new_file.oid": 7, + "assert": 41, + "PFNWGLDISABLEGENLOCKI3DPROC": 2, + "WGL_PBUFFER_LARGEST_EXT": 1, + "__Pyx_c_pow": 3, + "i_RESULT_": 12, + "EXPORT_SYMBOL": 8, + "backgroundSaveDoneHandler": 1, + "zremCommand": 1, + "__wglewEnumerateVideoCaptureDevicesNV": 2, + "*__pyx_n_s__NotImplementedError": 1, + "code_line": 4, + "git_attr_fnmatch__parse": 1, + "__pyx_k_21": 1, + "UV_NAMED_PIPE": 2, + "yajl_free_error": 1, + "WGL_EXT_create_context_es2_profile": 2, + "__WGLEW_ARB_pixel_format_float": 2, + "__pyx_k__plain_sgd": 1, + "PyLong_AS_LONG": 1, + "isinherited": 1, + "nmode": 10, + "WGL_COLOR_SAMPLES_NV": 1, + "loss": 1, + "PyObject_DelAttrString": 2, + "rfString_KeepOnly": 2, + "CMIT_FMT_FULLER": 1, + "hDc": 6, + "*__pyx_n_s__weights": 1, + "String": 11, + "E": 11, + "*sign_commit": 2, + "WGL_FULL_ACCELERATION_ARB": 1, + "*index": 2, + "lstrP": 1, + "byteI": 7, + "num": 24, + "have_repository": 1, + "AE_ERR": 2, + "__pyx_t_5numpy_float64_t": 4, + "s_req_method": 4, + "CONTENT_LENGTH": 4, + "WGL_3DL_stereo_control": 2, + "*internal": 1, + "i_SELECT_RF_STRING_FWRITE": 1, + "GITERR_CHECK_ALLOC": 3, + "help": 4, + "__read_mostly": 5, + "server.stat_starttime": 2, + "n/": 3, + "normally": 1, + "wglLockVideoCaptureDeviceNV": 1, + "i_SELECT_RF_STRING_CREATELOCAL1": 1, + "numclients/": 1, + "cmd_replace": 1, + "*1024*256": 1, + "__WGLEW_EXT_display_color_table": 2, + "PyBytes_Repr": 1, + "Py_ssize_t": 35, + "inline": 3, + "ftello64": 1, + "WGL_TRANSPARENT_BLUE_VALUE_ARB": 1, + "__pyx_f_7sklearn_12linear_model_8sgd_fast_10Regression_loss": 1, + "__pyx_f_7sklearn_12linear_model_8sgd_fast_12LossFunction_loss": 1, + "*__pyx_kp_u_6": 1, + "epsilon": 2, + "wglEnumerateVideoCaptureDevicesNV": 1, + "PFNWGLCREATEIMAGEBUFFERI3DPROC": 2, + "WGL_GPU_RAM_AMD": 1, + "Py_DECREF": 2, + "i_FILE_": 16, + "s_body_identity": 3, + "server.repl_transfer_left": 1, + "rb_cRDiscount": 4, + "PySequenceMethods": 1, + "rfString_Length": 5, + "pathspec.length": 1, + "git_odb__hashfd": 1, + "RE_UTF8_INVALID_CODE_POINT": 2, + "shared.err": 1, + "for_each_online_cpu": 1, + "WGL_TRANSPARENT_INDEX_VALUE_ARB": 1, + "*1000000": 1, + "EOF": 26, + "PFNWGLGETCURRENTREADDCARBPROC": 2, + "<=0)>": 1, + "WGL_TEXTURE_CUBE_MAP_NEGATIVE_X_ARB": 1, + "npy_ulonglong": 2, + "http_minor": 11, + "GITERR_OS": 1, + "i_rfLMSX_WRAP10": 2, + "number": 19, + "static": 454, + ")": 6215, + "cmd_read_tree": 1, + "init_cpu_present": 1, + "cmd_clean": 1, + "__wglewGetGenlockSourceDelayI3D": 2, + "WGL_FRONT_LEFT_ARB": 1, + "*__pyx_n_s__np": 1, + "complex": 2, + "#error": 4, + "cell_work": 3, + "__wglewQueryCurrentContextNV": 2, + "arraysize": 1, + "anetUnixServer": 1, + "i_rfString_Count": 5, + "DICT_NOTUSED": 6, + "cell_end": 6, + "*use_noid": 1, + "server.rdb_filename": 4, + "zrevrankCommand": 1, + "shared.ok": 3, + "jsonText": 4, + "long*": 2, + "*pMissedFrames": 1, + "PFNWGLQUERYFRAMELOCKMASTERI3DPROC": 2, + "__wglewGetCurrentReadDCARB": 2, + "bioPendingJobsOfType": 1, + "r": 58, + "*rndr": 4, + "*settings": 2, + "": 2, + "__wglewGetVideoDeviceNV": 2, + "__Pyx_PyIndex_AsSsize_t": 1, + "alias_command": 4, + "WGLEW_EXT_swap_control": 1, + "cb.blockhtml": 6, + "end_tag": 4, + "WGLEW_NV_present_video": 1, + "__WGLEW_I3D_image_buffer": 2, + "__wglewGetGenlockSourceI3D": 2, + "i_SUBSTR_": 6, + "Consider": 2, + "echoCommand": 2, + "loop": 9, + "INVALID_VERSION": 1, + "WGL_ERROR_MISSING_AFFINITY_MASK_NV": 1, + "WGL_NV_float_buffer": 2, + "Py_INCREF": 10, + "*encodingP": 1, + "SA_RESETHAND": 1, + "__stdcall": 2, + "i_SELECT_RF_STRING_REMOVE4": 1, + "how": 1, + "*value": 5, + "REDIS_NOTUSED": 5, + "i_SELECT_RF_STRING_BEFOREV8": 1, + "uv_process_t*": 3, + "shared.del": 1, + "parse_block": 1, + "__Pyx_CREAL": 4, + "by": 1, + "*opts": 6, + "WGL_TEXTURE_2D_ARB": 1, + "conj": 3, + "rfString_Create_fUTF16": 2, + "REDIS_REPL_PING_SLAVE_PERIOD": 1, + "publishCommand": 1, + "PFNWGLQUERYFRAMECOUNTNVPROC": 2, + "*__pyx_k_tuple_5": 1, + "*sha1": 16, + "WGL_GAMMA_TABLE_SIZE_I3D": 1, + "__pyx_k_16": 1, + "__Pyx_minusones": 1, + "__Pyx_GIVEREF": 9, + "__Pyx_SetAttrString": 2, + "keepChars": 4, + "UV_PROCESS_DETACHED": 2, + "randomkeyCommand": 1, + "allowComments": 4, + "WGL_EXT_swap_control": 2, + "wglGetExtensionsStringEXT": 1, + "i_LIMSELECT_RF_STRING_AFTERV0": 1, + "hgetallCommand": 1, + "PFNWGLDXUNLOCKOBJECTSNVPROC": 2, + "PFNWGLDXOBJECTACCESSNVPROC": 2, + "__pyx_clineno": 58, + "res1": 2, + "rfString_Init_f": 2, + "codepoint": 47, + "__wglewReleaseVideoDeviceNV": 2, + "dstX": 1, + "*values": 1, + "i_LIMSELECT_RF_STRING_BEFOREV1": 1, + "current": 5, + "redisLogRaw": 3, + "arch_disable_nonboot_cpus_end": 2, + "out_release": 3, + "wglSetStereoEmitterState3DL": 1, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_ModifiedHuber": 1, + "i_SELECT_RF_STRING_FWRITE3": 1, + "i_rfLMSX_WRAP9": 2, + "i_SELECT_RF_STRING_BETWEEN5": 1, + "*active_writer": 1, + "s_headers_done": 4, + "bigger": 3, + "cpu_chain": 4, + "VALUE": 13, + "zcardCommand": 1, + ".expires": 8, + "git_config": 3, + "git_pool_strcat": 1, + "HTTP_PARSER_VERSION_MINOR": 1, + "getRandomHexChars": 1, + "WGL_COLOR_BITS_EXT": 1, + "__pyx_gilstate_save": 2, + "i_SELECT_RF_STRING_REMOVE": 1, + "encode": 2, + "git_repository_workdir": 1, + "fgets": 1, + "wglSendPbufferToVideoNV": 1, + "enc_packmode": 1, + "i_NPSELECT_RF_STRING_AFTER0": 1, + "shared.queued": 2, + "rfString_Equal": 4, + "*c": 69, + "srcLevel": 1, + "hReadDC": 2, + "WGLEW_ARB_create_context_profile": 1, + "rfString_Create_fUTF32": 2, + "REDIS_REPL_NONE": 1, + "CPU_DEAD": 1, + "EXPORT_SYMBOL_GPL": 4, + "__pyx_t_7sklearn_12linear_model_8sgd_fast_INTEGER": 3, + "s_req_spaces_before_url": 5, + "uSource": 2, + "WGL_ATI_pixel_format_float": 2, + "": 1, + "cpu_present_mask": 2, + "statloc": 5, + "alloc": 6, + "HANDLE": 14, + "rfString_Fwrite_fUTF8": 1, + "argument": 1, + ".size": 2, + "surrogate": 4, + "i_NVrfString_CreateLocal": 3, + "RF_STRING_ITERATE_END": 9, + "MSEARCH": 1, + "querybuf_size/": 1, + "B0": 1, + "*__pyx_kp_s_2": 1, + "git_cached_obj_freeptr": 1, + "sdscatrepr": 1, + "*author": 2, + "PFNWGLRELEASEPBUFFERDCEXTPROC": 2, + "height": 3, + "PyBytes_DecodeEscape": 1, + "rfString_ToInt": 1, + "onto_pool": 7, + "cmd_annotate": 1, + "s_req_host_v6_start": 7, + "uv__process_open_stream": 2, + "init_cpu_possible": 1, + "server.stat_evictedkeys": 3, + "argc": 26, + "hAffinityDC": 1, + "__WGLEW_EXT_create_context_es2_profile": 2, + "__pyx_k__dloss": 1, + "rfString_PruneStart": 2, + "s_req_host": 8, + "zmalloc_used_memory": 8, + "date": 5, + "WGLEW_I3D_swap_frame_usage": 1, + "WGL_SUPPORT_GDI_EXT": 1, + "PyFloat_AS_DOUBLE": 1, + "trace_repo_setup": 1, + "rndr_newbuf": 2, + "wglSwapBuffersMscOML": 1, + "wglBindVideoImageNV": 1, + "PFNWGLCOPYIMAGESUBDATANVPROC": 2, + "__pyx_k__I": 1, + "added": 1, + "i_SELECT_RF_STRING_BEFOREV14": 1, + "refcount": 2, + "cmd_format_patch": 1, + "yajl_handle_t": 1, + "i_STR_": 8, + "unused": 3, + "afterP": 2, + "*db": 3, + "call": 1, + "pingCommand": 2, + "http_strerror_tab": 7, + "uv_handle_t*": 1, + "PFNWGLBINDSWAPBARRIERNVPROC": 2, + "__wglewSaveBufferRegionARB": 2, + "backgroundRewriteDoneHandler": 1, + "s_header_field_start": 12, + "http_parser_url": 3, + "HPE_INVALID_CONTENT_LENGTH": 4, + "stack": 6, + "PURGE": 2, + "__wglewGetGammaTableI3D": 2, + "*__pyx_ptype_5numpy_flatiter": 1, + "pow": 2, + "SIGILL": 1, + "cmd_write_tree": 1, + "options.stdio": 3, + "HTTP_DELETE": 1, + "llist_mergesort": 1, + "yajl_callbacks": 1, + "wglEnumGpusNV": 1, + "PFNWGLSETSTEREOEMITTERSTATE3DLPROC": 2, + "wglGetGPUIDsAMD": 1, + "WGL_SAMPLE_BUFFERS_3DFX": 1, + "__Pyx_PyBytes_FromUString": 1, + "saddCommand": 1, + "server.aof_rewrite_perc": 3, + "i_rfString_Create": 3, + "": 1, + "hShareContext": 2, + "__pyx_k__shape": 1, + "unhex": 3, + "each_commit_graft_fn": 1, + "WGL_ARB_make_current_read": 2, + "WGLEW_GET_FUN": 120, + "__wglext_h_": 2, + "__pyx_k__numpy": 1, + "__pyx_v_weight_neg": 1, + "S_ISLNK": 2, + "KEEP_ALIVE": 4, + "__wglewGetFrameUsageI3D": 2, + "WGL_DRAW_TO_PBUFFER_ARB": 1, + "*__pyx_n_s__C": 1, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_LossFunction": 15, + "__Pyx_BufFmt_StackElem": 1, + "Py_UNICODE*": 1, + "sdscat": 14, + "Quitting": 2, + "sections": 11, + "SIGTERM": 1, + "Error": 2, + "__Pyx_ErrFetch": 1, + "nosave": 2, + "*tokensN": 1, + "description": 1, + "server.aof_current_size": 2, + "sscanf": 1, + "WGL_TRANSPARENT_EXT": 1, + "__cdecl": 2, + "c_ru.ru_stime.tv_usec/1000000": 1, + "success": 4, + "SUNDOWN_VER_MINOR": 1, + "server.stat_numcommands": 4, + "RF_BIG_ENDIAN": 10, + "strbuf_release": 1, + "has_non_ascii": 1, + "ll2string": 3, + "PyObject_Call": 6, + "tag": 1, + "cmd_describe": 1, + "SET_ERRNO": 47, + "server.zset_max_ziplist_value": 1, + "bgrewriteaofCommand": 1, + "WGL_DRAW_TO_WINDOW_ARB": 1, + "i_SELECT_RF_STRING_AFTERV18": 1, + "header_value_mark": 2, + "git_hash_final": 1, + "*__pyx_vtabptr_7sklearn_12linear_model_8sgd_fast_Huber": 1, + "pragma": 1, + "opening": 2, + "warning": 1, + "callbacks": 3, + "rb_rdiscount_toc_content": 2, + "__GFP_ZERO": 1, + "parse_signed_commit": 1, + "*t": 2, + "git_vector_init": 3, + "fit": 3, + "self_ru": 2, + "populateCommandTable": 2, + "HTTP_ERRNO_MAP": 3, + "pager_command_config": 2, + "REDIS_MAX_LOGMSG_LEN": 1, + "alloc_cpumask_var": 1, + "tolower": 2, + "genRedisInfoString": 2, + "headers": 1, + "item": 24, + "DICT_HT_INITIAL_SIZE": 2, + "git_oid_cpy": 5, + "wglFreeMemoryNV": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_25SquaredEpsilonInsensitive_6__reduce__": 1, + "npy_uint16": 1, + "*__pyx_f": 1, + "i_ARG1_": 56, + "s1P": 2, + "IS_HEX": 2, + "trace_argv_printf": 3, + "*__pyx_n_s__p": 1, + "*__pyx_n_s__numpy": 1, + "PyUnicode_Check": 1, + "EV_A_": 1, + "sdsRemoveFreeSpace": 1, + "FILE*": 64, + "ops": 1, + "A5": 3, + "PyList_CheckExact": 1, + "npy_uintp": 1, + "needs": 1, + "commit_tree": 1, + "git_attr_fnmatch": 4, + "WGLEW_EXT_pixel_format": 1, + "__Pyx_RaiseDoubleKeywordsError": 1, + "testity": 2, + "*new_oid": 1, + "REDIS_SHARED_SELECT_CMDS": 1, + "WGL_VIDEO_OUT_FIELD_2": 1, + "wglCreatePbufferARB": 1, + "IS_NUM": 14, + "s_req_host_v6": 7, + "*piFormats": 2, + "uType": 1, + "npy_longlong": 2, + "0xBF": 1, + "dup2": 4, + "self_ru.ru_utime.tv_sec": 1, + "WGL_NUMBER_PIXEL_FORMATS_EXT": 1, + "DL_EXPORT": 2, + "WGL_BIND_TO_TEXTURE_RECTANGLE_RGBA_NV": 1, + "monitorCommand": 2, + "defined": 42, + "RF_String": 27, + "*message": 1, + "__pyx_k__count": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_11SquaredLoss_loss": 1, + "*__pyx_ptype_7sklearn_5utils_11seq_dataset_SequentialDataset": 1, + "__Pyx_AddTraceback": 7, + "ev": 2, + "act.sa_flags": 2, + "addReplyBulkLongLong": 2, + "*ln": 3, + "/sizeof": 4, + "PFNWGLMAKECONTEXTCURRENTARBPROC": 2, + "__Pyx_PyInt_FromSize_t": 1, + "robj*": 3, + "REDIS_SLAVE": 3, + "extended": 3, + "redisDb": 3, + "hand": 28, + "*__pyx_n_s__weight_neg": 1, + "characterPos_": 5, + "*subValues": 2, + "memcpy": 34, + "patch": 1, + "__WGLEW_ARB_pbuffer": 2, + "GLEW_STATIC": 1, + "__pyx_obj_7sklearn_5utils_11seq_dataset_ArrayDataset": 2, + "SOCK_NONBLOCK": 2, + "RF_UTF32_BE": 3, + "shared.roslaveerr": 2, + "wglReleaseVideoDeviceNV": 1, + "C1": 1, + "WGL_AUX5_ARB": 1, + "xstrdup": 2, + "server.pubsub_patterns": 4, + "server.aof_flush_postponed_start": 2, + "defsections": 11, + "gets": 1, + "s_req_http_H": 3, + "zscoreCommand": 1, + "REDIS_HASH_MAX_ZIPLIST_ENTRIES": 1, + "GLuint": 9, + "obuf_bytes": 3, + "REDIS_RUN_ID_SIZE": 2, + "msg": 10, + "GIT_IDXENTRY_INTENT_TO_ADD": 1, + "**__pyx_pyargnames": 3, + "__pyx_k____main__": 1, + "i_rfLMSX_WRAP16": 2, + "*argc": 1, + "HTTP_POST": 2, + "http_parser_pause": 2, + "hlenCommand": 1, + "/": 9, + "R_Zero/R_Zero": 1, + "CPU_UP_CANCELED": 1, + "_GPU_DEVICE": 1, + "WGL_ACCUM_ALPHA_BITS_EXT": 1, + "shape": 1, + "PyInt_Type": 1, + "retval": 3, + "rstr": 24, + "dictRehashMilliseconds": 2, + "PFNWGLENABLEGENLOCKI3DPROC": 2, + "nr_parent": 3, + "YA_MALLOC": 1, + "WGL_FRAMEBUFFER_SRGB_CAPABLE_ARB": 1, + "REDIS_SLOWLOG_MAX_LEN": 1, + "hcpu": 10, + "x": 57, + "wglGetPixelFormatAttribivARB": 1, + "cmd_blame": 2, + "s_chunk_data": 3, + "SA_SIGINFO": 1, + "cmd_diff_index": 1, + "REDIS_REPL_SYNCIO_TIMEOUT": 1, + "rfString_ToUTF16": 4, + "ff": 10, + "wglDestroyPbufferEXT": 1, + "ERROR_INCOMPATIBLE_DEVICE_CONTEXTS_ARB": 1, + "cabs": 1, + "*__pyx_vtabptr_7sklearn_12linear_model_8sgd_fast_Hinge": 1, + "i_NPSELECT_RF_STRING_BETWEEN0": 1, + "*REDIS_EXPIRELOOKUPS_TIME_PERC/REDIS_HZ/100": 1, + "RUSAGE_SELF": 1, + "__pyx_k__float64": 1, + "bytesN": 98, + "rlimit": 1, + "on": 4, + "rfString_Afterv": 4, + "cmd_init_db": 2, + "__pyx_k__weights": 1, + "*commit_list_insert": 1, + "nb": 2, + "cmd_tag": 1, + "REDIS_SHUTDOWN_NOSAVE": 1, + "uEdge": 2, + "n_features": 2, + "UV_CREATE_PIPE": 4, + "server.delCommand": 1, + "h_connection_keep_alive": 4, + "__Pyx_BUILTIN_MODULE_NAME": 2, + "cpumask_clear_cpu": 5, + "__WGLEW_ARB_multisample": 2, + "strncmp": 1, + "git_iterator": 8, + "LOG_LOCAL0": 1, + "bitcountCommand": 1, + "WGL_NEED_PALETTE_EXT": 1, + "WGL_CONTEXT_COMPATIBILITY_PROFILE_BIT_ARB": 1, + "section": 14, + "server.bpop_blocked_clients": 2, + "MKD_LI_END": 1, + "wglBindSwapBarrierNV": 1, + "wglEnumerateVideoDevicesNV": 1, + "wglIsEnabledGenlockI3D": 1, + "width": 3, + "npy_uint8": 1, + "cmd_verify_tag": 1, + "RUN_SETUP": 81, + "as": 4, + "dictSlots": 3, + "READ_VSNPRINTF_ARGS": 5, + "server.cluster.myself": 1, + "cmd_repo_config": 1, + "server.rdb_checksum": 1, + "CMIT_FMT_UNSPECIFIED": 1, + "in": 11, + "them": 3, + "retcode": 3, + "DeviceString": 1, + "rfString_ToUTF32": 4, + "__Pyx_GetBufferAndValidate": 1, + "PyErr_Warn": 1, + "i_SELECT_RF_STRING_INIT_NC": 1, + "strlen": 17, + "cpu_hotplug_begin": 4, + "hash": 12, + "UNKNOWN": 1, + "POST": 2, + "cmd_send_pack": 1, + "ascii_logo": 1, + "git_iterator_for_workdir_range": 2, + "WGLEW_EXPORT": 167, + "F00": 1, + "": 1, + "i_NPSELECT_RF_STRING_REPLACE1": 1, + "clientsCronHandleTimeout": 2, + "PyInt_FromSize_t": 1, + "i_SELECT_RF_STRING_COUNT1": 1, + "Ftelll": 1, + "__wglewQueryVideoCaptureDeviceNV": 2, + "__Pyx_Print": 1, + "mem_used": 9, + "upgrade": 3, + "zmalloc_get_fragmentation_ratio": 1, + "__WGLEW_NV_video_output": 2, + "WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_R_NV": 1, + "__WGLEW_ARB_create_context_profile": 2, + "lineno": 1, + "GOTREF": 1, + "cpu_maps_update_begin": 9, + "*_param": 1, + "__wglewQueryFrameLockMasterI3D": 2, + "*kwds2": 1, + "*w_data_ptr": 1, + "xC0": 3, + "HEAD": 2, + "array": 1, + "rb_define_class": 1, + "stateStack": 3, + "PFNWGLGETVIDEODEVICENVPROC": 2, + "WGL_NO_ACCELERATION_EXT": 1, + "find_block_tag": 1, + "http_parser_parse_url": 2, + "sinterCommand": 2, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Huber": 1, + "count": 17, + "s_res_first_http_major": 3, + "delCommand": 1, + "CB": 1, + "B6": 1, + "WGL_PBUFFER_LARGEST_ARB": 1, + "WGLEW_AMD_gpu_association": 1, + "*__pyx_ptype_5numpy_broadcast": 1, + "i_NPSELECT_RF_STRING_BEFORE1": 1, + "WGLEW_I3D_swap_frame_lock": 1, + "file_size": 6, + "CONFIG_NR_CPUS": 5, + "RF_BITFLAG_ON": 5, + "int*": 22, + "deltas": 8, + "WGL_NV_vertex_array_range": 2, + "*param": 1, + "__cpu_die": 1, + "Py_PYTHON_H": 1, + "PROPFIND": 2, + "__weak": 4, + "cell_start": 5, + "*PGPU_DEVICE": 1, + "__pyx_k__O": 1, + "__pyx_v_flags": 1, + "char*": 166, + "__pyx_k__ValueError": 1, + "SetupContext": 3, + "getpid": 7, + "*keyobj": 2, + "WGL_ACCESS_WRITE_DISCARD_NV": 1, + "wglGetGenlockSourceI3D": 1, + "i_SELECT_RF_STRING_REPLACE4": 1, + "_cpu_down": 3, + "REDIS_ZSET_MAX_ZIPLIST_ENTRIES": 1, + "**column_data": 1, + "diff_delta__dup": 3, + "///": 4, + "diff_from_iterators": 5, + "float*": 1, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_EpsilonInsensitive": 1, + "i_SELECT_RF_STRING_CREATE": 1, + "chars": 3, + "getNodeByQuery": 1, + "beforeSleep": 2, + "WGL_FRONT_RIGHT_ARB": 1, + "__Pyx_PyInt_AsSignedLong": 1, + "setrlimit": 1, + "CONFIG_SMP": 1, + "*old_tree": 3, + ".hcpu": 1, + "server.list_max_ziplist_entries": 1, + "WGL_CONTEXT_CORE_PROFILE_BIT_ARB": 1, + "llenCommand": 1, + "IS_HOST_CHAR": 4, + "INVALID_FRAGMENT": 1, + "else": 190, + "PyLong_AsLong": 1, + "flag": 1, + "i_SELECT_RF_STRING_BEFORE3": 1, + "createPidFile": 2, + "*commandTable": 1, + "entry": 17, + "build_all_zonelists": 1, + "__wglewBindVideoImageNV": 2, + "__pyx_k__sys": 1, + "__pyx_print_kwargs": 1, + "allsections": 12, + "__wglewQueryMaxSwapGroupsNV": 2, + "wglGenlockSampleRateI3D": 1, + "MKD_AUTOLINK": 1, + "*http_method_str": 1, + "punsubscribeCommand": 2, + "s_header_field": 4, + "__WGLEW_NV_copy_image": 2, + "PFNWGLGENLOCKSOURCEI3DPROC": 2, + "__Pyx_c_quotf": 2, + "Rebuild": 1, + "rfString_Between": 3, + "sflags": 1, + "cpu_hotplug_pm_sync_init": 2, + "cmd_gc": 1, + "setnxCommand": 1, + "**tb": 1, + "__fastcall": 2, + "setCommand": 1, + "ctime.seconds": 2, + "tag_size": 3, + "GIT_DELTA_DELETED": 7, + "LOG_NOTICE": 1, + "yajl_lex_free": 1, + "*__pyx_n_s__class_weight": 1, + "*__pyx_ptype_7sklearn_5utils_11seq_dataset_CSRDataset": 1, "marked": 1, - "marks": 1, - "select.disabled": 1, - "support.optDisabled": 1, - "opt.disabled": 1, - "handlers": 1, - "support.noCloneEvent": 1, - "div.cloneNode": 1, - "maintains": 1, - "#11217": 1, - "loses": 1, - "div.lastChild": 1, - "conMarginTop": 3, - "paddingMarginBorder": 5, - "positionTopLeftWidthHeight": 3, - "paddingMarginBorderVisibility": 3, - "container": 4, - "container.style.cssText": 1, - "body.insertBefore": 1, - "body.firstChild": 1, - "Construct": 1, - "container.appendChild": 1, - "cells": 3, - "still": 4, - "offsetWidth/Height": 3, - "visible": 1, - "row": 1, - "reliable": 1, - "offsets": 1, - "safety": 1, - "goggles": 1, - "#4512": 1, - "fails": 2, - "support.reliableHiddenOffsets": 1, - "explicit": 1, - "right": 3, - "incorrectly": 1, - "computed": 1, - "based": 1, - "container.": 1, - "#3333": 1, - "Feb": 1, - "Bug": 1, - "getComputedStyle": 3, - "returns": 1, - "wrong": 1, - "window.getComputedStyle": 6, - "marginDiv.style.width": 1, - "marginDiv.style.marginRight": 1, - "div.style.width": 2, - "support.reliableMarginRight": 1, - "div.style.zoom": 2, - "natively": 1, - "block": 4, - "act": 1, - "setting": 2, - "giving": 1, - "layout": 2, - "div.style.padding": 1, - "div.style.border": 1, - "div.style.overflow": 2, - "div.style.display": 2, - "support.inlineBlockNeedsLayout": 1, - "div.offsetWidth": 2, - "shrink": 1, - "support.shrinkWrapBlocks": 1, - "div.style.cssText": 1, - "outer.firstChild": 1, - "outer.nextSibling.firstChild.firstChild": 1, - "offsetSupport": 2, - "doesNotAddBorder": 1, - "inner.offsetTop": 4, - "doesAddBorderForTableAndCells": 1, - "td.offsetTop": 1, - "inner.style.position": 2, - "inner.style.top": 2, - "safari": 1, - "subtracts": 1, - "here": 1, - "offsetSupport.fixedPosition": 1, - "outer.style.overflow": 1, - "outer.style.position": 1, - "offsetSupport.subtractsBorderForOverflowNotVisible": 1, - "offsetSupport.doesNotIncludeMarginInBodyOffset": 1, - "body.offsetTop": 1, - "div.style.marginTop": 1, - "support.pixelMargin": 1, - ".marginTop": 1, - "container.style.zoom": 2, - "body.removeChild": 1, - "rbrace": 1, - "Please": 1, - "caution": 1, - "Unique": 1, - "page": 1, - "rinlinejQuery": 1, - "jQuery.fn.jquery": 1, - "following": 1, - "uncatchable": 1, - "you": 1, - "attempt": 2, - "them.": 1, - "Ban": 1, - "except": 1, - "Flash": 1, - "jQuery.acceptData": 2, - "privateCache": 1, - "differently": 1, - "because": 1, - "IE6": 1, - "order": 1, - "collisions": 1, - "between": 1, - "user": 1, - "data.": 1, - "thisCache.data": 3, - "Users": 1, - "should": 1, - "inspect": 1, - "undocumented": 1, - "subject": 1, - "change.": 1, - "But": 1, - "anyone": 1, - "listen": 1, - "No.": 1, - "isEvents": 1, - "privateCache.events": 1, - "converted": 2, - "camel": 2, - "names": 2, - "camelCased": 1, - "Reference": 1, - "entry": 1, - "purpose": 1, - "continuing": 1, - "Support": 1, - "space": 1, - "separated": 1, - "jQuery.isArray": 1, - "manipulation": 1, - "cased": 1, - "name.split": 1, - "name.length": 1, - "want": 1, - "let": 1, - "destroyed": 2, - "jQuery.isEmptyObject": 1, - "Don": 1, - "care": 1, - "Ensure": 1, - "#10080": 1, - "cache.setInterval": 1, - "part": 8, - "jQuery._data": 2, - "elem.attributes": 1, - "self.triggerHandler": 2, - "jQuery.isNumeric": 1, - "All": 1, - "lowercase": 1, - "Grab": 1, - "necessary": 1, - "hook": 1, - "nodeHook": 1, - "attrNames": 3, - "isBool": 4, - "rspace": 1, - "attrNames.length": 1, - "#9699": 1, - "explanation": 1, - "approach": 1, - "removal": 1, - "#10870": 1, - "**": 1, - "timeStamp": 1, - "char": 2, - "buttons": 1, - "SHEBANG#!node": 2, - "http.createServer": 1, - "res.writeHead": 1, - "res.end": 1, - ".listen": 1, - "Date.prototype.toJSON": 2, - "isFinite": 1, - "this.valueOf": 2, - "this.getUTCFullYear": 1, - "this.getUTCMonth": 1, - "this.getUTCDate": 1, - "this.getUTCHours": 1, - "this.getUTCMinutes": 1, - "this.getUTCSeconds": 1, - "String.prototype.toJSON": 1, - "Number.prototype.toJSON": 1, - "Boolean.prototype.toJSON": 1, - "u0000": 1, - "u00ad": 1, - "u0600": 1, - "u0604": 1, - "u070f": 1, - "u17b4": 1, - "u17b5": 1, - "u200c": 1, - "u200f": 1, - "u2028": 3, - "u202f": 1, - "u2060": 1, - "u206f": 1, - "ufeff": 1, - "ufff0": 1, - "uffff": 1, - "escapable": 1, - "/bfnrt": 1, - "fA": 2, - "JSON.parse": 1, - "PUT": 1, - "DELETE": 1, - "_id": 1, - "ties": 1, - "collection.": 1, - "_removeReference": 1, - "model.collection": 2, - "model.unbind": 1, - "this._onModelEvent": 1, - "_onModelEvent": 1, - "ev": 5, - "this._remove": 1, - "model.idAttribute": 2, - "this._byId": 2, - "model.previous": 1, - "model.id": 1, - "this.trigger.apply": 2, - "_.each": 1, - "Backbone.Collection.prototype": 1, - "this.models": 1, - "_.toArray": 1, - "Backbone.Router": 1, - "options.routes": 2, - "this.routes": 4, - "this._bindRoutes": 1, - "this.initialize.apply": 2, - "namedParam": 2, - "splatParam": 2, - "escapeRegExp": 2, - "_.extend": 9, - "Backbone.Router.prototype": 1, - "Backbone.Events": 2, - "route": 18, - "Backbone.history": 2, - "Backbone.History": 2, - "_.isRegExp": 1, - "this._routeToRegExp": 1, - "Backbone.history.route": 1, - "_.bind": 2, - "this._extractParameters": 1, - "callback.apply": 1, - "navigate": 2, - "triggerRoute": 4, - "Backbone.history.navigate": 1, - "_bindRoutes": 1, - "routes": 4, - "routes.unshift": 1, - "routes.length": 1, - "this.route": 1, - "_routeToRegExp": 1, - "route.replace": 1, - "_extractParameters": 1, - "route.exec": 1, - "this.handlers": 2, - "_.bindAll": 1, - "hashStrip": 4, - "#*": 1, - "isExplorer": 1, - "/msie": 1, - "historyStarted": 3, - "Backbone.History.prototype": 1, - "getFragment": 1, - "forcePushState": 2, - "this._hasPushState": 6, - "window.location.pathname": 1, - "window.location.search": 1, - "fragment.indexOf": 1, - "this.options.root": 6, - "fragment.substr": 1, - "this.options.root.length": 1, - "window.location.hash": 3, - "fragment.replace": 1, - "this._wantsPushState": 3, - "this.options.pushState": 2, - "window.history": 2, - "window.history.pushState": 2, - "this.getFragment": 6, - "docMode": 3, - "document.documentMode": 3, - "oldIE": 3, - "isExplorer.exec": 1, - "navigator.userAgent.toLowerCase": 1, - "this.iframe": 4, - ".contentWindow": 1, - "this.navigate": 2, - ".bind": 3, - "this.checkUrl": 3, - "setInterval": 6, - "this.interval": 1, - "this.fragment": 13, - "loc": 2, - "atRoot": 3, - "loc.pathname": 1, - "loc.hash": 1, - "loc.hash.replace": 1, - "window.history.replaceState": 1, - "document.title": 2, - "loc.protocol": 2, - "loc.host": 2, - "this.loadUrl": 4, - "this.handlers.unshift": 1, - "checkUrl": 1, - "this.iframe.location.hash": 3, - "decodeURIComponent": 2, - "loadUrl": 1, - "fragmentOverride": 2, - "matched": 2, - "_.any": 1, - "handler.route.test": 1, - "handler.callback": 1, - "frag": 13, - "frag.indexOf": 1, - "this.iframe.document.open": 1, - ".close": 1, - "Backbone.View": 1, - "this.cid": 3, - "_.uniqueId": 1, - "this._configure": 1, - "this._ensureElement": 1, - "this.delegateEvents": 1, - "selectorDelegate": 2, - "this.el": 10, - "eventSplitter": 2, - "viewOptions": 2, - "Backbone.View.prototype": 1, - "tagName": 3, - "render": 1, - "el": 4, - ".attr": 1, - ".html": 1, - "delegateEvents": 1, - "this.events": 1, - "key.match": 1, - "_configure": 1, - "viewOptions.length": 1, - "_ensureElement": 1, - "attrs": 6, - "this.attributes": 1, - "this.id": 2, - "attrs.id": 1, - "this.make": 1, - "this.tagName": 1, - "_.isString": 1, - "protoProps": 6, - "classProps": 2, - "inherits": 2, - "child.extend": 1, - "this.extend": 1, - "Backbone.Model.extend": 1, - "Backbone.Collection.extend": 1, - "Backbone.Router.extend": 1, - "Backbone.View.extend": 1, - "methodMap": 2, - "Backbone.sync": 1, - "params": 2, - "params.url": 2, - "getUrl": 2, - "urlError": 2, - "params.data": 5, - "params.contentType": 2, - "model.toJSON": 1, - "Backbone.emulateJSON": 2, - "params.processData": 1, - "Backbone.emulateHTTP": 1, - "params.data._method": 1, - "params.type": 1, - "params.beforeSend": 1, - "xhr": 1, - "xhr.setRequestHeader": 1, - ".ajax": 1, - "staticProps": 3, - "protoProps.hasOwnProperty": 1, - "protoProps.constructor": 1, - "parent.apply": 1, - "child.prototype.constructor": 1, - "object.url": 4, - "_.isFunction": 1, - "wrapError": 1, - "onError": 3, - "resp": 3, - "model.trigger": 1, - "escapeHTML": 1, - "string.replace": 1, - "#x": 1, - "da": 1, - "": 1, - "lt": 55, - "#x27": 1, - "#x2F": 1, - "window.Modernizr": 1, - "Modernizr": 12, - "enableClasses": 3, - "docElement": 1, - "mod": 12, - "modElem": 2, - "mStyle": 2, - "modElem.style": 1, - "inputElem": 6, - "smile": 4, - "prefixes": 2, - "omPrefixes": 1, - "cssomPrefixes": 2, - "omPrefixes.split": 1, - "domPrefixes": 3, - "omPrefixes.toLowerCase": 1, - "ns": 1, - "inputs": 3, - "classes": 1, - "classes.slice": 1, - "featureName": 5, - "testing": 1, - "injectElementWithStyles": 9, - "rule": 5, - "testnames": 3, - "fakeBody": 4, - "node.id": 1, - "div.id": 1, - "fakeBody.appendChild": 1, - "//avoid": 1, - "crashing": 1, - "fakeBody.style.background": 1, - "docElement.appendChild": 2, - "fakeBody.parentNode.removeChild": 1, - "div.parentNode.removeChild": 1, - "testMediaQuery": 2, - "mq": 3, - "matchMedia": 3, - "window.matchMedia": 1, - "window.msMatchMedia": 1, - ".matches": 1, - "bool": 30, - "node.currentStyle": 2, - "isEventSupported": 5, - "TAGNAMES": 2, - "element.setAttribute": 3, - "element.removeAttribute": 2, - "_hasOwnProperty": 2, - "hasOwnProperty": 5, - "_hasOwnProperty.call": 2, - "object.constructor.prototype": 1, - "Function.prototype.bind": 2, - "slice.call": 3, - "F.prototype": 1, - "target.prototype": 1, - "target.apply": 2, - "args.concat": 2, - "setCss": 7, - "str": 4, - "mStyle.cssText": 1, - "setCssAll": 2, - "str1": 6, - "str2": 4, - "prefixes.join": 3, - "substr": 2, - "testProps": 3, - "prefixed": 7, - "testDOMProps": 2, - "item": 4, - "item.bind": 1, - "testPropsAll": 17, - "ucProp": 5, - "prop.charAt": 1, - "prop.substr": 1, - "cssomPrefixes.join": 1, - "elem.getContext": 2, - ".getContext": 8, - ".fillText": 1, - "window.WebGLRenderingContext": 1, - "window.DocumentTouch": 1, - "DocumentTouch": 1, - "node.offsetTop": 1, - "window.postMessage": 1, - "window.openDatabase": 1, - "history.pushState": 1, - "mStyle.backgroundColor": 3, - "mStyle.background": 1, - ".style.textShadow": 1, - "mStyle.opacity": 1, - "str3": 2, - "str1.length": 1, - "mStyle.backgroundImage": 1, - "docElement.style": 1, - "node.offsetLeft": 1, - "node.offsetHeight": 2, - "document.styleSheets": 1, - "document.styleSheets.length": 1, - "cssText": 4, - "style.cssRules": 3, - "style.cssText": 1, - "/src/i.test": 1, - "cssText.indexOf": 1, - "rule.split": 1, - "elem.canPlayType": 10, - "Boolean": 2, - "bool.ogg": 2, - "bool.h264": 1, - "bool.webm": 1, - "bool.mp3": 1, - "bool.wav": 1, - "bool.m4a": 1, - "localStorage.setItem": 1, - "localStorage.removeItem": 1, - "sessionStorage.setItem": 1, - "sessionStorage.removeItem": 1, - "window.Worker": 1, - "window.applicationCache": 1, - "document.createElementNS": 6, - "ns.svg": 4, - ".createSVGRect": 1, - "div.firstChild.namespaceURI": 1, - "/SVGAnimate/.test": 1, - "toString.call": 2, - "/SVGClipPath/.test": 1, - "webforms": 2, - "props.length": 2, - "attrs.list": 2, - "window.HTMLDataListElement": 1, - "inputElemType": 5, - "defaultView": 2, - "inputElem.setAttribute": 1, - "inputElem.type": 1, - "inputElem.value": 2, - "inputElem.style.cssText": 1, - "inputElem.style.WebkitAppearance": 1, - "document.defaultView": 1, - "defaultView.getComputedStyle": 2, - ".WebkitAppearance": 1, - "inputElem.offsetHeight": 1, - "docElement.removeChild": 1, - "inputElem.checkValidity": 2, - "feature": 12, - "feature.toLowerCase": 2, - "classes.push": 1, - "Modernizr.input": 1, - "Modernizr.addTest": 2, - "docElement.className": 2, - "chaining.": 1, - "window.html5": 2, - "reSkip": 1, - "saveClones": 1, - "fieldset": 1, - "h1": 5, - "h2": 5, - "h3": 3, - "h4": 3, - "h5": 1, - "h6": 1, - "img": 1, - "label": 2, - "li": 19, - "ol": 1, - "span": 1, - "strong": 1, - "tfoot": 1, - "th": 1, - "ul": 1, - "supportsHtml5Styles": 5, - "supportsUnknownElements": 3, - "//if": 2, - "implemented": 1, - "assume": 1, - "Styles": 1, - "Chrome": 2, - "additional": 1, - "solve": 1, - "node.hidden": 1, - ".display": 1, - "a.childNodes.length": 1, - "frag.cloneNode": 1, - "frag.createDocumentFragment": 1, - "frag.createElement": 2, - "addStyleSheet": 2, - "ownerDocument.createElement": 3, - "ownerDocument.getElementsByTagName": 1, - "ownerDocument.documentElement": 1, - "p.innerHTML": 1, - "parent.insertBefore": 1, - "p.lastChild": 1, - "parent.firstChild": 1, - "getElements": 2, - "html5.elements": 1, - "elements.split": 1, - "shivMethods": 2, - "docCreateElement": 5, - "docCreateFragment": 2, - "ownerDocument.createDocumentFragment": 2, - "//abort": 1, - "shiv": 1, - "html5.shivMethods": 1, - "saveClones.test": 1, - "node.canHaveChildren": 1, - "reSkip.test": 1, - "frag.appendChild": 1, - "html5": 3, - "shivDocument": 3, - "shived": 5, - "ownerDocument.documentShived": 2, - "html5.shivCSS": 1, - "options.elements": 1, - "options.shivCSS": 1, - "options.shivMethods": 1, - "Modernizr._version": 1, - "Modernizr._prefixes": 1, - "Modernizr._domPrefixes": 1, - "Modernizr._cssomPrefixes": 1, - "Modernizr.mq": 1, - "Modernizr.hasEvent": 1, - "Modernizr.testProp": 1, - "Modernizr.testAllProps": 1, - "Modernizr.testStyles": 1, - "Modernizr.prefixed": 1, - "docElement.className.replace": 1, - "js": 1, - "classes.join": 1, - "this.document": 1, - "PEG.parser": 1, - "quote": 3, - "result0": 264, - "result1": 81, - "result2": 77, - "parse_singleQuotedCharacter": 3, - "result1.push": 3, - "input.charCodeAt": 18, - "pos": 197, - "reportFailures": 64, - "matchFailed": 40, - "pos1": 63, - "chars": 1, - "chars.join": 1, - "pos0": 51, - "parse_simpleSingleQuotedCharacter": 2, - "parse_simpleEscapeSequence": 3, - "parse_zeroEscapeSequence": 3, - "parse_hexEscapeSequence": 3, - "parse_unicodeEscapeSequence": 3, - "parse_eolEscapeSequence": 3, - "pos2": 22, - "parse_eolChar": 6, - "input.length": 9, - "input.charAt": 21, - "char_": 9, - "parse_class": 1, - "result3": 35, - "result4": 12, - "result5": 4, - "parse_classCharacterRange": 3, - "parse_classCharacter": 5, - "result2.push": 1, - "parse___": 2, - "inverted": 4, - "partsConverted": 2, - "part.data": 1, - "rawText": 5, - "part.rawText": 1, - "ignoreCase": 1, - "begin": 1, - "begin.data.charCodeAt": 1, - "end.data.charCodeAt": 1, - "this.SyntaxError": 2, - "begin.rawText": 2, - "end.rawText": 2, - "begin.data": 1, - "end.data": 1, - "parse_bracketDelimitedCharacter": 2, - "quoteForRegexpClass": 1, - "parse_simpleBracketDelimitedCharacter": 2, - "parse_digit": 3, - "recognize": 1, - "input.substr": 9, - "parse_hexDigit": 7, - "String.fromCharCode": 4, - "parse_eol": 4, - "eol": 2, - "parse_letter": 1, - "parse_lowerCaseLetter": 2, - "parse_upperCaseLetter": 2, - "parse_whitespace": 3, - "parse_comment": 3, - "result0.push": 1, - "parse_singleLineComment": 2, - "parse_multiLineComment": 2, - "u2029": 2, - "x0B": 1, - "uFEFF": 1, - "u1680": 1, - "u180E": 1, - "u2000": 1, - "u200A": 1, - "u202F": 1, - "u205F": 1, - "u3000": 1, - "cleanupExpected": 2, - "expected": 12, - "expected.sort": 1, - "lastExpected": 3, - "cleanExpected": 2, - "expected.length": 4, - "cleanExpected.push": 1, - "computeErrorPosition": 2, - "line": 14, - "column": 8, - "seenCR": 5, - "rightmostFailuresPos": 2, - "parseFunctions": 1, - "startRule": 1, - "errorPosition": 1, - "rightmostFailuresExpected": 1, - "errorPosition.line": 1, - "errorPosition.column": 1, - "toSource": 1, - "this._source": 1, - "result.SyntaxError": 1, - "buildMessage": 2, - "expectedHumanized": 5, - "foundHumanized": 3, - "expected.slice": 1, - "this.expected": 1, - "this.found": 1, - "this.message": 3, - "this.line": 3, - "this.column": 1, - "result.SyntaxError.prototype": 1, - "Error.prototype": 1, - "steelseries": 10, - "n.charAt": 1, - "n.substring": 1, - "i.substring": 3, - "this.color": 1, - "ui": 31, - "/255": 1, - "t.getRed": 4, - "t.getGreen": 4, - "t.getBlue": 4, - "t.getAlpha": 4, - "i.getRed": 1, - "i.getGreen": 1, - "i.getBlue": 1, - "i.getAlpha": 1, - "*f": 2, - "w/r": 1, - "p/r": 1, - "s/r": 1, - "o/r": 1, - "e*u": 1, - ".toFixed": 3, - "l*u": 1, - "c*u": 1, - "h*u": 1, - "vr": 20, - "Math.floor": 26, - "Math.log10": 1, - "n/Math.pow": 1, - "": 1, - "beginPath": 12, - "moveTo": 10, - "lineTo": 22, - "quadraticCurveTo": 4, - "closePath": 8, - "stroke": 7, - "canvas": 22, - "width=": 17, - "height=": 17, - "ii": 29, - "getContext": 26, - "2d": 26, - "ft": 70, - "fillStyle=": 13, - "rect": 3, - "fill": 10, - "getImageData": 1, - "wt": 26, - "32": 1, - "62": 1, - "84": 1, - "94": 1, - "ar": 20, - "255": 3, - "max": 1, - "min": 2, - ".5": 7, - "u/": 3, - "/u": 3, - "f/": 1, - "vt": 50, - "n*6": 2, - "i*": 3, - "h*t": 1, - "*t": 3, - "f*255": 1, - "u*255": 1, - "r*255": 1, - "st": 59, - "n/255": 1, - "t/255": 1, - "i/255": 1, - "f/r": 1, - "/f": 3, - "<0?0:n>": 1, - "si": 23, - "ti": 39, - "Math.round": 7, - "/r": 1, - "u*r": 1, - "ni": 30, - "tt": 53, - "ei": 26, - "ot": 43, - "i.gaugeType": 6, - "steelseries.GaugeType.TYPE4": 2, - "i.size": 6, - "i.minValue": 10, - "i.maxValue": 10, - "i.niceScale": 10, - "i.threshold": 10, - "/2": 25, - "i.section": 8, - "i.area": 4, - "lu": 10, - "i.titleString": 10, - "au": 10, - "i.unitString": 10, - "hu": 11, - "i.frameDesign": 10, - "steelseries.FrameDesign.METAL": 7, - "wu": 9, - "i.frameVisible": 10, - "i.backgroundColor": 10, - "steelseries.BackgroundColor.DARK_GRAY": 7, - "i.backgroundVisible": 10, - "pt": 48, - "i.pointerType": 4, - "steelseries.PointerType.TYPE1": 3, - "i.pointerColor": 4, - "steelseries.ColorDef.RED": 7, - "ee": 2, - "i.knobType": 4, - "steelseries.KnobType.STANDARD_KNOB": 14, - "fi": 26, - "i.knobStyle": 4, - "steelseries.KnobStyle.SILVER": 4, - "i.lcdColor": 8, - "steelseries.LcdColor.STANDARD": 9, - "i.lcdVisible": 8, - "eu": 13, - "i.lcdDecimals": 8, - "ye": 2, - "i.digitalFont": 8, - "pe": 2, - "i.fractionalScaleDecimals": 4, - "i.ledColor": 10, - "steelseries.LedColor.RED_LED": 7, - "ru": 14, - "i.ledVisible": 10, - "vf": 5, - "i.thresholdVisible": 8, - "kr": 17, - "i.minMeasuredValueVisible": 8, - "dr": 16, - "i.maxMeasuredValueVisible": 8, - "i.foregroundType": 6, - "steelseries.ForegroundType.TYPE1": 5, - "af": 5, - "i.foregroundVisible": 10, - "oe": 2, - "i.labelNumberFormat": 10, - "steelseries.LabelNumberFormat.STANDARD": 5, - "yr": 17, - "i.playAlarm": 10, - "uf": 5, - "i.alarmSound": 10, - "fe": 2, - "i.customLayer": 4, - "le": 1, - "i.tickLabelOrientation": 4, - "steelseries.GaugeType.TYPE1": 4, - "steelseries.TickLabelOrientation.TANGENT": 2, - "steelseries.TickLabelOrientation.NORMAL": 2, - "wr": 18, - "i.trendVisible": 4, - "hr": 17, - "i.trendColors": 4, - "steelseries.LedColor.GREEN_LED": 2, - "steelseries.LedColor.CYAN_LED": 2, - "sr": 21, - "i.useOdometer": 2, - "i.odometerParams": 2, - "wf": 4, - "i.odometerUseValue": 2, - "ki": 21, - "r.createElement": 11, - "ki.setAttribute": 2, - "yf": 3, - "ri": 24, - "ht": 34, - "ef": 5, - "steelseries.TrendState.OFF": 4, - "lr": 19, - "f*.06": 1, - "f*.29": 19, - "er": 19, - "f*.36": 4, - "et": 45, - "gi": 26, - "rr": 21, - "*lt": 9, - "r.getElementById": 7, - "u.save": 7, - "u.clearRect": 5, - "u.canvas.width": 7, - "u.canvas.height": 7, - "s/2": 2, - "k/2": 1, - "pf": 4, - ".6*s": 1, - "ne": 2, - ".4*k": 1, - "pr": 16, - "s/10": 1, - "ae": 2, - "hf": 4, - "k*.13": 2, - "s*.4": 1, - "sf": 5, - "rf": 5, - "k*.57": 1, - "tf": 5, - "k*.61": 1, - "Math.PI/2": 40, - "ue": 1, - "Math.PI/180": 5, - "ff": 5, - "ir": 23, - "nr": 22, - "ai": 21, - "yt": 32, - "fr": 21, - "oi": 23, - "lf": 5, - "re": 2, - "ai/": 2, - "h/vt": 1, - "*vt": 4, - "Math.ceil": 63, - "b/vt": 1, - "vt/": 3, - "ot.type": 10, - "Math.PI": 13, - "at/yt": 4, - "*Math.PI": 10, - "*ue": 1, - "ci/2": 1, - "wi": 24, - "nf": 7, - "wi.getContext": 2, - "di": 22, - "ut": 59, - "di.getContext": 2, - "fu": 13, - "hi": 15, - "f*.093457": 10, - "uu": 13, - "hi.getContext": 6, - "gt": 32, - "nu": 11, - "gt.getContext": 3, - "iu": 14, - "f*.028037": 6, - "se": 1, - "iu.getContext": 1, - "gr": 12, - "he": 1, - "gr.getContext": 1, - "vi": 16, - "tu": 13, - "vi.getContext": 2, - "yi": 17, - "ou": 13, - "yi.getContext": 2, - "pi": 24, - "kt": 24, - "pi.getContext": 2, - "pu": 9, - "li.getContext": 6, - "gu": 9, - "du": 10, - "ku": 9, - "yu": 10, - "su": 12, - "tr.getContext": 1, - "kf": 3, - "u.textAlign": 2, - "u.strokeStyle": 2, - "ei.textColor": 2, - "u.fillStyle": 2, - "steelseries.LcdColor.STANDARD_GREEN": 4, - "u.shadowColor": 2, - "u.shadowOffsetX": 2, - "s*.007": 3, - "u.shadowOffsetY": 2, - "u.shadowBlur": 2, - "u.font": 2, - "u.fillText": 2, - "n.toFixed": 2, - "bi*.05": 1, - "hf*.5": 1, - "pr*.38": 1, - "bi*.9": 1, - "u.restore": 6, - "te": 2, - "n.save": 35, - "n.drawImage": 14, - "k*.037383": 11, - "s*.523364": 2, - "k*.130841": 1, - "s*.130841": 1, - "k*.514018": 2, - "s*.831775": 1, - "k*.831775": 1, - "s*.336448": 1, - "k*.803738": 2, - "s*.626168": 1, - "n.restore": 35, - "ie": 2, - "t.width": 2, - "f*.046728": 1, - "t.height": 2, - "t.width*.9": 4, - "t.getContext": 2, - "n.createLinearGradient": 17, - ".1": 18, - "t.height*.9": 6, - "i.addColorStop": 27, - ".3": 8, - ".59": 4, - "n.fillStyle": 36, - "n.beginPath": 39, - "n.moveTo": 37, - "t.width*.5": 4, - "n.lineTo": 33, - "t.width*.1": 2, - "n.closePath": 34, - "n.fill": 17, - "n.strokeStyle": 27, - "n.stroke": 31, - "vu": 10, - "": 1, - "": 1, - "n.lineWidth": 30, - "s*.035": 2, - "at/yt*t": 1, - "at/yt*h": 1, - "yt/at": 1, - "n.translate": 93, - "n.rotate": 53, - "n.arc": 6, - "s*.365": 2, - "n.lineWidth/2": 2, - "df": 3, - "bt.labelColor.setAlpha": 1, - "n.textAlign": 12, - "n.textBaseline": 10, - "s*.04": 1, - "n.font": 34, - "bt.labelColor.getRgbaColor": 2, - "lt*fr": 1, - "s*.38": 2, - "s*.35": 1, - "s*.355": 1, - "s*.36": 1, - "s*.3": 1, - "s*.1": 1, - "oi/2": 2, - "b.toFixed": 1, - "c.toFixed": 2, - "le.type": 1, - "t.format": 7, - "n.fillText": 54, - "e.toFixed": 2, - "e.toPrecision": 1, - "n.frame": 22, - "n.background": 22, - "n.led": 20, - "n.pointer": 10, - "n.foreground": 22, - "n.trend": 4, - "n.odo": 2, - "rt": 45, - "uu.drawImage": 1, - "nu.drawImage": 3, - "se.drawImage": 1, - "steelseries.ColorDef.BLUE.dark.getRgbaColor": 6, - "he.drawImage": 1, - "steelseries.ColorDef.RED.medium.getRgbaColor": 6, - "ii.length": 2, - ".start": 12, - ".stop": 11, - ".color": 13, - "ui.length": 2, - "ut.save": 1, - "ut.translate": 3, - "ut.rotate": 1, - "ut.drawImage": 2, - "s*.475": 1, - "ut.restore": 1, - "steelseries.Odometer": 1, - "_context": 1, - "f*.075": 1, - "decimals": 1, - "wt.decimals": 1, - "wt.digits": 2, - "valueForeColor": 1, - "wt.valueForeColor": 1, - "valueBackColor": 1, - "wt.valueBackColor": 1, - "decimalForeColor": 1, - "wt.decimalForeColor": 1, - "decimalBackColor": 1, - "wt.decimalBackColor": 1, - "font": 1, - "wt.font": 1, - "tr.width": 1, - "nt": 75, - "bt.labelColor": 2, - "pt.type": 6, - "steelseries.TrendState.UP": 2, - "steelseries.TrendState.STEADY": 2, - "steelseries.TrendState.DOWN": 2, - "dt": 30, - "wi.width": 1, - "wi.height": 1, - "di.width": 1, - "di.height": 1, - "hi.width": 3, - "hi.height": 3, - "gt.width": 2, - "gt.height": 1, - "vi.width": 1, - "vi.height": 1, - "yi.width": 1, - "yi.height": 1, - "pi.width": 1, - "pi.height": 1, - "li.width": 3, - "li.height": 3, - "gf": 2, - "yf.repaint": 1, - "ur": 20, - "e3": 5, - "this.setValue": 7, - "": 5, - "ki.pause": 1, - "ki.play": 1, - "this.repaint": 126, - "this.getValue": 7, - "this.setOdoValue": 1, - "this.getOdoValue": 1, - "this.setValueAnimated": 7, - "t.playing": 1, - "t.stop": 1, - "Tween": 11, - "Tween.regularEaseInOut": 6, - "t.onMotionChanged": 1, - "n.target._pos": 7, - "": 1, - "i.repaint": 1, - "t.start": 1, - "this.resetMinMeasuredValue": 4, - "this.resetMaxMeasuredValue": 4, - "this.setMinMeasuredValueVisible": 4, - "this.setMaxMeasuredValueVisible": 4, - "this.setMaxMeasuredValue": 3, - "this.setMinMeasuredValue": 3, - "this.setTitleString": 4, - "this.setUnitString": 4, - "this.setMinValue": 4, - "this.getMinValue": 3, - "this.setMaxValue": 3, - "this.getMaxValue": 4, - "this.setThreshold": 4, - "this.setArea": 1, - "foreground": 30, - "this.setSection": 4, - "this.setThresholdVisible": 4, - "this.setLcdDecimals": 3, - "this.setFrameDesign": 7, - "this.setBackgroundColor": 7, - "pointer": 28, - "this.setForegroundType": 5, - "this.setPointerType": 3, - "this.setPointerColor": 4, - "this.setLedColor": 5, - "led": 18, - "this.setLcdColor": 5, - "this.setTrend": 2, - "this.setTrendVisible": 2, - "trend": 2, - "odo": 1, - "u.drawImage": 22, - "cu.setValue": 1, - "of.state": 1, - "u.translate": 8, - "u.rotate": 4, - "u.canvas.width*.4865": 2, - "u.canvas.height*.105": 2, - "s*.006": 1, - "kt.clearRect": 1, - "kt.save": 1, - "kt.translate": 2, - "kt.rotate": 1, - "kt.drawImage": 1, - "kt.restore": 1, - "i.useSectionColors": 4, - "i.valueColor": 6, - "i.valueGradient": 4, - "i.useValueGradient": 4, - "yi.setAttribute": 2, - "e/2": 2, - "ut/2": 4, - "e/10": 3, - "ut*.13": 1, - "e*.4": 1, - "or/2": 1, - "e*.116822": 3, - "e*.485981": 3, - "s*.093457": 5, - "e*.53": 1, - "ut*.61": 1, - "s*.06": 1, - "s*.57": 1, - "dt.type": 4, - "l/Math.PI*180": 4, - "l/et": 8, - "Math.PI/3": 1, - "ft/2": 2, - "Math.PI/": 1, - "ai.getContext": 2, - "s*.060747": 2, - "s*.023364": 2, - "ri.getContext": 6, - "yt.getContext": 5, - "si.getContext": 4, - "ci/": 2, - "f/ht": 1, - "*ht": 8, - "h/ht": 1, - "ht/": 2, - "*kt": 5, - "angle": 1, - "*st": 1, - "n.value": 4, - "tu.drawImage": 1, - "gr.drawImage": 3, - "at.getImageData": 1, - "at.drawImage": 1, - "bt.length": 4, - "ii.push": 1, - "Math.abs": 19, - "ai.width": 1, - "ai.height": 1, - "ri.width": 3, - "ri.height": 3, - "yt.width": 2, - "yt.height": 2, - "si.width": 2, - "si.height": 2, - "s*.085": 1, - "e*.35514": 2, - ".107476*ut": 1, - ".897195*ut": 1, - "t.addColorStop": 6, - ".22": 1, - ".76": 1, - "s*.075": 1, - ".112149*ut": 1, - ".892523*ut": 1, - "r.addColorStop": 6, - "e*.060747": 2, - "e*.023364": 2, - "n.createRadialGradient": 4, - ".030373*e": 1, - "u.addColorStop": 14, - "i*kt": 1, - "n.rect": 4, - "n.canvas.width": 3, - "n.canvas.height": 3, - "n.canvas.width/2": 6, - "n.canvas.height/2": 4, - "u.createRadialGradient": 1, - "t.light.getRgbaColor": 2, - "t.dark.getRgbaColor": 2, - "ni.textColor": 2, - "e*.007": 5, - "oi*.05": 1, - "or*.5": 1, - "cr*.38": 1, - "oi*.9": 1, - "ei.labelColor.setAlpha": 1, - "e*.04": 1, - "ei.labelColor.getRgbaColor": 2, - "st*di": 1, - "e*.28": 1, - "e*.1": 1, - "e*.0375": 1, - "h.toFixed": 3, - "df.type": 1, - "u.toFixed": 2, - "u.toPrecision": 1, - "kf.repaint": 1, - "": 3, - "yi.pause": 1, - "yi.play": 1, - "ti.playing": 1, - "ti.stop": 1, - "ti.onMotionChanged": 1, - "t.repaint": 4, - "ti.start": 1, - "this.setValueColor": 3, - "this.setSectionActive": 2, - "this.setGradient": 2, - "this.setGradientActive": 2, - "useGradient": 2, - "n/lt*": 1, - "vi.getEnd": 1, - "vi.getStart": 1, - "s/c": 1, - "vi.getColorAt": 1, - ".getRgbaColor": 3, - "": 1, - "e.medium.getHexColor": 1, - "i.medium.getHexColor": 1, - "n*kt": 1, - "pu.state": 1, - "i.orientation": 2, - "steelseries.Orientation.NORTH": 2, - "hi.setAttribute": 2, - "steelseries.GaugeType.TYPE5": 1, - "kt/at": 2, - "f.clearRect": 2, - "f.canvas.width": 3, - "f.canvas.height": 3, - "h/2": 1, - "k*.733644": 1, - ".455*h": 1, - ".51*k": 1, - "bi/": 2, - "l/ot": 1, - "*ot": 2, - "d/ot": 1, - "ot/": 1, - "ui.getContext": 4, - "u*.093457": 10, - "ii.getContext": 5, - "st.getContext": 2, - "u*.028037": 6, - "hr.getContext": 1, - "er.getContext": 1, - "fi.getContext": 4, - "kr.type": 1, - "ft.type": 1, - "h*.44": 3, - "k*.8": 1, - "k*.16": 1, - "h*.2": 2, - "k*.446666": 2, - "h*.8": 1, - "u*.046728": 1, - "h*.035": 1, - "kt/at*t": 1, - "kt/at*l": 1, - "at/kt": 1, - "h*.365": 2, - "it.labelColor.getRgbaColor": 4, - "vertical": 1, - ".046728*h": 1, - "n.measureText": 2, - ".width": 2, - "k*.4": 1, - "h*.3": 1, - "k*.47": 1, - "it.labelColor.setAlpha": 1, - "steelseries.Orientation.WEST": 6, - "h*.04": 1, - "ht*yi": 1, - "h*.41": 1, - "h*.415": 1, - "h*.42": 1, - "h*.48": 1, - "h*.0375": 1, - "d.toFixed": 1, - "f.toFixed": 1, - "i.toFixed": 2, - "i.toPrecision": 1, - "u/2": 5, - "cr.drawImage": 3, - "ar.drawImage": 1, - "or.drawImage": 1, - "or.restore": 1, - "rr.drawImage": 1, - "rr.restore": 1, - "gt.length": 2, - "p.save": 2, - "p.translate": 8, - "p.rotate": 4, - "p.restore": 3, - "ni.length": 2, - "p.drawImage": 1, - "h*.475": 1, - "k*.32": 1, - "h*1.17": 2, - "it.labelColor": 2, - "ut.type": 6, - "ui.width": 2, - "ui.height": 2, - "ii.width": 2, - "ii.height": 2, - "st.width": 1, - "st.height": 1, - "fi.width": 2, - "fi.height": 2, - "wu.repaint": 1, - "": 2, - "hi.pause": 1, - "hi.play": 1, - "dt.playing": 2, - "dt.stop": 2, - "dt.onMotionChanged": 2, - "": 1, - "dt.start": 2, - "f.save": 5, - "f.drawImage": 9, - "f.translate": 10, - "f.rotate": 5, - "f.canvas.width*.4865": 2, - "f.canvas.height*.27": 2, - "f.restore": 5, - "h*.006": 1, - "h*1.17/2": 1, - "et.clearRect": 1, - "et.save": 1, - "et.translate": 2, - "et.rotate": 1, - "et.drawImage": 1, - "et.restore": 1, - "i.width": 6, - "i.height": 6, - "fi.setAttribute": 2, - "l.type": 26, - "y.clearRect": 2, - "y.canvas.width": 3, - "y.canvas.height": 3, - "*.05": 4, - "f/2": 13, - "it/2": 2, - ".053": 1, - ".038": 1, - "*u": 1, - "u/22": 2, - ".89*f": 2, - "u/10": 2, - "ei/": 1, - "e/ut": 1, - "*ut": 2, - "s/ut": 1, - "ut/": 1, - "kt.getContext": 2, - "rt.getContext": 2, - "dt.getContext": 1, - "ni.getContext": 4, - "lt.textColor": 2, - "n.shadowColor": 2, - "n.shadowOffsetX": 4, - "u*.003": 2, - "n.shadowOffsetY": 4, - "n.shadowBlur": 4, - "u*.004": 1, - "u*.007": 2, - "u*.009": 1, - "f*.571428": 8, - "u*.88": 2, - "u*.055": 2, - "f*.7": 2, - "f*.695": 4, - "f*.18": 4, - "u*.22": 3, - "u*.15": 2, - "t.toFixed": 2, - "i.getContext": 2, - "t.save": 2, - "t.createLinearGradient": 2, - "i.height*.9": 6, - "t.fillStyle": 2, - "t.beginPath": 4, - "t.moveTo": 4, - "i.height*.5": 2, - "t.lineTo": 8, - "i.width*.9": 6, - "t.closePath": 4, - "i.width*.5": 2, - "t.fill": 2, - "t.strokeStyle": 2, - "t.stroke": 2, - "t.restore": 2, - "w.labelColor.setAlpha": 1, - "f*.1": 5, - "w.labelColor.getRgbaColor": 2, - ".34*f": 2, - ".36*f": 6, - ".33*f": 2, - ".32*f": 2, - "u*.12864": 3, - "u*.856796": 1, - "u*.7475": 1, - "c/": 2, - ".65*u": 1, - ".63*u": 3, - ".66*u": 1, - ".67*u": 1, - "f*.142857": 4, - "f*.871012": 2, - "f*.19857": 1, - "f*.82": 1, - "v/": 1, - "tickCounter": 4, - "currentPos": 20, - "tickCounter*a": 2, - "r.toFixed": 8, - "f*.28": 6, - "r.toPrecision": 4, - "u*.73": 3, - "ui/2": 1, - "vi.drawImage": 2, - "yi.drawImage": 2, - "hr.drawImage": 2, - "k.save": 1, - ".856796": 2, - ".7475": 2, - ".12864": 2, - "u*i": 1, - "u*r*": 1, - "bt/": 1, - "k.translate": 2, - "f*.365": 2, - "nt/2": 2, - ".871012": 3, - ".82": 2, - ".142857": 5, - ".19857": 6, - "f*r*bt/": 1, - "f*": 5, - "u*.58": 1, - "k.drawImage": 3, - "k.restore": 1, - "kt.width": 1, - "b*.093457": 2, - "kt.height": 1, - "d*.093457": 2, - "rt.width": 1, - "rt.height": 1, - "ni.width": 2, - "ni.height": 2, - "hu.repaint": 1, - "w.labelColor": 1, - "i*.12864": 2, - "i*.856796": 2, - "i*.7475": 1, - "t*.871012": 1, - "t*.142857": 8, - "t*.82": 1, - "t*.19857": 1, - "steelseries.BackgroundColor.CARBON": 2, - "steelseries.BackgroundColor.PUNCHED_SHEET": 2, - "steelseries.BackgroundColor.STAINLESS": 2, - "steelseries.BackgroundColor.BRUSHED_STAINLESS": 2, - "steelseries.BackgroundColor.TURNED": 2, - "r.setAlpha": 8, - ".05": 2, - "p.addColorStop": 4, - "r.getRgbaColor": 8, - ".15": 2, - ".48": 7, - ".49": 4, - "n.fillRect": 16, - "t*.435714": 4, - "i*.435714": 4, - "i*.142857": 1, - "b.addColorStop": 4, - ".69": 1, - ".7": 1, - ".4": 2, - "t*.007142": 4, - "t*.571428": 2, - "i*.007142": 4, - "i*.571428": 2, - "t*.45": 4, - "t*.114285": 1, - "t/2": 1, - "i*.0486/2": 1, - "i*.053": 1, - "i*.45": 4, - "i*.114285": 1, - "i/2": 1, - "t*.025": 1, - "t*.053": 1, - "ut.addColorStop": 2, - "wt.medium.getRgbaColor": 3, - "wt.light.getRgbaColor": 2, - "i*.05": 2, - "t*.05": 2, - "ot.addColorStop": 2, - ".98": 1, - "Math.PI*.5": 2, - "f*.05": 2, - ".049*t": 8, - ".825*t": 9, - "n.bezierCurveTo": 42, - ".7975*t": 2, - ".0264*t": 4, - ".775*t": 3, - ".0013*t": 12, - ".85*t": 2, - ".8725*t": 3, - ".0365*t": 9, - ".8075*t": 4, - ".7925*t": 3, - ".0214*t": 13, - ".7875*t": 4, - ".7825*t": 5, - ".0189*t": 4, - ".785*t": 1, - ".8175*t": 2, - ".815*t": 1, - ".8125*t": 2, - ".8*t": 2, - ".0377*t": 2, - ".86*t": 4, - ".0415*t": 2, - ".845*t": 1, - ".0465*t": 2, - ".805*t": 2, - ".0113*t": 10, - ".0163*t": 7, - ".8025*t": 1, - ".8225*t": 3, - ".8425*t": 1, - ".03*t": 2, - ".115*t": 5, - ".1075*t": 2, - ".1025*t": 8, - ".0038*t": 2, - ".76*t": 4, - ".7675*t": 2, - ".7725*t": 6, - ".34": 1, - ".0516*t": 7, - ".8525*t": 2, - ".0289*t": 8, - ".875*t": 3, - ".044*t": 1, - ".0314*t": 5, - ".12*t": 4, - ".0875*t": 3, - ".79*t": 1, - "": 5, - "fi.pause": 1, - "fi.play": 1, - "yt.playing": 1, - "yt.stop": 1, - "yt.onMotionChanged": 1, - "t.setValue": 1, - "yt.start": 1, - "mminMeasuredValue": 1, - "": 1, - "setMaxValue=": 1, - "y.drawImage": 6, - "u*n": 2, - "u*i*": 2, - "at/": 1, - "f*.34": 3, - "gt.height/2": 2, - "f*i*at/": 1, - "u*.65": 2, - "ft/": 1, - "dt.width": 1, - "dt.height/2": 2, - ".8": 1, - ".14857": 1, - "f*i*ft/": 1, - "y.save": 1, - "y.restore": 1, - "oi.setAttribute": 2, - "v.clearRect": 2, - "v.canvas.width": 4, - "v.canvas.height": 4, - ".053*e": 1, - "e/22": 2, - "e/1.95": 1, - "u/vt": 1, - "s/vt": 1, - "g.width": 4, - "f*.121428": 2, - "g.height": 4, - "e*.012135": 2, - "f*.012135": 2, - "e*.121428": 2, - "g.getContext": 2, - "d.width": 4, - "d.height": 4, - "d.getContext": 2, - "pt.getContext": 2, - "ci.getContext": 1, - "kt.textColor": 2, - "f*.007": 2, - "f*.009": 1, - "e*.009": 1, - "e*.88": 2, - "e*.055": 2, - "e*.22": 3, - "e*.15": 2, - "k.labelColor.setAlpha": 1, - "k.labelColor.getRgbaColor": 5, - "e*.12864": 3, - "e*.856796": 3, - ".65*e": 1, - ".63*e": 3, - ".66*e": 1, - ".67*e": 1, - "g/": 1, - "tickCounter*h": 2, - "e*.73": 3, - "ti/2": 1, - "n.bargraphled": 4, - "nr.drawImage": 2, - "tr.drawImage": 2, - "nt.save": 1, - "e*.728155*": 1, - "st/": 1, - "nt.translate": 2, - "rt/2": 2, - "f*.856796": 2, - "f*.12864": 2, - "*st/": 1, - "e*.58": 1, - "nt.drawImage": 3, - "nt.restore": 1, - "f*.012135/2": 1, - "ft.push": 1, - "*c": 2, - "y*.121428": 2, - "w*.012135": 2, - "y*.012135": 2, - "w*.121428": 2, - "y*.093457": 2, - "w*.093457": 2, - "pt.width": 1, - "pt.height": 1, - "ku.repaint": 1, - "k.labelColor": 1, - "r*": 2, - "r*1.014": 5, - "t*.856796": 1, - "t*.12864": 1, - "t*.13": 3, - "r*1.035": 4, - "f.setAlpha": 8, - ".047058": 2, - "rt.addColorStop": 4, - "f.getRgbaColor": 8, - ".145098": 1, - ".149019": 1, - "t*.15": 1, - "i*.152857": 1, - ".298039": 1, - "it.addColorStop": 4, - ".686274": 1, - ".698039": 1, - "i*.851941": 1, - "t*.121428": 1, - "i*.012135": 1, - "t*.012135": 1, - "i*.121428": 1, - "*r": 4, - "o/r*": 1, - "yt.getEnd": 2, - "yt.getStart": 2, - "lt/ct": 2, - "yt.getColorAt": 2, - "": 1, - "st.medium.getHexColor": 2, - "a.medium.getHexColor": 2, - "b/2": 2, - "e/r*": 1, - "": 1, - "v.createRadialGradient": 2, - "": 5, - "oi.pause": 1, - "oi.play": 1, - "": 1, - "bargraphled": 3, - "v.drawImage": 2, - "": 1, - "856796": 4, - "728155": 2, - "34": 2, - "12864": 2, - "142857": 2, - "65": 2, - "drawImage": 12, - "save": 27, - "restore": 14, - "repaint": 23, - "dr=": 1, - "128": 2, - "48": 1, - "w=": 4, - "lcdColor": 4, - "LcdColor": 4, - "STANDARD": 3, - "pt=": 5, - "lcdDecimals": 4, - "lt=": 4, - "unitString": 4, - "at=": 3, - "unitStringVisible": 4, - "ht=": 6, - "digitalFont": 4, - "bt=": 3, - "valuesNumeric": 4, - "ct=": 5, - "autoScroll": 2, - "section": 2, - "wt=": 3, - "getElementById": 4, - "clearRect": 8, - "v=": 5, - "floor": 13, - "ot=": 4, - "sans": 12, - "serif": 13, - "it=": 7, - "nt=": 5, - "et=": 6, - "kt=": 4, - "textAlign=": 7, - "strokeStyle=": 8, - "clip": 1, - "font=": 28, - "measureText": 4, - "toFixed": 3, - "fillText": 23, - "38": 5, - "o*.2": 1, - "<=o-4&&(e=0,c=!1),u.fillText(n,o-2-e,h*.5+v*.38)),u.restore()},dt=function(n,i,r,u){var>": 1, - "rt=": 3, - "095": 1, - "createLinearGradient": 6, - "addColorStop": 25, - "4c4c4c": 1, - "08": 1, - "666666": 2, - "92": 1, - "e6e6e6": 1, - "gradientStartColor": 1, - "tt=": 3, - "gradientFraction1Color": 1, - "gradientFraction2Color": 1, - "gradientFraction3Color": 1, - "gradientStopColor": 1, - "yt=": 4, - "31": 26, - "ut=": 6, - "rgb": 6, - "03": 1, - "49": 1, - "57": 1, - "83": 1, - "wt.repaint": 1, - "resetBuffers": 1, - "this.setScrolling": 1, - "w.textColor": 1, - "": 1, - "<=f[n].stop){t=et[n],i=ut[n];break}u.drawImage(t,0,0),kt(a,i)},this.repaint(),this},wr=function(n,t){t=t||{};var>": 1, - "64": 1, - "875": 2, - "textBaseline=": 4, - "textColor": 2, - "STANDARD_GREEN": 1, - "shadowColor=": 1, - "shadowOffsetX=": 1, - "05": 2, - "shadowOffsetY=": 1, - "shadowBlur=": 1, - "06": 1, - "46": 1, - "8": 2, - "setValue=": 2, - "setLcdColor=": 2, - "repaint=": 2, - "br=": 1, - "200": 2, - "st=": 3, - "decimalsVisible": 2, - "gt=": 1, - "textOrientationFixed": 2, - "frameDesign": 4, - "FrameDesign": 2, - "METAL": 2, - "frameVisible": 4, - "backgroundColor": 2, - "BackgroundColor": 1, - "DARK_GRAY": 1, - "vt=": 2, - "backgroundVisible": 2, - "pointerColor": 4, - "ColorDef": 2, - "RED": 1, - "foregroundType": 4, - "ForegroundType": 2, - "TYPE1": 2, - "foregroundVisible": 4, - "180": 26, - "ni=": 1, - "labelColor": 6, - "getRgbaColor": 21, - "translate": 38, - "360": 15, - "p.labelColor.getRgbaColor": 4, - "f*.38": 7, - "f*.37": 3, - "": 1, - "rotate": 31, - "u00b0": 8, - "41": 3, - "45": 5, - "25": 9, - "085": 4, - "100": 4, - "90": 3, - "21": 2, - "u221e": 2, - "135": 1, - "225": 1, - "75": 3, - "270": 1, - "315": 1, - "ti=": 2, - "200934": 2, - "434579": 4, - "163551": 5, - "560747": 4, - "lineWidth=": 6, - "lineCap=": 5, - "lineJoin=": 5, - "471962": 4, - "205607": 1, - "523364": 5, - "799065": 2, - "836448": 5, - "794392": 1, - "ii=": 2, - "350467": 5, - "130841": 1, - "476635": 2, - "bezierCurveTo": 6, - "490654": 3, - "345794": 3, - "509345": 1, - "154205": 1, - "350466": 1, - "dark": 2, - "light": 5, - "setAlpha": 8, - "70588": 4, - "59": 3, - "dt=": 2, - "285046": 5, - "514018": 6, - "21028": 1, - "481308": 4, - "280373": 3, - "495327": 2, - "504672": 2, - "224299": 1, - "289719": 1, - "714953": 5, - "789719": 1, - "719626": 3, - "7757": 1, - "71028": 1, - "ft=": 3, - "*10": 2, - "": 2, - "": 2, - "": 2, - "": 2, - "<-90&&e>": 2, - "<-180&&e>": 2, - "<-270&&e>": 2, - "d.playing": 2, - "d.stop": 2, - "d.onMotionChanged": 2, - "d.start": 2, - "s.save": 4, - "s.clearRect": 3, - "s.canvas.width": 4, - "s.canvas.height": 4, - "s.drawImage": 8, - "e*kt": 1, - "s.translate": 6, - "s.rotate": 3, - "s.fillStyle": 1, - "s.textAlign": 1, - "s.textBaseline": 1, - "s.restore": 6, - "s.font": 2, - "f*.15": 2, - "s.fillText": 2, - "f*.35": 26, - "f*.2": 1, - "k*Math.PI/180": 1, - "u.size": 4, - "u.frameDesign": 4, - "u.frameVisible": 4, - "u.backgroundColor": 4, - "u.backgroundVisible": 4, - "u.pointerType": 2, - "steelseries.PointerType.TYPE2": 1, - "u.pointerColor": 4, - "u.knobType": 4, - "u.knobStyle": 4, - "u.foregroundType": 4, - "u.foregroundVisible": 4, - "u.pointSymbols": 4, - "u.customLayer": 4, - "u.degreeScale": 4, - "u.roseVisible": 4, - "ft.getContext": 2, - "ut.getContext": 2, - "it.getContext": 2, - "ot.getContext": 3, - "et.getContext": 2, - "tt.labelColor.getRgbaColor": 2, - ".08*f": 1, - "f*.033": 1, - "st*10": 2, - ".substring": 2, - ".12*f": 2, - ".06*f": 2, - "tt.symbolColor.getRgbaColor": 1, - "st*2.5": 1, - "bt.type": 1, - "f*.53271": 6, - "e*.453271": 5, - "f*.5": 17, - "e*.149532": 8, - "f*.467289": 6, - "f*.453271": 2, - "e*.462616": 2, - "f*.443925": 9, - "e*.481308": 2, - "e*.5": 10, - "f*.556074": 9, - "f*.546728": 2, - ".471962*f": 5, - ".528036*f": 5, - "o.addColorStop": 4, - "h.light.getRgbaColor": 6, - ".46": 3, - ".47": 3, - "h.medium.getRgbaColor": 6, - "h.dark.getRgbaColor": 3, - "n.lineCap": 5, - "n.lineJoin": 5, - "e*.546728": 5, - "e*.850467": 4, - "e*.537383": 2, - "e*.518691": 2, - "s.addColorStop": 4, - "e*.490654": 2, - "e*.53271": 2, - "e*.556074": 3, - "e*.495327": 4, - "f*.528037": 2, - "f*.471962": 2, - "e*.504672": 4, - ".480099": 1, - "f*.006": 2, - "ft.width": 1, - "ft.height": 1, - "ut.width": 1, - "ut.height": 1, - "it.width": 1, - "it.height": 1, - "ot.width": 1, - "ot.height": 1, - "et.width": 1, - "et.height": 1, - "Tween.elasticEaseOut": 1, - "r.repaint": 1, - "this.setPointSymbols": 1, - "p*st": 1, - "b.clearRect": 1, - "b.save": 1, - "b.translate": 2, - "b.rotate": 1, - "b.drawImage": 1, - "b.restore": 1, - "u.pointerTypeLatest": 2, - "u.pointerTypeAverage": 2, - "steelseries.PointerType.TYPE8": 1, - "u.pointerColorAverage": 2, - "steelseries.ColorDef.BLUE": 1, - "u.lcdColor": 2, - "u.lcdVisible": 2, - "u.digitalFont": 2, - "u.section": 2, - "u.area": 2, - "u.lcdTitleStrings": 2, - "u.titleString": 2, - "u.useColorLabels": 2, - "this.valueLatest": 1, - "this.valueAverage": 1, - "Math.PI*2": 1, - "e.save": 2, - "e.clearRect": 1, - "e.canvas.width": 2, - "e.canvas.height": 2, - "f/10": 1, - "f*.3": 4, - "s*.12": 1, - "s*.32": 1, - "s*.565": 1, - "bt.getContext": 1, - "at.getContext": 1, - "vt.getContext": 1, - "lt.getContext": 1, - "wt.getContext": 1, - "e.textAlign": 1, - "e.strokeStyle": 1, - "ht.textColor": 2, - "e.fillStyle": 1, - "<0&&(n+=360),n=\"00\"+Math.round(n),n=n.substring(n.length,n.length-3),(ht===steelseries.LcdColor.STANDARD||ht===steelseries.LcdColor.STANDARD_GREEN)&&(e.shadowColor=\"gray\",e.shadowOffsetX=f*.007,e.shadowOffsetY=f*.007,e.shadowBlur=f*.007),e.font=pr?gr:br,e.fillText(n+\"\\u00b0\",f/2+gt*.05,(t?or:cr)+er*.5+ui*.38,gt*.9),e.restore()},wi=function(n,t,i,r,u){n.save(),n.strokeStyle=r,n.fillStyle=r,n.lineWidth=f*.035;var>": 1, - "arc": 2, - "365": 2, - "lineWidth": 1, - "lr=": 1, - "35": 1, - "355": 1, - "36": 2, - "bold": 1, - "04": 2, - "ct*5": 1, - "k.symbolColor.getRgbaColor": 1, - "ct*2.5": 1, - "ti.length": 1, - "kt.medium.getRgbaColor": 1, - ".04*f": 1, - "s*.29": 1, - "ii.medium.getRgbaColor": 1, - "s*.71": 1, - "rr.length": 1, - ".0467*f": 1, - "s*.5": 1, - "et.length": 2, - "ft.length": 2, - "": 1, - "ci=": 1, - "li=": 1, - "ai=": 1, - "ki=": 1, - "yi=": 1, - "setValueLatest=": 1, - "getValueLatest=": 1, - "setValueAverage=": 1, - "getValueAverage=": 1, - "setValueAnimatedLatest=": 1, - "playing": 2, - "regularEaseInOut": 2, - "onMotionChanged=": 2, - "_pos": 2, - "onMotionFinished=": 2, - "setValueAnimatedAverage=": 1, - "setArea=": 1, - "setSection=": 1, - "setFrameDesign=": 1, - "pi=": 1, - "setBackgroundColor=": 1, - "setForegroundType=": 1, - "si=": 1, - "setPointerColor=": 1, - "setPointerColorAverage=": 1, - "setPointerType=": 1, - "setPointerTypeAverage=": 1, - "ri=": 1, - "setPointSymbols=": 1, - "setLcdTitleStrings=": 1, - "fi=": 1, - "006": 1, - "ei=": 1, - "ru=": 1, - "WHITE": 1, - "037383": 1, - "056074": 1, - "7fd5f0": 2, - "3c4439": 2, - "72": 1, - "KEYWORDS": 2, - "array_to_hash": 11, - "RESERVED_WORDS": 2, - "KEYWORDS_BEFORE_EXPRESSION": 2, - "KEYWORDS_ATOM": 2, - "OPERATOR_CHARS": 1, - "RE_HEX_NUMBER": 1, - "RE_OCT_NUMBER": 1, - "RE_DEC_NUMBER": 1, - "OPERATORS": 2, - "WHITESPACE_CHARS": 2, - "PUNC_BEFORE_EXPRESSION": 2, - "PUNC_CHARS": 1, - "REGEXP_MODIFIERS": 1, - "UNICODE": 1, - "non_spacing_mark": 1, - "space_combining_mark": 1, - "connector_punctuation": 1, - "is_letter": 3, - "UNICODE.letter.test": 1, - "is_digit": 3, - "ch.charCodeAt": 1, - "//XXX": 1, - "out": 1, - "means": 1, - "is_alphanumeric_char": 3, - "is_unicode_combining_mark": 2, - "UNICODE.non_spacing_mark.test": 1, - "UNICODE.space_combining_mark.test": 1, - "is_unicode_connector_punctuation": 2, - "UNICODE.connector_punctuation.test": 1, - "is_identifier_start": 2, - "is_identifier_char": 1, - "zero": 2, - "joiner": 2, - "": 1, - "": 1, - "my": 1, - "ECMA": 1, - "PDF": 1, - "parse_js_number": 2, - "RE_HEX_NUMBER.test": 1, - "num.substr": 2, - "RE_OCT_NUMBER.test": 1, - "RE_DEC_NUMBER.test": 1, - "JS_Parse_Error": 2, - "message": 5, - "this.col": 2, - "ex": 3, - "ex.name": 1, - "this.stack": 2, - "ex.stack": 1, - "JS_Parse_Error.prototype.toString": 1, - "js_error": 2, - "is_token": 1, - "token": 5, - "token.type": 1, - "token.value": 1, - "EX_EOF": 3, - "tokenizer": 2, - "TEXT": 1, - "TEXT.replace": 1, - "uFEFF/": 1, - "tokpos": 1, - "tokline": 1, - "tokcol": 1, - "newline_before": 1, - "regex_allowed": 1, - "comments_before": 1, - "peek": 5, - "S.text.charAt": 2, - "S.pos": 4, - "signal_eof": 4, - "S.newline_before": 3, - "S.line": 2, - "S.col": 3, - "eof": 6, - "S.peek": 1, - "what": 2, - "S.text.indexOf": 1, - "start_token": 1, - "S.tokline": 3, - "S.tokcol": 3, - "S.tokpos": 3, - "is_comment": 2, - "S.regex_allowed": 1, - "HOP": 5, - "UNARY_POSTFIX": 1, - "nlb": 1, - "ret.comments_before": 1, - "S.comments_before": 2, - "skip_whitespace": 1, - "read_while": 2, - "pred": 2, - "parse_error": 3, - "read_num": 1, - "prefix": 6, - "has_e": 3, - "after_e": 5, - "has_x": 5, - "has_dot": 3, - "valid": 4, - "read_escaped_char": 1, - "hex_bytes": 3, - "digit": 3, - "read_string": 1, - "with_eof_error": 1, - "comment1": 1, - "Unterminated": 2, - "multiline": 1, - "comment2": 1, - "WARNING": 1, - "***": 1, - "Found": 1, - "warn": 3, - "tok": 1, - "read_name": 1, - "backslash": 2, - "Expecting": 1, - "UnicodeEscapeSequence": 1, - "uXXXX": 1, - "Unicode": 1, - "identifier": 1, - "regular": 1, - "regexp": 5, - "operator": 14, - "punc": 27, - "atom": 5, - "keyword": 11, - "Unexpected": 3, - "void": 1, - "<\",>": 1, - "<=\",>": 1, - "debugger": 2, - "const": 2, - "stat": 1, - "Label": 1, - "without": 1, - "statement": 1, - "defun": 1, - "Name": 1, - "Missing": 1, - "catch/finally": 1, - "blocks": 1, - "unary": 2, - "dot": 2, - "postfix": 1, - "Invalid": 2, - "binary": 1, - "conditional": 1, - "assign": 1, - "assignment": 1, - "seq": 1, - "member": 2, - "array.length": 1, - "Object.prototype.hasOwnProperty.call": 1, - "exports.tokenizer": 1, - "exports.parse": 1, - "parse": 1, - "exports.slice": 1, - "exports.curry": 1, - "curry": 1, - "exports.member": 1, - "exports.array_to_hash": 1, - "exports.PRECEDENCE": 1, - "PRECEDENCE": 1, - "exports.KEYWORDS_ATOM": 1, - "exports.RESERVED_WORDS": 1, - "exports.KEYWORDS": 1, - "exports.ATOMIC_START_TOKEN": 1, - "ATOMIC_START_TOKEN": 1, - "exports.OPERATORS": 1, - "exports.is_alphanumeric_char": 1, - "exports.set_logger": 1, - "logger": 2 - }, - "JSON": { - "{": 143, - "}": 143, - "[": 165, - "]": 165, - "true": 3 - }, - "Julia": { - "##": 5, - "Test": 1, - "case": 1, - "from": 1, - "Issue": 1, - "#445": 1, - "#STOCKCORR": 1, - "-": 11, - "The": 1, - "original": 1, - "unoptimised": 1, - "code": 1, - "that": 1, - "simulates": 1, - "two": 2, - "correlated": 1, - "assets": 1, - "function": 1, - "stockcorr": 1, - "(": 13, - ")": 13, - "Correlated": 1, - "asset": 1, - "information": 1, - "CurrentPrice": 3, - "[": 20, - "]": 20, - "#": 11, - "Initial": 1, - "Prices": 1, - "of": 6, - "the": 2, - "stocks": 1, - "Corr": 2, - ";": 1, - "Correlation": 1, - "Matrix": 2, - "T": 5, - "Number": 2, - "days": 3, - "to": 1, - "simulate": 1, - "years": 1, - "n": 4, - "simulations": 1, - "dt": 3, - "/250": 1, - "Time": 1, - "step": 1, - "year": 1, - "Div": 3, - "Dividend": 1, - "Vol": 5, - "Volatility": 1, - "Market": 1, - "Information": 1, - "r": 3, - "Risk": 1, - "free": 1, - "rate": 1, - "Define": 1, - "storages": 1, - "SimulPriceA": 5, - "zeros": 2, - "Simulated": 2, - "Price": 2, - "Asset": 2, - "A": 1, - "SimulPriceB": 5, - "B": 1, - "Generating": 1, - "paths": 1, - "stock": 1, - "prices": 1, - "by": 2, - "Geometric": 1, - "Brownian": 1, - "Motion": 1, - "UpperTriangle": 2, - "chol": 1, - "Cholesky": 1, - "decomposition": 1, - "for": 2, - "i": 5, - "Wiener": 1, - "randn": 1, - "CorrWiener": 1, - "Wiener*UpperTriangle": 1, - "j": 7, - "*exp": 2, - "/2": 2, - "*dt": 2, - "+": 2, - "*sqrt": 2, - "*CorrWiener": 2, - "end": 3, - "return": 1 - }, - "Kotlin": { - "package": 1, - "addressbook": 1, - "class": 5, - "Contact": 1, - "(": 15, - "val": 16, - "name": 2, - "String": 7, - "emails": 1, - "List": 3, - "": 1, - "addresses": 1, - "": 1, - "phonenums": 1, - "": 1, - ")": 15, - "EmailAddress": 1, - "user": 1, - "host": 1, - "PostalAddress": 1, - "streetAddress": 1, - "city": 1, - "zip": 1, - "state": 2, - "USState": 1, - "country": 3, - "Country": 7, - "{": 6, - "assert": 1, - "null": 3, - "xor": 1, - "Countries": 2, - "[": 3, - "]": 3, - "}": 6, - "PhoneNumber": 1, - "areaCode": 1, - "Int": 1, - "number": 1, - "Long": 1, - "object": 1, - "fun": 1, - "get": 2, - "id": 2, - "CountryID": 1, - "countryTable": 2, - "private": 2, - "var": 1, - "table": 5, - "Map": 2, - "": 2, - "if": 1, - "HashMap": 1, - "for": 1, - "line": 3, - "in": 1, - "TextFile": 1, - ".lines": 1, - "stripWhiteSpace": 1, - "true": 1, - "return": 1 - }, - "Lasso": { - "<": 7, - "LassoScript": 1, - "//": 169, - "JSON": 2, - "Encoding": 1, - "and": 52, - "Decoding": 1, - "Copyright": 1, - "-": 2248, - "LassoSoft": 1, - "Inc.": 1, - "": 1, - "": 1, - "": 1, - "This": 5, - "tag": 11, - "is": 35, - "now": 23, - "incorporated": 1, - "in": 46, - "Lasso": 15, - "If": 4, - "(": 640, - "Lasso_TagExists": 1, - ")": 639, - "False": 1, - ";": 573, - "Define_Tag": 1, - "Namespace": 1, - "Required": 1, - "Optional": 1, - "Local": 7, - "Map": 3, - "r": 8, - "n": 30, - "t": 8, - "f": 2, - "b": 2, - "output": 30, - "newoptions": 1, - "options": 2, - "array": 20, - "set": 10, - "list": 4, - "queue": 2, - "priorityqueue": 2, - "stack": 2, - "pair": 1, - "map": 23, - "[": 22, - "]": 23, - "literal": 3, - "string": 59, - "integer": 30, - "decimal": 5, - "boolean": 4, - "null": 26, - "date": 23, - "temp": 12, - "object": 7, - "{": 18, - "}": 18, - "client_ip": 1, - "client_address": 1, - "__jsonclass__": 6, - "deserialize": 2, - "": 3, - "": 3, - "Decode_JSON": 2, - "Decode_": 1, - "value": 14, - "consume_string": 1, - "ibytes": 9, - "unescapes": 1, - "u": 1, - "UTF": 4, - "%": 14, - "QT": 4, - "TZ": 2, - "T": 3, - "consume_token": 1, - "obytes": 3, - "delimit": 7, - "true": 12, - "false": 8, - ".": 5, - "consume_array": 1, - "consume_object": 1, - "key": 3, - "val": 1, - "native": 2, - "comment": 2, - "http": 6, - "//www.lassosoft.com/json": 1, - "start": 5, - "Literal": 2, - "String": 1, - "Object": 2, - "JSON_RPCCall": 1, - "RPCCall": 1, - "JSON_": 1, - "method": 7, - "params": 11, - "id": 7, - "host": 6, - "//localhost/lassoapps.8/rpc/rpc.lasso": 1, - "request": 2, - "result": 6, - "JSON_Records": 3, - "KeyField": 1, - "ReturnField": 1, - "ExcludeField": 1, - "Fields": 1, - "_fields": 1, - "fields": 2, - "No": 1, - "found": 5, - "for": 65, - "_keyfield": 4, - "keyfield": 4, - "ID": 1, - "_index": 1, - "_return": 1, - "returnfield": 1, - "_exclude": 1, - "excludefield": 1, - "_records": 1, - "_record": 1, - "_temp": 1, - "_field": 1, - "_output": 1, - "error_msg": 15, - "error_code": 11, - "found_count": 11, - "rows": 1, - "#_records": 1, - "Return": 7, - "@#_output": 1, - "/Define_Tag": 1, - "/If": 3, - "define": 20, - "trait_json_serialize": 2, - "trait": 1, - "require": 1, - "asString": 3, - "json_serialize": 18, - "e": 13, - "bytes": 8, - "+": 146, - "#e": 13, - "Replace": 19, - "&": 21, - "json_literal": 1, - "asstring": 4, - "format": 7, - "gmt": 1, - "|": 13, - "trait_forEach": 1, - "local": 116, - "foreach": 1, - "#output": 50, - "#delimit": 7, - "#1": 3, - "return": 75, - "with": 25, - "pr": 1, - "eachPair": 1, - "select": 1, - "#pr": 2, - "first": 12, - "second": 8, - "join": 5, - "json_object": 2, - "foreachpair": 1, - "any": 14, - "serialize": 1, - "json_consume_string": 3, - "while": 9, - "#temp": 19, - "#ibytes": 17, - "export8bits": 6, - "#obytes": 5, - "import8bits": 4, - "Escape": 1, - "/while": 7, - "unescape": 1, - "//Replace": 1, - "if": 76, - "BeginsWith": 1, - "&&": 30, - "EndsWith": 1, - "Protect": 1, - "serialization_reader": 1, - "xml": 1, - "read": 1, - "/Protect": 1, - "else": 32, - "size": 24, - "or": 6, - "regexp": 1, - "d": 2, - "Z": 1, - "matches": 1, - "Format": 1, - "yyyyMMdd": 2, - "HHmmssZ": 1, - "HHmmss": 1, - "/if": 53, - "json_consume_token": 2, - "marker": 4, - "Is": 1, - "also": 5, - "end": 2, - "of": 24, - "token": 1, - "//............................................................................": 2, - "string_IsNumeric": 1, - "json_consume_array": 3, - "While": 1, - "Discard": 1, - "whitespace": 3, - "Else": 7, - "insert": 18, - "#key": 12, - "json_consume_object": 2, - "Loop_Abort": 1, - "/While": 1, - "Find": 3, - "isa": 25, - "First": 4, - "find": 57, - "Second": 1, - "json_deserialize": 1, - "removeLeading": 1, - "bom_utf8": 1, - "Reset": 1, - "on": 1, - "provided": 1, - "**/": 1, - "type": 63, - "parent": 5, - "public": 1, - "onCreate": 1, - "...": 3, - "..onCreate": 1, - "#rest": 1, - "json_rpccall": 1, - "#id": 2, - "#host": 4, - "Lasso_UniqueID": 1, - "Include_URL": 1, - "PostParams": 1, - "Encode_JSON": 1, - "#method": 1, - "#params": 5, - "": 6, - "2009": 14, - "09": 10, - "04": 8, - "JS": 126, - "Added": 40, - "content_body": 14, - "compatibility": 4, - "pre": 4, - "8": 6, - "5": 4, - "05": 4, - "07": 6, - "timestamp": 4, - "to": 98, - "knop_cachestore": 4, - "maxage": 2, - "parameter": 8, - "knop_cachefetch": 4, - "Corrected": 8, - "construction": 2, - "cache_name": 2, - "internally": 2, - "the": 86, - "knop_cache": 2, - "tags": 14, - "so": 16, - "it": 20, - "will": 12, - "work": 6, - "correctly": 2, - "at": 10, - "site": 4, - "root": 2, - "2008": 6, - "11": 8, - "dummy": 2, - "knop_debug": 4, - "ctype": 2, - "be": 38, - "able": 14, - "transparently": 2, - "without": 4, - "L": 2, - "Debug": 2, - "24": 2, - "knop_stripbackticks": 2, - "01": 4, - "28": 2, - "Cache": 2, - "name": 32, - "used": 12, - "when": 10, - "using": 8, - "session": 4, - "storage": 8, - "2007": 6, - "12": 8, - "knop_cachedelete": 2, - "Created": 4, - "03": 2, - "knop_foundrows": 2, - "condition": 4, - "returning": 2, - "normal": 2, - "For": 2, - "lasso_tagexists": 4, - "define_tag": 48, - "namespace=": 12, - "__html_reply__": 4, - "define_type": 14, - "debug": 2, - "_unknowntag": 6, - "onconvert": 2, - "stripbackticks": 2, - "description=": 2, - "priority=": 2, - "required=": 2, - "input": 2, - "split": 2, - "@#output": 2, - "/define_tag": 36, - "description": 34, - "namespace": 16, - "priority": 8, - "Johan": 2, - "S": 2, - "lve": 2, - "#charlist": 6, - "current": 10, - "time": 8, - "a": 52, - "mixed": 2, - "up": 4, - "as": 26, - "seed": 6, - "#seed": 36, - "convert": 4, - "this": 14, - "base": 6, - "conversion": 4, - "get": 12, - "#base": 8, - "/": 6, - "over": 2, - "new": 14, - "chunk": 2, - "millisecond": 2, - "math_random": 2, - "lower": 2, - "upper": 2, - "__lassoservice_ip__": 2, - "response_localpath": 8, - "removetrailing": 8, - "response_filepath": 8, - "//tagswap.net/found_rows": 2, - "action_statement": 2, - "string_findregexp": 8, - "#sql": 42, - "ignorecase": 12, - "||": 8, - "maxrecords_value": 2, - "inaccurate": 2, - "must": 4, - "accurate": 2, - "Default": 2, - "usually": 2, - "fastest.": 2, - "Can": 2, - "not": 10, - "GROUP": 4, - "BY": 6, - "example.": 2, - "normalize": 4, - "around": 2, - "FROM": 2, - "expression": 6, - "string_replaceregexp": 8, - "replace": 8, - "ReplaceOnlyOne": 2, - "substring": 6, - "remove": 6, - "ORDER": 2, - "statement": 4, - "since": 4, - "causes": 4, - "problems": 2, - "field": 26, - "aliases": 2, - "we": 2, - "can": 14, - "simple": 2, - "later": 2, - "query": 4, - "contains": 2, - "use": 10, - "SQL_CALC_FOUND_ROWS": 2, - "which": 2, - "much": 2, - "slower": 2, - "see": 16, - "//bugs.mysql.com/bug.php": 2, - "removeleading": 2, - "inline": 4, - "sql": 2, - "exit": 2, - "here": 2, - "normally": 2, - "/inline": 2, - "fallback": 4, - "required": 10, - "optional": 36, - "local_defined": 26, - "knop_seed": 2, - "#RandChars": 4, - "Get": 2, - "Math_Random": 2, - "Min": 2, - "Max": 2, - "Size": 2, - "#value": 14, - "#numericValue": 4, - "length": 8, - "#cryptvalue": 10, - "#anyChar": 2, - "Encrypt_Blowfish": 2, - "decrypt_blowfish": 2, - "String_Remove": 2, - "StartPosition": 2, - "EndPosition": 2, - "Seed": 2, - "String_IsAlphaNumeric": 2, - "self": 72, - "_date_msec": 4, - "/define_type": 4, - "seconds": 4, - "default": 4, - "store": 4, - "all": 6, - "page": 14, - "vars": 8, - "specified": 8, - "iterate": 12, - "keys": 6, - "var": 38, - "#item": 10, - "#type": 26, - "#data": 14, - "/iterate": 12, - "//fail_if": 6, - "session_id": 6, - "#session": 10, - "session_addvar": 4, - "#cache_name": 72, - "duration": 4, - "#expires": 4, - "server_name": 6, - "initiate": 10, - "thread": 6, - "RW": 6, - "lock": 24, - "global": 40, - "Thread_RWLock": 6, - "create": 6, - "reference": 10, - "@": 8, - "writing": 6, - "#lock": 12, - "writelock": 4, - "check": 6, - "cache": 4, - "unlock": 6, - "writeunlock": 4, - "#maxage": 4, - "cached": 8, - "data": 12, - "too": 4, - "old": 4, - "reading": 2, - "readlock": 2, - "readunlock": 2, - "ignored": 2, - "//##################################################################": 4, - "knoptype": 2, - "All": 4, - "Knop": 6, - "custom": 8, - "types": 10, - "should": 4, - "have": 6, - "identify": 2, - "registered": 2, - "knop": 6, - "isknoptype": 2, - "knop_knoptype": 2, - "prototype": 4, - "version": 4, - "14": 4, - "Base": 2, - "framework": 2, - "Contains": 2, - "common": 4, - "member": 10, - "Used": 2, - "boilerplate": 2, - "creating": 4, - "other": 4, - "instance": 8, - "variables": 2, - "are": 4, - "available": 2, - "well": 2, - "CHANGE": 4, - "NOTES": 4, - "Syntax": 4, - "adjustments": 4, - "9": 2, - "Changed": 6, - "error": 22, - "numbers": 2, - "added": 10, - "even": 2, - "language": 10, - "already": 2, - "exists.": 2, - "improved": 4, - "reporting": 2, - "messages": 6, - "such": 2, - "from": 6, - "bad": 2, - "database": 14, - "queries": 2, - "error_lang": 2, - "provide": 2, - "knop_lang": 8, - "add": 12, - "localized": 2, - "except": 2, - "knop_base": 8, - "html": 4, - "xhtml": 28, - "help": 10, - "nicely": 2, - "formatted": 2, - "output.": 2, - "Centralized": 2, - "knop_base.": 2, - "Moved": 6, - "codes": 2, - "improve": 2, - "documentation.": 2, - "It": 2, - "always": 2, - "an": 8, - "parameter.": 2, - "trace": 2, - "tagtime": 4, - "was": 6, - "nav": 4, - "earlier": 2, - "varname": 4, - "retreive": 2, - "variable": 8, - "that": 18, - "stored": 2, - "in.": 2, - "automatically": 2, - "sense": 2, - "doctype": 6, - "exists": 2, - "buffer.": 2, - "The": 6, - "performance.": 2, - "internal": 2, - "html.": 2, - "Introduced": 2, - "_knop_data": 10, - "general": 2, - "level": 2, - "caching": 2, - "between": 2, - "different": 2, - "objects.": 2, - "TODO": 2, - "option": 2, - "Google": 2, - "Code": 2, - "Wiki": 2, - "working": 2, - "properly": 4, - "run": 2, - "by": 12, - "atbegin": 2, - "handler": 2, - "explicitly": 2, - "*/": 2, - "entire": 4, - "ms": 2, - "defined": 4, - "each": 8, - "instead": 4, - "avoid": 2, - "recursion": 2, - "properties": 4, - "#endslash": 10, - "#tags": 2, - "#t": 2, - "doesn": 4, - "p": 2, - "Parameters": 4, - "nParameters": 2, - "Internal.": 2, - "Finds": 2, - "out": 2, - "used.": 2, - "Looks": 2, - "unless": 2, - "array.": 2, - "variable.": 2, - "Looking": 2, - "#xhtmlparam": 4, - "plain": 2, - "#doctype": 4, - "copy": 4, - "standard": 2, - "code": 2, - "errors": 12, - "error_data": 12, - "form": 2, - "grid": 2, - "lang": 2, - "user": 4, - "#error_lang": 12, - "addlanguage": 4, - "strings": 6, - "@#errorcodes": 2, - "#error_lang_custom": 2, - "#custom_language": 10, - "once": 4, - "one": 2, - "#custom_string": 4, - "#errorcodes": 4, - "#error_code": 10, - "message": 6, - "getstring": 2, - "test": 2, - "known": 2, - "lasso": 2, - "knop_timer": 2, - "knop_unique": 2, - "look": 2, - "#varname": 6, - "loop_abort": 2, - "tag_name": 2, - "#timer": 2, - "#trace": 4, - "merge": 2, - "#eol": 8, - "2010": 4, - "23": 4, - "Custom": 2, - "interact": 2, - "databases": 2, - "Supports": 4, - "both": 2, - "MySQL": 2, - "FileMaker": 2, - "datasources": 2, - "2012": 4, - "06": 2, - "10": 2, - "SP": 4, - "Fix": 2, - "precision": 2, - "bug": 2, - "6": 2, - "0": 2, - "1": 2, - "renderfooter": 2, - "15": 2, - "Add": 2, - "support": 6, - "Thanks": 2, - "Ric": 2, - "Lewis": 2, - "settable": 4, - "removed": 2, - "table": 6, - "nextrecord": 12, - "deprecation": 2, - "warning": 2, - "corrected": 2, - "verification": 2, - "index": 4, - "before": 4, - "calling": 2, - "resultset_count": 6, - "break": 2, - "versions": 2, - "fixed": 4, - "incorrect": 2, - "debug_trace": 2, - "addrecord": 4, - "how": 2, - "keyvalue": 10, - "returned": 6, - "adding": 2, - "records": 4, - "inserting": 2, - "generated": 2, - "suppressed": 2, - "specifying": 2, - "saverecord": 8, - "deleterecord": 4, - "case.": 2, - "recorddata": 6, - "no": 2, - "longer": 2, - "touch": 2, - "current_record": 2, - "zero": 2, + "uv_process_t": 1, + "_entry": 1, + "free_commit_list": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Hinge_2loss": 1, + "ZMALLOC_LIB": 2, + "__pyx_cfilenm": 1, + "otherwise": 1, + "ref_name": 2, + "rfFgets_UTF32BE": 1, + "deltas.length": 4, + "PFNWGLGETEXTENSIONSSTRINGARBPROC": 2, + "cmd_fmt_merge_msg": 1, + "m": 8, + "RF_LF": 10, + "cpu_notify": 5, + "parse_commit_buffer": 3, + "WGL_CONTEXT_FLAGS_ARB": 1, + "PyNumber_Int": 1, + "method_strings": 2, + "grafts_replace_parents": 1, + "server.unixsocketperm": 2, + "parse_commit_date": 2, + "__WGLEW_ATI_render_texture_rectangle": 2, + "__pyx_pf_7sklearn_12linear_model_8sgd_fast_12LossFunction_loss": 1, + "*__pyx_t_1": 6, + "*__pyx_vtab": 3, + "__pyx_t_5numpy_uint64_t": 1, + "tp_as_sequence": 1, + "can": 2, + "RF_StringX": 2, + "RF_UTF16_BE": 7, + "cleanup": 12, + "commit_list_count": 1, + "npy_float64": 1, + "notinherited": 1, + "StringX": 2, + "git_hash_buf": 1, + "__WGLEW_NV_video_capture": 2, + "pAddress": 2, + "__pyx_k__intercept_decay": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Hinge_4dloss": 1, + "__Pyx_c_eq": 2, + "i_SELECT_RF_STRING_AFTERV6": 1, + "*pop_commit": 1, + "Does": 1, + "REDIS_SET_MAX_INTSET_ENTRIES": 1, + "arch_disable_nonboot_cpus_begin": 2, + "*__Pyx_GetName": 1, + "PyBytes_Type": 1, + "listIter": 2, + "h_matching_transfer_encoding": 3, + "header_end": 7, + "listNode": 4, + "WGL_DRAW_TO_BITMAP_ARB": 1, + "is_valid_array": 1, + "REDIS_BLOCKED": 2, + "git_vector": 1, + "uid": 2, + "PFNWGLBINDVIDEOCAPTUREDEVICENVPROC": 2, + "CYTHON_WITHOUT_ASSERTIONS": 1, + "mstime": 5, + "deltas.contents": 1, + "*entry": 2, + "__WGLEW_EXT_depth_float": 2, + "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_LossFunction": 5, + "kind": 1, + "AOF_FSYNC_EVERYSEC": 1, + "old_prefix": 2, + "server.unixtime": 10, + "die": 5, + "old_file.oid": 3, + "__WGLEW_NV_float_buffer": 2, + "__wglewQueryFrameTrackingI3D": 2, + "*__pyx_n_s__threshold": 1, + "__GNUC_MINOR__": 2, + "uv__process_close_stream": 2, + "reflog_walk_info": 1, + "*get_merge_parent": 1, + "hkeysCommand": 1, + "start_of_line": 2, + "PFNWGLWAITFORMSCOMLPROC": 2, + "*sbc": 3, + "WGLEW_ARB_multisample": 1, + "*__pyx_n_s__update": 1, + "off": 8, + "RSTRING_PTR": 2, + "*row_work": 1, + "message_complete": 7, + "little": 7, + "zonelists_mutex": 2, + "oom": 3, + "wglReleasePbufferDCEXT": 1, + "__pyx_pyargnames": 3, + "pager_config": 3, + "*__pyx_n_s__penalty_type": 1, + "__pyx_vtabstruct_7sklearn_5utils_11seq_dataset_SequentialDataset": 4, + "*str": 1, + "stderr": 15, + "F_TRAILING": 3, + "MKD_NO_EXT": 1, + "i_NVrfString_Create": 3, + "WGL_SHARE_ACCUM_EXT": 1, + "*__pyx_ptype_7sklearn_5utils_13weight_vector_WeightVector": 1, + "i_SELECT_RF_STRING_BETWEEN0": 1, + "i_rfLMSX_WRAP4": 11, + "CONFIG_INIT_ALL_POSSIBLE": 1, + "<=thisstr->": 1, + "wglGetGammaTableParametersI3D": 1, + "*temp": 1, + "s_chunk_data_almost_done": 3, + "__pyx_t_1": 69, + "Py_buffer*": 2, + "//@": 1, + "*blob_type": 2, + "*one": 1, + "server.zset_max_ziplist_entries": 1, + "body": 6, + "divisor": 3, + "HVIDEOOUTPUTDEVICENV": 2, + "WGL_STEREO_POLARITY_NORMAL_3DL": 1, + "characterUnicodeValue_": 4, + "check_for_tasks": 2, + "block_lines": 3, + "i_rfString_Equal": 3, + "anetPeerToString": 1, + "unhex_val": 7, + "IS_UNSIGNED": 1, + "contiuing": 1, + "GET": 2, + "git_iterator_for_index_range": 2, + "prefix": 34, + "uv_spawn": 1, + "WGL_COLOR_BITS_ARB": 1, + "WGL_ARB_pixel_format": 2, + "*__Pyx_GetItemInt_Generic": 1, + "GIT_BUF_INIT": 3, + "calloc": 1, + "dictCreate": 6, + "wglDXRegisterObjectNV": 1, + "wglDestroyImageBufferI3D": 1, + "exit_status": 3, + "substring": 5, + "PFNWGLQUERYMAXSWAPGROUPSNVPROC": 2, + "Flags": 1, + ".blocking_keys": 1, + "type": 36, + "key": 9, + "C7": 1, + "__Pyx_GetItemInt": 1, + "EV_CHILD": 1, + "have": 2, + "": 1, + "*eol": 1, + "__Pyx_TypeTest": 1, + "cmd_diff": 1, + "rfString_Copy_IN": 2, + "WGL_VIDEO_OUT_COLOR_AND_DEPTH_NV": 1, + "occurences": 5, + "va_arg": 2, + "dictSdsKeyCaseCompare": 2, + "slaves": 3, + "RF_HEXGE_US": 4, + "bufferSize": 6, + "wglGetDigitalVideoParametersI3D": 1, + "RF_HEXL_US": 8, + "byteLength": 197, + "5": 1, + "i_rfString_CreateLocal1": 3, + "server.saveparams": 2, + "appendCommand": 1, + "library": 3, + "__pyx_t_7sklearn_5utils_11seq_dataset_INTEGER": 7, + "i_SELECT_RF_STRING_CREATE_NC1": 1, + "execvp": 1, + "s_chunk_size_almost_done": 4, + "RF_NEWLINE_CRLF": 1, + "": 2, + "_strnicmp": 1, + "realloc": 1, + "WGL_EXT_framebuffer_sRGB": 2, + "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_Classification": 1, + "for_each_cpu": 1, + "GIT_MODE_TYPE": 3, + "ret": 142, + "WGL_GENLOCK_SOURCE_MULTIVIEW_I3D": 1, + "*puBlue": 2, + "__pyx_L0": 18, + "PyLong_Check": 1, + "PyBytes_Concat": 1, + "RF_STRING_ITERATEB_END": 2, + "s_req_http_HT": 3, + "h_connection_close": 4, + "*text": 1, "access": 2, - "occurrence": 2, - "same": 4, - "returns": 4, - "knop_databaserows": 2, - "inlinename.": 4, - "next.": 2, - "remains": 2, - "supported": 2, - "backwards": 2, - "compatibility.": 2, - "resets": 2, - "record": 20, - "pointer": 8, - "reaching": 2, - "last": 4, - "honors": 2, - "incremented": 2, - "recordindex": 4, - "specific": 2, - "found.": 2, - "getrecord": 8, - "REALLY": 2, - "works": 4, - "keyvalues": 4, - "double": 2, - "oops": 4, - "I": 4, - "thought": 2, - "but": 2, - "misplaced": 2, - "paren...": 2, - "corresponding": 2, - "resultset": 2, - "/resultset": 2, - "through": 2, - "handling": 2, - "better": 2, - "knop_user": 4, - "keeplock": 4, - "updates": 2, - "datatype": 2, - "knop_databaserow": 2, - "iterated.": 2, - "When": 2, - "iterating": 2, - "row": 2, - "values.": 2, - "Addedd": 2, - "increments": 2, - "recordpointer": 2, - "called": 2, - "until": 2, - "reached.": 2, - "Returns": 2, - "long": 2, - "there": 2, + "WGL_SUPPORT_GDI_ARB": 1, + "piValue": 8, + "INT": 3, + "*md": 1, + "redisAsciiArt": 2, + "RF_HEXEQ_C": 9, + "fl": 8, + "__pyx_v_intercept_decay": 1, + "__FILE__": 4, + "git_buf_detach": 1, + "": 2, + "cpu_hotplug.refcount": 3, + "decoration": 1, + "rfUTF8_Decode": 2, + "listRotate": 1, + "INVALID_HEADER_TOKEN": 1, + "__WGLEW_EXT_make_current_read": 2, + "evalShaCommand": 1, + "*maxBarriers": 1, + "REDIS_MAX_QUERYBUF_LEN": 1, + "REDIS_MAX_CLIENTS": 1, + "*__pyx_n_s__dloss": 1, + "c_index_": 3, + "register_commit_graft": 2, + "server.unblocked_clients": 4, + "__pyx_t_7sklearn_5utils_13weight_vector_DOUBLE": 2, + "12": 1, + "perror": 5, + "xBF": 2, + "void": 279, + "PFNWGLFREEMEMORYNVPROC": 2, + "indexing": 1, + "mem_freed": 4, + "wglBindVideoCaptureDeviceNV": 1, + "utime": 1, + "cmd_merge_recursive": 4, + "*kwds": 1, + "Python.": 1, + "LL*1024*1024*1024": 1, + "bgsaveCommand": 1, + "i_NVrfString_Init_nc": 3, + "*__pyx_ptype_5numpy_dtype": 1, + "*__pyx_refnanny": 1, + "i_SELECT_RF_STRING_AFTER3": 1, + "it": 12, + "git_pool_clear": 2, + "HTTP_SEARCH": 1, + "task_unlock": 1, + "wglewInit": 1, + "wglGenlockSourceDelayI3D": 1, + "__WGLEW_ATI_pixel_format_float": 2, + "__wglewSetPbufferAttribARB": 2, + "PyUnicode_Decode": 1, + "raw_notifier_chain_register": 1, + "b": 66, + "PFNWGLCHOOSEPIXELFORMATEXTPROC": 2, + "PyLong_AsSsize_t": 1, + "new_parent": 6, + "*method_strings": 1, + "PFNWGLMAKECONTEXTCURRENTEXTPROC": 2, + "__pyx_k__q": 1, + "__pyx_k_2": 1, + "__Pyx_NAMESTR": 2, + ".len": 3, + "#if": 92, + "git_config_maybe_bool": 1, + "WGLEW_GET_VAR": 49, + "i_SELECT_RF_STRING_AFTERV13": 1, + "cppcode": 1, + "logging": 5, + "include": 6, + "cmd_notes": 1, + "memset": 4, + "*process": 1, + "uv__process_child_init": 2, + "PyBytes_Size": 1, + "shared.subscribebulk": 1, + "s_res_line_almost_done": 4, + "": 3, + "PFNWGLENUMGPUSNVPROC": 2, + "entries": 2, + "i_rfString_Replace": 6, + "syslog": 1, + "__pyx_t_double_complex_from_parts": 1, + "persistCommand": 1, + "*o": 8, + "HTTP_CONNECT": 4, + "": 1, + "R_NegInf": 2, + "RF_IAMHERE_FOR_DOXYGEN": 22, "more": 2, - "records.": 2, - "Useful": 2, - "loop": 2, - "example": 2, - "below": 2, - "Implemented": 2, - "reset": 2, - "query.": 2, - "shortcut": 2, - "Removed": 2, - "onassign": 2, - "touble": 2, - "Extended": 2, - "field_names": 2, - "names": 4, - "db": 2, - "objects": 2, - "never": 2, - "been": 2, - "optionally": 2, - "supports": 2, - "sql.": 2, - "Make": 2, - "sure": 2, - "SQL": 2, - "includes": 2, - "relevant": 2, - "lockfield": 2, - "locking": 4, - "capturesearchvars": 2, - "mysteriously": 2, - "after": 2, - "operations": 2, - "caused": 2, - "errors.": 2, - "flag": 2, + "server.neterr": 4, + "flags_extended": 2, + "server.aof_no_fsync_on_rewrite": 1, + "remaining_bytes": 1, + "WGL_GPU_NUM_RB_AMD": 1, + "__Pyx_PySequence_GetSlice": 2, + "GFP_KERNEL": 1, + "PyGILState_Ensure": 1, + "i_ENCODING_": 4, + "i_NPSELECT_RF_STRING_FWRITE": 1, + "listSetMatchMethod": 1, + "new": 4, + "DIFF_NEW_PREFIX_DEFAULT": 1, + "__Pyx_Buffer": 2, + "i_rfString_Fwrite": 5, + "HEADER_OVERFLOW": 1, + "rb_intern": 15, + "std": 8, + "lrangeCommand": 1, + "A0": 3, + "UV_PROCESS": 1, + "s_res_status_code": 3, + "server.clients": 7, + "*diff_prefix_from_pathspec": 1, + "__wglewBindVideoDeviceNV": 2, + "F": 38, + "strbuf": 12, + "GIT_VERSION": 1, + "thisstr": 210, + "KERN_WARNING": 3, + "WGL_MIPMAP_LEVEL_ARB": 1, + "PyCodeObject*": 2, + "PyBytes_CheckExact": 1, + "ANET_ERR": 2, + "error": 96, + "limit.rlim_max": 1, + "WIFEXITED": 1, + "cmd_check_ref_format": 1, + "WGL_GENLOCK_SOURCE_EDGE_RISING_I3D": 1, + "wglSetGammaTableI3D": 1, + "subValues": 8, + "diff*number": 1, + "HPE_##n": 1, + "server.slowlog_log_slower_than": 1, + "do_render": 4, + "commit_graft_pos": 2, + "object": 10, + "lexer": 4, + "group": 3, + "LPVOID*": 1, + "wglGetCurrentAssociatedContextAMD": 1, + "existence": 2, + "acceptUnixHandler": 1, + "rfString_After": 4, + "fgetc": 9, + "cpu_maps_update_done": 9, + "*modname": 1, + "watcher": 4, + "parse_inline": 1, + "opts.flags": 8, + "stdout": 5, + "RE_STRING_TOFLOAT_UNDERFLOW": 1, + "WGL_TEXTURE_CUBE_MAP_POSITIVE_Y_ARB": 1, + "*__pyx_n_s__xnnz": 1, + "charValue": 12, + "INVALID_QUERY_STRING": 1, + "exitcode": 3, + "de": 12, + "WGL_I3D_digital_video_control": 2, + "*index_data_ptr": 2, + "": 1, + "server.arch_bits": 3, + "on_message_complete": 1, + "dictGetKey": 4, + "*pop_most_recent_commit": 1, + "environ": 4, + "*__pyx_ptype_5numpy_ndarray": 1, + "i_rfString_CreateLocal": 2, + "non": 1, + "git_iterator_advance_into_directory": 1, + "shared.nullbulk": 1, + "__wglewReleaseVideoCaptureDeviceNV": 2, + "wglSetGammaTableParametersI3D": 1, + "__pyx_k__dtype": 1, + "npy_float32": 1, + "RE_FILE_EOF": 22, + "cpu_hotplug_enable_after_thaw": 2, + "UF_SCHEMA": 2, + "old_iter": 8, + "rfFReadLine_UTF32LE": 4, + "i_rfString_StripEnd": 3, + "UTF": 17, + "max": 4, + "shared.pong": 2, + "child_fd": 3, + "pulCounterPbuffer": 1, + "sP": 2, + "options.gid": 1, + "yajl_set_default_alloc_funcs": 1, + "wglDisableGenlockI3D": 1, + "WGL_NUMBER_UNDERLAYS_EXT": 1, + "__Pyx_PyInt_AsUnsignedLong": 1, + "i_rfLMSX_WRAP11": 2, + "*": 253, + "pp_remainder": 1, + "arch_enable_nonboot_cpus_begin": 2, + "__wglewGenlockSampleRateI3D": 2, + "__pyx_k__order": 1, + "cpu_hotplug_disable_before_freeze": 2, + "*git_diff_list_alloc": 1, + "PFNWGLDELETEASSOCIATEDCONTEXTAMDPROC": 2, + "push": 1, + "": 1, + "local": 5, + "dictEntry": 2, + "pttlCommand": 1, + "cmd_merge_file": 1, + "s": 154, + "WGL_ACCUM_ALPHA_BITS_ARB": 1, + "SUBSCRIBE": 2, + "lstr": 6, + "strncasecmp": 2, + "pptr": 5, + "strcmp": 20, + "ENOSYS": 1, + "__pyx_k__Zd": 1, + "diffcaps": 13, + "*key1": 4, + "errno": 20, + "phDeviceList": 2, + "RF_COMPILE_ERROR": 33, + "i_CMD_": 2, + "task_cpu": 1, + "REPORT": 2, + "cpu_relax": 1, + "__wglewGenlockSourceEdgeI3D": 2, + "slots": 2, + "options.file": 2, + "decodeBuf": 2, + "wglGetPbufferDCEXT": 1, + "wglDestroyPbufferARB": 1, + "i_VAR_": 2, + "included": 2, + "dateptr": 2, + "uptime/": 1, + "shared.psubscribebulk": 1, + "seconds": 2, + "clear_tasks_mm_cpumask": 1, + "shared.emptybulk": 1, + "_WIN32": 3, + "verbose": 2, + "bytesConsumed": 2, + "WGL_GENLOCK_SOURCE_EXTERNAL_SYNC_I3D": 1, + "WGL_GPU_RENDERER_STRING_AMD": 1, + "*__pyx_builtin_range": 1, + "parse_htmlblock": 1, + "CMIT_FMT_ONELINE": 1, + "rb_rdiscount_to_html": 2, + "yajl_status_client_canceled": 1, + "WGL_TRANSPARENT_ALPHA_VALUE_ARB": 1, + "*__pyx_vtabptr_7sklearn_12linear_model_8sgd_fast_SquaredHinge": 1, + "i_SELECT_RF_STRING_BEFOREV9": 1, + "RF_MODULE_STRINGS//": 1, + "lock": 6, + "HPE_INVALID_URL": 4, + "WGLEW_NV_vertex_array_range": 1, + "__WGLEW_AMD_gpu_association": 2, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_13ModifiedHuber_2dloss": 1, + "__Pyx_PyInt_AsUnsignedLongLong": 1, + "current_index": 2, + "rfString_Find": 3, + "new_src": 3, + "git_vector_swap": 1, + "__pyx_vtabstruct_7sklearn_5utils_11seq_dataset_ArrayDataset": 2, + "Lefteris": 1, + "UPGRADE": 4, + "an": 2, + "afterstr": 5, + "": 4, + "HVIDEOINPUTDEVICENV*": 1, + "WGL_SHARE_DEPTH_ARB": 1, + "*__pyx_r": 6, + "strtol": 2, + "i_rfString_Append": 3, + "server.assert_failed": 1, + "WGL_NEED_PALETTE_ARB": 1, + "": 1, + "val": 20, + "__wglewBindSwapBarrierNV": 2, + "dstY0": 1, + "PyErr_WarnEx": 1, + "i_LIMSELECT_RF_STRING_AFTERV1": 1, + "REDIS_CLIENT_LIMIT_CLASS_SLAVE": 3, + "WGL_NEED_SYSTEM_PALETTE_EXT": 1, + "__wglew_h__": 2, + "__pyx_k____test__": 1, + "*__pyx_v_info": 2, + "real": 2, + "res2": 2, + "REDIS_STRING": 31, + "i_DECLIMEX_": 121, + "open": 4, + "rfFgetc_UTF16LE": 4, + "pp_commit_easy": 1, + "SIGHUP": 1, + "cmd_config": 1, + "priority": 1, + "dstY": 1, + "s_req_port_start": 7, + "__pyx_k__f": 1, + "*__pyx_vtabptr_7sklearn_5utils_11seq_dataset_CSRDataset": 1, + "sigaction": 6, + "PySet_Check": 1, + "@endinternal": 1, + "#elif": 14, + "__Pyx_GetItemInt_Tuple_Fast": 1, + "GIT_ATTR_FNMATCH_NEGATIVE": 1, + "server.cluster.configfile": 1, + "Py_buffer": 6, + "server.syslog_enabled": 3, + "": 1, + "wglext.h": 1, + "i_NPSELECT_RF_STRING_AFTER1": 1, + "": 1, + "float": 26, + "*d": 1, + "name.sysname": 1, + ".active_writer": 1, + "here": 5, + "REDIS_MULTI": 1, + "WGLEW_I3D_digital_video_control": 1, + "PFNWGLGETDIGITALVIDEOPARAMETERSI3DPROC": 2, + "sq_length": 2, + "rfString_Replace": 3, + "INVALID_CONTENT_LENGTH": 1, + "cmd_remote": 1, + "debugCommand": 1, + "afterstrP": 2, + "addReplyError": 6, + "server.master": 3, + "strdup": 1, + "target_sbc": 1, + "Py_True": 2, + "uv__handle_stop": 1, + "nodes": 10, + "B1": 1, + "__wglewMakeAssociatedContextCurrentAMD": 2, + "*__pyx_kp_s_3": 1, + "__pyx_t_5numpy_int32_t": 4, + "dictGenHashFunction": 5, + "cmd_whatchanged": 1, + "CALLBACK_NOTIFY": 10, + "ignore_dups": 2, + "PyBytes_AsString": 2, + "standard": 1, + "buf": 57, + "srand": 1, + "HPE_PAUSED": 2, + "socketpair": 2, + "PyObject_TypeCheck": 3, + "bad": 1, + "*logmsg_reencode": 1, + "UL": 1, + ";": 5439, + "PFNWGLENUMGPUDEVICESNVPROC": 2, + "*piValues": 2, + "__pyx_pw_7sklearn_12linear_model_8sgd_fast_10Regression_1loss": 1, + "encodingP": 1, + ".id": 1, + "getrusage": 2, + "on_header_field": 1, + "commit_list_insert": 2, + "strides": 1, + "__inline__": 1, + "i_SELECT_RF_STRING_BEFOREV15": 1, + "h_matching_upgrade": 3, + "omode": 8, + "__pyx_v_y": 46, + "__pyx_t_5numpy_complex_t": 1, + "*__pyx_empty_bytes": 1, + "PyNumber_InPlaceTrueDivide": 1, + "msetnxCommand": 1, + "find": 1, + "string": 18, + "": 1, + "o1": 7, + "HVIDEOINPUTDEVICENV": 5, + "PFNWGLCREATEDISPLAYCOLORTABLEEXTPROC": 2, + "rfString_Init_fUTF8": 3, + "s_chunk_size": 3, + "cmd_version": 1, + "acquire_gil": 4, + "PyBUF_STRIDES": 6, + "": 1, + "DEFINE_MUTEX": 1, + "uMaxLineDelay": 1, + "PyTuple_SET_ITEM": 6, + "i_SELECT_RF_STRING_FIND0": 1, + "otherP": 4, + "cmd_merge_index": 1, + "keyobj": 6, + "termination": 3, + "///closing": 1, + "name": 28, + ".asize": 2, + "ttlCommand": 1, + "WGLEW_NV_multisample_coverage": 1, + "__pyx_k__n_features": 1, + "i_NVrfString_Create_nc": 3, + "redisGitSHA1": 3, + "usage": 2, + "SEARCH": 3, + "__wglewDXUnregisterObjectNV": 2, + "*lookup_commit": 2, + "CHECKOUT": 2, + "DWORD*": 1, + "PyInt_FromSsize_t": 6, + "HPE_INVALID_METHOD": 4, + "cmd_pack_objects": 1, + "uState": 1, + "server.cluster.state": 1, + "cmd_fast_export": 1, + "MASK_DECLARE_4": 3, + "**subject": 2, + "__wglewDXObjectAccessNV": 2, + "__pyx_pf_7sklearn_12linear_model_8sgd_fast_10Regression_loss": 1, + "rfString_StripStart": 3, + "server.stat_peak_memory": 5, + "given": 5, + "PyBaseString_Type": 1, + "rfString_PruneMiddleB": 2, + ".lock": 1, + "header_state": 42, + "online": 2, + "git_diff_options": 7, + "keys_freed": 3, + "shared.emptymultibulk": 1, + "WGLEW_NV_float_buffer": 1, + "empty_cell": 2, + "REDIS_MONITOR": 1, + "byte": 6, + "mutex_unlock": 6, + "*onto": 1, + "DWORD": 5, + "__pyx_f_7sklearn_12linear_model_8sgd_fast_l1penalty": 1, + "__PYX_HAVE__sklearn__linear_model__sgd_fast": 1, + "clear_commit_marks": 1, + "REDIS_REPL_ONLINE": 1, + "big": 14, + "option_count": 1, + "PFNWGLSETGAMMATABLEI3DPROC": 2, + "WGL_CONTEXT_MINOR_VERSION_ARB": 1, + "decrCommand": 1, + "cmd_cherry": 1, + "__pyx_k__w": 1, + "__pyx_k_8": 1, + "__Pyx_PyInt_AsUnsignedShort": 1, + "nid": 5, + "rfFtell": 2, + "GIT_DIFF_INCLUDE_IGNORED": 1, + "strict": 2, + "O_RDONLY": 1, + "SIGSEGV": 1, + "UF_FRAGMENT": 2, + "__WGLEW_ARB_extensions_string": 2, + "wglSaveBufferRegionARB": 1, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Hinge": 6, + "h_matching_connection": 3, + "c2": 13, + "cmd_checkout_index": 1, + "wglBindTexImageARB": 1, + "calling": 4, + "*eofReached": 14, + "other": 16, + "uv__process_close": 1, + "__pyx_k__isnan": 1, + "__Pyx_Raise": 4, + "object_type": 1, + "sds": 13, + "rawmode": 2, + "_isspace": 3, + "*u": 2, + "USHORT": 4, + "UINT*": 6, + "Py_SIZE": 1, + "dictGenCaseHashFunction": 1, + "KERN_ERR": 5, + "freeMemoryIfNeeded": 2, + "i_rfString_After": 5, + "WGL_ACCESS_READ_WRITE_NV": 1, + "__Pyx_GetAttrString": 2, + "i_NPSELECT_RF_STRING_COUNT": 1, + "new_argv": 7, + "HTTP_PATCH": 1, + "s_start_req_or_res": 4, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Huber_2loss": 1, + "functionality": 1, + "***tail": 1, + "shared.loadingerr": 2, + "": 1, + "dst": 15, + "*__pyx_k_tuple_14": 1, + "*__pyx_n_s__q": 1, + "HTTP_STRERROR_GEN": 3, + "S_ISGITLINK": 1, + "die_errno": 3, + "shared.space": 1, + "__WGLEW_EXT_multisample": 2, + "A6": 2, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_SquaredEpsilonInsensitive": 6, + "cpu_hotplug_pm_callback": 2, + "yajl_bs_init": 1, + "L": 1, + "server.stat_numconnections": 2, + "*cfg": 2, + "malloc": 3, + "definitions": 1, + "new_file.size": 3, + "CLOSE": 4, + "WGLEW_ATI_render_texture_rectangle": 1, + "WGLEW_ATI_pixel_format_float": 1, + "i_WHENCE_": 4, + "s_req_http_HTT": 3, + "times": 1, + "s_res_first_status_code": 3, + "PY_MINOR_VERSION": 1, + "ignore_prefix": 6, + "slaveofCommand": 2, + "buff": 95, + "MKD_NOLINKS": 1, + "WGL_RED_SHIFT_EXT": 1, + "wglReleasePbufferDCARB": 1, + "PyDict_GetItem": 6, + "__real__": 1, + "__pyx_t_5numpy_uint32_t": 1, + "*scan": 2, + "piAttribList": 4, + "string_": 9, + "internally": 1, + "int64_t": 2, + "__MINGW32__": 1, + "ev_child_init": 1, + "*commit_buffer": 2, + "WGL_SHARE_ACCUM_ARB": 1, + "util": 3, + "rpopCommand": 1, + "act": 6, + "cmd_bisect__helper": 1, + "used": 10, + "git_cached_obj": 5, + "_USE_MATH_DEFINES": 1, + "REDIS_REPL_WAIT_BGSAVE_END": 1, + "v1": 38, + "*__pyx_kp_s_20": 1, + "__pyx_k__t_start": 1, + "DECREF": 1, + "Refu": 2, + "timeCommand": 2, + "*header_value_mark": 1, + "intern": 1, + "*1024LL": 1, + "dup": 15, + "rfFgetc_UTF8": 3, + "yajl_do_parse": 1, + "__wglewGetPbufferDCEXT": 2, + "enc_count": 1, + "giterr_set": 1, + "not": 6, + "__cpu_up": 1, + "C2": 1, + "__Pyx_PyUnicode_READY": 2, + "server.maxmemory_samples": 3, + "ask": 3, + "WGL_ATI_render_texture_rectangle": 2, + "PFNWGLGETPIXELFORMATATTRIBFVARBPROC": 2, + "__pyx_t_5numpy_uint16_t": 1, + "szres": 8, + "cache": 26, + "atoi": 3, + "WGL_EXT_pixel_format_packed_float": 2, + "maybe_modified": 2, + "handle": 10, + "uDelay": 2, + "__wglewGetGammaTableParametersI3D": 2, + "WGL_STEREO_EMITTER_ENABLE_3DL": 1, + "n_samples": 1, + "i_rfLMSX_WRAP17": 2, + "0": 11, + "server.aof_last_fsync": 1, + "updateLRUClock": 3, + "wglGetGammaTableI3D": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_10Regression_2dloss": 1, + "PyFloat_CheckExact": 1, + "cmd_commit_tree": 1, + "*fp": 3, + "source": 8, + "iBuffer": 2, + "pair.": 1, + "startCharacterPos_": 4, + "rfString_Append_fUTF8": 2, + "*val": 4, + "CMIT_FMT_DEFAULT": 1, + "__wglewQueryFrameCountNV": 2, + "y": 14, + "i_STRING_": 2, + "noPreloadGetKeys": 6, + "write": 7, + "__pyx_v_threshold": 2, + "__Pyx_GetItemInt_List_Fast": 1, + "flushSlavesOutputBuffers": 1, + "**stack": 1, + "RE_FILE_READ": 2, + "node": 9, + "exact": 6, + "PFNWGLDISABLEFRAMELOCKI3DPROC": 2, + "WGL_EXT_extensions_string": 2, + "wglCreateDisplayColorTableEXT": 1, + "PyLong_FromString": 1, + "PyString_FromStringAndSize": 1, + "i_NPSELECT_RF_STRING_BETWEEN1": 1, + "git_diff_list_free": 3, + "notes": 1, + "*__pyx_vtabptr_7sklearn_12linear_model_8sgd_fast_EpsilonInsensitive": 1, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Classification": 7, + "*res": 2, + "SIGPIPE": 1, + "STRBUF_INIT": 1, + "git_pool_strdup": 3, + "*16": 2, + "WGL_ACCUM_RED_BITS_EXT": 1, + "py_line": 1, + "__Pyx_SET_CREAL": 2, + "configfile": 2, + "subscribeCommand": 2, + "*get_octopus_merge_bases": 1, + "__WGLEW_ARB_make_current_read": 2, + "function_name": 1, + "FinishContext": 1, + "initialize": 1, + "NOTIFY": 2, + "__linux__": 3, + "Non": 2, + "__pyx_skip_dispatch": 6, + "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_EpsilonInsensitive": 2, + "listCreate": 6, + "INVALID_CONSTANT": 1, + "cpu_hotplug": 1, + "short": 6, + "WGL_SWAP_METHOD_EXT": 1, + "wglMakeAssociatedContextCurrentAMD": 1, + "__Pyx_PyInt_AsSignedChar": 1, + "PyBUF_C_CONTIGUOUS": 1, + "*section": 2, + "values": 30, + "PyArray_Descr": 1, + "*vtable": 1, + "should": 2, + "saveCommand": 1, + "*cache": 4, + "clusterCron": 1, + "at": 3, + "WGL_GPU_FASTEST_TARGET_GPUS_AMD": 1, + "byteIndex_": 12, + "objectCommand": 1, + "http_message_needs_eof": 4, + "PFNWGLGETMSCRATEOMLPROC": 2, + "*__Pyx_RefNannyImportAPI": 1, + "slowlogCommand": 1, + "*configfile": 1, + "var": 7, + "**twos": 1, + "then": 1, + "BITS_TO_LONGS": 1, + "*nNumFormats": 2, + "__Pyx_c_neg": 2, + "convert": 1, + "sinterstoreCommand": 1, + "cmd": 46, + "zrevrangeCommand": 1, + "not_shallow_flag": 1, + "]": 597, + "FOR": 11, + "cmd_cat_file": 1, + "*shape": 1, + "possible": 2, + "HPE_INVALID_VERSION": 12, + "WGL_ACCUM_BITS_EXT": 1, + "HGLRC": 14, + "F01": 1, + "*__pyx_n_s__loss": 1, + "__pyx_k__l": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_14Classification_loss": 1, + "__Pyx_PyInt_AsUnsignedInt": 1, + "compile": 1, + "rfString_Before": 3, + "rfString_ToCstr": 2, + "mod": 13, + "WGL_TYPE_RGBA_UNSIGNED_FLOAT_EXT": 1, + "__Pyx_c_quot": 2, + "i_SELECT_RF_STRING_COUNT2": 1, + "git_pool_swap": 1, + "parent_offset": 1, + "PYREX_WITHOUT_ASSERTIONS": 1, + "strncpy": 3, + "45": 1, + "slaveseldb": 1, + "uv_kill": 1, + "work": 4, + "*__pyx_n_s__dataset": 1, + "*__pyx_v_loss": 1, + "_Complex_I": 3, + "RF_SELECT_FUNC_IF_NARGGT": 10, + "documentation": 1, + "opts.pathspec": 2, + "__WGLEW_NV_swap_group": 2, + "__wglewSwapIntervalEXT": 2, + "REDIS_REPL_TIMEOUT": 1, + "xC1": 1, + "INVALID_CHUNK_SIZE": 1, + "WGLEWContext*": 2, + "RF_UTF32_LE": 3, + "s_req_schema_slash": 6, + "cp": 12, + "__wglewIsEnabledGenlockI3D": 2, + "iPixelFormat": 6, + "PyString_FromFormat": 1, + "i_rfString_Afterv": 16, + "poll": 1, + "invalid": 2, + "*read_commit_extra_headers": 1, + "dxDevice": 1, + "__wglewDestroyDisplayColorTableEXT": 2, + "WGL_TEXTURE_FORMAT_ARB": 1, + "__wglewReleasePbufferDCARB": 2, + "__pyx_doc_7sklearn_12linear_model_8sgd_fast_12LossFunction_loss": 1, + "*__pyx_n_s__sample_weight": 1, + "PY_SSIZE_T_MAX": 1, + "*sp": 1, + "yajl_get_bytes_consumed": 1, + "WGLEWContextStruct": 2, + "CC": 1, + "j_": 6, + "ahead": 5, + "RF_LITTLE_ENDIAN": 23, + "B7": 1, + "WGL_SAMPLES_EXT": 1, + "__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Huber___init__": 1, + "created": 1, + "endif": 6, + "ptr": 18, + "O_APPEND": 2, + "yajl_render_error_string": 1, + "rfString_Prepend": 2, + "typename": 2, + "s_req_schema_slash_slash": 6, + "__wglewEnumGpusNV": 2, + "__pyx_PyFloat_AsDouble": 12, + "A": 11, + "rstatus": 1, + "rfFback_UTF32LE": 2, + "s_chunk_parameters": 3, + "xff": 3, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_SquaredLoss": 1, + "_OPENMP": 1, + "PySequence_DelSlice": 2, + "shared.nullmultibulk": 2, + "MIN": 3, + "fread": 12, + "tail": 12, + "WGL_ALPHA_SHIFT_EXT": 1, + "strbuf_addf": 1, + "WGL_NV_multisample_coverage": 2, + "WGL_AUX_BUFFERS_ARB": 1, + "i_SELECT_RF_STRING_REPLACE5": 1, + "dictVanillaFree": 1, + "__pyx_k__q_data_ptr": 1, + "PyNumber_Index": 1, + "shared": 1, + "tasklist_lock": 2, + "WGL_VIDEO_OUT_ALPHA_NV": 1, + ".real": 3, + "git_mutex_lock": 2, + "rfFgets_UTF8": 2, + "http_parser_init": 2, + "s_res_http_major": 3, + "sigemptyset": 2, + "FLEX_ARRAY": 1, + "suboffsets": 1, + "full_path.ptr": 2, + "cpumask_empty": 1, + "__wglewSwapBuffersMscOML": 2, + "WGL_DEPTH_FLOAT_EXT": 1, + "WGL_SUPPORT_OPENGL_ARB": 1, + "i_SELECT_RF_STRING_BEFORE4": 1, + "due": 2, + "*curtag": 2, + "old_file.mode": 2, + "watchdogScheduleSignal": 1, + "rfString_IterateB_End": 1, + "message": 3, + "jsonTextLen": 4, + "GL_RGBA_FLOAT_MODE_ATI": 1, + "__wglewQueryGenlockMaxSourceDelayI3D": 2, + "server.aof_fsync": 1, + "PyBytes_FromFormat": 1, + "server.lua_time_limit": 1, + "*get_merge_bases_many": 1, + "base": 1, + "hDC": 33, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Huber_4dloss": 1, + "__Pyx_GetItemInt_Generic": 6, + "%": 2, + "CHAR": 2, + "HTTP_MKACTIVITY": 1, + "LOG_INFO": 1, + "uv__make_socketpair": 2, + "*diff_ptr": 2, + "server.ops_sec_last_sample_time": 3, + "cmd_rev_list": 1, + "git_diff_list": 17, + "WGL_AUX4_ARB": 1, + "WGL_CUBE_MAP_FACE_ARB": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_plain_sgd": 1, + "Py_TPFLAGS_HAVE_NEWBUFFER": 1, + "git_version_string": 1, + "printk": 12, + "server.lpushCommand": 1, + "REFU_WIN32_VERSION": 1, + "WGL_NUMBER_UNDERLAYS_ARB": 1, + "__pyx_pf_7sklearn_12linear_model_8sgd_fast_25SquaredEpsilonInsensitive___init__": 1, + "__pyx_v_c": 1, + "#undef": 7, + "cmd_var": 1, + "self_ru.ru_stime.tv_usec/1000000": 1, + "n": 70, + "PyFloat_Check": 2, + "temp.bytes": 1, + "likely": 22, + "rfFback_UTF16BE": 2, + "*hcpu": 3, + "fprintf": 18, + "cmd_log": 1, + "rfUTF8_IsContinuationByte": 12, + "*__pyx_t_2": 3, + "__pyx_t_5numpy_longlong_t": 1, + "i_NPSELECT_RF_STRING_COUNT0": 1, + "*keepChars": 1, + "REDIS_MAXIDLETIME": 1, + "openlog": 1, + "p_close": 1, + "*__pyx_n_s__dtype": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_10Regression_loss": 2, + "num_online_cpus": 2, + "cmit_fmt": 3, + "__Pyx_c_is_zerof": 3, + "PyIntObject": 1, + "i_SELECT_RF_STRING_REMOVE0": 1, + "i_SELECT_RF_STRING_AFTERV7": 1, + "*header_field_mark": 1, + "cpu_notify_nofail": 4, + "WGL_SAMPLE_BUFFERS_EXT": 1, + "__Pyx_SetVtable": 1, + "*X_data_ptr": 2, + "__Pyx_StructField_": 2, + "Py_False": 2, + "yajl_status": 4, + "INT32": 1, + "iDeviceIndex": 1, + "PFNWGLCREATEASSOCIATEDCONTEXTAMDPROC": 2, + "mask": 1, + "*__pyx_n_s__order": 1, + "rfUTF16_Decode": 5, + "giterr_clear": 1, + "server.maxidletime": 3, + "wglGetPbufferDCARB": 1, + "__pyx_pw_7sklearn_12linear_model_8sgd_fast_12LossFunction_1loss": 1, + "url": 4, + "WGL_TRANSPARENT_VALUE_EXT": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_3Log_2dloss": 1, + "please": 1, + "HTTP_PARSER_ERRNO": 10, + ".name": 1, + "wglCreateImageBufferI3D": 1, + "*__pyx_m": 1, + "PyUnicode_GET_LENGTH": 1, + "**msg_p": 2, + "*__pyx_n_s__w": 1, + "__pyx_k_12": 1, + "id": 13, + "uv_stream_t*": 2, + "*url_mark": 1, + "wglDeleteAssociatedContextAMD": 1, + "sdsfree": 2, + "len": 30, + "yajl_status_to_string": 1, + "PFNWGLBEGINFRAMETRACKINGI3DPROC": 2, + "*__pyx_ptype_7sklearn_5utils_11seq_dataset_ArrayDataset": 1, + "rdbSave": 1, + "git_pool_init": 2, + "getkeys_proc": 1, + "RLIMIT_NOFILE": 2, + "HPE_OK": 10, + "depends": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12SquaredHinge_6__reduce__": 1, + "__pyx_code_cache": 1, + "parN": 10, + "cmd_column": 1, + "bytesToHuman": 3, + "__wglewCreateBufferRegionARB": 2, + "iLayerPlane": 5, + "none_allowed": 1, + "i_SELECT_RF_STRING_BETWEEN1": 1, + "i_rfLMSX_WRAP5": 9, + "REDIS_EXPIRELOOKUPS_PER_CRON": 2, + "http_parser_execute": 2, + "WGL_NEED_SYSTEM_PALETTE_ARB": 1, + "MARKDOWN_GROW": 1, + "///Fseek": 1, + "rfFback_UTF8": 2, + "__int64": 3, + "": 5, + "*ver_revision": 2, + "body_mark": 2, + "yajl_free": 1, + "__pyx_t_2": 21, + "hgetCommand": 1, + "rfLMS_MacroEvalPtr": 2, + "the": 91, + "activeExpireCycle": 2, + "sismemberCommand": 1, + "restoreCommand": 1, + "WGL_STENCIL_BITS_EXT": 1, + "HTTP_HEAD": 2, + "s_req_http_major": 3, + "pexpireCommand": 1, + "EINTR": 1, + "wglBeginFrameTrackingI3D": 1, + "**orig_argv": 1, + "HPE_CB_##FOR": 2, + "wglGetVideoDeviceNV": 1, + "WGL_NUMBER_OVERLAYS_ARB": 1, + "UINT": 30, + "WGL_UNIQUE_ID_NV": 1, + "rfPopen": 2, + "options.flags": 4, + "need_8bit_cte": 2, + "CPU_POST_DEAD": 1, + "C8": 1, + "PFNWGLDESTROYIMAGEBUFFERI3DPROC": 2, + "__wglewLoadDisplayColorTableEXT": 2, + "rfString_Assign_fUTF16": 2, + "REDIS_LRU_CLOCK_MAX": 1, + "*type": 4, + "__Pyx_StructField": 2, + "PyInt_CheckExact": 1, + "before": 4, + "validity": 2, + "git_iterator_for_tree_range": 4, + "zmalloc_enable_thread_safeness": 1, + "__wglewWaitForMscOML": 2, + "ySrc": 1, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Log": 5, + "peel_to_type": 1, + "result": 48, + "i_rfString_Find": 5, + "FOR##_mark": 7, + "WGL_VIDEO_OUT_STACKED_FIELDS_2_1": 1, + "kw_name": 1, + "__Pyx_PyNumber_Int": 1, + "tp_name": 4, + "UF_QUERY": 2, + "#string": 1, + "data": 69, + "remainder": 3, + "interval": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_18EpsilonInsensitive_2loss": 1, + "PyNumber_Divide": 1, + "noMatch": 8, + "rfString_Deinit": 3, + "appendServerSaveParams": 3, + "url_mark": 2, + "dictSetHashFunctionSeed": 1, + "*arg": 1, + "__wglewEnableGenlockI3D": 2, + "cpow": 1, + "i_SELECT_RF_STRING_BEFOREV10": 1, + "*var": 1, + "__pyx_v_t": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12LossFunction_2dloss": 2, + "err": 38, + "SIGKILL": 2, + "i_NPSELECT_RF_STRING_BEFOREV0": 1, + "s_start_req": 6, + "*state": 1, + "swapE": 21, + "REDIS_MAXMEMORY_VOLATILE_RANDOM": 1, + "dictSdsCaseHash": 2, + "pos": 7, + "LL*": 1, + "WGL_GENLOCK_SOURCE_DIGITAL_SYNC_I3D": 1, + "old_file.size": 1, + "*oitem": 2, + "rfString_Create_UTF16": 2, + "to_read": 6, + "aeSetBeforeSleepProc": 1, + "listMatchPubsubPattern": 1, + "__wglewGetSwapIntervalEXT": 2, + "PFNWGLBINDDISPLAYCOLORTABLEEXTPROC": 2, + "Endian": 1, + "<=>": 16, + "": 1, + "rb_respond_to": 1, + "desc": 5, + "rfString_Assign_fUTF32": 2, + "on_##FOR": 4, + "ev_child_stop": 2, + "double": 126, + "memory": 4, + "__Pyx_SET_CIMAG": 2, + "__pyx_vtabstruct_7sklearn_5utils_13weight_vector_WeightVector": 3, + "expireCommand": 1, + "*ctx": 5, + "action": 2, + "uv_err_t": 1, + "s_res_http_minor": 3, + "iBufferType": 1, + "<0)>": 1, + "won": 1, + "Local": 2, + "handle_options": 2, + "fopen": 3, + "setupSignalHandlers": 2, + "GIT_MODE_PERMS_MASK": 1, + "gid": 2, + "offsetof": 2, + "timelimit": 5, + "rfLMS_Push": 4, + "*__pyx_ptype_7cpython_4type_type": 1, + "__Pyx_PyInt_AsSize_t": 1, + "i_SELECT_RF_STRING_AFTER4": 1, + "i_SELECT_RF_STRING_FIND": 1, + "**diff": 4, + "hi": 5, + "server.maxmemory": 6, + "wglReleaseImageBufferEventsI3D": 1, + "dstX0": 1, + "c": 252, + "dictObjKeyCompare": 2, + "server.loading": 4, + "bib": 3, + "git_vector_foreach": 4, + "WGL_TRANSPARENT_ARB": 1, + "rfString_Create_UTF32": 2, + "psetexCommand": 1, + "different": 1, + "*slave": 2, + "PFNWGLSWAPLAYERBUFFERSMSCOMLPROC": 2, + "hpVideoDevice": 1, + "__wglewResetFrameCountNV": 2, + "__pyx_k_3": 1, + "get_commit_format": 1, + "bpop.timeout": 2, + "cmd_patch_id": 1, + "PyBuffer_Release": 1, + "__Pyx_IterFinish": 1, + "i_SELECT_RF_STRING_AFTERV14": 1, + "handle_alias": 1, + "PFNWGLCREATECONTEXTATTRIBSARBPROC": 2, + "__pyx_t_5numpy_cdouble_t": 1, + "i_rfLMS_WRAP2": 5, + "hObjects": 2, + "_Complex": 2, + "fields": 1, + "even": 1, + "listRelease": 1, + "cmd_reset": 1, + "WGL_ARB_framebuffer_sRGB": 2, + "*p": 9, + "calls": 4, + "i_rfString_Prepend": 3, + "tv.tv_usec": 3, + "cmd_shortlog": 1, + "Once": 1, + "CALLBACK_NOTIFY_": 3, + "F_UPGRADE": 3, + "wglEnableFrameLockI3D": 1, + "i_SELECT_RF_STRING_BEFOREV": 1, + "bSize*sizeof": 1, + "CB_url": 1, + "dictListDestructor": 2, + "PFNWGLISENABLEDGENLOCKI3DPROC": 2, + "__pyx_v_eta0": 1, + "versions": 1, + "S_ISREG": 1, + "WGL_FLOAT_COMPONENTS_NV": 1, + "npy_cdouble": 2, + "*__pyx_b": 1, + "PyLong_FromLong": 1, + "document": 9, + "server.slowlog_max_len": 1, + "active": 2, + "ends": 3, + "http_parser_url_fields": 2, + "Insufficient": 2, + "__Pyx_GOTREF": 24, + "LF_EXPECTED": 1, + "git_iterator_current": 2, + "htmlblock_end_tag": 1, + "i_FSEEK_CHECK": 14, + "UTF16": 4, + "A1": 1, + "wglQueryGenlockMaxSourceDelayI3D": 1, + "WGL_BLUE_SHIFT_ARB": 1, + "__WGLEW_3DL_stereo_control": 2, + "__Pyx_RefNannyDeclarations": 11, + "PyType_Modified": 1, + "cmd_cherry_pick": 1, + "git_oid_iszero": 2, + "wglGetFrameUsageI3D": 1, + "WGL_GREEN_BITS_EXT": 1, + "__Pyx_c_sum": 2, + "**pptr": 1, + "s_res_HTT": 3, + "server.repl_serve_stale_data": 2, + "cmd_count_objects": 1, + "xFEFF": 1, + "create": 2, + "*description": 1, + "*feature_indices_ptr": 2, + "PyExc_SystemError": 3, + "__WGLEW_NV_render_depth_texture": 2, + "WGL_ACCESS_READ_ONLY_NV": 1, + "got": 1, + "authCommand": 3, + "RF_String**": 2, + "keys": 4, + "PFNWGLGETCURRENTASSOCIATEDCONTEXTAMDPROC": 2, + "is_str": 1, + "__PYX_BUILD_PY_SSIZE_T": 2, + "i_NPSELECT_RF_STRING_FIND0": 1, + "xD": 1, + "server.bug_report_start": 1, + "askingCommand": 1, + "WGL_PBUFFER_WIDTH_EXT": 1, + "WGL_ARB_extensions_string": 2, + "i_NUMBER_": 12, + "*sample_weight_data": 2, + "FILE*f": 2, + "Allocation": 2, + "*__pyx_kp_u_8": 1, + "__pyx_v_intercept": 1, + "s_req_fragment_start": 7, + "dest": 7, + "growth": 3, + "mm": 1, + "*match": 3, + ".item": 2, + "PFNWGLGETGAMMATABLEI3DPROC": 2, + "__WGLEW_ARB_create_context": 2, + "decrRefCount": 6, + "RF_HEXEQ_UI": 7, + "oid": 17, + "PyErr_Format": 4, + "cmd_mailsplit": 1, + "": 1, + "git__prefixcmp": 2, + "UTF32": 4, + "s_header_value_start": 4, + "RE_UTF16_NO_SURRPAIR": 2, + "server.sofd": 9, + "__wglewReleaseImageBufferEventsI3D": 2, + "PY_LONG_LONG": 5, + "*dict": 5, + "take_cpu_down_param": 3, + "WGL_NV_copy_image": 2, + "WGL_CONTEXT_ROBUST_ACCESS_BIT_ARB": 1, + "mem_online_node": 1, + "**diff_ptr": 1, + "lindexCommand": 1, + "__int16": 2, + "STRIP_EXTENSION": 1, + "MKD_NOTABLES": 1, + "WGL_TYPE_RGBA_EXT": 1, + "PyCFunction": 3, + "endinternal": 1, + "flushdbCommand": 1, + "RF_HEXGE_UI": 6, + "i_rfLMSX_WRAP12": 2, + "+": 551, + "num*100/slots": 1, + "nAttributes": 4, + "*__pyx_n_s__count": 1, + "i_READ_CHECK": 20, + "hmsetCommand": 1, + "WGLEW_ARB_extensions_string": 1, + "Py_TPFLAGS_HAVE_INDEX": 1, + "F_SKIPBODY": 4, + "container": 17, + "UF_HOST": 3, + "CB_headers_complete": 1, + "*data": 12, + "wglGetVideoInfoNV": 1, + "iHeight": 2, + "__WGLEW_ARB_buffer_region": 2, + "__pyx_v_learning_rate": 1, + "__pyx_t_5numpy_uintp_t": 1, + "*git_cache_try_store": 1, + "*git_hash_new_ctx": 1, + "t": 32, + "rfFgets_UTF16LE": 2, + "uFlags": 1, + "cabsf": 1, + "sortCommand": 1, + "git_diff_merge": 1, + "*1024": 4, + "WGLEW_EXT_multisample": 1, + "WGL_ARB_multisample": 2, + "rfString_Assign": 2, + "*key2": 4, + "*col_data": 1, + "HTTP_MOVE": 1, + "s_dead": 10, + "querybuf_size": 3, + "argv0": 2, + "GLbitfield": 1, + "link_ref": 2, + "PFNWGLQUERYVIDEOCAPTUREDEVICENVPROC": 2, + "__pyx_k__isinf": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_11SquaredLoss_2dloss": 1, + "__pyx_t_5numpy_cfloat_t": 1, + "out": 18, + "save_commit_buffer": 3, + "REDIS_EXPIRELOOKUPS_PER_CRON/4": 1, + "**environ": 1, + "rfFgetc_UTF32LE": 4, + "WGL_BIND_TO_TEXTURE_DEPTH_NV": 1, + "PFNWGLGETGENLOCKSOURCEI3DPROC": 2, + "property": 1, + "__Pyx_LocalBuf_ND": 1, + "PyString_Repr": 1, + "PyUnicode_CheckExact": 1, + "i_NPSELECT_RF_STRING_REMOVE": 1, + "RF_SELECT_FUNC": 10, + "serverCron": 2, + "stack_free": 2, + "we": 10, + "*desc": 1, + "CMIT_FMT_USERFORMAT": 1, + "GIT_DIFFCAPS_TRUST_EXEC_BIT": 2, + "RUN_SETUP_GENTLY": 16, + "__int32": 2, + "WGL_VIDEO_OUT_STACKED_FIELDS_1_2": 1, + "__WGLEW_NV_multisample_coverage": 2, + "WGL_RED_BITS_EXT": 1, + "": 2, + "cmd_rm": 1, + "notifier_to_errno": 1, + "pFlag": 3, + "WGL_EXT_make_current_read": 2, + "__Pyx_c_powf": 3, + "*body_mark": 1, + "HGPUNV": 5, + "__pyx_t_5numpy_uint8_t": 1, + "Py_TYPE": 7, + "zremrangebyrankCommand": 1, + "rev_info": 2, + "pEvent": 1, + "HDC": 65, + "*__pyx_k_tuple_7": 1, + "code_object": 2, + "initServerConfig": 2, + "": 1, + "updateDictResizePolicy": 2, + "srcX": 1, + "WGL_SWAP_METHOD_ARB": 1, + "strcpy": 4, + "hashDictType": 1, + "server.bindaddr": 2, + "WGLEW_EXT_display_color_table": 1, + "dstY1": 1, + "PyString_CheckExact": 2, + "__GNUC__": 7, + "Counts": 1, + "LL*1024*1024": 2, + "wrapping": 1, + "last": 1, + "shared.czero": 1, + "SHA_CTX": 3, + "dstZ": 1, + "__Pyx_IternextUnpackEndCheck": 1, + "h_C": 3, + "new_file.flags": 4, + "expireatCommand": 1, + "HTTP_ERRNO_GEN": 3, + "wglGetPixelFormatAttribfvARB": 1, + "__pyx_k__g": 1, + "UF_PATH": 2, + "is_connect": 4, + "bytePos": 23, + "__wglewQueryPbufferARB": 2, + "iWidth": 2, + "itemsize": 1, + "uv__new_sys_error": 1, + "signal_pipe": 7, + "cpumask_first": 1, + "__pyx_f_7sklearn_12linear_model_8sgd_fast_12LossFunction_dloss": 1, + "off.": 1, + "bogus": 1, + "numclients": 3, + "brpoplpushCommand": 1, + "GIT_DELTA_IGNORED": 5, + "__wglewCreateAssociatedContextAMD": 2, + "PyVarObject_HEAD_INIT": 1, + "parse_table_row": 1, + "old_file.flags": 2, + "__LINE__": 50, + "done_help": 3, + "GLEW_MX": 4, + "Attempted": 1, + "server.aof_fd": 4, + "FILE": 3, + "onto_new": 6, + "s_req_first_http_major": 3, + "*output_encoding": 2, + "cpu_online_bits": 5, + "on_url": 1, + "getCommand": 1, + "end": 48, + "frozen_cpus": 9, + "PFNWGLCHOOSEPIXELFORMATARBPROC": 2, + "hashslot": 3, + "shared.unsubscribebulk": 1, + "noid": 4, + ".dict": 9, + "pp_title_line": 1, + "wglQueryPbufferEXT": 1, + "__WGLEW_EXT_extensions_string": 2, + "WGL_NO_ACCELERATION_ARB": 1, + "sq_norm": 1, + "wscale": 1, + "exists": 6, + "start": 10, + "": 2, + "B2": 1, + "*__pyx_kp_s_4": 1, + "__pyx_t_double_complex": 27, + "PY_SSIZE_T_MIN": 1, + "__WGLEW_I3D_swap_frame_usage": 2, + "Py_TPFLAGS_CHECKTYPES": 1, + "i_LIMSELECT_RF_STRING_AFTERV": 1, + "RF_STRING_INDEX_OUT_OF_BOUNDS": 2, + "nread": 7, + "act.sa_mask": 2, + "GLfloat": 3, + "__Pyx_RaiseTooManyValuesError": 1, + "performed": 1, + "syslogLevelMap": 2, + "smoveCommand": 1, + "__int8": 2, + "<": 219, + "PFNWGLASSOCIATEIMAGEBUFFEREVENTSI3DPROC": 2, + "WGL_SAMPLES_ARB": 1, + "PFNWGLGETCONTEXTGPUIDAMDPROC": 2, + "i_SELECT_RF_STRING_AFTERV": 1, + "server.el": 7, + "i_SELECT_RF_STRING_BEFOREV16": 1, + "into": 8, + "attempting": 2, + "header_states": 1, + "REDIS_REPL_SEND_BULK": 1, + "F_CONNECTION_CLOSE": 3, + "uv__handle_init": 1, + "WGL_BLUE_BITS_EXT": 1, + "CPU_STARTING": 1, + "o2": 7, + "__WGLEW_H__": 1, + "i_SELECT_RF_STRING_REPLACE0": 1, + "zcountCommand": 1, + "WGLEW_ARB_make_current_read": 1, + "The": 1, + "moveCommand": 1, + "INVALID_PATH": 1, + "STDERR_FILENO": 2, + "getrlimit": 1, + "s_res_H": 3, + "IS_ERR": 1, + "WGLEW_NV_copy_image": 1, + "WGL_ACCUM_GREEN_BITS_EXT": 1, + "__pyx_t_5numpy_int16_t": 1, + "PyBUF_SIMPLE": 1, + "i_SELECT_RF_STRING_FIND1": 1, + "brpopCommand": 1, + "cmd_remote_fd": 1, + "0x7a": 1, + "iEntries": 2, + "single_parent": 1, + "HTTP_PROPPATCH": 1, + "sigtermHandler": 2, + "NEED_WORK_TREE": 18, + "shared.nokeyerr": 1, + "no": 4, + "server.loading_total_bytes": 3, + "utf8": 36, + "WGL_AUX1_ARB": 1, + "WGL_TEXTURE_TARGET_ARB": 1, + "__pyx_pw_7sklearn_12linear_model_8sgd_fast_12LossFunction_3dloss": 1, + "bytesN=": 1, + "cmd_show_branch": 1, + "http_errno_name": 1, + "rfString_Create_cp": 2, + "int32_t": 112, + "guards": 2, + "CONFIG_PM_SLEEP_SMP": 2, + "NODE_DATA": 1, + "WGL_STENCIL_BUFFER_BIT_ARB": 1, + "__pyx_v_verbose": 1, + "equals": 1, + "list": 1, + "__MUTEX_INITIALIZER": 1, + "": 2, + "*X_indptr_ptr": 1, + "init_cpu_online": 1, + "*bufptr": 1, + "msetCommand": 1, + "sig": 2, + "dictGetRandomKey": 4, + "cmd_get_tar_commit_id": 1, + "*__pyx_vtabptr_7sklearn_5utils_11seq_dataset_ArrayDataset": 1, + "PyString_Check": 2, + "CB_header_field": 1, + "cmp": 9, + "printf": 4, + "setsid": 2, + "addReplyErrorFormat": 1, + "flags": 89, + "WGL_NV_video_capture": 2, + "DECLARE_HANDLE": 6, + "__Pyx_RaiseBufferFallbackError": 1, + "CYTHON_UNUSED": 14, + "i": 410, + "setbitCommand": 1, + "set_cpu_present": 1, + "MKD_STRICT": 1, + "__pyx_pf_5numpy_7ndarray_2__releasebuffer__": 1, + "i_SELECT_RF_STRING_COUNT": 1, + "GPERF_CASE_STRNCMP": 1, + "hexistsCommand": 1, + "zremrangebyscoreCommand": 1, + "HTTP_COPY": 1, + "buffAllocated": 11, + "PFNWGLSWAPBUFFERSMSCOMLPROC": 2, + "macro": 2, + "server.assert_file": 1, + "zmalloc_get_rss": 1, + "WGL_VIDEO_OUT_DEPTH_NV": 1, + "PFNWGLDXREGISTEROBJECTNVPROC": 2, + "git_odb__hashlink": 1, + "RF_HEXG_US": 8, + "": 2, + "check_commit": 2, + "scardCommand": 1, + "PAUSED": 1, + "PFNWGLGETGENLOCKSAMPLERATEI3DPROC": 2, + "__pyx_t_5numpy_long_t": 1, + "http_major": 11, + "xf": 1, + "int16_t": 1, + "*parents": 4, + "c3": 9, + "*doc": 2, + "getClientOutputBufferMemoryUsage": 1, + "CYTHON_COMPILING_IN_PYPY": 3, + "optionsP": 11, + "dictFind": 1, + "help_unknown_cmd": 1, + "sprintf": 10, + "WGL_VIDEO_OUT_FRAME": 1, + "__wglewDeleteAssociatedContextAMD": 2, + "__Pyx_c_conjf": 3, + "HTTP_NOTIFY": 1, + "REDIS_REPL_WAIT_BGSAVE_START": 1, + "<<": 56, + "shared.syntaxerr": 2, + "git_buf_len": 1, + "*v": 3, + "__set_current_state": 1, + "new_iter": 13, + "__wglewGetExtensionsStringEXT": 2, + "*__pyx_kwds": 9, + "copy": 4, + "server.hash_max_ziplist_value": 1, + "*commit_list_insert_by_date": 1, + "PFNWGLGETPIXELFORMATATTRIBFVEXTPROC": 2, + "npy_intp": 1, + "EBUSY": 3, + "cmd_archive": 1, + "ust": 7, + "UTF8_BOM": 1, + "MKACTIVITY": 2, + "listDelNode": 1, + "server.client_max_querybuf_len": 1, + "initServer": 2, + "redisCommandTable": 5, + "col": 9, + "*__pyx_k_tuple_15": 1, + "WGL_OPTIMAL_PBUFFER_WIDTH_EXT": 1, + "A7": 2, + "shared.outofrangeerr": 1, + "h_matching_connection_close": 3, + "notify_cpu_starting": 1, + "argv": 54, + "tempBuff": 6, + "environment": 3, + "__pyx_n_s__dloss": 1, + "lnos": 4, + "M": 1, + "rfString_Tokenize": 2, + "*lookup_commit_or_die": 2, + "REDIS_MBULK_BIG_ARG": 1, + "rstrP": 5, + "wglWaitForSbcOML": 1, + "PFNWGLLOCKVIDEOCAPTUREDEVICENVPROC": 2, + "__Pyx_TypeInfo*": 2, + "REDIS_AOF_OFF": 5, + "renamenxCommand": 1, + "__wglewSendPbufferToVideoNV": 2, + "stride": 2, + "#ifndef": 84, + "xDFFF": 8, + "__WGLEW_3DFX_multisample": 2, + "assumed": 1, + "off_t": 1, + "mgetCommand": 1, + "querybuf": 6, + "uint16_t*": 11, + "BOOL": 84, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Classification": 1, + "cpumask_var_t": 1, + "data.stream": 7, + "cmd_stripspace": 1, + "cpu_possible": 1, + "__Pyx_PyObject_IsTrue": 1, + "TARGET_OS_IPHONE": 1, + "rfFReadLine_UTF16LE": 4, + "uint32_t*length": 1, + "v2": 26, + "GIT_DIFFCAPS_ASSUME_UNCHANGED": 2, + "old_uf": 4, + "parse_object": 1, + "offset": 1, + "createObject": 31, + "sha1": 20, + "*util": 1, + "yajl_alloc_funcs": 3, + "__wglewReleaseTexImageARB": 2, + "this": 5, + "*out": 3, + "cmd_unpack_file": 1, + "DELETE": 2, + "WGL_STENCIL_BITS_ARB": 1, + "__Pyx_c_negf": 2, + "curtag": 8, + "*pathspec": 2, + "C3": 1, + "PyBytes_AsStringAndSize": 1, + "rfString_GetChar": 2, + "bitopCommand": 1, + "handle_internal_command": 3, + "PFNWGLDXCLOSEDEVICENVPROC": 2, + "goes": 1, + "__pyx_n_s__y": 6, + "configCommand": 1, + "server.set_max_intset_entries": 1, + "R_Nan": 2, + "server.pidfile": 3, + "__Pyx_CLEAR": 1, + "__pyx_t_5numpy_intp_t": 1, + "i_rfLMSX_WRAP18": 2, + "*key": 5, + "1": 2, + "HPE_INVALID_HEADER_TOKEN": 2, + "cmd_update_server_info": 1, + "*cell_work": 1, + "yajl_lex_realloc": 1, + "__Pyx_RaiseArgtupleInvalid": 7, + "__Pyx_XGOTREF": 2, + "remove": 1, + "server.aof_rewrite_time_start": 2, + "alloc_frozen_cpus": 2, + "cmd_rev_parse": 1, + "dstLevel": 1, + "__pyx_k__xnnz": 1, + "stacklevel": 1, + "position": 1, + "z": 47, + "CPU_DYING": 1, + "sdsnew": 27, + "getClientsMaxBuffers": 1, + "PROPPATCH": 2, + "dictIsRehashing": 2, + "__wglewEnumGpusFromAffinityDCNV": 2, + "PyTypeObject": 25, + "performs": 1, + "vsnprintf": 1, + "interactive_add": 1, + "SHA1_Update": 3, + "__pyx_k__zeros": 1, + "__Pyx_GetBuffer": 2, + "op": 8, + "PyNumber_Check": 2, + "GIT_DELTA_MODIFIED": 3, + "*ret": 20, + "*__pyx_n_s__seed": 1, + "nd": 1, + "server.lruclock": 2, + "server.aof_selected_db": 1, + "proccess": 2, + "git_submodule_lookup": 1, + "__pyx_t_5numpy_int8_t": 1, + "npy_int8": 1, + "idle": 4, + "state": 104, + "#define": 911, + "git_buf": 3, + "REDIS_LOG_RAW": 2, + "options.env": 1, + "shared.integers": 2, + "numerator": 1, + "*__pyx_v_seed": 1, + "__pyx_t_7sklearn_5utils_11seq_dataset_DOUBLE": 7, + "LOG_NDELAY": 1, + "ipc": 1, + "mark": 3, + "i_rfString_StripStart": 3, + "cmd_fetch_pack": 1, + "settings": 6, + "sigsegvHandler": 1, + "certainly": 3, + "": 2, + "*__pyx_kp_u_10": 1, + "SHA1_Init": 4, + "bufgrow": 1, + "__WGLEW_OML_sync_control": 2, + "__wglewFreeMemoryNV": 2, + "PFNWGLGETGENLOCKSOURCEDELAYI3DPROC": 2, + "PY_MAJOR_VERSION": 13, + "ip": 4, + "REFU_IO_H": 2, + "cmd_apply": 1, + "WGL_DEPTH_TEXTURE_FORMAT_NV": 1, + "WGL_TEXTURE_FLOAT_RG_NV": 1, + "PyTuple_New": 3, + "*__pyx_n_s__float64": 1, + "PY_VERSION_HEX": 11, + "eventLoop": 2, + "src": 16, + "strstr": 2, + "WGLEWContext": 1, + "i_StringCHandle": 1, + "HPE_UNKNOWN": 1, + "git__malloc": 3, + "*buf": 10, + "*new_parent": 2, + "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_SquaredHinge": 2, + "numberP": 1, + ".data": 1, + "strftime": 1, + "F02": 1, + "rb_define_method": 2, + "setexCommand": 1, + "s_header_almost_done": 6, + "POLLHUP": 1, + "node_zonelists": 1, + "npy_ulong": 1, + "i_SELECT_RF_STRING_COUNT3": 1, + "check": 8, + "cmd_merge_ours": 1, + "REDIS_ENCODING_RAW": 1, + "PFNWGLRELEASEVIDEODEVICENVPROC": 2, + "WGL_TEXTURE_CUBE_MAP_NEGATIVE_Z_ARB": 1, + "46": 1, + "*diff": 8, + "": 1, + "*__pyx_n_s__any": 1, + "__pyx_t_5numpy_ulonglong_t": 1, + "*numP": 1, + "http_parser": 13, + "listAddNodeTail": 1, + "cmd_name_rev": 1, + "WGLEW_ARB_pixel_format": 1, + "WGLEW_ARB_pbuffer": 1, + "shared.noscripterr": 1, + "cmd.buf": 1, + "REDIS_OPS_SEC_SAMPLES": 3, + "setup_pager": 1, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Log": 1, + "__Pyx_c_eqf": 2, + "lremCommand": 1, + "commit_list_set_next": 1, + "be": 6, + "*dateptr": 1, + "__cpu_disable": 1, + "*optionsP": 8, + "WGL_MAX_PBUFFER_HEIGHT_EXT": 1, + "__pyx_pf_7sklearn_12linear_model_8sgd_fast_12LossFunction_2dloss": 1, + "temp.byteLength": 1, + "deleted": 1, + "getrangeCommand": 2, + "*envchanged": 1, + "http_should_keep_alive": 2, + "take_cpu_down": 2, + "NEW_MESSAGE": 6, + "constructor": 1, + "__cplusplus": 18, + "shared.rpop": 1, + "wglEnumGpusFromAffinityDCNV": 1, + "B8": 1, + "WGL_TEXTURE_FLOAT_R_NV": 1, + "i_NPSELECT_RF_STRING_AFTERV0": 1, + "backs": 1, + "message_begin": 3, + "git_iterator_current_is_ignored": 2, + "commit_extra_header": 7, + "WGL_NUM_VIDEO_CAPTURE_SLOTS_NV": 1, + "*class_name": 1, + "s_message_done": 3, + "after": 6, + "RF_MALLOC": 47, + "bufputc": 2, + "cpu_present_bits": 5, + "wglGetSyncValuesOML": 1, + "WGL_NV_render_depth_texture": 2, + "B": 9, + "__Pyx_zeros": 1, + "PyUnicode_GET_SIZE": 1, + "*argv": 6, + "occurs": 1, + "RF_REALLOC": 9, + "commit_graft_nr": 5, + "clientData": 1, + "*new": 1, + "HTTP_METHOD_MAP": 3, + "rusage": 1, + "__Pyx_PyInt_AsLong": 1, + "*graft": 3, + "cmd_diff_tree": 1, + "s_res_first_http_minor": 3, + "WTERMSIG": 2, + "bioInit": 1, + "WGL_GENLOCK_SOURCE_EDGE_BOTH_I3D": 1, + "__pyx_k__Q": 1, + "Py_XINCREF": 1, + "bysignal": 4, + "parse_url_char": 5, + "unlink": 3, + "*context": 1, + "HTTP_PUT": 2, + "WGL_FRONT_COLOR_BUFFER_BIT_ARB": 1, + "PyTuple_GET_SIZE": 14, + "cmd_merge_tree": 1, + "PFNWGLBINDTEXIMAGEARBPROC": 2, + "*__pyx_n_s__eta0": 1, + "__Pyx_CIMAG": 4, + "goto": 159, + "rfString_Append_i": 2, + "cmd_update_index": 1, + "*tail": 2, + "hello": 1, + "git_hash_free_ctx": 1, + "__Pyx_PrintOne": 1, + "Unicode": 1, + "REDIS_CALL_FULL": 1, + "diff_delta__from_one": 5, + "git_diff_list_alloc": 1, + "REDIS_SERVERPORT": 1, + "wglDXCloseDeviceNV": 1, + "__wglewMakeContextCurrentEXT": 2, + "WGL_TEXTURE_RECTANGLE_ATI": 1, + "da": 2, + "rlim_t": 3, + "yajl_parse_complete": 1, + "WGL_BIND_TO_TEXTURE_RGB_ARB": 1, + "WGLEW_ARB_create_context": 1, + "**argnames": 1, + "Py_UCS4": 2, + "work_bufs": 8, + "MKD_NOIMAGE": 1, + "KERN_INFO": 2, + "ev_child_start": 1, + "PFNWGLGETEXTENSIONSSTRINGEXTPROC": 2, + "WGL_TEXTURE_RGBA_ARB": 1, + "PFNWGLDELETEBUFFERREGIONARBPROC": 2, + "*nr_calls": 1, + "uv__stream_close": 1, + "End": 2, + "PFNWGLQUERYFRAMETRACKINGI3DPROC": 2, + "PyIndex_Check": 2, + "charBLength": 5, + "exit_cb": 3, + "hvalsCommand": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_25SquaredEpsilonInsensitive_4dloss": 1, + "PyLong_AsUnsignedLongLongMask": 1, + "PyInt_AsSsize_t": 3, + "cmd_update_ref": 1, + "__WGLEW_EXT_framebuffer_sRGB": 2, + "__Pyx_BufFmt_Context": 1, + "rfString_BytePosToCharPos": 4, + "shared.cnegone": 1, + "OBJ_COMMIT": 5, + "http_parser_settings": 5, + "": 1, + "RF_STRING_ITERATE_START": 9, + "WGL_TYPE_COLORINDEX_EXT": 1, + "kw_args": 15, + "PyTuple_GET_ITEM": 15, + "rfUTF8_IsContinuationByte2": 1, + "&": 442, + "shared.bulkhdr": 1, + "ffff": 4, + "WGL_CONTEXT_PROFILE_MASK_ARB": 1, + "wglBlitContextFramebufferAMD": 1, + "switch": 46, + "server.loading_start_time": 2, + "cmd_show": 1, + "WGL_TYPE_RGBA_ARB": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_3Log_loss": 1, + "subP": 7, + "UV_IGNORE": 2, + "server.aof_delayed_fsync": 2, + "HTTP_BOTH": 1, + "keepLength": 2, + "RF_UTF8": 8, + "self_ru.ru_utime.tv_usec/1000000": 1, + "free_ptr": 2, + "disable_nonboot_cpus": 1, + "/1000": 1, + "o": 80, + "PFNWGLCREATEBUFFERREGIONARBPROC": 2, + "*read_commit_extra_header_lines": 1, + "bytes": 225, + "object_array": 2, + "rfString_FindBytePos": 10, + "*__pyx_t_3": 3, + "__pyx_t_7sklearn_12linear_model_8sgd_fast_DOUBLE": 4, + "i_NPSELECT_RF_STRING_COUNT1": 1, + "internal": 4, + "bytepos": 12, + "numLen": 8, + "cmd_upload_archive_writer": 1, + "wglDisableFrameLockI3D": 1, + "__Pyx_Buf_DimInfo": 2, + "__pyx_t_5numpy_int_t": 1, + "RP_SELECT_FUNC_IF_NARGIS": 5, + "cmd_verify_pack": 1, + "uname": 1, + "F0": 1, + "WGL_STEREO_EXT": 1, + "wglQueryFrameCountNV": 1, + "__pyx_k__n_iter": 1, + "i_SELECT_RF_STRING_REMOVE1": 1, + "i_SELECT_RF_STRING_AFTERV8": 1, + "HTTP_CHECKOUT": 1, + "WGL_DOUBLE_BUFFER_EXT": 1, + "__WGLEW_ARB_framebuffer_sRGB": 2, + "*idle": 1, + "pathspec.count": 2, + "wake_up_process": 1, + "for_each_commit_graft": 1, + "repo": 23, + "cmd_ls_remote": 2, + "createSharedObjects": 2, + "PFNWGLGENLOCKSAMPLERATEI3DPROC": 2, + "i_SELECT_RF_STRING_BEFOREV5": 1, + "aofRewriteBufferSize": 2, + "encoded": 2, + "redisClient": 12, + "renameCommand": 1, + "typeCommand": 1, + "yajl_lex_alloc": 1, + "__WGLEW_ARB_pixel_format": 2, + "__Pyx_XDECREF": 20, + "PySet_Type": 2, + "*in": 1, + "old_entry": 5, + "loops": 2, + "__WGLEW_I3D_digital_video_control": 2, + "__wglewCreateAssociatedContextAttribsAMD": 2, + "*dup": 1, + "uint32_t": 144, + "/server.loading_loaded_bytes": 1, + "WGL_RED_BITS_ARB": 1, + "__Pyx_RefNannyAPIStruct": 3, + "i_NPSELECT_RF_STRING_FIND": 1, + "rfString_Append": 5, + "okay": 1, + "server.lastsave": 3, + "__pyx_k_13": 1, + "fail": 19, + "defvalue": 2, + "POLLIN": 1, + "shared.oomerr": 2, + "pid": 13, + "DL_IMPORT": 2, + "aeGetApiName": 1, + "incrCommand": 1, + "addReplySds": 3, + "PyLong_FromSize_t": 1, + "path": 20, + "ULLONG_MAX": 10, + "*__pyx_n_s__isinf": 1, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_LossFunction": 1, + "*__pyx_f_5numpy__util_dtypestring": 1, + "equal": 1, + "uint8_t": 6, + "*commit_type": 2, + "HVIDEOOUTPUTDEVICENV*": 1, + "__pyx_k__dataset": 1, + "__pyx_k__b": 1, + "i_SELECT_RF_STRING_FWRITE0": 1, + "i_rfLMSX_WRAP6": 2, + "i_SELECT_RF_STRING_BETWEEN2": 1, + "many": 1, + "hincrbyfloatCommand": 1, + "uv__process_init_stdio": 2, + "wglCreateContextAttribsARB": 1, + "*Y_data_ptr": 2, + "sunionCommand": 1, + "vkeys": 8, + "lastinteraction": 3, + "wglCreateAffinityDCNV": 1, + "WGL_CONTEXT_ES2_PROFILE_BIT_EXT": 1, + "WGL_SAMPLES_3DFX": 1, + "__pyx_t_3": 39, + "__Pyx_PyInt_AsSignedShort": 1, + "HTTP_MKCOL": 2, + "*__pyx_vtabptr_7sklearn_5utils_11seq_dataset_SequentialDataset": 1, + "///Internal": 1, + "Stack": 2, + "pathspec.strings": 1, + "__WGLEW_NV_present_video": 2, + "WGL_GENERIC_ACCELERATION_EXT": 1, + "*__pyx_n_s__t_start": 1, + "cast": 1, + "enable_nonboot_cpus": 1, + "wglGetGenlockSampleRateI3D": 1, + "*__pyx_n_s__learning_rate": 1, + "pp_user_info": 1, + "s_body_identity_eof": 4, + "*__Pyx_ImportModule": 1, + "dict": 11, + "lua_gc": 1, + "HPVIDEODEV*": 1, + "C9": 1, + "__pyx_v_self": 15, + "*eventLoop": 2, + "NR_CPUS": 2, + "zsetDictType": 1, + "are": 6, + "save_our_env": 3, + "zunionstoreCommand": 1, + "diff_delta__cmp": 3, + "server.stat_fork_time": 2, + "WGL_DIGITAL_VIDEO_CURSOR_INCLUDED_I3D": 1, + "PFNWGLRESTOREBUFFERREGIONARBPROC": 2, + "WITH_THREAD": 1, + "PyBytes_ConcatAndDel": 1, + "foundN": 10, + "pth": 2, + "h_CON": 3, + "newLineFound": 1, + "CYTHON_COMPILING_IN_CPYTHON": 6, + "CMIT_FMT_MEDIUM": 2, + "*60": 1, + "WGL_NO_TEXTURE_ARB": 2, + "__pyx_v_epsilon": 2, + "WIN32": 2, + "": 2, + "7": 1, + "mkd_cleanup": 2, + "s_req_path": 8, + "unicode": 2, + "bSize": 4, + "REDIS_REPL_CONNECTED": 3, + "i_rfString_KeepOnly": 3, + "on_body": 1, + "fuPlanes": 1, + "WGLEW_EXT_make_current_read": 1, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_SquaredHinge": 1, + "i_SELECT_RF_STRING_BEFOREV11": 1, + "Functions": 1, + "depending": 1, + "fmt": 4, + "RF_CR": 1, + "__pyx_k__weight_pos": 1, + "git__size_t_powerof2": 1, + "HTTP_RESPONSE": 3, + "lookupCommandByCString": 3, + "wglew.h": 1, + "sq_item": 2, + "i_NPSELECT_RF_STRING_BEFOREV1": 1, + "fn": 5, + "cmd_unpack_objects": 1, + "WGLEW_NV_swap_group": 1, + "*phGpu": 1, + "*subject": 1, + "oldlimit": 5, + "LOG_WARNING": 1, + "clusterNode": 1, + "GLsizei": 4, + "WGL_BLUE_BITS_ARB": 1, + "hDrawDC": 2, + "i_OTHERSTR_": 4, + "firstkey": 1, + "TASK_RUNNING": 1, + "HTTP_REQUEST": 7, + "yajl_status_ok": 1, + "WGL_AUX7_ARB": 1, + "WGLEW_ARB_framebuffer_sRGB": 1, + "PyGILState_STATE": 1, + "PyNumber_TrueDivide": 1, + "xFF0FFFF": 1, + "time": 10, + "numDevices": 1, + "srcName": 1, + "wglDXOpenDeviceNV": 1, + "WGL_GAMMA_EXCLUDE_DESKTOP_I3D": 1, + "__pyx_t_5numpy_float32_t": 1, + "Init_rdiscount": 1, + "info": 64, + "server.stat_expiredkeys": 3, + "listRewind": 2, + "server.stat_keyspace_misses": 2, + "git_iterator_advance": 5, + "": 1, + "delta_type": 8, + "ENOENT": 3, + "": 1, + "WGL_GREEN_SHIFT_EXT": 1, + "WGL_ARB_render_texture": 2, + "*__pyx_n_s__n_samples": 1, + "const": 357, + "cpumask_set_cpu": 5, + "PyUnicode_IS_READY": 1, + "set_cpu_possible": 1, + "rfUTILS_Endianess": 24, + "WGL_ERROR_INCOMPATIBLE_AFFINITY_MASKS_NV": 1, + "__Pyx_c_abs": 3, + "git_diff_tree_to_tree": 1, + "time_t": 4, + "*__pyx_kp_u_16": 1, + "cmd_ls_files": 1, + "saveparam": 1, + "cmd_pack_redundant": 1, + "maxCount": 1, + "npy_int64": 1, + "run_add_interactive": 1, + "git_diff_delta": 19, + "will": 3, + "enum": 29, + "dictRedisObjectDestructor": 7, + "server.cronloops": 3, + "*ob": 3, + "use_noid": 2, + "child_watcher.data": 1, + "wglBindVideoDeviceNV": 1, + "hVideoDevice": 4, + "dstX1": 1, + "PyObject_GetAttr": 3, + "__Pyx_check_binary_version": 1, + "__Pyx_ErrRestore": 1, + "d": 16, + "alloc_blob_node": 1, + "mode": 11, + "MKD_TOC": 1, + "according": 1, + "__pyx_k_4": 1, + "REDIS_MAXMEMORY_ALLKEYS_LRU": 2, + "linuxOvercommitMemoryValue": 2, + "wglCreateAssociatedContextAttribsAMD": 1, + "i_SELECT_RF_STRING_AFTERV15": 1, + "always": 2, + "rfString_Create_i": 2, + "new_oid": 3, + "i_rfLMS_WRAP3": 4, + "RF_STRING_ITERATEB_START": 2, + "GIT_UNUSED": 1, + "server.shutdown_asap": 3, + "wglWaitForMscOML": 1, + "field": 1, + "GIT_ENOTFOUND": 1, + "WGL_DRAW_TO_PBUFFER_EXT": 1, + "PyBUF_WRITABLE": 3, + "HTTP_PURGE": 1, + "O_RDWR": 2, + "wglEnableGenlockI3D": 1, + "PyObject*": 24, + "xD800": 8, + "git_iterator_free": 4, + "WGL_BIND_TO_TEXTURE_RECTANGLE_RGB_NV": 1, + "__pyx_t_float_complex_from_parts": 1, + "__Pyx_PyInt_AsHash_t": 2, + "CYTHON_FORMAT_SSIZE_T": 2, + "Py_HUGE_VAL": 2, + "i_SELECT_RF_STRING_INIT0": 1, + "commit_list_sort_by_date": 2, + "server.repl_slave_ro": 2, + "continue": 20, + "NULL": 330, + "srcY0": 1, + "__pyx_filename": 51, + "parse_table_header": 1, + "": 1, + "__wglewGetExtensionsStringARB": 2, + "diff_path_matches_pathspec": 3, + "*old_iter": 2, + "exitFromChild": 1, + "date_mode": 2, + "method": 39, + "yajl_parser_config": 1, + "*__pyx_vtabptr_7sklearn_5utils_13weight_vector_WeightVector": 1, + "works": 1, + "rfString_Iterate_Start": 6, + "server.commands": 1, + "could": 2, + "lookup_commit_graft": 1, + "A2": 2, + "*__pyx_n_s__n_iter": 1, + "__pyx_k__loss": 1, + "ltrimCommand": 1, + "for_each_process": 2, + "numcommands": 5, + "GIT_DIFF_FILE_VALID_OID": 4, + "cmd_hash_object": 1, + "__Pyx_InitStrings": 1, + "__pyx_t_5numpy_longdouble_t": 1, + "PyLongObject": 2, + "cover": 1, + "cpu_hotplug.active_writer": 6, + "graft": 10, + "MKD_NOHTML": 1, + "RF_MATCH_WORD": 5, + "PFNWGLGETPBUFFERDCARBPROC": 2, + "*__pyx_n_s____test__": 1, + "i_NPSELECT_RF_STRING_BETWEEN": 1, + "act.sa_sigaction": 1, + "typedef": 189, + "cmd_clone": 1, + "*__pyx_n_s__isnan": 1, + "0x80": 1, + "aeCreateEventLoop": 1, + "thisval": 8, + "wglQueryVideoCaptureDeviceNV": 1, + "*__pyx_int_15": 1, + "minPos": 17, + "e.t.c.": 1, + "work.size": 5, + "STRICT_CHECK": 15, + "WGLEW_3DFX_multisample": 1, + "i_NPSELECT_RF_STRING_FIND1": 1, + "xE": 2, + "parents": 4, + "fclose": 5, + "__wglewCreateDisplayColorTableEXT": 2, + "WGL_AUX6_ARB": 1, + "WGL_RED_SHIFT_ARB": 1, + "WGL_GPU_NUM_PIPES_AMD": 1, + "__Pyx_StringTabEntry": 2, + "git_cached_obj_incref": 3, + "__wglewBindVideoCaptureDeviceNV": 2, + "wglQueryFrameTrackingI3D": 1, + "HPBUFFEREXT": 6, + "new_count": 1, + "dictDisableResize": 1, + "nitem": 32, + "cpumask_of": 1, + "WGL_IMAGE_BUFFER_MIN_ACCESS_I3D": 1, + "puRed": 2, + "__pyx_vtabstruct_7sklearn_5utils_11seq_dataset_CSRDataset": 2, + "PyString_Size": 1, + "failed": 2, + "name.release": 1, + "rb_funcall": 14, + "__wglewGenlockSourceI3D": 2, + "__Pyx_PyBytes_AsUString": 1, + "rfString_Strip": 2, + "": 1, + "i_rfString_Init": 3, + "mkd_toc": 1, + "sstr2": 2, + "CPU_ONLINE": 1, + "diff_prefix_from_pathspec": 4, + ".watched_keys": 1, + "__wglewGetPixelFormatAttribivEXT": 2, + "PyLong_AsUnsignedLongMask": 1, + "status_code": 8, + "WGL_DIGITAL_VIDEO_GAMMA_CORRECTED_I3D": 1, + "*__pyx_find_code_object": 1, + "*encoding": 2, + "0x20": 1, + "depth": 2, + "PFNWGLRELEASEIMAGEBUFFEREVENTSI3DPROC": 2, + "PFNWGLSWAPINTERVALEXTPROC": 2, + "__wglewGetPbufferDCARB": 2, + "__Pyx_PyInt_AsUnsignedChar": 1, + "09": 1, + "RE_UTF8_ENCODING": 2, + "dumpCommand": 1, + "GIT_OBJ_BLOB": 1, + "WGL_TEXTURE_CUBE_MAP_POSITIVE_X_ARB": 1, + "PyObject_GetBuffer": 1, + "RE_UTF8_INVALID_SEQUENCE_END": 6, + "cb.table_row": 2, + "server.loading_loaded_bytes": 3, + "PyInt_AsUnsignedLongLongMask": 1, + "i_NPSELECT_RF_STRING_FWRITE0": 1, + "i_rfLMSX_WRAP13": 2, + "uv__nonblock": 5, + "GIT_IDXENTRY_SKIP_WORKTREE": 1, + "arch_enable_nonboot_cpus_end": 2, + "parse_commit": 3, + "shared.masterdownerr": 2, + "going": 1, + "Check_Type": 2, + "*msg": 6, + "__wglewRestoreBufferRegionARB": 2, + "u": 18, + "go": 8, + "UV_PROCESS_SETUID": 2, + "signed": 5, + "expected": 2, + "development": 1, + "": 1, + "server.aof_child_pid": 10, + "HTTP_PARSER_DEBUG": 4, + "__pyx_k__Zf": 1, + "PyInt_FromString": 1, + "gettimeofday": 4, + "zrankCommand": 1, + "_MSC_VER": 5, + "h_upgrade": 4, + "__Pyx_TypeInfo_nn___pyx_t_7sklearn_12linear_model_8sgd_fast_DOUBLE": 1, + "server.runid": 3, + "__wglewCreateContextAttribsARB": 2, + "WGL_CONTEXT_MAJOR_VERSION_ARB": 1, + "__pyx_v_alpha": 1, + "cmd_for_each_ref": 1, + "HTTP_MAX_HEADER_SIZE": 2, + "extern": 37, + "diff_delta__alloc": 2, + "shareHandle": 1, + "__wglewEndFrameTrackingI3D": 2, + "__pyx_k__x_data_ptr": 1, + "__pyx_k__n_samples": 1, + "cell": 4, + "__wglewChoosePixelFormatEXT": 2, + "*__pyx_n_s__time": 1, + "i_SELECT_RF_STRING_INIT": 1, + "GIT_DELTA_UNMODIFIED": 11, + "read_sha1_file": 1, + "wglewGetExtension": 1, + "__wglewAllocateMemoryNV": 2, + "true": 73, + "loadServerConfig": 1, + "wglAssociateImageBufferEventsI3D": 1, + "pack": 2, + "": 1, + "ap": 4, + "dictSdsHash": 4, + "PyObject_SetAttrString": 2, + "PyLong_FromSsize_t": 1, + "srcY": 1, + "wglMakeContextCurrentEXT": 1, + "PyBUF_FORMAT": 3, + "i_RFUI32_": 8, + "diff_pathspec_is_interesting": 2, + "c_ru": 2, + "zrangeCommand": 1, + "create_object": 2, + "fline": 4, + "O_WRONLY": 2, + "git_vector_insert": 4, + "": 1, + "NOTIFY_OK": 1, + "*format_subject": 1, + "c.cmd": 1, + "PyList_GET_ITEM": 3, + "CHUNKED": 4, + "git_buf_common_prefix": 1, + "rfString_Init_i": 2, + "options.cwd": 2, + "CB_message_begin": 1, + "close": 13, + "MKCOL": 2, + "__pyx_k__h": 1, + "PyUnicode_READ": 1, + "changes": 2, + "**commit_list_append": 2, + "deref_tag": 1, + "PFNWGLENUMERATEVIDEOCAPTUREDEVICESNVPROC": 2, + "__Pyx_c_sumf": 2, + "PyInt_AS_LONG": 1, + "head": 3, + "WGL_ACCUM_BITS_ARB": 1, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Huber": 6, + "GIT_DIFFCAPS_HAS_SYMLINKS": 2, + "server.aof_current_size*100/base": 1, + "WGLEW_OML_sync_control": 1, + "i_SELECT_RF_STRING_AFTER": 1, + "its": 1, + "rfString_Create_nc": 3, + "out_notify": 3, + "sep": 3, + "PROXY_CONNECTION": 4, + "chdir": 2, + "wglReleaseVideoImageNV": 1, + "WGL_SWAP_COPY_EXT": 1, + "npy_int16": 1, + "__VA_ARGS__": 66, + "*f": 2, + "setup_git_directory": 1, + "thisPos": 8, + "get_sha1_hex": 2, + "This": 1, + "memtest": 2, + "/REDIS_HZ": 2, + "perc": 3, + "__wglewBeginFrameTrackingI3D": 2, + "processInputBuffer": 1, + "PFNWGLSETDIGITALVIDEOPARAMETERSI3DPROC": 2, + "__Pyx_MODULE_NAME": 1, + "npy_double": 2, + "counters.process_init": 1, + "LOG_PID": 1, + "server.aof_rewrite_base_size": 4, + "*revision": 1, + "_ftelli64": 1, + "cpu_down": 2, + "cpowf": 1, + "inside": 2, + "rdbSaveBackground": 1, + "N_": 1, + "**list": 5, + "GIT_SUBMODULE_IGNORE_ALL": 1, + "B3": 1, + "WGLEW_EXT_pixel_format_packed_float": 1, + "PyMethod_New": 2, + "to": 37, + "LF": 21, + "PFNWGLCREATEAFFINITYDCNVPROC": 2, + "__wglewDisableFrameLockI3D": 2, + "swap": 9, + "lol": 3, + "wglGetMscRateOML": 1, + "PFNWGLGETPIXELFORMATATTRIBIVEXTPROC": 2, + "__WGLEW_ARB_create_context_robustness": 2, + "shared.colon": 1, + "T_STRING": 2, + "mm_cpumask": 1, + "self_ru.ru_stime.tv_sec": 1, + "mkd_compile": 2, + "barrier": 1, + "__WGLEW_I3D_swap_frame_lock": 2, + "i_REPSTR_": 16, + "*reduce_heads": 1, + "shared.slowscripterr": 2, + "strerror": 4, + "fds": 20, + "WGL_NV_gpu_affinity": 2, + "*pAddress": 1, + "__pyx_k__L": 1, + "PyFrozenSet_Check": 1, + "i_SELECT_RF_STRING_BEFOREV17": 1, + "clear_commit_marks_for_object_array": 1, + "listNext": 2, + "rfString_ScanfAfter": 2, + "s_res_HTTP": 3, + "CB_message_complete": 1, + "*de": 2, + "__wglewDXOpenDeviceNV": 2, + "npy_int32": 1, + "i_SELECT_RF_STRING_REPLACE1": 1, + "rdbRemoveTempFile": 1, + "*ref_name": 2, + "git_mutex_unlock": 2, + "WGL_CONTEXT_FORWARD_COMPATIBLE_BIT_ARB": 1, + "__wglewGetCurrentAssociatedContextAMD": 2, + "func": 3, + "RE_UTF8_INVALID_SEQUENCE": 2, + "lookup_commit": 2, + "wglCreateBufferRegionARB": 1, + "i_SELECT_RF_STRING_FIND2": 1, + "all": 2, + "syncCommand": 1, + "sdslen": 14, + "__wglewCreateImageBufferI3D": 2, + "__WGLEW_I3D_genlock": 2, + "*__pyx_n_s__shuffle": 1, + "__pyx_k__any": 1, + "HTTP_UNSUBSCRIBE": 1, + "__APPLE__": 2, + "__Pyx_PyInt_AsSignedLongLong": 1, + "i_SELECT_RF_STRING_BEFORE0": 1, + "is_ref": 1, + "hincrbyCommand": 1, + "server.verbosity": 4, + "pretty_print_context": 6, + "__wglewMakeContextCurrentARB": 2, + "new_file.mode": 4, + "LOG_DEBUG": 1, + "date_mode_explicit": 1, + "selectCommand": 1, + "find_lock_task_mm": 1, + "__Pyx_BufFmt_StackElem*": 2, + "zinterstoreCommand": 1, + "aofRewriteBufferReset": 1, + "incrbyCommand": 1, + "WGLEW_I3D_genlock": 1, + "shared.punsubscribebulk": 1, + "**argv": 6, + "WGL_OPTIMAL_PBUFFER_HEIGHT_EXT": 1, + "PFNWGLRELEASEPBUFFERDCARBPROC": 2, + "RFS_": 8, + "__wglewSetGammaTableI3D": 2, + "WGL_GPU_NUM_SPI_AMD": 1, + "*__pyx_n_s__fit_intercept": 1, + "PyInt_Check": 1, + "ndim": 2, + "Failure": 1, + "dbsizeCommand": 1, + "use_fd": 7, + "redisGitDirty": 3, + "tmp": 6, + "wglLoadDisplayColorTableEXT": 1, + "old_src": 1, + "cmd_bundle": 1, + "rb_str_buf_new": 2, + "WGL_EXT_display_color_table": 2, + "WGL_TYPE_COLORINDEX_ARB": 1, + "PFNWGLSAVEBUFFERREGIONARBPROC": 2, + "rfUTF8_FromCodepoint": 1, + "i_OFFSET_": 4, + "F_CONNECTION_KEEP_ALIVE": 3, + "j": 206, + "dictGetSignedIntegerVal": 1, + "writeFrequency": 1, + "PyBytes_FromStringAndSize": 1, + "HUGE_VAL": 1, + "To": 1, + "new_tree": 2, + "cmd_tar_tree": 1, + "__pyx_k__y": 1, + "*filename": 2, + "diff": 93, + "UF_PORT": 5, + "git_oid": 7, + "git_submodule": 1, + "__wglewGetGenlockSourceEdgeI3D": 2, + "mutex_lock": 5, + "rfString_Init": 3, + "encoding": 14, + "__ref": 6, + "REDIS_REPL_TRANSFER": 2, + "rb_str_cat": 4, + "c4": 5, + "*read_graft_line": 1, + "yajl_status_insufficient_data": 1, + "WGL_NUMBER_PIXEL_FORMATS_ARB": 1, + "WGL_BACK_COLOR_BUFFER_BIT_ARB": 1, + "*__Pyx_ImportType": 1, + "__Pyx_RaiseNoneNotIterableError": 1, + "rfFReadLine_UTF8": 5, + "REDIS_MAXMEMORY_VOLATILE_LRU": 3, + "server.cluster_enabled": 6, + "struct": 359, + "redisAssert": 1, + "*w": 2, + "wglAllocateMemoryNV": 1, + "WGL_STEREO_ARB": 1, + "__Pyx_RaiseImportError": 1, + "closing": 1, + "free_obj": 4, + "CPU_DOWN_PREPARE": 1, + "": 1, + "existsCommand": 1, + "GLuint*": 3, + "WGL_NV_render_texture_rectangle": 2, + "find_commit_subject": 2, + "new_entry": 5, + "getDecodedObject": 3, + "WGL_MAX_PBUFFER_WIDTH_EXT": 1, + "is_unsigned": 1, + "expires": 3, + "h_transfer_encoding": 5, + "during": 1, + "listFirst": 2, + "__Pyx_INCREF": 6, + "i_NPSELECT_RF_STRING_AFTER": 1, + "s_req_http_minor": 3, + "git_vector_free": 3, + "uint64_t": 8, + "git_hash_ctx": 7, + "A8": 2, + "*__pyx_builtin_ValueError": 1, + "PyBytes_AS_STRING": 1, + "MOVE": 2, + "st": 2, + "__pyx_v_C": 1, + "PyNumber_InPlaceDivide": 1, + "BUFFER_SPAN": 9, + "anetTcpServer": 1, + "pubsub_channels": 2, + "key1": 5, + "daemonize": 2, + "OPTIONS": 2, + "git_hash_vec": 1, + "RF_OPTION_SOURCE_ENCODING": 30, + "Qtrue": 10, + "__pyx_k__x_ind_ptr": 1, + "b__": 3, + "utf8ByteLength": 34, + "npy_uint64": 1, + "xFF": 1, + "slowlogInit": 1, + "oid_for_workdir_item": 2, + "REDIS_MASTER": 2, + "h_matching_transfer_encoding_chunked": 3, + "tcd_param": 2, + "indegree": 1, + "timeval": 4, + "mtime.seconds": 2, + "server.repl_syncio_timeout": 1, + "*1024*64": 1, + "WGL_DRAW_TO_BITMAP_EXT": 1, + "*pfValues": 2, + "server.multiCommand": 1, + "shared.select": 1, + "saved_errno": 1, + "length": 58, + "i_rfString_Assign": 3, + "INVALID_PORT": 1, + "server.rdb_child_pid": 12, + "see": 2, + "PyFloat_FromDouble": 9, + "*utf32": 1, + "MARK": 7, + "eof": 53, + "git__calloc": 3, + "sdscatprintf": 24, + "__wglewSetStereoEmitterState3DL": 2, + "parser": 334, + "sizeof": 71, + "wglIsEnabledFrameLockI3D": 1, + "decoded": 3, + "sstr": 39, + "xmalloc": 2, + "wglGetCurrentReadDCEXT": 1, + "WGL_GENERIC_ACCELERATION_ARB": 1, + "st.st_mode": 2, + "C4": 1, + "zunionInterGetKeys": 4, + "HPVIDEODEV": 4, + "PFNWGLENUMGPUSFROMAFFINITYDCNVPROC": 2, + "filter": 1, + "__pyx_L3_error": 18, + "cmd_fsck": 2, + "wglChoosePixelFormatEXT": 1, + "__pyx_k__nonzero": 1, + "__Pyx_RefNannyFinishContext": 14, + "__pyx_t_5numpy_double_t": 1, + "REDIS_UNBLOCKED": 1, + "freeClient": 1, + "s_req_first_http_minor": 3, + "uv__handle_start": 1, + "WGL_TEXTURE_RECTANGLE_NV": 1, + "__pyx_t_5numpy_uint_t": 1, + "stime": 1, + "lpopCommand": 1, + "CPU_UP_PREPARE": 1, + "*rev1": 1, + "zaddCommand": 1, + "else//": 14, + "__cpu_notify": 6, + "__Pyx_StructField_*": 1, + "git_diff_workdir_to_index": 1, + "ustime": 7, + "merge_remote_desc": 3, + "*buffer": 6, + "WGL_DEPTH_BITS_EXT": 1, + "piAttributes": 4, + "uint32_t*": 34, + "nr_calls": 9, + "WGL_TEXTURE_RGB_ARB": 1, + "__pyx_v_p": 46, + "root": 1, + "{": 1528, + "move": 12, + "wglSwapIntervalEXT": 1, + "*__pyx_n_s__epsilon": 1, + "quiet": 5, + "keysCommand": 1, + "any": 3, + "content_length": 27, + "CPU_BITS_ALL": 2, + "REDIS_HZ*10": 1, + "WGLEW_ARB_render_texture": 1, + "*__pyx_n_s__x_ind_ptr": 1, + "i_RFI8_": 54, + "CB_body": 1, + "charPos": 8, + "createStringObject": 11, + "INVALID_HOST": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Hinge_6__reduce__": 1, + "__Pyx_PySequence_SetSlice": 2, + "__pyx_L1_error": 33, + "clearer": 1, + "lastBytePos": 4, + "alloc_nr": 1, + "abs": 2, + "i_AFTERSTR_": 8, + "R_PosInf": 2, + "*argv0": 1, + "*title": 1, + "WGL_BIND_TO_TEXTURE_RECTANGLE_DEPTH_NV": 1, + "WGL_NO_RESET_NOTIFICATION_ARB": 1, + "extensions": 1, + "//Two": 1, + "PFNWGLJOINSWAPGROUPNVPROC": 2, + "http_method_str": 1, + "shared.messagebulk": 1, + "s_header_value": 5, + "yajl_bs_push": 1, + "__pyx_pf_7sklearn_12linear_model_8sgd_fast_18EpsilonInsensitive___init__": 1, + "i_SELECT_RF_STRING_CREATE0": 1, + "htmlblock_end": 3, + "unregister_cpu_notifier": 2, + "INVALID_METHOD": 1, + "*const": 4, + "wglewContextInit": 2, + "*__pyx_n_s__n_features": 1, + "rfUTF16_Encode": 1, + "GIT_DIFF_INCLUDE_UNTRACKED": 1, + "dxObject": 2, + "PFNWGLGETPBUFFERDCEXTPROC": 2, + "WGL_GREEN_SHIFT_ARB": 1, + "*__pyx_n_s__sumloss": 1, + "iteration": 6, + "name_decoration": 3, + "http_parser_type": 3, + "server.masterport": 2, + "WGL_AUX0_ARB": 1, + "__pyx_v_shuffle": 1, + "i_SELECT_RF_STRING_AFTER0": 1, + "execCommand": 2, + "__wglewEnumGpuDevicesNV": 2, + "__wglewDXUnlockObjectsNV": 2, + "cpu_hotplug.lock": 8, + "iAttribute": 8, + "*funcname": 1, + "__pyx_lineno": 58, + "PyBUF_FULL": 1, + "uv__process_stdio_flags": 2, + "_": 3, + "PFNWGLDESTROYPBUFFEREXTPROC": 2, + "Py_XDECREF": 1, + "CYTHON_REFNANNY": 3, + "REDIS_NOTICE": 13, + "shared.lpop": 1, + "WIFSIGNALED": 2, + "lsetCommand": 1, + "__pyx_args": 21, + "utsname": 1, + "server.repl_timeout": 1, + "run_argv": 2, + "pos_args": 12, + "**value": 1, + "i_SELECT_RF_STRING_AFTERV10": 1, + "rfString_BytePosToCodePoint": 7, + "fflush": 2, + "server.lastbgsave_status": 3, + "s_req_http_start": 3, + "doc_size": 6, + "WGL_ARB_create_context_robustness": 2, + "*keepLength": 1, + "#ifdef": 64, + "git__is_sizet": 1, + "SUNDOWN_VER_REVISION": 1, + "slave": 3, + "thisstrP": 32, + "47": 1, + "__wglewAssociateImageBufferEventsI3D": 2, + "__pyx_k__time": 1, + "member": 2, + "eofReached": 4, + "vec": 2, + "REDIS_CLIENT_LIMIT_CLASS_NORMAL": 3, + "MMIOT": 2, + "PFNWGLGETGAMMATABLEPARAMETERSI3DPROC": 2, + "*lookup_commit_reference": 2, + "shared.crlf": 2, + "sleep": 1, + "*l": 1, + "*pulCounterOutputVideo": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_13ModifiedHuber_loss": 1, + "HPE_INVALID_CHUNK_SIZE": 2, + "RE_UTF8_INVALID_SEQUENCE_CONBYTE": 6, + "addReply": 13, + "determine": 1, + "cb.doc_footer": 2, + "hmem": 3, + "dictSdsDestructor": 4, + "GLEWAPI": 6, + "rfString_Iterate_End": 4, + "HELLO_H": 2, + "*new_iter": 2, + "*name": 12, + "rfString_Copy_chars": 2, + "main": 3, + "CE": 1, + "PFNWGLDESTROYDISPLAYCOLORTABLEEXTPROC": 2, + "__Pyx_CodeObjectCacheEntry": 1, + "__inline": 1, + "git_buf_truncate": 1, + "sum": 3, + "compiling": 2, + "B9": 1, + "WGLEW_I3D_image_buffer": 1, + "PyObject_HEAD_INIT": 1, + "rfString_Fwrite": 2, + "i_NPSELECT_RF_STRING_AFTERV1": 1, + "http_cb": 3, + "strncat": 1, + "__WGLEW_EXT_pbuffer": 2, + "PyString_GET_SIZE": 1, + "i_RIGHTSTR_": 6, + "RE_FILE_WRITE": 1, + "rfString_Append_fUTF16": 2, + "cmd_merge": 1, + "want": 3, + "WGL_OML_sync_control": 2, + "PySequence_SetSlice": 2, + "C": 14, + "WGL_MAX_PBUFFER_PIXELS_EXT": 1, + "WGL_TEXTURE_CUBE_MAP_POSITIVE_Z_ARB": 1, + "i_NPSELECT_RF_STRING_REPLACE": 1, + "RE_UTF16_INVALID_SEQUENCE": 20, + "GPERF_DOWNCASE": 1, + "s_res_status": 3, + "present": 2, + "***argv": 2, + "commit": 59, + "uVideoSlot": 2, + "WGL_NUM_VIDEO_SLOTS_NV": 1, + "hObject": 2, + "WGL_GREEN_BITS_ARB": 1, + "PYPY_VERSION": 1, + "rfString_IterateB_Start": 1, + "*check_commit": 1, + "GIT_DIFFCAPS_TRUST_CTIME": 2, + "WGL_BACK_LEFT_ARB": 1, + "__Pyx_PyInt_AsInt": 2, + "MS_WINDOWS": 2, + "run_builtin": 2, + "cpu_online_mask": 3, + "#else": 94, + "server.lua_caller": 1, + "diff_delta__from_two": 2, + "nMaxFormats": 2, + "__pyx_v_weight_pos": 1, + "__Pyx_RefNanny": 8, + "i_SELECT_RF_STRING_BEFORE": 1, + "rfString_ToUTF8": 2, + "way": 1, + "*commit": 10, + "__WGLEW_EXT_pixel_format": 2, + "RF_SELECT_FUNC_IF_NARGGT2": 2, + "unblockClientWaitingData": 1, + "proc": 14, + "__WGLEW_NV_gpu_affinity": 2, + "WGL_TEXTURE_1D_ARB": 1, + "db": 10, + "__pyx_k__power_t": 1, + "i_ARG4_": 56, + "i_rfString_Init_nc": 3, + "shallow_flag": 1, + "BUFFER_BLOCK": 5, + "EXEC_BIT_MASK": 3, + "mi": 5, + "git_buf_free": 4, + "rndr_popbuf": 2, + "*tb": 2, + "i_rfString_Strip": 3, + "uv_stdio_container_t*": 4, + "HPBUFFERARB": 12, + "rfStringX_Deinit": 1, + "writable": 8, + "*lookup_commit_graft": 1, + "__raw_notifier_call_chain": 1, + "WGL_ARB_buffer_region": 2, + "PyObject_GetItem": 1, + "__pyx_base": 18, + "imag": 2, + "rfString_Append_fUTF32": 2, + ".hard_limit_bytes": 3, + "CPU_TASKS_FROZEN": 2, + "match": 16, + "cmd_show_ref": 1, + "wglRestoreBufferRegionARB": 1, + "tp_dictoffset": 3, + "piAttribIList": 2, + "*oid": 2, + "server.daemonize": 5, + "server.aof_rewrite_time_last": 2, + "WGL_ARB_pbuffer": 2, + "S_ISFIFO": 1, + "sourceP": 2, + "WGL_DIGITAL_VIDEO_CURSOR_ALPHA_VALUE_I3D": 1, + "_PyUnicode_Ready": 1, + "scan": 4, + "show_notes": 1, + "cpu_online": 5, + "pfd.fd": 1, + "server.rdb_compression": 1, + "afs": 8, + "dstName": 1, + "__Pyx_PySequence_DelSlice": 2, + "ref": 1, + "has": 2, + "REDIS_LIST_MAX_ZIPLIST_VALUE": 1, + "SOCK_CLOEXEC": 1, + "*old_entry": 1, + "PFNWGLQUERYSWAPGROUPNVPROC": 2, + "WGL_GENLOCK_SOURCE_EXTERNAL_TTL_I3D": 1, + "num_min": 1, + "PyInt_FromLong": 3, + "operations": 1, + "p": 60, + "replstate": 1, + "*nb": 3, + "__pyx_v_n_iter": 1, + "server.clients_to_close": 1, + "lookup_commit_reference_gently": 1, + "*__pyx_t_4": 3, + "cmd_check_attr": 1, + "SOCK_STREAM": 2, + "full_path": 3, + "BOOL*": 3, + "of": 44, + "__pyx_t_5numpy_clongdouble_t": 1, + "macros": 1, + "All": 1, + "O_CREAT": 2, + "codeBuffer": 9, + "__wglewCopyImageSubDataNV": 2, + "__Pyx_Owned_Py_None": 1, + "__Pyx_PyUnicode_READ": 2, + "i_SELECT_RF_STRING_REMOVE2": 1, + "i_SELECT_RF_STRING_AFTERV9": 1, + "COVERAGE_TEST": 1, + "linsertCommand": 1, + "GIT_VECTOR_GET": 2, + "cmd_upload_archive": 1, + "done": 1, + "npy_uint32": 1, + "": 1, + "sd_markdown_free": 1, + "unsigned": 140, + "server.unixtime/REDIS_LRU_CLOCK_RESOLUTION": 1, + "pager_program": 1, + "wglEndFrameTrackingI3D": 1, + "table": 1, + "PFNWGLCREATEASSOCIATEDCONTEXTATTRIBSAMDPROC": 2, + "dtype": 1, + "i_SELECT_RF_STRING_BEFOREV6": 1, + "c_ru.ru_utime.tv_sec": 1, + "sdsAllocSize": 1, + "_fseeki64": 1, + "*1024*32": 1, + "PFNWGLGETSYNCVALUESOMLPROC": 2, + "LPVOID": 3, + "PFNWGLDESTROYPBUFFERARBPROC": 2, + "*__Pyx_GetItemInt_Tuple_Fast": 1, + "*repo": 7, + "UV_STREAM_WRITABLE": 2, + "*server.dbnum": 1, + "free_commit_extra_headers": 1, + "need": 5, + "__PYX_HAVE_API__sklearn__linear_model__sgd_fast": 1, + "setuid": 1, + "freeClientsInAsyncFreeQueue": 1, + "diff_delta__merge_like_cgit": 1, + "s1": 6, + "server.ipfd": 9, + "__wglewChoosePixelFormatARB": 2, + "srcX0": 1, + "__Pyx_PyNumber_InPlaceDivide": 2, + "tp_as_mapping": 3, + "http_errno": 11, + "WGL_VIDEO_OUT_COLOR_NV": 1, + "__pyx_L5_argtuple_error": 12, + "*__pyx_n_s__y": 1, + "str": 162, + "if": 1015, + "merge_remote_util": 1, + "USE_PAGER": 3, + "C0000": 2, + "RE_UTF8_INVALID_SEQUENCE_INVALID_BYTE": 6, + "TOKEN": 4, + "server.aof_state": 7, + "wglReleaseTexImageARB": 1, + "PyBUF_INDIRECT": 2, + "i_SELECT_RF_STRING_CREATE_NC": 1, + "mem_tofree": 3, + "T": 3, + "rfFback_UTF32BE": 2, + "wglMakeContextCurrentARB": 1, + "__wglewBlitContextFramebufferAMD": 2, + "*__pyx_n_s__plain_sgd": 1, + "*__pyx_n_s____main__": 1, + "safely": 1, + "CONNECTION": 4, + "": 4, + "rfUTF8_IsContinuationbyte": 1, + "WGL_ACCUM_BLUE_BITS_EXT": 1, + "__pyx_k__c": 1, + "i_SELECT_RF_STRING_FWRITE1": 1, + "i_rfLMSX_WRAP7": 2, + "i_SELECT_RF_STRING_BETWEEN3": 1, + "*path": 2, + "decode": 6, + "cmd_mv": 1, + "AF_UNIX": 2, + "pUsage": 1, + "WGL_EXT_multisample": 2, + "//if": 1, + "aof_fsync": 1, + "RF_HEXGE_C": 1, + "__pyx_t_4": 27, + "__PYX_EXTERN_C": 3, + "hsetCommand": 1, + "DeviceName": 1, + "PySequence_GetSlice": 2, + "done_alias": 4, + "server.repl_state": 6, + "WEXITSTATUS": 2, + "parse_blob_buffer": 2, + ".refcount": 1, + "__wglewReleaseVideoImageNV": 2, + "hGpu": 1, + "__pyx_k__weight_neg": 1, + "__Pyx_PyInt_AsChar": 1, + "PyString_DecodeEscape": 1, + "*node": 2, + "server.stop_writes_on_bgsave_err": 2, + "*a": 9, + "old_file.path": 12, + "cmd_commit": 1, + "__pyx_builtin_NotImplementedError": 3, + "__pyx_pf_7sklearn_12linear_model_8sgd_fast_12SquaredHinge___init__": 1, + "__Pyx_PyInt_AsSignedInt": 1, + "*diff_delta__alloc": 1, + "elapsed": 3, + "WGL_SHARE_DEPTH_EXT": 1, + "__wglewGetContextGPUIDAMD": 2, + "conjf": 1, + "*from_list": 1, + "ER": 4, + "0x5a": 1, + "ln": 8, + "ext": 4, + "WGL_SWAP_COPY_ARB": 1, + "attribList": 2, + "va_end": 3, + "foff_rft": 2, + "REDIS_AOF_ON": 2, + "afsBuffer": 3, + "sub": 12, + "CLOSED_CONNECTION": 1, + "PFNWGLQUERYPBUFFEREXTPROC": 2, + "__Pyx_TypeInfo": 2, + "LUA_GCCOUNT": 1, + "#include": 149, + "diminfo": 1, + "RF_OPTION_FGETS_READBYTESN": 5, + "SIGFPE": 1, + "__func__": 2, + "shared.sameobjecterr": 1, + "s_res_or_resp_H": 3, + "fork": 2, + "uptime": 2, + "PFNWGLDXSETRESOURCESHAREHANDLENVPROC": 2, + "*__pyx_n_s__rho": 1, + "PyUnicode_KIND": 1, + "slaveid": 3, + "incrementallyRehash": 2, + "8": 15, + "use_pager": 8, + "cpu_to_node": 1, + "unsubscribeCommand": 2, + "wglJoinSwapGroupNV": 1, + "__pyx_k__alpha": 1, + "__pyx_f_7sklearn_12linear_model_8sgd_fast_min": 1, + "microseconds": 1, + "break": 244, + "TRACE": 2, + "uv_ok_": 1, + "WGL_SHARE_STENCIL_EXT": 1, + "__wglewGetGPUInfoAMD": 2, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_18EpsilonInsensitive_4dloss": 1, + "clineno": 1, + "i_SELECT_RF_STRING_BEFOREV12": 1, + "accomplish": 1, + "false": 77, + "git_futils_open_ro": 1, + "propagateExpire": 2, + "__wglewGetMscRateOML": 2, + "__wglewGetGPUIDsAMD": 2, + "*__pyx_v_weights": 1, + "": 1, + "strlenCommand": 1, + "FNM_NOMATCH": 1, + "xF0": 2, + "__pyx_k__sample_weight": 1, + "*view": 2, + "unless": 1, + "a_date": 2, + "raw_notifier_chain_unregister": 1, + "s_start_res": 5, + "PyString_Concat": 1, + "MERGE": 2, + "yajl_reset_parser": 1, + "INVALID_URL": 1, + "ctx": 16, + "git_extract_argv0_path": 1, + "server.stat_keyspace_hits": 2, + "rfUTILS_SwapEndianUS": 10, + "__Pyx_c_prod": 2, + "temp.bIndex": 2, + "PyGILState_Release": 1, + "i_WRITE_CHECK": 1, + "rdbLoad": 1, + "wglDXUnregisterObjectNV": 1, + "threshold": 2, + "PyBytes_FromString": 2, + "estimateObjectIdleTime": 1, + "RF_HEXLE_US": 4, + "CONFIG_MEMORY_HOTPLUG": 2, + "object.sha1": 8, + "*__pyx_n_s__intercept_decay": 1, + "__pyx_bisect_code_objects": 1, + "MASK_DECLARE_1": 3, + "*http_errno_description": 1, + "commit_tree_extended": 1, + "h_content_length": 5, + "cb.doc_header": 2, + "dictResize": 2, + "WGL_NV_video_output": 2, + "PFNWGLCREATEPBUFFERARBPROC": 2, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_18EpsilonInsensitive_6__reduce__": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12SquaredHinge_4dloss": 1, + "uv__set_sys_error": 2, + "queueMultiCommand": 1, + "VOID": 6, + "*cause": 1, + "server.slaves": 9, + "comm": 1, + "i_rfPopen": 2, + "AE_READABLE": 2, + "YA_FREE": 2, + "*rcbuffer": 1, + "i_NPSELECT_RF_STRING_BEFOREV": 1, + "RE_LOCALMEMSTACK_INSUFFICIENT": 8, + "since": 5, + "cmd_pack_refs": 1, + "is_descendant_of": 1, + "i_MODE_": 2, + "WGLEW_NV_DX_interop": 1, + "WGL_PBUFFER_HEIGHT_EXT": 1, + "__pyx_L4_argument_unpacking_done": 6, + "sharedObjectsStruct": 1, + "REDIS_CMD_WRITE": 2, + "bufrelease": 3, + "zstrdup": 5, + "pubsub_patterns": 2, + "e": 4, + "ERANGE": 1, + "with": 9, + "on_header_value": 1, + "GLushort": 3, + "rfStringX_FromString_IN": 1, + "REDIS_WARNING": 19, + "clientsCronResizeQueryBuffer": 2, + "__pyx_k__t": 1, + "PyArrayObject": 8, + "__pyx_PyFloat_AsFloat": 1, + "rcu_read_lock": 1, + "used*100/size": 1, + "wglewGetContext": 4, + "__pyx_obj_7sklearn_5utils_11seq_dataset_SequentialDataset": 5, + "i_SELECT_RF_STRING_AFTERV16": 1, + "double*": 1, + "nSize": 4, + "s_req_host_v6_end": 7, + "i_SELECT_RF_STRING_INIT_NC0": 1, + "WGL_TEXTURE_DEPTH_COMPONENT_NV": 1, + "PySet_CheckExact": 2, + "*r": 7, + "server.repl_down_since": 2, + "format": 4, + "s_req_schema": 6, + "uv__make_pipe": 2, + "": 3, + "most": 3, + "__pyx_k__intercept": 1, + "INVALID_EOF_STATE": 1, + "BITS_PER_LONG": 2, + "aeDeleteEventLoop": 1, + "*__pyx_n_s__power_t": 1, + "i_SELECT_RF_STRING_INIT1": 1, + "stdio_count": 7, + "PFNWGLWAITFORSBCOMLPROC": 2, + "GLenum": 8, + "srcY1": 1, + "__pyx_t_5numpy_float_t": 1, + "PyFloat_AsDouble": 2, + "INVALID_STATUS": 1, + "exit": 20, + "on_message_begin": 1, + "RF_LMS": 6, + "*http_errno_name": 1, + "lookup_tree": 1, + "peak_hmem": 3, + "WGLEW_NV_render_depth_texture": 1, + "PyInt_AsLong": 2, + "CYTHON_PEP393_ENABLED": 2, + "subLength": 6, + "next": 8, + "i_rfString_Before": 5, + "*__pyx_k_tuple_11": 1, + "PPC_SHA1": 1, + "A3": 2, + "struct_alignment": 1, + "but": 1, + "so": 4, + "i_PLUSB_WIN32": 2, + "**encoding_p": 1, + "va_list": 3, + "REDIS_CLUSTER_OK": 1, + "hmgetCommand": 1, + "WGL_TEXTURE_FLOAT_RGB_NV": 1, + "WGLEW_EXT_framebuffer_sRGB": 1, + "__pyx_base.__pyx_vtab": 1, + "bytePositions": 17, + "*matcher": 1, + "PySequence_GetItem": 3, + "s_req_port": 6, + "pipe": 1, + "HPE_INVALID_INTERNAL_STATE": 1, + "dictObjHash": 2, + "rfString_Destroy": 2, + "LEN": 2, + "ENOMEM": 4, + "pm_notifier": 1, "save": 2, - "locked": 2, - "releasing": 2, - "Adding": 2, - "progress.": 2, - "Done": 2, - "oncreate": 2, - "getrecord.": 2, - "documentation": 2, - "most": 2, - "existing": 2, - "it.": 2, - "Faster": 2, - "than": 2, - "scratch.": 2, - "shown_first": 2, - "again": 2, - "hoping": 2, - "s": 2, - "only": 2, - "captured": 2, - "update": 2, - "uselimit": 2, - "querys": 2, - "LIMIT": 2, - "still": 2, - "gets": 2, - "proper": 2, - "searchresult": 2, - "separate": 2, - "COUNT": 2 + "dev": 2, + "abbrev": 1, + "*delta": 6, + "xF": 5, + "field_set": 5, + "bytesWritten": 2, + "PFNWGLQUERYPBUFFERARBPROC": 2, + "WGL_GPU_NUM_SIMD_AMD": 1, + "__Pyx_DECREF": 20, + "npy_cfloat": 1, + ".mod": 1, + "bBlock": 1, + "WGL_COVERAGE_SAMPLES_NV": 1, + "*hGpu": 1, + "WGL_GENLOCK_SOURCE_DIGITAL_FIELD_I3D": 1, + "__pyx_refnanny": 8, + "PY_FORMAT_SIZE_T": 1, + "index": 58, + "clientsCron": 2, + "HTTP_LOCK": 1, + "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_Huber": 2, + "server.saveparamslen": 3, + "server.dirty": 3, + "rfString_Count": 4, + "UV__O_NONBLOCK": 1, + "&&": 248, + "PARSING_HEADER": 2, + "was_alias": 3, + "HTTP_TRACE": 1, + "i_LEFTSTR_": 6, + "TRANSFER_ENCODING": 4, + "ruby_obj": 11, + "server.requirepass": 4, + "REDIS_AOF_REWRITE_PERC": 1, + "setup_path": 1, + "tryResizeHashTables": 2, + "git_pool_strndup": 1, + "i_NPSELECT_RF_STRING_FWRITE1": 1, + "i_NPSELECT_RF_STRING_REMOVE0": 1, + "i_rfLMSX_WRAP14": 2, + "-": 1803, + "dataType": 1, + "__pyx_k__eta0": 1, + "__pyx_v_fit_intercept": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_11SquaredLoss_4__reduce__": 1, + "__pyx_t_7sklearn_5utils_13weight_vector_INTEGER": 1, + "PyVarObject*": 1, + "cmd_mailinfo": 1, + "limit": 3, + "search": 1, + "discardCommand": 2, + "_cpu_up": 3, + "git_cache": 4, + "HAVE_BACKTRACE": 1, + "*diff_delta__merge_like_cgit": 1, + "blob": 6, + "subdir": 3, + "v": 11, + "wglGetExtensionsStringARB": 1, + "lifo": 1, + "fd": 34, + "MKD_NOPANTS": 1, + "__wglewGetVideoInfoNV": 2, + "WGL_DEPTH_BITS_ARB": 1, + "__pyx_k__epoch": 1, + "__pyx_k__Zg": 1, + "size_t": 52, + "renameGetKeys": 2, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Huber_6__reduce__": 1, + "wglGetGenlockSourceDelayI3D": 1, + "uv__pipe2": 1, + "new_file.path": 6, + "allocate": 1, + "REDIS_HASH_MAX_ZIPLIST_VALUE": 1, + "megabytes": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12SquaredHinge_2loss": 1, + "xFC0": 4, + "version": 4, + "server.port": 7, + "WGL_GPU_VENDOR_AMD": 1, + "freePubsubPattern": 1, + "rpushCommand": 1, + "WGL_BIND_TO_VIDEO_RGB_AND_DEPTH_NV": 1, + "PFNWGLDXLOCKOBJECTSNVPROC": 2, + "manipulate": 1, + "which": 1, + "fileno": 1, + "PFNWGLSENDPBUFFERTOVIDEONVPROC": 2, + "WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_RGBA_NV": 1, + "cmd_help": 1, + "REDIS_ENCODING_INT": 4, + "F000": 2, + "WGL_I3D_genlock": 2, + "*__pyx_k_tuple_9": 1, + "Little": 1, + "LOCK": 2, + "REDIS_VERBOSE": 3, + "paused": 3, + "bIndex": 5, + "yajl_alloc": 1, + "__wglewWaitForSbcOML": 2, + "srcZ": 1, + "__pyx_k__fit_intercept": 1, + "text": 22, + "*sub": 1, + "HTTP_MSEARCH": 1, + "*__pyx_n_s__nonzero": 1, + "REDIS_MAXMEMORY_VOLATILE_TTL": 1, + "rfFgets_UTF32LE": 2, + "cmd_index_pack": 1, + "git_buf_vec": 1, + "fseeko64": 1, + "LOG_ERROR": 64, + "h_general": 23, + "lpGpuDevice": 1, + "__pyx_k__epsilon": 1, + "zincrbyCommand": 1, + "TASK_UNINTERRUPTIBLE": 1, + "__pyx_k__i": 1, + "header_flag": 3, + "cpumask_copy": 3, + "__WGLEW_EXT_swap_control": 2, + "**p": 1, + "*src": 3, + "HTTP_PROPFIND": 2, + "RF_UTF16_LE": 9, + "get": 4, + "rb_cObject": 1, + "*cmd": 5, + "STDOUT_FILENO": 2, + "WGL_CONTEXT_RESET_NOTIFICATION_STRATEGY_ARB": 1, + "__pyx_f": 42, + "zero": 2, + "*line_separator": 1, + "PyDict_Size": 3, + "lpushxCommand": 1, + "buffer": 10, + "user": 2, + "server.lua_timedout": 2, + "cmd_push": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_3Log_4__reduce__": 1, + "PyLong_Type": 1, + "uv_pipe_t*": 1, + "sunionstoreCommand": 1, + "use": 1, + "RUN_CLEAN_ON_EXIT": 1, + "codepoints": 44, + "unwatchCommand": 1, + "options.stdio_count": 4, + "row_work": 4, + "*lookup_commit_reference_by_name": 2, + "i_STRING2_": 2, + "specified": 1, + "rfString_PruneEnd": 2, + "server.rdb_save_time_start": 2, + "wglSetPbufferAttribARB": 1, + "WGL_AUX9_ARB": 1, + "uv_process_options_t": 2, + "PFNWGLENUMERATEVIDEODEVICESNVPROC": 2, + "B4": 1, + "WGL_MAX_PBUFFER_HEIGHT_ARB": 1, + "*__pyx_n_s__c": 1, + "__pyx_print": 1, + "PyCode_New": 2, + "what": 1, + "author": 1, + "s_req_query_string": 7, + "*parNP": 2, + "listNodeValue": 3, + "S_ISSOCK": 1, + "__pyx_k__NotImplementedError": 1, + "cpu_active_mask": 2, + "cpu_up": 2, + "__Pyx_c_conj": 3, + "int": 446, + "*new_entry": 1, + "brief": 1, + "rfString_Init_UTF16": 3, + "write_lock_irq": 1, + "*ptr": 1, + "*__pyx_pw_7sklearn_12linear_model_8sgd_fast_10Regression_1loss": 3, + "PY_SSIZE_T_CLEAN": 1, + "i_SELECT_RF_STRING_BEFOREV18": 1, + "stream": 3, + "server.aof_filename": 3, + "prefix.size": 1, + "server.db": 23, + "i_rfString_Between": 4, + "flushallCommand": 1, + "rfFgets_UTF16BE": 2, + "SA_NODEFER": 1, + "wglewIsSupported": 2, + "WGL_MAX_PBUFFER_PIXELS_ARB": 1, + "__Pyx_PyInt_AsLongLong": 1, + "__pyx_obj_7sklearn_5utils_11seq_dataset_CSRDataset": 2, + "PyBytes_GET_SIZE": 1, + "i_SELECT_RF_STRING_REPLACE2": 1, + "pbytePos": 2, + "memmove": 1, + "*parser": 9, + "redisLogFromHandler": 2, + "GLushort*": 1, + "*__pyx_n_s__x_data_ptr": 1, + "i_THISSTR_": 60, + "pointer": 5, + "UV_PROCESS_SETGID": 2, + "resetServerSaveParams": 2, + "append_merge_tag_headers": 1, + "matcher": 3, + "PFNWGLGETCURRENTREADDCEXTPROC": 2, + "i_SELECT_RF_STRING_FIND3": 1, + "xDC00": 4, + "wait3": 1, + "to_cpumask": 15, + ".soft_limit_bytes": 3, + "UV_INHERIT_STREAM": 2, + "__Pyx_XCLEAR": 1, + "i_OUTSTR_": 6, + "make": 3, + "PATCH": 2, + "free_link_refs": 1, + "rfFgetc_UTF32BE": 3, + "opts.new_prefix": 4, + "md": 18, + "HPE_LF_EXPECTED": 1, + "*__pyx_n_s__sys": 1, + "i_SELECT_RF_STRING_BEFORE1": 1, + "refs": 2, + "D0": 1, + "WGLEW_ARB_buffer_region": 1, + "commands": 3, + "userformat_find_requirements": 1, + "signum": 4, + "git_delta_t": 5, + "GIVEREF": 1, + "allocation": 3, + "task_struct": 5, + "cpumask_test_cpu": 1, + "GL_COLOR_CLEAR_UNCLAMPED_VALUE_ATI": 1, + "*__pyx_builtin_RuntimeError": 1, + "I_KEEPSTR_": 2, + "been": 1, + "REDIS_BIO_AOF_FSYNC": 1, + "REDIS_ERR": 5, + "server.rdb_save_time_last": 2, + "oitem": 29, + "wglGetSwapIntervalEXT": 1, + "__Pyx_XGIVEREF": 5, + "PyBUF_F_CONTIGUOUS": 1, + "pg_data_t": 1, + "*diff_strdup_prefix": 1, + "rfString_Init_UTF32": 3, + "*__Pyx_RefNanny": 1, + "b_index_": 6, + "getbitCommand": 1, + "REDIS_SLOWLOG_LOG_SLOWER_THAN": 1, + "__wglewIsEnabledFrameLockI3D": 2, + "__pyx_t_float_complex": 27, + "__sun__": 1, + "finding": 1, + "WGLEW_I3D_gamma": 1, + "WGL_AUX_BUFFERS_EXT": 1, + "rfFgetc_UTF16BE": 4, + "/1000000": 2, + "WGL_LOSE_CONTEXT_ON_RESET_ARB": 1, + "ERROR_INVALID_VERSION_ARB": 1, + "cpu_add_remove_lock": 3, + "uv_process_kill": 1, + "k": 15, + "WGL_VIDEO_OUT_COLOR_AND_ALPHA_NV": 1, + "bracket": 4, + "*__pyx_args": 9, + "*pgdat": 1, + "WGL_SUPPORT_OPENGL_EXT": 1, + "hglrc": 5, + "npy_clongdouble": 1, + "PyObject_GetAttrString": 2, + "*/": 1, + "*24": 1, + "shared.mbulkhdr": 1, + "*ver_major": 2, + "is_empty": 4, + "bufptr": 12, + "rfUTF8_VerifySequence": 7, + "*__pyx_n_s__is_hinge": 1, + "rfUTF32_Length": 1, + "yajl_parse": 2, + "__wglewEnableFrameLockI3D": 2, + "WGL_ARB_create_context_profile": 2, + "num_pos_args": 1, + "size": 120, + "*new_tree": 1, + "__pyx_empty_tuple": 3, + "*strides": 1, + "*reflog_info": 1, + "cpu_bit_bitmap": 2, + "found": 20, + "git_hash_init": 1, + "WGL_DEPTH_COMPONENT_NV": 1, + "__wglewGetPixelFormatAttribfvEXT": 2, + "*__pyx_self": 1, + "__Pyx_PyUnicode_READ_CHAR": 2, + "scriptingInit": 1, + "WGLEW_NV_video_capture": 1, + "WGL_DOUBLE_BUFFER_ARB": 1, + "__imag__": 1, + "PyBUF_ANY_CONTIGUOUS": 1, + "INT_MIN": 1, + "Macros": 1, + "GLboolean": 53, + "PyString_AS_STRING": 1, + "cfg": 6, + "": 2, + "options": 62, + "UV__F_NONBLOCK": 5, + "ferror": 2, + "UV_STREAM_READABLE": 2, + "RUSAGE_CHILDREN": 1, + "*puGreen": 2, + "_exit": 6, + "userformat_want": 2, + "yajl_handle": 10, + "*uMaxPixelDelay": 1, + "*__pyx_k_tuple_17": 1, + "*__pyx_n_s__t": 1, + "fseek": 19, + "return": 529, + "__wglewBindDisplayColorTableEXT": 2, + "A9": 2, + "HPE_STRICT": 1, + "commit_graft_alloc": 4, + "git_setup_gettext": 1, + "hsetnxCommand": 1, + "pipes": 23, + "GIT_ATTR_FNMATCH_ALLOWSPACE": 1, + "read": 1, + "||": 141, + "srandmemberCommand": 1, + "int8_t": 3, + "key2": 5, + "git_pool": 4, + "idletime": 2, + "WGL_I3D_gamma": 2, + "hDstRC": 1, + "WGLEW_3DL_stereo_control": 1, + "*__pyx_n_s__RuntimeError": 1, + "__Pyx_PyInt_AsShort": 1, + "i_RFUI8_": 28, + "i_rfLMSX_WRAP2": 4, + "F_CHUNKED": 11, + "CONFIG_IA64": 1, + "revents": 2, + "rfString_Create_fUTF8": 2, + "c.want": 2, + "delta": 54, + "__init": 2, + "tag_end": 7, + "yajl_bs_free": 1, + "CMIT_FMT_SHORT": 1, + "CB_header_value": 1, + "server": 1, + "zfree": 2, + "WGL_ACCUM_BLUE_BITS_ARB": 1, + "*__pyx_n_s__verbose": 1, + "readonly": 1, + "While": 2, + "h_matching_proxy_connection": 3, + "PFNWGLGETVIDEOINFONVPROC": 2, + "WGL_I3D_image_buffer": 2, + "ob_size": 1, + "adjustOpenFilesLimit": 2, + "GIT_ATTR_FNMATCH_HASWILD": 1, + "": 1, + "cb": 1, + "klass": 1, + "__Pyx_PyCode_New": 2, + "utf": 1, + "needing": 1, + "beg": 10, + "*__Pyx_GetItemInt_List_Fast": 1, + "i_ARG3_": 56, + "li": 6, + "self": 9, + "*reencode_commit_message": 1, + "i_rfString_Remove": 6, + "code=": 2, + "i_NVrfString_Init": 3, + "__wglewSetGammaTableParametersI3D": 2, + "clean": 1, + ".soft_limit_seconds": 3, + "va_start": 3, + "*sb": 7, + "server.watchdog_period": 3, + "status": 57, + "list*": 1, + "now": 5, + "C5": 1, + "WGL_ACCELERATION_EXT": 1, + "WGL_ACCUM_RED_BITS_ARB": 1, + "server.assert_line": 1, + "sha1_to_hex": 8, + "replace": 3, + "aeMain": 1, + "cpu_possible_mask": 2, + "__pyx_k__threshold": 1, + "sd_markdown": 6, + "*o1": 2, + "maxGroups": 1, + "WGL_FRAMEBUFFER_SRGB_CAPABLE_EXT": 1, + "*rev2": 1, + "get_online_cpus": 2, + "peek": 5, + "valid": 1, + "server.aof_buf": 3, + "_zonerefs": 1, + "__pyx_k__B": 1, + "__Pyx_GetItemInt_List": 1, + "srcTarget": 1, + "HANDLE*": 3, + "PyInt_AsUnsignedLongMask": 1, + "zone": 1, + "git_buf_joinpath": 1, + "|": 132, + "INT32*": 1, + "fj": 1, + "is_unicode": 1, + "RE_STRING_INIT_FAILURE": 8, + "HPE_HEADER_OVERFLOW": 1, + "server.ops_sec_idx": 4, + "codePoint": 18, + "ERROR_INVALID_PROFILE_ARB": 1, + "xSrc": 1, + "__pyx_pf_5numpy_7ndarray___getbuffer__": 1, + "pop": 1, + "shared.cone": 1, + "rfString_Assign_char": 2, + "PM_SUSPEND_PREPARE": 1, + "start_state": 1, + "wants": 2, + "write_unlock_irq": 1, + "commit_list": 35, + "h_CO": 3, + "__wglewDeleteDCNV": 2, + "WGL_NUMBER_OVERLAYS_EXT": 1, + "PyUnicode_FromString": 2, + "or": 1, + "alloc_commit_node": 1, + "listLength": 14, + "git__iswildcard": 1, + "HTTP_UNLOCK": 2, + "buflen": 3, + "PyObject_HEAD": 3, + "i_SEARCHSTR_": 26, + "STDIN_FILENO": 1, + "REDIS_CMD_DENYOOM": 1, + "first_cpu": 3, + "PFNWGLBINDVIDEODEVICENVPROC": 2, + "*__pyx_n_s__alpha": 1, + "i_NPSELECT_RF_STRING_AFTERV": 1, + "s_chunk_data_done": 3, + "#endif//include": 1, + "addReplyMultiBulkLen": 1, + "REDIS_ZSET_MAX_ZIPLIST_VALUE": 1, + "*signature": 1, + "set_cpu_online": 1, + "typegroup": 1, + "wglDXObjectAccessNV": 1, + "__Pyx_c_absf": 3, + "i_SELECT_RF_STRING_CREATE1": 1, + "REDIS_LUA_TIME_LIMIT": 1, + "CYTHON_CCOMPLEX": 12, + "__Pyx_PyBool_FromLong": 1, + "startup_info": 3, + "rfPclose": 1, + "redisCommand": 6, + "WGL_SWAP_EXCHANGE_EXT": 1, + "WGL_TRANSPARENT_RED_VALUE_ARB": 1, + "*__pyx_kp_u_12": 1, + "PyString_FromString": 2, + "h_connection": 6, + "char**": 7, + "__pyx_insert_code_object": 1, + "i_SELECT_RF_STRING_AFTER1": 1, + "pFrameCount": 1, + "__pyx_k__rho": 1, + "npy_long": 1, + "means": 1, + "aeCreateFileEvent": 2, + "WGLEW_NV_video_output": 1, + "category": 2, + "*subLength": 2, + "SPAWN_WAIT_EXEC": 5, + "field_data": 5, + "evalCommand": 1, + "dictEncObjKeyCompare": 4, + "endian": 20, + "UV_PROCESS_WINDOWS_VERBATIM_ARGUMENTS": 1, + "iVideoBuffer": 2, + "__wglewCreateAffinityDCNV": 2, + "__wglewCreatePbufferEXT": 2, + "WGL_PBUFFER_HEIGHT_ARB": 1, + "__pyx_k__is_hinge": 1, + "i_SELECT_RF_STRING_AFTERV11": 1, + "*result": 1, + "__WGLEW_NV_vertex_array_range": 2, + "EV_P_": 1, + "BUG_ON": 4, + "get_sha1": 1, + "obj": 48, + "strings": 5, + "48": 1, + "WGL_ALPHA_SHIFT_ARB": 1, + "": 1, + "l1": 4, + "robj": 7, + "PFNWGLRELEASEVIDEOIMAGENVPROC": 2, + "wglCreateAssociatedContextAMD": 1, + "*m": 1, + "does": 1, + "argcp": 2, + "*format": 2, + "rfString_Create": 4, + "statStr": 6, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Hinge": 1, + "lastsaveCommand": 1, + "PyString_AsString": 1, + "*ver_minor": 2, + "cmd_merge_base": 1, + "*commit_list_get_next": 1, + "server.masterhost": 7, + "enc_type": 1, + "PyStringObject": 2, + "server.lua_client": 1, + "cpumask_clear": 2, + "zrangebyscoreCommand": 1, + "CF": 1, + "__pyx_doc_7sklearn_12linear_model_8sgd_fast_12LossFunction_2dloss": 1, + "__pyx_k_20": 1, + "RE_STRING_TOFLOAT": 1, + "preserve_subject": 1, + "EINVAL": 6, + "flushAppendOnlyFile": 2, + "*__pyx_n_s__i": 1, + "i_DESTINATION_": 2, + "opaque": 8, + "cpu_hotplug_disabled": 7, + "abort": 1, + "tv": 8, + "WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_RGB_NV": 1, + "PyList_GET_SIZE": 5, + "is_complex": 1, + "s_res_HT": 4, + "clusterNodesDictType": 1, + "bestval": 5, + "D": 8, + "__pyx_k__sumloss": 1, + "__pyx_module_is_main_sklearn__linear_model__sgd_fast": 1, + "__pyx_t_5numpy_ulong_t": 1, + "PyInt_FromUnicode": 1, + "WGL_TRANSPARENT_GREEN_VALUE_ARB": 1, + "*list": 2, + "hRegion": 3, + "PyCFunction_GET_FUNCTION": 3, + "tasks_frozen": 4, + "git_repository": 7, + "server.syslog_ident": 2, + "checkUTF8": 1, + "__WGLEW_ARB_render_texture": 2, + "__pyx_k__update": 1, + "unlikely": 54, + "getsetCommand": 1, + "*__pyx_empty_tuple": 1, + "PyBytes_Check": 1, + "*suboffsets": 1, + "xA": 1, + "cpu_hotplug_done": 4, + "shared.bgsaveerr": 2, + "xE0": 2, + "clusterInit": 1, + "register_cpu_notifier": 2, + "i_SELECT_RF_STRING_CREATELOCAL0": 1, + "space": 4, + "server.maxmemory_policy": 11, + "zmalloc": 2, + "server.unixsocket": 7, + "HTTP_REPORT": 1, + "than": 5, + "WGL_MIPMAP_TEXTURE_ARB": 1, + "__Pyx_PyIndex_Check": 3, + "case": 273, + "classes": 1, + "sure": 2, + "IS_ALPHANUM": 3, + "__stop_machine": 1, + "USHORT*": 2, + "": 1, + "__PYX_BUF_FLAGS_PACKED_STRUCT": 1, + "requires": 1, + "dictGetVal": 2, + "cmd_prune_packed": 1, + "*argcp": 4, + "server.monitors": 2, + "redisLog": 33, + "WGL_BLUE_SHIFT_EXT": 1, + "WGL_EXT_pixel_format": 2, + "__pyx_k__penalty_type": 1, + "reexecute_byte": 7, + "rfString_Beforev": 4, + "git_config_get_bool": 1, + "strcasecmp": 13, + "uf": 14, + "SUNDOWN_VER_MAJOR": 1, + "sd_version": 1, + "WGL_ALPHA_BITS_EXT": 1, + "WGL_SAMPLE_BUFFERS_ARB": 1, + "__pyx_k__verbose": 1, + "git_strarray": 2, + "run_with_period": 6, + "__wglewGetPixelFormatAttribivARB": 2, + "__pyx_n_s__p": 6, + "pfd.events": 1, + "RE_INPUT": 1, + "*__pyx_n_s__ValueError": 1, + "__Pyx_RaiseNeedMoreValuesError": 1, + "to_py_func": 6, + "rndr": 25, + "WNOHANG": 1, + "(": 6213, + "PFNWGLGENLOCKSOURCEDELAYI3DPROC": 2, + "WINAPI": 119, + "*__pyx_n_s__q_data_ptr": 1, + "*__pyx_v_self": 52, + "__Pyx_DelAttrString": 2, + "kill": 4, + "*lookup_commit_reference_gently": 2, + "cmd_symbolic_ref": 1, + "*msc": 3, + "__Pyx_CodeObjectCache": 2, + "HTTP_MERGE": 1, + "PFNWGLRELEASEVIDEOCAPTUREDEVICENVPROC": 2, + "STRICT": 1, + "": 1, + "from": 16, + "strtoul": 2, + "INT64": 18, + "WGL_DIGITAL_VIDEO_CURSOR_ALPHA_FRAMEBUFFER_I3D": 1, + "*pattern": 1, + "redisServer": 1, + "nr_to_call": 2, + "pathspec": 15, + "wglDeleteBufferRegionARB": 1, + "*__pyx_n_s_21": 1, + "cmd_grep": 1, + "dstTarget": 1, + "WGL_AUX3_ARB": 1, + "you": 1, + "needed": 10, + "*head": 1, + "validateUTF8": 3, + "INT_MAX": 1, + "i_SELECT_RF_STRING_REMOVE3": 1, + "REDIS_LIST_MAX_ZIPLIST_ENTRIES": 1, + "WGL_SWAP_UNDEFINED_EXT": 1, + "WGL_SWAP_LAYER_BUFFERS_EXT": 1, + "WGL_STEREO_EMITTER_DISABLE_3DL": 1, + "__Pyx_PyNumber_Divide": 2, + "opts": 24, + "indent": 1, + "pid_t": 2, + "*line": 1, + "GIT_ITERATOR_WORKDIR": 2, + "i_SELECT_RF_STRING_BEFOREV7": 1, + "data.fd": 1, + "BLOB_H": 2, + "http_data_cb": 4, + "s_header_value_lws": 3, + "WGL_GENLOCK_SOURCE_EXTERNAL_FIELD_I3D": 1, + "ERROR_INVALID_PIXEL_TYPE_EXT": 1, + "s_headers_almost_done": 4, + "SHA1_Final": 3, + "RF_UTF32_LE//": 2, + "removed": 2, + "s2": 6, + "/R_Zero": 2, + "zrevrangebyscoreCommand": 1, + "PFNWGLGETSWAPINTERVALEXTPROC": 2, + "srcX1": 1, + "*__pyx_n_s__epoch": 1, + "__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Hinge___init__": 1, + "pulCounterOutputPbuffer": 1, + "PFNWGLMAKEASSOCIATEDCONTEXTCURRENTAMDPROC": 2, + "two": 1, + "rfUTF8_Encode": 4, + "set_cpu_active": 1, + "__pyx_vtab": 2, + "eta": 4, + "CALLBACK_DATA": 10, + "HTTP_OPTIONS": 1, + "RF_CASE_IGNORE": 2, + "wglDXUnlockObjectsNV": 1, + "PFNWGLENABLEFRAMELOCKI3DPROC": 2, + "Py_hash_t": 1, + "char*utf8": 3, + "one": 2, + "scriptCommand": 2, + "replicationCron": 1, + "uv_loop_t*": 1, + "WGL_EXT_pbuffer": 2, + "__pyx_v_penalty_type": 1, + "i_LIMSELECT_RF_STRING_BEFOREV0": 1, + "git_buf_sets": 1, + "*pointer": 1, + "__wglewSetDigitalVideoParametersI3D": 2, + "WGL_CONTEXT_DEBUG_BIT_ARB": 1, + "__pyx_k__d": 1, + "__builtin_expect": 2, + "i_SELECT_RF_STRING_FWRITE2": 1, + "i_rfLMSX_WRAP8": 2, + "i_SELECT_RF_STRING_BETWEEN4": 1, + "server.syslog_facility": 2, + "PFNWGLRESETFRAMECOUNTNVPROC": 2, + "WGL_DEPTH_BUFFER_BIT_ARB": 1, + "PTR_ERR": 1, + "__pyx_t_5": 12, + "__Pyx_WriteUnraisable": 4, + "minPosLength": 3, + "R_Zero": 2, + "h_matching_content_length": 3, + "file": 6, + "prefixcmp": 3, + "rfString_Copy_OUT": 2, + "*_entry": 1, + "cpumask": 7, + "": 2, + "cb.table_cell": 3, + "PFNWGLQUERYCURRENTCONTEXTNVPROC": 2, + "wglCopyImageSubDataNV": 1, + "*b": 6, + "s_req_query_string_start": 8, + "mutex": 1, + "hdelCommand": 1, + "uv__chld": 2, + "*phGpuList": 1, + "PyFrozenSet_Type": 1, + "ch": 145, + "options.args": 1, + "privdata": 8, + "setDictType": 1, + "WGL_TEXTURE_CUBE_MAP_NEGATIVE_Y_ARB": 1, + "tokensN": 2, + "level": 12, + "lo": 6, + "git_diff_workdir_to_tree": 1, + "fstat": 1, + "RF_SUCCESS": 14, + "MKD_SAFELINK": 1, + "__pyx_f_7sklearn_12linear_model_8sgd_fast_sqnorm": 1, + "WGL_AMD_gpu_association": 2, + "effectively": 1, + "DECLARE_BITMAP": 6, + "HPE_INVALID_CONSTANT": 3, + "server.lua": 1, + "GIT_DIFF_REVERSE": 3, + "loadAppendOnlyFile": 1, + "*__pyx_kp_s_1": 1, + "options.exit_cb": 1, + "Memory": 4, + "pretty_print_commit": 1, + "PFNWGLBLITCONTEXTFRAMEBUFFERAMDPROC": 2, + "PyUnicode_AS_UNICODE": 1, + "uv__cloexec": 4, + "in_merge_bases": 1, + "server.aof_rewrite_scheduled": 4, + "REDIS_VERSION": 4, + "blpopCommand": 1, + "wglGetPixelFormatAttribfvEXT": 1, + "__Pyx_XINCREF": 2, + "cmd_struct": 4, + "object.parsed": 4, + "9": 1, + "ino": 2, + "server.repl_ping_slave_period": 1, + "dstCtx": 1, + "mkd_document": 1, + "parNP": 6, + "PGPU_DEVICE": 1, + "__wglewDeleteBufferRegionARB": 2, + "__pyx_k__H": 1, + "i_SELECT_RF_STRING_BEFOREV13": 1, + "git_tree": 4, + "REDIS_MAXMEMORY_ALLKEYS_RANDOM": 2, + "child_watcher": 5, + "http_parser_h": 2, + "wglGetGPUInfoAMD": 1, + "*__pyx_n_s__eta": 1, + "__pyx_v_power_t": 1, + "*__pyx_ptype_5numpy_ufunc": 1, + "__Pyx_ParseOptionalKeywords": 4, + "PyString_ConcatAndDel": 1, + "*da": 1, + "wglSwapLayerBuffersMscOML": 1, + "__wglewDestroyPbufferEXT": 2, + "*pfAttribFList": 2, + "*module_name": 1, + "numP": 1, + "opts.old_prefix": 4, + "fp": 13, + "wglewContextIsSupported": 2, + "WGL_BIND_TO_VIDEO_RGB_NV": 1, + "WGL_NV_swap_group": 2, + "PFNWGLSETGAMMATABLEPARAMETERSI3DPROC": 2, + "WGL_AUX2_ARB": 1, + "terminate": 1, + "pool": 12, + "WGLEW_NV_render_texture_rectangle": 1, + "__wglewDXRegisterObjectNV": 2, + "WGL_ARB_pixel_format_float": 2, + "__Pyx_StructField*": 1, + "PyBUF_ND": 2, + "cmd_receive_pack": 1, + "prefix.ptr": 2, + "*__pyx_n_s__intercept": 1, + "cpu_all_bits": 2, + "server.stat_rejected_conn": 2, + "__wglewBindTexImageARB": 2, + "*pool": 3, + "*obj": 9, + "__Pyx_TypeCheck": 1, + "PyUnicode_READ_CHAR": 1, + "OK": 1, + "**next": 2, + "__pyx_k__class_weight": 1, + "HPE_CB_headers_complete": 1, + "BOM": 1, + "PFNWGLGETPIXELFORMATATTRIBIVARBPROC": 2, + "maxfiles": 6, + "**pathspec": 1, + "dbDelete": 2, + "MASK_DECLARE_2": 3, + "*nitem": 2, + "cmd_reflog": 1, + "hPbuffer": 14, + "@endcpp": 1, + "server.ops_sec_last_sample_ops": 3, + "WGL_3DFX_multisample": 2, + "PyCFunction_Check": 3, + "PyComplex_Check": 1, + "onto": 7, + "setgid": 1, + "for": 88, + "": 3, + "__Pyx_PyIdentifier_FromString": 3, + "shared.wrongtypeerr": 1, + "act.sa_handler": 1, + "rpoplpushCommand": 1, + "CONFIG_HOTPLUG_CPU": 2, + "*pp": 4, + "migrateCommand": 1, + "yajl_buf_free": 1, + "wglDXLockObjectsNV": 1, + "port": 7, + "git_oid_cmp": 6, + "WGL_TYPE_RGBA_FLOAT_ATI": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12LossFunction_loss": 2, + "uv__stream_open": 1, + "*lookup_blob": 2, + "f": 184, + "UNSUBSCRIBE": 2, + "orSize": 5, + "unregister_shallow": 1, + "cmd_status": 1, + "*tmp": 1, + "server.client_obuf_limits": 9, + "and": 15, + "__wglewDestroyImageBufferI3D": 2, + "__pyx_k__u": 1, + "__pyx_k_6": 1, + "__Pyx_GetVtable": 1, + "*feature_indices": 2, + "rfString_Assign_fUTF8": 2, + "UF_MAX": 3, + "option": 9, + "*from": 1, + "//invalid": 1, + "b_date": 3, + "i_rfString_Beforev": 16, + "__WGLEW_NV_render_texture_rectangle": 2, + "PyObject": 276, + "i_SELECT_RF_STRING_AFTERV17": 1, + "**": 6, + "rb_rdiscount__get_flags": 3, + "WGL_PIXEL_TYPE_EXT": 1, + "__pyx_r": 39, + "__pyx_t_5numpy_int64_t": 1, + "i_SELECT_RF_STRING_INIT_NC1": 1, + "pBytePos": 15, + "PM_HIBERNATION_PREPARE": 1, + "server.pubsub_channels": 2, + "GIT_DIFF_INCLUDE_UNMODIFIED": 1, + "yajl_status_error": 1, + "Cython": 1, + "32": 1, + "number*diff": 1, + "commit_pager_choice": 4, + "cmd_diff_files": 1, + "RUN_SILENT_EXEC_FAILURE": 1, + "server.activerehashing": 2, + "__Pyx_GetItemInt_Fast": 2, + "**commit_graft": 1, + "cmd_add": 2, + "*s": 3, + "HTTP_SUBSCRIBE": 2, + "__wglewQuerySwapGroupNV": 2, + "WGL_PBUFFER_WIDTH_ARB": 1, + "PyErr_Occurred": 9, + "pgdat": 3, + "GIT_DIFF_IGNORE_SUBMODULES": 1, + "CMIT_FMT_EMAIL": 1, + "__Pyx_ReleaseBuffer": 2, + "sstrP": 6, + "addReplyBulk": 1, + "void*": 135, + "limit.rlim_cur": 2, + "__wglewDisableGenlockI3D": 2, + "just": 1, + "REDIS_SHARED_INTEGERS": 1, + "__cpuinit": 3, + "cpu": 57, + "argList": 8, + "undo": 5, + "PM_POST_SUSPEND": 1, + "__wglewGetSyncValuesOML": 2, + "__wglewGetPixelFormatAttribfvARB": 2, + "*__Pyx_Import": 1, + "i_STRING1_": 2, + "clusterCommand": 1, + "WGL_FULL_ACCELERATION_EXT": 1, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Regression": 1, + "utf16": 11, + "memcmp": 6, + "WGL_MAX_PBUFFER_WIDTH_ARB": 1, + "A4": 2, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_ModifiedHuber": 5, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Regression": 11, + "module": 3, + "REDIS_AOF_REWRITE_MIN_SIZE": 1, + "*next": 6, + "thiskey": 7, + "sp": 4, + "cmd_rerere": 1, + "RECT": 1, + "*__pyx_pw_7sklearn_12linear_model_8sgd_fast_12LossFunction_3dloss": 3, + "git__free": 15, + "WGL_VIDEO_OUT_FIELD_1": 1, + "rcVirtualScreen": 1, + "bool": 6, + ".description": 1, + "xrealloc": 2, + "iGpuIndex": 2, + "Extended": 1, + "HPE_INVALID_EOF_STATE": 1, + "server.masterauth": 1, + "i_rfString_ScanfAfter": 3, + "snprintf": 2, + "__wglewDXLockObjectsNV": 2, + "FLOAT": 4, + "*__pyx_builtin_NotImplementedError": 1, + "*extra": 1, + "": 1, + "that": 9, + "exist": 2, + "i/2": 2, + "properly": 2, + "xFFFE0000": 1, + "*heads": 2, + "server.hash_max_ziplist_entries": 1, + "**type": 1, + "Py_REFCNT": 1, + "*clientData": 1, + "PFNWGLDXOPENDEVICENVPROC": 2, + "wglGenlockSourceI3D": 1, + "WGL_BACK_RIGHT_ARB": 1, + "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_Regression": 3, + "sdiffstoreCommand": 1, + "server.ops_sec_samples": 4, + "aeCreateTimeEvent": 1, + "git_index_entry": 8, + "func_name": 2, + "__STDC_VERSION__": 2, + "utf32": 10, + "INVALID_INTERNAL_STATE": 1, + "*numberP": 1, + "GIT_DIFF_RECURSE_UNTRACKED_DIRS": 1, + "HPE_INVALID_STATUS": 3, + "git_repository_config__weakptr": 1, + "WGL_I3D_swap_frame_usage": 2, + "C0": 3, + "header_field": 5, + "value": 9, + "ARRAY_SIZE": 1, + "WGLEW_EXT_extensions_string": 1, + "wglGetCurrentReadDCARB": 1, + "c_ru.ru_stime.tv_sec": 1, + "": 1, + "__Pyx_DOCSTR": 2, + "PyLong_FromUnicode": 1, + "manipulation": 1, + "*prefix": 7, + "stat": 3, + "//": 257, + "__wglewGetCurrentReadDCEXT": 2, + "WGL_ACCELERATION_ARB": 1, + ".": 1, + "i_NPSELECT_RF_STRING_REMOVE1": 1, + "i_rfLMSX_WRAP15": 2, + "git_hash_update": 1, + "PUT": 2, + "WGL_I3D_swap_frame_lock": 2, + "wglChoosePixelFormatARB": 1, + "__pyx_kwds": 15, + "*__pyx_n_s__zeros": 1, + "__Pyx_CodeObjectCacheEntry*": 2, + "npy_longdouble": 1, + "RF_FAILURE": 24, + "prepareForShutdown": 2, + "tokens": 5, + "default": 33, + "INT64*": 3, + "__pyx_k__learning_rate": 1, + "__pyx_k__RuntimeError": 1, + "PySequence_Check": 1, + "ob_refcnt": 1, + "#endif//": 1, + "s_chunk_size_start": 4, + "HPE_CLOSED_CONNECTION": 1, + "HTTP_PARSER_ERRNO_LINE": 2, + "__wglewLockVideoCaptureDeviceNV": 2, + "__Pyx_c_is_zero": 3, + "w": 6, + "git_mutex_init": 1, + "mkd_string": 2, + "getOperationsPerSecond": 2, + "WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_RG_NV": 1, + "wglDXSetResourceShareHandleNV": 1, + "setrangeCommand": 1, + "pfd": 2, + "REDIS_SHARED_BULKHDR_LEN": 1, + "git_cached_obj_decref": 3, + "PFNWGLBINDVIDEOIMAGENVPROC": 2, + "*pLastMissedUsage": 1, + "WGLEW_EXT_pbuffer": 1, + "WGL_TYPE_RGBA_FLOAT_ARB": 1, + "*__pyx_n_s__weight_pos": 1, + "__Pyx_c_diff": 2, + "every": 1, + "CMIT_FMT_FULL": 1, + "old_tree": 5, + "clientCommand": 1, + "git_startup_info": 2, + "git_diff_index_to_tree": 1, + "*__pyx_k_codeobj_19": 1, + "rfFseek": 2, + "rfUTILS_SwapEndianUI": 11, + "arity": 3, + "uint16_t": 12, + "*__pyx_pw_7sklearn_12linear_model_8sgd_fast_12LossFunction_1loss": 3, + "install": 1, + "multiCommand": 2, + "*privdata": 8, + "__Pyx_PyInt_FromHash_t": 2, + "smaller": 1, + "*git_cache_get": 1, + "*link": 1, + "process": 19, + "c_ru.ru_utime.tv_usec/1000000": 1, + "wglGetGenlockSourceEdgeI3D": 1, + "__GNUC_PATCHLEVEL__": 1, + "watchCommand": 2, + "RF_HEXLE_UI": 8, + "*diff_delta__dup": 1, + "dictEnableResize": 1, + "WARN_ON": 1, + "on_headers_complete": 3, + "cmd_mktree": 1, + "DIFF_OLD_PREFIX_DEFAULT": 1, + "xDBFF": 4, + "WGL_CONTEXT_LAYER_PLANE_ARB": 1, + "PyErr_SetString": 3, + "is_repository_shallow": 1, + "rewriteAppendOnlyFileBackground": 2, + "GLint": 18, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_SquaredLoss": 5, + "idle_cpu": 1, + "target_msc": 3, + "wglQueryPbufferARB": 1, + "check_pager_config": 3, + "CALLBACK_DATA_NOADVANCE": 6, + "s_req_fragment": 7, + "wglSetDigitalVideoParametersI3D": 1, + "WGL_SWAP_EXCHANGE_ARB": 1, + "[": 597, + "term_signal": 3, + "__wglewDXCloseDeviceNV": 2, + "__wglewGenlockSourceDelayI3D": 2, + "__wglewQueryPbufferEXT": 2, + "rfString_StripEnd": 3, + "GIT_DELTA_UNTRACKED": 5, + "rfFback_UTF16LE": 2, + "": 1, + "dictEncObjHash": 4, + "PyUnicode_Type": 2, + "i_NPSELECT_RF_STRING_REPLACE0": 1, + "http_errno_description": 1, + "sdsempty": 8, + "i_SELECT_RF_STRING_COUNT0": 1, + "temporary": 4, + "WGL_NV_DX_interop": 2, + "*pSize": 1, + "*column_data": 1, + "pattern": 3, + "git_cache_free": 1, + "WGLEW_ARB_create_context_robustness": 1, + "uses": 1, + "REDIS_HT_MINFILL": 1, + "__wglewCreatePbufferARB": 2, + "WGL_PBUFFER_LOST_ARB": 1, + "rfUTF16_Decode_swap": 5, + "dbDictType": 2, + "yajl_buf_alloc": 1, + "PFNWGLALLOCATEMEMORYNVPROC": 2, + "execv_dashed_external": 2, + "cmd_fetch": 1, + "rcu_read_unlock": 1, + "WGL_ACCUM_GREEN_BITS_ARB": 1, + "__pyx_v_rho": 1, + "NOTIFY_DONE": 1, + "pexpireatCommand": 1, + "i_ARG2_": 56, + "server.dbnum": 8, + "parent": 7, + "UV_INHERIT_FD": 3, + "s2P": 2, + "*vec": 1, + "CA": 1, + "PyInstanceMethod_New": 1, + "c.value": 3, + "expired": 4, + "B5": 1, + "PFNWGLGETGPUINFOAMDPROC": 2, + "PFNWGLGETGPUIDSAMDPROC": 2, + "dloss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_25SquaredEpsilonInsensitive_2loss": 1, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_SquaredEpsilonInsensitive": 1, + "i_NPSELECT_RF_STRING_BEFORE0": 1, + "code": 6, + "cmd_prune": 1, + "REF_TABLE_SIZE": 1, + "*item": 10, + "REDIS_OK": 23, + "wglDeleteDCNV": 1, + "hSrcRC": 1, + "WGL_GPU_CLOCK_AMD": 1, + "type*": 1, + "ev_child*": 1, + "notifier_block": 3, + "One": 1, + "fwrite": 5, + "lookup_commit_reference": 2, + "dictType": 8, + "*what": 1 + }, + "LFE": { + "OOP": 1, + "spec": 1, + "copy": 3, + "money": 3, + "Mnesia": 2, + "cond": 1, + "//www.apache.org/licenses/LICENSE": 3, + "guide": 1, + "except": 3, + "mommy": 3, + "class": 3, + "To": 1, + "by_place_ms": 1, + "using": 1, + "License": 12, + "agreed": 3, + "required": 3, + ")": 231, + "car": 1, + "http": 4, + "id": 9, + "object.lfe": 1, + "select": 1, + "a": 8, + "drive": 1, + "fun": 1, + "update": 1, + "Comprehensions": 1, + "match_object": 1, + "church.lfe": 1, + "OF": 3, + "call": 2, + "by_place_qlc": 2, + "one": 1, + "McGreggor": 4, + "of": 10, + "numeral": 8, + "three": 1, + "get": 21, + "info": 1, + "lambda": 18, + "give": 1, + "gps1.lisp": 1, + "x": 12, + "Query": 2, + "*": 6, + "implied.": 3, + "lc": 1, + "Demonstrating": 2, + "guide/recursion/5.html": 1, + "ANY": 3, + "current": 1, + "OR": 3, + "Solver": 1, + "pattern": 1, + "simple": 4, + "installs": 1, + "obtain": 3, + "When": 1, + "necessary.": 1, + "tables.": 1, + "or": 6, + "new": 2, + "A": 1, + "Copyright": 4, + "example": 2, + "demonstrated": 1, + "schema.": 1, + "to": 10, + "integer": 2, + "make": 2, + "formatted": 1, + "../bin/lfe": 1, + "his": 1, + "*state*": 5, + "n": 4, + "Purpose": 3, + "list": 13, + "some": 2, + "numerals": 1, + "+": 2, + "define": 1, + "examples": 1, + "if": 1, + "c": 4, + "move": 4, + "used": 1, + "You": 3, + "law": 3, + "macro": 1, + "Norvig": 1, + "emp": 1, + "length": 1, + "This": 2, + "Robert": 3, + "count": 7, + "permissions": 3, + "File": 4, + "macros": 1, + "applicable": 3, + "by_place": 1, + "mnesia_demo": 1, + "Virding": 3, + "you": 3, + "erlang": 1, + "Carp": 1, + "basic": 1, + "Load": 1, + "inheritance.": 1, + "WARRANTIES": 3, + "put": 1, + "telephone": 1, + "It": 1, + "here": 1, + "": 2, + "system": 1, + "naughty": 1, + "state": 4, + "and": 7, + "children": 10, + "ETS": 1, + "zero": 2, + "See": 3, + "object": 16, + "conditions.": 1, + "Code": 1, + "every": 1, + "records": 1, + "p": 2, + "-": 98, + "may": 6, + "is": 5, + "e": 1, + "place": 7, + "Execute": 1, + "Start": 1, + "match": 5, + "achieve": 1, + "five/0": 2, + "access.": 1, + "species": 7, + "does": 1, + "book": 1, + "del": 5, + "section": 1, + "language": 3, + "objects": 2, + "Mode": 1, + "an": 5, + "Paradigms": 1, + "q": 2, + "we": 1, + "works": 1, + "swam": 1, + "f": 3, + "#": 3, + "shop": 6, + "user": 1, + "getvar": 3, + "calculus": 1, + "difference": 1, + "self": 6, + "together": 1, + "[": 3, + "The": 4, + "Author": 3, + "First": 1, + "Licensed": 3, + "not": 5, + "goals": 2, + "by": 4, + "Note": 1, + "WITHOUT": 3, + "variables": 1, + "battery": 1, + "ok": 1, + "will": 1, + "for": 5, + "distributed": 6, + "#Fun": 1, + "hack": 1, + "GPS": 1, + "instance": 2, + "people": 1, + "start": 1, + "int": 2, + "demo": 2, + "/": 1, + "LFE": 4, + "demonstrate": 1, + "when": 1, + "mnesia": 8, + "Apache": 3, + "the": 36, + "contains": 1, + "successor": 3, + "Unless": 3, + "access": 1, + "was": 1, + "tuple": 1, + "only": 1, + "defsyntax": 2, + "union": 1, + "other": 1, + "shows": 2, + "Artificial": 1, + "usage": 1, + ";": 213, + "Use": 1, + "s": 19, + "with": 8, + "Duncan": 4, + "have": 3, + "solved": 1, + "gps": 1, + "however": 1, + "can": 1, + "table.": 1, + "License.": 6, + "global": 2, + "cd": 1, + "transaction": 2, + "attributes": 1, + "but": 1, + "]": 3, + "XXXX": 1, + "Now": 1, + "pa": 1, + "Set": 1, + "successor/1": 1, + "Define": 1, + "": 1, + "qlc": 2, + "person": 8, + "action": 3, + "variable": 2, + "preconds": 4, + "use": 6, + "LFE.": 1, + "do": 2, + "<": 1, + "compliance": 3, + "existing": 1, + "General": 1, + "specifications": 1, + "slurp": 2, + "file": 6, + "Converted": 1, + "add": 3, + "CONDITIONS": 3, + "school": 2, + "setvar": 2, + "code": 2, + "this": 3, + "governing": 3, + "Problem": 1, + "feet": 1, + "../ebin": 1, + "express": 3, + "*ops*": 1, + "defvar": 2, + "set": 1, + "//lfe.github.io/user": 1, + "KIND": 3, + "four": 1, + "version": 1, + "software": 3, + "on": 4, + "defun": 20, + "List": 2, + "reproduce": 1, + "verb": 2, + "isn": 1, + "table": 2, + "Comprehensions.": 1, + "communication": 2, + "son": 2, + "j": 2, + "mnesia_demo.lfe": 1, + "phone": 1, + "five": 1, + "distance": 2, + "that": 1, + "closures": 1, + "create_table": 1, + "Peter": 1, + "defmodule": 2, + "two": 1, + "int1": 1, + "very": 1, + "methods": 5, + "church": 20, + "limit": 4, + "create": 4, + "funcall": 23, + "Programming": 1, + "from": 2, + "Initialise": 1, + "export": 2, + "how": 2, + "Here": 1, + "v": 3, + "strictly": 1, + "fish": 6, + "which": 1, + "Version": 3, + "BASIS": 3, + "in": 10, + "(": 217, + "all": 1, + "method": 7, + "let": 6, + "limitations": 3, + "memory": 1, + "name": 8, + "following": 2, + "defrecord": 1, + "Intelligence": 1, + "op": 8, + "has": 1, + "writing": 3, + "int2": 1, + "specific": 3, + "below": 3, + "those": 1, + "job": 3, + "either": 3, + "val": 2, + "under": 9, + "at": 4 + }, + "Apex": { + "//Polish": 1, + "Object": 23, + "comparator": 14, + "pluck": 1, + "acct.billingstate": 1, + "emailSubject": 10, + "toBoolean": 2, + ".get": 4, + "merged": 6, + "1": 2, + "Double": 1, + "system.assert": 1, + "pageRef": 3, + "theList": 72, + "StringUtils.defaultString": 4, + "insert": 1, + "Id": 1, + "array2.size": 2, + "sendEmail": 4, + "/": 4, + "anArray.size": 2, + "translatedLanguageNames.containsKey": 1, + "MissingTwilioConfigCustomSettingsException": 2, + "//Converts": 1, + "comparator.compare": 12, + "accountAddressString": 2, + "sid": 1, + "address": 1, + "filterLanguageCode": 4, + ".AuthToken__c": 1, + "-": 18, + "||": 12, + "LANGUAGES_FROM_BROWSER_AS_LIST": 3, + "toStringYesNo": 1, + "Test.isRunningTest": 1, + "as": 1, + "SORTING": 1, + "boolArray.size": 1, + "getLangCodeByHttpParamOrIfNullThenUser": 1, + ".getSid": 2, + "str.trim": 3, + "+": 75, + "FORCE.COM": 1, + "TwilioRestClient": 5, + "twilioCfg.AuthToken__c": 3, + "LANGUAGES_FROM_BROWSER_AS_STRING": 2, + "see": 2, + "SObject": 19, + "list2.size": 2, + "str.toLowerCase": 1, + ")": 481, + "getLangCodeByHttpParam": 4, + "isNotTrue": 1, + "OBJECTS": 1, + "node": 1, + "boolArray": 4, + "langCodes": 2, + "PageReference": 2, + "private": 10, + "sObj": 4, + "StringUtils.substring": 1, + "//Swedish": 1, + "fieldName": 3, + "but": 2, + "}": 219, + "need": 1, + "isNotValidEmailAddress": 1, + "": 29, + "textBody": 2, + "size": 2, + "array1.size": 4, + "//Korean": 1, + "sendTextEmail": 1, + "getLangCodeByUser": 3, + ".length": 2, + "defaultVal": 2, + "GeoUtils": 1, + "{": 219, + "FROM": 1, + "LANGUAGE_CODE_SET": 1, + "List": 71, + "mail.setHtmlBody": 1, + "getSuppLangCodeSet": 2, + "merged.add": 2, + "getAllLanguages": 3, + "aList": 4, + "useHTML": 6, + "isNotFalse": 1, + "conversion": 1, + "exception": 1, + "actual.size": 2, + "static": 83, + "objects": 3, + "generateFromContent": 1, + "array2": 9, + "str.toUpperCase": 1, + "void": 9, + "Map": 33, + "objects.size": 1, + "content": 1, + "ArrayUtils.toString": 12, + "SELECT": 1, + "fileAttachments.add": 1, + "getLanguageName": 1, + "attachment.Body": 1, + "splitAndFilterAcceptLanguageHeader": 2, + "//German": 1, + "ISObjectComparator": 3, + "lo0": 6, + "plucked": 3, + "Page.kmlPreviewTemplate": 1, + "UserInfo.getLanguage": 1, + "EMPTY_STRING_ARRAY": 1, + "TwilioAccount": 1, + "token.indexOf": 1, + "geo_response": 1, + ".toString": 1, + "LanguageUtils": 1, + "strs": 9, + "token.contains": 1, + "String": 60, + "else": 25, + "list1.size": 6, + "//dash": 1, + "account": 2, + "StringUtils.length": 1, + "isValidEmailAddress": 2, + "KML": 1, + "cleanup": 1, + "test_TwilioAPI": 1, + "IN": 1, + "isNotEmpty": 4, + "toInteger": 1, + "WHERE": 1, + "split.size": 2, + "email": 1, + "firstItem": 2, + "then": 1, + "objectArray": 17, + "mail.setPlainTextBody": 1, + "expected": 16, + "get": 4, + "&&": 46, + "//": 11, + "strings": 3, + "returnValue.add": 3, + "fileAttachment.setBody": 1, + "while": 8, + "acct": 1, + "createClient": 1, + "final": 6, + "//check": 2, + "negate": 1, + "sendEmailWithStandardAttachments": 3, + "attachment.Name": 1, + "chars": 1, + "getContent": 1, + "//Dutch": 1, + "list2": 9, + "generate": 1, + "token": 7, + "//Japanese": 1, + "tmp": 6, + "//Throws": 1, + "tokens": 3, + "i": 55, + "//Portuguese": 1, + "<": 32, + "LANGUAGES_FROM_BROWSER_AS_LIST.size": 1, + "LANGUAGE_HTTP_PARAMETER": 7, + "": 1, + "SUPPORTED_LANGUAGE_CODES": 2, + "TwilioConfig__c": 5, + "getLangCodeByBrowserOrIfNullThenUser": 1, + "Messaging.sendEmail": 1, + "header": 2, + "ID": 1, + "toString": 3, + "ret": 7, + "Brazilian": 1, + "e": 2, + "may": 1, + "fileAttachments.size": 1, + "getDefaultClient": 2, + "extends": 1, + "getLangCodeByBrowserOrIfNullThenHttpParam": 1, + "system.debug": 2, + "for": 24, + "trueValue": 2, + "fileAttachments": 5, + "langCode": 3, + "these": 2, + "HTTP_LANGUAGE_CODE_PARAMETER_KEY": 2, + "billingcountry": 1, + "value": 10, + "falseValue": 2, + "PRIMITIVES": 1, + "trim": 1, + "fileAttachment.setFileName": 1, + "hi": 50, + "a": 6, + "acct.billingcountry": 2, + "": 30, + "assertArraysAreEqual": 2, + "ArrayUtils": 1, + "htmlBody": 2, + "name": 2, + "Simplified": 1, + "Account": 2, + "returnValue": 22, + "mail": 2, + "not": 3, + "Attachment": 2, + "stdAttachments": 4, + "call": 1, + "createCapability": 1, + "mail.setBccSender": 1, + "isTrue": 1, + "]": 102, + "body": 8, + "in": 1, + "attachment": 1, + "DEFAULT_LANGUAGE_CODE": 3, + "startIndex": 9, + "//Hungarian": 1, + "//French": 1, + "fieldName.trim": 2, + "merg": 2, + "": 22, + "[": 102, + "Boolean": 38, + "isEmpty": 7, + "dummy": 2, + "t1": 1, + "hi0": 8, + "recipients": 11, + "line": 1, + "Exception": 1, + "qsort": 18, + "one": 2, + "ApexPages.currentPage": 4, + ".split": 1, + "": 19, + "//Indonesian": 1, + "MAX_NUMBER_OF_ELEMENTS_IN_LIST": 5, + "ALL": 1, + "billingpostalcode": 1, + "//English": 1, + "translatedLanguageNames.get": 2, + "<=>": 2, + "displayLanguageCode": 13, + "@isTest": 1, + ".getAccountSid": 1, + "instanceof": 1, + "xor": 1, + "return": 106, + "Set": 6, + "mail.setUseSignature": 1, + "if": 91, + "saved": 1, + "(": 481, + "page": 1, + "langCodes.add": 1, + ".getAccount": 2, + "//Turkish": 1, + "activity.": 1, + "an": 4, + "id": 1, + "specifying": 1, + "output.": 1, + "//underscore": 1, + "reference": 1, + "must": 1, + "twilioCfg.AccountSid__c": 3, + "client": 2, + "split": 5, + "//the": 2, + "adr": 9, + "mail.setToAddresses": 1, + "DEFAULTS": 1, + "string": 7, + "getLangCodeByBrowser": 4, + "since": 1, + "authToken": 2, + "anArray": 14, + "Messaging.EmailFileAttachment": 2, + "lowerCase": 1, + "catch": 1, + "//Returns": 1, + "//Danish": 1, + "Integer": 34, + "also": 1, + "PrimitiveComparator": 2, + "pr.getContent": 1, + "recipients.size": 1, + "GeoUtils.generateFromContent": 1, + "TwilioAPI.getTwilioConfig": 2, + "str": 10, + "languageCode": 2, + "array1": 8, + "form": 1, + "//Italian": 1, + "//FOR": 2, + "sortAsc": 24, + "quote": 1, + "//Russian": 1, + "obj": 3, + "TwilioAPI": 2, + ".getParameters": 2, + "languageFromBrowser": 6, + "global": 70, + "adr.replaceAll": 4, + "system.assertEquals": 1, + "token.substring": 1, + "attachmentIDs": 2, + "acct.billingstreet": 1, + "other": 2, + "mail.setSaveAsActivity": 1, + "toStringYN": 1, + "sObjects": 1, + "": 3, + "str.split": 1, + "etc.": 1, + "theList.size": 2, + "Messaging.SingleEmailMessage": 3, + "returnList.add": 8, + "class": 7, + "use": 1, + "boolean": 1, + "actual": 16, + "toBooleanDefaultIfNull": 1, + "DEFAULTS.get": 3, + "System.assertEquals": 5, + ".getHeaders": 1, + "getLangCodeByHttpParamOrIfNullThenBrowser": 1, + "we": 1, + "sendHTMLEmail": 1, + "mergex": 2, + "//Finnish": 1, + "falseString": 2, + "Traditional": 1, + "DEFAULTS.containsKey": 3, + "//Chinese": 2, + "isFalse": 1, + "System.assert": 6, + "pivot": 14, + "": 2, + "try": 1, + "objectToString": 1, + "param": 2, + "int": 1, + "bool": 32, + "//LIST/ARRAY": 1, + "to": 4, + "TwilioAPI.getDefaultAccount": 1, + "many": 1, + "BooleanUtils": 1, + "count": 10, + "lo": 42, + "StringUtils.replaceChars": 2, + ".AccountSid__c": 1, + "StringUtils.split": 1, + "prs": 8, + "new": 60, + "escape": 1, + "returnList": 11, + "SUPPORTED_LANGUAGE_CODES.contains": 2, + "twilioCfg": 7, + "pr": 1, + "strToBoolean": 1, + "j": 10, + "getDefaultAccount": 1, + "produces": 1, + "list1": 15, + "object": 1, + "reverse": 2, + "translatedLanguageNames": 1, + "TwilioCapability": 2, + "": 2, + "acct.billingcity": 1, + "mail.setFileAttachments": 1, + "StringUtils.isNotBlank": 1, + "true": 12, + "subset": 6, + "IllegalArgumentException": 5, + "accountSid": 2, + "fileAttachment": 2, + "ObjectComparator": 3, + "testmethod": 1, + "ret.replaceAll": 4, + ";": 308, + "StringUtils.equalsIgnoreCase": 1, + "//Thai": 1, + "acct.billingpostalcode": 2, + "TwilioAPI.client": 2, + "billingcity": 1, + "expected.size": 4, + "billingstate": 1, + "throw": 6, + "public": 10, + "billingstreet": 1, + "elmt": 8, + "the": 4, + "//Czech": 1, + "values.": 1, + "StringUtils.lowerCase": 3, + "trueString": 2, + "given": 2, + "objectArray.size": 6, + "upperCase": 1, + "//Spanish": 1, + "is": 5, + "TwilioConfig__c.getOrgDefaults": 1, + "strings.add": 1, + "SALESFORCE": 1, + "getTwilioConfig": 3, + "list1.get": 2, + "strs.size": 3, + "TwilioAPI.getDefaultClient": 2, + "false": 13, + "EmailUtils": 1, + "null": 92, + "mail.setSubject": 1, + "Test.setCurrentPage": 1 + }, + "Standard ML": { + "then": 1, + "true": 1, + "ignore": 1, + "open": 1, + "delay": 3, + "type": 2, + "fun": 9, + "inject": 3, + "sig": 2, + "LazyFn": 2, + "undefined": 1, + "string": 1, + "y": 6, + "p": 4, + ";": 1, + "x": 15, + "B": 1, + "|": 1, + "f": 9, + "LazyBase": 2, + "b": 2, + "order": 2, + "compare": 2, + "*": 1, + "(": 22, + ")": 23, + "-": 13, + "a": 18, + "let": 1, + "LazyMemoBase": 2, + "force": 9, + "Undefined": 3, + "lazy": 12, + "Lazy": 1, + "if": 1, + "false": 1, + "LAZY_BASE": 3, + "unit": 1, + "Done": 1, + "fn": 3, + "exception": 1, + "toString": 2, + "LAZY": 1, + "signature": 2, + "handle": 1, + "datatype": 1, + "map": 2, + "bool": 4, + "isUndefined": 2, + "raise": 1, + "Ops": 2, + "eqBy": 3, + "else": 1, + "struct": 4, + "structure": 6, + "LazyMemo": 1, + "op": 1, + "of": 1, + "eq": 2, + "val": 12, + "end": 6 + }, + "Parrot Internal Representation": { + "main": 1, + ".sub": 1, + ".end": 1, + "say": 1, + "SHEBANG#!parrot": 1 }, "Less": { - "@blue": 4, - "#3bbfce": 1, - ";": 7, - "@margin": 3, - "px": 1, - ".content": 1, - "-": 3, - "navigation": 1, - "{": 2, - "border": 2, - "color": 3, "darken": 1, - "(": 1, - "%": 1, - ")": 1, - "}": 2, - ".border": 1, + "navigation": 1, + "@blue": 4, + ".content": 1, + "/": 2, "padding": 1, - "/": 2, - "margin": 1 - }, - "Literate CoffeeScript": { - "The": 2, - "**Scope**": 2, - "class": 2, - "regulates": 1, - "lexical": 1, - "scoping": 1, - "within": 2, - "CoffeeScript.": 1, - "As": 1, - "you": 2, - "generate": 1, - "code": 1, - "create": 1, - "a": 8, - "tree": 1, - "of": 4, - "scopes": 1, - "in": 2, - "the": 12, - "same": 1, - "shape": 1, - "as": 3, - "nested": 1, - "function": 2, - "bodies.": 1, - "Each": 1, - "scope": 2, - "knows": 1, - "about": 1, - "variables": 3, - "declared": 2, - "it": 4, - "and": 5, - "has": 1, - "reference": 3, - "to": 8, - "its": 3, - "parent": 2, - "enclosing": 1, - "scope.": 2, - "In": 1, - "this": 3, - "way": 1, - "we": 4, - "know": 1, - "which": 3, - "are": 3, - "new": 2, - "need": 2, - "be": 2, - "with": 3, - "var": 4, - "shared": 1, - "external": 1, - "scopes.": 1, - "Import": 1, - "helpers": 1, - "plan": 1, - "use.": 1, - "{": 4, - "extend": 1, - "last": 1, - "}": 4, - "require": 1, - "exports.Scope": 1, - "Scope": 1, - "root": 1, - "is": 3, - "top": 2, - "-": 5, - "level": 1, - "object": 1, - "for": 3, - "given": 1, - "file.": 1, - "@root": 1, - "null": 1, - "Initialize": 1, - "lookups": 1, - "up": 1, - "chain": 1, - "well": 1, - "**Block**": 1, - "node": 1, - "belongs": 2, - "where": 1, - "should": 1, - "declare": 1, - "that": 2, - "to.": 1, - "constructor": 1, - "(": 5, - "@parent": 2, - "@expressions": 1, - "@method": 1, - ")": 6, - "@variables": 3, - "[": 4, - "name": 8, - "type": 5, - "]": 4, - "@positions": 4, - "Scope.root": 1, - "unless": 1, - "Adds": 1, - "variable": 1, - "or": 1, - "overrides": 1, - "an": 1, - "existing": 1, - "one.": 1, - "add": 1, - "immediate": 3, - "return": 1, - "@parent.add": 1, - "if": 2, - "@shared": 1, - "not": 1, - "Object": 1, - "hasOwnProperty.call": 1, - ".type": 1, - "else": 2, - "@variables.push": 1, - "When": 1, - "super": 1, - "called": 1, - "find": 1, - "current": 1, - "method": 1, - "param": 1, - "_": 3, - "then": 1, - "tempVars": 1, - "realVars": 1, - ".push": 1, - "v.name": 1, - "realVars.sort": 1, - ".concat": 1, - "tempVars.sort": 1, - "Return": 1, - "list": 1, - "assignments": 1, - "supposed": 1, - "made": 1, - "at": 1, - "assignedVariables": 1, - "v": 1, - "when": 1, - "v.type.assigned": 1 - }, - "LiveScript": { - "a": 8, - "-": 25, - "const": 1, - "b": 3, - "var": 1, - "c": 3, - "d": 3, - "_000_000km": 1, - "*": 1, - "ms": 1, - "e": 2, - "(": 9, - ")": 10, - "dashes": 1, - "identifiers": 1, - "underscores_i": 1, - "/regexp1/": 1, - "and": 3, - "//regexp2//g": 1, - "strings": 1, - "[": 2, - "til": 1, - "]": 2, - "or": 2, - "to": 2, - "|": 3, - "map": 1, - "filter": 1, - "fold": 1, - "+": 1, - "class": 1, - "Class": 1, - "extends": 1, - "Anc": 1, - "est": 1, - "args": 1, - "copy": 1, - "from": 1, - "callback": 4, - "error": 6, - "data": 2, - "<": 1, - "read": 1, - "file": 2, - "return": 2, - "if": 2, - "<~>": 1, - "write": 1 - }, - "Logos": { - "%": 15, - "hook": 2, - "ABC": 2, - "-": 3, - "(": 8, - "id": 2, - ")": 8, - "a": 1, - "B": 1, - "b": 1, - "{": 4, - "log": 1, - ";": 8, - "return": 2, - "orig": 2, - "nil": 2, - "}": 4, - "end": 4, - "subclass": 1, - "DEF": 1, - "NSObject": 1, - "init": 3, - "[": 2, - "c": 1, - "RuntimeAccessibleClass": 1, - "alloc": 1, - "]": 2, - "group": 1, - "OptionalHooks": 2, - "void": 1, - "release": 1, - "self": 1, - "retain": 1, - "ctor": 1, - "if": 1, - "OptionalCondition": 1 - }, - "Logtalk": { - "-": 3, - "object": 2, - "(": 4, - "hello_world": 1, - ")": 4, - ".": 2, - "%": 2, - "the": 2, - "initialization/1": 1, - "directive": 1, - "argument": 1, - "is": 2, - "automatically": 1, - "executed": 1, - "when": 1, - "loaded": 1, - "into": 1, - "memory": 1, - "initialization": 1, - "nl": 2, - "write": 1, - "end_object.": 1 - }, - "Lua": { - "-": 60, - "A": 1, - "simple": 1, - "counting": 1, - "object": 1, - "that": 1, - "increments": 1, - "an": 1, - "internal": 1, - "counter": 1, - "whenever": 1, - "it": 2, - "receives": 2, - "a": 5, - "bang": 3, - "at": 2, - "its": 2, - "first": 1, - "inlet": 2, - "or": 2, - "changes": 1, - "to": 8, - "whatever": 1, - "number": 3, - "second": 1, - "inlet.": 1, - "local": 11, - "HelloCounter": 4, - "pd.Class": 3, - "new": 3, - "(": 56, - ")": 56, - "register": 3, - "function": 16, - "initialize": 3, - "sel": 3, - "atoms": 3, - "self.inlets": 3, - "self.outlets": 3, - "self.num": 5, - "return": 3, - "true": 3, - "end": 26, - "in_1_bang": 2, - "self": 10, - "outlet": 10, - "{": 16, - "}": 16, - "+": 3, - "in_2_float": 2, - "f": 12, - "FileListParser": 5, - "Base": 1, - "filename": 2, - "File": 2, - "extension": 2, - "Number": 4, - "of": 9, - "files": 1, - "in": 7, - "batch": 2, - "To": 3, - "[": 17, - "list": 1, - "trim": 1, - "]": 17, - "binfile": 3, - "vidya": 1, - "file": 8, - "modder": 1, - "s": 5, - "mechanisms": 1, - "self.extension": 3, - "the": 7, - "last": 1, - "self.batchlimit": 3, - "in_1_symbol": 1, - "for": 9, - "i": 10, - "do": 8, - "..": 7, - "in_2_list": 1, - "d": 9, - "in_3_float": 1, - "FileModder": 10, - "Object": 1, - "triggering": 1, - "Incoming": 1, - "single": 1, - "data": 2, - "bytes": 3, - "from": 3, - "Total": 1, - "route": 1, - "buflength": 1, - "Glitch": 3, - "type": 2, - "point": 2, - "times": 2, - "glitch": 2, - "Toggle": 1, - "randomized": 1, - "glitches": 3, - "within": 2, - "bounds": 2, - "Active": 1, - "get": 1, - "next": 1, - "byte": 2, - "clear": 2, - "buffer": 2, - "FLOAT": 1, - "write": 3, - "Currently": 1, - "active": 2, - "namedata": 1, - "self.filedata": 4, - "pattern": 1, - "random": 3, - "splice": 1, - "self.glitchtype": 5, - "Minimum": 1, - "image": 1, - "self.glitchpoint": 6, - "repeat": 1, - "on": 1, - "given": 1, - "self.randrepeat": 5, - "Toggles": 1, - "whether": 1, - "repeating": 1, - "should": 1, - "be": 1, - "self.randtoggle": 3, - "Hold": 1, - "all": 1, - "which": 1, - "are": 1, - "converted": 1, - "ints": 1, - "range": 1, - "self.bytebuffer": 8, - "Buffer": 1, - "length": 1, - "currently": 1, - "self.buflength": 7, - "if": 2, - "then": 4, - "plen": 2, - "math.random": 8, - "patbuffer": 3, - "table.insert": 4, + "}": 2, + ")": 1, "%": 1, - "#patbuffer": 1, - "elseif": 2, - "randlimit": 4, - "else": 1, - "sloc": 3, - "schunksize": 2, - "splicebuffer": 3, - "table.remove": 1, - "insertpoint": 2, - "#self.bytebuffer": 1, - "_": 2, - "v": 4, - "ipairs": 2, - "outname": 3, - "pd.post": 1, - "in_3_list": 1, - "Shift": 1, - "indexed": 2, - "in_4_list": 1, - "in_5_float": 1, - "in_6_float": 1, - "in_7_list": 1, - "in_8_list": 1 + "(": 1, + "{": 2, + "-": 3, + "@margin": 3, + ";": 7, + "#3bbfce": 1, + "px": 1, + "color": 3, + "margin": 1, + ".border": 1, + "border": 2 }, - "M": { - "%": 203, - "zewdAPI": 52, - ";": 1275, - "Enterprise": 5, - "Web": 5, - "Developer": 5, - "run": 2, - "-": 1604, - "time": 9, - "functions": 4, - "and": 56, - "user": 27, - "APIs": 1, - "Product": 2, - "(": 2142, - "Build": 6, - ")": 2150, - "Date": 2, - "Fri": 1, - "Nov": 1, - "|": 170, - "for": 77, - "GT.M": 30, - "m_apache": 3, - "Copyright": 12, - "c": 113, - "M/Gateway": 4, - "Developments": 4, - "Ltd": 4, - "Reigate": 4, - "Surrey": 4, - "UK.": 4, - "All": 4, - "rights": 4, - "reserved.": 4, - "http": 13, - "//www.mgateway.com": 4, - "Email": 4, - "rtweed@mgateway.com": 4, - "This": 26, - "program": 19, - "is": 81, - "free": 15, - "software": 12, - "you": 16, - "can": 15, - "redistribute": 11, - "it": 44, - "and/or": 11, - "modify": 11, - "under": 14, - "the": 217, - "terms": 11, - "of": 80, - "GNU": 33, - "Affero": 33, - "General": 33, - "Public": 33, - "License": 48, - "as": 22, - "published": 11, - "by": 33, - "Free": 11, - "Software": 11, - "Foundation": 11, - "either": 13, - "version": 16, - "or": 46, - "at": 21, - "your": 16, - "option": 12, - "any": 15, - "later": 11, - "version.": 11, - "distributed": 13, - "in": 78, - "hope": 11, - "that": 17, - "will": 23, - "be": 32, - "useful": 11, - "but": 17, - "WITHOUT": 12, - "ANY": 12, - "WARRANTY": 11, - "without": 11, - "even": 11, - "implied": 11, - "warranty": 11, - "MERCHANTABILITY": 11, - "FITNESS": 11, - "FOR": 15, - "A": 12, - "PARTICULAR": 11, - "PURPOSE.": 11, - "See": 15, - "more": 13, - "details.": 12, - "You": 13, - "should": 16, - "have": 17, - "received": 11, - "a": 112, - "copy": 13, - "along": 11, - "with": 43, - "this": 38, - "program.": 9, - "If": 14, - "not": 37, - "see": 25, - "": 11, - ".": 814, - "QUIT": 249, - "_": 126, - "getVersion": 1, - "zewdCompiler": 6, - "date": 1, - "getDate": 1, - "compilePage": 2, - "app": 13, - "page": 12, - "mode": 12, - "technology": 9, - "outputPath": 4, - "multilingual": 4, - "maxLines": 4, - "d": 381, - "g": 228, - "compileAll": 2, - "templatePageName": 2, - "autoTranslate": 2, - "language": 6, - "verbose": 2, - "zewdMgr": 1, - "startSession": 2, - "requestArray": 2, - "serverArray": 1, - "sessionArray": 5, - "filesArray": 1, - "zewdPHP": 8, - ".requestArray": 2, - ".serverArray": 1, - ".sessionArray": 3, - ".filesArray": 1, - "closeSession": 2, - "saveSession": 2, - "endOfPage": 2, - "prePageScript": 2, - "sessid": 146, - "releaseLock": 2, - "tokeniseURL": 2, - "url": 2, - "zewdCompiler16": 5, - "getSessid": 1, - "token": 21, - "i": 465, - "isTokenExpired": 2, - "p": 84, - "zewdSession": 39, - "initialiseSession": 1, - "k": 122, - "deleteSession": 2, - "changeApp": 1, - "appName": 4, - "setSessionValue": 6, - "setRedirect": 1, - "toPage": 1, - "e": 210, - "n": 197, - "path": 4, - "s": 775, - "getRootURL": 1, - "l": 84, - "zewd": 17, - "trace": 24, - "_sessid_": 3, - "_token_": 1, - "_nextPage": 1, - "zcvt": 11, - "nextPage": 1, - "isNextPageTokenValid": 2, - "zewdCompiler13": 10, - "isCSP": 1, - "normaliseTextValue": 1, - "text": 6, - "replaceAll": 11, - "writeLine": 2, - "line": 9, - "CacheTempBuffer": 2, - "j": 67, - "increment": 11, - "w": 127, - "displayOptions": 2, - "fieldName": 5, - "listName": 6, - "escape": 7, - "codeValue": 7, - "name": 121, - "nnvp": 1, - "nvp": 1, - "pos": 33, - "textValue": 6, - "value": 72, - "getSessionValue": 3, - "tr": 13, - "+": 188, - "f": 93, - "o": 51, - "q": 244, - "codeValueEsc": 7, - "textValueEsc": 7, - "htmlOutputEncode": 2, - "zewdAPI2": 5, - "_codeValueEsc_": 1, - "selected": 4, - "translationMode": 1, - "_appName": 1, - "typex": 1, - "type": 2, - "avoid": 1, - "Cache": 3, - "bug": 1, - "getPhraseIndex": 1, - "zewdCompiler5": 1, - "licensed": 1, - "setWarning": 2, - "isTemp": 11, - "setWLDSymbol": 1, - "Duplicate": 1, - "performance": 1, - "also": 4, - "wldAppName": 1, - "wldName": 1, - "wldSessid": 1, - "zzname": 1, - "zv": 6, - "[": 53, - "extcErr": 1, - "mess": 3, - "namespace": 1, - "zt": 20, - "valueErr": 1, - "exportCustomTags": 2, - "tagList": 1, - "filepath": 10, - ".tagList": 1, - "exportAllCustomTags": 2, - "importCustomTags": 2, - "filePath": 2, - "zewdForm": 1, - "stripSpaces": 6, - "np": 17, - "obj": 6, - "prop": 6, - "setSessionObject": 3, - "allowJSONAccess": 1, - "sessionName": 30, - "access": 21, - "disallowJSONAccess": 1, - "JSONAccess": 1, - "existsInSession": 2, - "existsInSessionArray": 2, - "p1": 5, - "p2": 10, - "p3": 3, - "p4": 2, - "p5": 2, - "p6": 2, - "p7": 2, - "p8": 2, - "p9": 2, - "p10": 2, - "p11": 2, - "clearSessionArray": 1, - "arrayName": 35, - "setSessionArray": 1, - "itemName": 16, - "itemValue": 7, - "getSessionArray": 1, - "array": 22, - "clearArray": 2, - "set": 98, - "m": 37, - "getSessionArrayErr": 1, - "Come": 1, - "here": 4, - "if": 44, - "error": 62, - "occurred": 2, - "addToSession": 2, - "@name": 4, - "mergeToSession": 1, - "mergeGlobalToSession": 2, - "globalName": 7, - "mergeGlobalFromSession": 2, - "mergeArrayToSession": 1, - "mergeArrayToSessionObject": 2, - ".array": 1, - "mergeArrayFromSession": 1, - "mergeFromSession": 1, - "deleteFromSession": 1, - "deleteFromSessionObject": 1, - "sessionNameExists": 1, - "getSessionArrayValue": 2, - "subscript": 7, - "exists": 6, - ".exists": 1, - "sessionArrayValueExists": 2, - "deleteSessionArrayValue": 2, - "Objects": 1, - "objectName": 13, - "propertyName": 3, - "propertyValue": 5, - "comma": 3, - "x": 96, - "replace": 27, - "objectName_": 2, - "_propertyName": 2, - "_propertyName_": 2, - "_propertyValue_": 1, - "_p": 1, - "quoted": 1, - "string": 50, - "FromStr": 6, - "S": 99, - "ToStr": 4, - "InText": 4, - "old": 3, - "new": 15, - "ok": 14, - "removeDocument": 1, - "zewdDOM": 3, - "instanceName": 2, - "clearXMLIndex": 1, - "zewdSchemaForm": 1, - "closeDOM": 1, - "makeTokenString": 1, - "length": 7, - "token_": 1, - "r": 88, - "makeString": 3, - "char": 9, - "len": 8, - "create": 6, - "characters": 4, - "str": 15, - "convertDateToSeconds": 1, - "hdate": 7, - "Q": 58, - "hdate*86400": 1, - "convertSecondsToDate": 1, - "secs": 2, - "secs#86400": 1, - "getTokenExpiry": 2, - "h*86400": 1, - "h": 39, - "randChar": 1, - "R": 2, - "lowerCase": 2, - "stripLeadingSpaces": 2, - "stripTrailingSpaces": 2, - "d1": 7, - "zd": 1, - "yy": 19, - "dd": 4, - "I": 43, - "<10>": 1, - "dd=": 2, - "mm=": 3, - "1": 74, - "d1=": 1, - "2": 14, - "p1=": 1, - "mm": 7, - "p2=": 1, - "yy=": 1, - "3": 6, - "dd_": 1, - "mm_": 1, - "inetTime": 1, - "Decode": 1, - "Internet": 1, - "Format": 1, - "Time": 1, - "from": 16, - "H": 1, - "format": 2, - "Offset": 1, - "relative": 1, - "to": 73, - "GMT": 1, - "eg": 3, - "hh": 4, - "ss": 4, - "<": 19, - "_hh": 1, - "time#3600": 1, - "_mm": 1, - "time#60": 1, - "_ss": 2, - "hh_": 1, - "_mm_": 1, - "openNewFile": 2, - "openFile": 2, - "openDOM": 2, - "&": 27, - "#39": 1, - "<\",\"<\")>": 1, - "string=": 1, - "gt": 1, - "amp": 1, - "HTML": 1, - "quot": 2, - "stop": 20, - "no": 53, - "no2": 1, - "p1_c_p2": 1, - "getIP": 2, - "Get": 2, - "own": 2, - "IP": 1, - "address": 1, - "ajaxErrorRedirect": 2, - "classExport": 2, - "className": 2, - "methods": 2, - ".methods": 1, - "strx": 2, - "disableEwdMgr": 1, - "enableEwdMgr": 1, - "enableWLDAccess": 1, - "disableWLDAccess": 1, - "isSSOValid": 2, - "sso": 2, - "username": 8, - "password": 8, - "zewdMgrAjax2": 1, - "uniqueId": 1, - "nodeOID": 2, - "filename": 2, - "linkToParentSession": 2, - "zewdCompiler20": 1, - "exportToGTM": 1, - "routine": 4, - "zewdDemo": 1, - "Tutorial": 1, - "Wed": 1, - "Apr": 1, - "getLanguage": 1, - "getRequestValue": 1, - "login": 1, - "getTextValue": 4, - "getPasswordValue": 2, - "_username_": 1, - "_password": 1, - "logine": 1, - "message": 8, - "textid": 1, - "errorMessage": 1, - "ewdDemo": 8, - "clearList": 2, - "appendToList": 4, - "addUsername": 1, - "newUsername": 5, - "newUsername_": 1, - "setTextValue": 4, - "testValue": 1, - "pass": 24, - "getSelectValue": 3, - "_user": 1, - "getPassword": 1, - "setPassword": 1, - "getObjDetails": 1, - "data": 43, - "_user_": 1, - "_data": 2, - "setRadioOn": 2, - "initialiseCheckbox": 2, - "setCheckboxOn": 3, - "createLanguageList": 1, - "setMultipleSelectOn": 2, - "clearTextArea": 2, - "textarea": 2, - "createTextArea": 1, - ".textarea": 1, - "userType": 4, - "setMultipleSelectValues": 1, - ".selected": 1, - "testField3": 3, - ".value": 1, - "testField2": 1, - "field3": 1, - "must": 7, - "null": 6, - "dateTime": 1, - "start": 24, - "student": 14, - "zwrite": 1, - "write": 59, - "order": 11, - "do": 15, - "quit": 30, - "file": 10, - "part": 3, - "DataBallet.": 4, - "C": 9, - "Laurent": 2, - "Parenteau": 2, - "": 2, - "DataBallet": 4, - "encode": 1, - "Return": 1, - "base64": 6, - "URL": 2, - "Filename": 1, - "safe": 3, - "alphabet": 2, - "RFC": 1, - "todrop": 2, - "Populate": 1, - "values": 4, - "on": 15, - "first": 10, - "use": 5, - "only.": 1, - "zextract": 3, - "zlength": 3, - "Digest": 2, - "Extension": 9, - "Piotr": 7, - "Koper": 7, - "": 7, - "trademark": 2, - "Fidelity": 2, - "Information": 2, - "Services": 2, - "Inc.": 2, - "//sourceforge.net/projects/fis": 2, - "gtm/": 2, - "simple": 2, - "OpenSSL": 3, - "based": 1, - "digest": 19, - "extension": 3, - "rewrite": 1, - "EVP_DigestInit": 1, - "usage": 3, - "example": 5, - "additional": 5, - "M": 24, - "wrapper.": 1, - "//www.openssl.org/docs/crypto/EVP_DigestInit.html": 1, - "The": 11, - "return": 7, - "digest.init": 3, - "usually": 1, - "when": 11, - "an": 11, - "invalid": 4, - "algorithm": 1, - "was": 5, - "specification.": 1, - "Anyway": 1, - "properly": 1, - "used": 6, - "never": 4, - "fail.": 1, - "Please": 2, - "feel": 2, - "contact": 2, - "me": 2, - "questions": 2, - "comments": 4, - "returns": 7, - "ASCII": 1, - "HEX": 1, - "all": 8, - "one": 5, - "digest.update": 2, - ".c": 2, - ".m": 11, - "digest.final": 2, - ".d": 1, - "init": 6, - "alg": 3, - "context": 1, - "handler": 9, - "try": 1, - "etc": 1, - "returned": 1, - "occurs": 1, - "e.g.": 2, - "unknown": 1, - "update": 1, - "ctx": 4, - "msg": 6, - "updates": 1, - ".ctx": 2, - ".msg": 1, - "final": 1, - "hex": 1, - "encoded": 8, - "frees": 1, - "memory": 1, - "allocated": 1, - ".digest": 1, - "algorithms": 1, - "availability": 1, - "depends": 1, - "libcrypto": 1, - "configuration": 1, - "md4": 1, - "md5": 2, - "sha": 1, - "sha1": 1, - "sha224": 1, - "sha256": 1, - "sha512": 1, - "dss1": 1, - "ripemd160": 1, - "These": 2, - "two": 2, - "routines": 6, - "illustrate": 1, - "dynamic": 1, - "scope": 1, - "variables": 2, - "triangle1": 1, - "sum": 15, - "main2": 1, - "y": 33, - "triangle2": 1, - "compute": 2, - "Fibonacci": 1, - "series": 1, - "b": 64, - "term": 10, - "start1": 2, - "entry": 5, - "label": 4, - "start2": 1, - "function": 6, - "computes": 1, - "factorial": 3, - "f*n": 1, - "main": 1, - "GMRGPNB0": 1, - "CISC/JH/RM": 1, - "NARRATIVE": 1, - "BUILDER": 1, - "TEXT": 5, - "GENERATOR": 1, - "cont.": 1, - "/20/91": 1, - "Text": 1, - "Generator": 1, - "Jan": 1, - "ENTRY": 2, - "WITH": 1, - "GMRGA": 1, - "SET": 3, - "TO": 6, - "POINT": 1, - "AT": 1, - "WHICH": 1, - "WANT": 1, - "START": 1, - "BUILDING": 1, - "GMRGE0": 11, - "GMRGADD": 4, - "D": 64, - "GMR": 6, - "GMRGA0": 11, - "GMRGPDA": 9, - "GMRGCSW": 2, - "NOW": 1, - "DTC": 1, - "GMRGB0": 9, - "O": 24, - "GMRGST": 6, - "GMRGPDT": 2, - "STAT": 8, - "GMRGRUT0": 3, - "GMRGF0": 3, - "GMRGSTAT": 8, - "P": 68, - "_GMRGB0_": 2, - "GMRD": 6, - "GMRGSSW": 3, - "SNT": 1, - "GMRGPNB1": 1, - "GMRGNAR": 8, - "GMRGPAR_": 2, - "_GMRGSPC_": 3, - "_GMRGRM": 2, - "_GMRGE0": 1, - "STORETXT": 1, - "GMRGRUT1": 1, - "GMRGSPC": 3, - "F": 10, - "GMRGD0": 7, - "ALIST": 1, - "G": 40, - "TMP": 26, - "J": 38, - "GMRGPLVL": 6, - "GMRGA0_": 1, - "_GMRGD0_": 1, - "_GMRGSSW_": 1, - "_GMRGADD": 1, - "GMRGI0": 6, - "label1": 1, - "if1": 2, - "statement": 3, - "if2": 2, - "statements": 1, - "contrasted": 1, - "": 3, - "variable": 8, - "a=": 3, - "smaller": 3, - "than": 4, - "b=": 4, - "if3": 1, - "else": 7, - "clause": 2, - "if4": 1, - "bodies": 1, - "exercise": 1, - "car": 14, - "@": 8, - "MD5": 6, - "Implementation": 1, - "It": 2, - "works": 1, - "ZCHSET": 2, - "please": 1, - "don": 1, - "only": 9, - "joke.": 1, - "Serves": 1, - "well": 2, - "reverse": 1, - "engineering": 1, - "obtaining": 1, - "boolean": 2, - "integer": 1, - "addition": 1, - "modulo": 1, - "division.": 1, - "//en.wikipedia.org/wiki/MD5": 1, - "t": 11, - "#64": 1, - "msg_": 1, - "_m_": 1, - "n64": 2, - "*8": 2, - "read": 2, - ".p": 1, - "..": 28, - "...": 6, - "*i": 3, - "#16": 3, - "xor": 4, - "rotate": 5, - "#4294967296": 6, - "n32h": 5, - "bit": 5, - "#2": 1, - "*2147483648": 2, - "a#2": 1, - "b#2": 1, - ".a": 1, - ".b": 1, - "rol": 1, - "a*": 1, - "**n": 1, - "c#4294967296": 1, - "*n": 1, - "n#256": 1, - "n#16": 2, - "MDB": 60, - "M/DB": 2, - "Mumps": 1, - "Emulation": 1, - "Amazon": 1, - "SimpleDB": 1, - "buildDate": 1, - "indexLength": 10, - "Note": 2, - "keyId": 108, - "been": 4, - "tested": 1, - "valid": 1, - "these": 1, - "are": 11, - "called": 8, - "To": 2, - "Initialise": 2, - "service": 1, - "//192.168.1.xxx/mdb/test.mgwsi": 1, - "Action": 2, - "addUser": 2, - "userKeyId": 6, - "userSecretKey": 6, - "requestId": 17, - "boxUsage": 11, - "startTime": 21, - ".startTime": 5, - "MDBUAF": 2, - "end": 33, - ".boxUsage": 22, - "createDomain": 1, - "domainName": 38, - "dn": 4, - "dnx": 3, - "id": 33, - "noOfDomains": 12, - "MDBConfig": 1, - "getDomainId": 3, - "found": 7, - "namex": 8, - "buildItemNameIndex": 2, - "domainId": 53, - "itemId": 41, - "itemValuex": 3, - "countDomains": 2, - "key": 22, - "deleteDomain": 2, - "listDomains": 1, - "maxNoOfDomains": 2, - "nextToken": 7, - "domainList": 3, - "fullName": 3, - "decodeBase64": 1, - "encodeBase64": 1, - "itemExists": 1, - "getItemId": 2, - "getAttributeValueId": 3, - "attribId": 36, - "valuex": 13, - "putAttributes": 2, - "attributes": 32, - "valueId": 16, - "xvalue": 4, - "add": 5, - "Item": 1, - "Domain": 1, - "itemNamex": 4, - "parseJSON": 1, - "zmwire": 53, - "attributesJSON": 1, - ".attributes": 5, - "attribute": 14, - "getAttributeId": 2, - "domain": 1, - "Not": 1, - "allowed": 17, - "same": 2, - "remove": 6, - "existing": 2, - "now": 1, - "name/value": 2, - "pair": 1, - "getAttributes": 2, - "suppressBoxUsage": 1, - "attrNo": 9, - "valueNo": 6, - "delete": 2, - "item": 2, - "associated": 1, - "queryIndex": 1, - "records": 2, - "specified": 4, - "pairs": 2, - "vno": 2, - "left": 5, - "completely": 3, - "references": 1, - "maxNoOfItems": 3, - "itemList": 12, - "session": 1, - "identifier": 1, - "stored": 1, - "queryExpression": 16, - "relink": 1, - "zewdGTMRuntime": 1, - "CGIEVAR": 1, - "cgi": 1, - "unescName": 5, - "urlDecode": 2, - "KEY": 36, - "response": 29, - "WebLink": 1, - "point": 2, - "action": 15, - "AWSAcessKeyId": 1, - "db": 9, - "hash": 1, - "itemsAndAttrs": 2, - "secretKey": 1, - "signatureMethod": 2, - "signatureVersion": 3, - "stringToSign": 2, - "rltKey": 2, - "_action_": 2, - "h_": 3, - "mdbKey": 2, - "errorResponse": 9, - "initialise": 3, - ".requestId": 7, - "createResponse": 4, - "installMDBM": 1, - "authenticate": 1, - "MDBSession": 1, - "createResponseStringToSign": 1, - "Security": 1, - "OK": 6, - "_db": 1, - "MDBAPI": 1, - "lineNo": 19, - "CacheTempEWD": 16, - "_db_": 1, - "db_": 1, - "_action": 1, - "resp": 5, - "metaData": 1, - "domainMetadata": 1, - ".metaData": 1, - "paramName": 8, - "paramValue": 5, - "_i_": 5, - "Query": 1, - "DomainName": 2, - "QueryExpression": 2, - "MaxNumberOfItems": 2, - "NextToken": 3, - "QueryWithAttributes": 1, - "AttributeName.": 2, - "Select": 2, - "SelectExpression": 1, - "entering": 1, - "runSelect.": 1, - "selectExpression": 3, - "finished": 1, - "runSelect": 3, - "count": 18, - "select": 3, - "*": 5, - "where": 6, - "limit": 14, - "asc": 1, - "inValue": 6, - "expr": 18, - "rel": 2, - "itemStack": 3, - "between": 2, - "<=\">": 1, - "lastWord=": 7, - "inAttr=": 5, - "expr=": 10, - "thisWord=": 7, - "inAttr": 2, - "c=": 28, - "queryExpression=": 4, - "_queryExpression": 2, - "4": 5, - "isNull": 1, - "5": 1, - "8": 1, - "isNotNull": 1, - "9": 1, - "offset": 6, - "prevName": 1, - "np=": 1, - "diffNames": 6, - "_term": 3, - "expr_": 1, - "_orderBy": 1, - "runQuery": 2, - ".itemList": 4, - "escVals": 1, - "str_c": 2, - "_x_": 1, - "query": 4, - "orderBy": 1, - "_query": 1, - "parseSelect": 1, - ".domainName": 2, - ".queryExpression": 1, - ".orderBy": 1, - ".limit": 1, - "executeSelect": 1, - ".itemStack": 1, - "***": 2, - "listCopy": 3, - "numeric": 6, - "N.N": 12, - "N.N1": 4, - "externalSelect": 2, - "json": 9, - "_keyId_": 1, - "_selectExpression": 1, - "spaces": 3, - "string_spaces": 1, - "test": 6, - "miles": 4, - "gallons": 4, - "miles/gallons": 1, - "computepesimist": 1, - "miles/": 1, - "computeoptimist": 1, - "/gallons": 1, - "Mumtris": 3, - "tetris": 1, - "game": 1, - "MUMPS": 1, - "fun.": 1, - "Resize": 1, - "terminal": 2, - "maximize": 1, - "PuTTY": 1, - "window": 1, - "restart": 3, - "so": 4, - "report": 1, - "true": 2, - "size": 3, - "mumtris.": 1, - "Try": 2, - "setting": 3, - "ansi": 2, - "compatible": 1, - "cursor": 1, - "positioning.": 1, - "NOTICE": 1, - "uses": 1, - "making": 1, - "delays": 1, - "lower": 1, - "s.": 1, - "That": 1, - "means": 2, - "CPU": 1, - "fall": 5, - "lock": 2, - "clear": 6, - "change": 6, - "preview": 3, - "over": 2, - "exit": 3, - "short": 1, - "circuit": 1, - "redraw": 3, - "timeout": 1, - "harddrop": 1, - "other": 1, - "ex": 5, - "hd": 3, - "*c": 1, - "<0&'d>": 1, - "i=": 14, - "st": 6, - "t10m": 1, - "0": 23, - "<0>": 2, - "q=": 6, - "d=": 1, - "zb": 2, - "right": 3, - "fl=": 1, - "gr=": 1, - "hl": 2, - "help": 2, - "drop": 2, - "hd=": 1, - "matrix": 2, - "stack": 8, - "draw": 3, - "ticks": 2, - "h=": 2, - "1000000000": 1, - "e=": 1, - "t10m=": 1, - "100": 2, - "n=": 1, - "ne=": 1, - "x=": 5, - "y=": 3, - "r=": 3, - "collision": 6, - "score": 5, - "k=": 1, - "j=": 4, - "<1))))>": 1, - "800": 1, - "200": 1, - "lv": 5, - "lc=": 1, - "10": 1, - "lc": 3, - "mt_": 2, - "cls": 6, - ".s": 5, - "dh/2": 6, - "dw/2": 6, - "*s": 4, - "u": 6, - "echo": 1, - "intro": 1, - "workaround": 1, - "ANSI": 1, - "driver": 1, - "NL": 1, - "some": 1, - "place": 9, - "clearscreen": 1, - "N": 19, - "h/2": 3, - "*w/2": 3, - "fill": 3, - "fl": 2, - "*x": 1, - "mx": 4, - "my": 5, - "step": 8, - "**lv*sb": 1, - "*lv": 1, - "sc": 3, - "ne": 2, - "gr": 1, - "w*3": 1, - "dev": 1, - "zsh": 1, - "dw": 1, - "dh": 1, - "elements": 3, - "elemId": 3, - "rotateVersions": 1, - "rotateVersion": 2, - "bottom": 1, - "coordinate": 1, - "____": 1, - "__": 2, - "||": 1, - "ax": 2, - "bx": 2, - "cx": 2, - "ay": 2, - "cy": 2, - "sumx": 3, - "sqrx": 3, - "sumxy": 5, - "x*x": 1, - "x*y": 1, - "PCRE": 23, - "tries": 1, - "deliver": 1, - "best": 2, - "possible": 5, - "interface": 1, - "world": 4, - "providing": 1, - "support": 3, - "arrays": 1, - "stringified": 2, - "parameter": 1, - "names": 3, - "simplified": 1, - "API": 7, - "locales": 2, - "exceptions": 1, - "Perl5": 1, - "Global": 8, - "Match.": 1, - "pcreexamples.m": 2, - "comprehensive": 1, - "examples": 4, - "pcre": 59, - "beginner": 1, - "level": 5, - "tips": 1, - "match": 41, - "limits": 6, - "exception": 12, - "handling": 2, - "UTF": 17, - "GT.M.": 1, - "out": 2, - "known": 2, - "book": 1, - "regular": 1, - "expressions": 1, - "//regex.info/": 1, - "For": 3, - "information": 1, - "//pcre.org/": 1, - "Initial": 2, - "release": 2, - "pkoper": 2, - "pcre.version": 1, - "config": 3, - "case": 7, - "insensitive": 7, - "protect": 11, - "erropt": 6, - "isstring": 5, - "code": 28, - "pcre.config": 1, - ".name": 1, - ".erropt": 3, - ".isstring": 1, - ".n": 20, - "ec": 10, - "compile": 14, - "pattern": 21, - "options": 45, - "locale": 24, - "mlimit": 20, - "reclimit": 19, - "optional": 16, - "joined": 3, - "Unix": 1, - "pcre_maketables": 2, - "cases": 1, - "undefined": 1, - "environment": 7, - "defined": 2, - "LANG": 4, - "LC_*": 1, - "output": 49, - "command": 9, - "Debian": 2, - "tip": 1, - "dpkg": 1, - "reconfigure": 1, - "enable": 1, - "system": 1, - "wide": 1, - "number": 5, - "internal": 3, - "matching": 4, - "calls": 1, - "pcre_exec": 4, - "execution": 2, - "manual": 2, - "details": 5, - "depth": 1, - "recursion": 1, - "calling": 2, - "ref": 41, - "err": 4, - "erroffset": 3, - "pcre.compile": 1, - ".pattern": 3, - ".ref": 13, - ".err": 1, - ".erroffset": 1, - "exec": 4, - "subject": 24, - "startoffset": 3, - "octets": 2, - "starts": 1, - "like": 4, - "chars": 3, - "pcre.exec": 2, - ".subject": 3, - "zl": 7, - "ec=": 7, - "ovector": 25, - "element": 1, - "code=": 4, - "ovecsize": 5, - "fullinfo": 3, - "OPTIONS": 2, - "SIZE": 1, - "CAPTURECOUNT": 1, - "BACKREFMAX": 1, - "FIRSTBYTE": 1, - "FIRSTTABLE": 1, - "LASTLITERAL": 1, - "NAMEENTRYSIZE": 1, - "NAMECOUNT": 1, - "STUDYSIZE": 1, - "OKPARTIAL": 1, - "JCHANGED": 1, - "HASCRORLF": 1, - "MINLENGTH": 1, - "JIT": 1, - "JITSIZE": 1, - "NAME": 3, - "nametable": 4, - "index": 1, - "indexed": 4, - "substring": 1, - "begin": 18, - "begin=": 3, - "end=": 4, - "contains": 2, - "octet": 4, - "UNICODE": 1, - "ze": 8, - "begin_": 1, - "_end": 1, - "store": 6, - "above": 2, - "stores": 1, - "captured": 6, - "key=": 2, - "gstore": 3, - "round": 12, - "byref": 5, - "global": 26, - "ref=": 3, - "l=": 2, - "capture": 10, - "indexes": 1, - "extended": 1, - "NAMED_ONLY": 2, - "named": 12, - "groups": 5, - "OVECTOR": 2, - "namedonly": 9, - "options=": 4, - "o=": 12, - "namedonly=": 2, - "ovector=": 2, - "NO_AUTO_CAPTURE": 2, - "_capture_": 2, - "matches": 10, - "s=": 4, - "_s_": 1, - "GROUPED": 1, - "group": 4, - "result": 3, - "patterns": 3, - "pcredemo": 1, - "pcreccp": 1, - "cc": 1, - "procedure": 2, - "Perl": 1, - "utf8": 2, - "crlf": 6, - "empty": 7, - "skip": 6, - "determine": 1, - "them": 1, - "before": 2, - "byref=": 2, - "check": 2, - "UTF8": 2, - "double": 1, - "utf8=": 1, - "crlf=": 3, - "NL_CRLF": 1, - "NL_ANY": 1, - "NL_ANYCRLF": 1, - "none": 1, - "build": 2, - "NEWLINE": 1, - ".start": 1, - "unwind": 1, - "call": 1, - "optimize": 1, - "leave": 1, - "advance": 1, - "LF": 1, - "CR": 1, - "CRLF": 1, - "middle": 1, - ".i": 2, - ".match": 2, - ".round": 2, - ".byref": 2, - ".ovector": 2, - "subst": 3, - "last": 4, - "occurrences": 1, - "matched": 1, - "back": 4, - "th": 3, - "{": 4, - "}": 4, - "replaced": 1, - "substitution": 2, - "begins": 1, - "substituted": 2, - "defaults": 3, - "ends": 1, - "backref": 1, - "boffset": 1, - "prepare": 1, - "reference": 2, - ".subst": 1, - ".backref": 1, - "silently": 1, - "zco": 1, - "": 1, - "s/": 6, - "b*": 7, - "/Xy/g": 6, - "print": 8, - "aa": 9, - "et": 4, - "direct": 3, - "take": 1, - "default": 6, - "setup": 3, - "trap": 10, - "source": 3, - "location": 5, - "argument": 1, - "@ref": 2, - "E": 12, - "COMPILE": 2, - "has": 6, - "meaning": 1, - "zs": 2, - "re": 2, - "raise": 3, - "XC": 1, - "specific": 3, - "U16384": 1, - "U16385": 1, - "U16386": 1, - "U16387": 1, - "U16388": 2, - "U16389": 1, - "U16390": 1, - "U16391": 1, - "U16392": 2, - "U16393": 1, - "NOTES": 1, - "U16401": 2, - "raised": 2, - "i.e.": 3, - "NOMATCH": 2, - "ever": 1, - "uncommon": 1, - "situation": 1, - "too": 1, - "small": 1, - "considering": 1, - "controlled": 1, - "U16402": 1, - "U16403": 1, - "U16404": 1, - "U16405": 1, - "U16406": 1, - "U16407": 1, - "U16408": 1, - "U16409": 1, - "U16410": 1, - "U16411": 1, - "U16412": 1, - "U16414": 1, - "U16415": 1, - "U16416": 1, - "U16417": 1, - "U16418": 1, - "U16419": 1, - "U16420": 1, - "U16421": 1, - "U16423": 1, - "U16424": 1, - "U16425": 1, - "U16426": 1, - "U16427": 1, - "Examples": 4, - "pcre.m": 1, - "parameters": 1, - "pcreexamples": 32, - "shining": 1, - "Test": 1, - "Simple": 2, - "zwr": 17, - "Match": 4, - "grouped": 2, - "Just": 1, - "Change": 2, - "word": 3, - "Escape": 1, - "sequence": 1, - "More": 1, - "Low": 1, - "api": 1, - "Setup": 1, - "myexception2": 2, - "st_": 1, - "zl_": 2, - "Compile": 2, - ".options": 1, - "Run": 1, - ".offset": 1, - "used.": 2, - "always": 1, - "strings": 1, - "submitted": 1, - "exact": 1, - "usable": 1, - "integers": 1, - "way": 1, - "i*2": 3, - "what": 2, - "while": 3, - "/": 2, - "/mg": 2, - "aaa": 1, - "nbb": 1, - ".*": 1, - "discover": 1, - "stackusage": 3, - "Locale": 5, - "Support": 1, - "Polish": 1, - "I18N": 2, - "PCRE.": 1, - "Polish.": 1, - "second": 1, - "letter": 1, - "": 1, - "which": 4, - "ISO8859": 1, - "//en.wikipedia.org/wiki/Polish_code_pages": 1, - "complete": 1, - "listing": 1, - "CHAR": 1, - "different": 3, - "character": 2, - "modes": 1, - "In": 1, - "probably": 1, - "expected": 1, - "working": 1, - "single": 2, - "ISO": 3, - "chars.": 1, - "Use": 1, - "zch": 7, - "prepared": 1, - "GTM": 8, - "BADCHAR": 1, - "errors.": 1, - "Also": 1, - "others": 1, - "might": 1, - "expected.": 1, - "POSIX": 1, - "localization": 1, - "nolocale": 2, - "zchset": 2, - "isolocale": 2, - "utflocale": 2, - "LC_CTYPE": 1, - "Set": 2, - "obtain": 2, - "results.": 1, - "envlocale": 2, - "ztrnlnm": 2, - "Notes": 1, - "Enabling": 1, - "native": 1, - "requires": 1, - "libicu": 2, - "gtm_chset": 1, - "gtm_icu_version": 1, - "recompiled": 1, - "object": 4, - "files": 4, - "Instructions": 1, - "Install": 1, - "libicu48": 2, - "apt": 1, - "get": 2, - "install": 1, - "append": 1, - "chown": 1, - "gtm": 1, - "/opt/gtm": 1, - "Startup": 1, - "errors": 6, - "INVOBJ": 1, - "Cannot": 1, - "ZLINK": 1, - "due": 1, - "unexpected": 1, - "Object": 1, - "compiled": 1, - "CHSET": 1, - "written": 3, - "startup": 1, - "correct": 1, - "above.": 1, - "Limits": 1, - "built": 1, - "recursion.": 1, - "Those": 1, - "prevent": 1, - "engine": 1, - "very": 2, - "long": 2, - "runs": 2, - "especially": 1, - "there": 2, - "would": 1, - "paths": 2, - "tree": 1, - "checked.": 1, - "Functions": 1, - "using": 4, - "itself": 1, - "allows": 1, - "MATCH_LIMIT": 1, - "MATCH_LIMIT_RECURSION": 1, - "arguments": 1, - "library": 1, - "compilation": 2, - "Example": 1, - "longrun": 3, - "Equal": 1, - "corrected": 1, - "shortrun": 2, - "Enforced": 1, - "enforcedlimit": 2, - "Exception": 2, - "Handling": 1, - "Error": 1, - "conditions": 1, - "handled": 1, - "zc": 1, - "codes": 1, - "labels": 1, - "file.": 1, - "When": 2, - "neither": 1, - "nor": 1, - "within": 1, - "mechanism.": 1, - "depending": 1, - "caller": 1, - "exception.": 1, - "lead": 1, - "writing": 4, - "prompt": 1, - "terminating": 1, - "image.": 1, - "define": 2, - "handlers.": 1, - "Handler": 1, - "No": 17, - "nohandler": 4, - "Pattern": 1, - "failed": 1, - "unmatched": 1, - "parentheses": 1, - "<-->": 1, - "HERE": 1, - "RTSLOC": 2, - "At": 2, - "SETECODE": 1, - "Non": 1, - "assigned": 1, - "ECODE": 1, - "32": 1, - "GT": 1, - "image": 1, - "terminated": 1, - "myexception1": 3, - "zt=": 1, - "mytrap1": 2, - "zg": 2, - "mytrap3": 1, - "DETAILS": 1, - "executed": 1, - "frame": 1, - "called.": 1, - "deeper": 1, - "frames": 1, - "already": 1, - "dropped": 1, - "local": 1, - "available": 1, - "context.": 1, - "Thats": 1, - "why": 1, - "doesn": 1, - "unless": 1, - "cleared.": 1, - "Always": 1, - "done.": 2, - "Execute": 1, - "p5global": 1, - "p5replace": 1, - "p5lf": 1, - "p5nl": 1, - "newline": 1, - "utf8support": 1, - "myexception3": 1, - "contrasting": 1, - "postconditionals": 1, - "IF": 9, - "commands": 1, - "post1": 1, - "postconditional": 3, - "purposely": 4, - "TEST": 16, - "false": 5, - "post2": 1, - "special": 2, - "after": 2, - "post": 1, - "condition": 1, - "PRCAAPR": 1, - "WASH": 1, - "ISC@ALTOONA": 1, - "PA/RGY": 1, - "PATIENT": 5, - "ACCOUNT": 1, - "PROFILE": 1, - "CONT": 1, - "/9/94": 1, - "AM": 1, - "V": 2, - "Accounts": 1, - "Receivable": 1, - "**198": 1, - "**": 2, - "Mar": 1, - "Per": 1, - "VHA": 1, - "Directive": 1, - "modified.": 1, - "EN": 2, - "PRCATY": 2, - "NEW": 3, - "DIC": 6, - "X": 18, - "Y": 26, - "DEBT": 10, - "PRCADB": 5, - "DA": 4, - "PRCA": 14, - "COUNT": 2, - "OUT": 2, - "SEL": 1, - "BILL": 11, - "BAT": 8, - "TRAN": 5, - "DR": 4, - "DXS": 1, - "DTOUT": 2, - "DIROUT": 1, - "DIRUT": 1, - "DUOUT": 1, - "ASK": 3, - "DPTNOFZY": 2, - "DPTNOFZK": 2, - "K": 5, - "DTIME": 1, - "UPPER": 1, - "VALM1": 1, - "RCD": 1, - "DISV": 2, - "DUZ": 3, - "NAM": 1, - "RCFN01": 1, - "COMP": 2, - "EN1": 1, - "PRCAATR": 1, - "Y_": 3, - "PRCADB_": 1, - "HDR": 1, - "PRCAAPR1": 3, - "HDR2": 1, - "DIS": 1, - "STAT1": 2, - "_PRCATY_": 1, - "COMP1": 2, - "RCY": 5, - "]": 14, - "COMP2": 2, - "_STAT_": 1, - "_STAT": 1, - "payments": 1, - "_TRAN": 1, - "Keith": 1, - "Lynch": 1, - "p#f": 1, - "PXAI": 1, - "ISL/JVS": 1, - "ISA/KWP": 1, - "ESW": 1, - "PCE": 2, - "DRIVING": 1, - "RTN": 1, - "/20/03": 1, - "am": 1, - "CARE": 1, - "ENCOUNTER": 2, - "**15": 1, - "Aug": 1, - "DATA2PCE": 1, - "PXADATA": 7, - "PXAPKG": 9, - "PXASOURC": 10, - "PXAVISIT": 8, - "PXAUSER": 6, - "PXANOT": 3, - "ERRRET": 2, - "PXAPREDT": 2, - "PXAPROB": 15, - "PXACCNT": 2, - "add/edit/delete": 1, - "PCE.": 1, - "required": 4, - "pointer": 4, - "visit": 3, - "related.": 1, - "then": 2, - "nodes": 1, - "needed": 1, - "lookup/create": 1, - "visit.": 1, - "adding": 1, - "data.": 1, - "displayed": 1, - "screen": 1, - "debugging": 1, - "initial": 1, - "code.": 1, - "passed": 4, - "reference.": 2, - "present": 1, - "PXKERROR": 2, - "caller.": 1, - "want": 1, - "edit": 1, - "Primary": 3, - "Provider": 1, - "moment": 1, - "editing": 2, - "being": 1, - "dangerous": 1, - "dotted": 1, - "name.": 1, - "warnings": 1, - "occur": 1, - "They": 1, - "form": 1, - "general": 1, - "description": 1, - "problem.": 1, - "ERROR1": 1, - "GENERAL": 2, - "ERRORS": 4, - "SUBSCRIPT": 5, - "PASSED": 4, - "IN": 4, - "FIELD": 2, - "FROM": 5, - "WARNING2": 1, - "WARNINGS": 2, - "WARNING3": 1, - "SERVICE": 1, - "CONNECTION": 1, - "REASON": 9, - "ERROR4": 1, - "PROBLEM": 1, - "LIST": 1, - "Returns": 2, - "PFSS": 2, - "Account": 2, - "Reference": 2, - "known.": 1, - "Returned": 1, - "located": 1, - "Order": 1, - "#100": 1, - "process": 3, - "processed": 1, - "could": 1, - "incorrectly": 1, - "VARIABLES": 1, - "NOVSIT": 1, - "PXAK": 20, - "DFN": 1, - "PXAERRF": 3, - "PXADEC": 1, - "PXELAP": 1, - "PXASUB": 2, - "VALQUIET": 2, - "PRIMFND": 7, - "PXAERROR": 1, - "PXAERR": 7, - "PRVDR": 1, - "needs": 1, - "look": 1, - "up": 1, - "passed.": 1, - "@PXADATA@": 8, - "SOR": 1, - "SOURCE": 2, - "PKG2IEN": 1, - "VSIT": 1, - "PXAPIUTL": 2, - "TMPSOURC": 1, - "SAVES": 1, - "CREATES": 1, - "VST": 2, - "VISIT": 3, - "KILL": 1, - "VPTR": 1, - "PXAIVSTV": 1, - "ERR": 2, - "PXAIVST": 1, - "PRV": 1, - "PROVIDER": 1, - "AUPNVSIT": 1, - ".I": 4, - "..S": 7, - "status": 2, - "Secondary": 2, - ".S": 6, - "..I": 2, - "PXADI": 4, - "NODE": 5, - "SCREEN": 2, - "VA": 1, - "EXTERNAL": 2, - "INTERNAL": 2, - "ARRAY": 2, - "PXAICPTV": 1, - "SEND": 1, - "W": 4, - "BLD": 2, - "DIALOG": 4, - ".PXAERR": 3, - "MSG": 2, - "GLOBAL": 1, - "NA": 1, - "PROVDRST": 1, - "Check": 1, - "provider": 1, - "PRVIEN": 14, - "DETS": 7, - "DIQ": 3, - "PRI": 3, - "PRVPRIM": 2, - "AUPNVPRV": 2, - "U": 14, - ".04": 1, - "DIQ1": 1, - "POVPRM": 1, - "POVARR": 1, - "STOP": 1, - "LPXAK": 4, - "ORDX": 14, - "NDX": 7, - "ORDXP": 3, - "DX": 2, - "ICD9": 2, - "AUPNVPOV": 2, - "@POVARR@": 6, - "force": 1, - "originally": 1, - "primary": 1, - "diagnosis": 1, - "flag": 1, - ".F": 2, - "..E": 1, - "...S": 5, - "decode": 1, - "val": 5, - "Decoded": 1, - "Encoded": 1, - "decoded": 3, - "decoded_": 1, - "safechar": 3, - "zchar": 1, - "encoded_c": 1, - "encoded_": 2, - "FUNC": 1, - "DH": 1, - "zascii": 1, - "WVBRNOT": 1, - "HCIOFO/FT": 1, - "JR": 1, - "IHS/ANMC/MWR": 1, - "BROWSE": 1, - "NOTIFICATIONS": 1, - "/30/98": 1, - "WOMEN": 1, - "WVDATE": 8, - "WVENDDT1": 2, - "WVIEN": 13, - "..F": 2, - "WV": 8, - "WVXREF": 1, - "WVDFN": 6, - "SELECTING": 1, - "ONE": 2, - "CASE": 1, - "MANAGER": 1, - "AND": 3, - "THIS": 3, - "DOESN": 1, - "WVE": 2, - "": 2, - "STORE": 3, - "WVA": 2, - "WVBEGDT1": 1, - "NOTIFICATION": 1, - "IS": 3, - "NOT": 1, - "QUEUED.": 1, - "WVB": 4, - "OR": 2, - "OPEN": 1, - "ONLY": 1, - "CLOSED.": 1, - ".Q": 1, - "EP": 4, - "ALREADY": 1, - "LL": 1, - "SORT": 3, - "ABOVE.": 1, - "DATE": 1, - "WVCHRT": 1, - "SSN": 1, - "WVUTL1": 2, - "SSN#": 1, - "WVNAME": 4, - "WVACC": 4, - "ACCESSION#": 1, - "WVSTAT": 1, - "STATUS": 2, - "WVUTL4": 1, - "WVPRIO": 5, - "PRIORITY": 1, - "WVCHRT_U_WVNAME_U_WVDATE_U_WVACC_U_WVSTAT_U_WVPRIO_U_WVIEN": 1, - "WVC": 4, - "COPYGBL": 3, - "COPY": 1, - "MAKE": 1, - "IT": 1, - "FLAT.": 1, - "...F": 1, - "....S": 1, - "DEQUEUE": 1, - "TASKMAN": 1, - "QUEUE": 1, - "OF": 2, - "PRINTOUT.": 1, - "SETVARS": 2, - "WVUTL5": 2, - "WVBRNOT1": 2, - "EXIT": 1, - "FOLLOW": 1, - "CALLED": 1, - "PROCEDURE": 1, - "FOLLOWUP": 1, - "MENU.": 1, - "WVBEGDT": 1, - "DT": 2, - "WVENDDT": 1, - "DEVICE": 1, - "WVBRNOT2": 1, - "WVPOP": 1, - "WVLOOP": 1, - "ZDIOUT1": 1, - "Experimental": 1, - "FileMan": 1, - "host": 2, - "Open": 1, - "Source": 1, - "Electronic": 1, - "Health": 1, - "Record": 1, - "Agent": 1, - "Licensed": 1, - "Apache": 1, - "Version": 1, - "may": 3, - "except": 1, - "compliance": 1, - "License.": 2, - "//www.apache.org/licenses/LICENSE": 1, - "Unless": 1, - "applicable": 1, - "law": 1, - "agreed": 1, - "BASIS": 1, - "WARRANTIES": 1, - "CONDITIONS": 1, - "KIND": 1, - "express": 1, - "implied.": 1, - "governing": 1, - "permissions": 2, - "limitations": 1, - "ASKFILE": 1, - "FILE": 5, - "ASKDIR": 1, - "DIR": 3, - "SAVEFILE": 2, - "Save": 1, - "given": 1, - "directory": 1, - "CHECK": 1, - "FGR": 4, - "_FILE": 1, - "IO": 4, - "DIR_": 1, - "L": 1, - "FILENAME": 1, - "_IO_": 1, - "_P_": 1, - "NM": 1, - "non": 1, - "printing": 1, - "escaped": 1, - "evaluation": 1, - "RHS": 1, - "SET.": 1, - "TODO": 1, - "Caller": 1, - "indentation": 1, - "comment": 1, - "tab": 1, - "space.": 1, - "M/Wire": 4, - "Protocol": 2, - "Systems": 1, - "By": 1, - "server": 1, - "port": 4, - "systems": 3, - "invoked": 2, - "via": 2, - "xinetd": 2, - "Edit": 1, - "/etc/services": 1, - "mwire": 2, - "/tcp": 1, - "#": 1, - "Service": 1, - "Copy": 2, - "/etc/xinetd.d/mwire": 1, - "/usr/local/gtm/zmwire": 1, - "its": 1, - "executable": 1, - "edited": 1, - "Restart": 1, - "sudo": 1, - "/etc/init.d/xinetd": 1, - "On": 1, - "installed": 1, - "MGWSI": 1, - "provide": 1, - "hashing": 1, - "passwords": 1, - "Alternatively": 1, - "substitute": 1, - "callout": 1, - "choice": 1, - "Daemon": 2, - "running": 1, - "jobbed": 1, - "job": 1, - "zmwireDaemon": 2, - "simply": 1, - "Stop": 1, - "RESJOB": 1, - "it.": 1, - "mwireVersion": 4, - "mwireDate": 2, - "July": 1, - "_crlf": 22, - "_response_": 4, - "_crlf_response_crlf": 4, - "authNeeded": 6, - "input": 41, - "cleardown": 2, - "zint": 1, - "role": 3, - "loop": 7, - "log": 1, - "halt": 3, - "auth": 2, - "ignore": 12, - "pid": 36, - "monitor": 1, - "input_crlf": 1, - "zsy": 2, - "_pid_": 1, - "_pid": 1, - "monitoroutput": 1, - "logger": 17, - "tot": 2, - "mwireLogger": 3, + "NSIS": { + "Pop": 1, + "defined": 1, + "CheckBitmap": 1, + "components": 1, + ")": 5, + "Group2": 1, + "a": 2, + "MyTestVar": 1, + "fun": 1, + "extracts": 2, + "If": 1, + "InstType": 6, + "xyz_cc_does_not_exist": 1, + "bt": 1, + "SW_SHOWMINIMIZED": 1, + "WriteRegDword": 3, + "Nop": 1, + "Microsoft": 1, + "MyProject": 1, + "of": 3, + "NOCOMPRESS": 1, "info": 1, - "response_": 1, - "_count": 1, - "setpassword": 1, - "SETPASSWORD": 2, - "secret": 2, - "": 1, - "role=": 1, + "TextInSection": 1, + "give": 1, + "removed": 1, + "x64": 1, + "INIDelSuccess": 2, + "would": 1, + "Test": 2, + "DeleteINIStr": 1, + "show": 1, + "InstallColors": 1, + "DeleteINISec": 1, + "Windows": 3, + "so": 1, + "recursively": 1, + "installations": 1, + "fun.": 1, + "i.s": 1, + "example2.": 1, + "simple": 1, + "_a": 1, + "StrCpy": 2, + "A": 1, + "*i.s": 1, + "to": 6, + "StrCmp": 1, + "myfunc": 1, + "CRCCheck": 1, + "BigNSISTest": 8, + "checks": 1, + "Software": 1, + "tmp.dat": 1, + "CreateShortCut": 2, + "MB_OK": 8, + "+": 2, + "installer": 1, + "LogicLib.nsh": 1, + "define": 4, + "if": 4, + "Hit": 1, + "Shift": 1, + "Big": 1, + "SilentInstall": 1, + "macro": 3, + "WriteRegBin": 1, + "NSISTest": 7, + "_LOGICLIB_TEMP": 3, + "SysWOW64": 1, + "enables": 1, + "redirection.": 2, + "NoErrorMsg": 1, + "_b": 1, + "___X64__NSH___": 3, + "This": 2, + "x64.nsh": 1, + "MyFunctionTest": 1, + "File": 3, + "ifndef": 2, + "macros": 1, + "DisableX64FSRedirection": 4, + "xdeadbeef": 1, + "some.dll": 2, + "endif": 4, + "OutFile": 1, + "you": 1, + "MessageBox": 11, + "IDNO": 1, + "functionality": 1, + "WriteRegStr": 4, + "LogicLib.nsi": 1, + "CONTROL": 1, + "/a": 1, + "GetCurrentProcess": 1, + "System": 4, + "NSISDIR": 1, + "MySectionIni": 1, + "Goto": 1, + "UninstPage": 2, + "HKCR": 1, + "system": 2, + "IDYES": 2, + "InstallDirRegKey": 1, + "*.*": 2, + "and": 1, "admin": 1, - "newrole": 4, - "getGloRef": 3, - "gloName": 1, - "gloRef": 15, - "nb": 2, - "subs": 8, - "nsp": 1, - "subs_": 2, - "_data_": 3, - "subscripts": 8, - "_value_": 1, - "_error_": 1, - "kill": 3, - "xx": 16, - "method": 2, - "Missing": 5, - "JSON": 7, - "transaction": 6, - "document": 6, - "setJSON": 4, - "GlobalName": 3, - "setGlobal": 1, - "zmwire_null_value": 1, - "Invalid": 1, - "props": 1, - "arr": 2, - "getJSON": 2, - "incr": 1, - "incrbr": 1, - "class": 1, - "##": 2, - "decr": 1, - "decrby": 1, - "direction": 1, - "subscriptValue": 1, - "dataStatus": 1, - "dataValue": 1, - "nextsubscript": 2, - "reverseorder": 1, - "*2": 1, - "queryget": 1, - "xxyy": 2, - "zz": 2, - "getallsubscripts": 1, - "orderall": 1, - "": 3, - "note": 2, - "escaping": 1, - "foo": 2, - "_gloRef": 1, - "@x": 4, - "_crlf_": 1, - "j_": 1, - "params": 10, - "_crlf_resp_crlf": 2, - "_crlf_data_crlf": 2, - "mergeto": 1, - "dataLength": 4, - "keyLength": 6, - "noOfRecs": 6, - "MERGETO": 1, - "myglobal": 1, - "*6": 1, - "hello": 1, - "": 2, - "put": 1, - "top": 1, - "noOfRecs#2": 1, - "noOfRecs/2": 1, - "gloRef1": 2, - "gloRef1_": 2, - "_gloRef1_key_": 1, - "sub": 2, - "literal": 2, - "valquot_value_valquot": 1, - "json_value_": 1, - "subscripts1": 2, - "subx": 3, - "subNo": 1, - "numsub": 1, - "json_": 2, - "removeControlChars": 2, - "zobj1": 1, - "buff": 10, - "parseJSONObject": 2, - ".buff": 2, - "subs2": 6, - "_name_": 1, - "subs2_": 2, - "value_c": 1, - "newString": 4, - "newString_c": 1, - "utfConvert": 1, - "Unescape": 1, - "buf": 4, - "c1": 4, - "buf_c1_": 1 + "C": 2, + "icon": 1, + "BiG": 1, + "BGGradient": 1, + "XPStyle": 1, + "IsWow64Process": 1, + "next": 1, + "SOFTWARE": 7, + "{": 8, + "i0": 1, + "HAVE_UPX": 1, + "CurrentVersion": 1, + "-": 205, + "few": 1, + "is": 2, + "Icon": 1, + "directory": 3, + "most": 1, + "SetCompress": 1, + "RunningX64": 4, + "machines.": 1, + "AutoCloseWindow": 1, + "Start": 2, + "uninstall": 2, + "Ctrl": 1, + "SectionEnd": 5, + "Section": 5, + "FF8080": 1, + "ifdef": 2, + "NoOverwrite": 1, + "|": 3, + "i1": 1, + "silent.nsi": 1, + "it": 3, + "Name": 1, + "#": 3, + "handle": 1, + "empty": 1, + "BranchTest69": 1, + "not": 2, + "test": 1, + "Note": 1, + "test.ini": 2, + "for": 2, + "DetailPrint": 1, + "will": 1, + "MyLabel": 2, + "}": 8, + "Caption": 1, + "SHIFT": 1, + "kernel32": 4, + "include": 1, + "IfErrors": 1, + "start": 1, + "false": 1, + "license": 1, + "packhdr": 1, + "uninst.exe": 1, + "CreateDirectory": 1, + "minimized": 1, + "macroend": 3, + "bigtest.nsi": 1, + "the": 4, + "ReadINIStr": 1, + "SectionIn": 4, + "Call": 6, + "NOINSTTYPES": 1, + "IfFileExists": 1, + "Q": 2, + "only": 1, + "insertmacro": 2, + "_f": 2, + "cpdest": 3, + "exist": 1, + "SetDateSave": 1, + "Graphics": 1, + "disables": 1, + "like": 1, + "LicenseText": 1, + ";": 39, + "reg": 1, + "with": 1, + "s": 1, + "EnableX64FSRedirection": 4, + "ClearErrors": 1, + "InstallDir": 1, + "/e": 1, + "WriteUninstaller": 1, + "off": 1, + "starting": 1, + "LicenseData": 1, + "EndIf": 1, + "could": 1, + "be": 1, + "SectionGroup1": 1, + "MB_YESNO": 3, + "instfiles": 2, + "Would": 1, + "t": 1, + "file": 4, + "Contrib": 1, + "skipped": 2, + "ErrorYay": 2, + "normal": 1, + "remove": 1, + "Wow64EnableWow64FsRedirection": 2, + "ShowInstDetails": 1, + "strings": 1, + "makes": 1, + "uninstConfirm": 1, + "_RunningX64": 1, + "script": 1, + "on": 6, + "SectionGroup": 2, + "Page": 4, + "doesn": 2, + "Uninstall": 2, + "failed": 1, + "write": 2, + "NSIS": 3, + "ReadRegStr": 1, + "FFFFFF": 1, + "SMPROGRAMS": 2, + "running": 1, + "CSCTest": 1, + "INSTDIR": 15, + "exehead.": 1, + "_": 1, + "continue.": 1, + "_t": 2, + "System32": 1, + "x64.": 1, + "RequestExecutionLevel": 1, + "create": 1, + "hidden": 1, + "Icons": 1, + "nsis1": 1, + "WriteINIStr": 5, + "hotkey": 1, + "HKLM": 9, + "(": 5, + "SYSDIR": 1, + "SetDatablockOptimize": 1, + "MB_ICONQUESTION": 1, + "/COMPONENTSONLYONCUSTOM": 1, + "MyProjectFamily": 2, + "NoError": 2, + "BeginTestSection": 1, + "/NOCUSTOM": 1, + "Value1": 1, + "uninstall.ico": 1, + "attempts": 1, + "IDOK": 1, + "string": 1, + "SetOutPath": 3 }, - "Makefile": { - "all": 1, - "hello": 4, - "main.o": 3, - "factorial.o": 3, - "hello.o": 3, - "g": 4, - "+": 8, - "-": 6, - "o": 1, - "main.cpp": 2, - "c": 3, - "factorial.cpp": 2, - "hello.cpp": 2, - "clean": 1, - "rm": 1, - "rf": 1, - "*o": 1, - "SHEBANG#!make": 1, - "%": 1, - "ls": 1, - "l": 1 + "INI": { + "indent_size": 1, + "true": 3, + "josh@github.com": 1, + "Peek": 1, + "user": 1, + "space": 1, + "indent_style": 1, + "charset": 1, + "email": 1, + "insert_final_newline": 1, + "-": 1, + "]": 2, + "*": 1, + "[": 2, + ";": 1, + "trim_trailing_whitespace": 1, + "lf": 1, + "name": 1, + "editorconfig.org": 1, + "utf": 1, + "end_of_line": 1, + "root": 1, + "Josh": 1 }, "Markdown": { "Tender": 1 }, - "Matlab": { - "function": 32, - "[": 309, - "dx": 6, - "y": 22, - "]": 309, - "adapting_structural_model": 2, - "(": 1357, - "t": 32, - "x": 42, - "u": 3, - "varargin": 25, - ")": 1358, - "%": 552, - "size": 8, - "aux": 3, - "{": 157, - "end": 147, - "}": 157, - ";": 891, - "m": 44, - "zeros": 60, - "b": 12, - "for": 77, - "i": 334, - "if": 52, - "+": 169, - "elseif": 14, - "else": 23, - "display": 10, - "aux.pars": 3, - ".*": 2, - "Yp": 2, - "human": 1, - "aux.timeDelay": 2, - "c1": 5, - "aux.m": 3, - "*": 46, - "aux.b": 3, - "e": 14, - "-": 672, - "c2": 5, - "Yc": 5, - "parallel": 2, - "plant": 4, - "aux.plantFirst": 2, - "aux.plantSecond": 2, - "Ys": 1, - "feedback": 1, - "A": 11, - "B": 9, - "C": 13, - "D": 7, - "tf2ss": 1, - "Ys.num": 1, - "Ys.den": 1, - "average": 1, - "n": 102, - "|": 2, - "&": 4, - "error": 14, - "sum": 2, - "/length": 1, - "bicycle": 7, - "bicycle_state_space": 1, - "speed": 20, - "S": 5, - "dbstack": 1, - "CURRENT_DIRECTORY": 2, - "fileparts": 1, - ".file": 1, - "par": 7, - "par_text_to_struct": 4, - "filesep": 14, - "...": 162, - "whipple_pull_force_abcd": 2, - "states": 7, - "outputs": 10, - "inputs": 14, - "defaultSettings.states": 1, - "defaultSettings.inputs": 1, - "defaultSettings.outputs": 1, - "userSettings": 3, - "varargin_to_structure": 2, - "struct": 1, - "settings": 3, - "overwrite_settings": 2, - "defaultSettings": 3, - "minStates": 2, - "ismember": 15, - "settings.states": 3, - "<": 9, - "keepStates": 2, - "find": 24, - "removeStates": 1, - "row": 6, - "abs": 12, - "col": 5, - "s": 13, - "sprintf": 11, - "removeInputs": 2, - "settings.inputs": 1, - "keepOutputs": 2, - "settings.outputs": 1, - "It": 1, - "is": 7, - "not": 3, - "possible": 1, - "to": 9, - "keep": 1, - "output": 7, - "because": 1, - "it": 1, - "depends": 1, - "on": 13, - "input": 14, - "StateName": 1, - "OutputName": 1, - "InputName": 1, - "x_0": 45, - "linspace": 14, - "vx_0": 37, - "z": 3, - "j": 242, - "*vx_0": 1, - "figure": 17, - "pcolor": 2, - "shading": 3, - "flat": 3, - "name": 4, - "order": 11, - "convert_variable": 1, - "variable": 10, - "coordinates": 6, - "speeds": 21, - "get_variables": 2, - "columns": 4, - "create_ieee_paper_plots": 2, - "data": 27, - "rollData": 8, - "global": 6, - "goldenRatio": 12, - "sqrt": 14, - "/": 59, - "exist": 1, - "mkdir": 1, - "linestyles": 15, - "colors": 13, - "loop_shape_example": 3, - "data.Benchmark.Medium": 2, - "plot_io_roll": 3, - "open_loop_all_bikes": 1, - "handling_all_bikes": 1, - "path_plots": 1, - "var": 3, - "io": 7, - "typ": 3, - "length": 49, - "plot_io": 1, - "phase_portraits": 2, - "eigenvalues": 2, - "bikeData": 2, - "figWidth": 24, - "figHeight": 19, - "set": 43, - "gcf": 17, - "freq": 12, - "hold": 23, - "all": 15, - "closedLoops": 1, - "bikeData.closedLoops": 1, - "bops": 7, - "bodeoptions": 1, - "bops.FreqUnits": 1, - "strcmp": 24, - "gray": 7, - "deltaNum": 2, - "closedLoops.Delta.num": 1, - "deltaDen": 2, - "closedLoops.Delta.den": 1, - "bodeplot": 6, - "tf": 18, - "neuroNum": 2, - "neuroDen": 2, - "whichLines": 3, - "phiDotNum": 2, - "closedLoops.PhiDot.num": 1, - "phiDotDen": 2, - "closedLoops.PhiDot.den": 1, - "closedBode": 3, - "off": 10, - "opts": 4, - "getoptions": 2, - "opts.YLim": 3, - "opts.PhaseMatching": 2, - "opts.PhaseMatchingValue": 2, - "opts.Title.String": 2, - "setoptions": 2, - "lines": 17, - "findobj": 5, - "raise": 19, - "plotAxes": 22, - "curPos1": 4, - "get": 11, - "curPos2": 4, - "xLab": 8, - "legWords": 3, - "closeLeg": 2, - "legend": 7, - "axes": 9, - "db1": 4, - "text": 11, - "db2": 2, - "dArrow1": 2, - "annotation": 13, - "dArrow2": 2, - "dArrow": 2, - "filename": 21, - "pathToFile": 11, - "print": 6, - "fix_ps_linestyle": 6, - "openLoops": 1, - "bikeData.openLoops": 1, - "num": 24, - "openLoops.Phi.num": 1, - "den": 15, - "openLoops.Phi.den": 1, - "openLoops.Psi.num": 1, - "openLoops.Psi.den": 1, - "openLoops.Y.num": 1, - "openLoops.Y.den": 1, - "openBode": 3, - "line": 15, - "wc": 14, - "wShift": 5, - "num2str": 10, - "bikeData.handlingMetric.num": 1, - "bikeData.handlingMetric.den": 1, - "w": 3, - "mag": 4, - "phase": 2, - "bode": 5, - "metricLine": 1, - "plot": 26, - "k": 75, - "Linewidth": 7, - "Color": 13, - "Linestyle": 6, - "Handling": 2, - "Quality": 2, - "Metric": 2, - "Frequency": 2, - "rad/s": 4, - "Level": 6, - "benchmark": 1, - "Handling.eps": 1, - "plots": 4, - "deps2": 1, - "loose": 4, - "PaperOrientation": 3, - "portrait": 3, - "PaperUnits": 3, - "inches": 3, - "PaperPositionMode": 3, - "manual": 3, - "PaperPosition": 3, - "PaperSize": 3, - "rad/sec": 1, - "phi": 13, - "Open": 1, - "Loop": 1, - "Bode": 1, - "Diagrams": 1, - "at": 3, - "m/s": 6, - "Latex": 1, - "type": 4, - "LineStyle": 2, - "LineWidth": 2, - "Location": 2, - "Southwest": 1, - "Fontsize": 4, - "YColor": 2, - "XColor": 1, - "Position": 6, - "Xlabel": 1, - "Units": 1, - "normalized": 1, - "openBode.eps": 1, - "deps2c": 3, - "maxMag": 2, - "max": 9, - "magnitudes": 1, - "area": 1, - "fillColors": 1, - "gca": 8, - "speedNames": 12, - "metricLines": 2, - "bikes": 24, - "data.": 6, - ".": 13, - ".handlingMetric.num": 1, - ".handlingMetric.den": 1, - "chil": 2, - "legLines": 1, - "Hands": 1, - "free": 1, - "@": 1, - "handling.eps": 1, - "f": 13, - "YTick": 1, - "YTickLabel": 1, - "Path": 1, - "Southeast": 1, - "Distance": 1, - "Lateral": 1, - "Deviation": 1, - "paths.eps": 1, - "d": 3, - "like": 1, - "plot.": 1, - "names": 6, - "prettyNames": 3, - "units": 3, - "index": 6, - "fieldnames": 5, - "data.Browser": 1, - "maxValue": 4, - "oneSpeed": 3, - "history": 7, - "oneSpeed.": 3, - "round": 1, - "pad": 10, - "yShift": 16, - "xShift": 3, - "time": 21, - "oneSpeed.time": 2, - "oneSpeed.speed": 2, - "distance": 6, - "xAxis": 12, - "xData": 3, - "textX": 3, - "ylim": 2, - "ticks": 4, - "xlabel": 8, - "xLimits": 6, - "xlim": 8, - "loc": 3, - "l1": 2, - "l2": 2, - "first": 3, - "ylabel": 4, - "box": 4, - "&&": 13, - "x_r": 6, - "y_r": 6, - "w_r": 5, - "h_r": 5, - "rectangle": 2, - "w_r/2": 4, - "h_r/2": 4, - "x_a": 10, - "y_a": 10, - "w_a": 7, - "h_a": 5, - "ax": 15, - "axis": 5, - "rollData.speed": 1, - "rollData.time": 1, - "path": 3, - "rollData.path": 1, - "frontWheel": 3, - "rollData.outputs": 3, - "rollAngle": 4, - "steerAngle": 4, - "rollTorque": 4, - "rollData.inputs": 1, - "subplot": 3, - "h1": 5, - "h2": 5, - "plotyy": 3, - "inset": 3, - "gainChanges": 2, - "loopNames": 4, - "xy": 7, - "xySource": 7, - "xlabels": 2, - "ylabels": 2, - "legends": 3, - "floatSpec": 3, - "twentyPercent": 1, - "generate_data": 5, - "nominalData": 1, - "nominalData.": 2, - "bikeData.": 2, - "twentyPercent.": 2, - "equal": 2, - "leg1": 2, - "bikeData.modelPar.": 1, - "leg2": 2, - "twentyPercent.modelPar.": 1, - "eVals": 5, - "pathToParFile": 2, - "str": 2, - "eigenValues": 1, - "eig": 6, - "real": 3, - "zeroIndices": 3, - "ones": 6, - "maxEvals": 4, - "maxLine": 7, - "minLine": 4, - "min": 1, - "speedInd": 12, - "value": 2, - "isterminal": 2, - "direction": 2, - "mu": 73, - "FIXME": 1, - "from": 2, - "the": 14, - "largest": 1, - "primary": 1, - "clear": 13, - "tic": 7, - "T": 22, - "x_min": 3, - "x_max": 3, - "y_min": 3, - "y_max": 3, - "how": 1, - "many": 1, - "points": 11, - "per": 5, - "one": 3, - "measure": 1, - "unit": 1, - "both": 1, - "in": 8, - "and": 7, - "ds": 1, - "x_res": 7, - "*n": 2, - "y_res": 7, - "grid_x": 3, - "grid_y": 3, - "advected_x": 12, - "advected_y": 12, - "parfor": 5, - "X": 6, - "ode45": 6, - "@dg": 1, - "store": 4, - "advected": 2, - "positions": 2, - "as": 4, - "they": 2, - "would": 2, - "appear": 2, - "coords": 2, - "Compute": 3, - "FTLE": 14, - "sigma": 6, - "compute": 2, - "Jacobian": 3, - "*ds": 4, - "eigenvalue": 2, - "of": 35, - "*phi": 2, - "log": 2, - "lambda_max": 2, - "/abs": 3, - "*T": 3, - "toc": 5, - "field": 2, - "contourf": 2, - "location": 1, - "EastOutside": 1, - "f_x_t": 2, - "inline": 1, - "grid_min": 3, - "grid_max": 3, - "grid_width": 1, - "grid_spacing": 5, - "grid_width/": 1, - "*grid_width/": 4, - "colorbar": 1, - "load_data": 4, - "t0": 6, - "t1": 6, - "t2": 6, - "t3": 1, - "dataPlantOne": 3, - "data.Ts": 6, - "dataAdapting": 3, - "dataPlantTwo": 3, - "guessPlantOne": 4, - "resultPlantOne": 1, - "find_structural_gains": 2, - "yh": 2, - "fit": 6, - "x0": 4, - "compare": 3, - "resultPlantOne.fit": 1, - "guessPlantTwo": 3, - "resultPlantTwo": 1, - "resultPlantTwo.fit": 1, - "kP1": 4, - "resultPlantOne.fit.par": 1, - "kP2": 3, - "resultPlantTwo.fit.par": 1, - "gainSlopeOffset": 6, - "eye": 9, - "this": 2, - "only": 7, - "uses": 1, - "tau": 1, - "through": 1, - "wfs": 1, - "true": 2, - "plantOneSlopeOffset": 3, - "plantTwoSlopeOffset": 3, - "mod": 3, - "idnlgrey": 1, - "pem": 1, - "guess.plantOne": 3, - "guess.plantTwo": 2, - "plantNum.plantOne": 2, - "plantNum.plantTwo": 2, - "sections": 13, - "secData.": 1, - "||": 3, - "guess.": 2, - "result.": 2, - ".fit.par": 1, - "currentGuess": 2, - "warning": 1, - "randomGuess": 1, - "The": 6, - "self": 2, - "validation": 2, - "VAF": 2, - "f.": 2, - "data/": 1, - "results.mat": 1, - "guess": 1, - "plantNum": 1, - "result": 5, - "plots/": 1, - ".png": 1, - "task": 1, - "closed": 1, - "loop": 1, - "system": 2, - "u.": 1, - "gain": 1, - "guesses": 1, - "k1": 4, - "k2": 3, - "k3": 3, - "k4": 4, - "identified": 1, - "gains": 12, - ".vaf": 1, - "Elements": 1, - "grid": 1, - "definition": 2, - "Dimensionless": 1, - "integrating": 1, - "Choice": 2, - "mass": 2, - "parameter": 2, - "Computation": 9, - "Lagrangian": 3, - "Points": 2, - "xl1": 13, - "yl1": 12, - "xl2": 9, - "yl2": 8, - "xl3": 8, - "yl3": 8, - "xl4": 10, - "yl4": 9, - "xl5": 8, - "yl5": 8, - "Lagr": 6, - "initial": 5, - "total": 6, - "energy": 8, - "E_L1": 4, - "Omega": 7, - "C_L1": 3, - "*E_L1": 1, - "Szebehely": 1, - "E": 8, - "Offset": 2, - "Initial": 3, - "conditions": 3, - "range": 2, - "x_0_min": 8, - "x_0_max": 8, - "vx_0_min": 8, - "vx_0_max": 8, - "y_0": 29, - "ndgrid": 2, - "vy_0": 22, - "*E": 2, - "*Omega": 5, - "vx_0.": 2, - "E_cin": 4, - "x_T": 25, - "y_T": 17, - "vx_T": 22, - "vy_T": 12, - "filtro": 15, - "E_T": 11, - "delta_E": 7, - "a": 17, - "matrix": 3, - "numbers": 2, - "integration": 9, - "steps": 2, - "each": 2, - "np": 8, - "number": 2, - "integrated": 5, - "fprintf": 18, - "Energy": 4, - "tolerance": 2, - "setting": 4, - "energy_tol": 6, - "Setting": 1, - "options": 14, - "integrator": 2, - "RelTol": 2, - "AbsTol": 2, - "From": 1, - "Short": 1, - "odeset": 4, - "Parallel": 2, - "equations": 2, - "motion": 2, - "h": 19, - "waitbar": 6, - "r1": 3, - "r2": 3, - "g": 5, - "i/n": 1, - "y_0.": 2, - "./": 1, - "mu./": 1, - "isreal": 8, - "Check": 6, - "velocity": 2, - "positive": 2, - "Kinetic": 2, - "Y": 19, - "@f_reg": 1, - "Saving": 4, - "solutions": 2, - "final": 2, - "difference": 2, - "with": 2, - "conservation": 2, - "position": 2, - "point": 14, - "interesting": 4, - "non": 2, - "sense": 2, - "bad": 4, - "close": 4, - "t_integrazione": 3, - "filtro_1": 12, - "dphi": 12, - "ftle": 10, - "ftle_norm": 1, - "ds_x": 1, - "ds_vx": 1, - "La": 1, - "direzione": 1, - "dello": 1, - "spostamento": 1, - "la": 2, - "decide": 1, - "il": 1, - "denominatore": 1, - "TODO": 1, - "spiegarsi": 1, - "teoricamente": 1, - "come": 1, - "mai": 1, - "matrice": 1, - "pu": 1, - "essere": 1, - "ridotta": 1, - "x2": 1, - "*ds_x": 2, - "*ds_vx": 2, - "Manual": 2, - "visualize": 2, - "*log": 2, - "dphi*dphi": 1, - "tempo": 4, - "integrare": 2, - ".2f": 5, - "calcolare": 2, - "var_": 2, - "_": 2, - "var_xvx_": 2, - "ode00": 2, - "_n": 2, - "save": 2, - "nome": 2, - "Transforming": 1, - "into": 1, - "Hamiltonian": 1, - "variables": 2, - "px_0": 2, - "py_0": 2, - "px_T": 4, - "py_T": 4, - "inf": 1, - "@cr3bp_jac": 1, - "@fH": 1, - "EnergyH": 1, - "t_integr": 1, - "Back": 1, - "Inf": 1, - "_e": 1, - "_H": 1, - "Range": 1, - "E_0": 4, - "C_L1/2": 1, - "Y_0": 4, - "nx": 32, - "nvx": 32, - "dvx": 3, - "ny": 29, - "dy": 5, - "/2": 3, - "ne": 29, - "de": 4, - "e_0": 7, - "Definition": 1, - "arrays": 1, - "In": 1, - "approach": 1, - "useful": 9, - "pints": 1, - "are": 1, - "stored": 1, - "filter": 14, - "l": 64, - "v_y": 3, - "*e_0": 3, - "vx": 2, - "vy": 2, - "Selection": 1, - "Data": 2, - "transfer": 1, - "GPU": 3, - "x_gpu": 3, - "gpuArray": 4, - "y_gpu": 3, - "vx_gpu": 3, - "vy_gpu": 3, - "Integration": 2, - "N": 9, - "x_f": 3, - "y_f": 3, - "vx_f": 3, - "vy_f": 3, - "arrayfun": 2, - "@RKF45_FILE_gpu": 1, - "back": 1, - "CPU": 1, - "memory": 1, - "cleaning": 1, - "gather": 4, - "Construction": 1, - "computation": 2, - "X_T": 4, - "Y_T": 4, - "VX_T": 4, - "VY_T": 3, - "filter_ftle": 11, - "Compute_FILE_gpu": 1, - "Plot": 1, - "results": 1, - "squeeze": 1, - "clc": 1, - "load_bikes": 2, - "e_T": 7, - "Integrate_FILE": 1, - "Integrate": 6, - "Look": 2, - "phisically": 2, - "meaningful": 6, - "meaningless": 2, - "i/nx": 2, - "*Potential": 5, - "ci": 9, - "te": 2, - "ye": 9, - "ie": 2, - "@f": 6, - "Potential": 1, - "delta_e": 3, - "Integrate_FTLE_Gawlick_ell": 1, - "ecc": 2, - "nu": 2, - "ecc*cos": 1, - "@f_ell": 1, - "Consider": 1, - "also": 1, - "negative": 1, - "goodness": 1, - "roots": 3, - "*mu": 6, - "c3": 3, - "lane_change": 1, - "start": 4, - "width": 3, - "slope": 3, - "pathLength": 3, - "single": 1, - "double": 1, - "Double": 1, - "lane": 4, - "change": 1, - "needs": 1, - "lane.": 1, - "laneLength": 4, - "startOfSlope": 3, - "endOfSlope": 1, - "<=>": 1, - "1": 1, - "downSlope": 3, - "gains.Benchmark.Slow": 1, - "place": 2, - "holder": 2, - "gains.Browserins.Slow": 1, - "gains.Browser.Slow": 1, - "gains.Pista.Slow": 1, - "gains.Fisher.Slow": 1, - "gains.Yellow.Slow": 1, - "gains.Yellowrev.Slow": 1, - "gains.Benchmark.Medium": 1, - "gains.Browserins.Medium": 1, - "gains.Browser.Medium": 1, - "gains.Pista.Medium": 1, - "gains.Fisher.Medium": 1, - "gains.Yellow.Medium": 1, - "gains.Yellowrev.Medium": 1, - "gains.Benchmark.Fast": 1, - "gains.Browserins.Fast": 1, - "gains.Browser.Fast": 1, - "gains.Pista.Fast": 1, - "gains.Fisher.Fast": 1, - "gains.Yellow.Fast": 1, - "gains.Yellowrev.Fast": 1, - "gains.": 1, - "parser": 1, - "inputParser": 1, - "parser.addRequired": 1, - "parser.addParamValue": 3, - "parser.parse": 1, - "args": 1, - "parser.Results": 1, - "raw": 1, - "load": 1, - "args.directory": 1, - "iddata": 1, - "raw.theta": 1, - "raw.theta_c": 1, - "args.sampleTime": 1, - "args.detrend": 1, - "detrend": 1, - "filtfcn": 2, - "statefcn": 2, - "makeFilter": 1, - "v": 12, - "@iirFilter": 1, - "@getState": 1, - "yn": 2, - "iirFilter": 1, - "xn": 4, - "vOut": 2, - "getState": 1, - "classdef": 1, - "matlab_class": 2, - "properties": 1, - "R": 1, - "G": 1, - "methods": 1, - "obj": 2, - "r": 2, - "obj.R": 2, - "obj.G": 2, - "obj.B": 2, - "disp": 8, - "enumeration": 1, - "red": 1, - "green": 1, - "blue": 1, - "cyan": 1, - "magenta": 1, - "yellow": 1, - "black": 1, - "white": 1, - "ret": 3, - "matlab_function": 5, - "Call": 2, - "which": 2, - "resides": 2, - "same": 2, - "directory": 2, - "value1": 4, - "semicolon": 2, - "mandatory": 2, - "suppresses": 2, - "command": 2, - "line.": 2, - "value2": 4, - "overrideSettings": 3, - "overrideNames": 2, - "defaultNames": 2, - "notGiven": 5, - "setxor": 1, - "settings.": 1, - "defaultSettings.": 1, - "fid": 7, - "fopen": 2, - "textscan": 1, - "fclose": 2, - "strtrim": 2, - "vals": 2, - "regexp": 1, - "par.": 1, - "str2num": 1, - "choose_plant": 4, - "p": 7, - "Conditions": 1, - "@cross_y": 1, - "ode113": 2, - "RK4": 3, - "fun": 5, - "tspan": 7, - "th": 1, - "Runge": 1, - "Kutta": 1, - "dim": 2, - "while": 1, - "h/2": 2, - "k1*h/2": 1, - "k2*h/2": 1, - "h*k3": 1, - "h/6*": 1, - "*k2": 1, - "*k3": 1, - "arg1": 1, - "arg": 2, - "RK4_par": 1, - "wnm": 11, - "zetanm": 5, - "ss": 3, - "data.modelPar.A": 1, - "data.modelPar.B": 1, - "data.modelPar.C": 1, - "data.modelPar.D": 1, - "bicycle.StateName": 2, - "bicycle.OutputName": 4, - "bicycle.InputName": 2, - "analytic": 3, - "system_state_space": 2, - "numeric": 2, - "data.system.A": 1, - "data.system.B": 1, - "data.system.C": 1, - "data.system.D": 1, - "numeric.StateName": 1, - "data.bicycle.states": 1, - "numeric.InputName": 1, - "data.bicycle.inputs": 1, - "numeric.OutputName": 1, - "data.bicycle.outputs": 1, - "pzplot": 1, - "ss2tf": 2, - "analytic.A": 3, - "analytic.B": 1, - "analytic.C": 1, - "analytic.D": 1, - "mine": 1, - "data.forceTF.PhiDot.num": 1, - "data.forceTF.PhiDot.den": 1, - "numeric.A": 2, - "numeric.B": 1, - "numeric.C": 1, - "numeric.D": 1, - "whipple_pull_force_ABCD": 1, - "bottomRow": 1, - "prod": 3, - "Earth": 2, - "Moon": 2, - "C_star": 1, - "C/2": 1, - "orbit": 1, - "Y0": 6, - "y0": 2, - "vx0": 2, - "vy0": 2, - "l0": 1, - "delta_E0": 1, - "Hill": 1, - "Edgecolor": 1, - "none": 1, - "ok": 2, - "sg": 1, - "sr": 1, - "arguments": 7, - "ischar": 1, - "options.": 1, - "write_gains": 1, - "contents": 1, - "importdata": 1, - "speedsInFile": 5, - "contents.data": 2, - "gainsInFile": 3, - "sameSpeedIndices": 5, - "allGains": 4, - "allSpeeds": 4, - "sort": 1, - "contents.colheaders": 1 - }, - "Max": { - "max": 1, - "v2": 1, - ";": 39, - "#N": 2, - "vpatcher": 1, - "#P": 33, - "toggle": 1, - "button": 4, - "window": 2, - "setfont": 1, - "Verdana": 1, - "linecount": 1, - "newex": 8, - "r": 1, - "jojo": 2, - "#B": 2, - "color": 2, - "s": 1, - "route": 1, - "append": 1, - "toto": 1, - "%": 1, - "counter": 2, - "#X": 1, - "flags": 1, - "newobj": 1, - "metro": 1, - "t": 2, - "message": 2, - "Goodbye": 1, - "World": 2, - "Hello": 1, - "connect": 13, - "fasten": 1, - "pop": 1 - }, - "Monkey": { - "Strict": 1, - "sample": 1, - "class": 1, - "from": 1, - "the": 1, - "documentation": 1, - "Class": 3, - "Game": 1, - "Extends": 2, - "App": 1, - "Function": 2, - "New": 1, - "(": 12, - ")": 12, - "End": 8, - "DrawSpiral": 3, - "clock": 3, - "Local": 3, - "w": 3, - "DeviceWidth/2": 1, - "For": 1, - "i#": 1, - "Until": 1, - "w*1.5": 1, - "Step": 1, - ".2": 1, - "x#": 1, - "y#": 1, - "x": 2, - "+": 5, - "i*Sin": 1, - "i*3": 1, - "y": 2, - "i*Cos": 1, - "i*2": 1, - "DrawRect": 1, - "Next": 1, - "hitbox.Collide": 1, - "event.pos": 1, - "Field": 2, - "updateCount": 3, - "Method": 4, - "OnCreate": 1, - "Print": 2, - "SetUpdateRate": 1, - "OnUpdate": 1, - "OnRender": 1, - "Cls": 1, - "updateCount*1.1": 1, - "Enemy": 1, - "Die": 1, - "Abstract": 1, - "field": 1, - "testField": 1, - "Bool": 2, - "True": 2, - "oss": 1, - "he": 2, + "VHDL": { + "begin": 1, + "use": 1, + "entity": 2, + "<": 1, + ")": 1, + "out": 1, + "b": 2, + "a": 2, + "(": 1, + ";": 7, "-": 2, - "killed": 1, - "me": 1, - "b": 6, - "extending": 1, - "with": 1, - "generics": 1, - "VectorNode": 1, - "Node": 1, - "": 1, - "array": 1, - "syntax": 1, - "Global": 14, - "listOfStuff": 3, - "String": 4, - "[": 6, - "]": 6, - "lessStuff": 1, - "oneStuff": 1, - "a": 3, - "comma": 1, - "separated": 1, - "sequence": 1, - "text": 1, - "worstCase": 1, - "worst.List": 1, - "": 1, - "escape": 1, - "characers": 1, + "library": 1, "in": 1, - "strings": 1, - "string3": 1, - "string4": 1, - "string5": 1, - "string6": 1, - "prints": 1, - ".ToUpper": 1, - "Boolean": 1, - "shorttype": 1, - "boolVariable1": 1, - "boolVariable2": 1, - "False": 1, - "preprocessor": 1, - "keywords": 1, - "#If": 1, - "TARGET": 2, - "DoStuff": 1, - "#ElseIf": 1, - "DoOtherStuff": 1, - "#End": 1, - "operators": 1, - "|": 2, - "&": 1, - "c": 1 - }, - "MoonScript": { - "types": 2, - "require": 5, - "util": 2, - "data": 1, - "import": 5, - "reversed": 2, - "unpack": 22, - "from": 4, - "ntype": 16, - "mtype": 3, - "build": 7, - "smart_node": 7, - "is_slice": 2, - "value_is_singular": 3, - "insert": 18, - "table": 2, - "NameProxy": 14, - "LocalName": 2, - "destructure": 1, - "local": 1, - "implicitly_return": 2, - "class": 4, - "Run": 8, - "new": 2, - "(": 54, - "@fn": 1, - ")": 54, - "self": 2, - "[": 79, - "]": 79, - "call": 3, - "state": 2, - "self.fn": 1, - "-": 51, - "transform": 2, - "the": 4, - "last": 6, - "stm": 16, "is": 2, - "a": 4, - "list": 6, + "architecture": 2, + "std_logic": 2, + "port": 1, + "file": 1, + "VHDL": 1, + "ieee": 1, + "rtl": 1, + "inverter": 2, + "ieee.std_logic_1164.all": 1, + "not": 1, "of": 1, - "stms": 4, - "will": 1, - "puke": 1, - "on": 1, - "group": 1, - "apply_to_last": 6, - "fn": 3, - "find": 2, - "real": 1, - "exp": 17, - "last_exp_id": 3, - "for": 20, - "i": 15, - "#stms": 1, - "if": 43, - "and": 8, - "break": 1, - "return": 11, - "in": 18, - "ipairs": 3, - "else": 22, - "body": 26, - "sindle": 1, - "expression/statement": 1, - "is_singular": 2, - "false": 2, - "#body": 1, - "true": 4, - "find_assigns": 2, - "out": 9, - "{": 135, - "}": 136, - "thing": 4, - "*body": 2, - "switch": 7, - "when": 12, - "table.insert": 3, - "extract": 1, - "names": 16, - "hoist_declarations": 1, - "assigns": 5, - "hoist": 1, - "plain": 1, - "old": 1, - "*find_assigns": 1, - "name": 31, - "*names": 3, - "type": 5, - "after": 1, - "runs": 1, - "idx": 4, - "while": 3, - "do": 2, - "+": 2, - "expand_elseif_assign": 2, - "ifstm": 5, - "#ifstm": 1, - "case": 13, - "split": 4, - "constructor_name": 2, - "with_continue_listener": 4, - "continue_name": 13, - "nil": 8, - "@listen": 1, - "unless": 6, - "@put_name": 2, - "build.group": 14, - "@splice": 1, - "lines": 2, - "Transformer": 2, - "@transformers": 3, - "@seen_nodes": 3, - "setmetatable": 1, - "__mode": 1, - "scope": 4, - "node": 68, - "...": 10, - "transformer": 3, - "res": 3, - "or": 6, - "bind": 1, - "@transform": 2, - "__call": 1, - "can_transform": 1, - "construct_comprehension": 2, - "inner": 2, - "clauses": 4, - "current_stms": 7, - "_": 10, - "clause": 4, - "t": 10, - "iter": 2, - "elseif": 1, - "cond": 11, - "error": 4, - "..t": 1, - "Statement": 2, - "root_stms": 1, - "@": 1, - "assign": 9, - "values": 10, - "bubble": 1, - "cascading": 2, - "transformed": 2, - "#values": 1, - "value": 7, - "@transform.statement": 2, - "types.cascading": 1, - "ret": 16, - "types.is_value": 1, - "destructure.has_destructure": 2, - "destructure.split_assign": 1, - "continue": 1, - "@send": 1, - "build.assign_one": 11, - "export": 1, - "they": 1, - "are": 1, - "included": 1, - "#node": 3, - "cls": 5, - "cls.name": 1, - "build.assign": 3, - "update": 1, - "op": 2, - "op_final": 3, - "match": 1, - "..op": 1, - "not": 2, - "source": 7, - "stubs": 1, - "real_names": 4, - "build.chain": 7, - "base": 8, - "stub": 4, - "*stubs": 2, - "source_name": 3, - "comprehension": 1, - "action": 4, - "decorated": 1, - "dec": 6, - "wrapped": 4, - "fail": 5, - "..": 1, - "build.declare": 1, - "*stm": 1, - "expand": 1, - "destructure.build_assign": 2, - "build.do": 2, - "apply": 1, - "decorator": 1, - "mutate": 1, - "all": 1, - "bodies": 1, - "body_idx": 3, - "with": 3, - "block": 2, - "scope_name": 5, - "named_assign": 2, - "assign_name": 1, - "@set": 1, - "foreach": 1, - "node.iter": 1, - "destructures": 5, - "node.names": 3, - "proxy": 2, - "next": 1, - "node.body": 9, - "index_name": 3, - "list_name": 6, - "slice_var": 3, - "bounds": 3, - "slice": 7, - "#list": 1, - "table.remove": 2, - "max_tmp_name": 5, - "index": 2, - "conds": 3, - "exp_name": 3, - "convert": 1, - "into": 1, - "statment": 1, - "convert_cond": 2, - "case_exps": 3, - "cond_exp": 5, - "first": 3, - "if_stm": 5, - "*conds": 1, - "if_cond": 4, - "parent_assign": 3, - "parent_val": 1, - "apart": 1, - "properties": 4, - "statements": 4, - "item": 3, - "tuple": 8, - "*item": 1, - "constructor": 7, - "*properties": 1, - "key": 3, - "parent_cls_name": 5, - "base_name": 4, - "self_name": 4, - "cls_name": 1, - "build.fndef": 3, - "args": 3, - "arrow": 1, - "then": 2, - "constructor.arrow": 1, - "real_name": 6, - "#real_name": 1, - "build.table": 2, - "look": 1, - "up": 1, - "object": 1, - "class_lookup": 3, - "cls_mt": 2, - "out_body": 1, - "make": 1, + "end": 2, + "example": 1 + }, + "TypeScript": { + "super": 2, + "meters": 2, + "Horse": 2, + "super.move": 2, + ";": 7, + "+": 3, + "}": 9, + ")": 17, + "(": 17, + "{": 9, + "Animal": 4, + "tom.move": 1, + "Snake": 2, + "move": 3, + "sam.move": 1, + "new": 2, + "class": 3, + "public": 1, + "constructor": 3, + "console.log": 1, + "extends": 2, + "name": 5, + "alert": 3, + "sam": 1, + "this.name": 1, + "tom": 1, + "var": 2 + }, + "TeX": { + "AtEndDocument": 1, + "SN": 3, + "nouppercase": 2, + "@latex@warning@no@line": 3, + "bibname": 2, + "makebox": 6, + "hrulefill": 5, + "@pdfoutput": 1, + "above": 1, + "vskip": 4, + "@schapter": 1, + ")": 3, + "advisor": 1, + "major": 1, + "@author": 1, + "@empty": 1, + "thing": 1, + "@advisor": 3, + "RO": 1, + "@altadvisorfalse": 1, + "setlength": 10, + "If": 1, + "titlepage": 2, + "special": 2, + "rightskip": 1, + "one": 1, + "m@ne": 2, + "@plus": 1, + "/01/27": 1, + "caps.": 2, + "footnote": 1, + "pdfinfo": 1, + "center": 7, + "oldthebibliography": 2, + "endtheindex": 1, + "of": 8, + "leftskip": 2, + "@highpenalty": 2, + "parfillskip": 1, + "would": 1, + "indexname": 1, + "addpenalty": 1, + "so": 1, + "right": 1, + "your": 1, + "RE": 2, + "@chapter": 2, + "@undefined": 1, + "When": 1, + "addtocontents": 2, + "or": 1, + "Table": 1, + "A": 1, + "CurrentOption": 1, + "fancyhead": 5, + "thechapter": 1, + "LO": 2, + "pagestyle": 2, + "just": 1, + "Abstract": 2, + "mkern": 2, + "to": 8, + "else": 7, + "ProvidesClass": 1, + "choose": 1, + "LEFT": 2, + "c": 5, + "page": 3, + "@topnewpage": 1, + "oddsidemargin": 2, + "if@restonecol": 1, + "With": 1, + "end": 5, + "space": 4, + "@title": 1, + "scshape": 2, + "evensidemargin": 2, + "Bachelor": 1, + "Presented": 1, + "Degree": 2, + "This": 2, + "LaTeX2e": 1, + "italic": 1, + "Contents": 1, + "PassOptionsToClass": 1, + "reedthesis": 1, + "LE": 1, + "And": 1, + "you": 1, + "lof": 1, + "hss": 1, + "thispagestyle": 3, + "theindex": 2, + "fi": 13, + "LaTeX": 3, + "if@mainmatter": 1, + "RToldcleardoublepage": 1, + "parindent": 1, + "side": 2, + "RToldchapter": 1, + "advance": 1, + "hb@xt@": 1, + "z@": 2, + "out": 1, + "and": 2, + "@department": 3, "sure": 1, - "we": 1, - "don": 1, - "string": 1, - "parens": 2, - "colon_stub": 1, - "super": 1, - "dot": 1, - "varargs": 2, - "arg_list": 1, - "Value": 1 + "Class": 4, + "@dotsep": 2, + "{": 180, + "l@chapter": 1, + "-": 2, + "hskip": 1, + "LoadClass": 1, + "fancyhf": 1, + "lineskip": 1, + "Requirements": 2, + "@restonecoltrue": 1, + "fancyhdr": 1, + "lowercase": 1, + "if@twocolumn": 3, + "pt": 1, + "addtolength": 8, + "vfil": 8, + "Capitals": 1, + "if@openright": 1, + "addvspace": 2, + "DeclareOption*": 1, + "advisor#1": 1, + "@altadvisor": 3, + "addcontentsline": 5, + "ifx": 1, + "begin": 4, + "book": 2, + "does": 1, + "small": 2, + "@topnum": 1, + ".": 1, + "if@altadvisor": 3, + "@afterindentfalse": 1, + "both": 1, + "chaptermark": 1, + "cm": 2, + "headsep": 3, + "not": 1, + "[": 22, + "The": 4, + "empty": 4, + "wd0": 7, + "endgroup": 1, + "@approvedforthe": 3, + "for": 5, + "majors": 1, + "approvedforthe#1": 1, + "will": 2, + "lot": 1, + "bfseries": 3, + "renewenvironment": 2, + "}": 185, + "ifnum": 2, + "Approved": 2, + "Arts": 1, + "division": 2, + "Fulfillment": 1, + "/Creator": 1, + "leaders": 1, + "ProcessOptions": 1, + "relax": 2, + "the": 14, + "symbol": 1, + "same": 1, + "College": 5, + "NeedsTeXFormat": 1, + "headheight": 4, + "altadvisor#1": 1, + "fancy": 1, + "selectfont": 6, + "nobreak": 2, + "department#1": 1, + "thedivisionof#1": 1, + "Specified.": 1, + "em": 3, + "chapter": 9, + "slshape": 2, + ".75em": 1, + "Reed": 5, + "like": 1, + "noexpand": 3, + "oldtheindex": 2, + "thanks": 1, + "@percentchar": 1, + "fontsize": 7, + "penalty": 1, + "leavevmode": 1, + "%": 59, + "textheight": 4, + "No": 3, + "global": 2, + "rawpostscript": 1, + "par": 6, + "RTcleardoublepage": 3, + "]": 22, + "rightmark": 2, + "Division": 2, + "@tempdima": 2, + "thepage": 1, + "tabular": 2, + "abstract": 1, + "m@th": 1, + "@makechapterhead": 2, + "newpage": 3, + "renewcommand": 6, + ".6in": 1, + "RTpercent": 3, + "c@tocdepth": 1, + "be": 3, + "pages": 2, + "use": 1, + "department": 1, + "@date": 1, + "newenvironment": 1, + ".5in": 3, + "refstepcounter": 1, + "typeout": 1, + "endoldthebibliography": 2, + "t": 1, + "baselineskip": 2, + "clearpage": 3, + "secdef": 1, + "p@": 3, + "setcounter": 1, + "twocolumn": 1, + "given": 3, + "remove": 1, + "division#1": 1, + "RIGHT": 2, + "In": 1, + "different": 1, + "endthebibliography": 1, + "topmargin": 6, + "newif": 1, + "makes": 2, + "if@twoside": 1, + "thebibliography": 2, + "left": 1, + "#1": 12, + "footnoterule": 1, + "footnotesize": 1, + "mu": 2, + "textwidth": 2, + "on": 1, + "sign": 1, + "thechapter.": 1, + "toc": 5, + "space#1": 1, + "leftmark": 2, + "comment": 1, + "maketitle": 1, + "AtBeginDvi": 2, + "@restonecolfalse": 1, + "cleardoublepage": 4, + "@chapapp": 2, + "/12/04": 3, + "#2": 4, + "things": 1, + "newcommand": 2, + "@thedivisionof": 3, + "bigskip": 2, + "c@page": 1, + "headers": 6, + "gdef": 6, + "@division": 3, + "null": 3, + "hfill": 1, + "def": 12, + "@pnumwidth": 3, + "psych": 1, + "options": 1, + "from": 1, + "hbox": 15, + "Partial": 1, + "setbox0": 2, + "protect": 2, + "References": 1, + "contentsname": 1, + "AtBeginDocument": 1, + "copy0": 1, + "centerline": 8, + "in": 10, + "(": 3, + "all": 1, + "let": 10, + "ifodd": 1, + "begingroup": 1, + "below": 2, + "endoldtheindex": 2, + "following": 1, + "@altadvisortrue": 1, + "approved": 1, + "onecolumn": 1, + "normalfont": 1, + "Thesis": 5, + "RequirePackage": 1, + "@afterheading": 1, + "c@secnumdepth": 1 + }, + "Rust": { + "child_no": 3, + "opts": 21, + "inverse": 1, + "handle": 3, + "control": 1, + "FIXME": 1, + "deriving_eq": 3, + "fin_ch.send": 1, + "replace": 8, + "distributed": 2, + "awake": 1, + "default_task_opts": 4, + "None": 23, + "If": 1, + "ch.f.swap_unwrap": 4, + "Failure": 6, + "rust_sched_current_nonlazy_threads": 2, + "fr_task_builder": 1, + "hidden": 1, + "test_avoid_copying_the_body_task_spawn": 1, + "rt": 29, + "self.t": 4, + "rust_task_inhibit_kill": 3, + "-": 33, + "function": 1, + "rekillable": 1, + "||": 11, + "fixed": 1, + "unlinked": 1, + ".spawn": 9, + "as": 7, + "self.consume": 7, + "linked": 15, + "": 1, + "po.recv": 10, + "_allow_failure": 2, + "atomically": 3, + "test_add_wrapper": 1, + "Fake": 1, + "opts.supervised": 2, + "doc": 1, + "+": 4, + "setup_ch": 1, + "transmute": 2, + "move": 1, + "extern": 1, + "@fn": 2, + "its": 1, + ")": 434, + "spawn": 15, + "T": 2, + "parent_po": 2, + "notify_chan": 24, + "self": 15, + "mechanisms": 1, + "The": 1, + "test_future_result": 1, + "TaskBuilder": 21, + "custom": 1, + "test_spawn_sched_childs_on_default_sched": 1, + "chan.send": 2, + "blk": 2, + "test_atomically_nested": 1, + "unkillable.": 1, + "}": 210, + "default": 1, + "chan2": 1, + "rust_dbg_lock_create": 2, + "mode": 9, + "_ch": 1, + "val": 4, + "sched_id": 2, + "unkillable": 5, + "task_id": 2, + "get_scheduler": 1, + "reported_threads": 2, + "self.opts.supervised": 5, + "failed": 1, + "Wrapper": 5, + ".supervised": 2, + "{": 213, + "#": 61, + "test_spawn_sched_no_threads": 1, + "supervised": 11, + "port.recv": 2, + "We": 1, + "match": 4, + "nested": 1, + "same": 1, + "addr_of": 2, + "Only": 1, + "runs": 1, + "cmp": 1, + "self.opts.notify_chan": 7, + "sched_mode": 1, + "ever": 1, + "child_po": 2, + "tasks": 1, + "SharedChan": 4, + "..": 8, + "Ok": 3, + "CurrentScheduler": 2, + "u": 2, + "default_id": 2, + "setup_ch.send": 1, + "comm": 5, + "mut": 16, + "can_not_copy": 11, + "test_spawn_linked_sup_fail_down": 1, + "child_ch.send": 1, + "self.gen_body": 2, + "consumed": 4, + "x_in_child": 4, + "local_data": 1, + "ThreadPerCore": 2, + "failure": 1, + "s": 1, + "test_avoid_copying_the_body_unlinked": 1, + "ch.clone": 2, + "": 3, + "child.": 1, + "else": 1, + "max_threads": 2, + "ne": 1, + "propagate": 1, + "TaskHandle": 2, + "spawn_unlinked": 6, + "used": 1, + "test_back_to_the_future_result": 1, + "ch.send": 11, + "should_fail": 11, + "sched": 10, + "on": 5, + "": 3, + "": 2, + "available": 1, + "this": 1, + "testrt": 9, + "priv": 1, + "x.opts.supervised": 1, + "Option": 4, + "": 2, + "get": 1, + "&&": 1, + "//": 20, + ".sched_mode": 2, + "DisallowFailure": 5, + "b0.add_wrapper": 1, + "generations": 2, + "specific": 1, + "while": 2, + "GenericChan": 1, + "Cell": 2, + "wrong": 1, + "test_avoid_copying_the_body_try": 1, + "DefaultScheduler": 2, + "Yield": 1, + "start_po": 1, + "Scheduler": 4, + "let": 84, + "test_spawn_sched_blocking": 1, + "ignore": 16, + "port2": 1, + "run": 1, + "self.opts.notify_chan.is_some": 1, + "x_in_parent": 2, + "port2.recv": 1, + "test_avoid_copying_the_body_spawn": 1, + ".future_result": 4, + "i": 3, + "test_spawn_failure_propagate_secondborn": 1, + "first": 1, + "spawn_supervised": 5, + "of": 3, + "po": 11, + "TaskResult": 4, + "<": 3, + "ManualThreads": 3, + "_p": 1, + "setup_po": 1, + "rust_get_task": 5, + "rust_num_threads": 1, + "fr_task_builder.spawn": 1, + "rust_dbg_lock_unlock": 3, + "GenericPort": 1, + "enum": 4, + "Tasks": 2, + "self.future_result": 1, + "x.opts.linked": 1, + "impl": 3, + "<()>": 6, + "hangs.": 1, + "consume": 1, + "task": 39, + "thread": 2, + "for": 10, + "rust_task_allow_kill": 3, + "rust_task_yield": 1, + "has": 1, + "Err": 2, + "child": 3, + "task_": 2, + "b1": 3, + "rust_dbg_lock_destroy": 2, + "self.opts.linked": 4, + "rust_dbg_lock_wait": 2, + "local_data_priv": 1, + "previous": 1, + "CPUs": 1, + "test_cant_dup_task_builder": 1, + "///": 13, + "PlatformThread": 2, + ".try": 1, + "self.opts.sched": 6, + "a": 9, + "punted": 1, + "pub": 26, + "Runs": 1, + ".unlinked": 3, + "AllowFailure": 5, + ".recv": 3, + "_": 4, + "fail": 17, + "": 2, + "notify_pipe_ch": 2, + "test_spawn_linked_sup_fail_up": 1, + "test_spawn_linked_sup_propagate_sibling": 1, + "Get": 1, + "test_sched_thread_per_core": 1, + "task.": 1, + "self.consumed": 2, + "uint": 7, + "OS": 3, + "future_result": 1, + "get_task": 1, + "call": 1, + "rust_sched_threads": 2, + "Each": 1, + "Shouldn": 1, + "]": 61, + "fails": 4, + "body": 6, + "test_platform_thread": 1, + "in": 3, + "stream": 21, + "unsafe": 31, + "test_try_fail": 1, + "pure": 2, + "[": 61, + "cfg": 16, + "test_spawn_thread_on_demand": 1, + "cell": 1, + "eq": 1, + "test_unkillable": 1, + "fin_ch": 1, + "scheduler": 6, + "Run": 3, + ".": 1, + "loop": 5, + "*libc": 6, + "own": 1, + "unwrap": 3, + "#3538": 1, + "SchedulerHandle": 2, + "one": 1, + "child_sched_id": 5, + "rust_task_inhibit_yield": 1, + "grandparent": 1, + "test_spawn_failure_propagate_nephew_or_niece": 1, + "pingpong": 3, + "running_threads": 2, + "foreign_stack_size": 3, + "Port": 3, + "*": 1, + "return": 1, + "U": 6, + "parent": 2, + "iter": 8, + "drop": 3, + "if": 7, + "Success": 6, + "(": 429, + "Some": 8, + "by": 1, + "": 2, + "&": 30, + "killed": 3, + "assert": 10, + "should": 2, + "around.": 1, + "TaskOpts": 12, + "util": 4, + "SchedMode": 4, + "been": 1, + "|": 20, + "mod": 5, + "modes": 1, + "fin_po.recv": 1, + "": 1, + "True": 1, + "add_wrapper": 1, + "Chan": 4, + "fn": 89, + "cast": 2, + "ptr": 2, + "SingleThreaded": 4, + "ThreadPerTask": 1, + "test_run_basic": 1, + "x": 7, + "_interrupts": 1, + "result": 18, + "option": 4, + "nolink": 1, + "setup_po.recv": 1, + "current": 1, + "Task": 2, + "sends": 1, + "self.spawn": 1, + "v": 6, + "b1.spawn": 3, + "*both*": 1, + "gen_body": 4, + "threads": 1, + "x.opts.sched": 1, + "failing": 2, + "Configure": 1, + "t": 24, + "other": 4, + "rust_task": 1, + "rust_task_allow_yield": 1, + "wrapper": 2, + "ownership": 1, + "use": 10, + "r": 6, + "prev_gen_body": 2, + "grandchild": 1, + ".eq": 1, + "Here": 1, + "rust_dbg_lock_lock": 3, + "port": 3, + "x.gen_body": 1, + "p": 3, + "spawnfn": 2, + "*uint": 1, + "notify_pipe_po": 2, + "among": 2, + "All": 1, + "parent_ch": 2, + "test_try_success": 1, + "try": 5, + "const": 1, + "c_void": 6, + "opts.linked": 2, + "Result": 3, + "struct": 7, + "int": 5, + "bool": 6, + "spawn_raw": 1, + "lock": 13, + "to": 6, + "A": 6, + "arg": 5, + "be": 2, + "start_po.recv": 1, + "leave": 1, + "are": 2, + "get_task_id": 1, + "ExistingScheduler": 1, + "start_ch.send": 1, + "cores": 2, + "test_child_doesnt_ref_parent": 1, + "test": 31, + "SchedOpts": 4, + "test_spawn_unlinked_unsup_no_fail_down": 1, + "chan2.send": 1, + "argument": 1, + "hanging": 1, + "pp": 2, + "chan": 2, + "true": 9, + ".spawn_with": 1, + "start_ch": 1, + "transfering": 1, + "didn": 1, + "rust_get_sched_id": 6, + "windows": 14, + "fin_po": 1, + ";": 218, + "spawn_with": 2, + "running_threads2": 2, + "have": 1, + "f": 38, + "child_ch": 4, + "spawn_sched": 8, + "repeat": 8, + "ch": 26, + "rust_task_is_unwinding": 1, + "the": 10, + "test_unkillable_nested": 1, + "Eq": 2, + "test_spawn_sched": 1, + "": 2, + "b0": 5, + "do": 49, + "*rust_task": 6, + "b": 2, + "across": 1, + "parent_sched_id": 4, + "p.recv": 1, + "would": 1, + "b.spawn": 2, + "running": 2, + "gap": 1, + "rust_dbg_lock_signal": 2, + "yield": 16, + "number": 1, + "false": 7, + "avoid_copying_the_body": 5, + "prelude": 1, + "Identity": 1, + "DeferInterrupts": 5, + "arg.take": 1 + }, + "Coq": { + "eauto.": 7, + "beq_id_false_not_eq": 1, + "Temp1.": 1, + "step": 9, + "rsc_R": 2, + "ly": 4, + "now": 24, + "mult_1.": 1, + "lt_O_neq": 2, + "tm_var": 6, + "meq_left": 1, + "mult_1_distr.": 1, + "munion_ass.": 2, + "Heq.": 6, + "Heqx.": 2, + "fmostlytrue": 5, + "E_IfFalse": 1, + "with": 223, + "%": 3, + "SimpleArith1.": 2, + "override_example": 1, + "Hg": 2, + "cons_sort": 2, + "Notation": 39, + "remove_decreases_count": 1, + "Hmo.": 4, + "elim": 21, + "Tactic": 9, + "IHrefl_step_closure.": 1, + "x2": 3, + "override": 5, + "rev_involutive.": 1, + "head": 1, + "Heqx": 4, + "total_relation_not_partial_function": 1, + "Prop": 17, + "mult_1": 1, + "id": 7, + "H1": 18, + "plus_distr.": 1, + "o": 25, + "assignment": 1, + "ty": 7, + "of": 4, + "Hneqx.": 2, + "all3_spec": 1, + "Hfsurj": 2, + "Arguments": 11, + "nil.": 2, + "map": 4, + "andb_true_elim1": 4, + "ELSE": 3, + "T": 49, + "insert": 2, + "IHe2": 6, + "bexp.": 1, + "test_orb3": 1, + "leA_antisym": 1, + "end.": 52, + "ty_arrow": 7, + "v_true": 1, + "Set": 4, + "i.": 2, + "IHe1.": 11, + "rt_refl.": 2, + "stack": 7, + "leA_trans": 2, + "clear": 7, + "rsc_step.": 2, + "nth_error_app2": 1, + "id1": 2, + "b1": 35, + "natprod.": 1, + "mult_mult.": 3, + "IHt1.": 1, + "permut_refl.": 5, + "EQ.": 2, + "red": 6, + "m1": 1, + "hd_opt": 8, + "step_deterministic": 1, + "transitive.": 1, + "E_BEq": 1, + "eqA_dec": 26, + "plus_0_r.": 1, + "Hlefy": 1, + "dep_pair_intro.": 3, + "proj2_sig": 1, + "pattern": 2, + "HE": 1, + "Hf2": 1, + "plus_swap.": 2, + "andb3": 5, + "Heqloopdef.": 8, + "S_nbeq_0": 1, + "IHa.": 1, + "partial_function.": 5, + "permut_length_1.": 2, + "Lt.lt_irrefl": 2, + "test_nandb1": 1, + "l3.": 1, + "e1.": 1, + "h": 14, + "ConT3": 1, + "H10": 1, + "test_remove_one1": 1, + "Permutation_rev": 3, + "q.": 2, + "Imp.": 1, + "M": 4, + "next_nat.": 1, + "noWhilesSKIP": 1, + "existsb2.": 1, + "in_map_iff": 1, + "2": 1, + "ident": 9, + "Ht": 1, + "HE.": 1, + "mumble.": 1, + "fold_map": 2, + "h2": 1, + "day.": 1, + "IHt1": 2, + "evenb": 5, + "bval": 2, + "IHhas_type.": 1, + "stepmany_congr_1": 1, + "Hy1.": 5, + "Hy2": 3, + "Permutation_app_swap": 1, + "H3.": 5, + "ST_ShortCut.": 1, + "Temp4.": 2, + "IHHmo.": 1, + "silly5": 1, + "|": 457, + "PN.": 2, + "dependent": 6, + "Permutation_alt.": 1, + "a": 207, + "T_App": 2, + "v_const.": 1, + "rsc_trans": 4, + "existsb2": 2, + "sillyex2": 1, + "st.": 7, + "IHc1.": 2, + "appears_free_in": 1, + "Permutation_middle.": 3, + "X0": 2, + "Reserved": 4, + "forallb": 4, + "curry_uncurry": 1, + "permutation_Permutation": 1, + "interval_discr": 1, + "DO": 4, + "sinstr": 8, + "mult_0_r.": 4, + "+": 227, + "Hm": 1, + "if_eqA": 1, + "natoption": 5, + "swap_pair": 1, + "H22.": 1, + "andb_true_intro.": 2, + "Hneqy": 1, + "aeval": 46, + "eval__value": 1, + "unfold_example_bad": 1, + "a.": 6, + "plus_ble_compat_1": 1, + "H22": 2, + "bool_step_prop4_holds": 1, + "le_antisymmetric.": 1, + "l.": 26, + "Permutation_nil_app_cons": 1, + "SMinus": 11, + "O.": 5, + "Permutation_nil": 2, + "pred_inj.": 1, + "e1": 58, + "le_n_O_eq.": 2, + "ceval_step": 3, + "plus_reg_l": 1, + "permut_add_cons_inside": 3, + "eqA.": 1, + "set": 1, + "test_beq_natlist1": 1, + "exists": 60, + "Z": 11, + "adapt.": 2, + "IHn": 12, + "HeqCoiso1.": 1, + "IHclos_refl_trans2.": 2, + "TODO": 1, + "ftrue": 1, + "lx": 4, + "app_ass.": 6, + "Inductive": 41, + "End": 15, + "HdRel": 4, + "Eqdep_dec.": 1, + "update": 2, + "clos_refl_trans": 8, + "mumble": 5, + "Hskip": 3, + "option_elim_hd": 1, + "t.": 4, + "Hf": 15, + "noWhilesAss.": 1, + "reflexivity.": 199, + "silly_presburger_formula": 1, + "using": 18, + "IHhas_type1.": 1, + "nth": 2, + "Permutation_map": 1, + "test_hd_opt2": 2, + "merge0": 1, + "beq_nat_sym": 2, + "m2.": 1, + "extend_neq": 1, + "Permutation_app_head": 2, + "exact": 4, + "constructor.": 16, + "ST_PlusConstConst.": 3, + "x1": 11, + "equiv_Tree": 1, + "emptyBag": 4, + "Resolve": 5, + "card": 2, + "IHa1.": 1, + "k2": 4, + "list123": 1, + "n": 369, + "Defined.": 1, + "beval": 16, + "H0": 16, + "tx": 2, + "map_length.": 1, + "cons": 26, + "no_whiles_eqv": 1, + "minus": 3, + "heap_to_list": 2, + "IHl.": 7, + "Lemma": 51, + "S": 186, + "contradict": 3, + "decide": 1, + "EQ": 8, + "test_orb2": 1, + "Hdec": 3, + "IHe1": 6, + "match": 70, + "Hal": 1, + "prog": 2, + "parsing": 3, + "red.": 1, + "AMinus": 9, + "SLoad": 6, + "Permut.": 1, + "nth_error_app1": 1, + "Permutation.": 2, + "m0": 1, + "trivial": 15, + "where": 6, + "app_ass": 1, + "Coiso2.": 3, + "IHbevalR": 1, + "Setoid": 1, + "s2": 2, + "Hlefx": 1, + "eq1.": 5, + "T_Abs.": 1, + "refl_step_closure": 11, + "multiplicity": 6, + "Hf1": 1, + "plus_n_Sm.": 1, + "injective_bounded_surjective": 1, + "perm_swap.": 2, + "Compare_dec": 1, + "simple": 7, + "E_Seq": 1, + "plus_O_n": 1, + "override_neq": 1, + "nat.": 4, + "test_factorial1": 1, + "Hnm": 3, + "total_relation": 1, + "InA": 8, + "T3": 2, + "Export": 10, + "g": 6, + "Hperm": 7, + "permut_add_cons_inside.": 1, + "build_heap": 3, + "Tree.": 1, + "IHrefl_step_closure": 1, + "app_nil_end": 1, + "no_whiles": 15, + "left.": 3, + "not_eq_beq_id_false": 1, + "exp": 2, + "nil_is_heap": 5, + "1": 1, + "munion_comm": 1, + "mult_comm": 2, + "t_false": 1, + "fold_map.": 1, + "SSCase": 3, + "bag": 3, + "command": 2, + "index": 3, + "PD": 2, + "test_andb34": 1, + "Hy1": 2, + "ST_Plus1.": 2, + "order": 2, + "state": 6, + "plus_1_1": 1, + "wednesday": 3, + "assumption": 10, + "silly4": 1, + "Hl2": 1, + "l4": 3, + "@HdRel_inv": 2, + "beq_id": 14, + "Abs": 2, + "permut_app_inv1": 1, + "{": 39, + "mult_1_plus": 1, + "override_example4": 1, + "type_scope.": 1, + "plus_n_Sm": 1, + "end": 16, + "perm_nil": 1, + "intros": 258, + "beval_short_circuit_eqv": 1, + "optimize_0plus": 15, + "sym_not_eq.": 2, + "sillyex1": 1, + "multiplicity_InA": 4, + "plus_reg_l.": 1, + "map_length": 1, + "AId": 4, + "Hneq.": 2, + "le.": 4, + "E": 7, + "aeval_iff_aevalR": 9, + "ceval_cases": 1, + "is_heap_rect": 1, + "Permutation_nth_error": 2, + "sinstr.": 1, + "c2": 9, + "le_antisymmetric": 1, + "*": 59, + "munion": 18, + "Hl": 1, + "mult": 3, + "IHHce2.": 1, + "other": 20, + "Scheme": 1, + "Hneqx": 1, + "rewrite": 241, + "beval_iff_bevalR": 1, + "H21": 3, + "fst": 3, + "sunday": 2, + "meq_congr": 1, + "multiset": 2, + "Fixpoint": 36, + "bin2un": 3, + "Qed.": 194, + "t": 93, + "LT": 14, + "extend.": 2, + "Hpq.": 1, + "inj_restrict": 1, + "beq_nat_eq": 2, + "Y": 38, + "nandb": 5, + "bl": 3, + "E_WhileLoop": 2, + "H11.": 1, + "ST_IfFalse": 1, + "total_relation1.": 2, + "constfun": 1, + "permut_sym": 4, + "i2.": 8, + "mult_1_1": 1, + "E_AMult": 2, + "IHm": 2, + "v2": 2, + "<=m}>": 1, + "le_not_a_partial_function": 1, + "com_cases": 1, + "oddb": 5, + "le_trans.": 1, + "reflexive.": 1, + "@In": 1, + "Local": 7, + "neq_dep_intro": 2, + "base": 3, + "x2.": 2, + "IHc2": 2, + "plus_swap": 2, + "IHl1.": 1, + "singletonBag": 10, + "merge_lem": 3, + "test_hd_opt1": 2, + "surjective_pairing": 1, + "antisymmetric": 3, + "specialize": 6, + "le_uniqueness_proof": 1, + "execute_theorem.": 1, + "x0": 14, + "E_ANum": 1, + "Hx.": 5, + "empty_relation.": 1, + "k1": 5, + "surjective": 1, + "Import": 11, + "m": 201, + "next_nat_closure_is_le": 1, + "le_n.": 6, + "app": 5, + "in_seq": 4, + "lt_n_Sn.": 1, + "inversion": 104, + "meq_sym": 2, + "eval_cases": 1, + "R": 54, + "A2": 4, + "E_BNot": 1, + "grumble": 3, + "in_map_iff.": 2, + "Hpermmm": 1, + "empty_state": 2, + "test_orb1": 1, + "l1.": 5, + "T2.": 1, + "contents": 12, + "Hxx": 1, + "In": 6, + "None.": 2, + "meq_right": 2, + "LeA": 1, + "BEq": 9, + "Heqf.": 2, + "partial_function": 6, + "Hy": 14, + "incbin": 2, + "SPlus": 10, + "o.": 4, + "com": 5, + "friday": 3, + "z.": 6, + "ListNotations.": 1, + "Heq": 8, + "Type": 86, + "Implicit": 15, + "s1": 20, + "bool": 38, + "beq_id_eq": 4, + "Gamma": 10, + "partial_map": 4, + "IHle.": 1, + "eq.": 11, + "Sorted_inv": 2, + "Some": 21, + "loopdef.": 1, + "nat_bijection_Permutation": 1, + "repeat": 11, + "Heqst1": 1, + "treesort_twist2": 1, + "beq_id_false_not_eq.": 1, + "by": 7, + "f": 108, + "plus_comm.": 3, + "H1.": 31, + "T2": 20, + "plus_1_1.": 1, + "bexp": 22, + "Temp2.": 1, + "plus3.": 1, + "tp": 2, + "intuition.": 2, + "NoDup_Permutation_bis": 2, + "mult_assoc": 1, + "node_is_heap": 7, + "auto.": 47, + "Hlt.": 1, + "Fact": 3, + "simpl.": 70, + "natlist": 7, + "next_weekday": 3, + "T12": 2, + "SimpleArith2.": 1, + "xs": 7, + "meq_congr.": 1, + "xSn": 21, + "0": 5, + "unfold": 58, + "Theorem": 115, + "ST_App2": 1, + "fold_map_correct": 1, + "E.": 2, + "and": 1, + "rev": 7, + "le_S.": 4, + "option": 6, + "adapt_injective.": 1, + "injection": 4, + "test_andb33": 1, + "forall": 248, + "execute_theorem": 1, + "n2": 41, + "E_BLe": 1, + "andb": 8, + "replace": 4, + "y2": 5, + "bin.": 1, + "Hy0": 1, + "relation": 19, + "case": 2, + "Morphisms.": 2, + "tm_app": 7, + "fold": 1, + "Hl1": 1, + "multiplicity_InA_S": 1, + "x=": 1, + "l3": 12, + "BO": 4, + "refl_equal": 4, + "THEN": 3, + "silly3": 1, + "v_abs": 1, + "ty.": 2, + "Hint": 9, + "z": 14, + "mult_plus_distr_r": 1, + "defs.": 2, + "Hneqy.": 2, + "Arguments.": 2, + "override_example3": 1, + "Permutation_length.": 1, + "right.": 9, + "next_nat": 1, + "Permutation_app.": 1, + "Permutation_app_tail": 2, + "_": 67, + "munion_rotate.": 1, + "j.": 1, + "IHe2.": 10, + "bevalR": 11, + "tm_abs": 9, + "Lt.lt_le_trans": 2, + "s_execute2": 1, + "st": 113, + "IHcontra2.": 1, + "D": 9, + "tm_if": 10, + "X.": 4, + "eq_nat_dec.": 1, + "c1": 14, + "ST_App1.": 2, + "permut_tran": 1, + "Ltac": 1, + "constructor": 6, + "E_Skip": 1, + ")": 1249, + "t3": 6, + "T_Var.": 1, + "destruct": 94, + "Section": 4, + "E_BTrue": 1, + "E_Anum": 1, + "le_n_S": 1, + "change": 1, + "plus_comm": 3, + "pair": 7, + "tm_false.": 3, + "order.": 1, + "r.": 3, + "s": 13, + "t2.": 4, + "test_repeat1": 1, + "meq.": 2, + "Permutation_cons_append": 1, + "subst.": 43, + "leA": 25, + "optimize_0plus_all_sound": 1, + "X": 191, + "bool_step_prop4": 1, + "IHl": 8, + "v1": 7, + "s_compile": 36, + "eq_S.": 1, + "empty": 3, + "not": 1, + "HF.": 3, + "Hlt": 3, + "aevalR_first_try.": 2, + "E_APlus": 2, + "i2": 10, + "ST_IfTrue.": 1, + "bool_step_prop4.": 2, + "reflexive": 5, + "Nonsense.": 4, + "SetoidList.": 1, + "@Permutation": 5, + "nil": 46, + "contradiction": 8, + "SPush": 8, + "is_heap": 18, + "aevalR": 18, + "Hy2.": 2, + "Minus.minus_Sn_m": 1, + "Lt.le_lt_or_eq": 3, + "remove_one": 3, + "H4.": 2, + "revert": 5, + "Temp5.": 1, + "IHc1": 2, + "Permutation_app": 3, + "Equivalence": 2, + "first": 18, + "contra1.": 1, + "transitivity": 4, + "assumption.": 61, + "le_ind": 1, + "IHa2": 1, + "beq_nat_O_l": 1, + "app_comm_cons": 5, + "ct": 2, + "nn.": 1, + "Forall2_app": 1, + "only": 3, + "adapt": 4, + "length": 21, + "l": 379, + "IHc2.": 2, + "H.": 100, + "Logic.": 1, + "A1": 2, + "Permutation_ind_bis": 2, + "WHILE": 5, + "Q": 3, + "bounded": 1, + "IHHy1": 2, + "eval": 8, + "Qed": 23, + "leA_dec": 4, + "IHe": 2, + "idBBBB": 2, + "permut_add_inside_eq": 1, + "Hfbound.": 2, + "tuesday.": 1, + "SCase.": 3, + "split.": 17, + "Hx": 20, + "le_trans": 4, + "permut_length_2": 1, + "b.": 14, + "app_nil_end.": 1, + "id.": 1, + "day": 9, + "omega": 7, + "Permutation_cons_append.": 3, + "||": 1, + "optimize_and_sound": 1, + "m.": 21, + "card_inj": 1, + "ST_AppAbs.": 3, + "P.": 5, + "zero_nbeq_S": 1, + "heap_exist": 3, + "treesort_twist1": 1, + "silly2a": 1, + "Case_aux": 38, + "Forall2.": 1, + "T1": 25, + "loop": 2, + "e": 53, + "natprod": 5, + "HeqCoiso2.": 1, + "congruence.": 1, + "LE": 11, + "IHHce.": 2, + "HeqS": 3, + "plus_1_neq_0": 1, + "associativity": 7, + "next_nat_partial_function": 1, + "index_okx": 1, + "HSnx": 1, + "factorial": 2, + "contra.": 19, + "simpl": 116, + "T11": 2, + "idB": 2, + "tm_plus": 30, + "Permutation_NoDup": 1, + "left": 6, + "omega.": 7, + "/": 41, + "IHhas_type2.": 1, + "combine": 3, + "LT.": 5, + "Hq": 3, + "symmetry": 4, + "merge0.": 2, + "IHt.": 1, + "permut_trans": 5, + "discriminate.": 2, + "n1": 45, + "dep_pair_intro": 2, + "eq_rect_eq_nat.": 1, + "test_andb32": 1, + "y1": 6, + "filter": 3, + "IHa2.": 1, + "eqA": 29, + "Module": 11, + "merge": 5, + "noWhilesSeq.": 1, + "a2": 62, + "eqA_dec.": 2, + "compatible": 1, + "if_eqA_refl": 3, + "results": 1, + "@app": 1, + "AMult": 9, + "noWhilesAss": 1, + "leA_Tree": 16, + "l2": 73, + "STLC.": 1, + "Hfinj.": 3, + "IHm.": 1, + "in": 221, + "le_Sn_le": 2, + "y": 116, + "override_example2": 1, + "permut_length": 1, + "cf": 2, + "bin": 9, + "Heqg": 1, + "normal_form.": 2, + "mult_distr": 1, + "ST_Plus1": 2, + "Hmo": 1, + "rt_refl": 1, + "s_execute1": 1, + "silly_ex": 1, + "ST_If": 1, + "rsc_refl.": 4, + "not_eq_beq_false.": 1, + "characterization": 1, + "discriminate": 3, + "(": 1248, + "Case": 51, + "tm_cases": 1, + "tm_false": 5, + "permut_remove_hd": 1, + "..": 4, + "list": 78, + "eq2.": 9, + "t2": 51, + "insert_exist": 4, + "BTrue": 10, + "meq_trans.": 1, + "leA_refl.": 1, + "ST_Funny": 1, + "do": 4, + "Permutation_middle": 2, + "ty_Bool.": 1, + "value.": 1, + "value_not_same_as_normal_form": 2, + "beq_nat_O_r": 1, + "permut_sym_app": 1, + "arith": 4, + "None": 9, + "IHHT1.": 1, + "E_Const": 2, + "Permutation_impl_permutation": 1, + "Lt.lt_not_le": 2, + "remember": 12, + "H4": 7, + "r": 11, + "e.": 15, + "seq": 2, + "Hypothesis": 7, + "S.": 1, + "perm_swap": 1, + "@rev": 1, + "Permutation_sym": 1, + "ny.": 1, + "if_eqA_then": 1, + "Alternative": 1, + "i1": 15, + "<": 76, + "test_aeval1": 1, + "List": 2, + "snoc_with_append": 1, + "IHP": 2, + "try": 17, + "plus_id_exercise": 1, + "APlus": 14, + "ST_Plus2.": 2, + "Prop.": 1, + "Arith.": 2, + "card_interval.": 2, + "level": 11, + "stepmany": 4, + "countoddmembers": 1, + "permut_right": 1, + "permutation": 43, + "plus_id_example": 1, + "IHa1": 1, + "Sorted.": 1, + "normalizing": 1, + "Forall2_cons": 1, + "x.": 3, + "In_split": 1, + "eapply": 8, + "le_neq_lt": 2, + "test_nandb4": 1, + "ST_IfTrue": 1, + "k": 7, + "strong_progress": 2, + "v_const": 4, + "total": 2, + "plus3": 2, + "app_assoc": 2, + "P": 32, + "v_abs.": 2, + "aexp_cases": 3, + "Permutation": 38, + "negb": 10, + "le_Sn_n": 5, + "E_AMinus": 2, + "prod": 3, + "beval_short_circuit": 5, + "IHp.": 2, + "munion_ass": 1, + "L12": 2, + "Playground1.": 5, + "setoid_rewrite": 2, + "no_Whiles": 10, + "has_type": 4, + "Sn_le_Sm__n_le_m": 2, + "eq": 4, + "permut_length_1": 1, + "le_O_n.": 2, + "IHi1": 3, + "Definition": 46, + "existsb_correct": 1, + "SimpleArith0.": 2, + "rev_exercise": 1, + "HT1.": 1, + "Hf.": 1, + "Hmn.": 1, + "C.": 3, + "permut_rev": 1, + "meq_singleton": 1, + "split": 14, + "cl": 1, + "tactic": 9, + "beq_id_refl": 1, + "pose": 2, + "HT.": 1, + "H12.": 1, + "override.": 2, + "d": 6, + "T0": 2, + "subst": 7, + "double": 2, + "permut_middle": 1, + "permut_cons_eq": 3, + "Permutation_trans": 4, + "@nil": 1, + "st1": 2, + "apply": 340, + "Sorted": 5, + "eqA_equiv": 1, + "Permutation_app_inv": 1, + "BLe": 9, + "test_oddb2": 1, + "T11.": 4, + "SingletonBag": 2, + "Hfx": 2, + "multiplicity_NoDupA": 1, + "monday": 5, + "other.": 4, + ".": 433, + "Hle": 1, + "h.": 1, + "IHbevalR2": 1, + "orb": 8, + "Hp": 5, + "bad": 1, + "eq_rect": 3, + "test_andb31": 1, + "gtA": 1, + "n0": 5, + "a1": 56, + "Hy.": 3, + "mult_plus_distr_r.": 1, + "permut_refl": 1, + "adapt_injective": 1, + "Hfinj": 1, + "l1": 89, + "generalize": 13, + "silly1": 1, + "rsc_refl": 1, + "rt_step": 1, + "break_list": 5, + "x": 266, + "plus_assoc": 1, + "s_compile1": 1, + "override_example1": 1, + "test": 4, + "NEQ": 1, + "app_length.": 2, + "NoDup_cardinal_incl": 1, + "END": 4, + "Heqf": 1, + "Hceval.": 4, + "le_not_lt": 1, + "]": 173, + "card_interval": 1, + "l2.": 8, + "HeapT3": 1, + "Permutation_app_comm": 3, + "test_next_weekday": 1, + "Hmn": 1, + "B": 6, + "Injection": 1, + "remove_all": 2, + "p.": 9, + "Heqr.": 1, + "plus_O_n.": 1, + "symmetric": 2, + "Permutation_nil_cons": 1, + "injective": 6, + "no_whiles_terminate": 1, + "SMult": 11, + "invert_heap": 3, + "BAnd": 10, + "E_Ass": 1, + "a0.": 1, + "plus_assoc.": 4, + "list_to_heap": 2, + "noWhilesSeq": 1, + "into": 2, + "optimize_and": 5, + "f_equal": 1, + "Type.": 3, + "t1": 48, + "<=n),>": 1, + "ble_nat": 6, + "card_inj_aux": 1, + "true.": 16, + "ty_Bool": 10, + "rtc_rsc_coincide": 1, + "permut_app": 1, + "true": 68, + "interval_dec": 1, + "beq_natlist": 5, + "Hceval": 2, + "Sorting.": 1, + "Instance": 7, + "@munion": 1, + "IHs.": 2, + "H2.": 20, + "Temp3.": 1, + "inversion_clear": 6, + "beq_false_not_eq": 1, + "if": 10, + "H3": 4, + "E_BFalse": 1, + "q": 15, + "test_step_2": 1, + "IHl1": 1, + "Lt.S_pred": 3, + "flat_exist": 3, + "trivial.": 14, + "FI": 3, + "Equivalence_Reflexive.": 1, + "at": 17, + "reflexivity": 16, + "Equivalence_Reflexive": 1, + "InA_split": 1, + "lt": 3, + ";": 375, + "existsb": 3, + "Htrans": 1, + "<=>": 12, + "permutation.": 1, + "bin_comm": 1, + "empty_relation_not_partial_funcion": 1, + "not.": 3, + "injective_map_NoDup": 2, + "Tree_Leaf.": 1, + "eq_rect_eq_nat": 2, + "b3": 2, + "datatypes.": 47, + "Hnm.": 3, + "eq_add_S": 2, + "v_false": 1, + "le_reflexive": 1, + "eq2": 1, + "prod_uncurry": 3, + "Forall2": 2, + "idtac": 1, + "noWhilesIf": 1, + "test_nandb3": 1, + "Hgefy": 1, + "<=n}>": 1, + "H12": 2, + "Relations.": 1, + "j": 6, + "override_eq": 1, + "permut_InA_InA": 3, + "Let": 8, + "step_cases": 4, + "transitive": 8, + "y2.": 3, + "N.": 1, + "E_IfTrue": 2, + "BNot": 9, + "Constructors": 3, + "Hginj": 1, + "Example": 37, + "context_invariance...": 2, + "Y.": 1, + "O": 98, + "then": 9, + "Require": 17, + "plus2": 1, + "ST_App2.": 1, + "step_example3": 1, + "nth_error": 7, + "meq": 15, + "Hneq": 7, + "intros.": 27, + "tm_true": 8, + "IHclos_refl_trans1.": 2, + "False.": 1, + "leA_Tree_Leaf": 5, + "noWhilesIf.": 1, + "IHt3": 1, + "Mergesort.": 1, + "normal_form": 3, + "if_eqA_rewrite_l": 1, + "AExp.": 2, + "Hle.": 1, + "s_execute": 21, + "IHHce1.": 1, + "PG": 2, + "@if_eqA_rewrite_l": 2, + "Global": 5, + "Tree_Node": 11, + "snd": 3, + "is_heap_rec": 1, + "stepmany_congr2": 1, + "silly7": 1, + "seq_NoDup.": 1, + "count": 7, + "s.": 4, + "t3.": 2, + "le_S_n": 2, + "is": 4, + "mult_plus_1": 1, + "interval_dec.": 1, + "low_trans": 3, + "merge_exist": 5, + "SfLib.": 2, + "rev_snoc": 1, + "<->": 31, + "andb_false_r": 1, + "c": 70, + "tm": 43, + "Htrans.": 1, + "perm_trans": 1, + "mult_0_plus": 1, + "beq_nat_refl": 3, + "idB.": 1, + "step.": 3, + "thursday": 3, + "H": 76, + "Basics.": 2, + "test_oddb1": 1, + "leA_refl": 1, + "Hgsurj": 3, + "leA_antisym.": 1, + "H5.": 1, + "equivalence": 1, + "via": 1, + "aexp": 30, + "-": 508, + "Id": 7, + "plus_rearrange": 1, + "rsc_step": 4, + "IHA": 2, + "Permutation_in.": 2, + "E_BAnd": 1, + "PermutSetoid": 1, + "SCase": 24, + "IHbevalR1": 1, + "Hlep.": 3, + "right": 2, + "mult_0_1": 1, + "E_WhileEnd": 2, + "HT": 1, + "nil_is_heap.": 1, + "a0": 15, + "lt.": 2, + "Hl.": 1, + "Omega": 1, + "IHP2": 1, + "l0": 7, + "Coiso1.": 2, + "f_equal.": 1, + "app_nil_r": 1, + "Permutation_add_inside": 1, + "r2": 2, + "aexp.": 1, + "mult_mult": 1, + "symmetry.": 2, + "permut_nil": 3, + "false.": 12, + "else": 9, + "e3": 1, + "idBB": 2, + "double_injective": 1, + "permut_add_inside": 1, + "exist": 7, + "ny": 2, + "exfalso.": 1, + "IHp": 2, + "Immediate": 1, + "Hgsurj.": 1, + "types_unique": 1, + "Permut_permut.": 1, + "incl": 3, + "Hswap": 2, + "A": 113, + "bexp_cases": 4, + "rt_step.": 2, + "NoDup": 4, + "K_dec_set": 1, + "c.": 5, + "preservation": 1, + "value": 25, + "&": 21, + "bool.": 1, + "Ht.": 3, + "Q.": 2, + "prod_curry": 3, + "lt_le_trans": 1, + "ST_IfFalse.": 1, + "le_n": 4, + "context": 1, + "let": 3, + "ST_PlusConstConst": 3, + "assertion": 3, + "Heqy": 1, + "minustwo": 1, + "le_S": 6, + "natoption.": 1, + "Permutation_cons_app": 3, + "p": 81, + "insert_spec": 3, + "H2": 12, + "test_step_1": 1, + "app_length": 1, + "permut_cons": 5, + "H0.": 24, + "snoc": 9, + "flat_spec": 3, + "beq_natlist_refl": 1, + "saturday": 3, + "andb_true_elim2": 4, + "meq_trans": 10, + "tm_const": 45, + "v.": 1, + "false": 48, + "test_orb4": 1, + "as": 77, + "option_elim": 2, + "intro": 27, + "noWhilesSKIP.": 1, + "cons_leA": 2, + "eauto": 10, + "Sn_le_Sm__n_le_m.": 1, + "adapt_ok": 2, + "True": 1, + "perm_skip": 1, + "if_eqA_rewrite_r": 1, + "b2": 23, + "id2": 2, + "fun": 17, + "Ha": 6, + "NatList.": 2, + "proj1_sig": 1, + "plus": 10, + "Hafi.": 2, + "list_contents_app": 5, + "IHn.": 3, + "BFalse": 11, + "ex_falso_quodlibet.": 1, + "tm.": 3, + "le_reflexive.": 1, + "Forall2_app_inv_r": 1, + "Hf3": 2, + "iff": 1, + "HF": 2, + "eq1": 6, + "H8.": 1, + "mult_plus_1.": 1, + "list_contents": 30, + "ANum": 18, + "nat": 108, + "Relations": 2, + "Heqr": 3, + "test_nandb2": 1, + "Hgefx": 1, + "induction": 81, + "nf_same_as_value": 3, + "H11": 2, + "multiplicity_InA.": 1, + "nth_error_None": 4, + "BD.": 1, + "tuesday": 3, + "leA_Tree_Node": 1, + "rename": 2, + "LeA.": 1, + "i": 11, + "preorder": 1, + "Logic.eq": 2, + "munion_comm.": 2, + "lt_trans": 4, + "NoDupA_equivlistA_permut": 1, + "seq_NoDup": 1, + "N": 1, + "A.": 6, + "ST_If.": 2, + "IHb": 1, + "Proof": 12, + "al": 3, + "permut_eqA": 1, + "NoDupA": 3, + "Lt.le_or_lt": 1, + "fix": 2, + "treesort": 1, + "i1.": 3, + "3": 2, + "Permutation_refl": 1, + "optimize_0plus_sound": 4, + "extend": 1, + "IHt2": 3, + "@length": 1, + "s_compile_correct": 1, + "Multiset": 2, + "Context.": 1, + "x1.": 3, + "Variable": 7, + "IHHT2.": 1, + "silly6": 1, + "uncurry_uncurry": 1, + "E_Plus": 2, + "f.": 1, + "proof": 1, + "Permutation_length": 2, + "}": 35, + "IFB": 4, + "optimize_0plus_all": 2, + "nil_app": 1, + "Lists.": 1, + "LE.": 3, + "lt_irrefl": 2, + "substitution_preserves_typing": 1, + "b": 89, + "Proof.": 208, + "Tree": 24, + "T.": 9, + "rt_trans": 3, + "permut_cons_InA": 3, + "decide_left": 1, + "eq_refl": 2, + "tl": 8, + "HSnx.": 1, + "G": 6, + "v_funny.": 1, + "ceval_step_more": 7, + "le": 1, + "Permutation_alt": 1, + "ble_n_Sn.": 1, + "power": 2, + "XtimesYinZ": 1, + "Proper": 5, + "Heqe.": 3, + "Hn": 1, + "assert": 68, + "Hfbound": 1, + "arith.": 8, + "IH": 3, + "n.": 44, + "le_lt_trans": 2, + "le_order": 1, + "Hnil": 1, + "HeqS.": 2, + "cons_leA.": 2, + "y.": 15, + "multiplicity_InA_O": 2, + "beq_nat": 24, + "EmptyBag": 2, + "nat_scope.": 3, + "t_true": 1, + "list_contents_app.": 1, + "SKIP": 5, + "v": 28, + "r1": 2, + "e2": 54, + "test_optimize_0plus": 1, + "auto": 73, + "Tree_Leaf": 9, + "permut_conv_inv": 1, + "le_lt_dec": 9, + "@meq": 4, + "*.": 110, + "beq_nat_refl.": 1, + "nx": 3, + "[": 170, + "Hlep": 4, + "pred": 3, + "test_beq_natlist2": 1 }, "Nemerle": { - "using": 1, - "System.Console": 1, - ";": 2, "module": 1, - "Program": 1, - "{": 2, - "Main": 1, - "(": 2, + "}": 2, ")": 2, - "void": 1, + "(": 2, + "{": 2, + ";": 2, + "System.Console": 1, + "using": 1, "WriteLine": 1, - "}": 2 + "void": 1, + "Main": 1, + "Program": 1 }, - "Nginx": { - "user": 1, - "www": 2, - ";": 35, - "worker_processes": 1, - "error_log": 1, - "logs/error.log": 1, - "pid": 1, - "logs/nginx.pid": 1, - "worker_rlimit_nofile": 1, - "events": 1, - "{": 10, - "worker_connections": 1, - "}": 10, - "http": 3, - "include": 3, - "conf/mime.types": 1, - "/etc/nginx/proxy.conf": 1, - "/etc/nginx/fastcgi.conf": 1, - "index": 1, - "index.html": 1, - "index.htm": 1, - "index.php": 1, - "default_type": 1, - "application/octet": 1, - "-": 2, - "stream": 1, - "log_format": 1, - "main": 5, - "access_log": 4, - "logs/access.log": 1, - "sendfile": 1, - "on": 2, - "tcp_nopush": 1, - "server_names_hash_bucket_size": 1, - "#": 4, - "this": 1, - "seems": 1, - "to": 1, - "be": 1, - "required": 1, - "for": 1, - "some": 1, - "vhosts": 1, - "server": 7, - "php/fastcgi": 1, - "listen": 3, - "server_name": 3, - "domain1.com": 1, - "www.domain1.com": 1, - "logs/domain1.access.log": 1, - "root": 2, - "html": 1, - "location": 4, - ".php": 1, - "fastcgi_pass": 1, - "simple": 2, - "reverse": 1, - "proxy": 1, - "domain2.com": 1, - "www.domain2.com": 1, - "logs/domain2.access.log": 1, - "/": 4, - "(": 1, - "images": 1, - "|": 6, - "javascript": 1, - "js": 1, - "css": 1, - "flash": 1, - "media": 1, - "static": 1, - ")": 1, - "/var/www/virtual/big.server.com/htdocs": 1, - "expires": 1, - "d": 1, - "proxy_pass": 2, - "//127.0.0.1": 1, - "upstream": 1, - "big_server_com": 1, - "weight": 2, + "Matlab": { + "te": 2, + "raise": 19, + "kP2": 3, + "pzplot": 1, + "line.": 2, + "twentyPercent.": 2, + "closedBode": 3, + "...": 162, + "@": 1, + "mandatory": 2, + "lane.": 1, + "for": 77, + "arrays": 1, + "deps2c": 3, + "arrayfun": 2, + "with": 2, + "y_max": 3, + "%": 552, + "bops.FreqUnits": 1, + ".handlingMetric.num": 1, + "data.system.D": 1, + "meaningless": 2, + "str": 2, + "py_T": 4, + "Metric": 2, + "classdef": 1, + "holder": 2, + "vx_0_min": 8, + "Double": 1, + "openBode": 3, + "vx_0.": 2, + "x2": 1, + "den": 15, + "path_plots": 1, + "ticks": 4, + "h/2": 2, + "k3": 3, + "minLine": 4, + "analytic": 3, + "choose_plant": 4, + "colors": 13, + "compute": 2, + "openLoops.Psi.den": 1, + "of": 35, + "vy0": 2, + "gains.Yellowrev.Fast": 1, + "dphi": 12, + "depends": 1, + "Ys.num": 1, + "loc": 3, + "path": 3, + "T": 22, + "transfer": 1, + "per": 5, + "args.sampleTime": 1, + "settings.inputs": 1, + "nome": 2, + "deltaNum": 2, + "coords": 2, + "clear": 13, + "/abs": 3, + "XColor": 1, + "which": 2, + "Position": 6, + "RK4": 3, + "red": 1, + "/length": 1, + "bodeoptions": 1, + "mine": 1, + "portrait": 3, + "@fH": 1, + "through": 1, + "fileparts": 1, + "grid_min": 3, + "data.forceTF.PhiDot.num": 1, + "mass": 2, + "Path": 1, + "store": 4, + "parfor": 5, + "de": 4, + "args.detrend": 1, + "sense": 2, + "save": 2, + "h": 19, + "e_0": 7, + "data.bicycle.inputs": 1, + "data.Browser": 1, + "convert_variable": 1, + "y_T": 17, + "lane_change": 1, + "removeStates": 1, + "fieldnames": 5, + "mai": 1, + "xLab": 8, + "aux": 3, + "zeros": 60, + "numeric.C": 1, + "h2": 5, + "handling_all_bikes": 1, + "grid_x": 3, + "advected": 2, + "setoptions": 2, + "options": 14, + "closedLoops.PhiDot.den": 1, + "dy": 5, + "width": 3, + "goodness": 1, + "free": 1, + "interesting": 4, + "gains.Fisher.Fast": 1, + "gains.Browserins.Fast": 1, + "Check": 6, + "|": 2, + "ci": 9, + "x_0_max": 8, + "Compute_FILE_gpu": 1, + "a": 17, + "largest": 1, + "closedLoops.Delta.den": 1, + "opts.PhaseMatchingValue": 2, + "analytic.B": 1, + "aux.m": 3, + "final": 2, + "data.Benchmark.Medium": 2, + "c3": 3, + "openLoops.Psi.num": 1, + "guess.": 2, + "colorbar": 1, + "*Omega": 5, + "xn": 4, + "+": 169, + "sum": 2, + "*vx_0": 1, + "Bode": 1, + "filesep": 14, + "k1*h/2": 1, + "*ds_vx": 2, + "value1": 4, + "advected_x": 12, + "load_data": 4, + "u": 3, + "y_a": 10, + "par": 7, + "yl3": 8, + "gains.Browser.Medium": 1, + "they": 2, + "set": 43, + "Kinetic": 2, + "self": 2, + "conditions": 3, + "kP1": 4, + "ax": 15, + "vx_f": 3, + "back": 1, + "x_r": 6, + "spiegarsi": 1, + "TODO": 1, + "black": 1, + "delta_e": 3, + "StateName": 1, + "ismember": 15, + "sameSpeedIndices": 5, + "data.system.C": 1, + "vx_0": 37, + "task": 1, + ".*": 2, + "k2*h/2": 1, + "overrideNames": 2, + "Color": 13, + "rollData.path": 1, + "tempo": 4, + "lambda_max": 2, + "Distance": 1, + "matrice": 1, + "pu": 1, + "resultPlantTwo.fit": 1, + "VAF": 2, + "semicolon": 2, + "blue": 1, + "type": 4, + "n": 102, + "closedLoops.PhiDot.num": 1, + "bicycle_state_space": 1, + "k2": 3, + "tf2ss": 1, + "shading": 3, + "v_y": 3, + "overwrite_settings": 2, + "np": 8, + "S": 5, + "textX": 3, + "decide": 1, + "position": 2, + "getState": 1, + "calcolare": 2, + "t_integr": 1, + "bikeData.modelPar.": 1, + "Lagrangian": 3, + "gains.Pista.Slow": 1, + "how": 1, + "phiDotDen": 2, + "h_a": 5, + "bicycle.InputName": 2, + "data.modelPar.D": 1, + "idnlgrey": 1, + "speedsInFile": 5, + "notGiven": 5, + "memory": 1, + "speeds": 21, + "vOut": 2, + "w_a": 7, + "cleaning": 1, + "RelTol": 2, + "error": 14, + "g": 5, + "field": 2, + "Deviation": 1, + "E_L1": 4, + "pad": 10, + "display": 10, + "openLoops.Y.den": 1, + "eye": 9, + "obj": 2, + "userSettings": 3, + "numeric.B": 1, + "1": 1, + "closeLeg": 2, + "integration": 9, + "command": 2, + "index": 6, + "h1": 5, + "x_min": 3, + "order": 11, + "dx": 6, + "_e": 1, + "laneLength": 4, + "plantNum": 1, + "y_0.": 2, + "Loop": 1, + "box": 4, + "@RKF45_FILE_gpu": 1, + "{": 157, + "@f": 6, + "end": 147, + "inputParser": 1, + "sigma": 6, + "Short": 1, + "CURRENT_DIRECTORY": 2, + "spostamento": 1, + "analytic.A": 3, + "E": 8, + "round": 1, + "minStates": 2, + "c2": 5, + "filtro_1": 12, + ".2f": 5, + "plots/": 1, + "*": 46, + "setxor": 1, + "mu./": 1, + "randomGuess": 1, + "identified": 1, + "guessPlantOne": 4, + "deltaDen": 2, + "data.Ts": 6, + "AbsTol": 2, + "whichLines": 3, + "start": 4, + "t": 32, + "vy_T": 12, + "ok": 2, + "C_star": 1, + "phiDotNum": 2, + "yl2": 8, + "Y": 19, + "dArrow2": 2, + "Frequency": 2, + "properties": 1, + "statefcn": 2, + "get_variables": 2, + "gains": 12, + "strcmp": 24, + "rollData": 8, + "gainSlopeOffset": 6, + "resultPlantTwo.fit.par": 1, + "speed": 20, + "xlim": 8, + "loopNames": 4, + "data.system.B": 1, + "openLoops.Y.num": 1, + "gains.Yellow.Medium": 1, + "phisically": 2, + "Y_0": 4, + "maxLine": 7, + "freq": 12, + "validation": 2, + "gainsInFile": 3, + "gains.Browserins.Medium": 1, + "xLimits": 6, + "gains.Yellow.Slow": 1, + "Compute": 3, + "Energy": 4, + "x0": 4, + "k1": 4, + "Back": 1, + "rollTorque": 4, + "m": 44, + "Linewidth": 7, + "opts": 4, + "wnm": 11, + "eigenValues": 1, + "R": 1, + "xData": 3, + "xySource": 7, + "openLoops": 1, + "*grid_width/": 4, + "integrare": 2, + "speedNames": 12, + "eigenvalue": 2, + "grid_width": 1, + "contents": 1, + "system_state_space": 2, + "h*k3": 1, + "raw": 1, + "keepOutputs": 2, + "legLines": 1, + "gpuArray": 4, + "sg": 1, + "In": 1, + "/2": 3, + "non": 2, + "FTLE": 14, + "conservation": 2, + "strtrim": 2, + "obj.R": 2, + ".vaf": 1, + "metricLine": 1, + "enumeration": 1, + "abs": 12, + "aux.plantSecond": 2, + "Lagr": 6, + "unit": 1, + "data.modelPar.C": 1, + "gains.Pista.Fast": 1, + "many": 1, + "EastOutside": 1, + "OutputName": 1, + "mod": 3, + "gain": 1, + "gains.Fisher.Medium": 1, + "LineStyle": 2, + "open_loop_all_bikes": 1, + "axis": 5, + "VY_T": 3, + "*T": 3, + "number": 2, + "La": 1, + "oneSpeed.time": 2, + "w_r/2": 4, + "equations": 2, + "py_0": 2, + "gains.Browser.Fast": 1, + "f": 13, + "pathToParFile": 2, + "phase_portraits": 2, + "Offset": 2, + "methods": 1, + "mag": 4, + "warning": 1, + "input": 14, + "green": 1, + "waitbar": 6, + "uses": 1, + "Fontsize": 4, + "yh": 2, + "Earth": 2, + "numeric.A": 2, + "xl5": 8, + "maxEvals": 4, + "curPos2": 4, + "Linestyle": 6, + "aux.pars": 3, + "teoricamente": 1, + "allSpeeds": 4, + "and": 7, + "f_x_t": 2, + "gains.Fisher.Slow": 1, + "Computation": 9, + "wc": 14, + "arg": 2, + "raw.theta": 1, + "linspace": 14, + "numbers": 2, + "ecc": 2, + "solutions": 2, + "z": 3, + "units": 3, + "PaperPosition": 3, + "db2": 2, + ".file": 1, + "io": 7, + "RK4_par": 1, + "x_max": 3, + "y_f": 3, + "gains.Benchmark.Slow": 1, + "_": 2, + "plantOneSlopeOffset": 3, + "none": 1, + "resides": 2, + "varargin_to_structure": 2, + "data.bicycle.outputs": 1, + "point": 14, + "D": 7, + "contents.colheaders": 1, + "endOfSlope": 1, + "roots": 3, + "wShift": 5, + "y_0": 29, + "defaultSettings.outputs": 1, + "c1": 5, + "PaperUnits": 3, + "visualize": 2, + "generate_data": 5, + ")": 1358, + "@getState": 1, + "./": 1, + "t3": 1, + "dataPlantOne": 3, + "handling.eps": 1, + "cyan": 1, + "also": 1, + "initial": 5, + "goldenRatio": 12, + "bikeData.closedLoops": 1, + "annotation": 13, + "YTickLabel": 1, + "contents.data": 2, + "Conditions": 1, + "change": 1, + "find": 24, + "Manual": 2, + "eigenvalues": 2, + "global": 6, + "useful": 9, + "positions": 2, + "s": 13, + "rad/sec": 1, + "inline": 1, + "yl1": 12, + "nu": 2, + "dArrow1": 2, + "like": 1, + "denominatore": 1, + "log": 2, + "X": 6, + "makeFilter": 1, + "negative": 1, + "oneSpeed.": 3, + "Handling": 2, + "arguments": 7, + "It": 1, + "not": 3, + "removeInputs": 2, + "opts.YLim": 3, + "@cr3bp_jac": 1, + "zeroIndices": 3, + "magenta": 1, + "raw.theta_c": 1, + "plot": 26, + "keepStates": 2, + "data.system.A": 1, + "downSlope": 3, + "settings.outputs": 1, + "normalized": 1, + "orbit": 1, + "first": 3, + "Runge": 1, + "phi": 13, + "all": 15, + "plotyy": 3, + "Saving": 4, + "only": 7, + "l": 64, + "length": 49, + "bikeData.openLoops": 1, + "nominalData": 1, + "gains.Yellow.Fast": 1, + "deps2": 1, + "resultPlantOne": 1, + "distance": 6, + "*e_0": 3, + "Y0": 6, + "data.bicycle.states": 1, + "fopen": 2, + "Southeast": 1, + "yn": 2, + "average": 1, + "defaultSettings.": 1, + "xy": 7, + "ds_x": 1, + "plotAxes": 22, + "defaultSettings": 3, + "vals": 2, + "col": 5, + "data.modelPar.B": 1, + "parser": 1, + "*n": 2, + "x_0_min": 8, + "||": 3, + "par_text_to_struct": 4, + "name": 4, + "Xlabel": 1, + "X_T": 4, + "Range": 1, + "yShift": 16, + "allGains": 4, + "whipple_pull_force_ABCD": 1, + "bicycle.StateName": 2, + "tspan": 7, + "struct": 1, + "aux.plantFirst": 2, + "Selection": 1, + "loop": 1, + "bikes": 24, + "e": 14, + "positive": 2, + "gather": 4, + "metricLines": 2, + "to": 9, + "rectangle": 2, + "energy_tol": 6, + "compare": 3, + "possible": 1, + "importdata": 1, + "bikeData.handlingMetric.den": 1, + "nvx": 32, + "twentyPercent.modelPar.": 1, + "Open": 1, + "YColor": 2, + "Moon": 2, + "magnitudes": 1, + "velocity": 2, + "fit": 6, + "u.": 1, + "wfs": 1, + "xl4": 10, + "range": 2, + "curPos1": 4, + "/": 59, + "single": 1, + "YTick": 1, + "line": 15, + "inputs": 14, + "load_bikes": 2, + "get": 11, + "Ys": 1, + "filter": 14, + "numeric": 2, + "gains.Pista.Medium": 1, + "results": 1, + "l2": 2, + "_H": 1, + "db1": 4, + "nominalData.": 2, + "*E_L1": 1, + "in": 8, + "y_res": 7, + "y": 22, + "parser.parse": 1, + "px_T": 4, + "guesses": 1, + "@cross_y": 1, + "speedInd": 12, + "floatSpec": 3, + "th": 1, + "gains.Benchmark.Fast": 1, + "y_gpu": 3, + "ss": 3, + "C": 13, + "Points": 2, + ".png": 1, + "dello": 1, + "(": 1357, + "tau": 1, + "bicycle": 7, + "la": 2, + "t2": 6, + "steps": 2, + "xAxis": 12, + "data": 27, + "ftle": 10, + "r": 2, + "*E": 2, + "h_r/2": 4, + "E_cin": 4, + "plantTwoSlopeOffset": 3, + "Hands": 1, + "C/2": 1, + "direction": 2, + "tic": 7, + "odeset": 4, + "i/n": 1, + "iirFilter": 1, + "C_L1": 3, + "Setting": 1, + "legend": 7, + "oneSpeed.speed": 2, + "PaperSize": 3, + "<": 9, + "h/6*": 1, + "typ": 3, + "closed": 1, + "xShift": 3, + "defaultNames": 2, + "i/nx": 2, + "oneSpeed": 3, + "x_T": 25, + "bikeData.handlingMetric.num": 1, + "secData.": 1, + "time": 21, + "Data": 2, + "xlabel": 8, + "this": 2, + "opts.Title.String": 2, + "flat": 3, + "aux.timeDelay": 2, + "t_integrazione": 3, + "vy_f": 3, + "numeric.InputName": 1, + "arg1": 1, + "y_r": 6, + "points": 11, + "Construction": 1, + "paths.eps": 1, + "k": 75, + "total": 6, + "vx_0_max": 8, + "E_T": 11, + "filename": 21, + "dim": 2, + "gca": 8, + "vy_0": 22, + "benchmark": 1, + "Plot": 1, + "computation": 2, + "eVals": 5, + "direzione": 1, + "prod": 3, + "sections": 13, + "outputs": 10, + "settings.": 1, + "gains.Browser.Slow": 1, + "prettyNames": 3, + "close": 4, + "write_gains": 1, + "ode113": 2, + "*mu": 6, + "figure": 17, + "Definition": 1, + "openBode.eps": 1, + "data.modelPar.A": 1, + "Lateral": 1, + "var_": 2, + "gains.": 1, + "xlabels": 2, + "parallel": 2, + "parser.addRequired": 1, + "it": 1, + "options.": 1, + "getoptions": 2, + "matrix": 3, + "rollData.inputs": 1, + "pcolor": 2, + "function": 32, + "ode45": 6, + "d": 3, + "grid_max": 3, + "ylabel": 4, + "double": 1, + "from": 2, + "*ds": 4, + "dataPlantTwo": 3, + "human": 1, + "names": 6, + "coordinates": 6, + "vx0": 2, + "matlab_function": 5, + "keep": 1, + "h_r": 5, + "x_a": 10, + ".": 13, + "*log": 2, + "xl3": 8, + "ret": 3, + "bops": 7, + "legends": 3, + "bad": 4, + "*Potential": 5, + "Diagrams": 1, + "Choice": 2, + "y0": 2, + "w_r": 5, + "min": 1, + "leg2": 2, + "plot_io_roll": 3, + "EnergyH": 1, + "parser.Results": 1, + "are": 1, + "l1": 2, + "plots": 4, + "Integrate": 6, + "figHeight": 19, + "Integration": 2, + "x": 42, + "currentGuess": 2, + "vy_gpu": 3, + "ndgrid": 2, + "]": 309, + "parameter": 2, + "guess": 1, + "size": 8, + "*phi": 2, + "sprintf": 11, + "C_L1/2": 1, + "sr": 1, + "print": 6, + "neuroDen": 2, + "B": 9, + "*k3": 1, + "ecc*cos": 1, + "into": 1, + "plot_io": 1, + "primary": 1, + "obj.B": 2, + "defaultSettings.inputs": 1, + "m/s": 6, + "steerAngle": 4, + "t1": 6, + "off": 10, + "rad/s": 4, + "Kutta": 1, + "e_T": 7, + "true": 2, + "create_ieee_paper_plots": 2, + "Jacobian": 3, + "Inf": 1, + "disp": 8, + "rollData.outputs": 3, + "@dg": 1, + "&&": 13, + "if": 52, + "figWidth": 24, + "ridotta": 1, + "Szebehely": 1, + "Initial": 3, + "Hill": 1, + "clc": 1, + "@f_reg": 1, + "integrated": 5, + "data/": 1, + "at": 3, + "integrator": 2, + "Parallel": 2, + "equal": 2, + "rollData.time": 1, + ";": 891, + "appear": 2, + "aux.b": 3, + "zetanm": 5, + "fclose": 2, + "<=>": 1, + "Location": 2, + "Latex": 1, + "Quality": 2, "load": 1, - "balancing": 1, - "big.server.com": 1, - "logs/big.server.access.log": 1, - "//big_server_com": 1 + "openLoops.Phi.num": 1, + "bicycle.OutputName": 4, + "vy": 2, + "lines": 17, + "because": 1, + "maxValue": 4, + "findobj": 5, + "suppresses": 2, + "both": 1, + "area": 1, + "while": 1, + "j": 242, + "gainChanges": 2, + "frontWheel": 3, + "opts.PhaseMatching": 2, + "toc": 5, + "one": 3, + "approach": 1, + "pem": 1, + "result.": 2, + "tolerance": 2, + "linestyles": 15, + "gains.Yellowrev.Medium": 1, + "Consider": 1, + "plantNum.plantOne": 2, + "same": 2, + "num": 24, + "parser.addParamValue": 3, + "Dimensionless": 1, + "lane": 4, + "neuroNum": 2, + "rollData.speed": 1, + "filter_ftle": 11, + "par.": 1, + "white": 1, + "needs": 1, + "bikeData.": 2, + "is": 7, + "defaultSettings.states": 1, + "manual": 3, + "phase": 2, + "FIXME": 1, + "settings.states": 3, + "result": 5, + "isreal": 8, + "energy": 8, + "analytic.D": 1, + "stored": 1, + "results.mat": 1, + "ones": 6, + "Hamiltonian": 1, + "ne": 29, + "plant": 4, + "ye": 9, + "variable": 10, + "hold": 23, + "vx_T": 22, + "essere": 1, + "args": 1, + "inf": 1, + "xl2": 9, + "pathToFile": 11, + "-": 672, + "iddata": 1, + "The": 6, + "filtro": 15, + "ylim": 2, + "Potential": 1, + "leg1": 2, + "GPU": 3, + "inset": 3, + "l0": 1, + "output": 7, + "Handling.eps": 1, + "Omega": 7, + "r2": 3, + "From": 1, + "il": 1, + "w": 3, + "yl5": 8, + "legWords": 3, + "dvx": 3, + "guessPlantTwo": 3, + "on": 13, + "else": 23, + "startOfSlope": 3, + "max": 9, + "Level": 6, + "y_min": 3, + "exist": 1, + "guess.plantOne": 3, + "ny": 29, + "directory": 2, + "tf": 18, + "filtfcn": 2, + "A": 11, + "loop_shape_example": 3, + "*k2": 1, + "sqrt": 14, + "resultPlantOne.fit.par": 1, + "fprintf": 18, + "numeric.StateName": 1, + "yellow": 1, + "&": 4, + "value": 2, + "closedLoops.Delta.num": 1, + "motion": 2, + "t0": 6, + "pathLength": 3, + "settings": 3, + "resultPlantTwo": 1, + "definition": 2, + "bottomRow": 1, + "InputName": 1, + "row": 6, + "p": 7, + "@iirFilter": 1, + "gains.Yellowrev.Slow": 1, + "ie": 2, + "Units": 1, + "k4": 4, + "LineWidth": 2, + "bikeData": 2, + "Integrate_FTLE_Gawlick_ell": 1, + "fillColors": 1, + "gcf": 17, + "bodeplot": 6, + "slope": 3, + "isterminal": 2, + "VX_T": 4, + "dphi*dphi": 1, + "data.": 6, + "px_0": 2, + "as": 4, + "delta_E0": 1, + "whipple_pull_force_abcd": 2, + "come": 1, + "ss2tf": 2, + "fun": 5, + "fid": 7, + "detrend": 1, + "axes": 9, + "gray": 7, + "PaperOrientation": 3, + "real": 3, + "args.directory": 1, + "dbstack": 1, + "delta_E": 7, + "_n": 2, + "integrating": 1, + "vx": 2, + "history": 7, + "@f_ell": 1, + ".fit.par": 1, + "dArrow": 2, + "Yc": 5, + "plantNum.plantTwo": 2, + "subplot": 3, + "mkdir": 1, + "ischar": 1, + "grid_width/": 1, + "textscan": 1, + "i": 334, + "maxMag": 2, + "system": 2, + "location": 1, + "sort": 1, + "regexp": 1, + "gains.Benchmark.Medium": 1, + "place": 2, + "variables": 2, + ".handlingMetric.den": 1, + "ds_vx": 1, + "varargin": 25, + "N": 9, + "the": 14, + "grid": 1, + "closedLoops": 1, + "plot.": 1, + "difference": 2, + "numeric.D": 1, + "states": 7, + "x_res": 7, + "var_xvx_": 2, + "x_f": 3, + "ylabels": 2, + "grid_y": 3, + "Elements": 1, + "x_gpu": 3, + "grid_spacing": 5, + "PaperPositionMode": 3, + "ode00": 2, + "bode": 5, + "x_0": 45, + "Ys.den": 1, + "var": 3, + "gains.Browserins.Slow": 1, + "twentyPercent": 1, + "f.": 2, + "inches": 3, + "}": 157, + "str2num": 1, + "squeeze": 1, + "rollAngle": 4, + "ftle_norm": 1, + "feedback": 1, + "b": 12, + "text": 11, + "find_structural_gains": 2, + "mu": 73, + "dataAdapting": 3, + "analytic.C": 1, + "G": 1, + "CPU": 1, + "elseif": 14, + "contourf": 2, + "loose": 4, + "*ds_x": 2, + "E_0": 4, + "numeric.OutputName": 1, + "matlab_class": 2, + "Integrate_FILE": 1, + "columns": 4, + "Y_T": 4, + "measure": 1, + "xl1": 13, + "data.forceTF.PhiDot.den": 1, + "obj.G": 2, + "guess.plantTwo": 2, + "pints": 1, + "overrideSettings": 3, + "Call": 2, + "would": 2, + "fix_ps_linestyle": 6, + "Transforming": 1, + "ds": 1, + "Yp": 2, + "chil": 2, + "num2str": 10, + "value2": 4, + "meaningful": 6, + "Look": 2, + "setting": 4, + "eig": 6, + "advected_y": 12, + "v": 12, + "r1": 3, + "vx_gpu": 3, + "resultPlantOne.fit": 1, + "Edgecolor": 1, + "each": 2, + "openLoops.Phi.den": 1, + "yl4": 9, + "adapting_structural_model": 2, + "nx": 32, + "[": 309, + "Southwest": 1 + }, + "XC": { + "int": 2, + "return": 1, + "}": 2, + "0": 1, + "c": 3, + ";": 4, + "x": 3, + "{": 2, + ")": 1, + "(": 1, + "main": 1, + "chan": 1, + "par": 1, + "<:>": 1 + }, + "Scheme": { + "color": 2, + "degrees": 2, + "set": 19, + "key": 2, + "b": 4, + "a.vel": 1, + "record": 5, + "s42": 1, + "nanosecond": 1, + "fields": 4, + "define": 27, + "par.vel": 1, + "par.birth": 1, + "s27": 1, + "asteroids": 15, + "wrap": 4, + "glutWireCube": 1, + "lifetime": 1, + "ammo": 9, + "glutPostRedisplay": 1, + "4": 1, + "nanoseconds": 2, + "seconds": 12, + "pack": 12, + "randomize": 1, + "radius": 6, + "basic": 1, + "glutKeyboardFunc": 1, + "1": 2, + "ship.vel": 5, + "ship.theta": 10, + "glColor3f": 5, + "vel": 4, + "base": 2, + "second": 1, + "is": 8, + "newline": 2, + ".": 1, + "x": 8, + "filter": 4, + "lists": 1, + "bullet.birth": 1, + "+": 28, + "pt*n": 8, + "update": 2, + "(": 359, + "default": 1, + "width": 8, + "matrix": 5, + "sin": 1, + "a.radius": 1, + "particle": 8, + "gl": 12, + "space": 1, + "only": 1, + "#f": 5, + "i": 6, + "glutMainLoop": 1, + "f": 1, + "<=>": 3, + "buffered": 1, + "glTranslated": 1, + "mod": 2, + "cons": 1, + "c": 4, + "val": 3, + "pt": 49, + "radians": 8, + "bullet.vel": 1, + ";": 1684, + "misc": 1, + "par.pos": 2, + "rnrs": 1, + "s19": 1, + "5": 1, + "procedure": 1, + "current": 15, + "time": 24, + "size": 1, + "number": 3, + "list": 6, + "2": 1, + "angle": 6, + "comprehensions": 1, + "cos": 1, + "source": 2, + "make": 11, + "map": 4, + "args": 2, + "cond": 2, + "pack.pos": 3, + "dharmalab": 2, + "/": 7, + "y": 3, + "contact": 2, + "par.lifetime": 1, + "ship.pos": 5, + "integer": 25, + "glu": 1, + "in": 14, + "of": 3, + "height": 8, + "type": 5, + "s1": 1, + "s": 1, + "else": 2, + "utilities": 1, + "compat": 1, + ")": 373, + "bullets": 7, + "surfage": 4, + "p": 6, + "bits": 1, + "#": 6, + "case": 1, + "spaceship": 5, + "glutIdleFunc": 1, + "null": 1, + "a.pos": 2, + "background": 1, + "append": 4, + "inexact": 16, + "step": 1, + "import": 1, + "birth": 2, + "particles": 11, + "d": 1, + "begin": 1, + "glutWireSphere": 3, + "vector": 6, + "ships": 1, + "level": 5, + "reshape": 1, + "asteroid": 14, + "glamour": 2, + "<": 1, + "pack.vel": 1, + "system": 2, + "a": 19, + "math": 1, + "eager": 1, + "force": 1, + "lambda": 12, + "theta": 1, + "initialize": 1, + "10": 1, + "excursion": 5, + "milli": 1, + "ec": 6, + "bullet": 16, + "ship": 8, + "bullet.pos": 2, + "glutWireCone": 1, + "glut": 2, + "pi": 2, + "score": 5, + "100": 6, + "0": 7, + "agave": 4, + "w": 1, + "last": 3, + "par": 6, + "say": 9, + "each": 7, + "-": 188, + "when": 5, + "geometry": 1, + "for": 7, + "random": 27, + "mutable": 14, + "translate": 6, + "records": 1, + "char": 1, + "ref": 3, + "title": 1, + "n": 2, + "if": 1, + "micro": 1, + "display": 4, + "pos": 16, + "50": 4, + "distance": 3, + "glRotated": 2, + "window": 2, + "dt": 7, + "starting": 3, + "let": 2 + }, + "JSON": { + "true": 3, + "]": 165, + "[": 165, + "}": 143, + "{": 143 + }, + "Omgrofl": { + "liek": 1, + "rofl": 13, + "World": 1, + "Hello": 1, + "brb": 1, + "iz": 11, + "lmao": 1, + "stfu": 1, + "loool": 6, + "lool": 5, + "lol": 14, + "w00t": 1, + "wtf": 1 + }, + "Ragel in Ruby Host": { + "emit": 4, + "EPHEMERIS_DATA": 2, + "path": 8, + "SimpleScanner": 1, + "Tengai": 1, + "exec": 3, + "eoe": 2, + "parse_stop_time": 2, + "date": 2, + "mark": 6, + "space*": 2, + "seconds": 2, + "@path": 2, + "new": 1, + "soe": 2, + "ws": 2, + "my_ts..": 1, + "chunk.unpack": 2, + "String": 1, + "Emit": 4, + "class": 3, + "{": 19, + "EphemerisParser": 1, + "alnum": 1, + "stop_time": 4, + "private": 1, + "year": 2, + "ARGV": 2, + "+": 7, + "parser": 2, + ".freeze": 1, + "(": 33, + "..": 1, + "ts": 4, + "r": 1, + "parse_time": 3, + "parse_start_time": 2, + "%": 34, + "minutes": 2, + "MyTs": 2, + "ephemeris_parser": 1, + "stdout.puts": 2, + "data.unpack": 1, + "chunk": 2, + "f": 2, + "ephemeris": 2, + "do": 2, + "SimpleScanner.new": 1, + ";": 38, + "fhold": 1, + "data.length": 3, + "lower": 1, + "f.read": 2, + "eof": 3, + "machine": 3, + "my_ts": 6, + "]": 20, + "datetime": 3, + "end": 23, + "time": 6, + "parse_step_size": 2, + "any*": 3, + "|": 11, + "pe": 4, + "init": 3, + "while": 2, + "tz": 2, + "||": 1, + "else": 2, + "self.parse": 1, + ")": 33, + "./": 1, + "s": 4, + "action": 9, + "p": 8, + "start_time": 4, + "my_ts...my_te": 1, + "month": 2, + "#": 4, + "parser.start_time": 1, + "simple_scanner": 1, + "parser.stop_time": 1, + ".to_i": 2, + "require": 1, + "ephemeris_table": 3, + "File.open": 2, + "begin": 3, + "te": 1, + "<": 1, + "step_size": 3, + "SimpleTokenizer.new": 1, + "nil": 4, + "module": 1, + "super": 2, + "initialize": 2, + "MyTe": 2, + "s.perform": 2, + "ts..pe": 1, + "data": 15, + "upper": 1, + "adbc": 2, + "[": 20, + "SimpleTokenizer": 1, + "main": 3, + "mark..p": 4, + "attr_reader": 2, + "}": 19, + "ignored": 4, + "hours": 2, + "DateTime.parse": 1, + "def": 10, + "parse_ephemeris_table": 2, + "write": 9, + "-": 5, + "leftover": 8, + "my_te": 6, + ".pack": 6, + "t": 1, + "*": 9, + "foo": 8, + "data.is_a": 1, + "parser.step_size": 1, + "digit": 7, + "time_unit": 2, + "if": 4, + "n": 1, + "Struct.new": 1, + "perform": 2, + "ENV": 2, + "any": 4, + "simple_tokenizer": 1, + "parser.ephemeris_table": 1 + }, + "JavaScript": { + "model.unbind": 1, + "More": 1, + "p.splice": 1, + "instead": 6, + "window.": 6, + "function": 1210, + "res.on": 1, + "setSection=": 1, + "t.width*.9": 4, + "Backbone.emulateHTTP": 1, + "jQuery.attrFn": 2, + "optSelected": 3, + "WebKit": 9, + "setValue=": 2, + "Error.prototype": 1, + "ignoreCase": 1, + "f.left": 3, + "this.output.shift": 2, + "s.on": 4, + "loses": 1, + "specialEasing": 2, + "checkClone": 1, + "u.roseVisible": 4, + "fillText": 23, + "y*.093457": 2, + "page": 1, + "div.cloneNode": 1, + "recursively": 1, + "r.live.slice": 1, + "d.resolveWith": 1, + ".1075*t": 2, + "gr.drawImage": 3, + "kt.clearRect": 1, + "e.toPrecision": 1, + "n.restore": 35, + "fade": 4, + "a.contents": 1, + "document.readyState": 4, + "this.selectedIndex": 1, + "shadowBlur=": 1, + "nr": 22, + "this.sockets": 9, + "a.contentWindow.document": 1, + "across": 1, + "css": 7, + "f.cssHooks": 3, + "fnFail": 2, + "ti.stop": 1, + "n.stroke": 31, + "checkUrl": 1, + "basic": 1, + "bF": 1, + "baseHasDuplicate": 2, + "OutgoingMessage.prototype._finish": 1, + "focusin": 9, + "PDF": 1, + "e*.53271": 2, + "12864": 2, + "y.canvas.width": 3, + "ai.width": 1, + "bt.labelColor.setAlpha": 1, + "mStyle.cssText": 1, + "dateExpression.test": 1, + "handler=": 1, + "f*.53271": 6, + "kt.rotate": 1, + "n*6": 2, + "div.firstChild.namespaceURI": 1, + "div.style.cssText": 1, + "ua": 6, + "cb.test": 1, + "only": 10, + "i.join": 2, + "self.maxSockets": 1, + "comment2": 1, + "k.symbolColor.getRgbaColor": 1, + "ft.width": 1, + "u.textAlign": 2, + "ownerDocument.createElement": 3, + "this.el": 10, + "support": 13, + "c.guid": 1, + "webkit": 6, + "r*255": 1, + "char": 2, + "privateCache.events": 1, + "Recurse": 2, + "g.origType.replace": 1, + "EX_EOF": 3, + "u.foregroundType": 4, + ".7875*t": 4, + "#": 13, + "y.substr": 1, + "r=": 18, + "curry": 1, + "ui.height": 2, + "inspect": 1, + "offsetWidth/Height": 3, + "this._last": 3, + "f.rotate": 5, + "hr": 17, + "...": 1, + "quickExpr": 2, + "gf": 2, + "l": 312, + "c.loadXML": 1, + "doc": 4, + ".HTTPParser": 1, + "a.cacheable": 1, + ".76": 1, + "e.css": 1, + "CLASS": 1, + "it=": 7, + "e.animatedProperties": 5, + "old": 2, + "f.expando": 23, + "Internet": 1, + "httpSocketSetup": 2, + "a.apply": 2, + "this.getValue": 7, + "yu": 10, + "a.nextSibling": 1, + "div.lastChild": 1, + "c.preventDefault": 3, + "browsers": 2, + "38": 5, + "steelseries.ColorDef.RED.medium.getRgbaColor": 6, + "lt*fr": 1, + "l=": 10, + "h.onreadystatechange": 2, + "Verify": 3, + "headerIndex": 4, + "c.defaultView.getComputedStyle": 3, + "closeExpression": 1, + "ctor": 6, + "": 1, + "t*.82": 1, + "u*r*": 1, + "parseXML": 1, + "supportsHtml5Styles": 5, + "jQuery.browser.webkit": 1, + "yt.getEnd": 2, + "this.getUTCSeconds": 1, + "opt.disabled": 1, + "l.match.PSEUDO.exec": 1, + "m.shift": 1, + "bs": 2, + "b.getElementsByClassName": 2, + "uuid": 2, + "": 1, + "s*.006": 1, + "s*.04": 1, + "i.foregroundType": 6, + "Agent.prototype.createSocket": 1, + "while": 53, + "j.handleObj.data": 1, + "jQuery.uaMatch": 1, + "div.setAttribute": 1, + "For": 5, + "Math.PI*2": 1, + "n.measureText": 2, + "i.niceScale": 10, + "this._implicitHeader": 2, + "this.remove": 1, + "onRemove": 3, + "steelseries.TrendState.STEADY": 2, + "mStyle.opacity": 1, + "setHost": 2, + "self.emit": 9, + "t.start": 1, + "i.minValue": 10, + "rightmostFailuresExpected": 1, + "viewOptions.length": 1, + "isExplorer.exec": 1, + "g.scrollLeft": 1, + "Create": 1, + "Ua": 1, + ".cloneNode": 4, + "f.support": 2, + "P": 4, + "476635": 2, + "steelseries.BackgroundColor.CARBON": 2, + "i.minMeasuredValueVisible": 8, + "f.offset": 1, + "modal": 4, + "nothing": 2, + "CSS1Compat": 1, + "f.selector": 2, + "wrapper": 1, + "area": 2, + "./g": 2, + "same": 1, + "i.toPrecision": 1, + "Number.prototype.toJSON": 1, + "T.call": 1, + "k.restore": 1, + "ti.playing": 1, + "i.set": 1, + ".toUpperCase": 3, + "s.getElementsByTagName": 2, + "OutgoingMessage.prototype._storeHeader": 1, + "joiner": 2, + "ru=": 1, + "vi.getContext": 2, + "params.type": 1, + "this.id": 2, + "loadUrl": 1, + "_toggle": 2, + "target.data": 1, + "b.clearAttributes": 2, + "their": 3, + "keyCode": 6, + "z.test": 3, + "s.canvas.width": 4, + "gradientStopColor": 1, + "unitString": 4, + "prop": 24, + "this.write": 1, + "h.slice": 1, + "d.fireEvent": 1, + "": 2, + "loc.hash": 1, + "do": 15, + "checked=": 1, + "is_unicode_combining_mark": 2, + "gt.getContext": 3, + "setInterval": 6, + "care": 1, + "cc": 2, + "a.replace": 7, + "h.get": 1, + "f.call": 1, + "f*.546728": 2, + "testnames": 3, + "bW": 5, + "appendTo": 1, + "attrHandle": 2, + "textBaseline=": 4, + "i.height*.5": 2, + "docElement.removeChild": 1, + "OutgoingMessage.prototype.write": 1, + "jQuery.data": 15, + "this.socket.write": 1, + "ur": 20, + "c.support.changeBubbles": 1, + "atom": 5, + "tf": 5, + "a.currentTarget": 4, + "options.localAddress": 3, + "Agent.prototype.removeSocket": 1, + "loc": 2, + "g.reject": 1, + "c.prototype": 1, + "345794": 3, + "bool.mp3": 1, + "f.Deferred": 2, + "options.hostname": 1, + "4": 4, + "lcdDecimals": 4, + "this._bindRoutes": 1, + ".before": 1, + "f.support.htmlSerialize": 1, + "v.canvas.height": 4, + "fragment.replace": 1, + "DOMready/load": 2, + "res": 14, + "req.res._emitPending": 1, + "dot": 2, + "225": 1, + "": 1, + "y=": 5, + "pair": 1, + "cube": 2, + "free": 1, + "}": 2712, + "Array": 3, + "y.done": 1, + "Tween.elasticEaseOut": 1, + ".471962*f": 5, + "ot.type": 10, + "t.getBlue": 4, + "character": 3, + "n/g": 1, + "proxy": 4, + "i.getBlue": 1, + "hook": 1, + "g.scrollTop": 1, + "a.currentStyle.filter": 1, + "guid": 5, + "c.browser": 1, + "bT.apply": 1, + "empty": 3, + "jQuery.isFunction": 6, + "n.lineCap": 5, + "a.scriptCharset": 2, + "this.": 2, + "n.match.ID.test": 2, + "a.fn.init": 2, + "self.agent.addRequest": 1, + "isPropagationStopped": 1, + "CONNECT": 1, + "div.fireEvent": 1, + "q.push": 1, + "expando": 14, + "storage": 1, + "this.stack": 2, + "224299": 1, + "foreground": 30, + "a.style.cssFloat": 1, + "className": 4, + "y.clearRect": 2, + "a.currentStyle": 4, + "IncomingMessage.prototype.destroy": 1, + "i*": 3, + "html5": 3, + "injectElementWithStyles": 9, + "document.documentMode": 3, + "body.insertBefore": 1, + "fragment": 27, + "tel": 2, + "e.style.opacity": 1, + "hasOwn.call": 6, + "Do": 2, + "Fire": 1, + "attrFn": 2, + "a.style.width": 1, + "removeEvent=": 1, + "steelseries.BackgroundColor.PUNCHED_SHEET": 2, + "pi.height": 1, + "cleanExpected.push": 1, + "c.removeEventListener": 2, + "is": 67, + "JS_Parse_Error.prototype.toString": 1, + "issue": 1, + "had": 1, + "i.ledColor": 10, + "Don": 1, + "param": 3, + "counter": 2, + "a": 1489, + "h.nodeType": 4, + "WARNING": 1, + "f*.453271": 2, + ".off": 1, + "isFunction.": 2, + "thead": 2, + "this.output.unshift": 1, + "init": 7, + "st*2.5": 1, + "ui.length": 2, + "bK.test": 1, + "self.setHeader": 1, + "49": 1, + "ut/": 1, + "parse_zeroEscapeSequence": 3, + "key.split": 2, + "previousSibling": 5, + "contentLengthExpression": 1, + "req.httpVersionMinor": 2, + "jQuery.fn.init.prototype": 2, + "j.deleteExpando": 1, + "f*.467289": 6, + "Modernizr.testStyles": 1, + "complete=": 1, + "this.connection.write": 4, + ".call": 10, + "b.innerHTML": 3, + "": 3, + "null": 427, + "functions": 6, + "meters": 4, + "": 3, + "t.addColorStop": 6, + "parserOnBody": 2, + "c.fn.init.prototype": 1, + "specific": 2, + "wrapError": 1, + "e.overflow": 2, + "assert": 8, + "backdrop.call": 1, + "f.fn.extend": 9, + "q.splice": 1, + "bg.optgroup": 1, + "ct": 34, + ".149019": 1, + "ut.addColorStop": 2, + "undefined": 328, + "this._sent100": 2, + "bh": 1, + "f.support.radioValue": 1, + "serif": 13, + "*st": 1, + "g.getAttribute": 1, + "i.each": 1, + "c.documentElement.contains": 1, + "a.compareDocumentPosition": 1, + "yt=": 4, + "select.appendChild": 1, + "Encoding/i": 1, + "j.reliableHiddenOffsets": 1, + "socket.setTimeout": 1, + "S.newline_before": 3, + "n.textAlign": 12, + "String.prototype.toJSON": 1, + "frowned": 1, + "sam": 4, + "propHooks": 1, + "k.matches": 1, + "f*.5": 17, + "v.getResponseHeader": 2, + "d.context": 2, + ".type": 2, + "parseInt": 12, + "has_e": 3, + "b/2": 2, + "options.shivMethods": 1, + "mStyle.background": 1, + "Xa.exec": 1, + "deep": 12, + "String": 2, + "this.connection": 8, + "E": 11, + "g.substring": 1, + "parser.onBody": 1, + "u.lcdVisible": 2, + "e*.12864": 3, + ".8725*t": 3, + "n.bezierCurveTo": 42, + "r.addColorStop": 6, + "still": 4, + "num": 23, + ".childNodes.length": 1, + "65": 2, + "ei.labelColor.setAlpha": 1, + "parse_lowerCaseLetter": 2, + "A.JSON.parse": 2, + "parser.socket.readable": 1, + "uXXXX": 1, + "caution": 1, + "beforeSend": 2, + "e.handle": 2, + "f.isWindow": 2, + "this._storeHeader": 2, + "metaKey=": 1, + ".8225*t": 3, + "t.lineTo": 8, + "steelseries.TrendState.DOWN": 2, + "parse_eolChar": 6, + "plain": 2, + "replaceAll": 1, + "Is": 2, + "click.specialSubmit": 2, + "f.concat.apply": 1, + "u.canvas.width": 7, + "right": 3, + "this._decoder.write": 1, + "e.push": 3, + "keep": 1, + "get/setAttribute": 1, + "this.path": 1, + "inline": 3, + "err.stack": 1, + "c.call": 3, + "name=": 2, + "well": 2, + "statusLine": 2, + "u.useColorLabels": 2, + "i*kt": 1, + "slideDown": 1, + "a.crossDomain": 2, + "p.add": 1, + "bL": 1, + ".0189*t": 4, + "prop.substr": 1, + "a.style.opacity": 2, + "labelColor": 6, + "kt.height": 1, + "e*u": 1, + "triggerRoute": 4, + "addClass": 2, + "06": 1, + "n.font": 34, + "exports.Server": 1, + "clientLeft": 2, + "PUNC_BEFORE_EXPRESSION": 2, + ".298039": 1, + "this.sendDate": 3, + ".end": 1, + "Useragent": 2, + "input.cloneNode": 1, + "h.toLowerCase": 2, + "parse_eol": 4, + "getUrl": 2, + "number": 13, + "Used": 3, + "finally": 3, + "wrapInner": 1, + "static": 2, + "k.length": 2, + "Otherwise": 2, + ")": 8521, + "With": 1, + "h.send": 1, + "this._httpMessage.emit": 2, + "i.odometerParams": 2, + "recognize": 1, + "fragment.indexOf": 1, + "nextSibling": 3, + "ft.type": 1, + "k*.733644": 1, + "odo": 1, + "fcamelCase": 1, + "None": 1, + "m.exec": 1, + "r": 261, + "c.body.removeChild": 1, + "elem.removeAttribute": 6, + "steelseries.LedColor.CYAN_LED": 2, + "b.scrollTop": 1, + "parser.incoming._pendings.length": 2, + "self.shouldKeepAlive": 4, + "quickExpr.exec": 2, + "": 3, + "wt.font": 1, + "pt": 48, + "b.offsetParent": 2, + "v.fail": 1, + "readyList.resolveWith": 1, + "": 1, + "socket._httpMessage": 9, + "exports.array_to_hash": 1, + "this.route": 1, + "<2)for(b>": 1, + "f.push": 5, + "u.length": 3, + "loop": 7, + "Animal.prototype.move": 2, + "b.textContent": 2, + ".049*t": 8, + "oi*.05": 1, + "s*.060747": 2, + "socket.addListener": 2, + "warn": 3, + "i.trendVisible": 4, + "h.childNodes.length": 1, + "know": 3, + "exports.curry": 1, + "s.rotate": 3, + "70588": 4, + ".color": 13, + "result5": 4, + "bI.exec": 1, + "self.method": 3, + "how": 2, + "fetch": 4, + "focusinBubbles": 2, + "avoid": 5, + "String.prototype.trim": 3, + "eventPhase": 4, + "a.context": 2, + "this.statusCode": 3, + "TODO": 2, + "m.replace": 1, + "lineWidth=": 6, + "yt.getColorAt": 2, + "inputElem.style.WebkitAppearance": 1, + "holdReady": 3, + "by": 12, + "jQuery.cache": 3, + "hack": 2, + "this.output.push": 2, + "standalone": 2, + "u.pointerTypeLatest": 2, + "e*.5": 10, + "130841": 1, + "n.shadowBlur": 4, + "this._wantsPushState": 3, + "a.sort": 1, + "reSkip": 1, + "navigate": 2, + "ua.test": 1, + "u*.7475": 1, + "saveClones": 1, + "this.delegateEvents": 1, + "XSS": 1, + "div.appendChild": 4, + "class=": 5, + ".98": 1, + "h*.475": 1, + "shivDocument": 3, + "host": 29, + "req._hadError": 3, + "clientY": 5, + "k.style.width": 1, + "UNARY_POSTFIX": 1, + "434579": 4, + "approach": 1, + "V": 2, + "instanceof": 19, + "expectExpression": 1, + "current": 7, + "Save": 2, + "n.exec": 1, + "e*.58": 1, + ".0875*t": 3, + ".845*t": 1, + "this.setValueAnimated": 7, + "h.clientLeft": 1, + "setRequestHeader": 6, + "own": 4, + "Syntax": 3, + "d.start": 2, + "it/2": 2, + "e.isFunction": 5, + "c.get": 1, + "Math.PI/3": 1, + "this.getUTCMonth": 1, + "j.elem": 2, + "disabled": 11, + ".splice": 5, + "y.resolveWith": 1, + "href": 9, + "li=": 1, + "ni.height": 2, + "options=": 1, + "sizcache=": 4, + "f.event.fix": 2, + "Agent.prototype.defaultPort": 1, + "documentElement": 2, + "readyWait": 6, + "*c": 2, + "hu.repaint": 1, + "it.labelColor": 2, + "k*.8": 1, + "du": 10, + "Math.ceil": 63, + "Bulk": 1, + "this.port": 1, + "sam.move": 2, + "u/": 3, + "ci": 29, + "e*.462616": 2, + "c.html": 3, + "cellSpacing": 2, + "of.state": 1, + "a.lastChild.className": 1, + "jQuery.support": 1, + "k.isXML": 4, + "h*.365": 2, + "argument": 2, + "e.handleObj": 1, + "continually": 2, + "HANDLE": 2, + "track": 2, + ".lastChild.checked": 2, + "s*.336448": 1, + ".wrapAll": 2, + "va.slice": 1, + "DOMElement": 2, + "d.toggleClass": 1, + "parser.reinitialize": 1, + "c.isXMLDoc": 1, + "fi.play": 1, + "chainable": 4, + "/alpha": 1, + "form": 12, + "height": 25, + "t*.45": 4, + "n.led": 20, + "navigator.userAgent.toLowerCase": 1, + "styleFloat": 1, + "jQuery.extend": 11, + "date": 1, + "b.map": 1, + "getData": 3, + "k.replace": 2, + "alive": 1, + "e.removeChild": 1, + "c.target.ownerDocument": 1, + "added": 1, + "call": 9, + "queue": 7, + "c.style": 1, + "c.each": 2, + "i.thresholdVisible": 8, + "stack": 2, + ".push": 3, + "f.cssHooks.opacity": 1, + ".triggerHandler": 1, + "this.setValue": 7, + "ee": 2, + "unbind": 2, + "h.splice.apply": 1, + "504672": 2, + "f*.38": 7, + ".55": 1, + "b.data": 5, + "lastToggle": 4, + "n.leftMatch": 1, + "*ue": 1, + "stroke": 7, + "this._source": 1, + "input.length": 9, + "yet": 2, + "outgoing.push": 1, + "c.zoom": 1, + "this.prevObject": 3, + "through": 3, + "et.length": 2, + "i.section": 8, + "wt": 26, + "bA": 3, + "f.find": 2, + "ck.contentDocument": 1, + "d.appendChild": 3, + "angle": 1, + "gt.width": 2, + "necessary": 1, + "statusCode.toString": 1, + "toplevel": 7, + "layerX": 3, + "camelCase": 3, + "p.length": 10, + "headers.length": 2, + "875": 2, + "steelseries.ColorDef.BLUE.dark.getRgbaColor": 6, + "conMarginTop": 3, + "co=": 2, + ".promise": 5, + "": 2, + "jQuery.browser": 4, + "c.cache": 2, + "Error": 16, + ".elem": 1, + "k.appendChild": 1, + "92": 1, + "u*255": 1, + "ck.height": 1, + "a.push.apply": 2, + "req.upgradeOrConnect": 1, + "bt=": 3, + "ni.getContext": 4, + "parse_singleLineComment": 2, + "start=": 1, + "jQuery.readyWait": 6, + "this.clone": 1, + "w*.012135": 2, + "Values": 1, + "this.click": 1, + "success": 2, + "data=": 2, + "a.converters": 3, + "s.documentElement": 2, + "u/22": 2, + "setLcdColor=": 2, + "IE6": 1, + "e.isDefaultPrevented": 2, + "g": 441, + "complete": 6, + "ga": 2, + "lookups": 2, + "a.defaultSelected": 1, + "odd": 2, + "a.fragment": 1, + "ti=": 2, + "g.height": 4, + "classes.join": 1, + "offsetSupport.fixedPosition": 1, + "v.readyState": 1, + "clearTimeout": 2, + "tag": 2, + "error.code": 1, + "pi": 24, + "this.supportsFixedPosition": 1, + "o.firstChild.childNodes": 1, + "radio": 17, + "o.innerHTML": 1, + "defaultPrevented": 1, + "extra": 1, + "p.drawImage": 1, + "n.textBaseline": 10, + "begin.rawText": 2, + "d.top": 2, + "a.oRequestAnimationFrame": 1, + "style/": 1, + "allowHalfOpen": 1, + "d=": 15, + "495327": 2, + "n.shadowOffsetX": 4, + "wt.decimals": 1, + "Backbone.history": 2, + "entire": 1, + "__extends": 6, + "<[\\w\\W]+>": 4, + "7fd5f0": 2, + "window.HTMLDataListElement": 1, + "e.insertBefore": 1, + "res.statusCode": 1, + "rvalidescape": 2, + "innerHTML": 1, + "b.value": 4, + "l.split": 1, + "callbacks": 10, + "kt.medium.getRgbaColor": 1, + "e*.055": 2, + ".875*t": 3, + "*t": 3, + "lastData.constructor": 1, + "a.style": 8, + "being": 2, + "frameVisible": 4, + "kt.textColor": 2, + "n.save": 35, + "c.crossDomain": 3, + "refuse": 1, + "d.ownerDocument": 1, + "a.isImmediatePropagationStopped": 1, + "o/r": 1, + "Modernizr.prefixed": 1, + "jQuery.access": 2, + "this.agent": 2, + "bn": 2, + "JSON": 5, + "/chunk/i": 1, + "ku": 9, + "expectedHumanized": 5, + "Modernizr._cssomPrefixes": 1, + "item": 4, + "h.open": 2, + "c.documentElement": 4, + "results": 4, + "headers": 41, + "ab": 1, + "et.height": 1, + "self.options.maxSockets": 1, + "which=": 3, + "window.location.search": 1, + "b.indexOf": 2, + "u.foregroundVisible": 4, + ".12864": 2, + "v.statusCode": 2, + "ensure": 2, + "freeParser": 9, + "socket.parser": 3, + "f.boxModel": 1, + "widows": 1, + "a.fireEvent": 1, + "tt.labelColor.getRgbaColor": 2, + "st.width": 1, + "h*.035": 1, + "re": 2, + "i.pointerType": 4, + "window.Worker": 1, + "a.offsetParent": 1, + "req.res.readable": 1, + "K": 4, + "0px": 1, + "dateCache": 5, + "Expecting": 1, + "playing": 2, + "except": 1, + "ropera.exec": 1, + "a.cache": 2, + "h*1.17/2": 1, + "this.trailers": 2, + "options.auth": 2, + "l.done": 1, + "a.addEventListener": 4, + "f.support.boxModel": 4, + "ft/": 1, + "parse_digit": 3, + "a.removeAttribute": 3, + "first": 10, + "i.getContext": 2, + "steelseries.ForegroundType.TYPE1": 5, + "parent.insertBefore": 1, + "defined": 3, + "window.addEventListener": 2, + "occurs.": 2, + "html": 10, + "d.playing": 2, + "Modernizr.addTest": 2, + "ev": 5, + "cors": 1, + "f.nodeName": 16, + ".find": 5, + "this.addListener": 2, + "u*.58": 1, + "wi.width": 1, + "n/Math.pow": 1, + "undocumented": 1, + "stop": 7, + "div.className": 1, + "S.tokpos": 3, + "b.clearRect": 1, + "mq": 3, + "g.body": 1, + "d.text": 1, + "": 1, + "mouseenter": 9, + "resolveWith": 4, + "Object.keys": 5, + "d.length": 8, + "le": 1, + "protoProps.hasOwnProperty": 1, + "nType": 8, + "bR": 2, + "split": 4, + "t*.012135": 1, + "attrNames": 3, + "incorrectly": 1, + "a.nodeType": 27, + "overrideMimeType": 1, + "Snake.__super__.constructor.apply": 2, + "tt.symbolColor.getRgbaColor": 1, + "outer.firstChild": 1, + "c.fn.extend": 4, + "toggleClass": 2, + "OutgoingMessage.prototype._buffer": 1, + "gets": 6, + "h5": 1, + "omPrefixes": 1, + "msg": 4, + "yf.repaint": 1, + "Ban": 1, + "setData": 3, + "h.substr": 1, + "a.execScript": 1, + "/": 290, + "b.jquery": 1, + "#8421": 1, + "based": 1, + "strips": 1, + "q=": 1, + "d.filter": 1, + "c.isEmptyObject": 1, + "this.disabled": 1, + "this.output": 3, + "timeStamp=": 1, + "ecma": 1, + "this.complete": 2, + "t.stroke": 2, + "_context": 1, + "f.offset.doesNotAddBorder": 1, + "zoom": 1, + "h.namespace": 2, + "gr": 12, + "parsers": 2, + "x": 33, + ".06*f": 2, + "ff": 5, + "i.getAlpha": 1, + "omPrefixes.split": 1, + "part": 8, + "RegExp": 12, + "f*.012135/2": 1, + "i.medium.getHexColor": 1, + "prefixes": 2, + "keys.length": 5, + "signal_eof": 4, + "tfoot": 1, + "Backbone.Router": 1, + "resolve": 7, + "Animal.name": 1, + "on": 37, + "c.bindReady": 1, + "s*.3": 1, + "w/r": 1, + "eventSplitter": 2, + "": 1, + "LcdColor": 4, + "dt.start": 2, + "wi": 24, + "cancelled": 5, + "input.setAttribute": 5, + "originalTarget": 1, + ".eq": 1, + "it.height": 1, + "dt.playing": 2, + "div.offsetWidth": 2, + "k=": 11, + "g.domManip": 1, + "e.call": 1, + "mousedown": 3, + "exports.IncomingMessage": 1, + "n.canvas.width/2": 6, + "cp.concat.apply": 1, + "selector.nodeType": 2, + "s.createTextNode": 2, + "removeClass": 2, + "section": 2, + "p.abort": 1, + ".addClass": 1, + "f.concat": 1, + "i.valueColor": 6, + "width": 32, + "sibling": 1, + "as": 11, + "u*.15": 2, + "be.test": 1, + "rr.restore": 1, + "i.digitalFont": 8, + "lastExpected": 3, + "e.fn.extend": 1, + "Function": 3, + "sentDateHeader": 3, + "this.domManip": 4, + "in": 170, + "them": 3, + "light": 5, + ".047058": 2, + "ti.start": 1, + "this.start": 2, + ".replaceWith": 1, + ".82": 2, + "k*.446666": 2, + "i.threshold": 10, + "DocumentTouch": 1, + "rv": 4, + "parser.socket.onend": 1, + "_Deferred": 4, + "jQuery.each": 2, + "Ta": 1, + "setForegroundType=": 1, + "n.lineJoin": 5, + "ut.rotate": 1, + "frag.cloneNode": 1, + "arguments.length": 18, + "nodeType": 1, + "vi.width": 1, + "ye": 2, + "self.has": 1, + "readOnly": 2, + "Agent.prototype.addRequest": 1, + "u221e": 2, + "font=": 28, + "fill": 10, + "/html/": 1, + "a.split": 4, + "delay": 4, + ".split": 19, + "c.isArray": 5, + "Width": 1, + "rt=": 3, + "cr.drawImage": 3, + "di.getContext": 2, + ".ajax": 1, + "div.style.marginTop": 1, + "f._data": 15, + "ClientRequest.prototype.clearTimeout": 1, + "E.call": 1, + "k.contains": 5, + "t.createLinearGradient": 2, + "e.firstChild": 1, + "altKey": 4, + "HEAD": 3, + "Fallback": 2, + "": 1, + ".112149*ut": 1, + "this.events": 1, + ".html": 1, + "co": 5, + "auth": 1, + "socket.ondata": 3, + "sentConnectionHeader": 3, + "array": 7, + "d.slice": 2, + ".stop": 11, + "paddingMarginBorder": 5, + "old=": 1, + "currentTarget": 4, + "bc": 1, + "*Math.PI": 10, + "f*.06": 1, + ".hide": 2, + ".proxy": 1, + "count": 4, + "preventDefault": 4, + "b.mergeAttributes": 2, + "__hasProp": 2, + "a.appendChild": 3, + "hi.getContext": 6, + "h.getAllResponseHeaders": 1, + "d.timeout": 1, + "j.cacheable": 1, + "safe": 3, + "fledged": 1, + "et.getContext": 2, + "tr": 23, + "left": 14, + "this.repaint": 126, + "n.closePath": 34, + "sf": 5, + "prototype=": 2, + "e.ready": 6, + "f.cssHooks.marginRight": 1, + ".053*e": 1, + "i.frameDesign": 10, + ".5": 7, + "rootjQuerySub": 2, + "ropera": 2, + "Make": 17, + "@": 1, + "setLcdTitleStrings=": 1, + "e*.007": 5, + "docElement": 1, + "div.attachEvent": 2, + "speeds": 4, + "Own": 2, + "extension": 1, + "boundary": 1, + "lastData": 2, + "c.fn": 2, + "560747": 4, + "shadowOffsetY=": 1, + "f*.695": 4, + "x=": 1, + "Match": 3, + "e/r*": 1, + "at.drawImage": 1, + "ut.restore": 1, + "errorPosition.line": 1, + "chars": 1, + "model.idAttribute": 2, + "duration=": 2, + "options.socketPath": 1, + "restore": 14, + "object.constructor.prototype": 1, + "h.setRequestHeader": 1, + "u*.007": 2, + "ns": 1, + "obj.constructor.prototype": 2, + "c.attrFn": 1, + "else": 307, + "Buffer": 1, + ".substring": 2, + "entry": 1, + "optDisabled": 1, + "c.queue": 3, + "frame": 23, + "flag": 1, + "bG": 3, + "": 1, + "elems": 9, + "noCloneEvent": 3, + "sliceDeferred": 1, + "this.parser": 2, + "jQuery.Deferred": 1, + "i.lcdVisible": 8, + "ufff0": 1, + "e.selector": 1, + "Buffer.isBuffer": 2, + "steelseries.Orientation.WEST": 6, + "vt/": 3, + "Boolean": 2, + "01": 1, + "d.replace": 1, + "": 1, + "fires.": 2, + "token.type": 1, + "support.inlineBlockNeedsLayout": 1, + "this.prop": 2, + "h.statusText": 1, + "Horse": 12, + "e.isWindow": 2, + "jQuery.prototype": 2, + "read_name": 1, + "marked": 1, + "border": 7, + "va.concat.apply": 1, + "href=": 2, + "splatParam": 2, + "iterate": 1, + "c.isDefaultPrevented": 2, + "b.replace": 3, + "req.httpVersionMajor": 2, + "Either": 2, + "i.selector": 3, + "c.readyState": 2, + "substr": 2, + "p.send": 1, + "ab.test": 1, + "skip_whitespace": 1, + "ft.getContext": 2, + "following": 1, + "widget": 1, + "m": 76, + "e.nodeType": 7, + "180": 26, + "f.canvas.width": 3, + "this.resetMinMeasuredValue": 4, + "docElement.className": 2, + "routes": 4, + "": 1, + "rsingleTag": 2, + "copyIsArray": 2, + "outer": 2, + "maxSockets": 1, + "i.width": 6, + "ut/2": 4, + "n.pointer": 10, + "thisCache.data": 3, + ".then": 3, + "cellPadding": 2, + "/top/.test": 2, + "oi.play": 1, + "window.matchMedia": 1, + "converted": 2, + "shouldn": 2, + "DOM": 21, + "can": 10, + "postfix": 1, + "c.getElementsByTagName": 1, + "when": 20, + "": 2, + "autofocus": 1, + "element": 19, + "u.knobStyle": 4, + "ai/": 2, + "result0": 264, + "rule": 5, + "c.support.checkClone": 2, + "f.event.global": 2, + "K.call": 2, + "<\",>": 1, + "d.height": 4, + ".8125*t": 2, + "or.restore": 1, + "#6781": 2, + "f.support.deleteExpando": 3, + "document.createDocumentFragment": 3, + "k.labelColor": 1, + "t.fill": 2, + "ii.getContext": 5, + "too": 1, + "bt": 42, + "_jQuery": 4, + "Object.prototype.hasOwnProperty": 6, + "returned.promise": 2, + "s*.007": 3, + "Boolean.prototype.toJSON": 1, + "s.": 1, + "_results": 6, + "padding": 4, + "IncomingMessage.prototype.pause": 1, + "die": 3, + ".getElementsByTagName": 2, + "num.substr": 2, + "f.expr.filters.animated": 1, + "a.test": 2, + "Array.prototype.slice": 6, + ".domManip": 1, + "pageY=": 1, + "Horse.prototype.move": 2, + "s.body.appendChild": 1, + "off": 1, + "onClose": 3, + "this._trailer": 5, + "ei=": 1, + "u.shadowColor": 2, + "inputElem.setAttribute": 1, + "issue.": 1, + "ua.toLowerCase": 1, + "target.modal": 1, + "little": 4, + "this.once": 2, + "self.on": 1, + "c.createElement": 12, + "assign": 1, + "orphans": 1, + "Q": 6, + "e.isPlainObject": 1, + "d.guid": 4, + "charCode": 7, + "d.events": 1, + "e*.53": 1, + "e3": 5, + "docElement.style": 1, + "e.offset": 1, + "tables": 1, + "e6e6e6": 1, + "jQuerySub.prototype": 1, + "cancelBubble=": 1, + "ClientRequest.prototype.setNoDelay": 1, + ".marginTop": 1, + "#4512": 1, + "this.now": 3, + "beforedeactivate": 1, + "directly": 2, + "self.useChunkedEncodingByDefault": 2, + "f.each": 21, + "body": 22, + "*lt": 9, + "this.options.root": 6, + "i.events": 2, + "prefix": 6, + "": 1, + "s*.475": 1, + "k*.130841": 1, + "classProps": 2, + "u00ad": 1, + "tick": 3, + "Object.prototype.toString": 7, + "getSetAttribute": 3, + "GET": 1, + "steelseries.BackgroundColor.BRUSHED_STAINLESS": 2, + "f*.365": 2, + "hasOwnProperty": 5, + "params.data": 5, + "u0604": 1, + "div.style.overflow": 2, + "cd": 3, + "this.options": 6, + "bg.tbody": 1, + "image": 5, + ".0467*f": 1, + ".79*t": 1, + ".34": 1, + "colspan": 2, + "bX": 8, + "socket._httpMessage._last": 1, + "elem.removeAttributeNode": 1, + "properties": 7, + "k.style.paddingLeft": 1, + "hold": 6, + "type": 49, + "key": 85, + "s.body.removeChild": 1, + "g.guid": 3, + "arc": 2, + "bool.ogg": 2, + "this.state": 3, + "us": 2, + "messageHeader": 7, + "have": 6, + ".145098": 1, + "nt.save": 1, + "xhr": 1, + "this.setMinMeasuredValueVisible": 4, + "n.charAt": 1, + "bg.colgroup": 1, + "this.insertBefore": 1, + "g/": 1, + "k.translate": 2, + "hi.setAttribute": 2, + "5": 23, + ".*": 20, + "input": 25, + "fromElement": 6, + "o/r*": 1, + "Return": 2, + "STATUS_CODES": 2, + "self.path": 3, + "this.socket.pause": 1, + "detach": 1, + "existent": 2, + "htmlSerialize": 3, + "e*.504672": 4, + "71028": 1, + "f*.121428": 2, + "k/2": 1, + "elem.getContext": 2, + "c.charAt": 1, + "multiple": 7, + "ret": 62, + "n.lineWidth/2": 2, + "relatedNode": 4, + "stream.Stream": 2, + "b.id": 1, + "h.cloneNode": 1, + "child.__super__": 3, + ".0415*t": 2, + "s*.365": 2, + "cleanExpected": 2, + "/SVGAnimate/.test": 1, + "f.fn.jquery": 1, + "a.button": 2, + "this.trigger": 2, + "access": 2, + "nt/2": 2, + "this._byId": 2, + "cellpadding": 1, + "ot": 43, + "send": 2, + "a.outerHTML": 1, + "c.push": 3, + "socket.once": 1, + "this.attributes": 1, + "a.nodeName": 12, + "checkbox": 14, + "#000": 2, + "toString": 4, + "persist": 1, + "Test": 3, + "chunk.length": 2, + "converters": 2, + "options.createConnection": 4, + "relative": 4, + "f.event.special": 5, + "self._flush": 1, + "tr.width": 1, + "attrs.id": 1, + ".when": 1, + "l.indexOf": 1, + "required": 1, + "void": 1, + "this.getMaxValue": 4, + "td.offsetTop": 1, + "fired": 12, + "Horse.name": 1, + "cssomPrefixes": 2, + "loc.protocol": 2, + "s/vt": 1, + ".85*t": 2, + "u200f": 1, + "a.style.filter": 1, + "changeBubbles": 3, + "info.headers": 1, + "correctly": 1, + "div": 28, + "parse_whitespace": 3, + ".unbind": 4, + "jQuery.type": 4, + "shift": 1, + "read_string": 1, + "RE_DEC_NUMBER": 1, + "gradientFraction1Color": 1, + "U.test": 1, + "it": 112, + "math.cube": 2, + "S.tokcol": 3, + "d.onload": 3, + "Math.min": 5, + "f*i*at/": 1, + "implemented": 1, + "classes.push": 1, + "jQuery._data": 2, + "JS": 7, + "matches=": 1, + "b": 961, + "i.width*.9": 6, + "#x27": 1, + "all.length": 1, + "Accept": 1, + "c.attr": 4, + "shrinkWrapBlocks": 2, + "u.area": 2, + "n.bargraphled": 4, + "newDefer.reject": 1, + "y*.121428": 2, + "this.setThresholdVisible": 4, + "steelseries.TickLabelOrientation.TANGENT": 2, + "window.location.hash": 3, + "f.offset.doesAddBorderForTableAndCells": 1, + "P.browser": 2, + "parser.incoming._addHeaderLine": 2, + "a.firstChild.nodeType": 2, + "f.cleanData": 4, + "f.contains": 5, + "or*.5": 1, + "document.styleSheets.length": 1, + "route.exec": 1, + "Users": 1, + "forgettable": 1, + "f.support.noCloneEvent": 1, + "events": 18, + "parsers.alloc": 1, + "existing": 1, + "t.getRed": 4, + "fireWith": 1, + "Length/i": 1, + "entries": 2, + "race": 4, + "punc": 27, + "pi.width": 1, + "isPropagationStopped=": 1, + "this.bind": 2, + "applet": 2, + "f.cache": 5, + "focus": 7, + "cu": 18, + "rdigit": 1, + "more": 6, + "a.nodeName.toUpperCase": 2, + "exports.request": 2, + "prepend": 1, + "bi": 27, + "OutgoingMessage.prototype._renderHeaders": 1, + "options.host": 4, + "HOP": 5, + "tokpos": 1, + "": 5, + "new": 86, + "this.unbind": 2, + "fallback": 4, + ".815*t": 1, + "st.height": 1, + "end.data.charCodeAt": 1, + ".scrollTop": 1, + "Assume": 2, + "p.addColorStop": 4, + "s/2": 2, + "rule.split": 1, + "atRoot": 3, + "bubbling": 1, + "connectionListener": 3, + "this.valueAverage": 1, + "result1.push": 3, + "node.hidden": 1, + "k.get": 1, + "FF4": 1, + "div.addEventListener": 1, + "j.reliableMarginRight": 1, + "partsConverted": 2, + "paddingMarginBorderVisibility": 3, + "b.converters": 1, + "F": 8, + "s.fillStyle": 1, + "kt/at": 2, + "e*.023364": 2, + "this.cid": 3, + "u070f": 1, + "chunkExpression": 1, + "b.removeChild": 3, + "append": 1, + "S.regex_allowed": 1, + "f*.006": 2, + "f*.12864": 2, + ".89*f": 2, + "ci/2": 1, + ".matches": 1, + "listen": 1, + "g.left": 1, + "AGENT": 2, + "matchesSelector=": 1, + "error": 20, + "f.find.matchesSelector": 2, + "information": 5, + "eliminate": 2, + "ct=": 5, + "d/ot": 1, + "i.useOdometer": 2, + "outer.nextSibling.firstChild.firstChild": 1, + "a.ownerDocument": 1, + "Call": 1, + "content": 5, + "object": 59, + "chaining.": 1, + "existence": 1, + "change": 16, + "a.namespace": 1, + "n/255": 1, + "d.join": 1, + "ajaxPrefilter": 1, + "eq": 2, + "DOMContentLoaded": 14, + "decrement": 2, + "cssFloat": 4, + "s*.32": 1, + "Styles": 1, + "i.scrollTop": 1, + "b.contentType": 1, + "i.resolveWith": 1, + "de": 1, + "f.attrHooks.style": 1, + "foregroundType": 4, + "f*.28": 6, + "n.value": 4, + "steelseries.GaugeType.TYPE1": 4, + "u202F": 1, + "cache=": 1, + "a.isPropagationStopped": 1, + "changeData": 3, + "A.addEventListener": 1, + "backgroundColor": 2, + "expected.length": 4, + "isExplorer": 1, + "this.connection._httpMessage": 3, + "bM": 2, + "e*.04": 1, + "vt": 50, + "origContext": 1, + "__hasProp.call": 2, + "b.selectedIndex": 2, + "f.push.apply": 1, + "non": 8, + "ret.comments_before": 1, + "n.translate": 93, + "g.documentElement": 1, + "c.url": 2, + "c.uaMatch": 1, + "this.readable": 1, + "ut.getContext": 2, + "ti/2": 1, + "this.setMaxValue": 3, + "max": 1, + "firingIndex": 5, + "f.isNaN": 3, + "socketOnData": 1, + "p.setup": 1, + "a.getAttributeNode": 7, + "ClientRequest.prototype.abort": 1, + ".775*t": 3, + "goggles": 1, + "trimRight": 4, + "timeout": 2, + "ri.width": 3, + "trend": 2, + "_.isFunction": 1, + "c.isLocal": 1, + "Va.test": 1, + "display": 7, + "*": 70, + "__slice.call": 2, + "p/r": 1, + "jQuery.nodeName": 3, + "list.length": 5, + ".document": 1, + "JSON.parse": 1, + "jQuerySub.superclass": 1, + "push": 11, + "props": 21, + "h.firstChild": 2, + "bg.thead": 1, + "a.setAttribute": 7, + "defun": 1, + ".32*f": 2, + "cu.setValue": 1, + "Modernizr._domPrefixes": 1, + "s": 290, + "setValueAverage=": 1, + ".03*t": 2, + "i*.142857": 1, + "e*.0375": 1, + "startRule": 1, + "i.shift": 1, + "200934": 2, + "pu": 9, + "cssomPrefixes.join": 1, + "stopPropagation": 5, + "elem.setAttribute": 2, + "oi": 23, + "smile": 4, + "Please": 1, + "duration": 4, + "opacity": 13, + "res._emitEnd": 1, + "mozilla": 4, + "b.toUpperCase": 3, + "Diego": 2, + "*10": 2, + "pt.height": 1, + "this.setTrend": 2, + "jQuery.browser.version": 1, + "bg._default": 2, + "": 3, + "overwrite": 4, + "c=": 24, + "b.save": 1, + "u*i*": 2, + "marginDiv.style.width": 1, + "occur": 1, + "array_to_hash": 11, + "this.setMinMeasuredValue": 3, + "n.trend": 4, + "camel": 2, + "batch": 2, + "METAL": 2, + "ri.height": 3, + "d.src": 1, + "f.dir": 6, + "unload": 5, + "forms": 1, + "p.translate": 8, + "buttons": 1, + "this.one": 1, + "bz": 7, + "Backbone.Router.extend": 1, + "i.done": 1, + "an": 12, + "bg.td": 1, + "globalAgent": 3, + "exports.is_alphanumeric_char": 1, + "strokeStyle=": 8, + "i.preType": 2, + "at.getContext": 1, + "*st/": 1, + ".63*u": 3, + "this.setForegroundType": 5, + "ii": 29, + "val": 13, + "kt=": 4, + "valueForeColor": 1, + "u.clearRect": 5, + "l.top": 1, + "v.error": 1, + "special": 3, + "util.inherits": 7, + "ck.createElement": 1, + "

": 2, + ".map": 1, + "856796": 4, + "elem.attributes": 1, + "parser.incoming.complete": 2, + "open": 2, + "d.nodeValue": 3, + "W": 3, + "body.firstChild": 1, + "options.headers": 7, + "j.call": 2, + ".each": 3, + "d.unshift": 2, + "*.05": 4, + "yi.width": 1, + "attrs": 6, + "timeStamp": 1, + "k.position": 4, + "url=": 1, + "socket.onend": 3, + "Modal": 2, + ".createSVGRect": 1, + "Mark": 1, + "week": 1, + "prependTo": 1, + "isImmediatePropagationStopped": 2, + "Can": 2, + "support.noCloneEvent": 1, + "exec.call": 1, + "usemap": 2, + "this.sub": 2, + "pred": 2, + "addColorStop": 25, + "parser.incoming.readable": 1, + "k.cloneNode": 1, + ".onSocket": 1, + "e.handleObj.origHandler.apply": 1, + "tbody/i": 1, + "float": 3, + "selector": 40, + "cssText": 4, + "here": 1, + "attached": 1, + "cj": 4, + "kt/at*l": 1, + "uncatchable": 1, + "uaMatch": 3, + "l.find.CLASS": 1, + "expectExpression.test": 1, + ".115*t": 5, + "useGradient": 2, + "cache.setInterval": 1, + "leading": 1, + "cases": 4, + "f.prevObject": 1, + "e*.546728": 5, + "i*.05": 2, + "t.toFixed": 2, + "h*t": 1, + "c.borderTopWidth": 2, + "nodes": 14, + "i.childNodes.length": 1, + "a.parentWindow": 2, + "wrong": 1, + "Gets": 2, + "nt.drawImage": 3, + "inputElem.offsetHeight": 1, + "sa": 2, + "f.curCSS": 1, + "bg.option": 1, + "e.getComputedStyle": 1, + "S.text.indexOf": 1, + ";": 4052, + "PRECEDENCE": 1, + "ii.length": 2, + "e.position": 1, + "t.width*.5": 4, + "Convert": 1, + "p=": 5, + "An": 1, + "marginTop": 3, + "w.labelColor.setAlpha": 1, + "#9897": 1, + "find": 7, + "string": 41, + "d.promise": 1, + "vi.getStart": 1, + "tu.drawImage": 1, + "fr": 21, + "f.shift": 1, + "c.props": 2, + "gt.height/2": 2, + "ot/": 1, + "ef": 5, + "window.Modernizr": 1, + "parseJSON": 4, + "enumerated": 2, + "getValueLatest=": 1, + ".0013*t": 12, + "b.addColorStop": 4, + "XXX": 1, + "method.": 3, + "RE_DEC_NUMBER.test": 1, + "getRgbaColor": 21, + "overflow": 2, + "ma": 3, + "name": 161, + "self.options": 2, + "c.extend": 7, + "n.test": 2, + "e*.15": 2, + "i*.7475": 1, + "wu": 9, + "b.offset": 1, + "DTRACE_HTTP_SERVER_REQUEST": 1, + "l.match.ID.test": 2, + "f.expr.filters.hidden": 2, + "bB": 5, + "e*.121428": 2, + "vi": 16, + "layerY": 3, + ".checked": 2, + "hashStrip": 4, + "k.offsetWidth": 1, + "j=": 14, + "exports.parsers": 1, + "st=": 3, + "f.canvas.width*.4865": 2, + "this.trigger.apply": 2, + "getJSON": 1, + "handy": 2, + "removeAttr": 5, + "vt.getContext": 1, + "closePath": 8, + "g.document.body": 1, + "Math.max": 10, + "r.live": 1, + "given": 3, + "load": 5, + "x.version": 1, + "yt.getContext": 5, + "wt.valueBackColor": 1, + "e.documentElement": 4, + "res._last": 1, + "fi.width": 2, + "n.createRadialGradient": 4, + "they": 2, + "o.push": 1, + "a.ActiveXObject": 3, + "e.fn.init.prototype": 1, + "jQuery.fn": 4, + "t.moveTo": 4, + "fi.setAttribute": 2, + "i.tickLabelOrientation": 4, + "o.childNodes": 2, + "objects": 7, + "deletion": 1, + "/i": 22, + "parse_error": 3, + "b.nodeType": 6, + "B.call": 3, + "h": 499, + ".0113*t": 10, + "wt.digits": 2, + "getFragment": 1, + "f.event.special.change.filters": 1, + "submit": 14, + "insertBefore": 1, + "n.slice": 1, + "bo.test": 1, + "Sa": 2, + "d.getElementsByTagName": 6, + "7757": 1, + "res.upgrade": 1, + "_unmark": 3, + "l.appendChild": 1, + "n.shadowOffsetY": 4, + "Math.floor": 26, + "mStyle.backgroundColor": 3, + "b.createElement": 2, + "class2type": 3, + "arguments": 83, + "a.attachEvent": 6, + "lineWidth": 1, + "34": 2, + "yi.getContext": 2, + "PEG.parser": 1, + "this.navigate": 2, + "a.style.position": 1, + "scroll": 6, + "other": 3, + "this.elements": 2, + "*u": 1, + "this.update": 2, + "k.uniqueSort": 5, + "ticket": 4, + "315": 1, + "routes.unshift": 1, + "ECMA": 1, + "t.getGreen": 4, + "this.getUTCFullYear": 1, + "bo": 2, + "c.support.boxModel": 1, + "lcdColor": 4, + "n.arc": 6, + ".guid": 1, + "ServerResponse": 5, + "lastEncoding": 2, + "least": 4, + ".14857": 1, + "runners": 6, + "g.length": 2, + "foundHumanized": 3, + "copied": 1, + "opt": 2, + "T.ready": 1, + "k*.61": 1, + "sr": 21, + "inputElem.style.cssText": 1, + "_onModelEvent": 1, + "offsetSupport.subtractsBorderForOverflowNotVisible": 1, + "getAllResponseHeaders": 1, + "setAlpha": 8, + "rf": 5, + "style.cssText": 1, + "model.id": 1, + "createFlags": 2, + "element.trigger": 1, + "this.className": 10, + "L": 10, + ".hasOwnProperty": 2, + ".ready": 2, + "J=": 1, + "wt.decimalForeColor": 1, + "Support": 1, + "eventName": 21, + "e.fn.init": 1, + "I.beforeactivate": 1, + "attribute": 5, + "za": 3, + "nth": 5, + "parts": 28, + "res.assignSocket": 1, + "identifier": 1, + "i.toFixed": 2, + "resp": 3, + "bp.test": 1, + "marginDiv": 5, + "this.nodeName": 4, + "this.setLcdDecimals": 3, + "i.addColorStop": 27, + "a.dataTypes": 2, + "internally": 5, + "bu.test": 1, + "shadowOffsetX=": 1, + "resetBuffers": 1, + "w=": 4, + "separated": 1, + "div.style.border": 1, + "act": 1, + "util": 1, + "isRejected": 2, + "only.": 2, + "used": 13, + "/compatible/.test": 1, + ".documentElement": 1, + "wt.light.getRgbaColor": 2, + "s*.38": 2, + "f.createElement": 1, + "a.childNodes.length": 1, + "Flag": 2, + "o.insertBefore": 1, + "lf": 5, + "readyState": 1, + "this.appendChild": 1, + "bS": 1, + "unitStringVisible": 4, + ".6*s": 1, + "f.isPlainObject": 1, + "socket.end": 2, + "clone": 5, + ".Event": 1, + "like": 5, + "not": 26, + "currently": 4, + "Only": 5, + "setValueLatest=": 1, + "Modernizr.testAllProps": 1, + "a.prop": 5, + "support.noCloneChecked": 1, + "errorPosition.column": 1, + "self.socketPath": 4, + "cache": 45, + "a.options": 2, + "jQuery.expando": 12, + ".1025*t": 8, + "h6": 1, + "h.status": 1, + "onunload": 1, + "handle": 15, + "bi/": 2, + "delegateEvents": 1, + "element.parent": 1, + "0": 220, + "removeProp": 1, + "value.toLowerCase": 2, + "options.setHost": 1, + "debugger": 2, + "repaint": 23, + "ut.translate": 3, + "str1.length": 1, + "dblclick": 3, + "non_spacing_mark": 1, + "Construct": 1, + "Inspect": 1, + "tokcol": 1, + "ot.height": 1, + "q.handler": 1, + "engine": 2, + "a.runtimeStyle.left": 2, + "y": 101, + "ck.frameBorder": 1, + "matching": 3, + "scripts": 2, + "u1680": 1, + "attempt": 2, + "require": 9, + "add": 15, + "these": 2, + "node": 23, + "steelseries.BackgroundColor.TURNED": 2, + "matched": 2, + "this.getFragment": 6, + "this.slice": 5, + "S.peek": 1, + "fi=": 1, + "e*.481308": 2, + ".7825*t": 5, + "et.translate": 2, + "shivMethods": 2, + "a.cloneNode": 3, + "Event": 3, + "nextAll": 1, + "exports.createClient": 1, + "class": 5, + "": 1, + "setPointerType=": 1, + "pt.width": 1, + "s*.4": 1, + "result.SyntaxError": 1, + "additional": 1, + "/Expect/i": 1, + "cssProps": 1, + "a.JSON.parse": 2, + "is_digit": 3, + "u.frameDesign": 4, + "rr.drawImage": 1, + "ki.play": 1, + "docElement.appendChild": 2, + "e.browser.version": 1, + "Za": 2, + "submitBubbles": 3, + "window.frameElement": 2, + ".892523*ut": 1, + "this.setArea": 1, + "initialize": 3, + "c.currentTarget": 2, + "Sizzle": 1, + ".children": 1, + "x.push": 1, + "Non": 3, + "o.lastChild": 1, + "u.pointerType": 2, + "passed": 5, + "v.set": 5, + "self.socket.writable": 1, + "a.guid": 7, + "yt.start": 1, + "should": 1, + "rowspan": 2, + "at": 58, + "ck.contentWindow": 1, + "values": 10, + "UNICODE.space_combining_mark.test": 1, + "n.fill": 17, + "isFinite": 1, + "this.get": 1, + "Handle": 14, + "s.createElement": 10, + "Trigger": 2, + "model.trigger": 1, + "rnotwhite.test": 2, + "pageX=": 2, + "var": 910, + "Class": 2, + ".parentNode.removeChild": 2, + "jQuery.support.optDisabled": 2, + "then": 8, + "obj.nodeType": 2, + "Modernizr._prefixes": 1, + "change.": 1, + "a.runtimeStyle": 2, + ".toArray": 1, + "a.charAt": 2, + "faster": 1, + "a.length": 23, + "***": 1, + "TEXT": 1, + "frameDesign": 4, + "fragmentOverride": 2, + "]": 1456, + "

": 2, + "ii.height": 2, + "oi/2": 2, + "options.elements": 1, + "possible": 3, + "aren": 5, + "steelseries.ColorDef.BLUE": 1, + "t*.13": 3, + "mod": 12, + "#5145": 1, + "f.attrHooks.name": 1, + "teardown": 6, + "yf": 3, + "l.order.length": 1, + "process.env.NODE_DEBUG": 2, + "45": 5, + "/msie": 1, + "n.order.length": 1, + "//javascript.nwbox.com/IEContentLoaded/": 2, + "cancelable": 4, + "work": 6, + "rt.height": 1, + "model.toJSON": 1, + "selected": 5, + "jQuery.removeAttr": 2, + "set": 22, + "b.firstChild": 5, + "*kt": 5, + "this.setFrameDesign": 7, + "SHEBANG#!node": 2, + "l.left": 1, + "reference": 5, + "repeatable": 1, + "cp": 1, + "colSpan": 2, + ".support.transition": 1, + "": 2, + "Type": 1, + "A.jQuery": 3, + "bd": 1, + "self.once": 2, + "n.drawImage": 14, + "outside": 2, + "f.filter": 2, + "helper": 1, + "c.namespace_re": 1, + "c.fx.speeds": 1, + "unique": 2, + "d.width": 4, + "p.restore": 3, + "this.setSectionActive": 2, + "u3000": 1, + "this.interval": 1, + "giving": 1, + "jQuerySub.fn": 2, + "traditional": 1, + "waiting": 2, + "f.unique": 4, + "A.document": 1, + "global": 5, + "grep": 6, + "Server": 6, + "specialSubmit": 3, + "hr.drawImage": 2, + "f*.82": 1, + "t.stop": 1, + "Modernizr": 12, + "staticProps": 3, + "later": 1, + "e*.012135": 2, + "f*.1": 5, + "body.removeChild": 1, + "f.ajaxSettings.traditional": 2, + "a.currentStyle.left": 1, + "": 1, + "": 1, + "ownerDocument.documentShived": 2, + "A": 24, + ".append": 6, + "d.parseFromString": 1, + "f/": 1, + "ba.call": 1, + "breaking": 1, + "this.nextSibling": 2, + "this.method": 2, + "ni=": 1, + ".86*t": 4, + "n.shadowColor": 2, + "lineTo": 22, + "incoming": 2, + "a.navigator": 1, + "a.insertBefore": 2, + "l.match.PSEUDO.test": 1, + "ft.length": 2, + "getImageData": 1, + "useMap": 2, + "this.httpAllowHalfOpen": 1, + "hover": 3, + "delegate": 1, + "this._pendings.length": 1, + "ties": 1, + "fx": 10, + "readyState=": 1, + "p.setup.call": 1, + ".698039": 1, + ".0516*t": 7, + "params.url": 2, + "el": 4, + "this.valueOf": 2, + "c.data": 12, + "f.support.hrefNormalized": 1, + "jQuery._Deferred": 3, + "parser.socket.ondata": 1, + "isHeadResponse": 2, + "nt": 75, + "k*.13": 2, + "v.complete": 1, + "et.drawImage": 1, + "p.rotate": 4, + "bH": 2, + "a.liveFired": 4, + "message": 5, + "h.overrideMimeType": 2, + "ready": 31, + "jQuery.isReady": 6, + "g.preType": 3, + "them.": 1, + "slow": 1, + "j.handleObj.origHandler.apply": 1, + "t.restore": 2, + "u.save": 7, + "jQuery.ready": 16, + "child": 17, + "setAttribute": 1, + "base": 2, + "exports.Client": 1, + "i*.012135": 1, + "s/ut": 1, + "t.playing": 1, + "Promise": 1, + "%": 26, + "": 1, + "u2060": 1, + "f.fx.stop": 1, + "/json/": 1, + "transferEncodingExpression": 1, + "f*.528037": 2, + "ht": 34, + "row": 1, + "destroy": 1, + "shallow": 1, + ".closest": 4, + "c.specified": 1, + "f.attr": 2, + "t.exec": 1, + "w.textColor": 1, + "matchMedia": 3, + "a.nodeName.toLowerCase": 3, + "lineHeight": 1, + "n": 874, + "t/2": 1, + "i.maxValue": 10, + "Chrome": 2, + "window.history.pushState": 2, + "b.jsonp": 3, + "comment": 3, + "contextXML": 1, + "m.apply": 1, + "": 1, + "f.inArray": 4, + "#5443": 4, + "parser.incoming.method": 1, + "frameBorder": 2, + "e.each": 2, + "lazy": 1, + "obj.constructor": 2, + "d.nodeType": 5, + "regularEaseInOut": 2, + "789719": 1, + ".7475": 2, + "f*.871012": 2, + "params.beforeSend": 1, + "dealing": 2, + "P.version": 1, + "/.exec": 4, + "c.event.handle.apply": 1, + "dt=": 2, + "result1": 81, + "HTTPParser": 2, + "u.degreeScale": 4, + "n*kt": 1, + "kt.translate": 2, + "j.attr": 1, + "mouseover": 12, + "h*.41": 1, + "bu": 11, + "url": 23, + "top": 12, + "e*.1": 1, + "s*.06": 1, + "ai": 21, + "Sets": 3, + "a.style.paddingLeft": 1, + ".name": 3, + "cw.test": 1, + "g.className": 4, + "bodyHead": 4, + ".12*f": 2, + "this.setSection": 4, + "this.resetMaxMeasuredValue": 4, + "this.tagName": 1, + "": 1, + "id": 38, + "he.drawImage": 1, + "i.pageYOffset": 1, + "srcElement": 5, + "type=": 5, + "len": 11, + "sans": 12, + "_id": 1, + "DTRACE_HTTP_SERVER_RESPONSE": 1, + "T.find": 1, + "e.length": 9, + "f.get": 2, + "R": 2, + "exports.ServerResponse": 1, + "trigger": 4, + "multiline": 1, + "n.toFixed": 2, + "/bfnrt": 1, + "k.selectors": 1, + "rinvalidChar.test": 1, + "f.pixelLeft": 1, + "determining": 3, + "c.split": 2, + "frag.appendChild": 1, + "self.removeSocket": 2, + "": 1, + "k.parentNode": 1, + "S.text.charAt": 2, + "e.complete.call": 1, + "wrap": 2, + "350466": 1, + "shadowColor=": 1, + "drawImage": 12, + "e*.060747": 2, + "k.ownerDocument": 1, + "checkSet": 1, + "s.events": 1, + "a.className": 1, + "t*.19857": 1, + "errorPosition": 1, + "f.support.cors": 1, + "the": 107, + "bW.toLowerCase": 1, + "Keep": 2, + "r.exec": 1, + "t*.142857": 8, + ".33*f": 2, + "k*.4": 1, + "span": 1, + "child.prototype.constructor": 1, + "#9699": 1, + "1e8": 1, + "g.splice": 2, + "live": 8, + "steelseries.BackgroundColor.STAINLESS": 2, + "F.prototype": 1, + "div.parentNode.removeChild": 1, + "ce": 6, + "attrHooks": 3, + "ex.name": 1, + ".856796": 2, + "f*.18": 4, + "bY": 1, + "<=1&&a&&f.isFunction(a.promise)?a:f.Deferred();if(d>": 1, + "s*.checked.": 1, + "items": 2, + "h.set": 1, + "ut": 59, + "_hasOwnProperty": 2, + "cx.test": 2, + "a.href": 2, + "h.value": 3, + "this.createSocket": 2, + "selector.charAt": 4, + "<0&&(n+=360),n=\"00\"+Math.round(n),n=n.substring(n.length,n.length-3),(ht===steelseries.LcdColor.STANDARD||ht===steelseries.LcdColor.STANDARD_GREEN)&&(e.shadowColor=\"gray\",e.shadowOffsetX=f*.007,e.shadowOffsetY=f*.007,e.shadowBlur=f*.007),e.font=pr?gr:br,e.fillText(n+\"\\u00b0\",f/2+gt*.05,(t?or:cr)+er*.5+ui*.38,gt*.9),e.restore()},wi=function(n,t,i,r,u){n.save(),n.strokeStyle=r,n.fillStyle=r,n.lineWidth=f*.035;var>": 1, + "input.substr": 9, + "th": 1, + "before": 8, + "this.serializeArray": 1, + "c.ready": 7, + "b.test": 1, + "": 2, + "ht/": 2, + "s*.831775": 1, + "defaults": 3, + "a.now": 4, + "extend": 13, + "result": 9, + ".attr": 1, + "/mg": 1, + "data": 145, + "serverSocketCloseListener": 3, + "72": 1, + "ii.push": 1, + "interval": 3, + "rejectWith": 2, + "_default": 5, + "rt.getContext": 2, + "parse___": 2, + "S/": 4, + "res.emit": 1, + "view": 4, + "sentExpect": 3, + "l/Math.PI*180": 4, + "yt/at": 1, + "this.initialize.apply": 2, + "camelizing": 1, + "now=": 1, + "jsonpCallback": 1, + "transition": 1, + "shown": 2, + "document.createElement": 26, + "err": 5, + "S.pos": 4, + "lt.getContext": 1, + "buildMessage": 2, + "d.readOnly": 1, + "js_error": 2, + "f/10": 1, + "lt=": 4, + "b/vt": 1, + "pos": 197, + "e.document.compatMode": 1, + "k.top": 1, + "attrMap": 2, + "fresh": 1, + "s.detachEvent": 1, + "f*.34": 3, + "ou": 13, + "isBool": 4, + "deferred.done.apply": 2, + "read_while": 2, + "e*.116822": 3, + "ni": 30, + "f.acceptData": 4, + "<=>": 1, + "g.handler": 1, + "ForegroundType": 2, + "yi.height": 1, + "parse_simpleBracketDelimitedCharacter": 2, + "memory": 8, + "b=": 25, + "req.end": 1, + "dataAttr": 6, + "parse_simpleSingleQuotedCharacter": 2, + "document.createElementNS": 6, + "": 1, + "Horse.__super__.move.call": 2, + "f.map": 5, + ".specialChange": 4, + "Not": 4, + "g.resolveWith": 3, + "also": 5, + "action": 3, + "mStyle": 2, + "self.disable": 1, + "f.fn.offset": 2, + "jQuery.support.getSetAttribute": 1, + "F.call": 1, + "j.boxModel": 1, + "doing": 3, + "<=o-4&&(e=0,c=!1),u.fillText(n,o-2-e,h*.5+v*.38)),u.restore()},dt=function(n,i,r,u){var>": 1, + "shived": 5, + "toUpperCase": 1, + "i.style.marginRight": 1, + ".toString": 3, + "c.borderLeftWidth": 2, + "h.promise": 1, + "lineCap=": 5, + "noConflict": 4, + ".08*f": 1, + "iu": 14, + "c.apply": 2, + "hi": 15, + "msie": 4, + "returned": 4, + "IncomingMessage": 4, + "incoming.push": 1, + "script": 7, + ".8425*t": 1, + "b.getBoundingClientRect": 1, + "FreeList": 2, + "c": 775, + "ck.width": 1, + "g.disabled": 1, + "STANDARD": 3, + "h*.2": 2, + "e.medium.getHexColor": 1, + "u.restore": 6, + "": 1, + "f.timers": 2, + "promise": 14, + "__slice": 2, + "space_combining_mark": 1, + "ft.height": 1, + "pe": 2, + "e.fragment": 1, + "Add": 4, + "Client": 6, + "c.support.noCloneEvent": 1, + "eE": 4, + "yt.width": 2, + "req.socket": 1, + "i.createDocumentFragment": 1, + "this.setMaxMeasuredValueVisible": 4, + "jQuery.browser.safari": 1, + ".StringDecoder": 1, + ".createTextNode": 1, + "even": 3, + "square": 10, + "006": 1, + "u.pointerTypeAverage": 2, + "calls": 1, + "accepts": 5, + "release": 2, + "3c4439": 2, + "u.canvas.width*.4865": 2, + "a.splice": 1, + "cv": 2, + "auto": 3, + "f.offset.doesNotIncludeMarginInBodyOffset": 1, + "a.dataFilter": 2, + "rBackslash": 1, + "b.selected": 1, + "bj": 3, + "Explorer": 1, + "b.drawImage": 1, + "i*.121428": 1, + "elements.split": 1, + "requestListener": 6, + "S.comments_before": 2, + "WHITE": 1, + "481308": 4, + "active": 2, + "document": 26, + "deferred": 25, + "ends": 1, + "this.hide": 1, + "a.prototype": 1, + "parser.maxHeaderPairs": 4, + "b.insertBefore": 3, + "screenX": 4, + "unary": 2, + ".63*e": 3, + "fi.height": 2, + "df.type": 1, + "rect": 3, + "a.webkitRequestAnimationFrame": 1, + "l.order.splice": 1, + "class.": 1, + "c.handler": 1, + "f.clean": 1, + "f*.7": 2, + "inputs": 3, + "fast": 1, + "280373": 3, + "name.length": 1, + "this.isLocal": 1, + "Date": 4, + "G": 11, + "propName": 8, + "ra": 1, + "tt=": 3, + "bargraphled": 3, + "tr.drawImage": 2, + "et.rotate": 1, + "c.toFixed": 2, + "args.length": 3, + "a.JSON": 1, + "sizzle": 1, + "exports.ATOMIC_START_TOKEN": 1, + "f*.007": 2, + "e/10": 3, + "u205F": 1, + "b.defaultChecked": 1, + "self.port": 1, + "socket.removeListener": 5, + "gradientFraction2Color": 1, + "n.fillRect": 16, + "beginPath": 12, + "slideToggle": 1, + "f.parseXML": 1, + "o=": 13, + "x.shift": 4, + "n.relative": 5, + "f.support.noCloneChecked": 1, + "e.apply": 1, + "keys": 11, + "t*.856796": 1, + "": 1, + "ct*2.5": 1, + "er": 19, + "parser.onHeaders": 1, + "Set": 4, + "_results.push": 2, + "Name": 1, + "df": 3, + "s*.035": 2, + "ownerDocument.getElementsByTagName": 1, + "crossDomain=": 2, + "released": 2, + "promiseMethods.length": 1, + "this.host": 1, + "htmlFor": 2, + "f.now": 2, + ".46": 3, + "lt/ct": 2, + "kt.drawImage": 1, + "f*.29": 19, + "offsetParent": 1, + "dest": 12, + "this.selector": 16, + "j.toggleClass": 1, + "scrollTop": 2, + "e.map": 1, + "e.canvas.height": 2, + "currentPos": 20, + "i.backgroundVisible": 10, + "jQuerySub.fn.constructor": 1, + "bN": 2, + "token": 5, + "vu": 10, + "pvt": 8, + "l.push": 2, + "Label": 1, + "i.useValueGradient": 4, + "ui": 31, + "this.socket.setTimeout": 1, + "e*.149532": 8, + "08": 1, + "": 5, + "support.shrinkWrapBlocks": 1, + "i=": 31, + "p.pop": 4, + "f.support.appendChecked": 1, + "self._pendings.length": 2, + "f*.556074": 9, + "wu.repaint": 1, + "this.message": 3, + "h1": 5, + "this.fragment": 13, + "this.doesAddBorderForTableAndCells": 1, + "this.httpVersion": 1, + "tds": 6, + "_super": 4, + "promiseMethods": 3, + "f.extend": 23, + "a.done": 1, + "f.appendChild": 1, + "83": 1, + "et.restore": 1, + "docElement.className.replace": 1, + "f.active": 1, + "+": 1135, + "nextUntil": 1, + "destroyed": 2, + "startTime=": 1, + "closeExpression.test": 1, + "navigator.userAgent": 3, + "/u": 3, + "window.html5": 2, + "container": 4, + "a.parentNode.firstChild": 1, + "name.split": 1, + "t": 436, + "setup": 5, + "this._expect_continue": 1, + "Math.sqrt": 2, + "i.lcdColor": 8, + "i.titleString": 10, + "Backbone.Router.prototype": 1, + "modified": 3, + "onMotionChanged=": 2, + "r.repaint": 1, + "s*.626168": 1, + "onServerResponseClose": 3, + "input.charCodeAt": 18, + "c.removeData": 2, + "live.": 2, + "exports._connectionListener": 1, + "insertAfter": 1, + "Ra": 2, + "out": 1, + "b.parentNode.removeChild": 2, + "a.style.display": 3, + "ownerDocument": 9, + "e*.22": 3, + "PI": 54, + "property": 15, + "we": 25, + "714953": 5, + "_ensureElement": 1, + "g.clientLeft": 1, + "<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\\w:]+)[^>": 1, + "u.shadowOffsetX": 2, + "i.gaugeType": 6, + "this._hasPushState": 6, + "container.appendChild": 1, + "tests": 48, + "rwebkit": 2, + "newDefer.resolve": 1, + "jQuery.isNaN": 1, + "this._header": 10, + "setCssAll": 2, + "/100": 2, + "doesn": 2, + "this.maxHeaderPairs": 2, + "process.nextTick": 1, + "sourceIndex": 1, + "is_identifier_start": 2, + "128": 2, + "prop.charAt": 1, + "_.bind": 2, + "jQuery.isArray": 1, + "Callbacks": 1, + "parent.prototype": 6, + "d.call": 3, + "f.expr.filters": 3, + "s.createDocumentFragment": 1, + ".toJSON": 4, + "without": 1, + ".0465*t": 2, + "rawText": 5, + "data.": 1, + "/radio": 1, + "req.listeners": 1, + "OutgoingMessage.prototype._flush": 1, + "sock": 1, + "userAgent": 3, + "e/2": 2, + ".start": 12, + "this.routes": 4, + "let": 1, + "computed": 1, + "multiple=": 1, + "expr": 2, + "has_x": 5, + "r*1.035": 4, + "rr": 21, + "testPropsAll": 17, + "window.location.pathname": 1, + "flags.unique": 1, + "createHangUpError": 3, + "last": 6, + "v.exec": 1, + "X": 6, + "RFC": 16, + "field.slice": 1, + "context": 48, + "self._emitEnd": 1, + "f.attrHooks.value": 1, + "dark": 2, + "gt.height": 1, + "bool.webm": 1, + "explicit": 1, + "a.removeChild": 2, + "a.innerHTML": 7, + "RE_HEX_NUMBER": 1, + "d.getContext": 2, + "ci/": 2, + "begin.data": 1, + "d.charset": 1, + "/javascript": 1, + "this.constructor": 5, + "ya": 2, + "xml": 3, + "e.buildFragment": 1, + "f*.856796": 2, + "yi.setAttribute": 2, + "f.cssProps": 2, + "b.rotate": 1, + "ut.width": 1, + "v=": 5, + "fadeIn": 1, + "m.test": 1, + "setValueAnimatedAverage=": 1, + "setValueAnimatedLatest=": 1, + "t*.114285": 1, + "n.removeClass": 1, + "fn.apply": 1, + "ck": 5, + "option.disabled": 2, + "end": 14, + "270": 1, + "lr": 19, + "c.overflow": 1, + "OutgoingMessage.call": 2, + ".innerHTML.replace": 1, + "b.css": 1, + "Top": 1, + "b_": 4, + ".7725*t": 6, + "kf": 3, + "e.splice": 1, + "connectionExpression": 1, + "h*u": 1, + "c.globalEval": 1, + "exists": 9, + "start": 20, + "d.toFixed": 1, + "vi.height": 1, + "h.clientTop": 1, + "We": 6, + "D.call": 4, + "jQuery.parseJSON": 2, + "UNICODE": 1, + "i.labelNumberFormat": 10, + "bug": 3, + "shiftKey": 4, + "jQuery.attr": 2, + "a.sub": 1, + ".1": 18, + ".replace": 38, + "<": 209, + "k.find": 6, + "yt.stop": 1, + "f*": 5, + "Math": 51, + "_data": 3, + "Array.prototype.slice.call": 1, + "c.attachEvent": 3, + "h*.04": 1, + ".getRgbaColor": 3, + "u.createRadialGradient": 1, + "expected.slice": 1, + "this.options.root.length": 1, + "into": 2, + "steelseries.LcdColor.STANDARD": 9, + "etag": 3, + "async": 5, + "self._renderHeaders": 1, + "rvalidbraces": 2, + "iu.getContext": 1, + "this.extend": 1, + "a.relatedTarget": 2, + "g.nodeType": 6, + "/Content": 1, + "clip": 1, + "u*.65": 2, + "inputElem": 6, + "deferred.cancel": 2, + "_.exec": 2, + "leftMatch": 2, + "The": 9, + "there": 6, + "andSelf": 1, + "net.Server.call": 1, + "b.length": 12, + "u*.003": 2, + "options.routes": 2, + "this.writeHead.apply": 1, + "no": 19, + "r.createElement": 11, + "attrs.list": 2, + "location.hash": 1, + "stopImmediatePropagation": 1, + "about": 1, + "c.isPlainObject": 3, + "bC": 2, + "f.uuid": 1, + "s.addColorStop": 4, + "k*.514018": 2, + "": 2, + "Ya": 2, + "n.background": 22, + "q.expr": 4, + "model": 14, + "b.restore": 1, + ".686274": 1, + "Modernizr._version": 1, + "Function.prototype.bind": 2, + "_extractParameters": 1, + "": 2, + "Modal.prototype": 1, + "u.pointSymbols": 4, + "94": 1, + "parent.firstChild": 1, + "this.models": 1, + "list": 21, + "c.result": 3, + "test/unit/core.js": 2, + ".TEST": 2, + "d.toLowerCase": 1, + "marginRight": 2, + "this.socket.once": 1, + "s*.565": 1, + "u.frameVisible": 4, + "e.reverse": 1, + "leading/trailing": 2, + "f.fx.speeds": 1, + "W/.test": 1, + "100": 4, + "steelseries.LedColor.RED_LED": 7, + "f.offset.setOffset": 2, + "IncomingMessage.prototype.resume": 1, + "boolHook": 3, + "steelseries.PointerType.TYPE1": 3, + "forcePushState": 2, + "flags": 13, + "d.stop": 2, + "<-270&&e>": 2, + "i*.12864": 2, + "IE8": 2, + "i": 853, + ".fail.apply": 1, + "c.removeClass": 1, + "comments_before": 1, + "PUNC_CHARS": 1, + "h*.8": 1, + "steelseries.TrendState.UP": 2, + "element.removeAttribute": 2, + "Index": 1, + "a.selector": 4, + "f.attrFn": 3, + "attrFixes": 1, + "prefixed": 7, + "e.offsetTop": 4, + "unit=": 1, + "jquery": 3, + "deferred.done": 2, + "callbacks.shift": 1, + "cp.slice": 1, + "yr": 17, + "c.target": 3, + "tabindex": 4, + "this._renderHeaders": 3, + "f.buildFragment": 2, + "h.type": 1, + "inherits": 2, + "OutgoingMessage.prototype.destroy": 1, + "35": 1, + "rotate": 31, + "fi.pause": 1, + "prev": 2, + "len.toString": 2, + "a.fn.constructor": 1, + "e/1.95": 1, + "fillStyle=": 13, + "<<": 4, + "q.length": 1, + "vertical": 1, + "copy": 16, + "firstly": 2, + "tok": 1, + "S.col": 3, + "t*.435714": 4, + "/xml/": 1, + "bp": 1, + "wt.getContext": 1, + "u*.22": 3, + "rNonWord": 1, + "s*": 15, + "Invalid": 2, + ".030373*e": 1, + "chars.join": 1, + "Modernizr.hasEvent": 1, + "feature": 12, + "No": 1, + "keydown": 4, + "e.browser.safari": 1, + "password": 5, + "col": 7, + "tokline": 1, + ".528036*f": 5, + "i.height": 6, + "u.font": 2, + "v.abort": 1, + "Left": 1, + "globalEval": 2, + "cloned": 1, + "tabIndex": 4, + "f.events": 1, + "k*.037383": 11, + "history.pushState": 1, + "ajaxSend": 1, + "c.isPropagationStopped": 1, + "newDefer": 3, + "res.detachSocket": 1, + ".listen": 1, + "M": 9, + "e.uaMatch": 1, + "t.closePath": 4, + "si.width": 2, + "Math.PI/": 1, + "jQuery.prop": 2, + "a.getElementsByClassName": 3, + "elem.getAttribute": 7, + "a.attributes.value": 1, + "c.isReady": 4, + "conditional": 1, + "t.dark.getRgbaColor": 2, + "div.style.zoom": 2, + "this.doesNotIncludeMarginInBodyOffset": 1, + "encodeURIComponent": 2, + "v.statusText": 1, + "s.readyState": 2, + "or/2": 1, + "i.trendColors": 4, + "it.getContext": 2, + "<-180&&e>": 2, + "appendChild": 1, + "i.style.width": 1, + "ex": 3, + "21028": 1, + "quoteForRegexpClass": 1, + "First": 3, + "f.sibling": 2, + "Catch": 2, + "at/": 1, + "this._emitPending": 1, + "c.browser.webkit": 1, + "f.camelCase": 5, + "keyCode=": 1, + "u/2": 5, + "u0600": 1, + "ms": 2, + "offset": 21, + "": 1, + "s*.023364": 2, + "div.id": 1, + "DELETE": 1, + "container.style.zoom": 2, + "bT": 2, + "jQuery": 48, + "f.isFunction": 21, + "f.isArray": 8, + "this": 577, + "localAddress": 15, + "this.color": 1, + "client": 3, + "res.shouldKeepAlive": 1, + "dt.stop": 2, + "serialized": 3, + "cssNumber": 3, + "debug": 15, + "i.pointerColor": 4, + "#3333": 1, + "c.xhr": 1, + "Snake": 12, + "self.createConnection": 2, + "util._extend": 1, + "where": 2, + "context.ownerDocument": 2, + "Client.prototype.request": 1, + "catch/finally": 1, + "et=": 6, + "/2": 25, + "this.parent": 2, + "u.backgroundVisible": 4, + "shiv": 1, + "prefixes.join": 3, + "str1": 6, + "because": 1, + "1": 97, + "Agent.defaultMaxSockets": 2, + "i.nodeType": 1, + "steelseries.BackgroundColor.DARK_GRAY": 7, + "this.animate": 2, + "a.type": 14, + "e._Deferred": 1, + "remove": 9, + "ServerResponse.prototype.statusCode": 1, + "o.split": 1, + "m.elem": 1, + "has_dot": 3, + "self.getHeader": 1, + "g.parentNode": 2, + "allows": 1, + "e.clearRect": 1, + "textAlign=": 7, + "this.setMinValue": 4, + "gt": 32, + "node.canHaveChildren": 1, + "d.style": 3, + "position": 7, + "z": 21, + "occurred.": 2, + "this.parentNode": 1, + "processData": 3, + "this._headers.concat": 1, + "removeAttribute": 3, + "163551": 5, + "hi.height": 3, + "slice.call": 3, + "msecs": 4, + "scrollLeft": 2, + "deferred.promise": 1, + "this.found": 1, + "protoProps": 6, + "Ready": 2, + "email": 2, + "a.text": 1, + "l.order": 1, + "i.resolve": 1, + "Z.exec": 1, + "setBackgroundColor=": 1, + "s*.5": 1, + "t*.007142": 4, + "parser.incoming._emitData": 1, + "": 4, + "this.outputEncodings.unshift": 1, + "e*.28": 1, + "inputElemType": 5, + "jQuerySub.sub": 1, + "d.left": 2, + "bytesParsed": 4, + "at/yt*h": 1, + "loc.pathname": 1, + "req.parser": 1, + "apply": 8, + "c.clean": 1, + "f.support.optSelected": 1, + "getElementsByTagName": 1, + "result=": 1, + "_.extend": 9, + "this.finished": 4, + "firstParam": 6, + "c.getElementById": 1, + "au": 10, + "pos0": 51, + "socket.destroySoon": 2, + "pageXOffset": 2, + "expandos": 2, + "textarea": 8, + "n.unbind": 1, + "jshint": 1, + "dir": 1, + "zIndex": 1, + ".34*f": 2, + "u.fillStyle": 2, + "j.nodeName": 1, + "this.connection.writable": 3, + "": 1, + "x.length": 8, + "f.context": 1, + "s*.71": 1, + "Backbone.History.prototype": 1, + "src": 7, + "j.optDisabled": 1, + "detachEvent": 2, + "failDeferred.resolveWith": 1, + "connectionExpression.test": 1, + "b.type": 4, + "escape.call": 1, + "k*.57": 1, + "res.writeContinue": 1, + "pointerColor": 4, + "i.width*.5": 2, + "1_=": 1, + ".data": 3, + "q.test": 1, + "Perini": 2, + "a.detachEvent": 1, + "actual": 1, + "f.support.ajax": 1, + "c.on": 2, + "f.event.handle.call": 1, + "this.getHeader": 2, + "explanation": 1, + "c.support.hrefNormalized": 1, + "check": 8, + "ONLY.": 2, + "jQuery.propFix": 2, + "e.trim": 1, + "HTTPParser.REQUEST": 2, + "e*.490654": 2, + "46": 1, + "/SVGClipPath/.test": 1, + "this.handlers.unshift": 1, + "/Transfer": 1, + "TAG": 2, + "color": 4, + "own.": 2, + "b.text": 3, + "triggerHandler": 1, + "i.lcdDecimals": 8, + "getElements": 2, + "feature.toLowerCase": 2, + "c.hasContent": 1, + "Sizzle.isXML": 1, + "s.textBaseline": 1, + "c.mimeType": 2, + ".cssText": 2, + "728155": 2, + ".65*u": 1, + "merge": 2, + "cq": 3, + "s*.12": 1, + "marginDiv.style.marginRight": 1, + "h.indexOf": 3, + "be": 12, + "s.splice": 1, + "chunk.": 1, + "st.medium.getHexColor": 2, + "uFEFF": 1, + "testProps": 3, + "jQuery.fn.jquery": 1, + "//docs.jquery.com/Utilities/jQuery.browser": 1, + "bg.caption": 1, + "reject": 4, + "d.userAgent": 1, + "Buffer.byteLength": 2, + "quote": 3, + "constructor": 8, + "self.onSocket": 3, + ".0314*t": 5, + "it.labelColor.setAlpha": 1, + "tt": 53, + "a.DOMParser": 1, + "pageX": 4, + "notxml": 8, + ".appendChild": 1, + "nlb": 1, + "f*.2": 1, + "end.data": 1, + "oldIE": 3, + "f.makeArray": 5, + "legend": 1, + "after": 7, + ".7": 1, + "B": 5, + "opera": 4, + ".nodeType": 9, + "f.Event": 2, + "borderLeftWidth": 1, + "e*.009": 1, + "": 5, + "this.setValueColor": 3, + "fakeBody": 4, + "viewOptions": 2, + "this.css": 1, + "a.elem.style": 3, + "C.apply": 1, + "scoped": 1, + "c.body.appendChild": 1, + "e.fn.attr.call": 1, + "slice": 10, + "m.elem.disabled": 1, + "exports.OutgoingMessage": 1, + "62": 1, + "_pos": 2, + "bt.getContext": 1, + "R.apply": 1, + "module.deprecate": 2, + "c.browser.version": 1, + "d.concat": 1, + "parser.onMessageComplete": 1, + "d.toUTCString": 1, + "onFree": 3, + "it.labelColor.getRgbaColor": 4, + "s*.355": 1, + "Date.prototype.toJSON": 2, + "f.offset.subtractsBorderForOverflowNotVisible": 1, + "easing": 3, + "f.cssNumber": 1, + "Unicode": 1, + "n.target._pos": 7, + "rspace": 1, + "a.offsetTop": 2, + "this.doesNotAddBorder": 1, + "getAttribute": 3, + "f.trim": 2, + "isReady": 5, + "g.namespace": 1, + "dateExpression": 1, + "html5.shivCSS": 1, + "da": 1, + "ATOMIC_START_TOKEN": 1, + "u*.009": 1, + "nu": 11, + "parser.onHeadersComplete": 1, + "doScrollCheck": 6, + "": 1, + "this._headerNames": 5, + "ft.push": 1, + "webforms": 2, + "xhr.setRequestHeader": 1, + "End": 1, + "a.contentDocument": 1, + "bI": 1, + "d.innerHTML": 2, + "ai.getContext": 2, + "this.requests": 5, + "must": 4, + "a=": 23, + "flagsCache": 3, + "a.superclass": 1, + "c.defaultView": 2, + "03": 1, + "h.scrollTop": 2, + "options.protocol": 3, + "e.browser.webkit": 1, + "b.events": 4, + "ServerResponse.prototype.assignSocket": 1, + "h.medium.getRgbaColor": 6, + "pu.state": 1, + "Bug": 1, + "c.namespace": 2, + "j.style.opacity": 1, + "firing": 16, + "appended": 2, + "": 1, + "": 1, + "g.selector": 3, + "&": 13, + "jQuery.attrFix": 2, + "k.nodeType": 1, + "getPreventDefault": 2, + "f.fn.css": 1, + "switch": 30, + "ki.pause": 1, + "hu": 11, + "safari": 1, + "details": 3, + "a.frameElement": 1, + "gi": 26, + "natively": 1, + "this.type": 3, + "e.browser": 1, + "this._send": 8, + "a.selected": 1, + "o": 322, + "f.error": 4, + "r.setAlpha": 8, + "moveTo": 10, + "inverted": 4, + "frag.createDocumentFragment": 1, + "g.top": 1, + "parser.incoming.httpVersionMajor": 1, + "a.dataType": 1, + "471962": 4, + "r*1.014": 5, + "i.useSectionColors": 4, + "h.scrollLeft": 2, + "this.setHeader": 2, + "d.type": 2, + "cur": 6, + "internal": 8, + "oe": 2, + "i.getGreen": 1, + "_.bindAll": 1, + "ServerResponse.prototype.writeHead": 1, + ".charAt": 1, + "u.pointerColor": 4, + "ut=": 6, + "Math.PI*.5": 2, + "i*.45": 4, + "value.call": 1, + "deferred.resolveWith": 5, + "this.die": 1, + "hostHeader": 3, + "q.set": 4, + "j.checkClone": 1, + "utcDate": 2, + "fontWeight": 1, + "steelseries.LcdColor.STANDARD_GREEN": 4, + "this.getUTCMinutes": 1, + "e.getAttribute": 2, + "setPointerTypeAverage=": 1, + "bt.length": 4, + "result2": 77, + "document.defaultView": 1, + "executing": 1, + "both": 2, + "e.style.cssFloat": 1, + "this.chunkedEncoding": 6, + "f.hasData": 2, + "inserted": 1, + "a.target": 5, + "c.error": 2, + "hot": 3, + "": 1, + "testMediaQuery": 2, + "expression": 4, + "bindReady": 5, + "getScript": 1, + "h*.42": 1, + "Internal": 1, + "b.slice": 1, + "r/g": 2, + "parser.incoming.httpVersionMinor": 1, + "bv": 2, + "u.toPrecision": 1, + "this._ensureElement": 1, + "toLowerCase": 3, + "rbrace.test": 2, + ".480099": 1, + "cr*.38": 1, + "Feb": 1, + "click": 11, + "ta.test": 1, + "process.binding": 1, + "a.preventDefault": 3, + "bt.test": 1, + "ie": 2, + "fakeBody.style.background": 1, + "namedParam": 2, + "fail": 10, + "s*.085": 1, + "parse_hexDigit": 7, + "window.DocumentTouch": 1, + "f.lastModified": 1, + "iframes": 2, + "api": 1, + "req.res.emit": 1, + "s*.523364": 2, + "this.offset": 2, + "path": 5, + "S": 8, + "b.checked": 1, + "getElementById": 4, + "part.data": 1, + "parse_hexEscapeSequence": 3, + "options.shivCSS": 1, + "fA": 2, + "Reference": 1, + "this.childNodes": 1, + "qa": 1, + "ot.addColorStop": 2, + "bool.wav": 1, + "h.responseText": 1, + "many": 3, + "i.live.slice": 1, + "57": 1, + "this._remove": 1, + "350467": 5, + "this.iframe.location.hash": 3, + "outer.style.overflow": 1, + "attrName": 4, + "ActiveXObject": 1, + "n=": 10, + "html5.shivMethods": 1, + "cells": 3, + "Stack": 1, + "try": 44, + "jQuery=": 2, + "options.method": 2, + "t.test": 2, + "token.value": 1, + "dr": 16, + "i.area": 4, + "anyone": 1, + "parser.incoming.statusCode": 2, + "trying": 1, + "callback": 23, + "elem=": 4, + "my": 1, + "cf": 7, + "/Connection/i": 1, + "isPlainObject": 4, + "isEmptyDataObject": 3, + "b.triggerHandler": 2, + ".0377*t": 2, + "se.drawImage": 1, + "elems.length": 1, + "self.socket": 5, + "bZ": 3, + "KEYWORDS": 2, + "i*.114285": 1, + "t.height*.9": 6, + "jQuery.fn.extend": 4, + ".style.display": 5, + "uu": 13, + "steelseries.FrameDesign.METAL": 7, + "canvas": 22, + ".close": 1, + "are": 18, + "f.fragments": 3, + "dt.height/2": 2, + ".0365*t": 9, + ".0264*t": 4, + "li.width": 3, + "ti": 39, + "t/255": 1, + "g.get": 1, + "Q.push": 1, + "err.message": 1, + "p.save": 2, + "dt.type": 4, + "parse_eolEscapeSequence": 3, + "f.offset.bodyOffset": 2, + "e.error": 2, + "self.agent": 3, + "h=": 19, + "floor": 13, + "handleObj=": 1, + "req.method": 5, + "br=": 1, + "fieldset": 1, + "node.offsetTop": 1, + "gt.length": 2, + "ut*.61": 1, + "t.width*.1": 2, + "x.browser": 2, + "trimming": 2, + "f.ajaxTransport": 2, + "c.dataTypes.unshift": 1, + "bring": 2, + "rt.addColorStop": 4, + "Clear": 1, + "CRLF": 13, + "fn": 14, + "reliableMarginRight": 2, + "n.canvas.height/2": 4, + "l/et": 8, + "Modernizr.testProp": 1, + "object.url": 4, + "differently": 1, + "f.easing": 1, + "parser.socket.resume": 1, + "bb.test": 2, + "isNaN": 6, + "is_token": 1, + "UNICODE.non_spacing_mark.test": 1, + "f*.35": 26, + "v.createRadialGradient": 2, + "y.drawImage": 6, + "f/2": 13, + "k.elem": 2, + "vi.drawImage": 2, + "Backbone.Model.extend": 1, + "Animal": 12, + "inArray": 5, + "time": 1, + "Qa": 1, + "StringDecoder": 2, + "b.append": 1, + "reliable": 1, + "ajaxTransport": 1, + "this.maxHeadersCount": 2, + "failDeferred.done": 1, + "d.prevObject": 1, + "info": 2, + "k.labelColor.setAlpha": 1, + "jsonp": 1, + "methods": 8, + "/gi": 2, + "ve": 3, + "c.event.add": 1, + "const": 2, + "Extend": 2, + "s.exec": 1, + "options.defaultPort": 1, + "store": 3, + "a.offsetHeight": 2, + "f.event.remove": 5, + "parser.socket": 4, + "m.level": 1, + "r.test": 1, + "docCreateElement": 5, + "Mozilla": 2, + "maintains": 1, + "parser.incoming": 9, + "R.call": 2, + "height=": 17, + "parse_unicodeEscapeSequence": 3, + "decodeURIComponent": 2, + "will": 7, + "iterating": 1, + ".107476*ut": 1, + "h.guid": 2, + "n.odo": 2, + "i.ledVisible": 10, + "mode": 1, + "d": 771, + "thisCache": 15, + "makeArray": 3, + "666666": 2, + "h*.3": 1, + "d.style.overflow": 1, + "siblings": 1, + "": 2, + "": 1, + "bgcolor=": 1, + "": 1, + "": 1, + "xsl=": 1, + "": 1, + "CD": 1, + "My": 1, + "version=": 2, + "": 1, + "": 2, "Collection": 1, - "objc_arc": 1, - "Automatic": 1, - "Reference": 1, - "Counting": 1, - "ARC": 1, - "xffffffffU": 1, - "fffffff": 1, - "ULLONG_MAX": 1, - "xffffffffffffffffULL": 1, - "LLONG_MIN": 1, - "fffffffffffffffLL": 1, - "LL": 1, - "requires": 4, - "types": 2, - "bits": 1, - "respectively.": 1, - "WORD_BIT": 1, - "LONG_BIT": 1, - "bit": 1, - "architectures.": 1, - "SIZE_MAX": 1, - "SSIZE_MAX": 1, - "JK_HASH_INIT": 1, - "UL": 138, - "JK_FAST_TRAILING_BYTES": 2, - "JK_CACHE_SLOTS_BITS": 2, - "JK_CACHE_SLOTS": 1, - "JK_CACHE_PROBES": 1, - "JK_INIT_CACHE_AGE": 1, - "JK_TOKENBUFFER_SIZE": 1, - "JK_STACK_OBJS": 1, - "JK_JSONBUFFER_SIZE": 1, - "JK_UTF8BUFFER_SIZE": 1, - "JK_ENCODE_CACHE_SLOTS": 1, - "JK_ATTRIBUTES": 15, - "attr": 3, - "...": 11, - "##__VA_ARGS__": 7, - "JK_EXPECTED": 4, - "cond": 12, - "expect": 3, - "__builtin_expect": 1, - "JK_EXPECT_T": 22, - "U": 2, - "JK_EXPECT_F": 14, - "JK_PREFETCH": 2, - "ptr": 3, - "__builtin_prefetch": 1, - "JK_STATIC_INLINE": 10, - "__inline__": 1, - "always_inline": 1, - "JK_ALIGNED": 1, - "arg": 11, - "aligned": 1, - "JK_UNUSED_ARG": 2, - "unused": 3, - "JK_WARN_UNUSED": 1, - "warn_unused_result": 9, - "JK_WARN_UNUSED_CONST": 1, - "JK_WARN_UNUSED_PURE": 1, - "pure": 2, - "JK_WARN_UNUSED_SENTINEL": 1, - "sentinel": 1, - "JK_NONNULL_ARGS": 1, - "nonnull": 6, - "JK_WARN_UNUSED_NONNULL_ARGS": 1, - "JK_WARN_UNUSED_CONST_NONNULL_ARGS": 1, - "JK_WARN_UNUSED_PURE_NONNULL_ARGS": 1, - "__GNUC_MINOR__": 3, - "JK_ALLOC_SIZE_NON_NULL_ARGS_WARN_UNUSED": 2, - "nn": 4, - "alloc_size": 1, - "JKArray": 14, - "JKDictionaryEnumerator": 4, - "JKDictionary": 22, - "JSONNumberStateStart": 1, - "JSONNumberStateFinished": 1, - "JSONNumberStateError": 1, - "JSONNumberStateWholeNumberStart": 1, - "JSONNumberStateWholeNumberMinus": 1, - "JSONNumberStateWholeNumberZero": 1, - "JSONNumberStateWholeNumber": 1, - "JSONNumberStatePeriod": 1, - "JSONNumberStateFractionalNumberStart": 1, - "JSONNumberStateFractionalNumber": 1, - "JSONNumberStateExponentStart": 1, - "JSONNumberStateExponentPlusMinus": 1, - "JSONNumberStateExponent": 1, - "JSONStringStateStart": 1, - "JSONStringStateParsing": 1, - "JSONStringStateFinished": 1, - "JSONStringStateError": 1, - "JSONStringStateEscape": 1, - "JSONStringStateEscapedUnicode1": 1, - "JSONStringStateEscapedUnicode2": 1, - "JSONStringStateEscapedUnicode3": 1, - "JSONStringStateEscapedUnicode4": 1, - "JSONStringStateEscapedUnicodeSurrogate1": 1, - "JSONStringStateEscapedUnicodeSurrogate2": 1, - "JSONStringStateEscapedUnicodeSurrogate3": 1, - "JSONStringStateEscapedUnicodeSurrogate4": 1, - "JSONStringStateEscapedNeedEscapeForSurrogate": 1, - "JSONStringStateEscapedNeedEscapedUForSurrogate": 1, - "JKParseAcceptValue": 2, - "JKParseAcceptComma": 2, - "JKParseAcceptEnd": 3, - "JKParseAcceptValueOrEnd": 1, - "JKParseAcceptCommaOrEnd": 1, - "JKClassUnknown": 1, - "JKClassString": 1, - "JKClassNumber": 1, - "JKClassArray": 1, - "JKClassDictionary": 1, - "JKClassNull": 1, - "JKManagedBufferOnStack": 1, - "JKManagedBufferOnHeap": 1, - "JKManagedBufferLocationMask": 1, - "JKManagedBufferLocationShift": 1, - "JKManagedBufferMustFree": 1, - "JKManagedBufferFlags": 1, - "JKObjectStackOnStack": 1, - "JKObjectStackOnHeap": 1, - "JKObjectStackLocationMask": 1, - "JKObjectStackLocationShift": 1, - "JKObjectStackMustFree": 1, - "JKObjectStackFlags": 1, - "JKTokenTypeInvalid": 1, - "JKTokenTypeNumber": 1, - "JKTokenTypeString": 1, - "JKTokenTypeObjectBegin": 1, - "JKTokenTypeObjectEnd": 1, - "JKTokenTypeArrayBegin": 1, - "JKTokenTypeArrayEnd": 1, - "JKTokenTypeSeparator": 1, - "JKTokenTypeComma": 1, - "JKTokenTypeTrue": 1, - "JKTokenTypeFalse": 1, - "JKTokenTypeNull": 1, - "JKTokenTypeWhiteSpace": 1, - "JKTokenType": 2, - "JKValueTypeNone": 1, - "JKValueTypeString": 1, - "JKValueTypeLongLong": 1, - "JKValueTypeUnsignedLongLong": 1, - "JKValueTypeDouble": 1, - "JKValueType": 1, - "JKEncodeOptionAsData": 1, - "JKEncodeOptionAsString": 1, - "JKEncodeOptionAsTypeMask": 1, - "JKEncodeOptionCollectionObj": 1, - "JKEncodeOptionStringObj": 1, - "JKEncodeOptionStringObjTrimQuotes": 1, - "JKEncodeOptionType": 2, - "JKHash": 4, - "JKTokenCacheItem": 2, - "JKTokenCache": 2, - "JKTokenValue": 2, - "JKParseToken": 2, - "JKPtrRange": 2, - "JKObjectStack": 5, - "JKBuffer": 2, - "JKConstBuffer": 2, - "JKConstPtrRange": 2, - "JKRange": 2, - "JKManagedBuffer": 5, - "JKFastClassLookup": 2, - "JKEncodeCache": 6, - "JKEncodeState": 11, - "JKObjCImpCache": 2, - "JKHashTableEntry": 21, - "serializeObject": 1, - "options": 6, - "optionFlags": 1, - "encodeOption": 2, - "JKSERIALIZER_BLOCKS_PROTO": 1, - "releaseState": 1, - "keyHash": 21, - "uint32_t": 1, - "UTF32": 11, - "uint16_t": 1, - "UTF16": 1, - "uint8_t": 1, - "UTF8": 2, - "conversionOK": 1, - "sourceExhausted": 1, - "targetExhausted": 1, - "sourceIllegal": 1, - "ConversionResult": 1, - "UNI_REPLACEMENT_CHAR": 1, - "FFFD": 1, - "UNI_MAX_BMP": 1, - "FFFF": 3, - "UNI_MAX_UTF16": 1, - "UNI_MAX_UTF32": 1, - "FFFFFFF": 1, - "UNI_MAX_LEGAL_UTF32": 1, - "UNI_SUR_HIGH_START": 1, - "xD800": 1, - "UNI_SUR_HIGH_END": 1, - "xDBFF": 1, - "UNI_SUR_LOW_START": 1, - "xDC00": 1, - "UNI_SUR_LOW_END": 1, - "xDFFF": 1, - "trailingBytesForUTF8": 1, - "offsetsFromUTF8": 1, - "E2080UL": 1, - "C82080UL": 1, - "xFA082080UL": 1, - "firstByteMark": 1, - "xC0": 1, - "xE0": 1, - "xF0": 1, - "xF8": 1, - "xFC": 1, - "JK_AT_STRING_PTR": 1, - "stringBuffer.bytes.ptr": 2, - "JK_END_STRING_PTR": 1, - "stringBuffer.bytes.length": 1, - "*_JKArrayCreate": 2, - "*objects": 5, - "mutableCollection": 7, - "_JKArrayInsertObjectAtIndex": 3, - "*array": 9, - "newObject": 12, - "objectIndex": 48, - "_JKArrayReplaceObjectAtIndexWithObject": 3, - "_JKArrayRemoveObjectAtIndex": 3, - "_JKDictionaryCapacityForCount": 4, - "*_JKDictionaryCreate": 2, - "*keys": 2, - "*keyHashes": 2, - "*_JKDictionaryHashEntry": 2, - "*dictionary": 13, - "_JKDictionaryCapacity": 3, - "_JKDictionaryResizeIfNeccessary": 3, - "_JKDictionaryRemoveObjectWithEntry": 3, - "*entry": 4, - "_JKDictionaryAddObject": 4, - "*_JKDictionaryHashTableEntryForKey": 2, - "aKey": 13, - "_JSONDecoderCleanup": 1, - "*decoder": 1, - "_NSStringObjectFromJSONString": 1, - "*jsonString": 1, - "**error": 1, - "jk_managedBuffer_release": 1, - "*managedBuffer": 3, - "jk_managedBuffer_setToStackBuffer": 1, - "*ptr": 2, - "*jk_managedBuffer_resize": 1, - "newSize": 1, - "jk_objectStack_release": 1, - "*objectStack": 3, - "jk_objectStack_setToStackBuffer": 1, - "**objects": 1, - "**keys": 1, - "CFHashCode": 1, - "*cfHashes": 1, - "jk_objectStack_resize": 1, - "newCount": 1, - "jk_error": 1, - "*format": 7, - "jk_parse_string": 1, - "jk_parse_number": 1, - "jk_parse_is_newline": 1, - "*atCharacterPtr": 1, - "jk_parse_skip_newline": 1, - "jk_parse_skip_whitespace": 1, - "jk_parse_next_token": 1, - "jk_error_parse_accept_or3": 1, - "*or1String": 1, - "*or2String": 1, - "*or3String": 1, - "*jk_create_dictionary": 1, - "startingObjectIndex": 1, - "*jk_parse_dictionary": 1, - "*jk_parse_array": 1, - "*jk_object_for_token": 1, - "*jk_cachedObjects": 1, - "jk_cache_age": 1, - "jk_set_parsed_token": 1, - "advanceBy": 1, - "jk_encode_error": 1, - "*encodeState": 9, - "jk_encode_printf": 1, - "*cacheSlot": 4, - "startingAtIndex": 4, - "jk_encode_write": 1, - "jk_encode_writePrettyPrintWhiteSpace": 1, - "jk_encode_write1slow": 2, - "ssize_t": 2, - "depthChange": 2, - "jk_encode_write1fast": 2, - "jk_encode_writen": 1, - "jk_encode_object_hash": 1, - "*objectPtr": 2, - "jk_encode_updateCache": 1, - "jk_encode_add_atom_to_buffer": 1, - "jk_encode_write1": 1, - "es": 3, - "dc": 3, - "f": 8, - "_jk_encode_prettyPrint": 1, - "jk_min": 1, - "b": 4, - "jk_max": 3, - "jk_calculateHash": 1, - "currentHash": 1, - "c": 7, - "Class": 3, - "_JKArrayClass": 5, - "_JKArrayInstanceSize": 4, - "_JKDictionaryClass": 5, - "_JKDictionaryInstanceSize": 4, - "_jk_NSNumberClass": 2, - "NSNumberAllocImp": 2, - "_jk_NSNumberAllocImp": 2, - "NSNumberInitWithUnsignedLongLongImp": 2, - "_jk_NSNumberInitWithUnsignedLongLongImp": 2, - "jk_collectionClassLoadTimeInitialization": 2, - "constructor": 1, - "NSAutoreleasePool": 2, - "*pool": 1, - "Though": 1, - "technically": 1, - "run": 1, - "environment": 1, - "load": 1, - "initialization": 1, - "less": 1, - "ideal.": 1, - "objc_getClass": 2, - "class_getInstanceSize": 2, - "methodForSelector": 2, - "temp_NSNumber": 4, - "initWithUnsignedLongLong": 1, - "pool": 2, - "": 2, - "NSMutableCopying": 2, - "NSFastEnumeration": 2, - "capacity": 51, - "mutations": 20, - "allocWithZone": 4, - "NSZone": 4, - "zone": 8, - "raise": 18, - "NSInvalidArgumentException": 6, - "format": 18, - "NSStringFromClass": 18, - "NSStringFromSelector": 16, - "_cmd": 16, - "NSCParameterAssert": 19, - "objects": 58, - "calloc": 5, - "Directly": 2, - "allocate": 2, - "instance": 2, - "calloc.": 2, - "isa": 2, - "malloc": 1, - "memcpy": 2, - "<=>": 15, - "*newObjects": 1, - "newObjects": 2, - "realloc": 1, - "NSMallocException": 2, - "memset": 1, - "memmove": 2, - "atObject": 12, - "free": 4, - "NSParameterAssert": 15, - "getObjects": 2, - "objectsPtr": 3, - "range": 8, - "NSRange": 1, - "NSMaxRange": 4, - "NSRangeException": 6, - "range.location": 2, - "range.length": 1, - "objectAtIndex": 8, - "countByEnumeratingWithState": 2, - "NSFastEnumerationState": 2, - "stackbuf": 8, - "len": 6, - "mutationsPtr": 2, - "itemsPtr": 2, - "enumeratedCount": 8, - "insertObject": 1, - "anObject": 16, - "NSInternalInconsistencyException": 4, - "__clang_analyzer__": 3, - "Stupid": 2, - "clang": 3, - "analyzer...": 2, - "Issue": 2, - "#19.": 2, - "removeObjectAtIndex": 1, - "replaceObjectAtIndex": 1, - "copyWithZone": 1, - "initWithObjects": 2, - "mutableCopyWithZone": 1, - "NSEnumerator": 2, - "collection": 11, - "nextObject": 6, - "initWithJKDictionary": 3, - "initDictionary": 4, - "allObjects": 2, - "arrayWithObjects": 1, - "_JKDictionaryHashEntry": 2, - "returnObject": 3, - "entry": 41, - ".key": 11, - "jk_dictionaryCapacities": 4, - "bottom": 6, - "top": 8, - "mid": 5, - "tableSize": 2, - "lround": 1, - "floor": 1, - "capacityForCount": 4, - "resize": 3, - "oldCapacity": 2, - "NS_BLOCK_ASSERTIONS": 1, - "oldCount": 2, - "*oldEntry": 1, - "idx": 33, - "oldEntry": 9, - ".keyHash": 2, - ".object": 7, - "keys": 5, - "keyHashes": 2, - "atEntry": 45, - "removeIdx": 3, - "entryIdx": 4, - "*atEntry": 3, - "addKeyEntry": 2, - "addIdx": 5, - "*atAddEntry": 1, - "atAddEntry": 6, - "keyEntry": 4, - "CFEqual": 2, - "CFHash": 1, - "table": 7, - "would": 2, - "now.": 1, - "entryForKey": 3, - "_JKDictionaryHashTableEntryForKey": 1, - "andKeys": 1, - "arrayIdx": 5, - "keyEnumerator": 1, - "copy": 4, - "Why": 1, - "earth": 1, - "complain": 1, - "doesn": 1, - "Internal": 2, - "Unable": 2, - "temporary": 2, - "buffer.": 2, - "line": 2, - "#": 2, - "ld": 2, - "Invalid": 1, - "character": 1, - "x.": 1, - "n": 7, - "r": 6, - "F": 1, - ".": 2, - "e": 1, - "Unexpected": 1, - "token": 1, - "wanted": 1, - "Expected": 3, - "MainMenuViewController": 2, - "TTTableViewController": 1, - "///////////////////////////////////////////////////////////////////////////////////////////////////": 24, - "initWithNibName": 3, - "nibNameOrNil": 1, - "bundle": 3, - "NSBundle": 1, - "nibBundleOrNil": 1, - "self.title": 2, - "//self.variableHeightRows": 1, - "self.tableViewStyle": 1, - "UITableViewStyleGrouped": 1, - "self.dataSource": 1, - "TTSectionedDataSource": 1, - "dataSourceWithObjects": 1, - "TTTableTextItem": 48, - "itemWithText": 48, - "URL": 48, - "PlaygroundViewController": 2, - "UIViewController": 2, - "UIScrollView*": 1, - "_scrollView": 9, - "": 1, - "CGFloat": 44, - "kFramePadding": 7, - "kElementSpacing": 3, - "kGroupSpacing": 5, - "addHeader": 5, - "yOffset": 42, - "UILabel*": 2, - "label": 6, - "UILabel": 2, - "initWithFrame": 12, - "CGRectZero": 5, - "label.text": 2, - "label.font": 3, - "UIFont": 3, - "systemFontOfSize": 2, - "label.numberOfLines": 2, - "CGRect": 41, - "frame": 38, - "label.frame": 4, - "frame.origin.x": 3, - "frame.origin.y": 16, - "frame.size.width": 4, - "frame.size.height": 15, - "sizeWithFont": 2, - "constrainedToSize": 2, - "CGSizeMake": 3, - ".height": 4, - "addSubview": 8, - "label.frame.size.height": 2, - "TT_RELEASE_SAFELY": 12, - "addText": 5, - "loadView": 4, - "UIScrollView": 1, - "self.view.bounds": 2, - "_scrollView.autoresizingMask": 1, - "UIViewAutoresizingFlexibleWidth": 4, - "UIViewAutoresizingFlexibleHeight": 1, - "self.view": 4, - "NSLocalizedString": 9, - "UIButton*": 1, - "button": 5, - "UIButton": 1, - "buttonWithType": 1, - "UIButtonTypeRoundedRect": 1, - "setTitle": 1, - "forState": 4, - "UIControlStateNormal": 1, - "addTarget": 1, - "action": 1, - "debugTestAction": 2, - "forControlEvents": 1, - "UIControlEventTouchUpInside": 1, - "sizeToFit": 1, - "button.frame": 2, - "TTCurrentLocale": 2, - "displayNameForKey": 1, - "NSLocaleIdentifier": 1, - "localeIdentifier": 1, - "TTPathForBundleResource": 1, - "TTPathForDocumentsResource": 1, - "dataUsingEncoding": 2, - "NSUTF8StringEncoding": 2, - "md5Hash": 1, - "setContentSize": 1, - "viewDidUnload": 2, - "viewDidAppear": 2, - "animated": 27, - "flashScrollIndicators": 1, - "DEBUG": 1, - "TTDPRINTMETHODNAME": 1, - "TTDPRINT": 9, - "TTMAXLOGLEVEL": 1, - "TTDERROR": 1, - "TTLOGLEVEL_ERROR": 1, - "TTDWARNING": 1, - "TTLOGLEVEL_WARNING": 1, - "TTDINFO": 1, - "TTLOGLEVEL_INFO": 1, - "TTDCONDITIONLOG": 3, - "rand": 1, - "TTDASSERT": 2, - "SBJsonParser": 2, - "maxDepth": 2, - "NSData*": 1, - "objectWithString": 5, - "repr": 5, - "jsonText": 1, - "NSError**": 2, - "self.maxDepth": 2, - "Methods": 1, - "self.error": 3, - "SBJsonStreamParserAccumulator": 2, - "*accumulator": 1, - "SBJsonStreamParserAdapter": 2, - "*adapter": 1, - "adapter.delegate": 1, - "accumulator": 1, - "SBJsonStreamParser": 2, - "*parser": 1, - "parser.maxDepth": 1, - "parser.delegate": 1, - "adapter": 1, - "switch": 3, - "parse": 1, - "case": 8, - "SBJsonStreamParserComplete": 1, - "accumulator.value": 1, - "SBJsonStreamParserWaitingForData": 1, - "SBJsonStreamParserError": 1, - "parser.error": 1, - "error_": 2, - "tmp": 3, - "*ui": 1, - "*error_": 1, - "ui": 1, - "StyleViewController": 2, - "TTViewController": 1, - "TTStyle*": 7, - "_style": 8, - "_styleHighlight": 6, - "_styleDisabled": 6, - "_styleSelected": 6, - "_styleType": 6, - "kTextStyleType": 2, - "kViewStyleType": 2, - "kImageStyleType": 2, - "initWithStyleName": 1, - "styleType": 3, - "TTStyleSheet": 4, - "globalStyleSheet": 4, - "styleWithSelector": 4, - "UIControlStateHighlighted": 1, - "UIControlStateDisabled": 1, - "UIControlStateSelected": 1, - "addTextView": 5, - "title": 2, - "style": 29, - "textFrame": 3, - "TTRectInset": 3, - "UIEdgeInsetsMake": 3, - "StyleView*": 2, - "StyleView": 2, - "text.text": 1, - "TTStyleContext*": 1, - "context": 4, - "TTStyleContext": 1, - "context.frame": 1, - "context.delegate": 1, - "context.font": 1, - "systemFontSize": 1, - "CGSize": 5, - "addToSize": 1, - "CGSizeZero": 1, - "size.width": 1, - "size.height": 1, - "textFrame.size": 1, - "text.frame": 1, - "text.style": 1, - "text.backgroundColor": 1, - "UIColor": 3, - "colorWithRed": 3, - "green": 3, - "blue": 3, - "alpha": 3, - "text.autoresizingMask": 1, - "UIViewAutoresizingFlexibleBottomMargin": 3, - "addView": 5, - "viewFrame": 4, - "view": 11, - "view.style": 2, - "view.backgroundColor": 2, - "view.autoresizingMask": 2, - "addImageView": 5, - "TTImageView*": 1, - "TTImageView": 1, - "view.urlPath": 1, - "imageFrame": 2, - "view.frame": 2, - "imageFrame.size": 1, - "view.image.size": 1, - "TUITableViewStylePlain": 2, - "regular": 1, - "TUITableViewStyleGrouped": 1, - "grouped": 1, - "stick": 1, - "scroll": 3, - "TUITableViewStyle": 4, - "TUITableViewScrollPositionNone": 2, - "TUITableViewScrollPositionTop": 2, - "TUITableViewScrollPositionMiddle": 1, - "TUITableViewScrollPositionBottom": 1, - "TUITableViewScrollPositionToVisible": 3, - "supported": 1, - "TUITableViewScrollPosition": 5, - "TUITableViewInsertionMethodBeforeIndex": 1, - "NSOrderedAscending": 4, - "TUITableViewInsertionMethodAtIndex": 1, - "NSOrderedSame": 1, - "TUITableViewInsertionMethodAfterIndex": 1, - "NSOrderedDescending": 4, - "TUITableViewInsertionMethod": 3, - "TUITableViewCell": 23, - "@protocol": 3, - "TUITableViewDataSource": 2, - "TUITableView": 25, - "TUITableViewDelegate": 1, - "": 1, - "TUIScrollViewDelegate": 1, - "tableView": 45, - "heightForRowAtIndexPath": 2, - "TUIFastIndexPath": 89, - "indexPath": 47, - "@optional": 2, - "willDisplayCell": 2, - "cell": 21, - "forRowAtIndexPath": 2, - "subview": 1, - "didSelectRowAtIndexPath": 3, - "left/right": 2, - "mouse": 2, - "down": 1, - "up/down": 1, - "didDeselectRowAtIndexPath": 3, - "didClickRowAtIndexPath": 1, - "withEvent": 2, - "NSEvent": 3, - "event": 8, - "look": 1, - "clickCount": 1, - "TUITableView*": 1, - "shouldSelectRowAtIndexPath": 3, - "TUIFastIndexPath*": 1, - "forEvent": 3, - "NSEvent*": 1, - "NSMenu": 1, - "menuForRowAtIndexPath": 1, - "tableViewWillReloadData": 3, - "tableViewDidReloadData": 3, - "targetIndexPathForMoveFromRowAtIndexPath": 1, - "fromPath": 1, - "toProposedIndexPath": 1, - "proposedPath": 1, - "TUIScrollView": 1, - "__unsafe_unretained": 2, - "": 4, - "_dataSource": 6, - "weak": 2, - "_sectionInfo": 27, - "TUIView": 17, - "_pullDownView": 4, - "_headerView": 8, - "_lastSize": 1, - "_contentHeight": 7, - "NSMutableIndexSet": 6, - "_visibleSectionHeaders": 6, - "_visibleItems": 14, - "_reusableTableCells": 5, - "_selectedIndexPath": 9, - "_indexPathShouldBeFirstResponder": 2, - "_futureMakeFirstResponderToken": 2, - "_keepVisibleIndexPathForReload": 2, - "_relativeOffsetForReload": 2, - "drag": 1, - "reorder": 1, - "_dragToReorderCell": 5, - "CGPoint": 7, - "_currentDragToReorderLocation": 1, - "_currentDragToReorderMouseOffset": 1, - "_currentDragToReorderIndexPath": 1, - "_currentDragToReorderInsertionMethod": 1, - "_previousDragToReorderIndexPath": 1, - "_previousDragToReorderInsertionMethod": 1, - "animateSelectionChanges": 3, - "forceSaveScrollPosition": 1, - "derepeaterEnabled": 1, - "layoutSubviewsReentrancyGuard": 1, - "didFirstLayout": 1, - "dataSourceNumberOfSectionsInTableView": 1, - "delegateTableViewWillDisplayCellForRowAtIndexPath": 1, - "maintainContentOffsetAfterReload": 3, - "_tableFlags": 1, - "creation.": 1, - "calls": 1, - "UITableViewStylePlain": 1, - "unsafe_unretained": 2, - "dataSource": 2, - "": 4, - "readwrite": 1, - "reloadData": 3, - "reloadDataMaintainingVisibleIndexPath": 2, - "relativeOffset": 5, - "reloadLayout": 2, - "numberOfSections": 10, - "numberOfRowsInSection": 9, - "section": 60, - "rectForHeaderOfSection": 4, - "rectForSection": 3, - "rectForRowAtIndexPath": 7, - "NSIndexSet": 4, - "indexesOfSectionsInRect": 2, - "rect": 10, - "indexesOfSectionHeadersInRect": 2, - "indexPathForCell": 2, - "returns": 4, - "visible": 16, - "indexPathsForRowsInRect": 3, - "indexPathForRowAtPoint": 2, - "point": 11, - "indexPathForRowAtVerticalOffset": 2, - "offset": 23, - "indexOfSectionWithHeaderAtPoint": 2, - "indexOfSectionWithHeaderAtVerticalOffset": 2, - "enumerateIndexPathsUsingBlock": 2, - "*indexPath": 11, - "*stop": 7, - "enumerateIndexPathsWithOptions": 2, - "NSEnumerationOptions": 4, - "usingBlock": 6, - "enumerateIndexPathsFromIndexPath": 4, - "fromIndexPath": 6, - "toIndexPath": 12, - "withOptions": 4, - "headerViewForSection": 6, - "cellForRowAtIndexPath": 9, - "index": 11, - "visibleCells": 3, - "order": 1, - "sortedVisibleCells": 2, - "indexPathsForVisibleRows": 2, - "scrollToRowAtIndexPath": 3, - "atScrollPosition": 3, - "scrollPosition": 9, - "indexPathForSelectedRow": 4, - "representing": 1, - "row": 36, - "selection.": 1, - "indexPathForFirstRow": 2, - "indexPathForLastRow": 2, - "selectRowAtIndexPath": 3, - "deselectRowAtIndexPath": 3, - "*pullDownView": 1, - "pullDownViewIsVisible": 3, - "*headerView": 6, - "dequeueReusableCellWithIdentifier": 2, - "identifier": 7, - "": 1, - "@required": 1, - "canMoveRowAtIndexPath": 2, - "moveRowAtIndexPath": 2, - "numberOfSectionsInTableView": 3, - "NSIndexPath": 5, - "indexPathForRow": 11, - "inSection": 11, - "HEADER_Z_POSITION": 2, - "beginning": 1, - "height": 19, - "TUITableViewRowInfo": 3, - "TUITableViewSection": 16, - "*_tableView": 1, - "*_headerView": 1, - "reusable": 1, - "similar": 1, - "UITableView": 1, - "sectionIndex": 23, - "numberOfRows": 13, - "sectionHeight": 9, - "sectionOffset": 8, - "*rowInfo": 1, - "initWithNumberOfRows": 2, - "_tableView": 3, - "rowInfo": 7, - "_setupRowHeights": 2, - "*header": 1, - "self.headerView": 2, - "roundf": 2, - "header.frame.size.height": 1, - "i": 41, - "h": 3, - "_tableView.delegate": 1, - ".offset": 2, - "rowHeight": 2, - "sectionRowOffset": 2, - "tableRowOffset": 2, - "headerHeight": 4, - "self.headerView.frame.size.height": 1, - "headerView": 14, - "_tableView.dataSource": 3, - "respondsToSelector": 8, - "_headerView.autoresizingMask": 1, - "TUIViewAutoresizingFlexibleWidth": 1, - "_headerView.layer.zPosition": 1, - "Private": 1, - "_updateSectionInfo": 2, - "_updateDerepeaterViews": 2, - "pullDownView": 1, - "_tableFlags.animateSelectionChanges": 3, - "_tableFlags.delegateTableViewWillDisplayCellForRowAtIndexPath": 1, - "setDataSource": 1, - "_tableFlags.dataSourceNumberOfSectionsInTableView": 2, - "setAnimateSelectionChanges": 1, - "*s": 3, - "y": 12, - "CGRectMake": 8, - "self.bounds.size.width": 4, - "indexPath.section": 3, - "indexPath.row": 1, - "*section": 8, - "removeFromSuperview": 4, - "removeAllIndexes": 2, - "*sections": 1, - "bounds": 2, - ".size.height": 1, - "self.contentInset.top*2": 1, - "section.sectionOffset": 1, - "sections": 4, - "self.contentInset.bottom": 1, - "_enqueueReusableCell": 2, - "*identifier": 1, - "cell.reuseIdentifier": 1, - "*c": 1, - "lastObject": 1, - "removeLastObject": 1, - "prepareForReuse": 1, - "allValues": 1, - "SortCells": 1, - "*a": 2, - "*b": 2, - "*ctx": 1, - "a.frame.origin.y": 2, - "b.frame.origin.y": 2, - "*v": 2, - "v": 4, - "sortedArrayUsingComparator": 1, - "NSComparator": 1, - "NSComparisonResult": 1, - "INDEX_PATHS_FOR_VISIBLE_ROWS": 4, - "allKeys": 1, - "*i": 4, - "*cell": 7, - "*indexes": 2, - "CGRectIntersectsRect": 5, - "indexes": 4, - "addIndex": 3, - "*indexPaths": 1, - "cellRect": 7, - "indexPaths": 2, - "CGRectContainsPoint": 1, - "cellRect.origin.y": 1, - "origin": 1, - "brief": 1, - "Obtain": 1, - "whose": 2, - "specified": 1, - "exists": 1, - "negative": 1, - "returned": 1, - "param": 1, - "p": 3, - "0": 2, - "width": 1, - "point.y": 1, - "section.headerView": 9, - "sectionLowerBound": 2, - "fromIndexPath.section": 1, - "sectionUpperBound": 3, - "toIndexPath.section": 1, - "rowLowerBound": 2, - "fromIndexPath.row": 1, - "rowUpperBound": 3, - "toIndexPath.row": 1, - "irow": 3, - "lower": 1, - "bound": 1, - "iteration...": 1, - "rowCount": 3, - "j": 5, - "FALSE": 2, - "...then": 1, - "zero": 1, - "iterations": 1, - "_topVisibleIndexPath": 1, - "*topVisibleIndex": 1, - "sortedArrayUsingSelector": 1, - "topVisibleIndex": 2, - "setFrame": 2, - "_tableFlags.forceSaveScrollPosition": 1, - "setContentOffset": 2, - "_tableFlags.didFirstLayout": 1, - "prevent": 2, - "layout": 3, - "pinned": 5, - "isKindOfClass": 2, - "TUITableViewSectionHeader": 5, - ".pinnedToViewport": 2, - "TRUE": 1, - "pinnedHeader": 1, - "CGRectGetMaxY": 2, - "headerFrame": 4, - "pinnedHeader.frame.origin.y": 1, - "intersecting": 1, - "push": 1, - "upwards.": 1, - "pinnedHeaderFrame": 2, - "pinnedHeader.frame": 2, - "pinnedHeaderFrame.origin.y": 1, - "notify": 3, - "section.headerView.frame": 1, - "setNeedsLayout": 3, - "section.headerView.superview": 1, - "remove": 4, - "offscreen": 2, - "toRemove": 1, - "enumerateIndexesUsingBlock": 1, - "removeIndex": 1, - "_layoutCells": 3, - "visibleCellsNeedRelayout": 5, - "remaining": 1, - "cells": 7, - "cell.frame": 1, - "cell.layer.zPosition": 1, - "visibleRect": 3, - "Example": 1, - "*oldVisibleIndexPaths": 1, - "*newVisibleIndexPaths": 1, - "*indexPathsToRemove": 1, - "oldVisibleIndexPaths": 2, - "mutableCopy": 2, - "indexPathsToRemove": 2, - "removeObjectsInArray": 2, - "newVisibleIndexPaths": 2, - "*indexPathsToAdd": 1, - "indexPathsToAdd": 2, - "newly": 1, - "superview": 1, - "bringSubviewToFront": 1, - "self.contentSize": 3, - "headerViewRect": 3, - "s.height": 3, - "_headerView.frame.size.height": 2, - "visible.size.width": 3, - "_headerView.frame": 1, - "_headerView.hidden": 4, - "show": 2, - "pullDownRect": 4, - "_pullDownView.frame.size.height": 2, - "_pullDownView.hidden": 4, - "_pullDownView.frame": 1, - "self.delegate": 10, - "recycle": 1, - "regenerated": 3, - "layoutSubviews": 5, - "because": 1, - "dragged": 1, - "clear": 3, - "removeAllObjects": 1, - "laid": 1, - "next": 2, - "_tableFlags.layoutSubviewsReentrancyGuard": 3, - "setAnimationsEnabled": 1, - "CATransaction": 3, - "begin": 1, - "setDisableActions": 1, - "_preLayoutCells": 2, - "munge": 2, - "contentOffset": 2, - "_layoutSectionHeaders": 2, - "_tableFlags.derepeaterEnabled": 1, - "commit": 1, - "selected": 2, - "overlapped": 1, - "r.size.height": 4, - "headerFrame.size.height": 1, - "r.origin.y": 1, - "v.size.height": 2, - "scrollRectToVisible": 2, - "sec": 3, - "_makeRowAtIndexPathFirstResponder": 2, - "responder": 2, - "made": 1, - "acceptsFirstResponder": 1, - "self.nsWindow": 3, - "makeFirstResponderIfNotAlreadyInResponderChain": 1, - "futureMakeFirstResponderRequestToken": 1, - "*oldIndexPath": 1, - "oldIndexPath": 2, - "setSelected": 2, - "setNeedsDisplay": 2, - "selection": 3, - "actually": 2, - "NSResponder": 1, - "*firstResponder": 1, - "firstResponder": 3, - "indexPathForFirstVisibleRow": 2, - "*firstIndexPath": 1, - "firstIndexPath": 4, - "indexPathForLastVisibleRow": 2, - "*lastIndexPath": 5, - "lastIndexPath": 8, - "performKeyAction": 2, - "repeative": 1, - "press": 1, - "noCurrentSelection": 2, - "isARepeat": 1, - "TUITableViewCalculateNextIndexPathBlock": 3, - "selectValidIndexPath": 3, - "*startForNoSelection": 2, - "calculateNextIndexPath": 4, - "foundValidNextRow": 4, - "*newIndexPath": 1, - "newIndexPath": 6, - "startForNoSelection": 1, - "_delegate": 2, - "self.animateSelectionChanges": 1, - "charactersIgnoringModifiers": 1, - "characterAtIndex": 1, - "NSUpArrowFunctionKey": 1, - "lastIndexPath.section": 2, - "lastIndexPath.row": 2, - "rowsInSection": 7, - "NSDownArrowFunctionKey": 1, - "_tableFlags.maintainContentOffsetAfterReload": 2, - "setMaintainContentOffsetAfterReload": 1, - "newValue": 2, - "indexPathWithIndexes": 1, - "indexAtPosition": 2 + "

": 1, + "match=": 1, + "

": 1, + "e*.495327": 4, + "pf": 4, + "u*r": 1, + "onbeforeunload=": 3, + "f.grep": 3, + "H=": 1, + "overflowX": 1, + ".specified": 1, + "always": 6, + "c.expando": 2, + "window.attachEvent": 2, + "f*.471962": 2, + "n.rect": 4, + "bt.labelColor.getRgbaColor": 2, + "Flash": 1, + "offsets": 1, + "xa": 3, + "cacheable": 2, + "n.setAttribute": 1, + "boolean": 8, + "g.indexOf": 2, + "o*.2": 1, + "getByName": 3, + "field": 36, + "metadata": 2, + "datetime": 1, + "e.save": 2, + "x0B": 1, + "inner.offsetTop": 4, + "s.getElementById": 1, + "json": 2, + "k.createElement": 1, + "//basic": 1, + "isNode": 11, + ".delegate": 2, + "p.innerHTML": 1, + "bool.h264": 1, + "offsetSupport.doesNotIncludeMarginInBodyOffset": 1, + "normalizes": 1, + "cw": 1, + "f.support.checkOn": 1, + "hooks.get": 2, + "u=": 12, + "154205": 1, + "c.head": 1, + "ecmascript/": 1, + "h.handler.guid": 2, + "bk": 5, + "f.event.special.change": 1, + "R.test": 1, + ".specialSubmit": 2, + "c.async": 4, + "d.push": 1, + "continue": 18, + "oi.setAttribute": 2, + "kr": 17, + "String.fromCharCode": 4, + "_configure": 1, + "e.level": 1, + "certain": 2, + "iframe": 3, + "j.getComputedStyle": 2, + "d.always": 1, + "method": 30, + "toArray": 2, + "screenY": 4, + "pt.getContext": 2, + "/src/i.test": 1, + "timers": 3, + "works": 1, + "hasClass": 2, + "defer": 1, + "et.width": 1, + "led": 18, + "t.getContext": 2, + "k*.803738": 2, + "window.openDatabase": 1, + "v.expr": 4, + "d.parentNode": 4, + "window.postMessage": 1, + "emptyGet": 3, + "H": 8, + "": 2, + "
": 1, + "": 2, + "": 1, + "": 1, + "": 1, + "": 2, + "xmlns": 1, + "": 1, + "": 1, + "": 1 }, - "OCaml": { - "{": 11, - "shared": 1, - "open": 4, - "Eliom_content": 1, - "Html5.D": 1, - "Eliom_parameter": 1, - "}": 13, - "server": 2, - "module": 5, - "Example": 1, - "Eliom_registration.App": 1, - "(": 21, - "struct": 5, - "let": 13, - "application_name": 1, - "end": 5, - ")": 23, - "main": 2, - "Eliom_service.service": 1, - "path": 1, - "[": 13, - "]": 13, - "get_params": 1, - "unit": 5, - "client": 1, - "hello_popup": 2, - "Dom_html.window##alert": 1, - "Js.string": 1, - "_": 2, - "Example.register": 1, - "service": 1, - "fun": 9, - "-": 22, - "Lwt.return": 1, - "html": 1, - "head": 1, - "title": 1, - "pcdata": 4, - "body": 1, - "h1": 1, - ";": 14, - "p": 1, - "h2": 1, - "a": 4, - "a_onclick": 1, - "type": 2, - "Ops": 2, - "@": 6, - "f": 10, - "k": 21, - "|": 15, - "x": 14, - "List": 1, - "rec": 3, - "map": 3, - "l": 8, - "match": 4, - "with": 4, - "hd": 6, - "tl": 6, - "fold": 2, - "acc": 5, - "Option": 1, - "opt": 2, - "None": 5, - "Some": 5, - "Lazy": 1, - "option": 1, - "mutable": 1, - "waiters": 5, - "make": 1, - "push": 4, - "cps": 7, - "value": 3, - "force": 1, - "l.value": 2, - "when": 1, - "l.waiters": 5, - "<->": 3, + "Rebol": { + "]": 3, + "[": 3, + "print": 1, + "REBOL": 1, + "func": 1, + "hello": 2 + }, + "PowerShell": { + "Host": 2, + "}": 1, + "{": 1, + ")": 1, + "(": 1, + "-": 2, "function": 1, - "Base.List.iter": 1, - "l.push": 1, - "<": 1, - "get_state": 1, - "lazy_from_val": 1 - }, - "Omgrofl": { - "lol": 14, - "iz": 11, - "wtf": 1, - "liek": 1, - "lmao": 1, - "brb": 1, - "w00t": 1, - "Hello": 1, - "World": 1, - "rofl": 13, - "lool": 5, - "loool": 6, - "stfu": 1 + "Write": 2, + "hello": 1 }, "Opa": { "server": 1, - "Server.one_page_server": 1, - "(": 4, - "-": 1, - "

": 2, - "Hello": 2, - "world": 2, - "

": 2, - ")": 4, - "Server.start": 1, - "Server.http": 1, - "{": 2, + "}": 2, "page": 1, - "function": 1, - "}": 2, - "title": 1 - }, - "OpenCL": { - "double": 3, - "run_fftw": 1, - "(": 11, - "int": 3, - "n": 2, - "const": 2, - "float": 2, - "*": 4, - "x": 2, - "y": 2, - ")": 11, "{": 2, - "fftwf_plan": 1, - "p1": 3, - "fftwf_plan_dft_1d": 1, - "fftwf_complex": 2, - "FFTW_FORWARD": 1, - "FFTW_ESTIMATE": 1, - ";": 9, - "nops": 3, - "t": 4, - "cl": 2, - "realTime": 2, - "for": 1, - "op": 3, - "<": 1, - "+": 2, - "fftwf_execute": 1, - "}": 2, + "Server.start": 1, + ")": 4, + "": 2, "-": 1, - "/": 1, - "fftwf_destroy_plan": 1, - "return": 1 + "(": 4, + "title": 1, + "function": 1, + "Server.http": 1, + "Hello": 2, + "Server.one_page_server": 1, + "world": 2, + "

": 2 }, - "OpenEdge ABL": { - "USING": 3, - "Progress.Lang.*.": 3, - "CLASS": 2, - "email.Email": 2, - "USE": 2, - "-": 73, - "WIDGET": 2, - "POOL": 2, - "&": 3, - "SCOPED": 1, - "DEFINE": 16, - "QUOTES": 1, - "@#": 1, - "%": 2, - "*": 2, - "+": 21, - "._MIME_BOUNDARY_.": 1, - "#@": 1, - "WIN": 1, - "From": 4, - "To": 8, - "CC": 2, - "BCC": 2, - "Personal": 1, - "Private": 1, - "Company": 2, - "confidential": 2, - "normal": 1, - "urgent": 2, - "non": 1, - "Cannot": 3, - "locate": 3, - "file": 6, - "in": 3, - "the": 3, - "filesystem": 3, - "R": 3, - "File": 3, - "exists": 3, - "but": 3, - "is": 3, - "not": 3, - "readable": 3, - "Error": 3, - "copying": 3, - "from": 3, - "<\">": 8, - "ttSenders": 2, - "cEmailAddress": 8, - "n": 13, - "ttToRecipients": 1, - "Reply": 3, - "ttReplyToRecipients": 1, - "Cc": 2, - "ttCCRecipients": 1, - "Bcc": 2, - "ttBCCRecipients": 1, - "Return": 1, - "Receipt": 1, - "ttDeliveryReceiptRecipients": 1, - "Disposition": 3, - "Notification": 1, - "ttReadReceiptRecipients": 1, - "Subject": 2, - "Importance": 3, - "H": 1, - "High": 1, - "L": 1, - "Low": 1, - "Sensitivity": 2, - "Priority": 2, - "Date": 4, - "By": 1, - "Expiry": 2, - "Mime": 1, - "Version": 1, - "Content": 10, - "Type": 4, - "multipart/mixed": 1, - ";": 5, - "boundary": 1, - "text/plain": 2, - "charset": 2, - "Transfer": 4, - "Encoding": 4, - "base64": 2, - "bit": 2, - "application/octet": 1, - "stream": 1, - "attachment": 2, - "filename": 2, - "ttAttachments.cFileName": 2, - "cNewLine.": 1, - "RETURN": 7, - "lcReturnData.": 1, - "END": 12, - "METHOD.": 6, - "METHOD": 6, - "PUBLIC": 6, - "CHARACTER": 9, - "send": 1, - "(": 44, - ")": 44, - "objSendEmailAlgorithm": 1, - "sendEmail": 2, - "INPUT": 11, - "THIS": 1, - "OBJECT": 2, - ".": 14, - "CLASS.": 2, - "MESSAGE": 2, - "INTERFACE": 1, - "email.SendEmailAlgorithm": 1, - "ipobjEmail": 1, - "AS": 21, - "INTERFACE.": 1, - "PARAMETER": 3, - "objSendEmailAlg": 2, - "email.SendEmailSocket": 1, - "NO": 13, - "UNDO.": 12, - "VARIABLE": 12, - "vbuffer": 9, - "MEMPTR": 2, - "vstatus": 1, - "LOGICAL": 1, - "vState": 2, - "INTEGER": 6, - "ASSIGN": 2, - "vstate": 1, - "FUNCTION": 1, - "getHostname": 1, - "RETURNS": 1, - "cHostname": 1, - "THROUGH": 1, - "hostname": 1, - "ECHO.": 1, - "IMPORT": 1, - "UNFORMATTED": 1, - "cHostname.": 2, - "CLOSE.": 1, - "FUNCTION.": 1, - "PROCEDURE": 2, - "newState": 2, - "INTEGER.": 1, - "pstring": 4, - "CHARACTER.": 1, - "newState.": 1, - "IF": 2, - "THEN": 2, - "RETURN.": 1, - "SET": 5, - "SIZE": 5, - "LENGTH": 3, - "PUT": 1, - "STRING": 7, - "pstring.": 1, - "SELF": 4, - "WRITE": 1, - "PROCEDURE.": 2, - "ReadSocketResponse": 1, - "vlength": 5, - "str": 3, - "v": 1, - "GET": 3, - "BYTES": 2, - "AVAILABLE": 2, - "VIEW": 1, - "ALERT": 1, - "BOX.": 1, - "DO": 2, - "READ": 1, - "handleResponse": 1, - "END.": 2, - "email.Util": 1, - "FINAL": 1, - "PRIVATE": 1, - "STATIC": 5, - "cMonthMap": 2, - "EXTENT": 1, - "INITIAL": 1, - "[": 2, - "]": 2, - "ABLDateTimeToEmail": 3, - "ipdttzDateTime": 6, - "DATETIME": 3, + "GAS": { + "LASFDE1": 3, + "_main.eh": 2, + ".globl": 2, + ".byte": 20, + "LSCIE1": 2, + "strip_static_syms": 1, + "coalesced": 1, + "LFE3": 2, + "rip": 1, + "rsp": 1, + "LECIE1": 2, + ".set": 5, + "LCFI1": 2, + "LCFI0": 3, + "LFB3": 4, + ".text": 1, + "LC0": 2, + ".": 1, + "-": 7, + "L": 10, + "live_support": 1, + "+": 2, + "_puts": 1, + ")": 1, + "(": 1, + "%": 6, + "__TEXT": 1, + "movl": 1, + "leaq": 1, + "movq": 1, + "_main": 2, + ".quad": 2, + ".align": 2, + ".long": 6, + "eax": 1, + "rbp": 2, + "set": 10, + ".section": 1, + "ret": 1, + ".cstring": 1, + ".subsections_via_symbols": 1, + "xd": 1, + "xe": 1, + "LSFDE1": 1, + "xc": 1, + "no_toc": 1, + "call": 1, + "pushq": 1, + ".ascii": 2, + "LEFDE1": 2, + "EH_frame1": 2, + "__eh_frame": 1, + "leave": 1, + "rdi": 1 + }, + "CoffeeScript": { + "offset": 4, + "resume": 2, + "access": 1, + "opts": 1, + "._nodeModulePaths": 1, + "yes": 5, + "NUMBER.exec": 1, + "getAddress": 3, + "handle": 1, + "quit": 1, + "Subdomain": 4, + ".compile": 1, + "comment.length": 1, + "regexToken": 1, + "xFF": 1, + "NS_T_CNAME": 1, + "HEREGEX": 1, + "octalLiteral": 2, + "meters": 2, + "level.": 3, + "##": 1, + "parseInt": 5, + "@numberToken": 1, + "Subdomain.extract": 1, + "break": 1, + "scripts": 2, + "process.argv": 1, + "sandbox.root": 1, + "code.": 1, + "initialize": 1, + "libexecPath": 1, + "pause": 2, + "/": 44, + "ensure": 1, + "dnsserver.Server": 1, + "value.length": 2, + "address": 4, + "@pool.stdout": 1, + "debugger": 1, + "Script.createContext": 2, + "o.bare": 1, + "switch": 7, + ".type": 1, + "@statCallbacks": 3, + "function": 2, + "IDENTIFIER.exec": 1, + "-": 107, + "contents": 2, + "basename": 2, + "||": 3, + "CoffeeScript": 1, + "script": 7, + "vm": 1, + "@length": 3, + "NS_RCODE_NXDOMAIN": 2, + "@firstHost": 1, + "doc": 11, + "+": 31, + "var": 1, + "move": 3, + "question": 5, + "str.charAt": 1, + "alwaysRestart": 2, + "__extends": 1, + ")": 196, + "encode": 1, + "exists": 5, + "lexer": 1, + "@configuration": 1, + "compare": 1, + "///g": 1, + "comment": 2, + "tom": 1, + "The": 7, + "@indebt": 1, + "EncodedSubdomain.pattern.test": 1, + "IPAddressSubdomain.pattern.test": 1, + "powrc": 3, + "range": 1, + "private": 1, + "@outdentToken": 1, + "path": 3, + ".spaced": 1, + "heregex": 1, + "fs": 2, + "mname": 2, + "lexer.tokenize": 3, + "number.length": 1, + "@loadScriptEnvironment": 1, + "default": 1, + "tok": 5, + "}": 34, + "%": 1, + "THROW": 1, + "tom.move": 1, + "path.extname": 1, + "Error": 1, + ".rewrite": 1, + "require.extensions": 3, + "size": 1, + "join": 8, + "###": 3, + "exports.tokens": 1, + "HEREGEX_OMIT": 3, + "off": 1, + "/E/.test": 1, + "LINE_BREAK": 2, + "outdentation": 1, + "*/": 2, + "@labels": 2, + ".POW_TIMEOUT": 1, + "no": 3, + "{": 31, + "@extract": 1, + "expire": 2, + "@soa": 2, + "dnsserver": 1, + "imgy": 2, + "leading": 1, + "#": 35, + "isnt": 7, + "fs.realpathSync": 2, + "retry": 2, + "@configuration.rvmPath": 1, + "sourceScriptEnv": 3, + "doubles": 1, + "compact": 1, + "restart": 1, + "SERVER_PORT": 1, + "nack.createPool": 1, + "static": 1, + "document.getElementsByTagName": 1, + "match": 23, + "opposite": 2, + "doc.indexOf": 1, + "filename": 6, + "math": 1, + "super": 4, + "@jsToken": 1, + "void": 1, + "starting": 1, + "vm.runInContext": 1, + "tokenize": 1, + "require.registerExtension": 2, + "question.name": 3, + "w": 2, + "@yylineno": 1, + "jsToken": 1, + "spaced": 1, + "string.length": 1, + "xhr.open": 1, + "rvmrcExists": 2, + "stats.mtime.getTime": 1, + "@configuration.getLogger": 1, + "escaped": 1, + "continueCount": 3, + "@tokens.push": 1, + "xhr.onreadystatechange": 1, + "mainModule._compile": 2, + "Array": 1, + "flags": 2, + "@literalToken": 1, + "@loadRvmEnvironment": 1, + "character": 1, + "content": 4, + "options.filename": 5, + "opts.line": 1, + "_module.paths": 1, + "@error": 10, + "vm.runInThisContext": 1, + "when": 16, + "RESERVED": 3, + "typeof": 2, + "root": 1, + "runners": 1, + "runScripts": 3, + "LOGIC": 3, + "@address": 2, + "NS_T_SOA": 2, + "mtimeChanged": 2, + "@logger.error": 3, + "package": 1, + "index": 4, + "d*": 1, + "COMPARE": 3, + "COMMENT": 2, + "or": 22, + "re.match": 1, + "__bind": 1, + "err": 20, + "line.": 1, + "@logger.warning": 1, + "tokens.length": 1, + "sanitizeHeredoc": 1, + "INDEXABLE": 2, + "s": 10, + ".toString": 3, + "signs": 1, + "whitespace": 1, + ".*": 1, + "parser": 1, + "CoffeeScript.load": 2, + "addEventListener": 1, + "String": 1, + "xhr.overrideMimeType": 1, + "else": 53, + "binaryLiteral": 2, + "input": 1, + "Stream": 1, + "elvis": 1, + "stats": 1, + "NOT_REGEX.concat": 1, + "compound": 1, + "commentToken": 1, + "id.toUpperCase": 1, + "xhr.send": 1, + "_require": 2, + "BOX": 1, + "/.exec": 2, + "on": 3, + "minimum": 2, + "@queryRestartFile": 2, + "#.*": 1, + "every": 1, + "over": 1, + "@seenFor": 4, + "word": 1, + "EncodedSubdomain": 2, + "protected": 1, + "implements": 1, + "__hasProp": 1, + "this": 6, + "options.modulename": 1, + "@outdebt": 1, + "o": 4, + "NS_T_NS": 2, + "resolve": 2, + "then": 24, + "NOT_SPACED_REGEX": 2, + "lex": 1, + ".join": 2, + "body.replace": 1, + "//": 1, + "&&": 1, + "MATH": 3, + "heregexToken": 1, + "@code": 1, + "subdomain.getAddress": 1, + "req.question": 1, + "MULTI_DENT": 1, + "xhr": 2, + "callback": 35, + "input.length": 1, + "while": 4, + "reserved": 1, + "NS_T_A": 3, + "OUTDENT": 1, + "HEREGEX.exec": 1, + "identifierToken": 1, + "script.src": 2, + "forcedIdentifier": 4, + "ip.push": 1, + "@pool.on": 2, + "@configuration.env": 1, + "scriptExists": 2, + "ready": 1, + "Animal": 3, + "UNARY": 4, + "sandbox": 8, + "k": 4, + "alert": 4, + "exports.VERSION": 1, + "TRAILING_SPACES": 2, + "options.sandbox": 4, + "exports.compile": 1, + "@for": 2, + "exports.Subdomain": 1, + "nack": 1, + "LINE_CONTINUER": 1, + "let": 2, + "case": 1, + "coffees": 2, + "token": 1, + "Hello": 1, + "s.type": 1, + "COFFEE_KEYWORDS": 1, + "octalEsc": 1, + "makeString": 1, + "tokens": 5, + "name.toLowerCase": 1, + "createSOA": 2, + "value...": 1, + "i": 8, + "SHIFT": 3, + "module": 1, + "string.indexOf": 1, + "of": 7, + "<": 6, + "id.reserved": 1, + "@constructor.rvmBoilerplate": 1, + "fill": 1, + "ip.split": 1, + "async.reduce": 1, + "disallow": 1, + "header": 1, + "@heregexToken": 1, + "continue": 3, + "length": 4, + "thing": 1, + "enum": 1, + "@name": 2, + "COMPOUND_ASSIGN": 2, + "@commentToken": 1, + "Date": 1, + "loadScriptEnvironment": 1, + "with": 1, + "colon": 3, + "PATTERN.test": 1, + "@restartIfNecessary": 1, + "parsed": 1, + "CoffeeScript.eval": 1, + "extends": 6, + "JS_KEYWORDS": 1, + "heredocToken": 1, + "unless": 19, + "Matches": 1, + "parser.lexer": 1, + "WHITESPACE": 1, + "i..": 1, + "sandbox.global": 1, + "for": 14, + "@ends": 1, + "path.dirname": 2, + ".POW_WORKERS": 1, + "__slice": 1, + "XMLHttpRequest": 1, + "res.addRR": 2, + "options": 16, + "@indent": 3, + "SIMPLESTR.exec": 1, + "setInput": 1, + "window": 1, + "boilerplate": 2, + "restartIfNecessary": 1, + "anything": 1, + "xhr.responseText": 1, + "value": 25, + "parser.parse": 3, + "@tag": 3, + "a": 2, + "terminate": 1, + "readyCallback": 2, + "@pool": 2, + "///": 12, + "NOT_REGEX": 2, + "@chunk.match": 1, + "INVERSES": 2, + "tokens.": 1, + "exports.decode": 1, + "req.proxyMetaVariables": 1, + "url": 2, + "name": 5, + "domain": 6, + "idle": 1, + "@escapeLines": 1, + "STRING": 2, + "domain.length": 1, + "serial": 2, + "rvm": 1, + "name.capitalize": 1, + "request": 2, + "@token": 12, + "not": 4, + "ip": 2, + "name.length": 1, + "question.class": 2, + "decode": 2, + "isNSRequest": 2, + "module.exports": 1, + "coffees.length": 1, + "here": 3, + "dnsserver.createSOA": 1, + "domain.toLowerCase": 1, + "s*": 1, + "equals": 1, + "letter": 1, + "doc.replace": 2, + "@yytext": 1, + "]": 134, + "body": 2, + "@configuration.dstPort.toString": 1, + "in": 32, + "CoffeeScript.require": 1, + "str.length": 1, + "regex": 5, + "_module.filename": 1, + "Lexer": 3, + "isEmpty": 1, + "@quitCallbacks": 3, + "attempt.length": 1, + "[": 134, + "JS_FORBIDDEN": 1, + "compile": 5, + "module._compile": 1, + "HEREDOC_ILLEGAL": 1, + "value.replace": 2, + "RELATION": 3, + "@rootAddress": 2, + "@logger.info": 1, + "rvmExists": 2, + "loop": 1, + "balancedString": 1, + ".": 13, + "byte": 2, + "contents.indexOf": 1, + "@pool.proxy": 1, + "export": 1, + "own": 2, + "line": 6, + "merge": 1, + ".split": 1, + "HEREDOC_ILLEGAL.test": 1, + "at": 2, + "winner": 2, + ".replace": 3, + "@statCallbacks.length": 1, + "HEREDOC_INDENT.exec": 1, + "attachEvent": 1, + "js": 5, + "@domain": 3, + "BOOL": 1, + "import": 1, + "lexedLength": 2, + "consumes": 1, + "Horse": 2, + "<=>": 1, + "PATTERN": 1, + "rname": 2, + "@rvmBoilerplate": 1, + "require": 21, + "exports.nodes": 1, + "extractSubdomain": 1, + "@configuration.timeout": 1, + "stack.push": 1, + "@sanitizeHeredoc": 2, + "*": 21, + "@on": 1, + "attempt": 2, + "@pair": 1, + "id.length": 1, + "instanceof": 2, + "@lineToken": 1, + "HEREDOC.exec": 1, + "return": 29, + "<<": 1, + "@indents": 1, + "mainModule.moduleCache": 1, + "if": 102, + "Server": 2, + "process": 2, + ".trim": 1, + "by": 1, + "tagParameters": 1, + "(": 193, + "all": 1, + "execute": 3, + "sam": 1, + "fs.readFile": 1, + "S": 10, + "EXTENDS": 1, + "MULTILINER": 2, + "WHITESPACE.test": 1, + "question.type": 2, + "script.length": 1, + "constructor": 6, + "id": 16, + "@labels.length": 1, + "@subdomain": 1, + ".isEmpty": 1, + "@pool.stderr": 1, + "async": 1, + "&": 4, + "@ends.push": 1, + "math.cube": 1, + "statCallback": 2, + "@root": 8, + "CODE": 1, + "@ends.pop": 1, + "@tokens.pop": 1, + "starts": 1, + "exports.helpers": 2, + "mainModule.filename": 4, + "IPAddressSubdomain": 2, + "Module": 2, + "|": 21, + "res.send": 1, + "x/.test": 1, + "@regexToken": 1, + "runners...": 1, + "@extractSubdomain": 1, + "NS_C_IN": 5, + "next": 3, + "string": 9, + "@stringToken": 1, + "print": 1, + "xhr.readyState": 1, + "interface": 1, + "closeIndentation": 1, + "/g": 3, + "remainder": 1, + "fs.readFileSync": 1, + "exports.createServer": 1, + "subdomain": 10, + "JSTOKEN": 1, + "logic": 1, + "@balancedString": 1, + "catch": 2, + "Snake": 2, + "tag": 33, + "JSTOKEN.exec": 1, + "_module": 3, + ".getTime": 1, + "@configuration.workers": 1, + "loadEnvironment": 1, + "setPoolRunOnceFlag": 1, + "x": 6, + "exports.encode": 1, + "exports.Lexer": 1, + "vm.Script": 1, + "opts.rewrite": 1, + "CoffeeScript.run": 3, + "tokens.push": 1, + "@interpolateString": 2, + "current": 5, + "Module._load": 1, + "z0": 2, + "isARequest": 2, + "queryRestartFile": 1, + "s*#": 1, + "finally": 2, + "str": 1, + "under": 1, + "console.log": 1, + "sandbox.GLOBAL": 1, + "indent": 7, + "@chunk": 9, + "form": 1, + "@initialize": 2, + "__indexOf": 1, + "stack.length": 1, + "v": 4, + "square": 4, + "re": 1, + "quote": 5, + "@handleRequest": 1, + "global": 3, + "cube": 1, + "delete": 1, + "Module._nodeModulePaths": 1, + "window.addEventListener": 1, + "COFFEE_ALIAS_MAP": 1, + "@pool.quit": 1, + "@quitCallbacks.push": 1, + "other": 1, + "window.ActiveXObject": 1, + "fs.writeFile": 1, + "CALLABLE.concat": 1, + "pairing": 1, + "handleRequest": 1, + "env": 18, + "sandbox.__dirname": 1, + "options.header": 1, + "levels.": 1, + "class": 11, + "REGEX": 1, + "splat": 1, + "_require.resolve": 1, + "r": 4, + "@pool.runOnce": 1, + "shift": 2, + "code.replace": 1, + "@identifierToken": 1, + "lastMtime": 2, + "COFFEE_ALIASES": 1, + "@tokens": 7, + "name.slice": 2, + "fs.stat": 1, + "HEREDOC_INDENT": 1, + "arguments": 1, + "source": 5, + ".constructor": 1, + "ip.join": 1, + "SIMPLESTR": 1, + "undefined": 1, + "last": 3, + "script.innerHTML": 1, + "const": 1, + "try": 3, + "n": 16, + "before": 2, + "soak": 1, + "OPERATOR": 1, + "..1": 1, + "//g": 1, + "CALLABLE": 2, + "Function": 1, + "race": 1, + "@logger.debug": 2, + "match.length": 1, + "comments": 1, + "mainModule.paths": 1, + "Script": 2, + "@statCallbacks.push": 1, + "RackApplication": 1, + "_require.paths": 1, + "num": 2, + "eval": 2, + "count": 5, + "missing": 1, + "sandbox.require": 2, + "new": 12, + "@terminate": 2, + "exports.RESERVED": 1, + "upcomingInput": 1, + "@closeIndentation": 1, + "xhr.status": 1, + "prev": 17, + "heredoc.charAt": 1, + "@ready": 3, + "loadRvmEnvironment": 1, + "native": 1, + "Object.getOwnPropertyNames": 1, + "Module._resolveFilename": 1, + "heregex.length": 1, + "indexOf": 1, + "stack.pop": 2, + "true": 8, + "cubes": 1, + "/.test": 4, + "stack": 4, + "list": 2, + "until": 1, + "code": 20, + "indentation": 3, + "prev.spaced": 3, + "n/": 1, + "require.main": 1, + "herecomment": 4, + "body.indexOf": 1, + "options.bare": 2, + "Math.sqrt": 1, + "REGEX.exec": 1, + "@logger": 1, + "sandbox.__filename": 3, + "writeRvmBoilerplate": 1, + "@restart": 1, + "assign": 1, + "public": 1, + "throw": 3, + "exports.run": 1, + "res": 3, + "@quit": 3, + "bufferLines": 3, + "stringToken": 1, + "interpolateString": 1, + "and": 20, + "up": 1, + "exports.eval": 1, + "d": 2, + "exports.Server": 1, + "@mtime": 5, + "@pos": 2, + "mainModule": 1, + "the": 4, + "@pattern": 2, + "res.header.rcode": 1, + "@state": 11, + "n/g": 1, + "parser.yy": 1, + "@whitespaceToken": 1, + "CoffeeScript.compile": 2, + "req": 4, + "indent.length": 1, + "process.cwd": 1, + "do": 2, + "b": 1, + "heredoc": 4, + "@labels.slice": 1, + "@readyCallbacks": 3, + "Rewriter": 2, + "numberToken": 1, + "is": 36, + "quitCallback": 2, + "@loadEnvironment": 1, + "@readyCallbacks.push": 1, + "right": 1, + "yield": 1, + "end": 2, + "number": 13, + "@heredocToken": 1, + "refresh": 2, + "false": 4, + "@setPoolRunOnceFlag": 1, + "zero": 1, + "sam.move": 1, + "r/g": 1, + "null": 15, + "@chunk.charAt": 3, + "err.message": 2, + "@line": 4, + "sandbox.module": 2, + "code.trim": 1, + "@value": 1 + }, + "Lasso": { + "now": 23, + "compatibility.": 2, + "#1": 3, + "varname": 4, + "matches": 1, + "...": 3, + "@": 8, + "2007": 6, + "#maxage": 4, + "next.": 2, + "for": 65, + "with": 25, + "#error_lang": 12, + "%": 14, + "knop_stripbackticks": 2, + "#charlist": 6, + "values.": 2, + "Return": 7, + "records.": 2, + "copy": 4, + "iterating": 2, + "#sql": 42, + "scratch.": 2, + "priority=": 2, + "available": 2, + "decimal": 5, + "doctype": 6, + "id": 7, + "Returns": 2, + "#params": 5, + "of": 24, + "/define_type": 4, + "T": 3, + "insert": 18, + "map": 23, + "/iterate": 12, + "long": 2, + "9": 2, + "incorporated": 1, + "stack": 2, + "paren...": 2, + "knop_timer": 2, + "incremented": 2, + "#doctype": 4, + "#data": 14, + "which": 2, + "_index": 1, + "registered": 2, + "settable": 4, + "existing": 2, + "optionally": 2, + "Extended": 2, + "Useful": 2, + "through": 2, + "keyfield": 4, + "#t": 2, + "store": 4, + "save": 2, + "sql.": 2, + "sense": 2, + "always": 2, + "/Protect": 1, + "12": 8, + "#xhtmlparam": 4, + "bug": 2, + "queries": 2, + "site": 4, + "namespace": 16, + "verification": 2, + "problems": 2, + "": 6, + "marker": 4, + "below": 2, + "//fail_if": 6, + "html.": 2, + "resultset": 2, + "string_findregexp": 8, + "options": 2, + "required=": 2, + "newoptions": 1, + "read": 1, + "keeplock": 4, + "we": 2, + "String": 1, + "LIMIT": 2, + "|": 13, + "BeginsWith": 1, + "timestamp": 4, + "Thanks": 2, + "boolean": 4, + "a": 52, + "temp": 12, + "2012": 4, + "06": 2, + "Lasso_TagExists": 1, + "yyyyMMdd": 2, + "used.": 2, + "#trace": 4, + "Literal": 2, + "": 3, + "normally": 2, + "objects.": 2, + "returning": 2, + "return": 75, + "#numericValue": 4, + "knop_seed": 2, + "check": 6, + "+": 146, + "touble": 2, + "description": 34, + "ExcludeField": 1, + "knop_debug": 4, + "returnfield": 1, + "No": 1, + "correctly": 2, + "getrecord": 8, + "upper": 2, + "releasing": 2, + "nextrecord": 12, + "saverecord": 8, + "in.": 2, + "24": 2, + "record": 20, + "u": 1, + "SQL": 2, + "but": 2, + "internal": 2, + "set": 10, + "RW": 6, + "Encrypt_Blowfish": 2, + "Thread_RWLock": 6, + "self": 72, + "exists": 2, + "Z": 1, + "slower": 2, + "#cache_name": 72, + "localized": 2, + "so": 16, + "transparently": 2, + "TODO": 2, + "update": 2, + "obytes": 3, + "storage": 8, + "EndPosition": 2, + "Lasso": 15, + "": 1, + "searchresult": 2, + "using": 8, + "nParameters": 2, + "variable.": 2, + "default": 4, + "instead": 4, + "initiate": 10, + "generated": 2, + "Wiki": 2, + "once": 4, + "causes": 4, + "corresponding": 2, + "operations": 2, + "remains": 2, + "adjustments": 4, + "type": 63, + "code": 2, + "UTF": 4, + "n": 30, + "honors": 2, + "Discard": 1, + "since": 4, + "here": 2, + "returned": 6, + "S": 2, + "Second": 1, + "shown_first": 2, + "_fields": 1, + "addlanguage": 4, + "onconvert": 2, + "maxage": 2, + "Decode_": 1, + "8": 6, + "description=": 2, + "debug_trace": 2, + "zero": 2, + "how": 2, + "old": 4, + "remove": 6, + "incorrect": 2, + "Changed": 6, + "tag_name": 2, + "bom_utf8": 1, + "Code": 2, + "simple": 2, + "case.": 2, + "PostParams": 1, + "again": 2, + "error": 22, + "recursion": 2, + "11": 8, + "out": 2, + "field": 26, + "Escape": 1, + "error_lang": 2, + "seconds": 4, + "ctype": 2, + "_keyfield": 4, + "L": 2, + "#expires": 4, + "QT": 4, + "current": 10, + "While": 1, + "1": 2, + "language": 10, + "#value": 14, + "index": 4, + "keyvalue": 10, + "Used": 2, + "able": 14, + "define": 20, + "#lock": 12, + "inserting": 2, + "added": 10, + "String_Remove": 2, + "{": 18, + "action_statement": 2, + "end": 2, + "formatted": 2, + "should": 4, + "array.": 2, + "or": 6, + "Format": 1, + "require": 1, + "Encode_JSON": 1, + "look": 2, + "onCreate": 1, + "05": 4, + "/Define_Tag": 1, + "ms": 2, + "FileMaker": 2, + "json_consume_string": 3, + "must": 4, + "unlock": 6, + "second": 8, + "was": 6, + "any": 14, + "json_consume_object": 2, + "decrypt_blowfish": 2, + "Reset": 1, + "documentation.": 2, + "other": 4, + "create": 6, + "entire": 4, + "SQL_CALC_FOUND_ROWS": 2, + "import8bits": 4, + "codes": 2, + "integer": 30, + "response_localpath": 8, + "23": 4, + "t": 8, + "start": 5, + "removeLeading": 1, + "oops": 4, + "#e": 13, + "http": 6, + "reset": 2, + "select": 1, + "#obytes": 5, + "locked": 2, + "common": 4, + "unescapes": 1, + "Copyright": 1, + "//www.lassosoft.com/json": 1, + "properties": 4, + "been": 2, + "public": 1, + "asString": 3, + "Local": 7, + "whitespace": 3, + "base": 6, + "captured": 2, + "recorddata": 6, + "around": 2, + "json_deserialize": 1, + "more": 2, + "@#errorcodes": 2, + "#base": 8, + "REALLY": 2, + "than": 2, + "deleterecord": 4, + "mysteriously": 2, + "session_addvar": 4, + "local": 116, + "performance.": 2, + "JSON_RPCCall": 1, + "be": 38, + "no": 2, + "html": 4, + "handling": 2, + "trace": 2, + "client_address": 1, + "Fields": 1, + "consume_token": 1, + "excludefield": 1, + "knop_cachedelete": 2, + "First": 4, + "earlier": 2, + "version": 4, + "pointer": 8, + "Include_URL": 1, + "removed": 2, + "form": 2, + "f": 2, + "new": 14, + "json_rpccall": 1, + "by": 12, + "priority": 8, + "help": 10, + "10": 2, + "All": 4, + "Done": 2, + "warning": 2, + "input": 2, + "see": 16, + "#custom_language": 10, + "framework": 2, + "LassoSoft": 1, + "0": 2, + "adding": 2, + "and": 52, + "better": 2, + "backwards": 2, + "option": 2, + "xhtml": 28, + "replace": 8, + "lower": 2, + "aliases": 2, + "access": 2, + "caused": 2, + "locking": 4, + "numbers": 2, + "resets": 2, + "/While": 1, + "LassoScript": 1, + "atbegin": 2, + "consume_string": 1, + "datatype": 2, + "lve": 2, + "#tags": 2, + "never": 2, + "content_body": 14, + "2010": 4, + "04": 8, + "trait_json_serialize": 2, + "Removed": 2, + "_temp": 1, + "foreachpair": 1, + "touch": 2, + ")": 639, + "unescape": 1, + "#endslash": 10, + "also": 5, "TZ": 2, - "DAY": 1, - "MONTH": 1, - "YEAR": 1, - "TRUNCATE": 2, - "MTIME": 1, + "priorityqueue": 2, + "FROM": 2, + "//tagswap.net/found_rows": 2, + "Created": 4, + "find": 57, + "that": 18, + "pair": 1, + "querys": 2, + "s": 2, + "it.": 2, + "global": 40, + "Get": 2, + "contains": 2, + "#id": 2, + "inline": 4, + "#timer": 2, + "False": 1, + "lock": 24, + "Required": 1, + "reaching": 2, + "Decode_JSON": 2, + "It": 2, + "not": 10, + "gmt": 1, + "cache_name": 2, + "iterate": 12, + "Default": 2, + "inaccurate": 2, + "_knop_data": 10, + "Contains": 2, + "most": 2, + "before": 4, + "normal": 2, + "handler": 2, + "__jsonclass__": 6, + "Internal.": 2, + "first": 12, + "exists.": 2, + "__html_reply__": 4, + "RPCCall": 1, + "all": 6, + "//Replace": 1, + "only": 2, + "length": 8, + "parameter.": 2, + "Optional": 1, + "nicely": 2, + "duration": 4, + "Base": 2, + "millisecond": 2, + "asstring": 4, + "6": 2, + "provided": 1, + "knop_base.": 2, + "loop_abort": 2, + "Find": 3, + "HHmmss": 1, + "buffer.": 2, + "types": 10, + "#ibytes": 17, + "lang": 2, + "||": 8, + "objects": 2, + "isa": 25, + "name": 32, + "db": 2, + "there": 2, + "prototype": 4, + "will": 12, + "cached": 8, + "returns": 4, + "run": 2, + "loop": 2, + "e": 13, + "fields": 2, + "to": 98, + "use": 10, + "Looks": 2, + "Decoding": 1, + "proper": 2, + "errors.": 2, + "improve": 2, + "knop": 6, + "request": 2, + "identify": 2, + "inlinename.": 4, + "user": 4, + "stripbackticks": 2, + "database": 14, + "/": 6, + "If": 4, + "expression": 6, + "shortcut": 2, + "**/": 1, + "conversion": 4, + "uselimit": 2, + "JSON_Records": 3, + "merge": 2, + "get": 12, + "writeunlock": 4, + "custom": 8, + "flag": 2, + "Cache": 2, + "#key": 12, + "28": 2, + "math_random": 2, + "in": 46, + "/If": 3, + "fixed": 4, + "calling": 2, + "SP": 4, + "Knop": 6, + "knop_databaserows": 2, + "#session": 10, + "getrecord.": 2, + "03": 2, + "Ric": 2, + "Can": 2, + "json_consume_array": 3, + "export8bits": 6, + "serialization_reader": 1, + "caching": 2, + "query": 4, + "json_serialize": 18, + "(": 640, + "accurate": 2, + "list": 4, + "recordindex": 4, + "ID": 1, + "required": 10, + "errors": 12, + "thread": 6, + "xml": 1, + "data": 12, + "consume_object": 1, + "r": 8, + "": 1, + "exit": 2, + "Min": 2, + "example": 2, + "recordpointer": 2, + "null": 26, + "_date_msec": 4, + "object": 7, + "Else": 7, + "error_msg": 15, + "ReturnField": 1, + "<": 7, + "Is": 1, + "addrecord": 4, + "gets": 2, + "messages": 6, + "used": 12, + "until": 2, + "Looking": 2, + "boilerplate": 2, + "level": 2, + "eachPair": 1, + "time": 8, + "Define_Tag": 1, + "MySQL": 2, + "this": 14, + "creating": 4, + "tags": 14, + "interact": 2, + "..onCreate": 1, + "nav": 4, + "pr": 1, + "records": 4, + "String_IsAlphaNumeric": 2, + "#delimit": 7, + "NOTES": 4, + "bytes": 8, + "15": 2, + "onassign": 2, + "json_literal": 1, + "Encoding": 1, + "KeyField": 1, + "except": 2, + "knop_lang": 8, + "an": 8, + "page": 14, + "well": 2, + "5": 4, + "renderfooter": 2, + "Added": 40, + "deprecation": 2, + "native": 2, + "work": 6, + "longer": 2, + "doesn": 4, + "tag": 11, + "even": 2, + "automatically": 2, + "Add": 2, + "string_IsNumeric": 1, + "knop_user": 4, + "specified": 8, + "it": 20, + "//##################################################################": 4, + "knop_base": 8, + "split": 2, + "tagtime": 4, + "can": 14, + "d": 2, + "knoptype": 2, + "cache": 4, + "from": 6, + "reading": 2, + "double": 2, + "knop_foundrows": 2, + "09": 10, + "key": 3, + "json_consume_token": 2, + "names": 4, + "I": 4, + "_records": 1, + "unless": 2, + "lockfield": 2, + "_exclude": 1, + "includes": 2, + "query.": 2, + "": 1, + "condition": 4, + "//bugs.mysql.com/bug.php": 2, + ".": 5, + "field_names": 2, + "Namespace": 1, + "_unknowntag": 6, + "ReplaceOnlyOne": 2, + "vars": 8, + "ibytes": 9, + "bad": 2, + "table": 6, + "message": 6, + "session_id": 6, + "Supports": 4, + "JSON": 2, + "define_tag": 48, + "are": 4, + "#method": 1, + "//localhost/lassoapps.8/rpc/rpc.lasso": 1, + "token": 1, + "statement": 4, + "found": 5, + "corrected": 2, + "test": 2, + "params": 11, + "sql": 2, + "specifying": 2, + "]": 23, + "parameter": 8, + "size": 24, + "pre": 4, + "knop_unique": 2, + "over": 2, + "instance": 8, + "#custom_string": 4, + "updates": 2, + "reporting": 2, + "working": 2, + "2009": 14, + "#item": 10, + "Protect": 1, + "JS": 126, + "capturesearchvars": 2, + "_return": 1, + "found_count": 11, + "Debug": 2, + "defined": 4, + "chunk": 2, + "/define_tag": 36, + "Finds": 2, + "found.": 2, + "later": 2, + "datasources": 2, + "true": 12, + "Size": 2, + "Parameters": 4, + "improved": 4, + "&&": 30, + "comment": 2, + "up": 4, + "#RandChars": 4, + "_record": 1, + "if": 76, + "Lewis": 2, + "trait": 1, + "thought": 2, + "queue": 2, + "add": 12, + "at": 10, + "/inline": 2, + "specific": 2, + ";": 573, + "@#output": 2, + "/if": 53, + "error_code": 11, + "#eol": 8, + "Lasso_UniqueID": 1, + "root": 2, + "Max": 2, + "foreach": 1, + "when": 10, + "relevant": 2, + "removeleading": 2, + "standard": 2, + "hoping": 2, + "both": 2, + "have": 6, + "14": 4, + "plain": 2, + "while": 9, + "general": 2, + "When": 2, + "seed": 6, + "removetrailing": 8, + "one": 2, + "occurrence": 2, + "construction": 2, + "much": 2, + "Custom": 2, + "This": 5, + "dummy": 2, + "//": 169, + "JSON_": 1, + "#seed": 36, + "trait_forEach": 1, + "keyvalues": 4, + "optional": 36, + "same": 4, + "#host": 4, + "#errorcodes": 4, + "debug": 2, + "StartPosition": 2, + "is": 35, + "format": 7, + "fastest.": 2, + "Seed": 2, + "string": 59, + "databases": 2, + "rows": 1, + "Inc.": 1, + "documentation": 2, + "ignored": 2, + "result": 6, + "mixed": 2, + "misplaced": 2, + "@#_output": 1, + "stored": 2, + "progress.": 2, + "#cryptvalue": 10, + "variable": 8, + "server_name": 6, + "maxrecords_value": 2, + "-": 2248, + "namespace=": 12, + "_output": 1, + "strings": 6, + "The": 6, + "literal": 3, + "Fix": 2, + "last": 4, + "explicitly": 2, + "ORDER": 2, + "output": 30, + "Introduced": 2, + "val": 1, + "increments": 2, + "reference": 10, + "on": 1, + "else": 32, + "EndsWith": 1, + "COUNT": 2, + "Johan": 2, + "isknoptype": 2, + "*/": 2, + "client_ip": 1, + "01": 4, + "Corrected": 8, + "known": 2, + "convert": 4, + "2008": 6, + "/resultset": 2, + "writing": 6, + "usually": 2, + "_field": 1, + "support": 6, + "define_type": 14, + "Make": 2, + "&": 21, + "knop_cachefetch": 4, + "value": 14, + "without": 4, + "Math_Random": 2, + "string_replaceregexp": 8, + "#rest": 1, + "join": 5, + "ignorecase": 12, + "method": 7, + "json_object": 2, + "serialize": 1, + "Google": 2, + "example.": 2, + "row": 2, + "output.": 2, + "lasso_tagexists": 4, + "p": 2, + "/while": 7, + "supports": 2, + "delimit": 7, + "false": 8, + "#anyChar": 2, + "retreive": 2, + "as": 26, + "called": 2, + "knop_databaserow": 2, + "GROUP": 4, + "": 3, + "#temp": 19, + "knop_knoptype": 2, + "between": 2, + "array": 20, + "For": 2, + "Replace": 19, + "//............................................................................": 2, + "#pr": 2, + "BY": 6, + "still": 2, + "lasso": 2, + "CHANGE": 4, + "Moved": 6, + "avoid": 2, + "already": 2, + "separate": 2, + "Faster": 2, + "variables": 2, + "regexp": 1, + "Addedd": 2, + "response_filepath": 8, + "session": 4, + "the": 86, + "grid": 2, + "getstring": 2, + "#_records": 1, + "such": 2, + "parent": 5, + "deserialize": 2, + "Map": 3, + "HHmmssZ": 1, + "readlock": 2, + "knop_cache": 2, + "supported": 2, + "knop_cachestore": 4, + "current_record": 2, + "var": 38, + "keys": 6, + "}": 18, + "sure": 2, + "reached.": 2, + "Centralized": 2, + "Loop_Abort": 1, + "internally": 2, + "normalize": 4, + "different": 2, + "Object": 2, + "b": 2, + "#varname": 6, + "provide": 2, + "oncreate": 2, + "after": 2, + "07": 6, + "properly": 4, + "fallback": 4, + "resultset_count": 6, + "precision": 2, + "iterated.": 2, + "readunlock": 2, + "#error_code": 10, + "local_defined": 26, + "#output": 50, + "Implemented": 2, + "compatibility": 4, + "versions": 2, + "error_data": 12, + "#type": 26, + "substring": 6, + "#error_lang_custom": 2, + "works": 4, + "date": 23, + "Adding": 2, + "__lassoservice_ip__": 2, + "break": 2, + "each": 8, + "host": 6, + "suppressed": 2, + "too": 4, + "writelock": 4, + "Syntax": 4, + "[": 22, + "member": 10, + "consume_array": 1 + }, + "C++": { + "NPY_INT": 2, + "PyBytesObject": 1, + "member": 2, + "*__pyx_v_data_np": 2, + "Vector": 13, + "ASSIGN_BIT_XOR": 1, + "LineScrollUp": 1, + "SCI_MOVESELECTEDLINESUP": 1, + "__pyx_v_endian_detector": 6, + "#endif": 82, + "SAR": 1, + "peek": 1, + "newer": 2, + "CPrivKey": 3, + "myclass.fatherIndex": 2, + "CharRightRectExtend": 1, + "QT_BEGIN_NAMESPACE": 1, + "update": 1, + "which": 2, + "PyNumber_InPlaceTrueDivide": 1, + "": 1, + "ret": 24, + "__Pyx_PyBytes_FromUString": 1, + "mode": 4, + "SerializeUnknownFieldsToArray": 1, + "random": 1, + "(": 2438, + "Py_buffer": 5, + "IsValid": 4, + "through": 2, + "PyObject_GetAttr": 4, + "__pyx_k__i": 2, + "as": 1, + "left": 7, + "LiteralScope*": 1, + "order": 8, + "argc": 2, + "__Pyx_RefNannySetupContext": 13, + "#define": 190, + "IsRunning": 1, + "namespace": 26, + "*__pyx_refnanny": 1, + "__Pyx_PyIndex_AsSsize_t": 1, + "is_unicode": 1, + "Py_TYPE": 4, + "CharacterStream*": 1, + "Token": 212, + "__pyx_t_5numpy_float_t": 1, + "_USE_MATH_DEFINES": 1, + "PyBytes_AS_STRING": 1, + "called": 1, + "range": 1, + "__Pyx_XDECREF": 26, + "dst": 2, + "kASCIISize": 1, + "NULL": 108, + "__pyx_k_tuple_13": 1, + "*env": 1, + "ScanString": 3, + "__Pyx_c_eq": 2, + "qCompress": 2, + "dbDataStructure": 2, + "": 2, + "__Pyx_RaiseNoneNotIterableError": 1, + "operator": 10, + "over": 1, + "ndim": 2, + "kNonStrictEquality": 1, + "NPY_FLOAT": 1, + "CONDITIONAL": 2, + "SetFatalError": 2, + "IsDecimalDigit": 2, + "PyTuple_GET_ITEM": 3, + "*__pyx_v_c": 3, + "continue": 2, + "escape": 1, + "one": 42, + "_has_bits_": 14, + "current_.token": 4, + "SkipField": 1, + "__pyx_L5": 6, + "RemoveCallCompletedCallback": 2, + "there": 1, + "rr": 4, + "GeneratedMessageReflection*": 1, + "CallDepthIsZero": 1, + "SCI_CHARRIGHT": 1, + "SCI_LINESCROLLUP": 1, + "SCI_WORDPARTRIGHT": 1, + "PrinterMode": 1, + "Initialize": 4, + "R": 6, + "__pyx_v_end": 2, + "*__pyx_v_self": 4, + "string*": 11, + "SCI_LINEENDWRAP": 1, + "LiteralBuffer*": 2, + "binary_million": 3, + "scriptPath": 1, + "total_size": 5, + "device": 1, + "callback": 7, + "draw": 1, + "CopyFrom": 5, + "InitializeOncePerProcessImpl": 3, + "LineEndRectExtend": 1, + "*__pyx_f_5numpy_PyArray_MultiIterNew1": 1, + "": 3, + "eckey": 7, + "setup.": 1, + "gridDim": 2, + "SCI_WORDPARTLEFTEXTEND": 1, + "*__pyx_kp_s_3": 1, + "PyString_Type": 2, + "kIsLineTerminator": 1, + "Newline": 1, + "ReadString": 1, + "next_literal_length": 1, + "script": 1, + "loadJSForDebug": 2, + "*descCmd": 1, + "control": 1, + "": 1, + "FLAG_stress_compaction": 1, + "__pyx_v_data": 7, + "__FILE__": 2, + "GOOGLE_PROTOBUF_DECLARE_ONCE": 1, + "The": 8, + "QSCIPRINTER_H": 2, + "LPAREN": 2, + "MakeNewKey": 1, + "MoveSelectedLinesUp": 1, + "__pyx_kp_s_1": 1, + "PyUnicode_Check": 1, + "SetCachedSize": 2, + "clipboard.": 5, + "than": 1, + "PyObject": 221, + "SCI_PASTE": 1, + "const_cast": 3, + "n": 28, + "with": 6, + "*__pyx_v_descr": 2, + "SetUpCaches": 1, + "random_base": 3, + "*sor": 1, + ".length": 3, + "Deserializer*": 2, + "enc": 1, + "reinterpret_cast": 7, + "": 1, + "WordLeftEnd": 1, + "StackFrame": 1, + "FLAG_gc_global": 1, + "NPY_SHORT": 2, + "__Pyx_c_powf": 3, + "actual": 1, + "displayed": 10, + "|": 8, + "tuple": 3, + "ASSIGN_SHL": 1, + "_WIN32": 1, + "can": 3, + "VCHome": 1, + "hasn": 1, + "__Pyx_c_quotf": 2, + "EOS": 1, + "ConvertToUtf16": 2, + "sub": 2, + "text.": 3, + "IsDefaultIsolate": 1, + "PyString_Size": 1, + "Buffer": 2, + "desc": 2, + "LineEndExtend": 1, + "InternalRegisterGeneratedFile": 1, + "EC_KEY_set_public_key": 2, + "hello": 2, + "__pyx_t_10": 7, + "__pyx_ptype_5numpy_ndarray": 2, + "__pyx_refnanny": 5, + "token": 64, + "removed.": 2, + "target": 6, + "DECREF": 1, + "npy_longdouble": 1, + "CYTHON_CCOMPLEX": 12, + "FillHeapNumberWithRandom": 2, + "else": 46, + "UnregisterAll": 1, + "DeleteWordRightEnd": 1, + "Transpose": 1, + "__pyx_k__fields": 1, + "IsLineTerminator": 6, + "myclass.depth": 2, + "DISALLOW_COPY_AND_ASSIGN": 2, + "*__pyx_b": 1, + "STRING": 1, + "-": 227, + "InitAsDefaultInstance": 3, + "vchPrivKey": 1, + "resolver": 3, + "EnforceFlagImplications": 1, + "is_running_": 6, + "__pyx_pf_5numpy_7ndarray_1__releasebuffer__": 2, + "SCI_DELWORDRIGHTEND": 1, + "SUB": 1, + "**tb": 1, + "QVector": 2, + "DeleteWordLeft": 1, + "__Pyx_PyInt_AsChar": 1, + "//Don": 1, + "literal_chars": 1, + "SCI_DOCUMENTSTART": 1, + "SCI_VCHOMEWRAP": 1, + "INC": 1, + "Execute": 1, + "Utf16CharacterStream": 3, + "NPY_OBJECT": 1, + "nextItems": 1, + "private": 12, + "TerminateLiteral": 2, + ";": 2308, + "NPY_UINT": 2, + "root": 1, + "phantom": 1, + "argv": 2, + "SCI_PAGEUPEXTEND": 1, + "__Pyx_c_sumf": 2, + "Python": 1, + "dbDataStructure*": 1, + "INT_MAX": 1, + "for": 18, + "PyArray_STRIDES": 2, + "app.setApplicationName": 1, + "SCI_UPPERCASE": 1, + "blockDim": 2, + "__Pyx_c_is_zero": 3, + "DocumentEndExtend": 1, + "current_.location": 2, + "right.": 2, + "source_pos": 10, + "mag": 2, + "default_instance_": 8, + "PyObject_GetItem": 1, + "*__pyx_n_s__strides": 1, + "PyLong_AS_LONG": 1, + "kIsIdentifierPart": 1, + "kIsIdentifierPart.get": 1, + "SCI_WORDLEFTEND": 1, + "__pyx_t_double_complex_from_parts": 1, + "EC_KEY_dup": 1, + "nBitsS": 3, + "beg_pos": 5, + "__pyx_t_3": 113, + "__pyx_k__Zf": 2, + "PyObject_SetAttrString": 2, + "use": 1, + "EnterDefaultIsolate": 1, + "example": 1, + "PHANTOMJS_VERSION_STRING": 1, + "m_map.insert": 1, + "__pyx_k_9": 1, + "__Pyx_ErrRestore": 1, + "__Pyx_PySequence_GetSlice": 2, + "UnknownFieldSet": 2, + "file": 6, + "__Pyx_CIMAG": 4, + "ScreenResolution": 1, + "CharLeft": 1, + "literal_length": 1, + "npy_int32": 1, + "kLanguageModeMask": 4, + "Py_INCREF": 3, + "DIV": 1, + "SCI_LINETRANSPOSE": 1, + "e": 14, + "__pyx_t_5numpy_int8_t": 1, + "actually": 1, + "*priv_key": 1, + "__pyx_t_5numpy_intp_t": 1, + "*field": 1, + "SignCompact": 2, + "HandleScopeImplementer*": 1, + "": 1, + "GTE": 1, + "kernel": 2, + "PyBUF_C_CONTIGUOUS": 3, + "blockIdx.y*blockDim.y": 1, + "Scanner": 16, + "endl": 1, + "CharLeftExtend": 1, + "app.exec": 1, + "vchPubKeyIn": 2, + "SCI_ZOOMIN": 1, + "__pyx_k__strides": 1, + "__pyx_k__I": 2, + "GIVEREF": 1, + "when": 5, + "app.setOrganizationName": 1, + "sizeof": 14, + "s": 9, + "cast": 1, + "*__pyx_n_s__type_num": 1, + "QVariantMap": 3, + "__pyx_t_5numpy_complex_t": 1, + "type*": 1, + "HeapNumber": 1, + "key2.GetPubKey": 1, + "clear_octal_position": 1, + "__pyx_v_new_offset": 5, + "PyBytes_CheckExact": 1, + "command.": 5, + "*__pyx_v_new_offset": 1, + "*__Pyx_RefNanny": 1, + "__Pyx_PyInt_AsSize_t": 1, + "union": 1, + "cpow": 1, + "__Pyx_c_absf": 3, + "current_token": 1, + "PyLong_AsUnsignedLongLongMask": 1, + "tok": 2, + "env": 3, + "QT_END_NAMESPACE": 1, + "EC_POINT_set_compressed_coordinates_GFp": 1, + "HarmonyModules": 1, + "__Pyx_c_eqf": 2, + "WordLeftExtend": 1, + "PyStringObject": 2, + "ZoomOut": 1, + "kNullValue": 1, + "formatPage": 1, + "*env_instance": 1, + "class": 34, + "__pyx_v_d": 2, + "SCI_DELWORDLEFT": 1, + "secret": 2, + "right": 8, + "SCI_VERTICALCENTRECARET": 1, + "SCI_COPY": 1, + "ASSIGN_SUB": 1, + "vchPubKey.size": 3, + "switch": 3, + "": 1, + "__Pyx_PyInt_AsUnsignedChar": 1, + "npy_uint32": 1, + "EC_KEY_free": 1, + "2": 1, + "GDS_DIR": 1, + "HEAP": 1, + "SamplerRegistry": 1, + "able": 1, + "STRICT_MODE": 2, + "points": 2, + "LEVEL_TWO": 1, + "AddLiteralChar": 2, + "no": 1, + "PyObject_DelAttrString": 2, + "value": 18, + "char**": 2, + "*__pyx_n_s__range": 1, + "__Pyx_c_prod": 2, + "kIsWhiteSpace": 1, + "next_.literal_chars": 13, + "__Pyx_RaiseTooManyValuesError": 1, + "META.": 1, + "QTemporaryFile*": 2, + "Duplicate": 2, + "SetCompactSignature": 2, + "__pyx_n_s__do_awesome_work": 3, + "SCI_LINEENDWRAPEXTEND": 1, + "main": 2, + "": 1, + "PyArray_NDIM": 1, + "GOTREF": 1, + "PyLong_CheckExact": 1, + "myclass.firstLineData": 4, + "extensions": 1, + "resourceFilePath": 1, + "CSecret": 4, + "SharedCtor": 4, + "Key_Up": 1, + "PyObject_HEAD_INIT": 1, + "INT_MIN": 1, + "__pyx_print": 1, + "QPrinter": 3, + "adding": 2, + "temp": 2, + "jsFileEnc": 2, + "SCI_HOMEWRAPEXTEND": 1, + "*__pyx_k_tuple_14": 1, + "ASSIGN_DIV": 1, + "PyTuple_CheckExact": 1, + "BN_CTX_start": 1, + "ctx": 26, + "peek_location": 1, + "__pyx_t_8": 16, + "PyLong_AsUnsignedLongMask": 1, + "void": 152, + "CharLeftRectExtend": 1, + "WrapMode": 3, + "kEmptyString": 12, + "utf8_decoder": 1, + "": 1, + "keys": 3, + "coffee2js": 1, + "data": 2, + "fit": 1, + "__pyx_L13": 2, + "ParsingFlags": 1, + "seen_equal": 1, + "Utils": 4, + "abs": 2, + "COLON": 2, + "len": 1, + "BN_CTX_new": 2, + "SCI_PARAUP": 1, + "google_breakpad": 1, + "regenerate": 1, + "Person": 65, + "PyInt_AsSsize_t": 2, + "names": 2, + "PyArray_HASFIELDS": 1, + "*__pyx_kp_u_15": 1, + "nSize": 2, + "j": 4, + "myclass": 1, + "*tb": 2, + "QObject": 2, + "dialogs.": 1, + "word.": 9, + "graphics.": 2, + "cudaUnbindTexture": 1, + "__pyx_v_offset": 9, + "*__pyx_t_3": 4, + "PyString_FromString": 1, + "Complete": 1, + "Utf8InputBuffer": 2, + "expected": 1, + "SCI_LINEENDEXTEND": 1, + "phantom.execute": 1, + "Use": 1, + "NPY_CFLOAT": 1, + "Value": 23, + "x": 48, + "down": 12, + "conjf": 1, + "__pyx_clineno": 80, + "long": 5, + "new_capacity": 2, + "ecsig": 3, + "LONG_LONG": 1, + "QsciCommandSet": 1, + "unlikely": 69, + "first": 8, + "WordPartLeftExtend": 1, + "": 1, + "cmd": 1, + "NPY_LONG": 1, + "WireFormatLite": 9, + "LineUp": 1, + "Init": 3, + "key2": 1, + "EXTENDED_MODE": 2, + "BN_mul_word": 1, + "SCI_LINEDOWNRECTEXTEND": 1, + "Location": 14, + "vchPubKey.end": 1, + "scanner_": 5, + "SCI_NEWLINE": 1, + "suboffsets": 1, + ".real": 3, + "npy_int64": 1, + "PySet_Check": 1, + "Redo": 2, + "was": 3, + "SHL": 1, + "texture": 1, + "next_.location.beg_pos": 3, + ")": 2440, + "mapping": 1, + "BN_mod_sub": 1, + "__pyx_v_i": 6, + "*__pyx_int_15": 1, + "__pyx_k__pure_py_test": 1, + "*__pyx_builtin_ValueError": 1, + "__pyx_print_kwargs": 1, + "GOOGLE_PROTOBUF_VERIFY_VERSION": 1, + "at": 4, + "mailing": 1, + "__pyx_k_15": 1, + "SWIG": 2, + "QByteArray": 1, + "document.": 8, + "IsInitialized": 3, + "being": 2, + "utf16_literal": 3, + "__pyx_pf_5numpy_7ndarray___getbuffer__": 2, + "__pyx_t_double_complex": 27, + "MessageFactory": 3, + "backing_store_.length": 4, + "*reinterpret_cast": 1, + "static_descriptor_initializer_protocol_2dbuffer_2eproto_": 1, + "SCI_PAGEUP": 1, + "heap_number": 4, + "myclass.userIndex": 2, + "*__pyx_n_s__descr": 1, + "kIsIdentifierStart": 1, + "": 2, + "HexValue": 2, + "itemsize": 2, + "two": 1, + "__Pyx_c_prodf": 2, + "uint64_t": 2, + "Key_Backspace": 1, + "uniqueID": 1, + "__pyx_k_tuple_14": 1, + "QIcon": 1, + "succeeded": 1, + "<4;>": 1, + "des": 3, + "look": 1, + "": 1, + "instantiated": 1, + "PyBUF_INDIRECT": 1, + "paint": 1, + "init_once": 2, + "Env": 13, + "operation.": 1, + "SCI_CHARLEFTRECTEXTEND": 1, + "descr": 2, + "PyString_AsStringAndSize": 1, + "PyBytes_Type": 1, + "PyBUF_STRIDES": 5, + "FindFileByName": 1, + "__Pyx_c_is_zerof": 3, + "headers.": 3, + "E": 3, + "*__pyx_v_d": 2, + "*format": 1, + "LineTranspose": 1, + "PyFloat_CheckExact": 1, + "source_length": 3, + ".Equals": 1, + "protoc.": 1, + "BIT_AND": 1, + "GeneratedMessageReflection": 1, + "__pyx_L6": 6, + "handle_scope_implementer": 5, + "character.": 9, + "__Pyx_c_negf": 2, + "metadata": 2, + "PyVarObject*": 1, + "__pyx_PyFloat_AsDouble": 3, + "QPainter": 2, + "SCI_CHARRIGHTEXTEND": 1, + "__pyx_self": 2, + "PyNumber_TrueDivide": 1, + "SCI_LINEEND": 1, + "StutteredPageDownExtend": 1, + "protobuf": 72, + "line": 10, + "envvar.indexOf": 1, + "__pyx_k_tuple_8": 1, + "__pyx_k_5": 1, + "x16": 1, + "HarmonyScoping": 1, + "PyArray_ITEMSIZE": 1, + "__pyx_k__range": 1, + "npy_uint64": 1, + "": 1, + "*__pyx_f_5numpy_PyArray_MultiIterNew2": 2, + "and": 14, + "*name": 6, + "undo": 4, + "set": 1, + "from.unknown_fields": 1, + "CKeyID": 5, + "PY_MAJOR_VERSION": 10, + "#include": 106, + "entropy_source": 4, + "ScrollToEnd": 1, + "__global__": 1, + "a": 84, + "*__pyx_v_childname": 1, + "*__pyx_n_s__readonly": 1, + "__Pyx_c_pow": 3, + "__sun__": 1, + "MergePartialFromCodedStream": 2, + "PyNumber_Check": 1, + "want": 2, + "ParaUp": 1, + "has_name": 6, + "struct": 8, + "vchSig.clear": 2, + "__pyx_kp_s_2": 1, + "Py_DECREF": 1, + "__pyx_t_5numpy_int64_t": 1, + "SelectionLowerCase": 1, + "npy_uint8": 1, + "SCI_CANCEL": 1, + "GetSecret": 2, + "LT": 2, + "extern": 4, + "lower": 1, + "SCI_FORMFEED": 1, + "o": 20, + "__pyx_k__byteorder": 1, + "up": 13, + "__pyx_int_15": 1, + "AND": 1, + "myclass.label": 2, + "report": 2, + "end": 18, + "*__pyx_t_8": 1, + "__Pyx_PyInt_AsLong": 1, + "out.": 1, + "Current": 5, + "pub_key": 6, + "WebKit": 1, + "Paste": 2, + "__pyx_v_dims": 4, + "*__pyx_empty_tuple": 1, + "PyErr_Warn": 1, + "DocumentStartExtend": 1, + "code_unit_count": 7, + "PyInstanceMethod_New": 1, + "}": 552, + "then": 6, + "HomeWrap": 1, + "default": 4, + "__pyx_t_5numpy_float32_t": 1, + "scikey": 1, + "Protocol": 2, + "QVariant": 1, + "OR": 1, + "fatherIndex": 1, + "*ctx": 2, + "Merge": 1, + "literal_buffer1_": 3, + "Predicate": 4, + "__Pyx_TypeTest": 4, + "__APPLE__": 4, + "r.uint64_t_value": 1, + "tex2D": 1, + "SkipWhiteSpace": 4, + "has_been_disposed_": 6, + "source": 9, + "MoveSelectedLinesDown": 1, + "npy_uint16": 1, + "SCI_SELECTALL": 1, + "SCI_VCHOME": 1, + "image": 1, + "VCHomeExtend": 1, + "myclass.noFatherRoot": 2, + "static_cast": 7, + "": 12, + "PyInt_AsUnsignedLongMask": 1, + "DL_EXPORT": 2, + "*__pyx_v_info": 4, + "next_": 2, + ".": 2, + "Shrink": 1, + "ReadBlock": 2, + "PyBUF_F_CONTIGUOUS": 3, + "QtMsgType": 1, + "*__pyx_n_s__shape": 1, + "PyIntObject": 1, + "DropLiteral": 2, + "Key_Home": 1, + "PageDownExtend": 1, + "__pyx_k__readonly": 1, + "SCI_DELETEBACK": 1, + "set_has_name": 7, + "SCI_DELLINERIGHT": 1, + "SelectionDuplicate": 1, + "__pyx_t_float_complex": 27, + "drawing": 4, + "key": 23, + "#elif": 3, + "print": 4, + "WordRightEndExtend": 1, + "modified": 2, + "install": 1, + "npy_uintp": 1, + "PyString_Concat": 1, + "ParaDownExtend": 1, + "<": 56, + "": 1, + "PY_SSIZE_T_CLEAN": 1, + "FlagList": 1, + "PyBUF_WRITABLE": 1, + "init.": 1, + "readonly": 2, + "__pyx_v_flags": 4, + "short": 3, + "Stuttered": 4, + "*Q": 1, + "*obj": 2, + "SCI_WORDRIGHTEND": 1, + "protobuf_RegisterTypes": 2, + "metadata.descriptor": 1, + "NPY_UBYTE": 2, + "": 1, + "node": 1, + "internal": 46, + "PyFloat_AS_DOUBLE": 1, + "PyObject*": 16, + "selection": 39, + "clear": 2, + "phantom.returnValue": 1, + "free_buffer": 3, + "WIRETYPE_END_GROUP": 1, + "new_content_size": 4, + "Isolate*": 6, + "*__pyx_k_tuple_10": 1, + "cudaAddressModeClamp": 2, + "UnicodeCache": 3, + "development": 1, + "Q_INIT_RESOURCE": 2, + "noFatherRoot": 1, + "fields": 1, + "*__pyx_n_s__numpy": 1, + "__STDC_VERSION__": 2, + "level": 1, + "PyArray_DATA": 1, + "*__pyx_v_data": 1, + "__pyx_t_4": 35, + "__pyx_k__Zg": 2, + "Deserializer": 1, + "*from_list": 1, + "SCI_SELECTIONDUPLICATE": 1, + "BIT_NOT": 2, + "X": 2, + "AllStatic": 1, + "IsByteOrderMark": 2, + "": 1, + "printing.": 2, + "default_instance": 3, + "DL_IMPORT": 2, + "__imag__": 1, + "*m": 1, + "height": 5, + "min_capacity": 2, + "": 1, + "*buf": 1, + "kNoParsingFlags": 1, + "SCI_TAB": 1, + "qkey": 2, + "key_error": 6, + "Next": 3, + "__pyx_pf_13wrapper_inner_pure_py_test": 1, + "*__pyx_kp_u_11": 1, + "scoping": 2, + "f": 5, + "*qsb": 1, + "ScanIdentifierUnicodeEscape": 1, + "PyArray_DIMS": 2, + "Unescaped": 1, + "has_fatal_error_": 5, + "WordLeftEndExtend": 1, + "magnification.": 1, + "BN_add": 1, + "assigned": 1, + "PyNumber_InPlaceDivide": 1, + "DEBUG": 3, + "IsIdentifier": 1, + "unknown_fields": 7, + "binding.": 1, + "SCI_DOCUMENTEND": 1, + "PyInt_AsUnsignedLongLongMask": 1, + "PyInt_FromSize_t": 1, + "uint256": 10, + "that": 7, + "SlowSeekForward": 2, + "**env": 1, + "next_.token": 3, + "t": 13, + "StartLiteral": 2, + "SetUpJSCallerSavedCodeData": 1, + "GetPrivKey": 1, + "PyTuple_New": 4, + "PARSE": 1, + "Print": 1, + "IsLineFeed": 2, + "*__pyx_v_fields": 1, + "*__pyx_n_s__ndim": 1, + "PyBoolObject": 1, + "make": 1, + "QT_VERSION_CHECK": 1, + "set_value": 1, + "Isolate": 9, + "Encoding": 3, + "__pyx_k__work_module": 1, + "BN_rshift": 1, + "*sig": 2, + "UTILS_H": 3, + "drawn": 2, + "key.": 1, + "uint32_t*": 2, + "uint160": 8, + "nRecId": 4, + "SkipMultiLineComment": 3, + "__pyx_f": 79, + "Undo": 2, + "this": 22, + "sized.": 1, + "PyBUF_FORMAT": 1, + "ASSIGN_SHR": 1, + "": 1, + "IMPLEMENT_SERIALIZE": 1, + "__pyx_k__base": 1, + "execute": 1, + "keyword": 1, + "npy_ulong": 1, + "__Pyx_DelAttrString": 2, + "ScanDecimalDigits": 1, + "either": 1, + "bound": 4, + "or": 10, + "%": 4, + "elsize": 1, + "__pyx_v_e": 1, + "__pyx_v_nd": 6, + "__pyx_k__f": 2, + "Py_intptr_t": 1, + "npy_clongdouble": 1, + "FLAG_max_new_space_size": 1, + "stacklevel": 1, + "setAlternateKey": 3, + "xFEFF": 1, + "IncrementCallDepth": 1, + "__pyx_k_11": 1, + "": 1, + "UnicodeCache*": 4, + "cudaArray*": 1, + "autorun": 2, + "while": 11, + "*eckey": 2, + "SEMICOLON": 2, + "*__pyx_k_tuple_6": 1, + "__pyx_k__RuntimeError": 1, + "ExpectAtEnd": 1, + "printable": 1, + "PyDict_Contains": 1, + "*__pyx_v_end": 1, + "*__pyx_n_s__buf": 1, + "tex": 4, + "PyTuple_GET_SIZE": 2, + "NPY_ULONG": 1, + "__pyx_k_tuple_10": 1, + "__pyx_cfilenm": 1, + "ScanRegExpFlags": 1, + "SCI_SCROLLTOSTART": 1, + "DocumentEnd": 1, + "return": 147, + "BIGNUM": 9, + "SCI_LINEUP": 1, + "A": 1, + "IsCompressed": 2, + "myclass.linesNumbers": 2, + "#if": 44, + "quote": 3, + "ReflectionOps": 1, + "CallCompletedCallback": 4, + "EditToggleOvertype": 1, + "userIndex": 1, + "QWebFrame": 4, + "ScanIdentifierSuffix": 1, + "SetUp": 4, + "HomeExtend": 1, + "ParaUpExtend": 1, + "__pyx_L2": 2, + "__Pyx_UnpackTupleError": 2, + "in": 9, + "overload.": 1, + "__Pyx_PyInt_AsUnsignedInt": 1, + "ECDSA_verify": 1, + "fOk": 3, + "O": 5, + "Command": 4, + "expected_length": 4, + "*__pyx_v_child": 1, + "ReturnAddressLocationResolver": 2, + "__pyx_v_hasfields": 4, + "__pyx_k_tuple_4": 1, + "*__pyx_pf_13wrapper_inner_pure_py_test": 2, + "__pyx_k_1": 1, + "__Pyx_PyInt_AsInt": 1, + "*msg": 2, + "DO_": 4, + "only": 1, + "description": 5, + "LTE": 1, + "sor": 3, + "NPY_USHORT": 2, + "COMPRESSED": 1, + "__pyx_t_9": 7, + "kAllowNativesSyntax": 1, + "kCharacterLookaheadBufferSize": 3, + "]": 204, + "STATIC_ASSERT": 5, + "uint64_t_value": 1, + "__pyx_v_childname": 4, + "__pyx_L14": 18, + "intern": 1, + "PyUnicode_Type": 2, + "depth": 1, + "xFFFE": 1, + "inner_work_2d": 2, + "*r": 1, + "IsDead": 2, + "ScanOctalEscape": 1, + "ASSERT_EQ": 1, + "": 1, + "__Pyx_RefNannyAPIStruct": 4, + "Something": 1, + "*qs": 1, + "c0_": 64, + "__LINE__": 84, + "Py_REFCNT": 1, + "b.pkey": 2, + "HasAnyLineTerminatorBeforeNext": 1, + "QCoreApplication": 1, + "SkipSingleLineComment": 6, + "GetHash": 1, + "*internal": 1, + "ECDSA_SIG_new": 1, + "*__pyx_kp_u_7": 1, + "each": 2, + "has": 2, + "EXPRESSION": 2, + "else_": 2, + "*__pyx_v_offset": 1, + "__Pyx_PyInt_AsUnsignedLong": 1, + "Advance": 44, + "vchSig": 18, + "*__pyx_t_4": 3, + "PyInt_CheckExact": 1, + "": 1, + "QsciScintillaBase": 100, + "NUM_TOKENS": 1, + "enum": 6, + "shape": 3, + "__pyx_k__O": 2, + "PY_LONG_LONG": 5, + "MS_WINDOWS": 2, + "y": 16, + "Hash": 1, + "state": 15, + "__pyx_v_fields": 7, + "__pyx_v_sum": 6, + "*__pyx_builtin_range": 1, + "validKey": 3, + "cudaCreateChannelDesc": 1, + "__pyx_k__numpy": 1, + "Binds": 2, + "SCI_VCHOMEEXTEND": 1, + "TearDownCaches": 1, + "SCI_CHARLEFT": 1, + "tp_as_mapping": 3, + "__Pyx_PyNumber_InPlaceDivide": 2, + "LBRACE": 2, + "SCI_PAGEDOWN": 1, + "SCI_LINEDOWNEXTEND": 1, + "ob_type": 7, + "paragraph.": 4, + "__pyx_module_is_main_wrapper_inner": 1, + "Py_False": 2, + "PyNumber_Divide": 1, + "r.double_value": 3, + "explicit": 3, + "remove": 1, + "SCI_WORDPARTRIGHTEXTEND": 1, + "FireCallCompletedCallback": 2, + "*__pyx_n_s__ones": 1, + "FinishContext": 1, + "PyFloat_AsDouble": 1, + "PyBUF_ANY_CONTIGUOUS": 1, + "key2.SetSecret": 1, + "IsNull": 1, + "Scanner*": 2, + "PyNumber_Subtract": 2, + "location.end_pos": 1, + "dim3": 2, + "SCI_PAGEDOWNRECTEXTEND": 1, + "PY_SSIZE_T_MAX": 1, + "*__pyx_n_s__base": 1, + "bindKey": 1, + "unchanged.": 1, + "BN_cmp": 1, + "BIT_XOR": 1, + "128": 4, + "__pyx_k__names": 1, + "before": 1, + "*": 159, + "FLAG_crankshaft": 1, + "__PYX_EXTERN_C": 2, + "myclass.uniqueID": 2, + "#ifndef": 23, + "example.": 1, + "generated_pool": 2, + "ElementsAccessor": 2, + "literal.Complete": 2, + "cudaFilterModePoint": 1, + "ParaDown": 1, + "malloc": 2, + "group": 12, + "numbered": 1, + "SCI_VCHOMEWRAPEXTEND": 1, + "NPY_LONGDOUBLE": 1, + "setWrapMode": 2, + "WordLeft": 1, + "*__pyx_m": 1, + "PyLong_Type": 1, + "UnknownFieldSet*": 1, + "CharRight": 1, + "error": 1, + "GoogleOnceInit": 1, + "SCI_LINEUPRECTEXTEND": 1, + "currently": 2, + "__Pyx_GOTREF": 60, + "foo": 2, + "__Pyx_ErrFetch": 1, + "PyString_DecodeEscape": 1, + "rather": 1, + "FatalProcessOutOfMemory": 1, + "friend": 10, + "printer": 1, + "*default_instance_": 1, + "Lazy": 1, + "clean": 1, + "RandomPrivate": 2, + "*__pyx_v_e": 1, + "_Complex": 2, + "BIT_OR": 1, + "vector": 14, + "Utf8Decoder": 2, + "QString": 20, + "cudaChannelFormatDesc": 1, + "": 1, + "envvar": 2, + "__pyx_kp_u_11": 1, + "BN_num_bits": 2, + "__pyx_L7": 2, + "val": 3, + "is": 35, + "EC_POINT": 4, + "SCI_MOVESELECTEDLINESDOWN": 1, + "character": 8, + "will": 2, + "__Pyx_INCREF": 36, + "_unknown_fields_.Swap": 1, + "strides": 5, + "**p": 1, + "area": 5, + "take_snapshot": 1, + "__Pyx_RefNannyFinishContext": 12, + "complex": 2, + "CYTHON_WITHOUT_ASSERTIONS": 1, + "void*": 1, + "If": 4, + "returned": 2, + "PyBytes_DecodeEscape": 1, + "new_store": 6, + "De": 1, + "*order": 1, + "npy_double": 2, + "PyBytes_AsStringAndSize": 1, + "protobuf_AssignDescriptors_once_": 2, + "ECDSA_SIG_free": 2, + "SCI_LINEDUPLICATE": 1, + "protected": 4, + "*__pyx_f_5numpy_PyArray_MultiIterNew3": 2, + "CYTHON_REFNANNY": 3, + "__Pyx_PySequence_DelSlice": 2, + "older": 1, + "": 6, + "lines.": 1, + "PyBytes_GET_SIZE": 1, + "PyString_FromStringAndSize": 1, + "b": 57, + "SCI_WORDLEFTEXTEND": 1, + "GOOGLE_CHECK_NE": 2, + "SCI_LINESCROLLDOWN": 1, + "modules": 2, + "context": 8, + "next_.location.end_pos": 4, + "StutteredPageUpExtend": 1, + "BITCOIN_KEY_H": 2, + "ComputeUnknownFieldsSize": 1, + "PROTOBUF_protocol_2dbuffer_2eproto__INCLUDED": 3, + "DecrementCallDepth": 1, + "SetupContext": 1, + "__Pyx_PySequence_SetSlice": 2, + "unicode_cache_": 10, + "xffu": 3, + "kAllowModules": 1, + "__pyx_kp_s_3": 1, + "real": 2, + "AddLiteralCharAdvance": 3, + "": 1, + "incompatible": 2, + "Person*": 7, + "current": 9, + "SHIFT": 1, + "optimize": 1, + "p": 5, + "WordPartLeft": 1, + "GT": 1, + "further": 1, + "GetCachedSize": 1, + "SCI_LINEENDDISPLAYEXTEND": 1, + "Py_None": 38, + "*__pyx_n_s__RuntimeError": 1, + "PyInt_FromString": 1, + "printing": 2, + "upper": 1, + "__Pyx_PyObject_IsTrue": 8, + "current_": 2, + "Sign": 1, + "indent": 1, + "BN_bn2bin": 2, + "SCI_UNDO": 1, + "PyBUF_SIMPLE": 1, + "*__pyx_t_9": 1, + "memcpy": 1, + "EC_KEY": 3, + "private_random_seed": 1, + "swap": 3, + "SCI_HOMEDISPLAY": 1, + "PyInt_FromSsize_t": 2, + "__Pyx_WriteUnraisable": 3, + "used": 4, + "/8": 2, + "zero": 3, + "HomeDisplayExtend": 1, + "Py_SIZE": 1, + "__pyx_k__ndim": 1, + "OS": 3, + "PageUpExtend": 1, + "myclass.fileName": 2, + "alter": 1, + "GOOGLE_CHECK": 1, + "mutable": 1, + "to": 75, + "EC_GROUP": 2, + "free": 2, + "encoding": 1, + "on": 1, + "SelectionCopy": 1, + "float": 9, + "<27>": 1, + "__pyx_v_a": 5, + "__pyx_k__b": 2, + "Context*": 4, + "user": 2, + "protobuf_AssignDescriptorsOnce": 4, + "cleanupFromDebug": 1, + "__pyx_t_5numpy_ulong_t": 1, + "PyString_ConcatAndDel": 1, + "VCHomeWrapExtend": 1, + "vchPubKey.begin": 1, + "__pyx_v_data_np": 10, + "RBRACE": 2, + "TokenDesc": 3, + "msg": 1, + "immediately": 1, + "*qsCmd": 1, + "INCREF": 1, + "PyString_GET_SIZE": 1, + "err": 26, + "InitializeOncePerProcess": 4, + "**type": 1, + "npy_cdouble": 2, + "SHR": 1, + "/": 15, + "SCI_CHARRIGHTRECTEXTEND": 1, + "": 1, + "SCI_PARADOWN": 1, + "GetID": 1, + "*__pyx_n_s__byteorder": 1, + "is_literal_ascii": 1, + "List": 3, + "Formfeed": 1, + "Copy": 2, + "CodedOutputStream*": 2, + "app.setApplicationVersion": 1, + "CharRightExtend": 1, + "SCI_LINEENDDISPLAY": 1, + "selection.": 1, + "kIsWhiteSpace.get": 1, + "DeleteWordRight": 1, + "ScanLiteralUnicodeEscape": 3, + "has_line_terminator_before_next_": 9, + "EC_POINT_is_at_infinity": 1, + "view": 2, + "CodedInputStream*": 2, + "compile": 1, + "SCI_REDO": 1, + "*__pyx_r": 7, + "TearDown": 5, + "has_multiline_comment_before_next_": 5, + "*__pyx_n_s__itemsize": 1, + "__pyx_t_5numpy_uint16_t": 1, + "ourselves": 1, + "SupportsCrankshaft": 1, + "cudaMemcpyToArray": 1, + "PageUpRectExtend": 1, + "__pyx_v_num_x": 4, + "*R": 1, + "wrapMode": 2, + "after": 1, + "_unknown_fields_": 5, + "": 1, + "CLASSIC_MODE": 2, + "prevent": 1, + "previous": 5, + "pos_": 6, + "EqualityKind": 1, + "PyExc_TypeError": 5, + "Object*": 4, + "throw": 4, + "DocumentStart": 1, + "start": 11, + "using": 1, + "*__pyx_builtin_RuntimeError": 1, + "__pyx_t_5numpy_long_t": 1, + "buffer": 1, + "WordPartRight": 1, + "coordinates": 1, + "current_pos": 4, + "priv_key": 2, + "conj": 3, + "thread_id": 1, + "typedef": 38, + "set_name": 7, + "pkey": 14, + "protobuf_AssignDesc_protocol_2dbuffer_2eproto": 4, + "string": 10, + "COMMA": 2, + "command": 9, + "__pyx_t_5": 75, + "negative": 2, + "BN_CTX_free": 2, + "__pyx_L10": 2, + "*__pyx_int_5": 1, + "__pyx_t_5numpy_int16_t": 1, + "PyBytes_Concat": 1, + "PyNumber_Index": 1, + "Key_Return.": 1, + "message_type": 1, + "backing_store_.start": 5, + "PushBack": 8, + "Indent": 1, + "different": 1, + "_cached_size_": 7, + "NPY_BYTE": 2, + "LineDown": 1, + "CPU": 2, + "#undef": 3, + "ob_refcnt": 1, + "*__pyx_kp_u_12": 1, + "PyArray_Descr": 6, + "seen_period": 1, + "__pyx_n_s__np": 1, + "alternate": 3, + "*group": 2, + "qaltkey": 2, + "": 2, + "__real__": 1, + "EC_KEY_new_by_curve_name": 2, + "SCI_STUTTEREDPAGEUP": 1, + "": 1, + "not": 2, + "be": 9, + "SetSecret": 1, + "NPY_C_CONTIGUOUS": 1, + "ThreadId": 1, + "protobuf_ShutdownFile_protocol_2dbuffer_2eproto": 4, + "": 1, + "LiteralBuffer": 6, + "type": 6, + "fCompressed": 3, + "NPY_CLONGDOUBLE": 1, + "*__pyx_n_s__names": 1, + "//": 239, + "PERIOD": 1, + "change": 1, + "SCI_LINECOPY": 1, + "Sets": 2, + "u": 9, + "EC_POINT_free": 4, + "PyString_AS_STRING": 1, + "Each": 1, + "definition": 1, + "you": 1, + "true": 39, + "from": 25, + "FileDescriptor*": 1, + "StringSize": 1, + "SCI_DELWORDRIGHT": 1, + "kAllowLazy": 1, + "ByteArray*": 1, + "buffer_cursor_": 5, + "ENV_H": 3, + "Phantom": 1, + "LineDelete": 1, + "*__pyx_n_s__obj": 1, + "modname": 1, + "NOT": 1, + "returned.": 4, + "qsb.": 1, + "scik": 1, + "uint8*": 4, + "seed": 2, + "SetCompressedPubKey": 4, + "GDSDBREADER_H": 3, + "tex.normalized": 1, + "__pyx_v_data_ptr": 2, + "field": 3, + "PyBytes_Repr": 1, + "&": 148, + "SCI_HOMEDISPLAYEXTEND": 1, + "kUndefinedValue": 1, + "__pyx_v_f": 31, + "PyErr_Occurred": 2, + "__pyx_k__g": 2, + "": 1, + "blockDim.x": 2, + "headers": 3, + "__pyx_k_12": 1, + "__pyx_t_5numpy_clongdouble_t": 1, + "__pyx_t_5numpy_int32_t": 1, + "cout": 1, + "digits": 3, + "Zoom": 2, + "__Pyx_TypeCheck": 1, + "SCI_PARADOWNEXTEND": 1, + "QsciScintilla": 7, + "__pyx_v_t": 29, + "*__pyx_n_s__fields": 1, + "PyBytes_FromFormat": 1, + "one_char_tokens": 2, + "LAZY_MUTEX_INITIALIZER": 1, + "fall": 2, + "SCI_WORDPARTLEFT": 1, + "delete": 6, + "__pyx_t_5numpy_int_t": 1, + "<<": 19, + "is_next_literal_ascii": 1, + "kPageSizeBits": 1, + "V8": 21, + "__pyx_v_child": 8, + "ASSIGN_BIT_OR": 1, + "RPAREN": 2, + "Metadata": 3, + "invalid": 5, + "byteorder": 4, + "persons": 4, + "enabled": 1, + "painter": 4, + "NPY_CDOUBLE": 1, + "AddChar": 2, + "label": 1, + "*__pyx_v_a": 5, + "__pyx_k__obj": 1, + "part.": 4, + "BN_copy": 1, + "SCI_LINEUPEXTEND": 1, + "Convert": 2, + "goto": 156, + "*__pyx_f_5numpy_get_array_base": 1, + "ALT": 1, + "uc16*": 3, + "io": 4, + "NDEBUG": 4, + "Cancel": 2, + "kMaxGrowth": 2, + "word": 6, + "magnification": 3, + "PySequence_Contains": 1, + "recid": 3, + "x36.": 1, + "Backtab": 1, + "hint": 3, + "": 1, + "current_.literal_chars": 11, + "*__pyx_k_tuple_16": 1, + "__pyx_k_2": 1, + "*e": 1, + "BN_mod_inverse": 1, + "HomeDisplay": 1, + "__Pyx_PyInt_AsSignedChar": 1, + "RuntimeProfiler": 1, + "__Pyx_XGIVEREF": 7, + "imag": 2, + "ExpandBuffer": 2, + "jsFromScriptFile": 1, + "footers": 2, + "Delete": 10, + "buf": 1, + "*__pyx_kp_s_1": 1, + "PyImport_ImportModule": 1, + "tp_name": 4, + "_MSC_VER": 3, + "SCI_LINEENDRECTEXTEND": 1, + "*__Pyx_PyInt_to_py_Py_intptr_t": 1, + "m_map": 2, + "xFFFF": 2, + "isolate": 15, + "*s": 1, + "func": 3, + "octal_pos_": 5, + "CallOnce": 1, + "": 1, + "runtime_error": 2, + "other": 7, + "envp": 4, + "__Pyx_GetAttrString": 2, + "PyLongObject": 2, + "": 1, + "WordRightEnd": 1, + "size_t": 5, + "*value": 2, + "kGrowthFactory": 2, + "executed": 1, + "*__pyx_n_s__ValueError": 1, + "__pyx_k__B": 2, + "l": 1, + "combination": 1, + "__pyx_k__buf": 1, + "PyLong_AsVoidPtr": 1, + "WordRight": 1, + "Scan": 5, + "SCI_ZOOMOUT": 1, + "generated_factory": 1, + "static": 260, + "buffer_end_": 3, + "seed_random": 2, + "Toggle": 1, + "*__pyx_t_5": 1, + "__pyx_t_float_complex_from_parts": 1, + "PySet_Type": 2, + "newline.": 1, + "DeleteLineLeft": 1, + "QTemporaryFile": 1, + "ScrollToStart": 1, + "threadIdx.x": 1, + "": 1, + "NPY_F_CONTIGUOUS": 1, + "PyTypeObject": 2, + "cudaMallocArray": 1, + "Person_offsets_": 2, + "z": 46, + "new": 9, + "harmony_modules_": 4, + "PySequence_SetSlice": 2, + "MergeFrom": 9, + "handle_uninterpreted": 2, + "IsIdentifierStart": 2, + "move": 2, + "assign": 3, + "fCompressedPubKey": 5, + "SetPrivKey": 1, + "descriptor": 2, + "signed": 5, + "CKey": 26, + "EC_GROUP_get_curve_GFp": 1, + "argument": 1, + "LOperand": 2, + "break": 34, + "HomeWrapExtend": 1, + "LiteralScope": 4, + "printRange": 2, + "PyVarObject_HEAD_INIT": 1, + "normalize": 1, + "": 2, + "StaticDescriptorInitializer_protocol_2dbuffer_2eproto": 2, + "Scroll": 5, + "utf8_decoder_": 2, + "Python.": 1, + "__Pyx_RefNannyImportAPI": 1, + "PYREX_WITHOUT_ASSERTIONS": 1, + "classed": 1, + "EQ_STRICT": 1, + "Serializer": 1, + "end_pos": 4, + "+": 55, + "__pyx_k__l": 2, + "*modname": 1, + "FLAG_force_marking_deque_overflows": 1, + "random_bits": 2, + "<1024>": 2, + "metadata.reflection": 1, + "FLAG_random_seed": 2, + "#else": 24, + "GetTagWireType": 2, + "valid": 2, + "By": 1, + "SCI_HOMEEXTEND": 1, + "PyType_Modified": 1, + "VerifyCompact": 2, + "": 1, + "__Pyx_PyInt_AsSignedInt": 1, + "__cdecl": 2, + "ram": 1, + "": 2, + "xx": 1, + "vchSecret": 1, + "ScanNumber": 3, + "SCI_LINEDELETE": 1, + "PySequence_GetSlice": 2, + "PyBytes_FromStringAndSize": 1, + "exceptionHandler": 2, + "odata": 2, + "LineDownRectExtend": 1, + "": 1, + "__pyx_k_tuple_16": 1, + "__pyx_k__format": 1, + "lines": 3, + "V8_V8_H_": 3, + "NID_secp256k1": 2, + "FFFF": 1, + "QT_VERSION": 1, + "if": 296, + "QRect": 2, + "BN_bin2bn": 3, + "__pyx_t_5numpy_cfloat_t": 1, + "vchSig.size": 2, + "VCHomeRectExtend": 1, + "*__pyx_v_f": 2, + "b.vchPubKey": 3, + "self": 5, + "__Pyx_PyInt_AsUnsignedShort": 1, + "BN_CTX": 2, + "scanner_contants": 1, + "SERIALIZE": 2, + "__pyx_L8": 2, + "it": 2, + "provided": 1, + "key.GetPubKey": 1, + "__pyx_t_1": 154, + "__pyx_k__Zd": 2, + "__stdcall": 2, + "rectangular": 9, + "PyString_FromFormat": 1, + "*this": 1, + "level.": 2, + "in.": 1, + "*__pyx_v_t": 1, + "__pyx_k__ones": 1, + "Select": 33, + "IsIdentifierPart": 1, + "__pyx_k__wrapper_inner": 1, + "__pyx_k_7": 1, + "entropy_mutex.Pointer": 1, + "m_tempHarness": 1, + "ASSIGN_SAR": 1, + "PyLong_FromString": 1, + "PyInt_Check": 1, + "PyFrozenSet_Check": 1, + "defined": 21, + "Descriptor*": 3, + "ASSIGN": 1, + "PyInt_FromLong": 13, + "PyCFunction": 1, + "*__pyx_f_5numpy_PyArray_MultiIterNew4": 2, + "LazyMutex": 1, + "input": 6, + "alternateKey": 3, + "__pyx_k__itemsize": 1, + "__Pyx_MODULE_NAME": 1, + "c": 52, + "uc32": 19, + "sig": 11, + "signifies": 2, + "__pyx_n_s__work_module": 3, + "add": 3, + ".data": 3, + "public": 27, + "kMaxAsciiCharCodeU": 1, + "__pyx_ptype_5numpy_dtype": 1, + "PyInt_AsLong": 2, + "SCI_LINECUT": 1, + "position_": 17, + "indexOfEquals": 5, + "*x": 1, + "INTERNAL_SUPPRESS_PROTOBUF_FIELD_DEPRECATION": 1, + "msglen": 2, + "IsCarriageReturn": 2, + "SCI_PAGEUPRECTEXTEND": 1, + "octal_position": 1, + "ascii_literal": 3, + "Valid": 1, + "*__pyx_n_s__work_module": 1, + "InspectorBackendStub": 1, + "are": 3, + "space": 2, + "__Pyx_PyBytes_AsUString": 1, + "WrapWord.": 1, + "protobuf_AddDesc_protocol_2dbuffer_2eproto": 6, + "DeleteLineRight": 1, + "Key_Delete": 1, + "STATIC_BUILD": 1, + "NPY_ULONGLONG": 1, + "__pyx_L1_error": 88, + "PyLong_FromSize_t": 1, + "cudaReadModeElementType": 1, + "SCI_SCROLLTOEND": 1, + "ScanRegExpPattern": 1, + "PyDict_Type": 1, + "SerializeWithCachedSizes": 2, + "Qt": 1, + "pow": 2, + "Key_End": 1, + "ADD": 1, + "editor": 1, + "EC_GROUP_get_order": 1, + "kUC16Size": 2, + "": 1, + "": 1, + "PyArray_CHKFLAGS": 2, + "PyString_Repr": 1, + "MUL": 1, + "SetPubKey": 1, + "LineCopy": 1, + "messageHandler": 2, + "SetHarmonyScoping": 1, + "*__Pyx_Import": 1, + "*__Pyx_GetName": 1, + "__pyx_t_5numpy_uintp_t": 1, + "__pyx_t_5numpy_uint8_t": 1, + "LBRACK": 2, + "__Pyx_BUILTIN_MODULE_NAME": 2, + "*__pyx_v_dims": 2, + "__pyx_k__shape": 1, + "*eor": 1, + "must": 1, + "__pyx_v_b": 4, + "__pyx_k__type_num": 1, + "LineUpExtend": 1, + "*__pyx_n_s__wrapper_inner": 1, + "*__pyx_n_s____test__": 1, + "ASSIGN_MOD": 1, + "Py_TPFLAGS_CHECKTYPES": 1, + "d_data": 1, + "Constructs": 1, + "blockIdx.x*blockDim.x": 1, + "dependent": 1, + "output": 5, + "mutable_name": 3, + "LineDownExtend": 1, + "father": 1, + "GetDataStartAddress": 1, + "New": 4, + "EQ": 1, + "*__pyx_t_11": 1, + "__pyx_k__q": 2, + "int": 148, + "app.setOrganizationDomain": 1, + "MB": 1, + "ExceptionHandler": 1, + "*__pyx_v_data_ptr": 2, + "b.fSet": 2, + "SCI_STUTTEREDPAGEDOWNEXTEND": 1, + "__pyx_builtin_ValueError": 5, + "PY_SSIZE_T_MIN": 1, + "*__pyx_filename": 1, + "LineEndDisplay": 1, + "**envp": 1, + "PyErr_WarnEx": 1, + "nextItemsIndices": 1, + "PyErr_Format": 4, + "xxx": 1, + "width*height*sizeof": 1, + "myclass.nextItemsIndices": 2, + "__pyx_v_num_y": 2, + "__pyx_v_answer_ptr": 2, + "vertically": 1, + "Person_reflection_": 4, + "float*": 1, + "SCI_WORDRIGHT": 1, + "__Pyx_Raise": 8, + "#error": 9, + "EC_KEY_copy": 1, + "EC_KEY_set_private_key": 1, + "memset": 2, + "__pyx_t_5numpy_float64_t": 1, + "SCI_DELLINELEFT": 1, + "__Pyx_c_difff": 2, + "L": 1, + "ECDSA_SIG_recover_key_GFp": 3, + "SerializeUnknownFields": 1, + "in_character_class": 2, + "__pyx_filename": 79, + "__Pyx_PyInt_AsSignedLong": 1, + "*rr": 1, + "||": 17, + "SelectAll": 1, + "PyArray_MultiIterNew": 5, + "__Pyx_c_neg": 2, + "**value": 1, + "PyObject_Call": 11, + "QApplication": 1, + "vchPubKey": 6, + "font": 2, + "V8_DECLARE_ONCE": 1, + "kNameFieldNumber": 2, + "cudaBindTextureToArray": 1, + "__pyx_t_6": 40, + "SCI_PARAUPEXTEND": 1, + "__Pyx_PyInt_AsLongLong": 1, + "unibrow": 11, + "*ecsig": 1, + "__pyx_L11": 7, + "byte": 1, + "SCI_VCHOMERECTEXTEND": 1, + "//end": 1, + "length": 8, + "set_allocated_name": 2, + "ch": 5, + "WireFormat": 10, + "__pyx_v_self": 16, + "*o": 1, + "npy_ulonglong": 1, + "uchar": 4, + "tell": 1, + "Please": 3, + "__pyx_t_5numpy_cdouble_t": 1, + "is_ascii_": 10, + "read": 1, + "__pyx_k____main__": 1, + "*__pyx_f_5numpy__util_dtypestring": 2, + "*suboffsets": 1, + "VerifyUTF8String": 3, + "npy_float32": 1, + "": 1, + "Min": 1, + "__Pyx_DOCSTR": 3, + "clear_name": 2, + "complete_": 4, + "Bar": 2, + "width": 5, + "*__pyx_n_s__do_awesome_work": 1, + "PyLong_Check": 1, + "PyInt_Type": 1, + "double": 23, + "offsetof": 2, + "*__pyx_t_1": 8, + "PyDict_CheckExact": 1, + "text": 5, + "name": 21, + "SCI_WORDLEFT": 1, + "BN_CTX_get": 8, + "any": 5, + "__pyx_k__L": 2, + "__pyx_t_5numpy_uint32_t": 1, + "v": 3, + "LineCut": 1, + "entropy_mutex": 1, + "literal_contains_escapes": 1, + "__pyx_f_5numpy__util_dtypestring": 1, + "__pyx_k__np": 1, + "cpowf": 1, + "WriteString": 1, + "SCI_STUTTEREDPAGEUPEXTEND": 1, + "setFullPage": 1, + "Insert": 2, + "hash": 20, + "__Pyx_PyNumber_Int": 1, + "ASSIGN_MUL": 1, + "This": 6, + "source_": 7, + "use_crankshaft_": 6, + "Format": 1, + "npy_longlong": 1, + "PyMethod_New": 2, + "of": 48, + "*__pyx_n_s____main__": 1, + "Py_True": 2, + "PyInt_AS_LONG": 1, + "instance.": 2, + "*msglen": 1, + "InternalAddGeneratedFile": 1, + "CYTHON_INLINE": 68, + "PyFrozenSet_Type": 1, + "SCI_LOWERCASE": 1, + "Add": 1, + "release_name": 2, + "kEndOfInput": 2, + "next_literal_utf16_string": 1, + "nV": 6, + "QsciCommand": 7, + "StaticResource": 2, + "EC_KEY_regenerate_key": 1, + "SelectionUpperCase": 1, + "__pyx_v_copy_shape": 5, + "__builtin_expect": 2, + "is_str": 1, + "LineEndWrapExtend": 1, + "GOOGLE_SAFE_CONCURRENT_WRITES_END": 2, + "v8": 9, + "*__pyx_n_s__format": 1, + "IsWhiteSpace": 2, + "NilValue": 1, + "from._has_bits_": 1, + "__pyx_k__h": 2, + "__pyx_lineno": 80, + "blockDim.y": 2, + "DeleteBackNotLine": 1, + "Py_EQ": 6, + "it.": 2, + "": 1, + "PyBytes_FromString": 2, + "virtual": 10, + "RBRACK": 2, + "SCI_PAGEDOWNEXTEND": 1, + "V8_SCANNER_H_": 3, + "should": 1, + "mutable_unknown_fields": 4, + "*__pyx_k_tuple_8": 1, + "__Pyx_c_abs": 3, + "PyLong_AsSsize_t": 1, + "kIsIdentifierStart.get": 1, + "METH_COEXIST": 1, + "centre": 1, + "ScanHtmlComment": 3, + "EC_KEY_set_conv_form": 1, + "stream": 5, + "Key_Right": 1, + "readResourceFileUtf8": 1, + "message": 2, + "jsFilePath": 5, + "NE_STRICT": 1, + "have": 1, + "scicmd": 2, + "PyArrayObject": 19, + "scialtkey": 1, + "ScopedLock": 1, + "findScript": 1, + "PyBytes_Check": 1, + "WIN32": 2, + "PageDown": 1, + "ASSIGN_BIT_AND": 1, + "disk": 1, + "DEC": 1, + "obj": 42, + "literal": 2, + "page": 4, + "C": 1, + "EC_GROUP_get_degree": 1, + "EC_KEY_get0_group": 2, + "libraryPath": 5, + "brief": 2, + "*__pyx_v_b": 4, + "__pyx_t_5numpy_longdouble_t": 1, + "Scintilla": 2, + "SelectionCut": 1, + "__Pyx_PyInt_AsShort": 1, + "represents": 1, + "Used": 1, + "__pyx_k__ValueError": 1, + "__pyx_k____test__": 1, + "Message": 7, + "IdleNotification": 3, + "do": 5, + "Py_ssize_t": 17, + "*zero": 1, + "setKey": 3, + "We": 1, + "Q": 5, + "necessary": 1, + "index": 2, + "ScanIdentifierOrKeyword": 2, + "": 19, + "try": 1, + "InternalRegisterGeneratedMessage": 1, + "": 1, + "__pyx_k_tuple_6": 1, + "__pyx_k_3": 1, + "uc16": 5, + "__Pyx_c_sum": 2, + "Keys": 1, + "from.has_name": 1, + "version": 4, + "__cplusplus": 10, + "PyBytes_ConcatAndDel": 1, + "y*width": 1, + "secure_allocator": 2, + "*__pyx_kp_s_2": 1, + "UseCrankshaft": 1, + "ByteSize": 2, + "start_position": 2, + "GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET": 3, + "LineDuplicate": 1, + "ASSERT_NOT_NULL": 9, + "case.": 2, + "line.": 33, + "_Complex_I": 3, + "SetEntropySource": 2, + "quint32": 3, + "BN_CTX_end": 1, + "*pub_key": 1, + "SetHarmonyModules": 1, + "GetPubKey": 5, + "Person_descriptor_": 6, + "SCI_BACKTAB": 1, + "check": 2, + "PyString_CheckExact": 2, + "": 1, + "const": 166, + "BN_zero": 1, + "type_num": 2, + "cabs": 1, + "m": 4, + "&&": 24, + "needed": 1, + "eor": 3, + "EntropySource": 3, + "src": 2, + "app.setWindowIcon": 1, + "*__pyx_kp_u_9": 1, + "Key_Escape": 1, + "last": 4, + "literal_buffer2_": 2, + "envvar.mid": 1, + "WriteStringToArray": 1, + "SCI_CUT": 1, + "EC_KEY*": 1, + "Q_OS_LINUX": 2, + "SCI_CLEAR": 1, + "char": 122, + "CurrentPerIsolateThreadData": 4, + "double_int_union": 2, + "inner_work_1d": 2, + "Key_PageDown": 1, + "pos": 12, + "threadIdx.y": 1, + "Key_Tab": 1, + "__pyx_k__Q": 2, + "__Pyx_Print": 1, + "likely": 15, + "random_seed": 1, + "is_ascii": 3, + "Max": 1, + "BN_mod_mul": 2, + "wmode.": 1, + "category": 2, + "{": 553, + "DeleteBack": 1, + "__Pyx_GetName": 4, + "ILLEGAL": 120, + "format": 6, + "*__pyx_self": 2, + "PySequence_DelSlice": 2, + "SCI_HOME": 1, + "WIRETYPE_LENGTH_DELIMITED": 1, + "tex.filterMode": 1, + "__pyx_n_s__ones": 1, + "Py_PYTHON_H": 1, + "QSCINTILLA_EXPORT": 2, + "by": 5, + "__Pyx_PyInt_AsLongDouble": 1, + "__Pyx_c_diff": 2, + ".imag": 3, + "fj": 1, + "": 1, + "fCompr": 3, + "mode.": 1, + "fSet": 7, + "ok": 3, + "__Pyx_PyInt_AsSignedShort": 1, + "klass": 1, + "PyLong_FromLong": 1, + "sure": 1, + "customised": 2, + "ASSERT": 17, + "kStrictEquality": 1, + "PyBUF_ND": 2, + "env_instance": 3, + "__pyx_m": 4, + "google": 72, + "ECDSA_SIG": 3, + "location.beg_pos": 1, + "PyNumber_Int": 1, + "__pyx_builtin_RuntimeError": 2, + "PyObject_RichCompare": 8, + "*unused": 2, + "both": 1, + "relative": 1, + "StutteredPageDown": 1, + "kNoOctalLocation": 1, + "__Pyx_DECREF": 66, + "npy_float64": 1, + "npy_int16": 1, + "Py_TPFLAGS_HAVE_NEWBUFFER": 1, + "pagenr": 2, + "parse": 3, + "PyDataType_HASFIELDS": 2, + "__pyx_k__descr": 1, + "octal": 1, + "shouldn": 1, + "backing_store_": 7, + "eh": 1, + "wrap": 4, + "AddCallCompletedCallback": 2, + "": 1, + "buffered_chars": 2, + "qInstallMsgHandler": 1, + "key.SetCompactSignature": 1, + "list": 2, + "WHITESPACE": 6, + "SCI_CHARLEFTEXTEND": 1, + "__Pyx_GIVEREF": 10, + "__Pyx_StringTabEntry": 1, + "EC_POINT_new": 4, + "your": 3, + "MOD": 1, + "uint32_t": 8, + "document": 16, + "PostSetUp": 1, + "new_store.start": 3, + "detect": 1, + "size": 9, + "tag": 6, + "HomeRectExtend": 1, + "PageDownRectExtend": 1, + "LineUpRectExtend": 1, + "PyArray_SimpleNewFromData": 2, + "__inline": 1, + "PyLong_FromUnicode": 1, + "wmode": 1, + "SCI_STUTTEREDPAGEDOWN": 1, + "*O": 1, + "*dict": 1, + "*type": 3, + "PyBytes_AsString": 2, + "": 1, + "Q_OBJECT": 1, + "next_literal_ascii_string": 1, + "CScriptID": 3, + "npy_cfloat": 1, + "PyString_Check": 2, + "tex.addressMode": 2, + "consume": 2, + "code_unit": 6, + "showUsage": 1, + "unsigned": 22, + "__Pyx_PrintOne": 4, + "PyUnicodeObject": 1, + "SCI_LINEDOWN": 1, + "*targetFrame": 4, + "PySet_CheckExact": 2, + "double_value": 1, + "VCHomeWrap": 1, + "whole": 2, + "a.vchPubKey": 3, + "__pyx_t_5numpy_uint_t": 1, + "ScanEscape": 2, + "nBitsR": 3, + "PyIndex_Check": 1, + "left.": 2, + "__pyx_t_2": 120, + "PyErr_SetString": 4, + "extend": 2, + "uint32": 2, + "calling": 1, + "#ifdef": 16, + "qUncompress": 2, + "name_": 30, + "startingScript": 2, + "Tab": 1, + "__pyx_v_ndim": 6, + "__Pyx_c_conj": 3, + "npy_int8": 1, + "page.": 13, + "*Env": 1, + "SetReturnAddressLocationResolver": 3, + "PyTuple_SET_ITEM": 4, + "m_tempWrapper": 1, + "CTRL": 1, + "FLAG_use_idle_notification": 1, + "selected": 2, + "__pyx_f_5numpy_set_array_base": 1, + "__Pyx_RaiseNeedMoreValuesError": 1, + "__pyx_t_5numpy_double_t": 1, + "inline": 39, + "*__pyx_f_5numpy_PyArray_MultiIterNew5": 2, + "error.": 1, + "Raw": 1, + "SCI_WORDLEFTENDEXTEND": 1, + "LineEndWrap": 1, + "d": 8, + "case": 33, + "friendly": 2, + "setMagnification": 2, + "PyLong_AsLong": 1, + "SCI_DOCUMENTENDEXTEND": 1, + "next": 6, + "METH_NOARGS": 1, + "*__pyx_n_s__np": 1, + "__pyx_k__do_awesome_work": 1, + "__Pyx_ExportFunction": 1, + "defines": 1, + "__pyx_v_info": 33, + "__pyx_k__H": 2, + "__Pyx_PyInt_AsSignedLongLong": 1, + "r": 36, + "already_here": 3, + "Clear": 5, + "altkey": 3, + "NPY_LONGLONG": 1, + "PY_FORMAT_SIZE_T": 1, + "__pyx_v_little_endian": 8, + "__pyx_mdef_13wrapper_inner_pure_py_test": 1, + "Swap": 2, + "ScanHexNumber": 2, + "Return": 3, + "__inline__": 1, + "SeekForward": 4, + "": 1, + "clear_has_name": 5, + "ob": 6, + "GOOGLE3": 2, + "Reset": 5, + "__Pyx_PyNumber_Divide": 2, + "PyObject_TypeCheck": 3, + "number": 3, + "injectJsInFrame": 2, + "": 2, + "**": 2, + "PageUp": 1, + "__pyx_v_descr": 10, + "PY_VERSION_HEX": 9, + "Key_Down": 1, + "QDataStream": 2, + "SCI_DELETEBACKNOTLINE": 1, + "WordRightExtend": 1, + "from.name": 1, + "GetMetadata": 2, + "true.": 1, + ".empty": 3, + "PyLong_FromSsize_t": 1, + "kMinConversionSlack": 1, + "op": 6, + "": 1, + "NE": 1, + "generated": 2, + "__pyx_v_c": 3, + "PyArray_ISWRITEABLE": 1, + "__pyx_k__d": 2, + "quint64": 1, + "an": 3, + "": 1, + "GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN": 2, + "sa": 8, + "__pyx_r": 39, + "npy_intp": 10, + "myclass.data": 4, + "": 1, + "Random": 3, + "minidump_id": 1, + "__pyx_v_typenum": 6, + "*__pyx_k_tuple_4": 1, + "*__pyx_empty_bytes": 1, + "because": 2, + "SCI_DOCUMENTSTARTEXTEND": 1, + "bool": 99, + "decompressed": 1, + "EC_POINT_mul": 3, + "*instance": 1, + "*__pyx_f": 1, + "__Pyx_NAMESTR": 3, + "cudaMemcpyHostToDevice": 1, + "LEVEL_THREE": 1, + "NewCapacity": 3, + "1": 2, + "WordPartRightExtend": 1, + "literal_utf16_string": 1, + "QsciPrinter": 9, + "PyMethodDef": 1, + "NPY_DOUBLE": 3, + "formfeed.": 1, + "false": 43, + "wrong": 1, + "lock": 1, + "*shape": 1, + "POINT_CONVERSION_COMPRESSED": 1, + "so": 1, + "dump_path": 1, + "std": 49, + "Hash160": 1, + "Extend": 33, + "ExternalReference": 1, + "*desc": 1, + "__Pyx_PyInt_AsUnsignedLongLong": 1, + "PyBytes_Size": 1, + "unicode_cache": 3, + "LineEnd": 1, + "LEVEL_ONE": 1, + "call_completed_callbacks_": 16, + "INLINE": 2, + "Py_LT": 2, + "__GNUC__": 5, + "PyBaseString_Type": 1, + "location": 4, + "*__pyx_n_s__suboffsets": 1, + "__Pyx_c_quot": 2, + "__Pyx_c_conjf": 3, + "__GNUC_MINOR__": 1, + "IsGlobalContext": 1, + "SCI_EDITTOGGLEOVERTYPE": 1, + "app": 1, + "overflow": 1, + "READWRITE": 1, + "SCI_HOMERECTEXTEND": 1, + "OnShutdown": 1, + "asVariantMap": 2, + "ReadTag": 1, + "str": 2, + "__Pyx_XGOTREF": 1, + "DescriptorPool": 3, + "SCI_WORDRIGHTENDEXTEND": 1, + "dynamic_cast_if_available": 1, + "Destroys": 1, + "capacity": 3, + "__pyx_L0": 24, + "__Pyx_SET_CREAL": 2, + "__PYX_HAVE_API__wrapper_inner": 1, + "the": 178, + "LineScrollDown": 1, + "keyRec": 5, + "GOOGLE_PROTOBUF_VERSION": 1, + "cabsf": 1, + "kInitialCapacity": 2, + "Move": 26, + "__fastcall": 2, + "": 1, + "ob_size": 1, + "StutteredPageUp": 1, + "Key_Left": 1, + "vchSig.resize": 2, + "GlobalSetUp": 1, + "*__pyx_k_tuple_13": 1, + "*__pyx_n_s__pure_py_test": 1, + "PyInt_FromUnicode": 1, + "backing_store_.Dispose": 3, + "RegisteredExtension": 1, + "harmony_scoping_": 4, + "platform": 1, + "QSCICOMMAND_H": 2, + "ECDSA_do_sign": 1, + "Utf16CharacterStream*": 3, + "literal_ascii_string": 1, + "Remove": 1, + "PyNumber_Remainder": 1, + "__pyx_t_7": 9, + "__pyx_t_5numpy_uint64_t": 1, + "__Pyx_PyInt_FromSize_t": 1, + "__Pyx_SetAttrString": 2, + "*name_": 1, + "VerticalCentreCaret": 1, + "char*": 14, + "[": 204, + "commands": 1, + "may": 2, + "Cut": 2, + "SharedDtor": 3, + "qk": 1, + "__pyx_L12": 2, + "__Pyx_PyBool_FromLong": 1, + "GetTagFieldNumber": 1, + "SCI_HOMEWRAP": 1, + "ahead": 1, + "*p": 1, + "binding": 3, + "methods": 1, + "ZoomIn": 1, + "visible": 6, + "has_been_set_up_": 4, + "CPubKey": 11, + "npy_long": 1, + "PyUnicode_CheckExact": 1, + "cu_array": 4, + "envvar.left": 1, + "CYTHON_UNUSED": 7, + "PyString_AsString": 1, + "i": 47, + "*__pyx_kp_u_5": 1, + "Py_XDECREF": 3, + "layout": 1, + "int32_t": 1, + "kIsLineTerminator.get": 1, + "instance": 4, + "next_.location": 1, + "reserve": 1, + "__Pyx_SET_CIMAG": 2, + "": 1, + "SCI_WORDRIGHTEXTEND": 1, + "*__pyx_t_2": 4, + "__Pyx_CREAL": 4, + "protoc": 2, + "__Pyx_AddTraceback": 7, + "Py_TPFLAGS_HAVE_INDEX": 1, + "insert/overtype.": 1, + "please": 1, + "Home": 1, + "GOOGLE_PROTOBUF_MIN_PROTOC_VERSION": 1, + "PyExc_SystemError": 3, + "w": 1, + "Key_PageUp": 1, + "SerializeWithCachedSizesToArray": 2, + "*__pyx_v_answer_ptr": 2, + "": 1, + "Verify": 2, + "ASSIGN_ADD": 1, + "__pyx_k__suboffsets": 1, + "Key_Insert": 1, + "*strides": 1, + "Methods": 1, + "__Pyx_RefNanny": 6, + "": 1, + "PyObject_GetAttrString": 3, + "LineEndDisplayExtend": 1 + }, + "Julia": { + "Wiener*UpperTriangle": 1, + "Wiener": 1, + "i": 5, + "by": 2, + "Test": 1, + "unoptimised": 1, + "correlated": 1, + "Number": 2, + "#STOCKCORR": 1, + "simulations": 1, + "Asset": 2, + "-": 11, + "Information": 1, + "original": 1, + "Correlation": 1, + "[": 20, + "n": 4, + "free": 1, + "Geometric": 1, + "days": 3, + "asset": 1, + "Dividend": 1, + "Vol": 5, + "year": 1, + "stock": 1, + "paths": 1, + "stockcorr": 1, + "Corr": 2, + "to": 1, + "return": 1, + "randn": 1, + "Motion": 1, + "B": 1, + "SimulPriceB": 5, + "of": 6, + "Volatility": 1, + "storages": 1, + "*dt": 2, + "stocks": 1, + "Time": 1, + "two": 2, + "from": 1, + "]": 20, + "/2": 2, + "CorrWiener": 1, + "Brownian": 1, + "Issue": 1, + "simulates": 1, + "Initial": 1, + "*sqrt": 2, + "prices": 1, + "The": 1, + "Define": 1, + "Market": 1, + "*exp": 2, + "years": 1, + "simulate": 1, + "Prices": 1, + ")": 13, + "Price": 2, + "*CorrWiener": 2, + "j": 7, + "#445": 1, + "rate": 1, + "the": 2, + "code": 1, + "##": 5, + "r": 3, + "A": 1, + "information": 1, + "Correlated": 1, + "T": 5, + "SimulPriceA": 5, + "for": 2, + "chol": 1, + "that": 1, + "#": 11, + "+": 2, + "decomposition": 1, + "CurrentPrice": 3, + "assets": 1, + "case": 1, + "step": 1, + "end": 3, + "UpperTriangle": 2, + "Generating": 1, + "Matrix": 2, + "function": 1, + "Risk": 1, + "Cholesky": 1, + "/250": 1, + "zeros": 2, + "Simulated": 2, + "(": 13, + ";": 1, + "dt": 3, + "Div": 3 + }, + "ApacheConf": { + "dumpio_module": 2, + "#EnableMMAP": 2, + "#EnableSendfile": 2, + "HTTrack": 1, + "negotiation_module": 2, + "/usr/lib/apache2/modules/mod_ext_filter.so": 1, + "libexec/apache2/mod_include.so": 1, + "lib": 1, + "TRACE": 1, + "libexec/apache2/mod_authz_owner.so": 1, + "None": 8, + "OR": 14, + "#MaxRanges": 1, + "/usr/lib/apache2/modules/mod_cgid.so": 1, + "combinedio": 2, + "union": 1, + "map": 2, + "WebServer": 2, + "grab": 1, + "insert": 1, + "cgi_module": 2, + "RewriteRule": 1, + "/usr/lib/apache2/modules/mod_proxy_ajp.so": 1, + "/": 3, + "/usr/lib/apache2/modules/mod_mem_cache.so": 1, + "dav.conf": 2, + "allow": 10, + "warn": 2, + "text/plain": 2, + "mySQL": 1, + "htdocs": 1, + "-": 43, + "/usr/lib/apache2/modules/mod_authn_default.so": 1, + "ssl.conf": 2, + "auth_basic_module": 2, + "CGI": 1, + "script": 2, + "NC": 13, + "libexec/apache2/mod_info.so": 1, + "/usr/lib/apache2/modules/mod_unique_id.so": 1, + "DirectoryIndex": 2, + "/etc/apache2/mime.types": 1, + "/usr/lib/apache2/modules/mod_proxy_ftp.so": 1, + "mime_magic_module": 2, + "manual.conf": 2, + "var": 2, + "libexec/apache2/mod_proxy_connect.so": 1, + "/etc/apache2/magic": 1, + "libexec/apache2/mod_proxy_http.so": 1, + "you@example.com": 2, + "loader": 1, + ")": 17, + "env_module": 2, + "/usr/lib/apache2/modules/mod_suexec.so": 1, + "text/html": 2, + "Allow": 4, + "usr": 2, + "default.conf": 2, + "#Scriptsock": 2, + "cgi": 3, + "combined": 4, + "deflate_module": 2, + "libexec/apache2/mod_log_config.so": 1, + "Documents": 1, + "libwww": 1, + "}": 16, + "default": 1, + "php5_module": 1, + "libexec/apache2/mod_proxy.so": 1, + "wget": 2, + "/usr/lib/apache2/modules/mod_authz_owner.so": 1, + "": 1, + "libexec/apache2/mod_proxy_ajp.so": 1, + "/usr/lib/apache2/modules/mod_authn_alias.so": 1, + "%": 48, + "filter_module": 2, + "libexec/apache2/mod_env.so": 1, + "off": 5, + "<|>": 6, + "/usr/lib/apache2/modules/mod_autoindex.so": 1, + "/usr/lib/apache2/modules/mod_dav_lock.so": 1, + "": 2, + "/usr/lib/apache2/modules/mod_dir.so": 1, + "{": 16, + "#": 182, + "scan": 1, + "/usr/lib/apache2/modules/mod_cern_meta.so": 1, + "libexec/apache2/mod_dbd.so": 1, + "mem_cache_module": 2, + "info_module": 2, + "nikto": 1, + "charset_lite_module": 1, + "unique_id_module": 2, + "libexec/apache2/mod_negotiation.so": 1, + "/usr/lib/apache2/modules/mod_dbd.so": 1, + "Library": 2, + ".shtml": 4, + ".0": 2, + "cern_meta_module": 2, + "TraceEnable": 1, + "miner": 1, + "authz_owner_module": 2, + "ScriptAlias": 1, + "log_config_module": 3, + "": 17, + "libexec/apache2/mod_cache.so": 1, + "multilang": 2, + "mime_module": 4, + "libexec/apache2/mod_auth_basic.so": 1, + "libexec/apache2/mod_perl.so": 1, + "": 2, + "libexec/apache2/mod_actions.so": 1, + "update": 1, + "http": 2, + "/usr/lib/apache2/modules/mod_auth_basic.so": 1, + "authn_dbm_module": 2, + "libexec/apache2/mod_authz_groupfile.so": 1, + "extract": 1, + "#ErrorDocument": 8, + "actions_module": 2, + "/usr/lib/apache2/modules/mod_ident.so": 1, + "clshttp": 1, + "authz_default_module": 2, + ".*": 3, + "DefaultType": 2, + "libexec/apache2/mod_logio.so": 1, + "authn_file_module": 2, + "F": 1, + "deny": 10, + "libexec/apache2/mod_version.so": 1, + "asis_module": 2, + "errordoc.conf": 2, + "libexec/apache2/mod_ext_filter.so": 1, + "HEAD": 1, + "/usr/lib/apache2/modules/mod_disk_cache.so": 1, + "/usr/lib/apache2/modules/mod_ssl.so": 1, + "User": 2, + ".tgz": 6, + "libexec/apache2/mod_proxy_ftp.so": 1, + "email": 1, + "D": 6, + "//www.example.com/subscription_info.html": 2, + "userdir.conf": 2, + "libexec/apache2/libphp5.so": 1, + ".cgi": 2, + "/usr/lib/apache2/modules/mod_authn_dbm.so": 1, + "authz_user_module": 2, + "authnz_ldap_module": 1, + "Group": 2, + "HTTP_REFERER": 1, + "mpm_winnt_module": 1, + "/usr/lib/apache2/modules/mod_log_forensic.so": 1, + "ServerSignature": 1, + "/usr/lib/apache2/modules/mod_authnz_ldap.so": 1, + "libexec/apache2/mod_authz_host.so": 1, + "mpm_netware_module": 2, + "libexec/apache2/mod_reqtimeout.so": 1, + "Off": 1, + "libexec/apache2/mod_deflate.so": 1, + "/usr/lib/apache2/modules/mod_asis.so": 1, + "CustomLog": 2, + "libexec/apache2/mod_authn_file.so": 1, + "bin/": 2, + "authn_anon_module": 2, + "libexec/apache2/mod_vhost_alias.so": 1, + "RewriteCond": 15, + "i": 1, + "TypesConfig": 2, + "setenvif_module": 2, + "/usr/lib/apache2/modules/mod_ldap.so": 1, + "Hh": 1, + "injects": 1, + "dav_module": 2, + "libexec/apache2/mod_unique_id.so": 1, + "ErrorLog": 2, + "#AddOutputFilter": 2, + "/usr/lib/apache2/modules/mod_userdir.so": 1, + "<": 1, + "libexec/apache2/mod_speling.so": 1, + "": 6, + "#Listen": 2, + "": 1, + "mpm.conf": 2, + "ext_filter_module": 2, + "libexec/apache2/mod_dir.so": 1, + "/private/etc/apache2/magic": 1, + "/usr/lib/apache2/modules/mod_speling.so": 1, + "libexec/apache2/mod_dumpio.so": 1, + ".gz": 4, + "substitute_module": 1, + "/usr/lib/apache2/modules/mod_filter.so": 1, + "languages.conf": 2, + "MultiViews": 1, + "/cgi": 2, + "benchmark": 1, + "authn_default_module": 2, + "set": 1, + "QUERY_STRING": 5, + "libexec/apache2/mod_autoindex.so": 1, + "compress": 4, + "libexec/apache2/mod_authn_anon.so": 1, + "DocumentRoot": 2, + "namedfork": 1, + "libexec/apache2/mod_ident.so": 1, + "/usr/lib/apache2/modules/mod_charset_lite.so": 1, + "LogFormat": 6, + "/missing.html": 2, + "file_cache_module": 1, + "/usr/lib/apache2/modules/mod_usertrack.so": 1, + "info.conf": 2, + "/private/etc/apache2/extra/httpd": 11, + "/usr/lib/apache2/modules/mod_auth_digest.so": 1, + "/usr/lib/apache2/modules/mod_dumpio.so": 1, + "HTTP_USER_AGENT": 5, + "SSLRandomSeed": 4, + "ident_module": 2, + "a": 1, + "libexec/apache2/mod_authn_default.so": 1, + "ssl_module": 4, + "/usr/lib/apache2/modules/mod_setenvif.so": 1, + "_": 1, + "perl_module": 1, + "/usr/lib/apache2/modules/mod_authz_host.so": 1, + "/usr/lib/apache2/modules/mod_vhost_alias.so": 1, + "#Include": 17, + "hfs_apple_module": 1, + "daemon": 2, + "/usr/lib/apache2/modules/mod_dav.so": 1, + "libexec/apache2/mod_dav_fs.so": 1, + "]": 17, + "select": 1, + "common": 4, + "Order": 10, + "/usr/lib/apache2/modules/mod_mime.so": 1, + "libexec/apache2/mod_auth_digest.so": 1, + "Satisfy": 4, + "/usr/lib/apache2/modules/mod_actions.so": 1, + "authn_alias_module": 1, + "#CustomLog": 2, + "#MIMEMagicFile": 2, + "[": 17, + "/var/log/apache2/error_log": 1, + "libexec/apache2/mod_log_forensic.so": 1, + "": 17, + "authz_dbm_module": 2, + "site": 1, + "/etc/apache2/extra/httpd": 11, + "/var/run/apache2/cgisock": 1, + ".": 7, + "libexec/apache2/mod_alias.so": 1, + "/private/var/run/cgisock": 1, + "archiver": 1, + "ServerAdmin": 2, + "java": 1, + "DELETE": 1, + "libexec/apache2/mod_headers.so": 1, + "/usr/lib/apache2/modules/mod_headers.so": 1, + "Deny": 6, + "/usr/lib/apache2/modules/mod_version.so": 1, + "autoindex.conf": 2, + "ScriptAliasMatch": 1, + "Ss": 2, + "suexec_module": 1, + "ServerRoot": 2, + "/usr/lib/apache2/modules/mod_alias.so": 1, + "proxy_ftp_module": 2, + "declare": 1, + "Executables": 1, + "THE_REQUEST": 1, + "*": 1, + "builtin": 4, + "/usr/lib/apache2/modules/mod_mime_magic.so": 1, + "#Block": 1, + "dbd_module": 2, + "/private/etc/apache2/other/*.conf": 1, + "libexec/apache2/mod_cern_meta.so": 1, + "drop": 1, + "winhttp": 1, + "libexec/apache2/mod_dav.so": 1, + "unlimited": 1, + "(": 16, + "all": 10, + "auth_digest_module": 2, + "headers_module": 2, + "libexec/apache2/mod_authz_dbm.so": 1, + "libexec/apache2/mod_disk_cache.so": 1, + "#ServerName": 2, + "libexec/apache2/mod_userdir.so": 1, + "/usr/lib/apache2/modules/mod_status.so": 1, + "proxy_connect_module": 2, + "ldap_module": 1, + "/usr/lib/apache2/modules/mod_env.so": 1, + "libexec/apache2/mod_filter.so": 1, + "/usr/lib/apache2/modules/mod_proxy.so": 1, + "libexec/apache2/mod_mime_magic.so": 1, + "dav_lock_module": 1, + "|": 80, + "/usr/lib/apache2/modules/mod_proxy_connect.so": 1, + "/usr/lib/apache2/modules/mod_proxy_http.so": 1, + "Indexes": 2, + "/usr/lib/apache2/modules/mod_cache.so": 1, + "libexec/apache2/mod_status.so": 1, + "Tt": 1, + "authz_groupfile_module": 2, + ".1": 1, + "cast": 1, + "INCLUDES": 2, + "userdir_module": 2, + "share": 1, + "startup": 2, + "x": 4, + "./": 1, + "AddType": 4, + "z0": 1, + "/usr/lib/apache2/modules/mod_expires.so": 1, + ".Z": 4, + "libexec/apache2/mod_cgi.so": 1, + "#AddType": 4, + "include_module": 2, + "imagemap_module": 2, + "/usr/lib/apache2/modules/mod_file_cache.so": 1, + "log_forensic_module": 2, + "AllowOverride": 6, + "proxy_ajp_module": 2, + "localhost": 1, + "status_module": 2, + "/var/log/apache2/access_log": 2, + "REQUEST_URI": 1, + "/usr/lib/apache2/modules/mod_authz_user.so": 1, + "": 1, + "libexec/apache2/mod_substitute.so": 1, + "r": 1, + "apache2": 1, + "bin": 1, + "loopback": 1, + "proxy_http_module": 2, + "LogLevel": 2, + "/usr/lib/apache2/modules/mod_authz_default.so": 1, + "libexec/apache2/mod_mime.so": 1, + "E": 5, + "libexec/apache2/mod_authn_dbm.so": 1, + "speling_module": 2, + "perl": 1, + "cache_module": 2, + "libexec/apache2/mod_authn_dbd.so": 1, + "#AddHandler": 4, + "libexec/apache2/mod_usertrack.so": 1, + "Include": 6, + "rsrc": 1, + "/usr/lib/apache2/modules/mod_include.so": 1, + "proxy_scgi_module": 1, + "index.html": 2, + "/usr/lib/apache2/modules/mod_deflate.so": 1, + "/usr/lib/apache2/modules/mod_rewrite.so": 1, + "All": 4, + "LoadModule": 126, + "/usr/lib/apache2/modules/mod_imagemap.so": 1, + "C": 5, + "alias_module": 4, + "logio_module": 3, + "index.php": 1, + "libexec/apache2/mod_expires.so": 1, + "n": 1, + "FollowSymLinks": 4, + "www.example.com": 2, + "/usr/lib/apache2/modules/mod_authn_dbd.so": 1, + "gzip": 6, + "vhost_alias_module": 2, + "libexec/apache2/mod_proxy_scgi.so": 1, + "A": 6, + "authz_host_module": 2, + "connect": 2, + "ht": 1, + "/usr/lib/apache2/modules/mod_negotiation.so": 1, + "/usr/lib/apache2/modules/mod_authn_anon.so": 1, + "Listen": 2, + "libexec/apache2/mod_setenvif.so": 1, + "libexec/apache2/mod_hfs_apple.so": 1, + "HTTP_COOKIE": 1, + "libexec/apache2/mod_authz_user.so": 1, + "dav_fs_module": 2, + "reqtimeout_module": 1, + "_www": 2, + "curl": 2, + "cgid_module": 3, + "Options": 6, + "python": 1, + "REQUEST_METHOD": 1, + "libexec/apache2/mod_proxy_balancer.so": 1, + "libexec/apache2/mod_asis.so": 1, + "application/x": 6, + "libexec/apache2/mod_rewrite.so": 1, + "/usr/lib/apache2/modules/mod_info.so": 1, + "vhosts.conf": 2, + "/usr/lib/apache2/modules/mod_authn_file.so": 1, + ";": 2, + "type": 2, + "expires_module": 2, + "from": 10, + "#AddEncoding": 4, + "proxy_balancer_module": 2, + "harvest": 1, + "/usr/lib/apache2/modules/mod_authz_groupfile.so": 1, + "autoindex_module": 2, + "dir_module": 4, + "libexec/apache2/mod_authz_default.so": 1, + "": 1, + "/usr/lib/apache2/modules/mod_proxy_balancer.so": 1, + "TRACK": 1, + "authn_dbd_module": 2, + "rewrite_module": 2, + "/usr/lib/apache2/modules/mod_authz_dbm.so": 1, + "#LoadModule": 4, + "": 6, + "libexec/apache2/mod_mem_cache.so": 1, + "/usr/lib/apache2/modules/mod_dav_fs.so": 1, + "version_module": 2, + "libexec/apache2/mod_imagemap.so": 1, + "usertrack_module": 2, + "proxy_module": 2, + "webobjects": 1, + "disk_cache_module": 2, + "md5": 1, + "libexec/apache2/mod_ssl.so": 1, + "/private/etc/apache2/mime.types": 1, + "Dd": 1, + "/usr/lib/apache2/modules/mod_cgi.so": 1 + }, + "edn": { + "db.part/user": 17, + "data/source": 2, + "true": 3, + "db.type/double": 1, + "db.install/_attribute": 3, + "db/id": 22, + "#db/id": 22, + "db.part/tx": 2, + "}": 22, + "db.type/string": 2, + "]": 24, + "{": 22, + "[": 24, + "db/doc": 4, + "object/meanRadius": 18, + "db/index": 3, + "db/cardinality": 3, + "db.cardinality/one": 3, + "db/valueType": 3, + "object/name": 18, + "db/ident": 3, + "db.part/db": 6 + }, + "MoonScript": { + "look": 1, + "return": 11, + "cond": 11, + "#real_name": 1, + "build.declare": 1, + ")": 54, + "runs": 1, + "class": 4, + "a": 4, + "source_name": 3, + "thing": 4, + "node": 68, + "update": 1, + "if_cond": 4, + "call": 3, + "destructures": 5, + "__mode": 1, + "of": 1, + "@": 1, + "if_stm": 5, + "case_exps": 3, + "foreach": 1, + "index_name": 3, + "mutate": 1, + "smart_node": 7, + "clauses": 4, + "continue_name": 13, + "unless": 6, + "transformer": 3, + "colon_stub": 1, + "constructor": 7, + "or": 6, + "LocalName": 2, + "iter": 2, + "source": 7, + "@set": 1, + "util": 2, + "with_continue_listener": 4, + "new": 2, + "make": 1, + "last_exp_id": 3, + "else": 22, + "inner": 2, + "*find_assigns": 1, + "base_name": 4, + "@transform.statement": 2, + "while": 3, + "list": 6, + "+": 2, + "destructure.has_destructure": 2, + "don": 1, + "out_body": 1, + "convert_cond": 2, + "destructure.split_assign": 1, + "if": 43, + "convert": 1, + "op_final": 3, + "constructor.arrow": 1, + "find_assigns": 2, + "apply": 1, + "Statement": 2, + "*names": 3, + "ntype": 16, + "constructor_name": 2, + "#values": 1, + "#body": 1, + "apart": 1, + "is_singular": 2, + "node.body": 9, + "stub": 4, + "find": 2, + "#node": 3, + "body": 26, + "slice_var": 3, + "can_transform": 1, + "hoist_declarations": 1, + "statment": 1, + "real_names": 4, + "switch": 7, + "stms": 4, + "idx": 4, + "up": 1, + "state": 2, + "out": 9, + "and": 8, + "sure": 1, + "ifstm": 5, + "names": 16, + "object": 1, + "properties": 4, + "reversed": 2, + "next": 1, + "is_slice": 2, + "{": 135, + "-": 51, + "error": 4, + "is": 2, + "fail": 5, + "build.do": 2, + "build.fndef": 3, + "body_idx": 3, + "self.fn": 1, + "last": 6, + "build.group": 14, + "require": 5, + "exp": 17, + "key": 3, + "node.iter": 1, + "nil": 8, + "match": 1, + "unpack": 22, + "into": 1, + "..op": 1, + "elseif": 1, + "block": 2, + "construct_comprehension": 2, + "we": 1, + "@seen_nodes": 3, + "type": 5, + "scope_name": 5, + "varargs": 2, + "value_is_singular": 3, + "build": 7, + "[": 79, + "self": 2, + "scope": 4, + "stubs": 1, + "bubble": 1, + "table.remove": 2, + "not": 2, + "super": 1, + "arrow": 1, + "destructure": 1, + "comprehension": 1, + "cls": 5, + "base": 8, + "class_lookup": 3, + "value": 7, + "for": 20, + "assigns": 5, + "*stubs": 2, + "will": 1, + "bounds": 3, + "cond_exp": 5, + "named_assign": 2, + "}": 136, + "hoist": 1, + "@listen": 1, + "they": 1, + "local": 1, + "stm": 16, + "continue": 1, + "then": 2, + "statements": 4, + "false": 2, + "sindle": 1, + "insert": 18, + "bodies": 1, + "#list": 1, + "max_tmp_name": 5, + "plain": 1, + "when": 12, + "the": 4, + "expand_elseif_assign": 2, + "decorator": 1, + "...": 10, + "current_stms": 7, + "@transform": 2, + "tuple": 8, + "parent_val": 1, + "implicitly_return": 2, + "real": 1, + "cls_mt": 2, + "NameProxy": 14, + "exp_name": 3, + "expand": 1, + "dec": 6, + "#stms": 1, + "*item": 1, + "with": 3, + "split": 4, + "Run": 8, + "are": 1, + "slice": 7, + "parent_cls_name": 5, + "]": 79, + "included": 1, + "..": 1, + "Transformer": 2, + "arg_list": 1, + "item": 3, + "action": 4, + "@fn": 1, + "res": 3, + "parent_assign": 3, + "list_name": 6, + "*body": 2, + "root_stms": 1, + "build.chain": 7, + "do": 2, + "types.is_value": 1, + "t": 10, + "node.names": 3, + "ipairs": 3, + "dot": 1, + "fn": 3, + "i": 15, + "group": 1, + "assign": 9, + "real_name": 6, + "assign_name": 1, + "build.assign": 3, + "Value": 1, + "build.assign_one": 11, + "types": 2, + "break": 1, + "ret": 16, + "lines": 2, + "on": 1, + "data": 1, + "table": 2, + "proxy": 2, + "#ifstm": 1, + "parens": 2, + "self_name": 4, + "transform": 2, + "old": 1, + "case": 13, + "@transformers": 3, + "..t": 1, + "table.insert": 3, + "_": 10, + "cascading": 2, + "after": 1, + "transformed": 2, + "build.table": 2, + "*conds": 1, + "extract": 1, + "from": 4, + "bind": 1, + "export": 1, + "destructure.build_assign": 2, + "apply_to_last": 6, + "values": 10, + "in": 18, + "(": 54, + "all": 1, + "puke": 1, + "cls.name": 1, + "first": 3, + "true": 4, + "setmetatable": 1, + "mtype": 3, + "wrapped": 4, + "clause": 4, + "import": 5, + "name": 31, + "@put_name": 2, + "types.cascading": 1, + "args": 3, + "*properties": 1, + "@splice": 1, + "__call": 1, + "op": 2, + "expression/statement": 1, + "string": 1, + "cls_name": 1, + "decorated": 1, + "@send": 1, + "index": 2, + "conds": 3, + "*stm": 1 + }, + "Lua": { + "ipairs": 2, + "#self.bytebuffer": 1, + "HelloCounter": 4, + "To": 3, + "mechanisms": 1, + "whatever": 1, + "trim": 1, + "repeat": 1, + "counting": 1, + "inlet": 2, + "from": 3, + "whenever": 1, + "_": 2, + "insertpoint": 2, + "self.randrepeat": 5, + "self.filedata": 4, + "local": 11, + "in_8_list": 1, + "at": 2, + "on": 1, + "get": 1, + "route": 1, + "in_1_bang": 2, + "new": 3, + "modder": 1, + "all": 1, + "inlet.": 1, + "self.inlets": 3, + "second": 1, + "{": 16, + "an": 1, + "elseif": 2, + "range": 1, + "Object": 1, + "clear": 2, + "buflength": 1, + "+": 3, + "vidya": 1, + "in_2_float": 2, + "its": 2, + "point": 2, + "in_7_list": 1, + "in_5_float": 1, + "in_3_list": 1, + "randlimit": 4, + "(": 56, + "..": 7, + "FLOAT": 1, + "byte": 2, + "self.extension": 3, + "Total": 1, + "table.remove": 1, + "%": 1, + "ints": 1, + "namedata": 1, + "function": 16, + "counter": 1, + "Shift": 1, + "outname": 3, + "math.random": 8, + "pd.post": 1, + "active": 2, + "increments": 1, + "bang": 3, + "i": 10, + "Buffer": 1, + "repeating": 1, + "whether": 1, + "pd.Class": 3, + "Toggle": 1, + "binfile": 3, + "A": 1, + "f": 12, + "that": 1, + "File": 2, + "do": 8, + "Currently": 1, + "times": 2, + "bounds": 2, + "Hold": 1, + "in_6_float": 1, + "sel": 3, + "or": 2, + "in_1_symbol": 1, + "]": 17, + "receives": 2, + "register": 3, + "Number": 4, + "table.insert": 4, + "self.glitchpoint": 6, + "Active": 1, + "end": 26, + "randomized": 1, + "list": 1, + "number": 3, + "Toggles": 1, + "in_2_list": 1, + "self.outlets": 3, + "it": 2, + "length": 1, + "Incoming": 1, + "single": 1, + "in_3_float": 1, + "v": 4, + "self.bytebuffer": 8, + "converted": 1, + "be": 1, + "in": 7, + "of": 9, + "type": 2, + "else": 1, + ")": 56, + "s": 5, + "Minimum": 1, + "file": 8, + "Glitch": 3, + "simple": 1, + "then": 4, + "internal": 1, + "the": 7, + "sloc": 3, + "bytes": 3, + "FileModder": 10, + "splicebuffer": 3, + "schunksize": 2, + "are": 1, + "self.num": 5, + "d": 9, + "outlet": 10, + "atoms": 3, + "buffer": 2, + "#patbuffer": 1, + "a": 5, + "self": 10, + "return": 3, + "extension": 2, + "initialize": 3, + "splice": 1, + "data": 2, + "next": 1, + "[": 17, + "indexed": 2, + "which": 1, + "given": 1, + "}": 16, + "self.randtoggle": 3, + "self.glitchtype": 5, + "currently": 1, + "glitches": 3, + "last": 1, + "first": 1, + "write": 3, + "-": 60, + "random": 3, + "for": 9, + "self.batchlimit": 3, + "within": 2, + "pattern": 1, + "Base": 1, + "files": 1, + "if": 2, + "self.buflength": 7, + "changes": 1, + "batch": 2, + "glitch": 2, + "to": 8, + "object": 1, + "filename": 2, + "in_4_list": 1, + "patbuffer": 3, + "should": 1, + "triggering": 1, + "plen": 2, + "image": 1, + "true": 3, + "FileListParser": 5 + }, + "Objective-C": { + "setDidUseCachedResponse": 1, + "NSMutableDictionary": 18, + "very": 2, + "": 1, + "body": 8, + "stored": 9, + "same": 6, + "examined": 1, + "": 1, + "": 1, + "calculateNextIndexPath": 4, + "*section": 8, + "TUIViewAutoresizingFlexibleWidth": 1, + "TUIFastIndexPath*": 1, + "_styleDisabled": 6, + "_NSStringObjectFromJSONString": 1, + "Tells": 1, + "#endif": 59, + "TRUE": 1, + "*jsonString": 1, + "uint16_t": 1, + "JSONStringStateError": 1, + "update": 6, + "which": 1, + "JK_WARN_UNUSED_CONST": 1, + "JK_CACHE_SLOTS": 1, + "NS_BLOCKS_AVAILABLE": 8, + "__APPLE_CC__": 2, + "TTDCONDITIONLOG": 3, + "xDBFF": 1, + "authenticationNeededBlock": 5, + "retryUsingSuppliedCredentials": 1, + "(": 2109, + "shouldTimeOut": 2, + "FooAppDelegate": 2, + "willRedirect": 1, + "ASIS3Request": 1, + "NSNumber": 11, + "beginning": 1, + "order": 1, + "green": 3, + "JKParseAcceptValue": 2, + "as": 17, + "runMode": 1, + "argc": 1, + "save": 3, + "*temporaryFileDownloadPath": 2, + "initWithNumberOfRows": 2, + "environment": 1, + "pure": 2, + "proxyPort": 2, + "setProxyAuthenticationNeededBlock": 1, + "#define": 65, + "maxBandwidthPerSecond": 2, + "NSTimer": 5, + "cellForRowAtIndexPath": 9, + "earth": 1, + "JKTokenTypeString": 1, + "JKObjectStackLocationMask": 1, + "JKParseAcceptEnd": 3, + "savedCredentialsForHost": 1, + "": 1, + "pinnedHeader.frame.origin.y": 1, + "blue": 3, + "TTDPRINTMETHODNAME": 1, + "*authenticationRealm": 2, + "stringByAppendingPathComponent": 2, + "saveCredentials": 4, + "oldVisibleIndexPaths": 2, + ".size.height": 1, + "range": 8, + "called": 3, + "PAC": 7, + "NSException": 19, + "Record": 1, + "setContentSize": 1, + "streaming": 1, + "duration": 1, + "NULL": 152, + "*firstIndexPath": 1, + "*or3String": 1, + "*sessionProxyCredentialsStore": 1, + "showProxyAuthenticationDialog": 1, + "we": 73, + "forEvent": 3, + "initWithStyleName": 1, + "would": 2, + "idx": 33, + "_JKDictionaryCapacity": 3, + "xDFFF": 1, + "JK_WARN_UNUSED_SENTINEL": 1, + "ASIRequestCancelledError": 2, + "properties": 1, + "__OBJC__": 4, + "depthChange": 2, + "storeProxyAuthenticationCredentialsInSessionStore": 1, + "CFMutableDictionaryRef": 1, + "*indexPaths": 1, + "expirePersistentConnections": 1, + "caller": 1, + "NSURLCredentialPersistencePermanent": 2, + "AUTH": 6, + "indexPaths": 2, + "one": 1, + "uploadProgressDelegate": 8, + "Automatic": 1, + "supported": 1, + "TTPathForDocumentsResource": 1, + "JSONStringStateEscapedUnicodeSurrogate3": 1, + "JSONStringStateStart": 1, + "*PACFileRequest": 2, + "to.": 2, + "asked": 3, + "pinnedHeaderFrame.origin.y": 1, + "TUITableViewStyleGrouped": 1, + "self.title": 2, + "*jk_cachedObjects": 1, + "JKEncodeOptionType": 2, + "JSONNumberStateError": 1, + "there": 1, + "ReadStreamClientCallBack": 1, + "reusable": 1, + "UILabel*": 2, + "MainMenuViewController": 2, + "JKHashTableEntry": 21, + "moved": 2, + "removeAuthenticationCredentialsFromSessionStore": 3, + "see": 1, + "context.delegate": 1, + "NSRangeException": 6, + "JKEncodeCache": 6, + "sentinel": 1, + "*postBodyWriteStream": 1, + "Must": 1, + "CFURLRef": 1, + "give": 2, + "available": 1, + "raise": 18, + "postBodyFilePath": 7, + "": 1, + "*userAgentString": 2, + "values": 3, + "*domain": 2, + "r.origin.y": 1, + "JKParseAcceptCommaOrEnd": 1, + "callback": 3, + "reaches": 1, + "NSLock": 2, + "destroyReadStream": 3, + "isConcurrent": 1, + "post": 2, + "itemWithText": 48, + "date": 3, + "scanner": 5, + "script": 1, + "authenticationScheme": 4, + "*defaultUserAgent": 1, + "jk_encode_writen": 1, + "authenticated": 1, + "configureProxies": 2, + "requestAuthentication": 7, + "postLength": 6, + "applyCookieHeader": 2, + "The": 15, + "failAuthentication": 1, + "*u": 1, + "_style": 8, + "entryIdx": 4, + "setShowAccurateProgress": 1, + "JKManagedBufferOnStack": 1, + "sessionCookiesLock": 1, + "downloading": 5, + "than": 9, + "serializeOptions": 14, + "requestRedirectedBlock": 5, + "n": 7, + "@interface": 23, + "dataDecompressor": 1, + "with": 19, + "methodForSelector": 2, + "receives": 3, + "NSRecursiveLock": 13, + "@class": 4, + "*rawResponseData": 1, + "*data": 2, + "layoutSubviews": 5, + "origin": 1, + "UTF8": 2, + "Range": 1, + "setRequestCookies": 2, + "": 2, + "*jk_parse_array": 1, + "_JKDictionaryResizeIfNeccessary": 3, + "ARC": 1, + "prevents": 1, + "*stream": 1, + "ASIInternalErrorWhileApplyingCredentialsType": 1, + "UIBackgroundTaskIdentifier": 1, + "parsing": 2, + "_currentDragToReorderLocation": 1, + "responseData": 5, + "*ASIUnableToCreateRequestError": 1, + "jk_cache_age": 1, + "them": 10, + "contentLength": 6, + "objectWithData": 7, + "|": 13, + "section.headerView.frame": 1, + "UNI_SUR_LOW_END": 1, + "completes": 6, + "setStartedBlock": 1, + "identifies": 1, + "setMaintainContentOffsetAfterReload": 1, + "*rowInfo": 1, + "JK_END_STRING_PTR": 1, + "shouldResetDownloadProgress": 3, + "can": 20, + "track": 1, + "hasn": 1, + "allKeys": 1, + "setDataSource": 1, + "throttle": 1, + "operations": 1, + "toIndexPath": 12, + "NSOrderedAscending": 4, + "CGSizeMake": 3, + "URL": 48, + "UITableViewStyleGrouped": 1, + "Issue": 2, + "JKParseOptionFlags": 12, + "handling": 4, + "isEqualToString": 13, + "releaseBlocksOnMainThread": 4, + "defaults": 2, + "sectionIndex": 23, + "cached": 2, + "shouldStreamPostDataFromDisk": 4, + "proxyAuthenticationNeededBlock": 5, + "initToFileAtPath": 1, + "_preLayoutCells": 2, + "forceSaveScrollPosition": 1, + "token": 1, + "resume": 2, + "target": 5, + "added": 5, + "oldStream": 4, + "self.headerView.frame.size.height": 1, + "indexesOfSectionHeadersInRect": 2, + "*ptr": 2, + "JSONNumberStateWholeNumber": 1, + "handlers": 1, + "else": 35, + "*proxyAuthenticationRealm": 3, + "defaultResponseEncoding": 4, + "NSMenu": 1, + "objectWithString": 5, + "addSubview": 8, + "frame.size.width": 4, + "*proxyCredentials": 2, + "Even": 1, + "cookies": 5, + "*lastActivityTime": 2, + "header.frame.size.height": 1, + "numberOfRows": 13, + "NO": 30, + "-": 595, + "aFailedBlock": 1, + "hideNetworkActivityIndicatorIfNeeeded": 1, + ".location": 1, + "roundf": 2, + "indexPathForCell": 2, + "proxyType": 1, + "*proxyPassword": 2, + "scanInt": 2, + "ASIAuthenticationErrorType": 3, + "_pullDownView.hidden": 4, + "*parser": 1, + "JKTokenType": 2, + "applyCredentials": 1, + "once": 3, + "sessionCredentialsStore": 1, + "removeLastObject": 1, + "_JKDictionaryInstanceSize": 4, + "pulled": 1, + "appendPostData": 3, + "objectFromJSONString": 1, + "set.": 1, + "Digest": 2, + "Private": 1, + "SBJsonStreamParserAdapter": 2, + "TTLOGLEVEL_ERROR": 1, + "NSBundle": 1, + "xffffffffU": 1, + "dictionary": 64, + "*headerView": 6, + "": 1, + "self.maxDepth": 2, + "JKEncodeState": 11, + "private": 1, + "redirects.": 1, + "concurrency": 1, + ";": 2003, + "something": 1, + "option.": 1, + "FALSE": 2, + "*readStream": 1, + "charset": 5, + "work.": 1, + "INT_MAX": 2, + "for": 99, + "created": 3, + "warning***": 1, + "fromIndexPath": 6, + "**objects": 1, + "Will": 7, + "CFReadStreamCopyProperty": 2, + "NSEvent": 3, + "reachabilityChanged": 1, + "Connection": 1, + "compressed": 2, + "addSessionCookie": 1, + "TTImageView": 1, + "tmp": 3, + "jsonText": 1, + "__IPHONE_4_0": 6, + "_tableFlags.maintainContentOffsetAfterReload": 2, + "NSMaxRange": 4, + "extra": 1, + "scenes": 1, + "iteration...": 1, + "downloads": 1, + "use": 26, + "setDownloadProgressDelegate": 2, + "UIButtonTypeRoundedRect": 1, + "Why": 1, + "largely": 1, + "startSynchronous.": 1, + "indexPathWithIndexes": 1, + "_lastSize": 1, + "mimeTypeForFileAtPath": 1, + "Once": 2, + "whatever": 1, + "Description": 1, + "instead.": 4, + "containing": 1, + "handleStreamComplete": 1, + "NSIndexSet": 4, + "UIViewAutoresizingFlexibleBottomMargin": 3, + "data.": 1, + "init": 34, + "file": 14, + "willAskDelegateToConfirmRedirect": 1, + "scheme": 5, + "": 2, + "always_inline": 1, + "need": 10, + "requestMethod": 13, + "thePassword": 1, + "NSDownArrowFunctionKey": 1, + "e": 1, + "Defaults": 2, + "isPACFileRequest": 3, + "*userAgentHeader": 1, + "setHeadersReceivedBlock": 1, + "actually": 2, + "TUITableViewDelegate": 1, + "CFOptionFlags": 1, + "TUITableViewSectionHeader": 5, + "_JSONDecoderCleanup": 1, + "USE": 1, + "startAsynchronous": 2, + "JSONDataWithOptions": 8, + "scannerWithString": 1, + "NSURLCredential": 8, + "repeats": 1, + "those": 1, + "": 2, + "See": 5, + "lastObject": 1, + "*indexPath": 11, + "NSArray*": 1, + "acceptsFirstResponder": 1, + "commit": 1, + "_setupRowHeights": 2, + "arg": 11, + "shouldResetUploadProgress": 3, + "when": 46, + "sizes": 1, + "sizeof": 13, + "s": 35, + "authenticationRetryCount": 2, + "interval": 1, + "JKSERIALIZER_BLOCKS_PROTO": 1, + "postBody": 11, + "redirected": 2, + "NSOutputStream": 6, + "offset": 23, + "subsequent": 2, + "original": 2, + "NSDate": 9, + "displaying": 2, + "setNeedsDisplay": 2, + "retryCount": 3, + "comments": 1, + "TARGET_OS_IPHONE": 11, + "selectRowAtIndexPath": 3, + "TTCurrentLocale": 2, + "JK_NONNULL_ARGS": 1, + "amount": 12, + "rectForRowAtIndexPath": 7, + "debugTestAction": 2, + "UIProgressView": 2, + "view.urlPath": 1, + "_styleSelected": 6, + "jk_min": 1, + "occurred": 1, + "connectionsLock": 3, + "intValue": 4, + "rowInfo": 7, + "advanceBy": 1, + "readwrite": 1, + "jk_encode_updateCache": 1, + "*keyHashes": 2, + "ASIInputStream": 2, + "required": 2, + "stuff": 1, + "storage": 2, + "setTitle": 1, + "mark": 42, + "*ASITooMuchRedirectionError": 1, + "class": 30, + "setPostLength": 3, + "NSInputStream": 7, + "NSString": 127, + "SortCells": 1, + "alloc_size": 1, + "originalURL": 1, + "incrementDownloadSizeBy": 1, + "isResponseCompressed": 3, + "know": 3, + "alive": 1, + "switch": 3, + "*jk_managedBuffer_resize": 1, + "jk_managedBuffer_setToStackBuffer": 1, + "JSONStringStateEscapedNeedEscapedUForSurrogate": 1, + "CFRelease": 19, + "TUITableViewDataSource": 2, + "performInvocation": 2, + "removeAllObjects": 1, + "##__VA_ARGS__": 7, + "ID": 1, + "startedBlock": 5, + "NSRunLoop": 2, + "setShouldResetDownloadProgress": 1, + "bytesReadSoFar": 3, + "globallyUniqueString": 2, + "allObjects": 2, + "append": 1, + "whether": 1, + "no": 7, + "proxyDomain": 1, + "TTTableTextItem": 48, + "WORD_BIT": 1, + "value": 21, + "via": 5, + "@private": 2, + "*error": 3, + "didReceiveResponseHeadersSelector": 2, + "sectionUpperBound": 3, + "NSEnumerationOptions": 4, + "TUITableViewInsertionMethod": 3, + "adapter.delegate": 1, + "targetExhausted": 1, + "password": 11, + "TUITableViewCalculateNextIndexPathBlock": 3, + "*lastIndexPath": 5, + "CFStreamEventType": 2, + "theError": 6, + "": 1, + "@": 258, + "indexPathForLastVisibleRow": 2, + "JK_WARN_UNUSED_CONST_NONNULL_ARGS": 1, + "match": 1, + "newRequestMethod": 3, + "rowsInSection": 7, + "TUITableViewScrollPositionToVisible": 3, + "bit": 1, + "main": 8, + "TUIView": 17, + "*theRequest": 1, + "until": 2, + "//If": 2, + "*indexes": 2, + "removeFromSuperview": 4, + "nibBundleOrNil": 1, + ".object": 7, + "tableSize": 2, + "etc": 1, + "INT_MIN": 3, + "markAsFinished": 4, + "lowercaseString": 1, + "JKParseOptionLooseUnicode": 2, + "_tableFlags.animateSelectionChanges": 3, + "oldEntry": 9, + "keyHash": 21, + "recordBandwidthUsage": 1, + "adding": 1, + "shouldUseRFC2616RedirectBehaviour": 2, + "since": 1, + "_jk_encode_prettyPrint": 1, + "built": 2, + "ASIHeadersBlock": 3, + "primarily": 1, + "according": 2, + "clearDelegatesAndCancel": 2, + "*c": 1, + "NSData*": 1, + "generate": 1, + "JSONKit": 11, + "*proxyHost": 1, + "indexPathForRow": 11, + "reloadDataMaintainingVisibleIndexPath": 2, + "buttonWithType": 1, + "UIScrollView*": 1, + "UINT_MAX": 3, + "headerFrame": 4, + "NSLocalizedString": 9, + "void": 253, + "indexPath.row": 1, + "///////////////////////////////////////////////////////////////////////////////////////////////////": 24, + "keys": 5, + "making": 1, + "dataWithBytes": 1, + "data": 27, + "_pullDownView": 4, + "For": 2, + "redirecting": 2, + "had": 1, + "pinnedHeader": 1, + "CGRectZero": 5, + "SIZE_MAX": 1, + "conjunction": 1, + "maxLength": 3, + "cleanup": 1, + "TTStyleSheet": 4, + "len": 6, + "ptr": 3, + "setTarget": 1, + "object": 36, + "connecting": 2, + "every": 3, + "PUT": 1, + "JK_EXPECTED": 4, + "releaseBlocks": 3, + "parseMimeType": 2, + "most": 1, + "what": 3, + "information": 5, + "timeIntervalSinceNow": 1, + "pinnedHeaderFrame": 2, + "j": 5, + "tableRowOffset": 2, + "TUITableViewStyle": 4, + "_ASIAuthenticationState": 1, + "@finally": 1, + "*entry": 4, + "JKManagedBufferLocationShift": 1, + "mutableObjectFromJSONDataWithParseOptions": 2, + "bringSubviewToFront": 1, + "TTDINFO": 1, + "_JKDictionaryRemoveObjectWithEntry": 3, + "JKObjectStackLocationShift": 1, + "JK_STATIC_INLINE": 10, + "auto": 2, + "withObject": 10, + "userInfo": 15, + "removeObjectAtIndex": 1, + "JKHash": 4, + "//#include": 1, + "fires": 1, + "totalBytesRead": 4, + "populated": 1, + "isa": 2, + "CFReadStreamRef": 5, + "certificates": 2, + "beforeDate": 1, + "Use": 6, + "shouldPresentProxyAuthenticationDialog": 2, + "failureBlock": 5, + "down": 1, + "*cfHashes": 1, + "internally": 3, + "cancelledLock": 37, + "x": 10, + "JKEncodeOptionCollectionObj": 1, + "kCFHTTPVersion1_1": 1, + "value.": 1, + "ASISizeBlock": 5, + "certificate": 2, + "long": 71, + "accumulator.value": 1, + "buffer.": 2, + "ones": 3, + "shouldThrottleBandwidthForWWANOnly": 1, + "first": 9, + "finished": 3, + "contain": 4, + "setup": 2, + "@try": 1, + "willAskDelegateForCredentials": 1, + "*runLoopMode": 2, + "creation.": 1, + "get": 4, + "_updateDerepeaterViews": 2, + "sourceExhausted": 1, + "UTF16": 1, + "JKObjectStackFlags": 1, + "findSessionAuthenticationCredentials": 2, + "process": 1, + "indexPathForLastRow": 2, + "row": 36, + "text.style": 1, + "kViewStyleType": 2, + "JK_CACHE_PROBES": 1, + "Location": 1, + "setCompressedPostBody": 1, + "asynchronously": 1, + "setCompletionBlock": 1, + "SBJsonStreamParserAccumulator": 2, + "top": 8, + "mutations": 20, + "CFDictionaryRef": 1, + "findCredentials": 1, + "NSRange": 1, + "_JKArrayInsertObjectAtIndex": 3, + "unused": 3, + "retry": 3, + "checking": 1, + "note": 1, + "throttled": 1, + "was": 4, + "username": 8, + "detection": 2, + "setRequestCredentials": 1, + "haveBuiltRequestHeaders": 1, + ")": 2106, + "laid": 1, + "optionFlags": 1, + "aligned": 1, + "theRequest": 1, + "authenticationCredentials": 4, + "at": 10, + "inflate": 2, + "stores": 1, + "didReceiveDataSelector": 2, + "GET": 1, + "being": 4, + "useSessionPersistence": 6, + "CFHTTPMessageApplyCredentialDictionary": 2, + "sectionLowerBound": 2, + "self.dataSource": 1, + "*oldEntry": 1, + "JSONNumberStateWholeNumberStart": 1, + "delegates": 2, + "acceptHeader": 2, + "removeCredentialsForProxy": 1, + "*certificates": 1, + "pinned": 5, + "dataSource": 2, + "grouped": 1, + "jk_managedBuffer_release": 1, + "JKClassArray": 1, + "ASIHTTPRequest*": 1, + "*postBodyReadStream": 1, + "Example": 1, + "b.frame.origin.y": 2, + "bandwidthUsageTracker": 1, + "NSDictionary": 37, + "passed": 2, + "_tableFlags.delegateTableViewWillDisplayCellForRowAtIndexPath": 1, + "setPostBodyFilePath": 1, + "offscreen": 2, + "look": 1, + "es": 3, + "FFFD": 1, + "throttling": 1, + "succeeded": 1, + "setAuthenticationNeeded": 2, + "cachePolicy": 3, + "dictionaryWithObjectsAndKeys": 10, + "NSMutableArray": 31, + "re": 9, + "ASICachePolicy": 4, + "id": 170, + "futureMakeFirstResponderRequestToken": 1, + "dc": 3, + "jk_parse_skip_newline": 1, + "bytesReceivedBlock": 8, + "savedCredentialsForProxy": 1, + "action": 1, + "jk_encode_object_hash": 1, + "JKParseOptionUnicodeNewlines": 2, + "headers.": 1, + "*format": 7, + "//block": 12, + "failWithError": 11, + "proxy": 11, + "URLWithString": 1, + "runRequests": 1, + "context.frame": 1, + "JSONStringStateEscapedUnicodeSurrogate4": 1, + "cond": 12, + "averageBandwidthUsedPerSecond": 2, + "NSURL": 21, + "*sessionCredentials": 1, + "sectionHeight": 9, + "": 2, + "completionBlock": 5, + "Objective": 2, + "*_headerView": 1, + "countByEnumeratingWithState": 2, + "jk_parse_string": 1, + "shouldUpdate": 1, + "trip": 1, + "Stores": 1, + "unscheduleReadStream": 1, + "StyleView": 2, + "_jk_NSNumberClass": 2, + "selector": 12, + "": 1, + "*bandwidthMeasurementDate": 1, + "sizeWithFont": 2, + "": 1, + "line": 2, + "query": 1, + "connection": 17, + "ASIAuthenticationError": 1, + "indexOfSectionWithHeaderAtVerticalOffset": 2, + "jk_dictionaryCapacities": 4, + "objectsPtr": 3, + "already": 4, + "requestStarted": 3, + "authentication": 18, + "failedRequest": 4, + "frame": 38, + "Controls": 1, + "size.height": 1, + "*ui": 1, + "JSONNumberStateFractionalNumberStart": 1, + "#pragma": 44, + "dictionaryWithCapacity": 2, + "setStatusTimer": 2, + "and": 44, + "": 4, + "set": 24, + "numberOfSections": 10, + "__unsafe_unretained": 2, + "keyEntry": 4, + "temp_NSNumber": 4, + "JKTokenTypeArrayEnd": 1, + "#include": 18, + "setPostBody": 1, + "setProxyAuthenticationRetryCount": 1, + "a": 78, + "*newVisibleIndexPaths": 1, + "TUITableViewCell": 23, + "runPACScript": 1, + "ASIWWANBandwidthThrottleAmount": 2, + "want": 5, + "*v": 2, + "cache": 17, + "inflatedFileDownloadOutputStream": 1, + "struct": 20, + "existing": 1, + "numberWithBool": 3, + "foundValidNextRow": 4, + "cells": 7, + "cellRect.origin.y": 1, + "addIndex": 3, + "calloc.": 2, + "jk_encode_printf": 1, + "xF0": 1, + "JKObjectStack": 5, + "yourself": 4, + "cacheStoragePolicy": 2, + "#import": 53, + "large": 1, + "*PACFileData": 2, + "notify": 3, + "NSComparator": 1, + "TTLOGLEVEL_INFO": 1, + "JK_AT_STRING_PTR": 1, + "setMaxValue": 2, + "aCompletionBlock": 1, + "subclasses": 2, + "setShouldResetUploadProgress": 1, + "Otherwise": 2, + "iterations": 1, + "lower": 1, + "TTImageView*": 1, + "insertObject": 1, + "extern": 6, + "Blocks": 1, + "oldCapacity": 2, + "*objectStack": 3, + "JKValueTypeString": 1, + "ULLONG_MAX": 1, + "up": 4, + "bandwidthThrottlingLock": 1, + "*authenticationScheme": 1, + "NSResponder": 1, + "TTDWARNING": 1, + "_scrollView": 9, + "jk_objectStack_resize": 1, + "JKValueType": 1, + "NSData": 28, + "away.": 1, + "*or2String": 1, + "download.": 1, + "@selector": 28, + "pass": 5, + "*compressedBody": 1, + "_layoutCells": 3, + "self.contentInset.bottom": 1, + "lastActivityTime": 1, + "setArgument": 4, + "persistentConnectionTimeoutSeconds": 4, + "*downloadDestinationPath": 2, + "__MAC_10_5": 2, + "indexPath": 47, + "atEntry": 45, + "}": 532, + "__IPHONE_3_2": 2, + "were": 5, + "then": 1, + "": 1, + "compressedBody": 1, + "url": 24, + "NSOperationQueue": 4, + "happens": 4, + "could": 1, + "*underlyingError": 1, + "applyAuthorizationHeader": 2, + "code": 16, + "default": 8, + "reused": 2, + "*ctx": 1, + "Make": 1, + "found": 4, + "setURL": 3, + "setInProgress": 3, + "_currentDragToReorderInsertionMethod": 1, + "heightForRowAtIndexPath": 2, + "style": 29, + "__BLOCKS__": 1, + "_futureMakeFirstResponderToken": 2, + "didUseCachedResponse": 3, + "setPersistentConnectionTimeoutSeconds": 2, + "totalBytesSent": 5, + "text.text": 1, + "gzipped.": 1, + "NSInternalInconsistencyException": 4, + "uploadBufferSize": 6, + "didStartSelector": 2, + "webservers": 1, + "NSLog": 4, + "title": 2, + "SBJsonStreamParserComplete": 1, + "self.error": 3, + "starts": 2, + "fails": 2, + "r.size.height": 4, + ".": 2, + "_JKArrayReplaceObjectAtIndexWithObject": 3, + "array": 84, + "synchronously": 1, + "specify": 2, + "exits": 1, + "similar": 1, + "entryForKey": 3, + "objc_getClass": 2, + "_JKArrayRemoveObjectAtIndex": 3, + "content": 5, + "stop": 4, + "objc_arc": 1, + "_tableFlags.forceSaveScrollPosition": 1, + "section.sectionOffset": 1, + "range.location": 2, + "indicator": 4, + "handleNetworkEvent": 2, + "inflated": 6, + "toIndexPath.row": 1, + "TUIFastIndexPath": 89, + "jk_calculateHash": 1, + "**keys": 1, + "inputStreamWithData": 2, + "key": 32, + "*throttleWakeUpTime": 1, + "responseEncoding": 3, + "_tableFlags": 1, + "UIControlStateSelected": 1, + "JSONStringStateParsing": 1, + "allows": 1, + "oldCount": 2, + "needs": 1, + "NSThread": 4, + "<": 56, + "recording": 1, + "means": 1, + "_headerView": 8, + "textFrame": 3, + "parser.error": 1, + "lround": 1, + "kCFNull": 1, + "streamSuccessfullyOpened": 1, + "decoderWithParseOptions": 1, + "reading": 1, + "setRedirectURL": 2, + "IN": 1, + "readonly": 19, + "JKTokenTypeArrayBegin": 1, + "release": 66, + "componentsSeparatedByString": 1, + "preset": 2, + "loop": 1, + "overlapped": 1, + "removeObjectsInArray": 2, + "animateSelectionChanges": 3, + "textFrame.size": 1, + "TTStyleContext*": 1, + "jk_objectStack_release": 1, + "initialize": 1, + "callerToRetain": 7, + "rect": 10, + "determining": 1, + "internal": 2, + "selection": 3, + "clear": 3, + "reachability": 1, + "newSessionCookies": 1, + "label.frame": 4, + "enumeratedCount": 8, + "HTTP": 9, + "inopportune": 1, + "copyWithZone": 1, + "_JKArrayInstanceSize": 4, + "responses.": 1, + "write": 4, + "development": 1, + "delegate": 29, + "": 1, + "processInfo": 2, + "...then": 1, + "pool": 2, + "xD800": 1, + "NSNotification": 2, + "scanString": 2, + "@synthesize": 7, + "*temporaryUncompressedDataDownloadPath": 2, + "indexOfSectionWithHeaderAtPoint": 2, + "rectForHeaderOfSection": 4, + "just": 4, + "_reusableTableCells": 5, + "Unable": 2, + "load": 1, + "JK_HASH_INIT": 1, + "architectures.": 1, + "X": 1, + "setShouldPresentCredentialsBeforeChallenge": 1, + "*postBodyFilePath": 1, + "height": 19, + "proposedPath": 1, + "JKEncodeOptionAsString": 1, + "JKObjectStackMustFree": 1, + "*m": 1, + "TUITableView*": 1, + "temporary": 2, + "jk_encode_write1fast": 2, + "JK_TOKENBUFFER_SIZE": 1, + "UL": 138, + "ASINetworkQueue.h": 1, + "partially": 1, + "initWithParseOptions": 1, + "synchronous": 1, + "_topVisibleIndexPath": 1, + "f": 8, + "performSelector": 7, + "Mac": 2, + "partialDownloadSize": 8, + "complain": 1, + "JSONStringStateEscapedUnicode1": 1, + "setResponseEncoding": 2, + "*progressLock": 1, + "setPostBodyWriteStream": 2, + "_previousDragToReorderInsertionMethod": 1, + "realloc": 1, + "nonnull": 6, + "JK_ATTRIBUTES": 15, + "threadForRequest": 3, + "v1.4": 1, + "useDataFromCache": 2, + "*ASIHTTPRequestRunLoopMode": 1, + "registerForNetworkReachabilityNotifications": 1, + "ofTotal": 4, + "create": 1, + "requestFailed": 2, + "header": 20, + "indexPathForRowAtVerticalOffset": 2, + "DEBUG": 1, + "andResponseEncoding": 2, + "keychain": 7, + "serializeUnsupportedClassesUsingBlock": 4, + "respondsToSelector": 8, + "NSAutoreleasePool": 2, + "that": 23, + "addOperation": 1, + "mutableObjectWithUTF8String": 2, + "JKTokenTypeObjectBegin": 1, + "isNetworkReachableViaWWAN": 1, + "intoString": 3, + "NS_BUILD_32_LIKE_64": 3, + "kCFStreamEventHasBytesAvailable": 1, + "t": 15, + "inform": 1, + "populate": 1, + "#19.": 2, + "releasingObject": 2, + "*connectionInfo": 2, + "SecIdentityRef": 3, + "best": 1, + "Agent": 1, + "requestFinished": 4, + "make": 3, + "reportFinished": 1, + "setDidReceiveDataSelector": 1, + "isFinished": 1, + "jk_parse_number": 1, + "CFHashCode": 1, + "xFC": 1, + "Set": 4, + "TUIScrollViewDelegate": 1, + "shouldCompressRequestBody": 6, + "_visibleSectionHeaders": 6, + "jk_encode_error": 1, + "NSMethodSignature": 1, + "cbInvocation": 5, + "timerWithTimeInterval": 1, + "setShouldRedirect": 1, + "requestHeaders": 6, + "lastIndexPath": 8, + "munge": 2, + "fromPath": 1, + "responseStatusCode": 3, + "this": 50, + "Incremented": 1, + "send": 2, + "newVisibleIndexPaths": 2, + "replaceObjectAtIndex": 1, + "execute": 4, + "JK_ENABLE_CF_TRANSFER_OWNERSHIP_CALLBACKS": 2, + "haveBuiltPostBody": 3, + "proceed.": 1, + "also": 1, + "dataReceivedBlock": 5, + "canMoveRowAtIndexPath": 2, + "JK_UTF8BUFFER_SIZE": 1, + "ASINoAuthenticationNeededYet": 3, + "might": 4, + "scheduleReadStream": 1, + "Default": 10, + "status": 4, + "implement": 1, + "*ASIRequestTimedOutError": 1, + "decoder": 1, + "bound": 1, + "capacityForCount": 4, + "either": 1, + "*fileDownloadOutputStream": 2, + "hard": 1, + "or": 18, + "%": 30, + "addToSize": 1, + "initWithBytes": 1, + "indexesOfSectionsInRect": 2, + "forControlEvents": 1, + "addText": 5, + "Delegate": 2, + "": 1, + "NSTemporaryDirectory": 2, + "": 2, + "sortedVisibleCells": 2, + "CFEqual": 2, + "calloc": 5, + "ConversionResult": 1, + "while": 11, + "performKeyAction": 2, + "v.size.height": 2, + "JKClassString": 1, + "requires": 4, + "*statusTimer": 2, + "*PACurl": 2, + "_tableFlags.didFirstLayout": 1, + "INDEX_PATHS_FOR_VISIBLE_ROWS": 4, + "_JSONKIT_H_": 3, + "setSynchronous": 2, + "table": 7, + "_cmd": 16, + "one.": 1, + "super": 25, + "return": 165, + ".offset": 2, + "_relativeOffsetForReload": 2, + "TUITableViewInsertionMethodBeforeIndex": 1, + "initWithJKDictionary": 3, + "BOOL": 137, + "toFile": 1, + "CFHash": 1, + "setDefaultResponseEncoding": 1, + "A": 4, + "saveCredentialsToKeychain": 3, + "#if": 41, + "NSStringFromClass": 18, + "kCFStreamPropertyHTTPRequestBytesWrittenCount": 1, + "forProxy": 2, + "JSONStringWithOptions": 8, + "jk_error_parse_accept_or3": 1, + "handle": 4, + "": 2, + "*err": 3, + "in": 42, + "throttleBandwidthForWWANUsingLimit": 1, + "arrayWithCapacity": 2, + "*indexPathsToRemove": 1, + "numberOfSectionsInTableView": 3, + "enumerateIndexPathsWithOptions": 2, + "view.autoresizingMask": 2, + "up/down": 1, + "dataUsingEncoding": 2, + "JKConstBuffer": 2, + "activity": 1, + "only": 12, + "sessionCookies": 2, + "__attribute__": 3, + "_layoutSectionHeaders": 2, + "SBJsonStreamParser": 2, + "run": 1, + "ASIUnableToCreateRequestError": 3, + "ASIHTTPRequestRunLoopMode": 2, + "setSelector": 1, + "safest": 1, + "initWithFileAtPath": 1, + "retryUsingNewConnection": 1, + ".pinnedToViewport": 2, + "initWithUnsignedLongLong": 1, + "JK_STACK_OBJS": 1, + "includeQuotes": 6, + "queue": 12, + "*blocks": 1, + "debugging": 1, + "NSFastEnumerationState": 2, + "*scanner": 1, + "]": 1227, + "NO.": 1, + "isEqual": 4, + "operation": 2, + "JSONStringStateFinished": 1, + "NSScanner": 2, + "downloaded": 6, + "setCompressedPostBodyFilePath": 1, + "setShouldThrottleBandwidthForWWAN": 1, + "newly": 1, + "reloadLayout": 2, + "text.backgroundColor": 1, + "*_JKDictionaryHashEntry": 2, + "LONG_BIT": 1, + "support": 4, + "compressedPostBodyFilePath": 4, + "DEBUG_HTTP_AUTHENTICATION": 4, + "nextObject": 6, + "memmove": 2, + "JKEncodeOptionStringObjTrimQuotes": 1, + "These": 1, + "UITableViewStylePlain": 1, + "addTarget": 1, + "startingObjectIndex": 1, + "*objects": 5, + "redirects": 2, + "endBackgroundTask": 1, + "_sectionInfo": 27, + "Text": 1, + "method": 5, + "ASIProgressBlock": 5, + "updateProgressIndicators": 1, + "explicitly": 2, + "more": 5, + "has": 6, + "mutableCopyWithZone": 1, + "Handle": 1, + "__clang_analyzer__": 3, + "removeTemporaryDownloadFile": 1, + "client": 1, + "keepAliveHeader": 2, + "aNotification": 1, + "timer": 5, + "dealloc": 13, + "aRedirectBlock": 1, + "enum": 17, + "authenticating": 2, + "*oldVisibleIndexPaths": 1, + "cell.frame": 1, + "section.headerView": 9, + "y": 12, + "fffffff": 1, + "Apply": 1, + "setAuthenticationNeededBlock": 1, + "state": 35, + "setUseCookiePersistence": 1, + "*originalURL": 2, + "initDictionary": 4, + "*pool": 1, + "stringBuffer.bytes.ptr": 2, + "server": 8, + "proxyPassword": 3, + "JK_WARN_UNUSED": 1, + "bodies": 1, + "setMaxConcurrentOperationCount": 1, + "setUploadSizeIncrementedBlock": 1, + "logic": 1, + "challenge": 1, + "setAuthenticationScheme": 1, + "task": 1, + "clearCache": 1, + "remove": 4, + "Obtain": 1, + "numberOfRowsInSection": 9, + "*256": 1, + "*networkThread": 1, + "*oldIndexPath": 1, + "_headerView.frame": 1, + "objects": 58, + "JK_ALLOC_SIZE_NON_NULL_ARGS_WARN_UNUSED": 2, + "contentType": 1, + "theData": 1, + "normal": 1, + "*acceptHeader": 1, + "automatic": 1, + "parent": 1, + "JSONKitSerializing": 3, + "block": 18, + "ASIUnableToCreateRequestErrorType": 2, + "ASIRequestTimedOutError": 1, + "arrayIdx": 5, + "aBytesReceivedBlock": 1, + "button.frame": 2, + "*ASIRequestCancelledError": 1, + "fileDownloadOutputStream": 1, + "ASITooMuchRedirectionError": 1, + "_contentHeight": 7, + "error_": 2, + "Though": 1, + "": 1, + "before": 6, + "JSONKIT_VERSION_MAJOR": 1, + "*": 311, + "returns": 4, + "JKTokenTypeSeparator": 1, + "shouldAttemptPersistentConnection": 2, + "proxyHost": 2, + "__OBJC_GC__": 1, + "#ifndef": 9, + "TUITableView": 25, + "needsRedirect": 3, + "JSONString": 3, + "seconds": 2, + "rowUpperBound": 3, + "view.frame": 2, + "_styleType": 6, + "malloc": 1, + "findSessionProxyAuthenticationCredentials": 1, + "NSISOLatin1StringEncoding": 2, + "kCFHTTPAuthenticationPassword": 2, + "*objectPtr": 2, + "*jk_create_dictionary": 1, + "Domain": 2, + "nibNameOrNil": 1, + "keyHashes": 2, + "isExecuting": 1, + "error": 75, + "newObject": 12, + "JKValueTypeUnsignedLongLong": 1, + "currently": 4, + "_pullDownView.frame.size.height": 2, + "maxDepth": 2, + "ASIUnhandledExceptionError": 3, + "*1.5": 1, + "made": 1, + "rather": 4, + "kCFStreamSSLPeerName": 1, + "stringEncoding": 1, + "*sessionCredentialsStore": 1, + "cancelOnRequestThread": 2, + "viewDidUnload": 2, + "*managedBuffer": 3, + "atIndex": 6, + "CGRectContainsPoint": 1, + "initWithFrame": 12, + "F": 1, + "jk_error": 1, + "updatePartialDownloadSize": 1, + "CFReadStreamCreateForStreamedHTTPRequest": 1, + "mainRequest": 9, + "#warning": 1, + "v1.4.": 4, + "CFHTTPAuthenticationRef": 2, + "base64forData": 1, + "setFailedBlock": 1, + "sharedApplication": 2, + "sslProperties": 2, + "indexPath.section": 3, + "*header": 1, + "yOffset": 42, + "character": 1, + "UNI_REPLACEMENT_CHAR": 1, + "JKParseAcceptComma": 2, + "is": 77, + "setHaveBuiltRequestHeaders": 1, + "will": 57, + "toRemove": 1, + "label.numberOfLines": 2, + "*encodeState": 9, + "beginBackgroundTaskWithExpirationHandler": 1, + "ve": 7, + "Currently": 1, + "indexAtPosition": 2, + "JSONNumberStatePeriod": 1, + "*requestCookies": 2, + "ASIRequestTimedOutErrorType": 2, + "fetchPACFile": 1, + "limit": 1, + "setDisableActions": 1, + "rowLowerBound": 2, + "returned": 1, + "UTF32": 11, + "If": 30, + "where": 1, + "newHeaders": 1, + "path": 11, + "*i": 4, + "jk_set_parsed_token": 1, + "expiryDateForRequest": 1, + "kImageStyleType": 2, + "defaultTimeOutSeconds": 3, + "JKSerializeOptionEscapeForwardSlashes": 2, + "NSFileManager": 1, + "_makeRowAtIndexPathFirstResponder": 2, + "objectAtIndex": 8, + "already.": 1, + "Request": 6, + "regular": 1, + "b": 4, + "setUploadProgressDelegate": 2, + "setCachePolicy": 1, + "possible": 3, + "ASICacheDelegate.h": 2, + "": 2, + "record": 1, + "scrollRectToVisible": 2, + "maintainContentOffsetAfterReload": 3, + "context": 4, + "floor": 1, + "JKBuffer": 2, + "JKArray": 14, + "doing": 1, + "": 1, + "request": 113, + "It": 2, + "basic": 3, + "option": 1, + "UIButton": 1, + "let": 8, + "temporaryFileDownloadPath": 2, + "*cancelledLock": 2, + "*postBody": 1, + "setShouldPresentProxyAuthenticationDialog": 1, + "simply": 1, + "POST": 2, + "TTDPRINT": 9, + "TTPathForBundleResource": 1, + "newObjects": 2, + "JKTokenTypeInvalid": 1, + "Last": 2, + "website": 1, + "startRequest": 3, + "current": 2, + "probably": 4, + "p": 3, + "tableViewDidReloadData": 3, + "parseJSONData": 2, + "objectForKey": 29, + "kCFStreamPropertySSLSettings": 1, + "topVisibleIndex": 2, + "systemFontSize": 1, + "initWithNibName": 3, + "Credentials": 1, + "kCFHTTPAuthenticationUsername": 2, + "JKObjectStackOnHeap": 1, + "setDefaultTimeOutSeconds": 1, + "responseCode": 1, + "representing": 1, + "_scrollView.autoresizingMask": 1, + "memcpy": 2, + "downloadSizeIncrementedBlock": 5, + "timeOutSeconds": 3, + "__MAC_10_6": 2, + "UIBackgroundTaskInvalid": 3, + "failure": 1, + "mime": 1, + "*sslProperties": 2, + "didn": 3, + "zero": 1, + "weak": 2, + "atObject": 12, + "during": 4, + "used": 16, + "our": 6, + "self.tableViewStyle": 1, + "jk_encode_write": 1, + "JKRange": 2, + "lastBytesRead": 3, + "uniquely": 1, + "nil": 131, + "charactersIgnoringModifiers": 1, + "JKParseToken": 2, + "Counting": 1, + "removeProxyAuthenticationCredentialsFromSessionStore": 1, + "OS": 1, + "feature": 1, + "_currentDragToReorderMouseOffset": 1, + "TUITableViewScrollPositionTop": 2, + "alpha": 3, + "JKObjectStackOnStack": 1, + "applicationDidFinishLaunching": 1, + "kCFHTTPAuthenticationSchemeNTLM": 1, + "*newCredentials": 1, + "to": 115, + "maxUploadReadLength": 1, + "HEADER_Z_POSITION": 2, + "stick": 1, + "analyzer...": 2, + "free": 4, + "allocWithZone": 4, + "encoding": 7, + "threading": 1, + "on": 26, + "bytesRead": 5, + "newURL": 16, + "bytesSentBlock": 5, + "storing": 1, + "user": 6, + "maxAge": 2, + "kCFHTTPAuthenticationSchemeBasic": 2, + "numberOfTimesToRetryOnTimeout": 2, + "NSOrderedDescending": 4, + "NSEnumerator": 2, + "C82080UL": 1, + "JKTokenTypeTrue": 1, + "JKDictionary": 22, + "perhaps": 1, + "secondsToCache": 3, + "retain": 73, + "defaultCache": 3, + "*cbInvocation": 1, + "UIViewAutoresizingFlexibleHeight": 1, + "UNI_SUR_HIGH_END": 1, + "upload": 4, + "setter": 2, + "previously": 1, + "visibleCells": 3, + "setHaveBuiltPostBody": 1, + "err": 8, + "way": 1, + "waitUntilDone": 4, + "inSection": 11, + "toProposedIndexPath": 1, + "TTTableViewController": 1, + "/": 18, + "call": 8, + "JKSerializeOptionEscapeUnicode": 2, + "autorelease": 21, + "NSComparisonResult": 1, + "selection.": 1, + "shouldSelectRowAtIndexPath": 3, + "JSONNumberStateExponentPlusMinus": 1, + "Size": 3, + "measurement": 1, + "exception": 3, + "*indexPathsToAdd": 1, + "view": 11, + "kElementSpacing": 3, + "_JKDictionaryClass": 5, + "...": 11, + "*sessionCookies": 1, + "Realm": 1, + "Basic": 2, + "fromIndexPath.row": 1, + "usingBlock": 6, + "TTDERROR": 1, + "mid": 5, + "forKey": 9, + "setTotalBytesSent": 1, + "addObject": 16, + "timeout": 6, + "self.contentInset.top*2": 1, + "performBlockOnMainThread": 2, + "connectionID": 1, + "after": 5, + "recycle": 1, + "prevent": 2, + "TUIScrollView": 1, + "cell": 21, + "addIdx": 5, + "updatedProgress": 3, + "previous": 2, + "distantFuture": 1, + "determine": 1, + "parser.maxDepth": 1, + "throw": 1, + "NSString*": 13, + "start": 3, + "using": 8, + "NSHTTPCookie": 1, + "reorder": 1, + "buffer": 7, + "newQueue": 3, + "CFReadStreamCreateForHTTPRequest": 1, + "sectionRowOffset": 2, + "TUITableViewInsertionMethodAfterIndex": 1, + "TTStyleContext": 1, + "typedef": 47, + "apply": 2, + "secure": 1, + "ASIHTTPAuthenticationNeeded": 1, + "*PACFileReadStream": 2, + "string": 9, + "hassle": 1, + "kCFStreamEventEndEncountered": 1, + "TTDASSERT": 2, + "ASIRequestCancelledErrorType": 2, + "setShouldWaitToInflateCompressedResponses": 1, + "global": 1, + "proxies": 3, + "negative": 1, + "ideal.": 1, + "jk_parse_next_token": 1, + "complete": 12, + "valueForKey": 2, + "*encoding": 1, + "*responseCookies": 3, + "attributesOfItemAtPath": 1, + "JKSerializeOptionPretty": 2, + "sectionOffset": 8, + "*or1String": 1, + "expired": 1, + "NSUnderlyingErrorKey": 3, + "didFailSelector": 2, + "Foo": 2, + "onThread": 2, + "indexPathForRowAtPoint": 2, + "CGSizeZero": 1, + "addKeyEntry": 2, + "setDataReceivedBlock": 1, + "objectFromJSONDataWithParseOptions": 2, + "different": 4, + "ASIAuthenticationDialog": 2, + "parser": 3, + "UIControlStateNormal": 1, + "offsetsFromUTF8": 1, + "LL": 1, + "objectWithUTF8String": 4, + "proxyAuthenticationRealm": 2, + "inspect": 1, + "redirectURL": 1, + "kCFStreamSSLAllowsAnyRoot": 1, + "noCurrentSelection": 2, + "won": 3, + "*oldStream": 1, + "JSONStringStateEscapedUnicode2": 1, + "SEL": 19, + "miscellany": 1, + "*proxyAuthenticationScheme": 2, + "onTarget": 7, + "some": 1, + "CGRectMake": 8, + "imageFrame.size": 1, + "mutableCollection": 7, + "__builtin_prefetch": 1, + "enable": 1, + "proxyUsername": 3, + "reflect": 1, + "respectively.": 1, + "forget": 2, + "not": 29, + "be": 49, + "CGSize": 5, + "said": 1, + "type": 5, + "//": 317, + "serializeUnsupportedClassesUsingDelegate": 4, + "errorWithDomain": 6, + "showNetworkActivityIndicator": 1, + "change": 2, + "handleStreamError": 1, + "ASIFileManagementError": 2, + "u": 4, + "whose": 2, + "TTMAXLOGLEVEL": 1, + "*proxyUsername": 2, + "requestReceivedResponseHeaders": 1, + "you": 10, + "mouse": 2, + "Directly": 2, + "true": 9, + "from": 18, + "configure": 2, + "": 1, + "": 4, + "usingCache": 5, + "successfully": 4, + "yes": 1, + "regenerated": 3, + "visible.size.width": 3, + "StyleViewController": 2, + "shouldUpdateNetworkActivityIndicator": 1, + "localeIdentifier": 1, + "NOT": 1, + "follow": 1, + "NSTimeInterval": 10, + "mutableObjectFromJSONData": 1, + "supply": 2, + "lastIndexPath.row": 2, + "*cell": 7, + "@optional": 2, + "hideNetworkActivityIndicatorAfterDelay": 1, + "incrementUploadSizeBy": 3, + "responseHeaders": 5, + "*authenticationCredentials": 2, + "TTRectInset": 3, + "TTLOGLEVEL_WARNING": 1, + "URLs": 2, + "safely": 1, + "parseOptionFlags": 11, + "scrollToRowAtIndexPath": 3, + "NSFastEnumeration": 2, + "releaseState": 1, + "&": 36, + "setComplete": 3, + "happened": 1, + "updateUploadProgress": 3, + "@catch": 1, + "*ASIAuthenticationError": 1, + "told": 1, + "*requestMethod": 1, + "self.view.bounds": 2, + "*_JKDictionaryCreate": 2, + "setNeedsRedirect": 1, + "HEAD": 10, + "headers": 11, + "deselectRowAtIndexPath": 3, + "viewFrame": 4, + "JSONKIT_VERSION_MINOR": 1, + "reliable": 1, + "YES": 62, + "JKValueTypeLongLong": 1, + "unless": 2, + "setDidFailSelector": 1, + "like": 1, + "dateWithTimeIntervalSinceNow": 1, + "NSMutableIndexSet": 6, + "": 4, + "JKManagedBufferOnHeap": 1, + "oldIndexPath": 2, + "_keepVisibleIndexPathForReload": 2, + "alloc": 47, + "setQueue": 2, + "especially": 1, + "_currentDragToReorderIndexPath": 1, + "didDeselectRowAtIndexPath": 3, + "colorWithRed": 3, + "helper": 1, + "these": 3, + "response": 17, + "delete": 1, + "efficient": 1, + "_pullDownView.frame": 1, + "returnObject": 3, + "attr": 3, + "<<": 16, + "ASICompressionError": 1, + "": 1, + "NS_BLOCK_ASSERTIONS": 1, + "JKTokenTypeFalse": 1, + "anAuthenticationBlock": 1, + "didReceiveResponseHeaders": 2, + "appendData": 2, + "here": 2, + "rangeOfString": 1, + "willAskDelegateForProxyCredentials": 1, + "StyleView*": 2, + "DEBUG_PERSISTENT_CONNECTIONS": 3, + "label": 6, + "allocate": 2, + "*jk_parse_dictionary": 1, + "xC0": 1, + "nonatomic": 40, + "JK_ENCODE_CACHE_SLOTS": 1, + "YES.": 1, + "downloadComplete": 2, + "responseString": 3, + "TUITableViewScrollPositionBottom": 1, + "UIEdgeInsetsMake": 3, + "JSONStringStateEscapedUnicodeSurrogate1": 1, + "*failedRequest": 1, + "updates": 2, + "discarded": 1, + "successfully.": 1, + "ASIConnectionFailureErrorType": 2, + "*pass": 1, + "fromIndexPath.section": 1, + "self.headerView": 2, + "rectForSection": 3, + "drag": 1, + "clickCount": 1, + "UNI_MAX_BMP": 1, + "conversionOK": 1, + "setDidFinishSelector": 1, + "PACurl": 1, + "rebuild": 2, + "submitting": 1, + "sec": 3, + "*sessionCredentialsLock": 1, + "decompress": 1, + "pullDownViewIsVisible": 3, + "withOptions": 4, + "didSelectRowAtIndexPath": 3, + "another": 1, + "isARepeat": 1, + "adapter": 1, + "dataSourceWithObjects": 1, + "reportFailure": 3, + "useHTTPVersionOne": 3, + "compressData": 1, + "JKSerializeOptionValidFlags": 1, + "setError": 2, + "indexes": 4, + "callBlock": 1, + "headerViewRect": 3, + "_headerView.layer.zPosition": 1, + "startingAtIndex": 4, + "kNetworkEvents": 1, + "reference": 1, + "ASIUseDefaultCachePolicy": 1, + "willRetryRequest": 1, + "*s": 3, + "point": 11, + "keyEnumerator": 1, + "FFFFFFF": 1, + "much": 2, + "setDownloadCache": 3, + "Do": 3, + "other": 3, + "handleBytesAvailable": 1, + "buildPostBody": 3, + "CGPoint": 7, + "tableViewWillReloadData": 3, + "scroll": 3, + "size_t": 23, + "visibleCellsNeedRelayout": 5, + "*stop": 7, + "atAddEntry": 6, + "Invokes": 2, + "_headerView.hidden": 4, + "*bandwidthUsageTracker": 1, + "but": 5, + "ll": 6, + "*cbSignature": 1, + "andKeys": 1, + "JKManagedBuffer": 5, + "static": 102, + "its": 9, + "Another": 1, + "downloadCache": 5, + "absoluteURL": 1, + "newDelegate": 6, + "JKSerializeOptionFlags": 16, + "incrementBandwidthUsedInLastSecond": 1, + "NSINTEGER_DEFINED": 3, + "network": 4, + "UIControlStateHighlighted": 1, + "new": 10, + "shouldContinueWhenAppEntersBackground": 3, + "_enqueueReusableCell": 2, + "compressedPostBody": 4, + "_dragToReorderCell": 5, + "<=>": 15, + "JK_JSONBUFFER_SIZE": 1, + "initWithCapacity": 2, + "*responseStatusMessage": 3, + "assign": 84, + "": 1, + "behaviour": 2, + "open": 2, + "NSInteger": 56, + "signed": 1, + "setFrame": 2, + "indexPathForFirstRow": 2, + "less": 1, + "": 1, + "break": 13, + "setReadStream": 2, + "andCachePolicy": 3, + "newTimeOutSeconds": 1, + "*sessionCookiesLock": 1, + "connect": 1, + "//lists.apple.com/archives/Macnetworkprog/2006/Mar/msg00119.html": 1, + ".keyHash": 2, + "entry": 41, + "they": 6, + "theUsername": 1, + "headerFrame.size.height": 1, + "TTViewController": 1, + "JK_ALIGNED": 1, + "NSUInteger": 93, + "checks": 1, + "does": 3, + "Not": 2, + "resuming": 1, + "redirectToURL": 2, + "stringWithFormat": 6, + "": 2, + "NSIndexPath": 5, + "UNI_SUR_HIGH_START": 1, + "": 1, + "domain": 2, + "memory": 3, + "readStreamIsScheduled": 1, + "rowHeight": 2, + "UIControlStateDisabled": 1, + "_jk_NSNumberAllocImp": 2, + "*jk_object_for_token": 1, + "mimeType": 2, + "*mimeType": 1, + "currentRunLoop": 2, + "ASIDataBlock": 3, + "ASINetworkQueue": 4, + "+": 195, + "globalStyleSheet": 4, + "JKFastClassLookup": 2, + "setConnectionCanBeReused": 2, + "https": 1, + "clientCertificateIdentity": 5, + "been": 1, + "headerView": 14, + "*compressedPostBodyFilePath": 1, + "pointer": 2, + "You": 1, + "#else": 8, + "ASITooMuchRedirectionErrorType": 3, + "valid": 5, + "eg": 2, + "willRedirectSelector": 2, + "_updateSectionInfo": 2, + "*dataDecompressor": 2, + "isNetworkInUse": 1, + "Ok": 1, + "kCFAllocatorDefault": 3, + "menuForRowAtIndexPath": 1, + "": 1, + "setUpdatedProgress": 1, + "headersReceivedBlock": 5, + "indexPathsForRowsInRect": 3, + "JKValueTypeDouble": 1, + "JKTokenTypeWhiteSpace": 1, + "setShouldAttemptPersistentConnection": 2, + "@end": 37, + "deprecated": 1, + "askDelegateForProxyCredentials": 1, + "updateProgressIndicator": 4, + "begin": 1, + "_headerView.frame.size.height": 2, + "TTStyle*": 7, + "_jk_NSNumberInitWithUnsignedLongLongImp": 2, + "FFFF": 3, + "JSONNumberStateFractionalNumber": 1, + "appropriate": 4, + "*bandwidthThrottlingLock": 1, + "NSNotFound": 1, + "canUseCachedDataForRequest": 1, + "scrollPosition": 9, + "zone": 8, + "ssize_t": 2, + "if": 297, + "required.": 1, + "isBandwidthThrottled": 2, + "NSProcessInfo": 2, + "aDownloadSizeIncrementedBlock": 1, + "bandwidth": 3, + "*clientCallBackInfo": 1, + "setRequestHeaders": 2, + "invocationWithMethodSignature": 1, + "backgroundTask": 7, + "JKParseState": 18, + "implemented": 7, + "self": 500, + "indexPathForSelectedRow": 4, + "window": 1, + "directly": 1, + "Tested": 1, + "JKEncodeOptionAsTypeMask": 1, + "files": 5, + "it": 28, + "attemptToApplyCredentialsAndResume": 1, + "how": 2, + "ASI_DEBUG_LOG": 11, + "persistent": 5, + "_ASINetworkErrorType": 1, + "always": 2, + "Also": 1, + "NetworkRequestErrorDomain": 12, + "allowCompressedResponse": 3, + "U": 2, + "present": 3, + "aStartedBlock": 1, + "collection": 11, + "forHost": 2, + "take": 1, + "pullDownRect": 4, + "NSEvent*": 1, + "NSUTF8StringEncoding": 2, + "only.": 1, + "JKParseOptionStrict": 1, + "removeAllIndexes": 2, + "JKClassNull": 1, + "defined": 16, + "totalSize": 2, + "uncompressData": 1, + "label.frame.size.height": 2, + "c": 7, + "NSInvocation": 4, + "close": 5, + "slow.": 1, + "far": 2, + "isMultitaskingSupported": 2, + "self.view": 4, + "jk_parse_skip_whitespace": 1, + "shouldRedirect": 3, + "add": 5, + "proxyAuthentication": 7, + "cellRect": 7, + "auth": 2, + "section.headerView.superview": 1, + "objectToRelease": 1, + "bundle": 3, + "NSParameterAssert": 15, + "NSLocalizedFailureReasonErrorKey": 1, + "q": 2, + "are": 15, + "saveProxyCredentialsToKeychain": 1, + "old": 5, + "realm": 14, + "*atAddEntry": 1, + "JKConstPtrRange": 2, + "expire": 2, + "mutableObjectWithData": 2, + "UIFont": 3, + "JSONNumberStateFinished": 1, + "bits": 1, + "redirect": 4, + "NSWindow": 2, + "//self.variableHeightRows": 1, + "JKManagedBufferFlags": 1, + "Leopard": 1, + "": 2, + "nextConnectionNumberToCreate": 1, + "ASIHTTPRequest": 31, + "statusTimer": 3, + "sections": 4, + "_indexPathShouldBeFirstResponder": 2, + "xE0": 1, + "port": 17, + "fails.": 1, + "connections": 3, + "NSUIntegerMax": 7, + "*window": 2, + "_delegate": 2, + "toIndexPath.section": 1, + "requests": 21, + "redirectCount": 2, + "ULONG_MAX": 3, + "CGRectGetMaxY": 2, + "SBJsonStreamParserError": 1, + "*parseState": 16, + "authenticationRealm": 4, + "updateStatus": 2, + "kGroupSpacing": 5, + "JK_INIT_CACHE_AGE": 1, + "must": 6, + "But": 1, + "Necessary": 1, + "UITableView": 1, + "JK_PREFETCH": 2, + "***Black": 1, + "": 1, + "stackbuf": 8, + "JKTokenTypeNumber": 1, + "showAuthenticationDialog": 1, + "Generally": 1, + "setConnectionInfo": 2, + "chance": 2, + "attemptToApplyProxyCredentialsAndResume": 1, + "newIndexPath": 6, + "isKindOfClass": 2, + "about": 4, + "headerViewForSection": 6, + "aKey": 13, + "dispatch_async": 1, + "startForNoSelection": 1, + "intersecting": 1, + "setContentOffset": 2, + "0": 2, + "imageFrame": 2, + "viewDidAppear": 2, + "still": 2, + "underlyingError": 1, + "don": 2, + "pinnedHeader.frame": 2, + "int": 55, + "bytes": 8, + "blocks": 16, + "upload/download": 1, + "bandwidthUsedInLastSecond": 1, + "NSMakeCollectable": 3, + "*sections": 1, + "willRedirectToURL": 1, + "avoids": 1, + "nothing": 2, + "NSProgressIndicator": 4, + "reuse": 3, + "self.delegate": 10, + "derepeaterEnabled": 1, + "unsignedLongLongValue": 1, + "hasBytesAvailable": 1, + "setDefaultCache": 2, + "NSArray": 27, + "prepareForReuse": 1, + "UIViewController": 2, + "uint8_t": 1, + "isMainThread": 2, + "download": 9, + "askDelegateForCredentials": 1, + "": 1, + "requestID": 2, + "An": 2, + "*credentials": 1, + "repeative": 1, + "shouldWaitToInflateCompressedResponses": 4, + "aReceivedBlock": 2, + "ASIAuthenticationState": 5, + "opened": 3, + "timing": 1, + "Prevents": 1, + "restart": 1, + "*firstResponder": 1, + "unsafe_unretained": 2, + "DO": 1, + "_tableFlags.dataSourceNumberOfSectionsInTableView": 2, + "memset": 1, + "jk_encode_writePrettyPrintWhiteSpace": 1, + "#error": 6, + "setUseSessionPersistence": 1, + "*inflatedFileDownloadOutputStream": 2, + "": 1, + "view.image.size": 1, + "systemFontOfSize": 2, + "removeIdx": 3, + "result": 4, + "include": 1, + "browsers": 1, + "NSUpArrowFunctionKey": 1, + "setAnimateSelectionChanges": 1, + "Class": 3, + "magic": 1, + "TUITableViewSection": 16, + "UNI_MAX_UTF16": 1, + "JKTokenTypeObjectEnd": 1, + "own": 3, + "NSStringEncoding": 6, + "invocation": 4, + "addTimer": 1, + "||": 42, + "uploaded": 2, + "incrementing": 2, + "aBytesSentBlock": 1, + "*a": 2, + "doesn": 1, + "JKObjCImpCache": 2, + "*redirectURL": 2, + "never": 1, + "IBOutlet": 1, + "indexPathsForVisibleRows": 2, + "firstByteMark": 1, + "JKPtrRange": 2, + "rawResponseData": 4, + "setAllowCompressedResponse": 1, + "*clientCertificates": 2, + "setDefaultUserAgentString": 1, + "specified": 1, + "willDisplayCell": 2, + "UIColor": 3, + "x.": 1, + "JSONNumberStateWholeNumberMinus": 1, + "JK_UNUSED_ARG": 2, + "lastBytesSent": 3, + "Authentication": 3, + "addRequestHeader": 5, + "JKValueTypeNone": 1, + "JKTokenTypeComma": 1, + "middle": 1, + "max": 7, + "removeObjectForKey": 1, + "nextRequestID": 1, + "retrying": 1, + "show": 2, + "rand": 1, + "secondsSinceLastActivity": 1, + "ASIDataCompressor": 2, + "length": 32, + "JKClassNumber": 1, + "tell": 2, + "didReceiveData": 2, + "enumerateIndexesUsingBlock": 1, + "subview": 1, + "jk_objectStack_setToStackBuffer": 1, + "kCFStreamSSLValidatesCertificateChain": 1, + "JKSerializeOptionNone": 3, + "read": 3, + "showAccurateProgress": 7, + "updateDownloadProgress": 3, + "gzipped": 7, + "isSynchronous": 2, + "greater": 1, + "h": 3, + "atScrollPosition": 3, + "*adapter": 1, + "HEADRequest": 1, + "*sharedQueue": 1, + "removeFileAtPath": 1, + "setBytesReceivedBlock": 1, + "incremented": 4, + "width": 1, + "ui": 1, + "JKClassDictionary": 1, + "JSONStringStateEscapedUnicode3": 1, + "cancelAuthentication": 1, + "When": 15, + "expires": 1, + "MaxValue": 2, + "*persistentConnectionsPool": 1, + "scanUpToString": 1, + "TUITableViewInsertionMethodAtIndex": 1, + "false.": 1, + "double": 3, + "point.y": 1, + "size.width": 1, + "text": 12, + "closed": 1, + "name": 7, + "authenticate": 1, + "sizeToFit": 1, + "any": 3, + "sharedQueue": 4, + "v": 4, + "@required": 1, + "delegateTableViewWillDisplayCellForRowAtIndexPath": 1, + "SBJsonStreamParserWaitingForData": 1, + "Opaque": 1, + "requestWithURL": 7, + "dataSourceNumberOfSectionsInTableView": 1, + "addImageView": 5, + "frame.origin.x": 3, + "UNI_MAX_UTF32": 1, + "forMode": 1, + "NSNumberInitWithUnsignedLongLongImp": 2, + "warn_unused_result": 9, + "updating": 1, + "OK": 1, + "performThrottling": 2, + "got": 1, + "CGRect": 41, + "NSMutableCopying": 2, + "yet": 1, + "This": 7, + "unsubscribeFromNetworkReachabilityNotifications": 1, + "didClickRowAtIndexPath": 1, + "jk_encode_add_atom_to_buffer": 1, + "ASIDataDecompressor": 4, + "setDelegate": 4, + "": 1, + "of": 34, + "calls": 1, + "clang": 3, + "JKTokenCache": 2, + "readStream": 5, + "allowResumeForFileDownloads": 2, + "enumerateIndexPathsFromIndexPath": 4, + "Number": 1, + "getObjects": 2, + "Reference": 1, + "Called": 6, + "param": 1, + "JKClassUnknown": 1, + "JSONStringStateEscapedNeedEscapeForSurrogate": 1, + "__builtin_expect": 1, + "anIdentity": 1, + "tells": 1, + "*request": 1, + "argumentNumber": 1, + "UIScrollView": 1, + "*requestID": 3, + "*path": 1, + "Are": 1, + "NSDefaultRunLoopMode": 2, + "policy": 7, + "sent": 6, + "keep": 2, + "initWithDomain": 5, + "serializeObject": 1, + "should": 8, + "downloadProgressDelegate": 10, + "left/right": 2, + "md5Hash": 1, + "inProgress": 4, + "ensure": 1, + "CFTypeRef": 1, + "stream": 13, + "view.style": 2, + "message": 2, + "fromContentType": 2, + "moveRowAtIndexPath": 2, + "**error": 1, + "JKTokenValue": 2, + "have": 15, + "storeAuthenticationCredentialsInSessionStore": 2, + "proxyCredentials": 1, + "isCancelled": 6, + "*newIndexPath": 1, + ".height": 4, + "objectIndex": 48, + "JSONKitSerializingBlockAdditions": 2, + "removeIndex": 1, + "exists": 1, + "addTextView": 5, + "SSIZE_MAX": 1, + "delegateAuthenticationLock": 1, + "userAgentHeader": 2, + "_tableView.dataSource": 3, + "xFA082080UL": 1, + "fffffffffffffffLL": 1, + "running": 4, + "As": 1, + "requestCookies": 1, + "DEBUG_THROTTLING": 2, + "disk": 1, + "brief": 1, + "C": 6, + "raw": 3, + "//#import": 1, + "setClientCertificateIdentity": 1, + "mutableCopy": 2, + "*dictionary": 13, + "JSONStringStateEscapedUnicodeSurrogate2": 1, + "manually": 1, + "postBodyReadStream": 2, + "tableView": 45, + "their": 3, + "Used": 13, + "technically": 1, + "do": 5, + "didFinishSelector": 2, + "clientCertificates": 2, + "parseUTF8String": 2, + "setSelected": 2, + "_dataSource": 6, + "Stupid": 2, + "We": 7, + "mutableObjectFromJSONString": 1, + "necessary": 2, + "progressLock": 1, + "methodSignatureForSelector": 1, + "sortedArrayUsingSelector": 1, + "index": 11, + "try": 3, + "credentials": 35, + "removeTemporaryUploadFile": 1, + "Invalid": 1, + "*proxyType": 1, + "moment": 1, + "background": 1, + "TT_RELEASE_SAFELY": 12, + "JKParseAcceptValueOrEnd": 1, + "JKDictionaryEnumerator": 4, + "types": 2, + "setShouldUpdateNetworkActivityIndicator": 1, + "time": 9, + "appendPostDataFromFile": 3, + "User": 1, + "ASIBasicBlock": 15, + "*user": 1, + "compare": 4, + "__cplusplus": 2, + "cancel": 5, + "webserver": 1, + "redirections": 1, + "*_tableView": 1, + "received": 5, + "*compressedPostBody": 1, + "downloadDestinationPath": 11, + "setWillRedirectSelector": 1, + "didCreateTemporaryPostDataFile": 1, + "startSynchronous": 2, + "setLastActivityTime": 1, + "_JKDictionaryCapacityForCount": 4, + "JKEncodeOptionStringObj": 1, + "invalidate": 2, + "kCFStreamEventErrorOccurred": 1, + "count": 99, + "setValidatesSecureCertificate": 1, + "*requestCredentials": 1, + "contents": 1, + "check": 1, + ".key": 11, + "newCount": 1, + "*password": 2, + "responseStatusMessage": 1, + "payload": 1, + "s.height": 3, + "_selectedIndexPath": 9, + "jk_max": 3, + "setBytesSentBlock": 1, + "const": 28, + "requestCredentials": 1, + "setNeedsLayout": 3, + "*topVisibleIndex": 1, + "class_getInstanceSize": 2, + "": 9, + "&&": 123, + "needed": 3, + "m": 1, + "setupPostBody": 3, + "now.": 1, + "sourceIllegal": 1, + "JK_WARN_UNUSED_NONNULL_ARGS": 1, + "without": 1, + "last": 1, + "KB": 4, + "runLoopMode": 2, + "apache": 1, + "accept": 2, + "defaultUserAgentString": 1, + "TUITableViewScrollPositionNone": 2, + "strong": 4, + "protocol": 10, + "CFNetwork": 3, + "_previousDragToReorderIndexPath": 1, + "jk_collectionClassLoadTimeInitialization": 2, + "": 1, + "char": 19, + "*array": 9, + "sessionCredentialsLock": 1, + "": 1, + "jk_encode_write1slow": 2, + "Deprecated": 4, + "*username": 2, + "likely": 1, + "setCancelledLock": 1, + "ASIFallbackToCacheIfLoadFailsCachePolicy": 2, + "{": 541, + "identifier": 7, + "*accumulator": 1, + "JKTokenCacheItem": 2, + "JSONNumberStateWholeNumberZero": 1, + "writing": 2, + "objectFromJSONData": 1, + "behind": 1, + "setDidCreateTemporaryPostDataFile": 1, + "dispatch_get_main_queue": 1, + "Garbage": 1, + "reloadData": 3, + "format": 18, + "": 2, + "CATransaction": 3, + "indexPathsToRemove": 2, + "bottom": 6, + "removeUploadProgressSoFar": 1, + "by": 12, + "press": 1, + "indexPathForFirstVisibleRow": 2, + "didFirstLayout": 1, + "text.frame": 1, + "ok": 1, + "itself": 1, + "@protocol": 3, + "JK_CACHE_SLOTS_BITS": 2, + "measure": 1, + "didChangeValueForKey": 1, + "sure": 1, + "@implementation": 13, + "params": 1, + "ignore": 1, + "dateFromRFC1123String": 1, + "shouldPresentCredentialsBeforeChallenge": 4, + "newCredentials": 16, + "TUITableViewStylePlain": 2, + "released": 2, + "CFStringRef": 1, + "setRunLoopMode": 2, + "store": 4, + "parse": 1, + "wanted": 1, + "NSStringFromSelector": 16, + "JKParseOptionValidFlags": 1, + "setObject": 9, + "performSelectorOnMainThread": 2, + "all": 3, + "JKFlags": 5, + "withEvent": 2, + "reason": 1, + "again": 1, + "wait": 1, + "layoutSubviewsReentrancyGuard": 1, + "JSONDecoder": 2, + "CFHTTPMessageRef": 3, + "iPhone": 3, + "_tableFlags.derepeaterEnabled": 1, + "JK_EXPECT_F": 14, + "progress": 13, + "displayNameForKey": 1, + "copy": 4, + "*_JKDictionaryHashTableEntryForKey": 2, + "connectionInfo": 13, + "ASIHTTPRequestDelegate": 1, + "": 1, + "addBasicAuthenticationHeaderWithUsername": 2, + "useCookiePersistence": 3, + "_tableFlags.layoutSubviewsReentrancyGuard": 3, + "Likely": 1, + "Setting": 1, + "JSONKitDeserializing": 2, + "_tableView": 3, + "dequeueReusableCellWithIdentifier": 2, + "targetIndexPathForMoveFromRowAtIndexPath": 1, + "context.font": 1, + "*atEntry": 3, + "uint32_t": 1, + "timeOutPACRead": 1, + "your": 2, + "credentialWithUser": 2, + "proxyAuthenticationScheme": 2, + "NSOperation": 1, + "Check": 1, + "dragged": 1, + "Unexpected": 1, + "resize": 3, + "stringBuffer.bytes.length": 1, + "connection.": 2, + "CFReadStreamSetProperty": 1, + "size": 12, + "tag": 2, + "http": 4, + "*responseHeaders": 2, + "UIViewAutoresizingFlexibleWidth": 4, + "JK_EXPECT_T": 22, + "request.": 1, + "Force": 2, + "characterAtIndex": 1, + "compressDataFromFile": 1, + "NSError": 51, + "persistence": 2, + "self.nsWindow": 3, + "allValues": 1, + "JK_WARN_UNUSED_PURE_NONNULL_ARGS": 1, + "findProxyCredentials": 2, + "objectFromJSONStringWithParseOptions": 2, + "affects": 1, + "buildRequestHeaders": 3, + "unlock": 20, + "measureBandwidthUsage": 1, + "slower": 1, + "UNI_SUR_LOW_START": 1, + "use.": 1, + "*proxyDomain": 2, + "allow": 1, + "unsigned": 62, + "upwards.": 1, + "TUITableViewRowInfo": 3, + "TUITableViewScrollPosition": 5, + "UIControlEventTouchUpInside": 1, + "forState": 4, + "*cacheSlot": 4, + "*keys": 2, + "attempt": 3, + "newCookie": 1, + "NSObject": 5, + "aProxyAuthenticationBlock": 1, + "account": 1, + "self.animateSelectionChanges": 1, + "irow": 3, + "event": 8, + "UILabel": 2, + "local": 1, + "a.frame.origin.y": 2, + "JKParseOptionNone": 1, + "removeTemporaryUncompressedDownloadFile": 1, + "self.bounds.size.width": 4, + "_tableView.delegate": 1, + "kCFStreamPropertyHTTPResponseHeader": 1, + "calling": 1, + "compatible": 1, + "JSONData": 3, + "#ifdef": 10, + "cancelLoad": 3, + "repr": 5, + "UIButton*": 1, + "starts.": 1, + "CFRetain": 4, + "self.contentSize": 3, + "JKManagedBufferLocationMask": 1, + "Collection": 1, + "selected": 2, + "forRowAtIndexPath": 2, + "addHeader": 5, + "xDC00": 1, + "JSONNumberStateStart": 1, + "longer": 2, + "runningRequestCount": 1, + "button": 5, + "initWithObjects": 2, + "NSMallocException": 2, + "JKTokenTypeNull": 1, + "presented": 2, + "*mainRequest": 2, + "setRequestRedirectedBlock": 1, + "_visibleItems": 14, + "accumulator": 1, + "JKManagedBufferMustFree": 1, + "jsonData": 6, + "*startForNoSelection": 2, + "case": 8, + "_JKDictionaryHashTableEntryForKey": 1, + "_JKArrayClass": 5, + "removeTemporaryCompressedUploadFile": 1, + "*ASIHTTPRequestVersion": 2, + "d": 11, + "LONG_MIN": 3, + "indexPathsToAdd": 2, + "styleType": 3, + "loadView": 4, + "ld": 2, + "_JKDictionaryHashEntry": 2, + "clearSession": 2, + "cancelled": 5, + "setRequestMethod": 3, + "setAnimationsEnabled": 1, + "next": 2, + "rowCount": 3, + "initWithObjectsAndKeys": 1, + "JKParseOptionComments": 2, + "automatically": 2, + "cbSignature": 1, + "setPostBodyReadStream": 2, + "associated": 1, + "anything": 1, + "round": 1, + "newValue": 2, + "*decoder": 1, + "host": 9, + "": 1, + "NSIntegerMax": 4, + "r": 6, + "range.length": 1, + "JSONNumberStateExponentStart": 1, + "LLONG_MIN": 1, + "Clear": 3, + "TTSectionedDataSource": 1, + "JKEncodeOptionAsData": 1, + "performRedirect": 1, + "custom": 2, + "us": 2, + "kTextStyleType": 2, + "JSONNumberStateExponent": 1, + "anUploadSizeIncrementedBlock": 1, + "fail": 1, + "__has_feature": 3, + "__IPHONE_OS_VERSION_MAX_ALLOWED": 4, + "ASINetworkErrorType": 1, + "responder": 2, + "__inline__": 1, + "partial": 2, + "useKeychainPersistence": 4, + "NSLocaleIdentifier": 1, + "ASIHTTPRequests": 1, + "connectionCanBeReused": 4, + "firstIndexPath": 4, + "number": 2, + "readResponseHeaders": 2, + "proxyAuthenticationRetryCount": 4, + "out": 7, + "Expected": 3, + "jk_parse_is_newline": 1, + "UNI_MAX_LEGAL_UTF32": 1, + "options": 6, + "various": 1, + "sessionProxyCredentialsStore": 1, + "removeObject": 2, + "**": 27, + "occurs": 1, + "NSNumberAllocImp": 2, + "encodeOption": 2, + "JK_FAST_TRAILING_BYTES": 2, + "asks": 1, + "removeCredentialsForHost": 1, + "newSize": 1, + "withProgress": 4, + "true.": 1, + "total": 4, + "__LP64__": 4, + "enumerateIndexPathsUsingBlock": 2, + "#": 2, + "xffffffffffffffffULL": 1, + "@property": 150, + "applyProxyCredentials": 2, + "ASIInternalErrorWhileBuildingRequestType": 3, + "": 1, + "sessionCredentials": 6, + "generated": 3, + "*pullDownView": 1, + "constrainedToSize": 2, + "*newObjects": 1, + "jk_encode_write1": 1, + "an": 20, + "users": 1, + "label.font": 3, + "_JKDictionaryAddObject": 4, + "Custom": 1, + "started": 1, + "clientCallBackInfo": 1, + "persistentConnectionsPool": 3, + "shouldPresentAuthenticationDialog": 1, + "willChangeValueForKey": 1, + "*error_": 1, + "into": 1, + "mutableObjectFromJSONStringWithParseOptions": 2, + "because": 1, + "superview": 1, + "SBJsonParser": 2, + "frame.size.height": 15, + "decompressed": 3, + "finishedDownloadingPACFile": 1, + "pullDownView": 1, + "JK_WARN_UNUSED_PURE": 1, + "incase": 1, + "responses": 5, + "itemsPtr": 2, + "false": 3, + "CFHTTPMessageCreateRequest": 1, + "responseCookies": 1, + "lock": 19, + "*url": 2, + "so": 15, + "lastIndexPath.section": 2, + "visibleRect": 3, + "cell.reuseIdentifier": 1, + "nn": 4, + "userAgentString": 1, + "checkRequestStatus": 2, + "*exception": 1, + "DEBUG_REQUEST_STATUS": 4, + "view.backgroundColor": 2, + "Internal": 2, + "NSInvalidArgumentException": 6, + "location": 3, + "useful": 1, + "__GNUC__": 14, + "addView": 5, + "__GNUC_MINOR__": 3, + "expect": 3, + "parseStringEncodingFromHeaders": 2, + "apps": 1, + "firstResponder": 3, + "*identifier": 1, + "headerHeight": 4, + "*_JKArrayCreate": 2, + "uploadSizeIncrementedBlock": 5, + "capacity": 51, + "extract": 1, + "Whether": 1, + "kCFStreamSSLAllowsExpiredCertificates": 1, + "*delegateAuthenticationLock": 1, + "agent": 2, + "cell.layer.zPosition": 1, + "section": 60, + "label.text": 2, + "the": 197, + "notified": 2, + "constructor": 1, + "relativeToURL": 1, + "All": 2, + "remain": 1, + "authenticationNeeded": 3, + "sortedArrayUsingComparator": 1, + "above.": 1, + "Username": 2, + "Deserializing": 1, + "No": 1, + "TUITableViewScrollPositionMiddle": 1, + "flashScrollIndicators": 1, + "usually": 2, + "changes": 4, + "Details": 1, + "*b": 2, + "E2080UL": 1, + "standard": 1, + "didReceiveBytes": 2, + "comes": 3, + "text.autoresizingMask": 1, + "kFramePadding": 7, + "*requestHeaders": 1, + "initWithURL": 4, + "relativeOffset": 5, + "NSOrderedSame": 1, + "makeFirstResponderIfNotAlreadyInResponderChain": 1, + "mutationsPtr": 2, + "[": 1227, + "session": 5, + "PRODUCTION": 1, + "may": 8, + "*atCharacterPtr": 1, + "animated": 27, + "Temporarily": 1, + "*argv": 1, + "hideNetworkActivityIndicator": 1, + "methods": 2, + "visible": 16, + "andPassword": 2, + "Serializing": 1, + "//Some": 1, + "fileSize": 1, + "postBodyWriteStream": 7, + "selectValidIndexPath": 3, + "CGRectIntersectsRect": 5, + "bounds": 2, + "particular": 2, + "UIApplication": 2, + "Create": 1, + "setDidReceiveResponseHeadersSelector": 1, + "i": 41, + "NTLM": 6, + "JK_DEPRECATED_ATTRIBUTE": 6, + "*connectionsLock": 1, + "////////////": 4, + "remaining": 1, + "layout": 3, + "instance": 2, + "NSZone": 4, + "JSONStringStateEscapedUnicode4": 1, + "setDidStartSelector": 1, + "Type": 1, + "JSONStringStateEscape": 1, + "setMaxBandwidthPerSecond": 1, + "ASICacheStoragePolicy": 2, + "temporaryUncompressedDataDownloadPath": 3, + "contentOffset": 2, + "parser.delegate": 1, + "currentHash": 1, + "xF8": 1, + "setDownloadSizeIncrementedBlock": 1, + "*userInfo": 2, + "setSessionCookies": 1, + "push": 1, + "PlaygroundViewController": 2, + "arrayWithObjects": 1, + "trailingBytesForUTF8": 1, + "_headerView.autoresizingMask": 1, + "styleWithSelector": 4, + "CGFloat": 44, + "NSCParameterAssert": 19, + "expiring": 1, + "setLastBytesRead": 1, + "LONG_MAX": 3, + "cookie": 1, + "setTimeOutSeconds": 1, + "NSMutableData": 5, + "RedirectionLimit": 1, + "frame.origin.y": 16, + "kCFHTTPVersion1_0": 1, + "validatesSecureCertificate": 3, + "NSIntegerMin": 3, + "Content": 1, + "Methods": 1, + "NSError**": 2, + "initialization": 1, + "talking": 1, + "type.": 3, + "NSLocalizedDescriptionKey": 10, + "ntlmComponents": 1, + "ASIProxyAuthenticationNeeded": 1, + "_styleHighlight": 6, + "anObject": 16, + "JKParseOptionPermitTextAfterValidJSON": 2 + }, + "wisp": { + "Wisp": 13, + "access": 1, + "implemting": 1, + "expression": 6, + "does": 1, + "choose": 1, + "Commas": 2, + "pioneered": 1, + "Instead": 1, + "capturing": 1, + "defined": 1, + "made": 2, + "If": 2, + "map": 3, + "##": 2, + "pairs.": 1, + "dsl": 1, + "conventions": 3, + "/": 1, + "usually": 3, + "special": 4, + "javascript": 1, + "expressed": 3, + "macro": 7, + "methods": 1, + "containing": 1, + "fulfill": 1, + "variadic": 1, + "JSONs": 1, + "-": 33, + "function": 7, + "multiple": 1, + "rest": 7, + "nil.": 1, + "defn": 2, + "named": 1, + "tagret": 1, + "as": 4, + "you": 1, + "achieve": 1, + "objects.": 1, + "presented": 1, + "+": 9, + "example": 1, + "filter": 2, + "render": 2, + "compatible": 1, + "overload": 1, + "Numbers": 1, + "consice": 1, + ")": 75, + "enter": 1, + "clojure": 2, + "chaining.": 1, + "reduce": 3, + "log": 1, + "lists": 1, + "today": 1, + "The": 1, + "differences": 1, + "maps": 1, + "verbose": 1, + "Now": 1, + "need": 1, + "dialect": 1, + "naming": 1, + "but": 7, + "}": 4, + "structures": 1, + "themselves.": 1, + "effort": 1, + "purpose": 2, + "chaining": 1, + "item": 2, + "sugar": 1, + "single": 1, + "ease": 1, + "easier": 1, + "no": 1, + "{": 4, + "data": 1, + "expressions": 6, + "isEnterKey": 1, + "#": 2, + "Making": 1, + "We": 1, + "load": 1, + "Although": 1, + "y": 6, + "Overloads": 1, + "operation": 3, + "different": 1, + "form.": 1, + "diff": 1, + "function.": 1, + "contain": 1, + "void": 2, + "conditional": 1, + "assemble": 1, + "simbols": 1, + "compiles": 1, + "following": 2, + "optional": 2, + "character": 1, + "desired": 1, + "when": 1, + "build": 1, + "or": 2, + "array.": 1, + "problem": 1, + "s": 7, + "jQuery": 1, + "types.": 1, + "You": 1, + "quoted": 1, + "input": 1, + "homoiconic": 1, + "making": 1, + "many.": 1, + "context": 1, + "used": 1, + "program": 1, + "open": 2, + "on": 1, + "arrays.": 1, + "instance": 1, + "which": 3, + "Maps": 2, + "available": 1, + "functional": 1, + "very": 2, + "this": 2, + "then": 1, + "get": 2, + "Other": 1, + "strings": 3, + "multiline": 1, + "white": 1, + "immediately.": 1, + "some": 2, + "clojurescript.": 1, + "Macros": 2, + "come": 1, + "into": 2, + "JS": 17, + "sometimes": 1, + "let": 2, + "case": 1, + "less": 1, + "listToVector": 1, + "items": 2, + "without": 2, + "representing": 1, + "anyway": 1, + "first": 4, + "keys": 1, + "Any": 1, + "of": 16, + "party": 1, + "JS.": 2, + "<": 1, + "third": 2, + "names": 1, + "Forms": 1, + "tradeoffs.": 1, + "handy": 1, + "keypress": 2, + "throws": 1, + "understand": 1, + "with": 6, + "bop": 1, + "may": 1, + "define": 4, + "operations": 3, + "exception.": 1, + "booleans": 2, + "unless": 5, + "args": 1, + "evaluate": 2, + "for": 5, + "target": 1, + "identifiers": 2, + "shortcut": 1, + "has": 2, + "def": 1, + "passed": 1, + "resulting": 1, + "c": 1, + "though": 1, + "options": 2, + "version": 1, + "@body": 1, + "Special": 1, + "it": 10, + "value": 2, + "lot": 2, + "expression.": 1, + "a": 24, + "Instantiation": 1, + "respective": 1, + "suffixed": 1, + "name": 2, + "As": 1, + "yet": 1, + "macros": 2, + "calls": 3, + "defmacro": 3, + "arguments.": 2, + "introspection": 1, + "will": 6, + "not": 4, + "instantiation": 1, + "prevent": 1, + "]": 22, + "expanded": 2, + "chanining": 1, + "body": 4, + "Vectors": 1, + "in": 16, + "common": 1, + "overloaded": 1, + "evaluates": 2, + "results.": 1, + "Else": 1, + "want": 2, + "[": 22, + "compile": 3, + "hand": 1, + "Let": 1, + "hash": 1, + ".": 6, + "syntax": 2, + "API": 1, + "space": 1, + "one": 3, + "getInputText": 1, + "at": 1, + "Compbining": 1, + "solve": 1, + "invoked": 2, + "js": 1, + "future": 2, + "keywords": 1, + "being": 1, + "associated": 2, + "numbers": 2, + "human": 1, + "delimited": 1, + "arbitary": 1, + "message": 2, + "although": 1, + "dashDelimited": 1, + "needs": 1, + "return": 1, + "if": 7, + "(": 77, + "all": 4, + "take": 2, + "by": 2, + "For": 2, + "added": 1, + "via": 2, + "execute": 1, + "syntax.": 1, + "beep": 1, + "an": 1, + "compbine": 1, + "such": 1, + "&": 6, + "output.": 1, + "capture": 1, + "transparent": 1, + "more": 3, + "bindings": 1, + "desugars": 1, + "metadata": 1, + "documentation": 1, + "keyword": 1, + "string": 1, + "Docstring": 1, + "since": 1, + "print": 1, + "Not": 1, + "side": 2, + "incerement": 1, + "Note": 3, + "fn": 15, + "Lists": 1, + "they": 3, + "encouraning": 1, + "requires": 1, + "their": 2, + "follows": 1, + "__privates__": 1, + "puts": 1, + "macros.": 1, + "makes": 1, + "lexical": 1, + "also": 2, + "x": 22, + "result": 2, + "expressions.": 1, + "increment": 1, + "just": 3, + "console.log": 2, + "wisp": 6, + "form": 10, + "simbol": 1, + "like": 2, + "effects": 1, + "unlike": 1, + "Strings": 2, + "window.addEventListener": 1, + "limited.": 1, + "t": 1, + "metadata.": 1, + ".log": 1, + "console": 1, + "Type.": 1, + "Bindings": 1, + "symbolic": 2, + "evaluating": 1, + "ways": 1, + "Since": 1, + "use": 2, + "few": 1, + "equivalent": 2, + "we": 2, + "vector": 1, + "cons": 2, + "class.": 1, + "depending": 1, + "evaluation": 1, + "instead.": 1, + "key": 3, + "Method": 1, + "arguments": 7, + "Via": 1, + "that": 7, + "exectued": 1, + "baz": 2, + "undefined": 1, + "everything": 1, + "More": 1, + "try": 1, + "separating": 1, + "evaluated.": 1, + "them": 1, + "before": 1, + "strings.": 1, + "comments": 1, + "popular": 1, + "Booleans": 1, + "to": 21, + "there": 1, + "condition": 4, + "char": 1, + "second": 1, + "missing": 1, + "be": 15, + "new": 2, + "because": 1, + "called.": 1, + "are": 14, + "Class": 1, + "Also": 1, + "text": 1, + "object": 1, + "handler": 1, + "Conventions": 1, + "than": 1, + "argument": 1, + "similar": 2, + "true": 6, + "sum": 3, + "list": 2, + "how": 1, + "compiled": 2, + "code": 3, + "differenc": 1, + "templating": 1, + "bound": 1, + ";": 199, + "type": 2, + "more.reduce": 1, + "bar": 4, + "from": 2, + "doesn": 1, + "forms": 1, + "have": 2, + "vectors": 1, + "functions": 8, + "time": 1, + "nil": 4, + "Keywords": 3, + "Characters": 2, + "translating": 1, + "In": 5, + "predicate": 1, + "constats": 1, + "lisp": 1, + "monday": 1, + "and": 9, + "up": 1, + "method": 2, + "the": 9, + "plain": 2, + "above": 1, + "effect": 1, + "might": 1, + "do": 4, + "can": 13, + "Functions": 1, + "b": 5, + "implemented.": 1, + "isPredicate": 1, + "is": 20, + "number": 3, + "foo": 6, + "rest.reduce": 1, + "readable": 1, + "false": 2, + "language": 1, + "Unfortunately": 1, + "dash": 1 + }, + "TXL": { + "by": 6, + "resolveParentheses": 2, + "rule": 12, + "expression": 9, + "program": 1, + "N2": 8, + "N1": 8, + "replace": 6, + "addop": 2, + "N": 2, + "*": 2, + "+": 2, + "E": 3, + "/": 3, + "-": 3, + ")": 2, + "(": 2, + "|": 3, + "]": 38, + "[": 38, + "resolveDivision": 2, + "primary": 4, + "mulop": 2, + "resolveAddition": 2, + "main": 1, + "number": 10, + "define": 12, + "where": 1, + "resolveMultiplication": 2, + "resolveSubtraction": 2, + "NewE": 3, + "construct": 1, + "not": 1, + "term": 6, + "end": 12 + }, + "Ruby": { + "Kernel.rand": 1, + "bottle": 1, + "raise": 17, + "lib": 1, + "": 1, + "now": 1, + "URI": 3, + "plugin.developed_by": 1, + "@queues": 2, + "github": 1, + "Jekyll": 3, + "invalid": 1, + "for": 1, + "klass_name": 2, + "uninitialized": 1, + "redis.server": 1, + "DependencyCollector.new": 1, + "download_strategy": 1, + "%": 10, + "cmd.split": 1, + "Pathname.new": 3, + "threaded": 1, + "push": 1, + "redis.respond_to": 2, + "HOMEBREW_REPOSITORY": 4, + "self.use": 1, + "force": 1, + "class": 7, + "working.size": 1, + "processed": 2, + "bottle_url": 3, + "ENV": 4, + "override": 3, + "installed_prefix": 1, + "share": 1, + "head": 3, + "before_hooks": 2, + "patches": 2, + "id": 1, + "accept": 1, + "of": 1, + "self.class.skip_clean_paths.include": 1, + "plugin": 3, + "Jenkins": 1, + "NotFound": 1, + "self.class.skip_clean_all": 1, + "Job.reserve": 1, + "man1": 1, + "NameError": 2, + "inside": 2, + "path": 16, + "map": 1, + "inflections.humans.each": 1, + "ancestor": 3, + "attributes": 2, + "download_strategy.new": 2, + "based": 1, + "brew": 2, + "after_fork": 2, + "stack": 2, + "Request": 2, + "clear": 1, + "possible_alias.file": 1, + "self.helpers": 1, + "app_file": 4, + "extends": 1, + "pattern": 1, + "CompilerFailure.new": 2, + "base.class_eval": 1, + "mime_type": 1, + "center": 1, + "/.*": 1, + "URI.escape": 1, + ".size": 1, + "h": 2, + "@spec_to_use": 4, + "json": 1, + "path.to_s": 3, + "Job.create": 1, + "Got": 1, + "self.expand_deps": 1, + "namespace": 3, + "path.respond_to": 5, + "capitalize": 1, + "bottle_version": 2, + "Rack": 1, + "attr": 4, + "constant": 4, + "args.empty": 1, + "name.basename": 1, + "Compiler": 1, + "pending": 1, + "options": 3, + "self.all": 1, + "err.to_s": 1, + ".capitalize": 1, + "width": 1, + "@sha1": 6, + "String": 2, + "patch_list": 1, + "enqueue_to": 2, + "|": 91, + "bottle_base_url": 1, + "delete": 1, + "

": 1, + "": 1, + "self.version": 1, + "a": 10, + "w/": 1, + "tapd": 1, + "to_check": 2, + "worker_id": 2, + "dequeue": 1, + "return": 25, + "to_s": 1, + "+": 47, + "name.to_s": 3, + "skip_clean": 2, + "rd.eof": 1, + "bottle_sha1": 2, + ".include": 1, + "#plugin.depends_on": 1, + "owned": 1, + "ArgumentError": 1, + "HOMEBREW_CELLAR": 2, + "word.gsub": 4, + "Job.destroy": 1, + "devel": 1, + "Wrapper": 1, + "inflections.singulars": 1, + "HOMEBREW_PREFIX": 2, + "u": 1, + "Dir.pwd": 3, + "plugin.display_name": 1, + "set": 36, + "stable": 2, + "/not": 1, + "stdout.reopen": 1, + "relative_pathname.stem.to_s": 1, + "man7": 1, + "failure.compiler": 1, + "self": 11, + "Z": 3, + "align": 2, + "caveats": 1, + "HOMEBREW_CACHE_FORMULA.mkpath": 1, + "SecureRandom.hex": 1, + ".rb": 1, + "#888": 1, + "name.capitalize.gsub": 1, + "@dependencies": 1, + "u.phone_numbers": 1, + "task": 2, + "name.kind_of": 2, + "default": 2, + "wr": 3, + "distributed": 1, + "plugin.description": 1, + "phone_numbers": 1, + "type": 10, + "n": 4, + "threw": 1, + "string.gsub": 1, + "/i": 2, + "lower_case_and_underscored_word.to_s.dup": 1, + "apply_inflections": 3, + "supplied": 4, + "here": 1, + "removed_ENV_variables": 2, + "add_charset": 1, + "f.deps.map": 1, + "Worker.working": 1, + "HOMEBREW_REPOSITORY/": 2, + "word.empty": 1, + "match": 6, + "Plugin.before_dequeue_hooks": 1, + "constant.const_get": 1, + "explanation": 1, + "possible_cached_formula.to_s": 1, + "formula_with_that_name": 1, + "instance_eval": 2, + "/redis": 1, + "@#": 2, + "NoClassError.new": 1, + "ENV.remove_cc_etc": 1, + "autotools": 1, + "remove": 1, + "Formula.path": 1, + "path.relative_path_from": 1, + "table_name": 1, + "bottle_filename": 1, + "FormulaUnavailableError.new": 1, + "n.id": 1, + "@url": 8, + "use_code": 1, + "exec": 2, + "def": 143, + "constant.ancestors.inject": 1, + "send_file": 1, + "error": 3, + "out": 4, + "@standard": 3, + "cc_failures": 1, + "number.to_i.abs": 2, + "alias": 1, + "method_override": 4, + "patch_list.download": 1, + "Delegator.delegate": 1, + "replacement": 4, + "hash": 2, + "template": 1, + "": 1, + "@downloader.cached_location": 1, + "@standard.nil": 1, + "relative_pathname": 1, + "@unstable": 2, + "content_type": 3, + "bottle_block.instance_eval": 1, + "ftp": 1, + "camel_cased_word": 6, + "item": 4, + "attr_writer": 4, + "demodulize": 1, + "instance_variable_set": 1, + "klass.respond_to": 1, + "color": 1, + "inflections.acronym_regex": 2, + "registered_at": 1, + "self.class.send": 1, + "formula_with_that_name.readable": 1, + "{": 68, + "": 1, + "end": 236, + "libexec": 1, + "email": 1, + "or": 7, + "require": 58, + "self.path": 1, + "File.expand_path": 1, + "Hash": 3, + "HOMEBREW_CACHE_FORMULA": 2, + "Delegator.target.register": 1, + "mirror_list.empty": 1, + "use/testing": 1, + "p.patch_args": 1, + "next": 1, + "cc.name": 1, + "installed_prefix.children.length": 1, + "id=": 1, + "key.sub": 1, + "MultiJsonCoder.new": 1, + "camel_cased_word.split": 1, + "*": 3, + "self.class.dependencies.external_deps": 1, + "delegate": 1, + "Delegator": 1, + "config.is_a": 1, + "Application": 2, + "dependencies": 1, + ".flatten.uniq": 1, + "dasherize": 1, + "v.to_s.empty": 1, + "parts.pop": 1, + "http": 1, + "t": 3, + "start": 7, + "redis.lrange": 1, + "reset": 1, + "self.configuration": 1, + "sha1": 4, + "config.log": 2, + "attr_rw": 4, + "": 1, + "man6": 1, + "*args": 16, + "doc": 1, + "word.tr": 1, + "": 1, + "string": 4, + "word.to_s.dup": 1, + "result": 8, + "VERSION": 1, + "CHECKSUM_TYPES.detect": 1, + "hash.upcase": 1, + "Expected": 1, + "via": 1, + "Plugin.after_dequeue_hooks": 1, + "args": 5, + "config_file": 2, + "-": 34, + "@head": 4, + "last": 4, + "@path": 1, + "Redis.new": 1, + "ActiveSupport": 1, + "rd.close": 1, + "removed_ENV_variables.each": 1, + "queues.size": 1, + "dev": 1, + "attrs.each": 1, + "val": 10, + "path.stem": 1, + "SHEBANG#!python": 1, + "skip_clean_all": 2, + "Plugin.after_enqueue_hooks": 1, + "w": 6, + "on": 2, + "else": 25, + "Z0": 1, + "running": 2, + "CHECKSUM_TYPES": 2, + "*/": 1, + "
": 1,
+      "above.": 1,
+      "reload_templates": 1,
+      "@spec_to_use.url": 1,
+      "A": 5,
+      "Plugin": 1,
+      "@before_first_fork": 2,
+      "paths": 3,
+      "font": 2,
+      "Redis": 3,
+      "hasher": 2,
+      "&": 31,
+      "#remove": 1,
+      "safe_constantize": 1,
+      "value": 4,
+      "characters": 1,
+      "std_cmake_args": 1,
+      "retry": 2,
+      "SHEBANG#!ruby": 2,
+      "formula_with_that_name.file": 1,
+      "settings": 2,
+      "thread_safe": 2,
+      "explicitly_requested": 1,
+      "humanize": 2,
+      "Z_": 1,
+      "underscored_word": 1,
+      "method": 4,
+      "hook": 9,
+      "failure": 1,
+      ".gsub": 5,
+      ".sort_by": 1,
+      "queues.inject": 1,
+      "p": 2,
+      "fn.incremental_hash": 1,
+      "Pathname": 2,
+      "Delegator.target.helpers": 1,
+      "nend": 1,
+      "mirror": 1,
+      "redis": 7,
+      "prefix.parent": 1,
+      "peek": 1,
+      "role": 1,
+      "gzip": 1,
+      "result.tr": 1,
+      "redis.client.id": 1,
+      "man2": 1,
+      "false": 26,
+      "dependencies.add": 1,
+      "layout": 1,
+      "IO.pipe": 1,
+      "val.nil": 3,
+      "CHECKSUM_TYPES.each": 1,
+      "self.target": 1,
+      "instance_variable_defined": 2,
+      "external_deps": 1,
+      "extensions": 6,
+      "raise_errors": 1,
+      "YAML.load_file": 1,
+      "classify": 1,
+      "@skip_clean_paths": 3,
+      "@stack.call": 1,
+      "settings.add_charset": 1,
+      "rescue": 13,
+      "plugin.uses_repository": 1,
+      "For": 1,
+      "rack": 1,
+      "self.class.mirrors": 1,
+      "src=": 1,
+      "absolute_redirects": 1,
+      "Formula": 2,
+      "plugin.version": 1,
+      "camelize": 2,
+      "sha256": 1,
+      "tapd.directory": 1,
+      ".slice": 1,
+      "@stack": 1,
+      "self.register": 2,
+      "args.collect": 1,
+      "enable": 1,
+      "remove_queue": 1,
+      "i": 2,
+      "FileUtils": 1,
+      "system": 1,
+      "location": 1,
+      "DCMAKE_FIND_FRAMEWORK": 1,
+      "logging": 2,
+      "ARGV.build_devel": 2,
+      "from_url": 1,
+      "ordinalize": 1,
+      "require_all": 4,
+      "self.class.keg_only_reason": 1,
+      "release": 1,
+      "private": 3,
+      "initialize": 2,
+      "the": 8,
+      "Wno": 1,
+      "validate_variable": 7,
+      "@redis": 6,
+      "dump_errors": 1,
+      "downloader.fetch": 1,
+      "name.include": 2,
+      "server.unshift": 6,
+      "webrick": 1,
+      "URI.const_defined": 1,
+      "KegOnlyReason.new": 1,
+      "NoQueueError.new": 1,
+      "Delegator.target.send": 1,
+      "extend": 2,
+      "built": 1,
+      "dep.to_s": 1,
+      "table_name.to_s.sub": 1,
+      "png": 1,
+      "var": 1,
+      "HTML": 2,
+      "port": 4,
+      "keys": 6,
+      "}": 68,
+      "Parser.new": 1,
+      "cmd": 6,
+      "SystemCallError": 1,
+      "before_fork": 2,
+      "Object": 1,
+      "text": 3,
+      "b": 4,
+      "constantize": 1,
+      "failure.build.zero": 1,
+      "module": 8,
+      "sha1.shift": 1,
+      "config": 3,
+      "after": 1,
+      "ARGV.formulae.include": 1,
+      "string.sub": 2,
+      "bzip2": 1,
+      "keg_only_reason": 1,
+      "mirror_list": 2,
+      "remove_worker": 1,
+      "pop": 1,
+      "body": 1,
+      "redis.smembers": 1,
+      "opoo": 1,
+      "Stat": 2,
+      "plist_name": 2,
+      "pluralize": 3,
+      "ordinal": 1,
+      "inflections.acronyms": 1,
+      "self.new": 1,
+      "attrs": 1,
+      ".freeze": 1,
+      "username": 1,
+      "v": 2,
+      "decode": 2,
+      "break": 4,
+      "auto": 1,
+      "each": 1,
+      "path.nil": 1,
+      "Z/": 1,
+      "host": 3,
+      "cc": 3,
+      "args.dup": 1,
+      "yield": 5,
+      "[": 56,
+      "url": 12,
+      "man8": 1
+    },
+    "Literate CoffeeScript": {
+      "@method": 1,
+      "method": 1,
+      "exports.Scope": 1,
+      "_": 3,
+      "hasOwnProperty.call": 1,
+      "declared": 2,
+      "knows": 1,
+      "know": 1,
+      "at": 1,
+      "tempVars": 1,
+      "not": 1,
+      "need": 2,
+      "new": 2,
+      "well": 1,
+      "CoffeeScript.": 1,
+      "scoping": 1,
+      "way": 1,
+      "is": 3,
+      "class": 2,
+      "{": 4,
+      "**Block**": 1,
+      "Scope.root": 1,
+      "and": 5,
+      "an": 1,
+      "Object": 1,
+      "add": 1,
+      "@parent.add": 1,
+      "plan": 1,
+      "its": 3,
+      "(": 5,
+      "this": 3,
+      "supposed": 1,
+      "top": 2,
+      "function": 2,
+      "**Scope**": 2,
+      "extend": 1,
+      "code": 1,
+      "param": 1,
+      "chain": 1,
+      "var": 4,
+      "tempVars.sort": 1,
+      "nested": 1,
+      "that": 2,
+      "@positions": 4,
+      "made": 1,
+      "called": 1,
+      "same": 1,
+      "existing": 1,
+      "Return": 1,
+      "v.name": 1,
+      ".push": 1,
+      "or": 1,
+      "root": 1,
+      "variable": 1,
+      "]": 4,
+      "tree": 1,
+      "assignedVariables": 1,
+      "list": 1,
+      "current": 1,
+      "Scope": 1,
+      "scope.": 2,
+      "use.": 1,
+      "immediate": 3,
+      "about": 1,
+      "external": 1,
+      "it": 4,
+      "parent": 2,
+      "Initialize": 1,
+      "generate": 1,
+      "v": 1,
+      "name": 8,
+      "@root": 1,
+      "file.": 1,
+      "in": 2,
+      "be": 2,
+      "of": 4,
+      "type": 5,
+      "else": 2,
+      "with": 3,
+      ")": 6,
+      "The": 2,
+      "shape": 1,
+      "create": 1,
+      "up": 1,
+      "has": 1,
+      "enclosing": 1,
+      "we": 4,
+      "then": 1,
+      "In": 1,
+      "scope": 2,
+      "the": 12,
+      "@variables.push": 1,
+      "null": 1,
+      "lookups": 1,
+      "regulates": 1,
+      "declare": 1,
+      "realVars.sort": 1,
+      "realVars": 1,
+      "find": 1,
+      "are": 3,
+      "require": 1,
+      "level": 1,
+      "helpers": 1,
+      "a": 8,
+      "v.type.assigned": 1,
+      "assignments": 1,
+      "super": 1,
+      "you": 2,
+      "return": 1,
+      ".type": 1,
+      "as": 3,
+      "[": 4,
+      "unless": 1,
+      "shared": 1,
+      "which": 3,
+      "given": 1,
+      "}": 4,
+      "overrides": 1,
+      "where": 1,
+      "bodies.": 1,
+      "Import": 1,
+      "variables": 3,
+      "scopes": 1,
+      "lexical": 1,
+      "As": 1,
+      "@expressions": 1,
+      "last": 1,
+      "scopes.": 1,
+      "to.": 1,
+      "-": 5,
+      "when": 1,
+      "@shared": 1,
+      "for": 3,
+      "node": 1,
+      "within": 2,
+      "one.": 1,
+      "Each": 1,
+      "When": 1,
+      "if": 2,
+      "belongs": 2,
+      "to": 8,
+      "object": 1,
+      ".concat": 1,
+      "Adds": 1,
+      "@parent": 2,
+      "should": 1,
+      "constructor": 1,
+      "@variables": 3,
+      "reference": 3
+    },
+    "Forth": {
+      "defined": 1,
+      "ahead": 2,
+      "extension": 4,
+      "return": 5,
+      "necessary": 1,
+      "word": 9,
+      "cs": 2,
+      "http": 1,
+      "char": 10,
+      "keep": 1,
+      ")": 87,
+      "BITS": 3,
+      "flush": 1,
+      "adjacent": 2,
+      "update": 1,
+      "If": 1,
+      "unused": 1,
+      "of": 3,
+      "i*2": 1,
+      "addr": 11,
+      "@": 13,
+      "nr": 1,
+      "x": 10,
+      "parsing.": 1,
+      "power": 2,
+      "*": 9,
+      "m": 2,
+      "save": 2,
+      "abort": 3,
+      "current": 5,
+      "OR": 1,
+      "tools": 1,
+      "nonimmediate": 1,
+      "semantics": 3,
+      "undefined": 2,
+      "BEGIN": 3,
+      "or": 1,
+      "DUP": 14,
+      "UNTIL": 3,
+      "SWAP": 8,
+      "source": 5,
+      "A": 5,
+      "highest": 1,
+      "Copyright": 3,
+      "editor": 1,
+      "flag": 4,
+      "SP": 1,
+      "IF": 10,
+      "orig1": 1,
+      "else": 6,
+      "forth": 2,
+      "y": 5,
+      "execute": 1,
+      "until": 1,
+      "**n": 1,
+      "n": 22,
+      "MAX": 2,
+      "while": 2,
+      "allot": 2,
+      "list": 1,
+      "+": 17,
+      "compute": 1,
+      "if": 9,
+      "less": 1,
+      "MAXPOW2": 2,
+      "c": 3,
+      "interpret": 1,
+      "X": 5,
+      "end": 1,
+      "synonym": 1,
+      "e.g.": 2,
+      "dup": 10,
+      "immediate": 19,
+      "INVERT": 1,
+      "orig2": 1,
+      "find": 2,
+      "noname": 1,
+      "n1": 2,
+      "branch": 5,
+      "body": 1,
+      "compile": 2,
+      "pick": 1,
+      "#source": 2,
+      "Brinkhoff": 3,
+      "here": 9,
+      "bl": 4,
+      "state": 2,
+      "N": 6,
+      "and": 3,
+      "core": 1,
+      "C": 9,
+      "stack": 3,
+      "over": 5,
+      "recurse": 1,
+      "tib": 1,
+      "dest": 5,
+      "unresolved": 4,
+      "n2": 2,
+      "-": 473,
+      "refill": 2,
+      "number": 4,
+      "NOT": 3,
+      "rot": 2,
+      "reveal": 1,
+      "parse": 5,
+      "chars": 1,
+      "roll": 1,
+      "see": 1,
+      "drop": 4,
+      "pad": 3,
+      "begin": 2,
+      "does": 5,
+      "Kernel": 4,
+      "c@": 2,
+      "block": 8,
+      "|": 4,
+      "loop": 4,
+      "Forth": 1,
+      "defer": 2,
+      "Block": 2,
+      "scr": 2,
+      "thru": 1,
+      "type": 3,
+      "extended": 3,
+      ".": 5,
+      "kernel": 1,
+      "[": 16,
+      "empty": 2,
+      "n1_pow_n2": 1,
+      "not": 1,
+      "kata": 1,
+      "test": 1,
+      "assembler": 1,
+      "value": 1,
+      "bounds": 1,
+      "bool": 1,
+      "ok": 1,
+      "dodoes_code": 1,
+      "words.": 6,
+      "false": 1,
+      "numbers": 1,
+      "then": 5,
+      "/": 3,
+      "r": 18,
+      "bye": 1,
+      "**": 2,
+      "uses": 1,
+      "the": 7,
+      "ADJACENT": 3,
+      "query": 1,
+      "...": 4,
+      "restore": 1,
+      "ABORT": 1,
+      "utils": 1,
+      "bits": 3,
+      "NB": 3,
+      ";": 61,
+      "ELSE": 7,
+      "invert": 1,
+      "s": 4,
+      "with": 2,
+      "postpone": 14,
+      "have": 1,
+      "Undefined": 1,
+      "DEPTH": 2,
+      "postponers": 1,
+      "can": 2,
+      "NIP": 4,
+      "]": 15,
+      "repeat": 2,
+      "Tools": 2,
+      "R": 13,
+      "DO": 2,
+      "orig": 5,
+      "action": 1,
+      "log2_n": 1,
+      "be": 2,
+      "variable": 3,
+      "HELLO": 4,
+      "<": 14,
+      "resolve": 4,
+      "do": 2,
+      "#tib": 2,
+      "/cell": 2,
+      "u.r": 1,
+      "EMPTY": 1,
+      "OVER": 2,
+      "given": 3,
+      "i": 5,
+      "code": 3,
+      "swap": 12,
+      "input": 2,
+      "cells": 1,
+      "TWO": 3,
+      "align": 2,
+      "made": 2,
+      ".r": 1,
+      "within": 1,
+      "lastxt": 4,
+      "nip": 2,
+      "dictionary": 1,
+      "load": 2,
+      "HOW": 1,
+      "KataDiversion": 1,
+      "buffers": 2,
+      "TODO": 12,
+      "tuck": 2,
+      "blk": 3,
+      "u": 3,
+      "caddr": 1,
+      "maximum": 1,
+      "DROP": 5,
+      "N.": 1,
+      ".s": 1,
+      "MANY": 1,
+      "r@": 2,
+      "forget": 1,
+      "LOOP": 2,
+      "Forth2012": 2,
+      "Lars": 3,
+      "": 1,
+      "two": 2,
+      "x1": 5,
+      "I": 5,
+      "evaluate": 1,
+      "create": 2,
+      "emit": 2,
+      "literal": 4,
+      "//www.codekata.com/2007/01/code_kata_fifte.html": 1,
+      "which": 3,
+      "in": 4,
+      "(": 88,
+      "cr": 3,
+      "cmove": 1,
+      "depth": 1,
+      "true": 1,
+      "algorithm": 1,
+      "cell": 2,
+      "name": 1,
+      "x2": 5,
+      "LOG2": 1,
+      "THEN": 10,
+      "bits.": 1,
+      "negate": 1,
+      "following": 1,
+      "has": 1,
+      "below": 1,
+      "traverse": 1,
+      "buffer": 2,
+      "string": 3
+    },
+    "Java": {
+      "CopyOnWriteList": 4,
+      "clearCache": 1,
+      "initParser": 1,
+      "": 1,
+      "Functions.toEmailSafeString": 2,
+      "xsltModule.defineClassUnder": 1,
+      "ARRAY": 6,
+      "nokogiriClassCache.put": 26,
+      "for": 16,
+      "nokogiri.defineClassUnder": 2,
+      "htmlElemDesc.defineAnnotatedMethods": 1,
+      "XML_ATTRIBUTE_DECL_ALLOCATOR": 2,
+      "headers": 1,
+      "hasheq": 1,
+      "Opcodes.IALOAD": 1,
+      "XmlElement": 5,
+      "class": 12,
+      "com.google.protobuf.GeneratedMessage.FieldAccessorTable": 4,
+      "fixEmpty": 8,
+      "org.kohsuke.stapler.QueryParameter": 1,
+      "o": 12,
+      "setSlaves": 1,
+      "Float.TYPE": 2,
+      "EncodingHandler.class": 1,
+      "Jenkins": 2,
+      "": 1,
+      "T": 2,
+      "newBuilderForType": 2,
+      "xmlSchema.clone": 1,
+      "assigner": 2,
+      "xmlNode.clone": 1,
+      "XsltStylesheet.class": 2,
+      "long": 5,
+      "clear": 1,
+      "getSerializedSize": 2,
+      "htmlSaxModule.defineClassUnder": 1,
+      "HtmlSaxParserContext": 5,
+      "xmlSaxParserContext": 5,
+      "d.isArray": 1,
+      "Builder.create": 1,
+      "HtmlDomParserContext": 3,
+      "extends": 10,
+      "XStream": 1,
+      "Builder": 20,
+      "xmlEntityRef": 3,
+      ".computeBytesSize": 1,
+      "e.getMessage": 1,
+      "this.errorHandler": 2,
+      "rsp.sendRedirect2": 1,
+      "XmlSaxPushParser.class": 1,
+      "car": 18,
+      "o.hashCode": 2,
+      "h": 2,
+      "java.text.NumberFormat": 1,
+      "HtmlElementDescription": 1,
+      "com.google.protobuf.GeneratedMessage.Builder": 2,
+      "b.append": 1,
+      "buf.append": 21,
+      "htmlDocument.setParsedEncoding": 1,
+      "nodeSet": 1,
+      "sneakyThrow0": 2,
+      "package": 6,
+      "//XMLDocumentFilter": 1,
+      "runtimeException": 2,
+      "namespace": 1,
+      "XmlDocument.rbNew": 1,
+      "detected_encoding": 2,
+      "pcequiv": 2,
+      "attr": 1,
+      "IRubyObject": 35,
+      "getDimensions": 3,
+      "java.text.ParseException": 1,
+      "org.kohsuke.stapler.StaplerResponse": 1,
+      "dtd": 1,
+      "this.buf": 2,
+      "options": 4,
+      "getClassName": 1,
+      "Collections.synchronizedMap": 1,
+      "com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner": 2,
+      "String": 33,
+      "pi.defineAnnotatedMethods": 1,
+      "bs.isValidUtf8": 1,
+      "|": 5,
+      "Double.TYPE": 2,
+      "org.jruby.runtime.builtin.IRubyObject": 2,
+      "isValid": 2,
+      "BigInteger": 1,
+      "com.google.protobuf.CodedOutputStream": 2,
+      "": 3,
+      "this.unknownFields": 4,
+      "boolean": 36,
+      "cache.remove": 1,
+      "Type.OBJECT": 2,
+      "name.charAt": 1,
+      "final": 78,
+      "doQuietDown": 2,
+      "XmlXpathContext": 5,
+      "parse": 1,
+      "return": 267,
+      "+": 83,
+      "req": 6,
+      "hudson.PluginManager": 1,
+      "xmlDtd": 3,
+      "elementDecl.defineAnnotatedMethods": 1,
+      "ReferenceQueue": 1,
+      "xsltModule.defineAnnotatedMethod": 1,
+      "getObjectType": 1,
+      "name.getChars": 1,
+      "XML_DOCUMENT_ALLOCATOR": 2,
+      "ServletException": 3,
+      "htmlEntityLookup.defineAnnotatedMethods": 1,
+      "": 2,
+      "boost": 1,
+      "element.defineAnnotatedMethods": 1,
+      "getJobListeners": 1,
+      "CloudList": 3,
+      "xmlModule.defineModuleUnder": 1,
+      "@java.lang.Override": 4,
+      "xmlRelaxng.clone": 1,
+      "TopLevelItem": 3,
+      "descriptor": 3,
+      "XmlAttr.class": 1,
+      "throws": 26,
+      "RuntimeException": 5,
+      "DOUBLE": 7,
+      "e.getUnfinishedMessage": 1,
+      "java.io.InputStream": 4,
+      "isAdmin": 4,
+      "StringBuffer": 14,
+      "hudson.model.listeners.ItemListener": 1,
+      "methodDescriptor.indexOf": 1,
+      "setNodes": 1,
+      "RubyModule": 18,
+      "default": 6,
+      "RemoveNSAttrsFilter": 2,
+      "XmlProcessingInstruction": 5,
+      "nodeSet.defineAnnotatedMethods": 1,
+      "parsedMessage": 5,
+      "equiv": 17,
+      "java.lang.ref.SoftReference": 1,
+      "interface": 1,
+      "XmlComment.class": 1,
+      "to_bitField0_": 3,
+      "XML_SAXPARSER_CONTEXT_ALLOCATOR": 2,
+      "StaplerRequest": 4,
+      "type": 3,
+      "relaxng": 1,
+      "n": 3,
+      "k2": 38,
+      "htmlElemDesc": 1,
+      "m.getReturnType": 1,
+      "method.getParameterTypes": 1,
+      ".parse": 2,
+      "htmlDocument": 6,
+      "XML_DOCUMENT_FRAGMENT_ALLOCATOR": 2,
+      "ENCODING_HANDLER_ALLOCATOR": 2,
+      "characterData": 3,
+      "org.jruby.runtime.ThreadContext": 1,
+      "XmlEntityDecl": 1,
+      "xmlCdata": 3,
+      "relaxng.defineAnnotatedMethods": 1,
+      "xmlAttr": 3,
+      "match": 2,
+      "INT": 6,
+      "testee.equals": 1,
+      "java.io.IOException": 10,
+      "xmlSaxPushParser": 1,
+      "NokogiriErrorHandler": 2,
+      "other.getUnknownFields": 1,
+      "XML_DTD_ALLOCATOR": 2,
+      "xmlSaxModule.defineClassUnder": 2,
+      "headers.item": 2,
+      "xmlDocumentFragment": 3,
+      "nokogiri.internals.NokogiriHelpers.stringOrNil": 1,
+      "IHashEq": 2,
+      "hashCombine": 1,
+      "java.util.HashMap": 1,
+      "error": 1,
+      "g": 1,
+      "Long": 1,
+      "XmlEntityReference.class": 1,
+      ".floatValue": 1,
+      "getItem": 1,
+      ".getChildNodes": 2,
+      "writeTo": 1,
+      "XmlEntityDecl.EXTERNAL_GENERAL_UNPARSED": 1,
+      "stylesheet": 1,
+      "buf": 43,
+      "L": 1,
+      "getUnknownFields": 3,
+      "ReactorException": 2,
+      "doLogRss": 1,
+      "initFields": 2,
+      "getSort": 1,
+      "XmlDocument.class": 1,
+      "augs": 4,
+      "config.setErrorHandler": 1,
+      "hash": 3,
+      ".hasheq": 1,
+      "htmlDocument.setDocumentNode": 1,
+      "createXmlModule": 2,
+      "deserialization": 1,
+      "index": 4,
+      "SHORT_TYPE": 3,
+      "parameters": 4,
+      "xmlXpathContext": 3,
+      "PARSER.parseDelimitedFrom": 2,
+      "detected_encoding.isNil": 1,
+      "FormValidation": 2,
+      "item": 2,
+      "xmlRelaxng": 3,
+      "Byte.TYPE": 2,
+      "DefaultFilter": 2,
+      "xmlNodeSet": 5,
+      "nokogiri.NokogiriService": 1,
+      "type.equalsIgnoreCase": 2,
+      "{": 434,
+      "com.google.protobuf.UnknownFieldSet.getDefaultInstance": 1,
+      "end": 4,
+      "t.buf": 1,
+      "createXsltModule": 2,
+      "t.sort": 1,
+      "synchronized": 1,
+      "bs": 1,
+      "attrs.getLength": 1,
+      "xmlNamespace.clone": 1,
+      ".getSerializedSize": 1,
+      "internalGetFieldAccessorTable": 2,
+      "com.google.protobuf.GeneratedMessage": 1,
+      "//a": 1,
+      "ComputerListener.class": 1,
+      "c2": 2,
+      "any": 1,
+      "*": 2,
+      "XML_RELAXNG_ALLOCATOR": 2,
+      "HTML_ELEMENT_DESCRIPTION_ALLOCATOR": 2,
+      "XML_ELEMENT_ALLOCATOR": 2,
+      ".hasPermission": 1,
+      "name.length": 2,
+      "other": 6,
+      "create": 2,
+      "com.google.protobuf.CodedInputStream": 5,
+      "XML_ATTR_ALLOCATOR": 2,
+      "PARSER.parseFrom": 8,
+      "xmlSchema": 3,
+      "Numbers.compare": 1,
+      "nokogiriClassCacheGvarName": 1,
+      "BigInt": 1,
+      "Person": 10,
+      "t": 6,
+      "htmlDocument.setEncoding": 1,
+      "makeExtensionsImmutable": 1,
+      "java.math.BigInteger": 1,
+      "Jenkins.CloudList": 1,
+      "element_names": 3,
+      ".getAttributes": 1,
+      "parsePartialFrom": 1,
+      "VOID_TYPE": 3,
+      "e.getValue": 1,
+      "XML_XPATHCONTEXT_ALLOCATOR": 2,
+      "public": 214,
+      "documentFragment": 1,
+      "XmlDtd.class": 1,
+      ".mergeFrom": 2,
+      "BOOLEAN": 6,
+      "isInteger": 1,
+      "MasterComputer": 1,
+      "XmlXpathContext.class": 1,
+      "entref": 1,
+      "org.w3c.dom.NamedNodeMap": 1,
+      "typeDescriptor.toCharArray": 1,
+      "build": 1,
+      "persons.ProtocolBuffer.Person.getDefaultInstance": 2,
+      "IOException": 8,
+      "xmlText.clone": 1,
+      "result.bitField0_": 1,
+      "opcode": 17,
+      "org.jruby.RubyFixnum": 1,
+      "Messages.Hudson_NotANegativeNumber": 1,
+      "k1": 40,
+      "dtd.defineAnnotatedMethods": 1,
+      "m": 1,
+      "org.apache.xerces.xni.QName": 1,
+      "hudson.slaves.ComputerListener": 1,
+      "options.strict": 1,
+      "Hudson_NotAPositiveNumber": 1,
+      "basicLoad": 1,
+      "Stapler.getCurrentRequest": 1,
+      "entref.defineAnnotatedMethods": 1,
+      "catch": 27,
+      "FormValidation.error": 4,
+      "initErrorHandler": 1,
+      "tryGetCharsetFromHtml5MetaTag": 2,
+      "req.getParameter": 4,
+      "IPersistentCollection": 5,
+      "done": 4,
+      "com.google.protobuf.InvalidProtocolBufferException": 9,
+      "list.item": 2,
+      "XmlSyntaxError.class": 1,
+      "persons.ProtocolBuffer.Person.class": 2,
+      "Type": 42,
+      "getDescriptor": 15,
+      "super.mergeFrom": 1,
+      "extensionRegistry": 16,
+      "//cleanup": 1,
+      "HtmlElementDescription.class": 1,
+      "output.writeBytes": 1,
+      "Jenkins.getInstance": 2,
+      "number": 1,
+      "reader.defineAnnotatedMethods": 1,
+      "Constructor": 1,
+      "com.google.protobuf.ByteString": 13,
+      "Class": 10,
+      "new": 131,
+      "CloneNotSupportedException": 23,
+      "ruby.getClassFromPath": 26,
+      "getElementType": 2,
+      "e.setUnfinishedMessage": 1,
+      "input": 18,
+      "XmlSyntaxError": 5,
+      "warningText": 3,
+      "K": 2,
+      "getNameBytes": 5,
+      "super.startElement": 2,
+      "HTML_ENTITY_LOOKUP_ALLOCATOR": 2,
+      ".replace": 2,
+      "java.lang.reflect.Constructor": 1,
+      "ThreadContext": 2,
+      "Comparable": 1,
+      "0": 1,
+      "XmlNodeSet": 5,
+      "getDefaultInstance": 2,
+      "clone.setMetaClass": 23,
+      "xmlSyntaxError.defineAnnotatedMethods": 1,
+      "item.getName": 1,
+      "NokogiriStrictErrorHandler": 1,
+      "memoizedIsInitialized": 4,
+      "parseUnknownField": 1,
+      "XmlAttributeDecl": 1,
+      "case": 56,
+      "org.kohsuke.stapler.Stapler": 1,
+      "instanceof": 19,
+      "x.getClass": 1,
+      "z": 1,
+      "testee": 1,
+      "@CLIResolver": 1,
+      ".ensureFieldAccessorsInitialized": 2,
+      "": 3,
+      "org.w3c.dom.Document": 1,
+      "sneakyThrow": 1,
+      "XML_PROCESSING_INSTRUCTION_ALLOCATOR": 2,
+      "typeDescriptor": 1,
+      "c1": 2,
+      ".toStringUtf8": 1,
+      "com.google.protobuf.ByteString.copyFromUtf8": 2,
+      "XML_READER_ALLOCATOR": 2,
+      "k1.equals": 2,
+      ")": 1097,
+      "htmlDocument.defineAnnotatedMethods": 1,
+      "XmlDocument": 8,
+      "registry": 1,
+      "NokogiriService": 1,
+      "RubyClass": 92,
+      "getReturnType": 2,
+      "encHandler": 1,
+      "XML_CDATA_ALLOCATOR": 2,
+      "testee.toCharArray": 1,
+      "XmlEntityDecl.INTERNAL_PARAMETER": 1,
+      "XmlDtd": 5,
+      "xmlReader.clone": 1,
+      "s": 10,
+      "xmlNamespace": 3,
+      ".writeTo": 1,
+      "unknownFields": 3,
+      "XML_SYNTAXERROR_ALLOCATOR": 2,
+      "returnType": 1,
+      "c.getName": 1,
+      "stringOrNil": 1,
+      "super": 7,
+      "com.google.protobuf.Message": 1,
+      "org.cyberneko.html.filters.DefaultFilter": 1,
+      "": 2,
+      "NullPointerException": 3,
+      "hudson.util.CopyOnWriteList": 1,
+      "assignDescriptors": 1,
+      "PARSER": 2,
+      "hudson.util.FormValidation": 1,
+      "XML_TEXT_ALLOCATOR": 2,
+      "negative": 1,
+      "xmlDocument.clone": 1,
+      "errorText": 3,
+      "clojure.lang": 1,
+      "m.getParameterTypes": 1,
+      "//RubyModule": 1,
+      "setFeature": 4,
+      "nil": 2,
+      "nokogiri.internals.NokogiriHelpers.getNokogiriClass": 1,
+      "FormValidation.ok": 1,
+      "clearName": 1,
+      "PersonOrBuilder": 2,
+      "enableDocumentFragment": 1,
+      "nokogiri.XmlDocument": 1,
+      "runtime": 88,
+      "Map.Entry": 1,
+      "comment.defineAnnotatedMethods": 1,
+      "XmlNode": 5,
+      "xsltStylesheet.clone": 1,
+      "internal_static_persons_Person_fieldAccessorTable": 2,
+      "serialVersionUID": 1,
+      "schema": 2,
+      "createSaxModule": 2,
+      "com.google.protobuf.UnknownFieldSet.newBuilder": 1,
+      "com.google.protobuf.UnknownFieldSet.Builder": 1,
+      "XmlElementContent.class": 1,
+      "protected": 8,
+      "XmlComment": 5,
+      "isDarwin": 1,
+      "element": 3,
+      "XmlSaxParserContext": 5,
+      "XML_ENTITY_DECL_ALLOCATOR": 2,
+      "jenkins.model.Jenkins": 1,
+      "XmlText.class": 1,
+      "l": 5,
+      "LONG_TYPE": 3,
+      "elementContent.defineAnnotatedMethods": 1,
+      "nokogiri.internals": 1,
+      "": 1,
+      "getName": 3,
+      "StaplerResponse": 4,
+      "getType": 10,
+      "runtime.newNotImplementedError": 1,
+      "Numbers.equal": 1,
+      "java.lang.reflect.Method": 1,
+      "XmlSaxPushParser": 1,
+      "parseDelimitedFrom": 2,
+      "entityDecl.defineAnnotatedMethods": 1,
+      "rsp": 6,
+      "Document": 2,
+      "HtmlDocument.class": 1,
+      "rsp.sendError": 1,
+      "bitField0_": 15,
+      "rq": 1,
+      "XmlNode.class": 1,
+      "VOID": 5,
+      "org.jruby.runtime.ObjectAllocator": 1,
+      "types": 3,
+      "Node": 1,
+      "methodDescriptor.toCharArray": 2,
+      "Method": 3,
+      "ruby.getObject": 13,
+      "implements": 3,
+      "parser": 1,
+      "||": 8,
+      ".compareTo": 1,
+      "XSTREAM.alias": 1,
+      "name": 10,
+      "CHAR": 6,
+      "prototype": 2,
+      "HtmlEntityLookup.class": 1,
+      "SHORT": 6,
+      "c.isPrimitive": 2,
+      "xsltModule": 3,
+      "XmlReader": 5,
+      "e": 31,
+      "NamedNodeMap": 1,
+      "XML_NAMESPACE_ALLOCATOR": 2,
+      "entityDecl.defineConstant": 6,
+      "compare": 1,
+      "getNokogiriClass": 1,
+      "entityDecl": 1,
+      "XmlEntityDecl.EXTERNAL_PARAMETER": 1,
+      "hasName": 5,
+      "xmlElement": 3,
+      "": 2,
+      "xmlDocumentFragment.clone": 1,
+      ".equiv": 2,
+      "XmlRelaxng": 5,
+      "stylesheet.defineAnnotatedMethods": 1,
+      "nodeMap.item": 2,
+      ".internalBuildGeneratedFileFrom": 1,
+      "builder": 4,
+      "org.jruby.Ruby": 2,
+      "getJob": 1,
+      "input.readBytes": 1,
+      "errorHandler": 6,
+      "defaultInstance": 4,
+      "java.util.Map": 3,
+      "OBJECT": 7,
+      "attrs.getQName": 1,
+      "y": 1,
+      "filters": 3,
+      "defaultInstance.initFields": 1,
+      "@QueryParameter": 4,
+      "slaves": 3,
+      "getConstructorDescriptor": 1,
+      "isNamespace": 1,
+      "getDescriptorForType": 1,
+      "d.getComponentType": 1,
+      "XmlNodeSet.class": 1,
+      "Boolean.TYPE": 2,
+      "other.hasName": 1,
+      "maybeForceBuilderInitialization": 3,
+      "this.sort": 2,
+      "getSlaves": 1,
+      "(": 1097,
+      "doFieldCheck": 3,
+      "la": 1,
+      "Void.TYPE": 3,
+      "list": 1,
+      "setProperty": 4,
+      "XML_COMMENT_ALLOCATOR": 2,
+      "needed": 1,
+      "com.google.protobuf.AbstractParser": 1,
+      "unknownFields.build": 1,
+      "Type.ARRAY": 2,
+      "nokogiri.defineModuleUnder": 3,
+      "xmlSyntaxError.clone": 1,
+      "xmlComment": 3,
+      "org.apache.xerces.xni.XNIException": 1,
+      "getArgumentTypes": 2,
+      "data": 8,
+      "hudson.ExtensionListView": 1,
+      "r": 1,
+      "org.apache.xerces.xni.XMLAttributes": 1,
+      "org.kohsuke.stapler.StaplerRequest": 1,
+      "xmlNodeSet.setNodes": 1,
+      "this.off": 1,
+      "<<": 1,
+      "null": 80,
+      "XMLDocumentFilter": 3,
+      "Numbers.hasheq": 1,
+      "Integer": 2,
+      "XmlCdata.class": 1,
+      "descriptorData": 2,
+      "<": 13,
+      "BOOLEAN_TYPE": 3,
+      "List": 3,
+      "java.util.concurrent.ConcurrentHashMap": 1,
+      "htmlDoc": 1,
+      "onBuilt": 1,
+      "try": 26,
+      "hashCode": 1,
+      "getSlave": 1,
+      ".getNodeName": 4,
+      "buildPartial": 3,
+      "XmlNamespace.class": 1,
+      "headers.getLength": 1,
+      "b.toString": 1,
+      "XmlDocumentFragment": 5,
+      "ItemListener.class": 1,
+      "this": 16,
+      "java.util.Collections": 2,
+      "org.apache.xerces.xni.parser.XMLDocumentFilter": 1,
+      "result.name_": 1,
+      "XmlAttributeDecl.class": 1,
+      "": 1,
+      "Reference": 3,
+      "createHtmlModule": 2,
+      "Short.TYPE": 2,
+      "FLOAT_TYPE": 3,
+      "result.isInitialized": 1,
+      "INT_TYPE": 3,
+      "File": 2,
+      "equalsIgnoreCase": 1,
+      "options.noError": 2,
+      "XmlReader.class": 1,
+      "startElement": 2,
+      "k": 5,
+      "xmlNodeSet.clone": 1,
+      "@Override": 6,
+      "xmlElementDecl.clone": 1,
+      "classes": 2,
+      "this.len": 2,
+      "org.apache.xerces.parsers.DOMParser": 1,
+      "argumentTypes.length": 1,
+      "buf.toString": 4,
+      "name_": 18,
+      "this.mergeUnknownFields": 1,
+      "com.google.protobuf.ExtensionRegistryLite": 8,
+      "nokogiriClassCache": 2,
+      "XMLParserConfiguration": 1,
+      "Stapler.getCurrentResponse": 1,
+      "javax.servlet.ServletContext": 1,
+      "XML_ELEMENT_DECL_ALLOCATOR": 2,
+      "tag": 3,
+      "argumentTypes": 2,
+      "d.isPrimitive": 1,
+      "java.io.ObjectStreamException": 1,
+      "document.getDocumentElement": 2,
+      "dead": 1,
+      "from_bitField0_": 2,
+      "xmlDocument.defineAnnotatedMethods": 1,
+      "XmlText": 6,
+      "Number": 9,
+      "attrDecl.defineAnnotatedMethods": 1,
+      "Hudson.class": 1,
+      "persons.ProtocolBuffer.Person": 22,
+      "BYTE": 6,
+      "InterruptedException": 2,
+      "errorHandler.getErrors": 1,
+      "NumberFormat.getInstance": 2,
+      "QName": 2,
+      "getInternalName": 2,
+      "org.jruby.RubyArray": 1,
+      "EncodingHandler": 1,
+      "xmlAttr.clone": 1,
+      "persons.ProtocolBuffer.internal_static_persons_Person_descriptor": 3,
+      "d": 10,
+      "LONG": 7,
+      "cache": 1,
+      "double": 4,
+      "XSLT_STYLESHEET_ALLOCATOR": 2,
+      "XmlNamespace": 5,
+      "identical": 1,
+      "isPrimitive": 1,
+      "other.name_": 1,
+      "options.noWarning": 2,
+      "Exception": 1,
+      "req.getQueryString": 1,
+      "schema.defineAnnotatedMethods": 1,
+      "htmlSaxModule": 3,
+      "wrapDocument": 1,
+      "xmlSaxPushParser.defineAnnotatedMethods": 1,
+      "HTML_SAXPARSER_CONTEXT_ALLOCATOR": 2,
+      "getSize": 1,
+      "org.apache.xerces.xni.Augmentations": 1,
+      "nokogiri.HtmlDocument": 1,
+      "": 1,
+      "ret": 4,
+      "XMLAttributes": 2,
+      "htmlSaxParserContext": 4,
+      "persons": 1,
+      "text.defineAnnotatedMethods": 1,
+      "isWindows": 1,
+      "XmlElement.class": 1,
+      "pluginManager": 2,
+      "newUninitializedMessageException": 1,
+      ".setUnfinishedMessage": 1,
+      "ret1": 2,
+      "x": 8,
+      "element.uri": 1,
+      "FormValidation.warning": 1,
+      "import": 66,
+      "]": 54,
+      "xmlSaxParserContext.defineAnnotatedMethods": 1,
+      "e3779b9": 1,
+      "size": 16,
+      "htmlDocument.clone": 1,
+      "xmlText": 3,
+      "hudson.model": 1,
+      "htmlModule.defineModuleUnder": 1,
+      ".get": 1,
+      "list.getLength": 1,
+      "parseFrom": 8,
+      "persons.ProtocolBuffer.internal_static_persons_Person_fieldAccessorTable": 2,
+      "XmlAttr": 5,
+      "java.lang.ref.ReferenceQueue": 1,
+      "HtmlSaxParserContext.class": 1,
+      "XmlEntityReference": 5,
+      ".getClassName": 1,
+      "off": 25,
+      "XmlElementDecl.class": 1,
+      "@SuppressWarnings": 1,
+      "internal_static_persons_Person_descriptor": 3,
+      "true": 21,
+      "XmlEntityDecl.INTERNAL_PREDEFINED": 1,
+      "xsltStylesheet": 3,
+      "isInitialized": 5,
+      "nokogiri": 6,
+      "StaplerResponse.SC_FORBIDDEN": 1,
+      "&&": 6,
+      "XML_NODESET_ALLOCATOR": 2,
+      "comment": 1,
+      "if": 116,
+      "xmlSaxParserContext.clone": 1,
+      "hudson.Platform": 1,
+      "DOMParser": 1,
+      "input.readTag": 1,
+      "XmlEntityDecl.EXTERNAL_GENERAL_PARSED": 1,
+      "char": 13,
+      "setNameBytes": 1,
+      "xmlElementDecl": 3,
+      "XmlProcessingInstruction.class": 1,
+      ".equalsIgnoreCase": 5,
+      "htmlSaxParserContext.clone": 1,
+      "persons.ProtocolBuffer.PersonOrBuilder": 1,
+      ";": 891,
+      "int": 62,
+      "context.getRuntime": 3,
+      "charset": 2,
+      "t.off": 1,
+      "<=>": 1,
+      "root": 6,
+      "NokogiriNonStrictErrorHandler4NekoHtml": 1,
+      "XmlDocumentFragment.class": 1,
+      "xmlProcessingInstruction": 3,
+      "xmlXpathContext.clone": 1,
+      "Jenkins.MasterComputer": 1,
+      "ref": 16,
+      "ElementValidityCheckFilter": 3,
+      "createNokogiriClassCahce": 2,
+      "NodeList": 2,
+      "super.writeReplace": 1,
+      "java.lang.ref.Reference": 1,
+      ".toString": 1,
+      "attrs.removeAttributeAt": 1,
+      "NokogiriService.HTML_DOCUMENT_ALLOCATOR.allocate": 1,
+      "xmlElement.clone": 1,
+      "mutable_bitField0_": 1,
+      "len": 24,
+      "entries": 1,
+      "XML_SCHEMA_ALLOCATOR": 2,
+      "static": 141,
+      ".getACL": 1,
+      "xpathContext.defineAnnotatedMethods": 1,
+      "hudson.cli.declarative.CLIResolver": 1,
+      "node": 14,
+      "attrDecl": 1,
+      "j": 9,
+      "while": 10,
+      ".add": 1,
+      "PluginManager": 1,
+      "seed": 5,
+      "java.io.File": 1,
+      "XML_NODE_ALLOCATOR": 2,
+      "cache.entrySet": 1,
+      "Slave": 3,
+      "writeReplace": 1,
+      "com.google.protobuf.Descriptors.Descriptor": 4,
+      "": 2,
+      "getNewEmptyDocument": 1,
+      "transient": 2,
+      "com.google.protobuf.UnknownFieldSet": 2,
+      ".getDescriptor": 1,
+      "c.getParameterTypes": 1,
+      "d.getName": 1,
+      "//": 16,
+      ".getName": 1,
+      "bs.toStringUtf8": 1,
+      "cdata.defineAnnotatedMethods": 1,
+      "RubyArray.newEmptyArray": 1,
+      "getItems": 1,
+      "allocate": 30,
+      "ParseException": 1,
+      "elementValidityCheckFilter": 3,
+      "e.getKey": 1,
+      "onChanged": 4,
+      "noInit": 1,
+      "xmlSyntaxError": 4,
+      "ruby_encoding.isNil": 1,
+      "xmlDtd.clone": 1,
+      "RubyFixnum.newFixnum": 6,
+      ".generateResponse": 2,
+      "t.len": 1,
+      "htmlModule.defineClassUnder": 3,
+      "persons.ProtocolBuffer.Person.Builder.class": 2,
+      "nodeMap.getLength": 1,
+      "ruby_encoding": 3,
+      "CHAR_TYPE": 3,
+      "Messages": 1,
+      "Hudson": 5,
+      "xmlComment.clone": 1,
+      "name.rawname": 2,
+      "c": 21,
+      "Throwable": 4,
+      "org.w3c.dom.NodeList": 1,
+      "result": 5,
+      "hc": 4,
+      "com.google.protobuf.ExtensionRegistry": 2,
+      "throw": 9,
+      "rq.poll": 2,
+      "XsltStylesheet": 4,
+      "Opcodes.IASTORE": 1,
+      "clone": 47,
+      "org.apache.xerces.xni.parser.XMLParserConfiguration": 1,
+      "args": 6,
+      "HTML_DOCUMENT_ALLOCATOR": 2,
+      "htmlEntityLookup": 1,
+      "-": 15,
+      ".getMessageTypes": 1,
+      "ISeq": 2,
+      "qs": 3,
+      "setName": 1,
+      "PARSER.parsePartialFrom": 1,
+      "org.jruby.runtime.load.BasicLibraryService": 1,
+      "Platform.isDarwin": 1,
+      "val.get": 1,
+      "output": 2,
+      "XmlRelaxng.class": 1,
+      "encHandler.defineAnnotatedMethods": 1,
+      "val": 3,
+      "HTMLConfiguration": 1,
+      "com.google.protobuf.MessageOrBuilder": 1,
+      "DOUBLE_TYPE": 3,
+      "w": 1,
+      "Character.TYPE": 2,
+      "else": 33,
+      "klazz": 107,
+      "XmlSchema": 5,
+      "init": 2,
+      "node.defineAnnotatedMethods": 1,
+      "ProtocolBuffer": 2,
+      "ExtensionListView.createCopyOnWriteList": 2,
+      "switch": 6,
+      "Augmentations": 2,
+      "com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders": 1,
+      "&": 7,
+      "createNokogiriModule": 2,
+      "value": 11,
+      "com.google.protobuf.Parser": 2,
+      "XmlSaxParserContext.class": 1,
+      "HtmlDocument": 7,
+      "elementContent": 1,
+      "org.jruby.RubyClass": 2,
+      "toString": 1,
+      "method": 2,
+      "registerAllExtensions": 1,
+      "context": 8,
+      "floatValue": 1,
+      "void": 25,
+      "ServletContext": 2,
+      "BYTE_TYPE": 3,
+      "org.cyberneko.html.HTMLConfiguration": 1,
+      "ruby.getStandardError": 2,
+      "getJobCaseInsensitive": 1,
+      "equals": 2,
+      "xmlProcessingInstruction.clone": 1,
+      "xmlDocument": 5,
+      "XML_ENTITY_REFERENCE_ALLOCATOR": 2,
+      "ObjectAllocator": 60,
+      "byte": 4,
+      "XmlEntityDecl.INTERNAL_GENERAL": 1,
+      "xpathContext": 1,
+      "xmlReader": 5,
+      "HtmlEntityLookup": 1,
+      "false": 12,
+      "getNode": 1,
+      "htmlSaxParserContext.defineAnnotatedMethods": 1,
+      "xmlModule.defineClassUnder": 23,
+      "returnType.getDescriptor": 1,
+      "getDefaultInstanceForType": 2,
+      "java.lang.String": 15,
+      "org.jruby.RubyModule": 1,
+      "document": 5,
+      "getInstance": 2,
+      "nokogiri.internals.NokogiriHelpers.isNamespace": 1,
+      "Util.": 1,
+      "clojure.asm": 1,
+      "adminCheck": 3,
+      "syntaxError": 2,
+      "File.pathSeparatorChar": 1,
+      "html.defineOrGetClassUnder": 1,
+      "org.jvnet.hudson.reactor.ReactorException": 1,
+      "documentFragment.defineAnnotatedMethods": 1,
+      "ruby.defineModule": 1,
+      "mergeFrom": 5,
+      "finally": 2,
+      "i": 54,
+      "attr.defineAnnotatedMethods": 1,
+      "sort": 18,
+      ".getAllocator": 1,
+      "Messages.Hudson_NotANumber": 1,
+      "private": 77,
+      "methodDescriptor": 2,
+      "xmlCdata.clone": 1,
+      "super.clear": 1,
+      "parent": 4,
+      "BasicLibraryService": 1,
+      "javax.servlet.ServletException": 1,
+      "method.getReturnType": 1,
+      "newBuilder": 5,
+      "hudson.Functions": 1,
+      "XML_ELEMENT_CONTENT_ALLOCATOR": 2,
+      "Map": 1,
+      ".len": 1,
+      "memoizedSerializedSize": 3,
+      "getOpcode": 1,
+      "xmlNode": 5,
+      "ADMINISTER": 1,
+      "namespace.defineAnnotatedMethods": 1,
+      "pi": 1,
+      "}": 434,
+      "xmlEntityRef.clone": 1,
+      "XmlCdata": 5,
+      "XmlSchema.class": 1,
+      "Object": 31,
+      "com.google.protobuf.GeneratedMessage.BuilderParent": 2,
+      "b": 7,
+      "text": 2,
+      "XmlEntityDecl.class": 1,
+      "createDocuments": 2,
+      "config": 2,
+      "java.lang.Object": 7,
+      "NAME_FIELD_NUMBER": 1,
+      "builder.getUnknownFields": 1,
+      "getComputerListeners": 1,
+      "FLOAT": 6,
+      "nodeMap": 1,
+      "XML_SAXPUSHPARSER_ALLOCATOR": 2,
+      "ruby": 25,
+      "com.google.protobuf.Descriptors.FileDescriptor": 5,
+      "classes.length": 2,
+      "toBuilder": 1,
+      "Util": 1,
+      "ConcurrentHashMap": 1,
+      "encoding": 2,
+      "reader": 1,
+      "HashMap": 1,
+      "getMethodDescriptor": 2,
+      "Integer.TYPE": 2,
+      "java_encoding": 2,
+      ".getNodeValue": 1,
+      "java.util.List": 1,
+      "cdata": 1,
+      ".length": 1,
+      "XmlElementDecl": 5,
+      "attrs": 4,
+      "itemListeners": 2,
+      "createSyntaxErrors": 2,
+      "xmlSaxModule": 3,
+      "Ruby": 43,
+      "NumberFormat": 1,
+      "computerListeners": 2,
+      "htmlModule": 5,
+      "break": 4,
+      "classOf": 1,
+      "hudson.Util.fixEmpty": 1,
+      "XmlDomParserContext": 1,
+      "removeNSAttrsFilter": 2,
+      "getParserForType": 1,
+      "parameters.length": 2,
+      "XNIException": 2,
+      "[": 54,
+      "xmlModule": 7,
+      "elementDecl": 1
+    },
+    "Arduino": {
+      "}": 2,
+      ";": 2,
+      "Serial.begin": 1,
+      "{": 2,
+      ")": 4,
+      "(": 4,
+      "Serial.print": 1,
+      "loop": 1,
+      "void": 2,
+      "setup": 1
+    },
+    "XQuery": {
+      "eval_result": 1,
+      "bindings": 2,
+      "point": 1,
+      "all": 1,
+      "encoding": 1,
+      "xqm": 1,
+      "list": 1,
+      "and": 3,
+      "viewport": 1,
+      "run#6": 1,
+      "space": 1,
+      "ast": 1,
+      "type": 1,
+      "": 1,
+      "library": 1,
+      "-": 486,
+      "enum": 3,
+      "declare": 24,
+      "xproc": 17,
+      "namespace": 8,
+      "c": 1,
+      "points": 1,
+      "let": 6,
+      "const": 1,
+      "xquery": 1,
+      "AST": 2,
+      "choose": 1,
+      "preserve": 1,
+      "return": 2,
+      "name=": 1,
+      "{": 5,
+      "each": 1,
+      "saxon": 1,
+      "explicit": 3,
+      "validate": 1,
+      "namespaces": 5,
+      "p": 2,
+      "control": 1,
+      "element": 1,
+      "tflag": 1,
+      "boundary": 1,
+      "II": 1,
+      "version": 1,
+      "util": 1,
+      "": 1,
+      "ns": 1,
+      "entry": 2,
+      "module": 6,
+      "serialized_result": 2,
+      "results": 1,
+      "catch": 1,
+      "core": 1,
+      "contains": 1,
+      "functions.": 1,
+      "imports": 1,
+      "option": 1,
+      "functions": 1,
+      ")": 38,
+      "u": 2,
+      "xproc.xqm": 1,
+      "preprocess": 1,
+      "import": 4,
+      "primary": 1,
+      "}": 5,
+      "group": 1,
+      "variable": 13,
+      "serialize": 1,
+      "": 1,
+      "parse/*": 1,
+      "name": 1,
+      "I": 1,
+      "declared": 1,
+      "try": 1,
+      "output": 1,
+      "for": 1,
+      "at": 4,
+      "run": 2,
+      "parse": 8,
+      "III": 1,
+      "step": 5,
+      "options": 2,
+      "STEP": 3,
+      "dflag": 1,
+      "stdin": 1,
+      "function": 3,
+      "pipeline": 8,
+      "sort": 1,
+      "parse/@*": 1,
+      "err": 1,
+      "eval": 3,
+      "": 1,
+      "(": 38,
+      ";": 25
+    },
+    "Python": {
+      "raise": 22,
+      "save.alters_data": 1,
+      "for": 59,
+      "x.size": 2,
+      "_perform_unique_checks": 1,
+      "headers": 5,
+      "xerr": 6,
+      "canonical": 1,
+      "base_managers.sort": 1,
+      "%": 32,
+      "signals.class_prepared.send": 1,
+      "np.sqrt": 17,
+      "self._order": 1,
+      "pl.plot": 9,
+      "copy": 1,
+      "new_class._meta.local_fields": 3,
+      "dispatch_request": 1,
+      "str": 2,
+      "clean_fields": 1,
+      "date_checks.append": 3,
+      "record_exists": 5,
+      "base._meta.abstract_managers": 1,
+      "weiss_table.add_row": 1,
+      "class": 14,
+      "self._state": 1,
+      "getattr": 30,
+      "matt_pconv.diagonal": 2,
+      "parent._meta.abstract": 1,
+      "parent._meta": 1,
+      "self._state.adding": 4,
+      "e.messages": 1,
+      "tornado.util": 1,
+      "of": 3,
+      "_on_headers": 1,
+      "weiss_pconv.diagonal": 2,
+      "force_unicode": 3,
+      "loc": 5,
+      "T": 6,
+      "original_base._meta.concrete_managers": 1,
+      "map": 1,
+      "is_next": 9,
+      "pass": 4,
+      "lookup_value": 3,
+      "socket.EAI_NONAME": 1,
+      "based": 1,
+      "self._perform_unique_checks": 1,
+      "update_fields.difference": 1,
+      "meta.order_with_respect_to": 2,
+      "settings.ABSOLUTE_URL_OVERRIDES.get": 1,
+      "which": 1,
+      "opts.verbose_name": 1,
+      "elif": 4,
+      "rv.methods": 2,
+      "self.stream.socket": 1,
+      "_finish_request": 1,
+      "new_class._default_manager": 2,
+      "schwarz_popt": 3,
+      "date_checks": 6,
+      "self.uri": 2,
+      "save": 1,
+      ".size": 4,
+      "tuple": 3,
+      "self._meta": 2,
+      "new_class._meta.app_label": 3,
+      "NON_FIELD_ERRORS": 3,
+      "package": 1,
+      "self._finish_time": 4,
+      "new_class._meta.ordering": 1,
+      "collector.collect": 1,
+      "native_str": 4,
+      "copy.deepcopy": 2,
+      "marker": 4,
+      "U_err": 7,
+      "header": 5,
+      "nested_types": 1,
+      "**2": 2,
+      "raw_value": 3,
+      "cpp_type": 1,
+      "order_value": 2,
+      "options": 3,
+      ".values": 1,
+      "has_default_value": 1,
+      "action": 1,
+      "dy": 4,
+      "self.adding": 1,
+      "new_class": 9,
+      "yerr": 8,
+      "cls.get_next_in_order": 1,
+      "self.db": 1,
+      "register_models": 2,
+      "opts.app_label": 1,
+      "epsilon_err": 2,
+      "|": 1,
+      "ordered_obj.objects.filter": 2,
+      "U_err/S": 4,
+      "delete": 1,
+      "os": 1,
+      "self.version": 2,
+      ".next": 1,
+      "ObjectDoesNotExist": 2,
+      "self._get_pk_val": 6,
+      "a": 2,
+      "unique_checks": 6,
+      "django.db.models.fields.related": 1,
+      "_get_next_or_previous_by_FIELD": 1,
+      "return": 57,
+      "ordered_obj._meta.order_with_respect_to.name": 2,
+      "check": 4,
+      "+": 37,
+      "self._state.db": 2,
+      "offset": 13,
+      "socket.gaierror": 1,
+      "HTTPRequest": 2,
+      "description": 1,
+      "linestyle": 8,
+      "f.name": 5,
+      "view.__name__": 1,
+      "new_class._meta.parents": 1,
+      "field.rel.to": 2,
+      "get_ssl_certificate": 1,
+      "io_loop": 3,
+      "beta": 1,
+      "**kwargs": 9,
+      "u": 9,
+      "__str__": 1,
+      "full_name": 2,
+      "HTTPConnection": 2,
+      "seed_cache": 2,
+      "set": 3,
+      "self": 100,
+      "descriptor": 1,
+      "base_managers": 2,
+      "meta.auto_created": 2,
+      "headers.get": 2,
+      "KeyError": 3,
+      ".order_by": 2,
+      "_message.Message": 1,
+      "date.year": 1,
+      "self.stream.max_buffer_size": 1,
+      "base._meta.virtual_fields": 1,
+      "manager._insert": 1,
+      "django.utils.translation": 1,
+      "serialized_pb": 1,
+      "non_model_fields": 2,
+      "default": 1,
+      "using": 30,
+      "model_unpickle": 2,
+      "self.no_keep_alive": 4,
+      ".globals": 1,
+      "attrs.pop": 2,
+      "serializable_value": 1,
+      "os.walk": 1,
+      "new_class._default_manager._copy_to_model": 1,
+      "mgr_name": 3,
+      "method_get_order": 2,
+      "serialized_start": 1,
+      "dy.size": 1,
+      "usage": 3,
+      "glanz_pconv.diagonal": 2,
+      "n": 3,
+      "type": 6,
+      "httputil.HTTPHeaders": 1,
+      "field.strip": 1,
+      "since": 1,
+      "cls.__new__": 1,
+      "np": 1,
+      "S": 4,
+      "stack_context.wrap": 2,
+      "func": 2,
+      "pk_name": 3,
+      "pl.title": 5,
+      "self.connection.write": 1,
+      "message_type": 1,
+      "*schwarz_popt": 1,
+      "stream": 4,
+      "cls.__module__": 1,
+      "label": 18,
+      "glanz_y": 2,
+      "boltzmann": 12,
+      "self._request.arguments": 1,
+      "where": 1,
+      "manager": 3,
+      "f3": 1,
+      "#parser.add_argument": 3,
+      "as_view": 1,
+      "methods.add": 1,
+      "ManyToOneRel": 3,
+      "def": 68,
+      "self.host": 2,
+      "httputil.HTTPHeaders.parse": 1,
+      "abstract": 3,
+      "field": 32,
+      "ssl.SSLError": 1,
+      "opts._prepare": 1,
+      "TCPServer": 2,
+      "popt": 5,
+      "copy_managers": 1,
+      "_get_FIELD_display": 1,
+      "collector.delete": 1,
+      "obj": 4,
+      "self._on_write_complete": 1,
+      "hash": 1,
+      "handler.": 1,
+      "iostream.SSLIOStream": 1,
+      "ValueError": 5,
+      "order_field": 1,
+      "command": 4,
+      "index": 1,
+      "parent_class._meta.unique_together": 2,
+      "*dy_err": 1,
+      "only_installed": 2,
+      "smart_str": 3,
+      "content_type": 1,
+      "deferred_class_factory": 2,
+      "order": 5,
+      "dx": 6,
+      "FieldDoesNotExist": 2,
+      "alpha**2*R0": 5,
+      "self.pk": 6,
+      "force_insert": 7,
+      "is_extension": 1,
+      "ip": 2,
+      "self._request.method": 2,
+      "color": 8,
+      "{": 25,
+      "cls.__doc__": 3,
+      "method_set_order": 2,
+      "or": 27,
+      "os.path.abspath": 1,
+      "self.path": 1,
+      "opts.order_with_respect_to": 2,
+      "ordered_obj._meta.pk.name": 1,
+      "new_class.add_to_class": 7,
+      "sigma": 4,
+      "param": 3,
+      "dest": 1,
+      "_BadRequestException": 5,
+      "*lookup_kwargs": 2,
+      "*": 33,
+      "lookup_kwargs.keys": 1,
+      "data.find": 1,
+      "schwarz_pconv.diagonal": 2,
+      "__metaclass__": 3,
+      "subclass_exception": 3,
+      "other": 4,
+      "unicode_literals": 1,
+      "meta.pk.attname": 2,
+      "self.save_base": 2,
+      "matt": 13,
+      "self.__class__": 10,
+      "start_line": 1,
+      "matt_phi": 4,
+      "self.clean": 1,
+      "self.date_error_message": 1,
+      "*beta": 1,
+      "Person": 1,
+      "t": 8,
+      "self._perform_date_checks": 1,
+      "hasattr": 11,
+      ".filter": 7,
+      "model": 8,
+      "x._meta.abstract": 2,
+      "model_unpickle.__safe_for_unpickle__": 1,
+      "ValidationError": 8,
+      "*args": 4,
+      "opts.fields": 1,
+      "MultipleObjectsReturned": 2,
+      "TCPServer.__init__": 1,
+      "self._cookies": 3,
+      "auto_created": 1,
+      "f.primary_key": 2,
+      "base": 13,
+      "__reduce__": 1,
+      ".extend": 2,
+      "#": 13,
+      "new_class._meta.local_many_to_many": 2,
+      "make_foreign_order_accessors": 2,
+      "kwargs": 9,
+      "views": 1,
+      "Model": 2,
+      "base_meta.ordering": 1,
+      "property": 2,
+      "base_meta": 2,
+      "force_update": 10,
+      "self._cookies.load": 1,
+      "manager.using": 3,
+      "sys.exit": 1,
+      "m": 3,
+      "opts": 5,
+      "weiss_y": 2,
+      "table.add_row": 1,
+      "R": 1,
+      "pl.errorbar": 8,
+      "raw": 9,
+      "_get_pk_val": 2,
+      "parent_class._meta.local_fields": 1,
+      "values": 13,
+      "*beta*R0*T0": 2,
+      "attr_name": 3,
+      "attr_meta.abstract": 1,
+      "defers.append": 1,
+      "version": 6,
+      "argparse.ArgumentParser": 1,
+      "django.conf": 1,
+      "glanz_x": 3,
+      "gitDirectory": 2,
+      "pluggable": 1,
+      "save_base.alters_data": 1,
+      "_descriptor": 1,
+      "self.body": 1,
+      "start_line.split": 1,
+      "bool": 2,
+      "unique_togethers.append": 1,
+      "prepare_database_save": 1,
+      "f2": 1,
+      "add_to_class": 1,
+      "number": 1,
+      "Collector": 2,
+      "django.db.models.loading": 1,
+      "stack_context": 1,
+      "help": 2,
+      "f": 19,
+      "cls": 32,
+      "self.clean_fields": 1,
+      "signals.post_save.send": 1,
+      "django.db.models": 1,
+      "signals.post_init.send": 1,
+      "self._request": 7,
+      "subdirectories": 3,
+      "methods": 5,
+      "django.utils.functional": 1,
+      "connection_header": 5,
+      "view.__module__": 1,
+      "f.pre_save": 1,
+      "sorted": 1,
+      "decorate": 2,
+      "self._meta.pk.name": 1,
+      "way": 1,
+      "_PERSON": 3,
+      "*beta*R": 5,
+      "Empty": 1,
+      "httputil.parse_multipart_form_data": 1,
+      "exclude.append": 1,
+      "and": 35,
+      "Options": 2,
+      "weiss": 13,
+      "o2o_map": 3,
+      "django.core": 1,
+      "I1": 3,
+      "get_text_list": 2,
+      "logging.warning": 1,
+      "self._request.supports_http_1_1": 1,
+      "_deferred": 1,
+      "write": 2,
+      "socket.getaddrinfo": 1,
+      "_": 5,
+      "parts": 1,
+      "TypeError": 4,
+      "self._request.headers.get": 2,
+      "self._request.body": 2,
+      "original_base": 1,
+      "/I1": 1,
+      "self._header_callback": 3,
+      "*beta*T0": 1,
+      "cls.__name__.lower": 2,
+      "self.__eq__": 1,
+      "Imported": 1,
+      "PrettyTable": 6,
+      "x.MultipleObjectsReturned": 1,
+      ")": 730,
+      "transaction.commit_unless_managed": 2,
+      "collector": 1,
+      "weiss_phi": 4,
+      "manager._copy_to_model": 1,
+      "unicode": 8,
+      "socket.AF_INET6": 1,
+      "also": 1,
+      "descriptor_pb2": 1,
+      "django.db.models.manager": 1,
+      "cls.__name__": 1,
+      "self.connection.stream.socket.getpeercert": 1,
+      "connection.xheaders": 1,
+      "eol": 3,
+      "new_class.copy_managers": 2,
+      "self.xheaders": 3,
+      "ur": 11,
+      "instantiating": 1,
+      "s": 1,
+      "file": 1,
+      "pk_set": 5,
+      "super": 2,
+      "self.stream.read_bytes": 1,
+      "uri": 5,
+      "socket": 1,
+      "functools": 1,
+      "False": 28,
+      "logic": 1,
+      "arguments": 2,
+      "*popt": 2,
+      "gitDirectories": 2,
+      "not": 64,
+      "argparse": 1,
+      "_order": 1,
+      "self._deferred": 1,
+      "pl.legend": 5,
+      "_valid_ip": 1,
+      "_descriptor.Descriptor": 1,
+      "np.genfromtxt": 8,
+      "add_lazy_relation": 2,
+      "glanz": 13,
+      "field.error_messages": 1,
+      "time.time": 3,
+      "django.core.exceptions": 1,
+      "schwarz_y": 2,
+      "__init__": 5,
+      "matt_table.add_row": 1,
+      "matt_phi.size": 1,
+      "schwarz": 13,
+      "self.remote_ip": 4,
+      "zip": 8,
+      "validators": 1,
+      "phi": 5,
+      "__hash__": 1,
+      "signals.pre_init.send": 1,
+      "*U_err/S": 4,
+      "extension_ranges": 1,
+      "qs.exists": 2,
+      "self.headers.get": 5,
+      "self._finish_request": 2,
+      "base._meta.parents": 1,
+      "__future__": 2,
+      "sender": 5,
+      "DeferredAttribute": 3,
+      "content_type.split": 1,
+      "self._get_unique_checks": 1,
+      "django.utils.text": 1,
+      "f.blank": 1,
+      "weiss_x": 3,
+      "##############################################": 2,
+      "_get_next_or_previous_in_order": 1,
+      "Q": 3,
+      "phif": 7,
+      "errors.setdefault": 3,
+      "*weiss_popt": 1,
+      "isGitDirectory": 2,
+      "rel_val": 4,
+      "OneToOneField": 3,
+      "remote_ip": 8,
+      "parent._meta.pk.attname": 2,
+      "django.db.models.deletion": 1,
+      "self.DoesNotExist": 1,
+      "pl.grid": 5,
+      "metavar": 1,
+      "**6": 6,
+      ".encode": 1,
+      "self.unique_error_message": 1,
+      "schwarz_phi.size": 1,
+      "model_class": 11,
+      "_parse_args": 2,
+      "order_field.name": 1,
+      "pconv.diagonal": 3,
+      "weiss_phi.size": 1,
+      "iter": 1,
+      "parser": 1,
+      "__new__": 2,
+      "UnicodeDecodeError": 1,
+      "name": 39,
+      "meta.proxy": 5,
+      "self.files": 1,
+      "pl": 1,
+      "f1": 1,
+      "*kwargs": 1,
+      "declaration": 1,
+      "db": 2,
+      "os.path.isdir": 1,
+      "glanz_table.add_row": 1,
+      "T_err": 7,
+      "e": 13,
+      "U1/I1**2": 1,
+      "_reflection.GeneratedProtocolMessageType": 1,
+      "is_proxy": 5,
+      "fields": 12,
+      "no_keep_alive": 4,
+      "to": 4,
+      "model_module": 1,
+      "############################################": 2,
+      "absolute_import": 1,
+      "httputil": 1,
+      "dy_err": 2,
+      "request": 1,
+      "lookup_type": 7,
+      "connection": 5,
+      ".__init__": 1,
+      "/": 23,
+      "d**": 2,
+      "disconnect": 5,
+      "self.__class__.__name__": 3,
+      "socket.AF_INET": 2,
+      "parent._meta.fields": 1,
+      "np.ones": 11,
+      "self._meta.get_field": 1,
+      "new_manager": 2,
+      "delimiter": 8,
+      "get": 1,
+      "filter": 3,
+      "base._meta.module_name": 1,
+      "base.__name__": 2,
+      "pconv": 2,
+      "data.decode": 1,
+      "request_callback": 4,
+      "ssl": 2,
+      "alpha*R0": 2,
+      "router": 1,
+      "in": 79,
+      "y": 10,
+      "django.db.models.query": 1,
+      "op": 6,
+      "a*x": 1,
+      "ModelState": 2,
+      ".format": 11,
+      "non_pks": 5,
+      "protocol": 4,
+      "handle.": 1,
+      "opts.module_name": 1,
+      "R0_err": 2,
+      "sys.argv": 2,
+      "parser.parse_args": 1,
+      "key.upper": 1,
+      ".exists": 1,
+      "reflection": 1,
+      "frozenset": 2,
+      "socket.SOCK_STREAM": 1,
+      "glanz_table": 2,
+      "(": 719,
+      "attrs.items": 1,
+      "created": 1,
+      "self._meta.parents.keys": 2,
+      "list": 1,
+      "unused": 1,
+      "http_method_funcs": 2,
+      "pk_val": 4,
+      ".__new__": 1,
+      "I_err": 2,
+      "f.unique_for_date": 3,
+      "errors": 20,
+      "AutoField": 2,
+      "args_len": 2,
+      "data": 22,
+      "None": 86,
+      "self.stream": 1,
+      "r": 3,
+      "f.attname": 5,
+      "self.stream.writing": 2,
+      "extension_scope": 1,
+      "signals.pre_save.send": 1,
+      "order_name": 4,
+      "meta.local_fields": 2,
+      "obj_name": 2,
+      "AttributeError": 1,
+      "base._meta.local_fields": 1,
+      "cookies": 1,
+      "connection_header.lower": 1,
+      "object": 6,
+      "date_errors": 1,
+      "unique_for": 9,
+      "########": 2,
+      "delete.alters_data": 1,
+      "unique_error_message": 1,
+      "model_class._default_manager.filter": 2,
+      "<": 1,
+      "try": 17,
+      "used": 1,
+      "T0_err": 2,
+      "os.chdir": 1,
+      "full_clean": 1,
+      "time": 1,
+      "signals": 1,
+      "ugettext_lazy": 1,
+      "cls.get_absolute_url": 3,
+      "self._meta.fields": 5,
+      "fields_iter": 4,
+      "this": 2,
+      "new_class._meta.setup_proxy": 1,
+      "schwarz_x": 3,
+      "new_class._meta.get_latest_by": 1,
+      "model_class._meta": 2,
+      "k": 4,
+      "os.system": 1,
+      "filename": 1,
+      "except": 17,
+      "IndexError": 2,
+      "django.db.models.fields": 1,
+      ".append": 2,
+      "self.__dict__": 1,
+      "return_id": 1,
+      "isinstance": 11,
+      "new_class._meta.virtual_fields": 1,
+      "socket.AF_UNSPEC": 1,
+      "clean": 1,
+      "tornado.netutil": 1,
+      "tornado.escape": 1,
+      "schwarz_phi": 4,
+      "enum_type": 1,
+      "date.month": 1,
+      "HTTPServer": 1,
+      "pl.savefig": 5,
+      "content_length": 6,
+      "transaction": 1,
+      "self._meta.local_fields": 1,
+      "specified": 1,
+      "django.utils.encoding": 1,
+      "new_class._base_manager._copy_to_model": 1,
+      "R_err": 2,
+      "parent_class": 4,
+      "e.update_error_dict": 3,
+      "it": 1,
+      "pk": 5,
+      "_reflection": 1,
+      "field.verbose_name": 1,
+      "can": 1,
+      "d": 5,
+      "moves": 1,
+      "strings_only": 1,
+      "T0": 1,
+      "self.request_callback": 5,
+      "__eq__": 1,
+      "from": 34,
+      "key": 5,
+      "self.validate_unique": 1,
+      "parents": 8,
+      "Exception": 2,
+      ".": 1,
+      "*T_err": 4,
+      "default_value": 1,
+      "field_names": 5,
+      "*glanz_popt": 1,
+      "cls.add_to_class": 1,
+      "self.connection.finish": 1,
+      "table": 2,
+      "message": 1,
+      "min": 10,
+      "*beta*R0": 7,
+      "view.methods": 1,
+      "other._get_pk_val": 1,
+      ".partition": 1,
+      "simple_class_factory": 2,
+      "alpha**2": 1,
+      "sys": 2,
+      "field.rel": 2,
+      "ImportError": 1,
+      "f.unique_for_month": 3,
+      "x": 22,
+      "weiss_pconv": 1,
+      "get_model": 3,
+      "import": 47,
+      "]": 152,
+      "op.curve_fit": 6,
+      "self.__class__._meta.object_name": 1,
+      "with_statement": 1,
+      "django.db.models.query_utils": 2,
+      "instance": 5,
+      "print": 39,
+      "save_base": 1,
+      "base_meta.abstract": 1,
+      "files": 2,
+      "alpha": 2,
+      ".get": 2,
+      "bytes_type": 2,
+      "attr_meta": 5,
+      "matt_pconv": 1,
+      ".join": 3,
+      "chunk": 5,
+      "main": 4,
+      "sys.modules": 1,
+      "__ne__": 1,
+      "self._meta.unique_together": 1,
+      "_get_unique_checks": 1,
+      "exclude": 23,
+      "self.__class__.__dict__.get": 2,
+      "enumerate": 1,
+      "unique_together": 2,
+      "DESCRIPTOR.message_types_by_name": 1,
+      "_descriptor.FileDescriptor": 1,
+      "_perform_date_checks": 1,
+      "containing_type": 2,
+      "register": 1,
+      "fields_with_class.append": 1,
+      "U2": 2,
+      "self.arguments": 2,
+      "nargs": 1,
+      "if": 145,
+      "matt_table": 2,
+      "q": 4,
+      "schwarz_pconv": 1,
+      "epsilon": 7,
+      "full_url": 1,
+      "sep": 2,
+      "f2**2": 1,
+      "V": 12,
+      "cachename": 4,
+      "self.protocol": 7,
+      "ssl_options": 3,
+      "ordered_obj": 2,
+      "__repr__": 2,
+      "int": 1,
+      "value.contribute_to_class": 1,
+      "defers": 2,
+      "field.attname": 17,
+      "rv": 2,
+      "self.stream.closed": 1,
+      "new_class.Meta": 1,
+      "uri.partition": 1,
+      "*beta*R0**2": 1,
+      "self._meta.pk.attname": 2,
+      ".update": 1,
+      "e.args": 1,
+      "content_type.startswith": 2,
+      "self.stream.write": 2,
+      "parent_link": 1,
+      "address": 4,
+      "len": 9,
+      "f.rel.to": 1,
+      "_on_write_complete": 1,
+      "matt_popt": 3,
+      "django.db": 1,
+      "origin": 7,
+      "@property": 1,
+      "tornado": 3,
+      "j": 2,
+      "numpy": 1,
+      "date_errors.items": 1,
+      "cls.get_previous_in_order": 1,
+      "django.db.models.options": 1,
+      "model_module.__name__.split": 1,
+      "self.headers": 4,
+      "self._request.files": 1,
+      "self._default_manager.values": 1,
+      "glanz_phi": 4,
+      "field_label": 2,
+      "field.name": 14,
+      "cls._get_next_or_previous_in_order": 2,
+      "order_field.attname": 1,
+      "field.flatchoices": 1,
+      "super_new": 3,
+      "cls.methods": 1,
+      "self._default_manager.filter": 1,
+      "cls._meta": 3,
+      "parse_qs_bytes": 3,
+      "update_pk": 3,
+      "self.method": 1,
+      "xheaders": 4,
+      "base_meta.get_latest_by": 1,
+      "view": 2,
+      "is": 29,
+      "matt_y": 2,
+      "ModelBase": 4,
+      "enum_types": 1,
+      "string": 1,
+      "np.linspace": 9,
+      "connection.stream": 1,
+      "rows": 3,
+      "c": 3,
+      "self.connection": 1,
+      "type.__new__": 1,
+      "base._meta.concrete_model": 2,
+      "opts.order_with_respect_to.rel.to": 1,
+      "result": 2,
+      "os.getcwd": 1,
+      "dx_err": 3,
+      "self._meta.proxy_for_model": 1,
+      "bases": 6,
+      "lookup_kwargs": 8,
+      "self._start_time": 3,
+      "Python": 1,
+      "weiss_popt": 3,
+      "capfirst": 6,
+      "f3**2": 1,
+      "args": 8,
+      "kwargs.keys": 2,
+      "View": 2,
+      "-": 30,
+      "res": 2,
+      "new_class._meta.concrete_model": 2,
+      "self._meta.object_name": 1,
+      "opts.get_field": 4,
+      "The": 1,
+      "qs": 6,
+      "MethodView": 1,
+      "Cookie.SimpleCookie": 1,
+      "directories": 1,
+      "__docformat__": 1,
+      "np.abs": 1,
+      "continue": 10,
+      "kwargs.pop": 6,
+      "new_fields": 2,
+      "weiss_table": 2,
+      "self.__class__._default_manager.using": 1,
+      "fields_with_class": 2,
+      "val": 14,
+      "f.unique_for_year": 3,
+      "is_extendable": 1,
+      "SHEBANG#!python": 4,
+      "prettytable": 1,
+      "glanz_phi.size": 1,
+      "else": 30,
+      "max": 11,
+      "setattr": 14,
+      "update_wrapper": 2,
+      "directory": 9,
+      "._update": 1,
+      "__name__": 2,
+      "A": 1,
+      "prop": 5,
+      "pl.ylabel": 5,
+      "value": 9,
+      "finish": 2,
+      "self._write_callback": 5,
+      "field_name": 8,
+      "glanz_pconv": 1,
+      "factory": 5,
+      "date.day": 1,
+      "self._on_headers": 1,
+      "settings": 1,
+      "dict": 3,
+      "base._meta.local_many_to_many": 1,
+      "np.mean": 1,
+      "method": 5,
+      "handle_stream": 1,
+      "schwarz_table": 2,
+      "row": 10,
+      "meta.parents.items": 1,
+      "rel_obj": 3,
+      "U1": 3,
+      "unique_checks.append": 2,
+      "field.null": 1,
+      "_descriptor.FieldDescriptor": 1,
+      "printDelimiter": 4,
+      "qs.exclude": 2,
+      "f.clean": 1,
+      "_set_pk_val": 2,
+      "id_list": 2,
+      "p": 1,
+      "self._request.arguments.setdefault": 1,
+      "logging.info": 1,
+      "parent_fields": 3,
+      "*np.sqrt": 6,
+      "new_class._prepare": 1,
+      "U": 10,
+      "version.startswith": 1,
+      "update_fields": 23,
+      "as": 11,
+      "However": 1,
+      "True": 20,
+      "self._request_finished": 4,
+      "self._meta.order_with_respect_to": 1,
+      "DEFAULT_DB_ALIAS": 2,
+      "extensions": 1,
+      "*matt_popt": 1,
+      "field_labels": 4,
+      "self._request.headers": 1,
+      "google.protobuf": 4,
+      "MethodViewType": 2,
+      "new_class._meta.proxy": 1,
+      "UnicodeEncodeError": 1,
+      "date_error_message": 1,
+      "scipy.optimize": 1,
+      "i": 7,
+      "f.unique": 1,
+      "_on_request_body": 1,
+      "logging": 1,
+      "place": 1,
+      "router.db_for_write": 2,
+      "errors.keys": 1,
+      "x.DoesNotExist": 1,
+      "schwarz_table.add_row": 1,
+      "pl.clf": 5,
+      "meth": 5,
+      "FieldError": 4,
+      "the": 5,
+      ".count": 1,
+      "parent": 5,
+      "f1**2": 1,
+      "ordered_obj._meta.order_with_respect_to.rel.field_name": 2,
+      "R0": 6,
+      "new_class.__module__": 1,
+      "org": 3,
+      "curry": 6,
+      "self.address": 3,
+      "is_related_object": 3,
+      "DatabaseError": 3,
+      "_prepare": 1,
+      "request.method": 2,
+      "table.align": 1,
+      "matt_x": 3,
+      "}": 25,
+      "self._valid_ip": 1,
+      "pl.xlabel": 5,
+      "self.query": 2,
+      "self._on_request_body": 1,
+      "self.stream.read_until": 2,
+      "b": 11,
+      "module": 6,
+      "unique_check": 10,
+      "unique_togethers": 2,
+      "lambda": 1,
+      "Cookie": 1,
+      "signal": 1,
+      "view.__doc__": 1,
+      "self._meta.get_field_by_name": 1,
+      "utf8": 2,
+      "_message": 1,
+      "meta": 12,
+      "T**4": 1,
+      "supports_http_1_1": 1,
+      "iostream": 1,
+      "model_name": 3,
+      "field.get_default": 3,
+      "phi_err": 3,
+      "glanz_popt": 3,
+      "assert": 7,
+      "DESCRIPTOR": 3,
+      "get_absolute_url": 2,
+      "body": 2,
+      "field.primary_key": 1,
+      "socket.AI_NUMERICHOST": 1,
+      "serialized_end": 1,
+      "T0**4": 1,
+      "arguments.iteritems": 2,
+      "validators.EMPTY_VALUES": 1,
+      "attrs": 7,
+      "cls._base_manager": 1,
+      "matplotlib.pyplot": 1,
+      "date": 3,
+      "request_time": 1,
+      "callback": 7,
+      "new_class._meta.parents.update": 1,
+      "model_class_pk": 3,
+      "v": 11,
+      "future_builtins": 1,
+      ".verbose_name": 3,
+      "validate_unique": 1,
+      "meta.has_auto_field": 1,
+      "break": 2,
+      "host": 2,
+      "self.stream.close": 2,
+      "division": 1,
+      "request.method.lower": 1,
+      "git": 1,
+      "new_class._base_manager": 2,
+      "base._meta.abstract": 2,
+      "[": 152,
+      "view.view_class": 1,
+      "getSubdirectories": 2
+    },
+    "AppleScript": {
+      "returned": 5,
+      "w": 5,
+      "extension": 4,
+      "return": 16,
+      "button": 4,
+      "extension_list": 6,
+      ")": 88,
+      "a": 4,
+      "outgoing": 2,
+      "isVoiceOverRunningWithAppleScript": 3,
+      "If": 2,
+      "lowFontSize": 9,
+      "characters": 1,
+      "dialog": 4,
+      "clicked": 2,
+      "ensure": 1,
+      "amPM": 4,
+      "of": 72,
+      "Ideally": 2,
+      "minimumFontSize": 4,
+      "get": 1,
+      "info": 4,
+      "window": 5,
+      "shell": 2,
+      "x": 1,
+      "m": 2,
+      "current": 3,
+      "tab": 1,
+      "open": 8,
+      "frontmost": 1,
+      "Terminal": 1,
+      "or": 6,
+      "my": 3,
+      "FS": 10,
+      "character": 2,
+      "new": 2,
+      "eachCharacter": 4,
+      "greater": 5,
+      "to": 128,
+      "URL": 1,
+      "eachMailbox": 4,
+      "theMailboxes": 2,
+      "activate": 3,
+      "else": 14,
+      "integer": 3,
+      "make": 3,
+      "isRunningWithAppleScript": 3,
+      "unread": 1,
+      "date": 1,
+      "without": 2,
+      "visible": 2,
+      "list": 9,
+      "choose": 2,
+      "some": 1,
+      "isRunning": 3,
+      "if": 50,
+      "less": 1,
+      "say": 1,
+      "end": 67,
+      "desktopLeft": 1,
+      "space": 1,
+      "html": 2,
+      "windowHeight": 3,
+      "item_info": 24,
+      "mailbox": 2,
+      "count": 10,
+      "length": 1,
+      "folders": 2,
+      "desktop": 1,
+      "process": 5,
+      "message": 2,
+      "screen_height": 2,
+      "theFolder": 6,
+      "FinderSelection": 4,
+      "need": 1,
+      "display": 4,
+      "mailboxName": 2,
+      "vo": 1,
+      "myFrontMost": 3,
+      "than": 6,
+      "AM": 1,
+      "type_list": 6,
+      "these_items": 18,
+      "and": 7,
+      "cursor": 1,
+      "document": 2,
+      "padString": 3,
+      "color": 1,
+      "drawer": 2,
+      "me": 2,
+      "unreadCount": 2,
+      "convertCommand": 4,
+      "properties": 2,
+      "every": 3,
+      "stringLength": 4,
+      "{": 32,
+      "random": 4,
+      "-": 57,
+      "error": 3,
+      "number": 6,
+      "is": 40,
+      "tell": 40,
+      "currentTime": 3,
+      "hour": 1,
+      "nice": 1,
+      "thePOSIXFileName": 6,
+      "click": 1,
+      "SelectionCount": 6,
+      "isVoiceOverRunning": 3,
+      "gets": 1,
+      "buttons": 3,
+      "highFontSize": 6,
+      "fieldLength": 5,
+      "fontList": 2,
+      "field": 1,
+      "currentMinutes": 4,
+      "desktopBottom": 1,
+      "localMailboxes": 3,
+      "folder": 10,
+      "currentDate": 3,
+      "type": 6,
+      "default": 4,
+      "newFontSize": 6,
+      "theFilePath": 8,
+      "messageText": 4,
+      "windowWidth": 3,
+      "messages": 1,
+      "getMessageCountsForMailboxes": 4,
+      "not": 5,
+      "desktopRight": 1,
+      "passed": 2,
+      "value": 1,
+      "account": 1,
+      "for": 5,
+      "bounds": 2,
+      "content": 2,
+      "}": 32,
+      "prompt": 2,
+      "userInput": 4,
+      "false": 9,
+      "text": 13,
+      "then": 28,
       "/": 2,
-      "ABLTimeZoneToString": 2,
-      "TIMEZONE": 1,
-      "ipdtDateTime": 2,
-      "ipiTimeZone": 3,
-      "ABSOLUTE": 1,
-      "MODULO": 1,
-      "LONGCHAR": 4,
-      "ConvertDataToBase64": 1,
-      "iplcNonEncodedData": 2,
-      "lcPreBase64Data": 4,
-      "lcPostBase64Data": 3,
-      "mptrPostBase64Data": 3,
-      "i": 3,
-      "COPY": 1,
-      "LOB": 1,
-      "FROM": 1,
-      "TO": 2,
-      "mptrPostBase64Data.": 1,
-      "BASE64": 1,
-      "ENCODE": 1,
-      "BY": 1,
-      "SUBSTRING": 1,
-      "CHR": 2,
-      "lcPostBase64Data.": 1
+      "font": 2,
+      "VoiceOver": 1,
+      "output": 1,
+      "accountMailboxes": 3,
+      "desktopTop": 2,
+      "mailboxes": 1,
+      "the": 56,
+      "contains": 1,
+      "outputMessage": 2,
+      "minutes": 2,
+      "screen_width": 2,
+      "paddedString": 5,
+      "eachAccount": 3,
+      "this_item": 14,
+      "day": 1,
+      "MyPath": 4,
+      "exit": 1,
+      "AppleScript": 2,
+      "JavaScript": 2,
+      "pane": 4,
+      "droplet": 2,
+      "s": 3,
+      "with": 11,
+      "returns": 2,
+      "terminalCommand": 6,
+      "h": 4,
+      "double": 2,
+      "handled": 2,
+      "thesefiles": 2,
+      "sound": 1,
+      "UI": 1,
+      "delay": 3,
+      "elements": 1,
+      "repeat": 19,
+      "everyAccount": 2,
+      "pass": 1,
+      "time": 1,
+      "could": 2,
+      "be": 2,
+      "item": 13,
+      "<": 2,
+      "messageCountDisplay": 5,
+      "paddingLength": 2,
+      "thePOSIXFilePath": 8,
+      "processes": 2,
+      "do": 4,
+      "run": 4,
+      "nn": 2,
+      "currently": 2,
+      "application": 16,
+      "file": 6,
+      "messageCount": 2,
+      "&": 63,
+      "processFile": 8,
+      "i": 10,
+      "this": 2,
+      "group": 1,
+      "set": 108,
+      "path": 6,
+      "script": 2,
+      "selection": 2,
+      "on": 18,
+      "times": 1,
+      "crazyTextMessage": 2,
+      "currentHour": 9,
+      "position": 1,
+      "userPicksFolder": 6,
+      "alias": 8,
+      "delimiters": 1,
+      "subject": 1,
+      "property": 7,
+      "radio": 1,
+      "readjust": 1,
+      "I": 2,
+      "size": 5,
+      "enabled": 2,
+      "as": 27,
+      "from": 9,
+      "result": 2,
+      "handler": 2,
+      "newFileName": 4,
+      "answer": 3,
+      "in": 13,
+      "equal": 3,
+      "(": 89,
+      "true": 8,
+      "first": 1,
+      "displayString": 4,
+      "whose": 1,
+      "POSIX": 4,
+      "name": 8,
+      "try": 10,
+      "below": 1,
+      "invisibles": 2,
+      "theString": 4,
+      "theText": 3,
+      "string": 17,
+      "processFolder": 8
+    },
+    "Monkey": {
+      "|": 2,
+      "operators": 1,
+      "boolVariable1": 1,
+      "sequence": 1,
+      "comma": 1,
+      "New": 1,
+      "DrawSpiral": 3,
+      "extending": 1,
+      "generics": 1,
+      "VectorNode": 1,
+      "TARGET": 2,
+      "False": 1,
+      "prints": 1,
+      "syntax": 1,
+      "array": 1,
+      "i#": 1,
+      "DoOtherStuff": 1,
+      "Function": 2,
+      "y": 2,
+      "-": 2,
+      "testField": 1,
+      "Boolean": 1,
+      "[": 6,
+      "Abstract": 1,
+      "hitbox.Collide": 1,
+      "sample": 1,
+      "Field": 2,
+      "c": 1,
+      "shorttype": 1,
+      "string5": 1,
+      "oneStuff": 1,
+      "Next": 1,
+      "Until": 1,
+      "Die": 1,
+      "escape": 1,
+      "Class": 3,
+      "Cls": 1,
+      "Bool": 2,
+      "SetUpdateRate": 1,
+      "Game": 1,
+      "Enemy": 1,
+      "field": 1,
+      ".ToUpper": 1,
+      "": 1,
+      "i*Sin": 1,
+      "#End": 1,
+      "strings": 1,
+      "Strict": 1,
+      "Step": 1,
+      "preprocessor": 1,
+      "in": 1,
+      "]": 6,
+      "listOfStuff": 3,
+      "Node": 1,
+      ".2": 1,
+      "i*Cos": 1,
+      "OnUpdate": 1,
+      "class": 1,
+      "from": 1,
+      "keywords": 1,
+      "OnRender": 1,
+      "x": 2,
+      "True": 2,
+      "worst.List": 1,
+      "x#": 1,
+      "killed": 1,
+      "Method": 4,
+      "i*3": 1,
+      "#If": 1,
+      "string4": 1,
+      "worstCase": 1,
+      "lessStuff": 1,
+      "documentation": 1,
+      ")": 12,
+      "y#": 1,
+      "b": 6,
+      "updateCount": 3,
+      "#ElseIf": 1,
+      "boolVariable2": 1,
+      "Global": 14,
+      "the": 1,
+      "Print": 2,
+      "&": 1,
+      "characers": 1,
+      "For": 1,
+      "he": 2,
+      "App": 1,
+      "": 1,
+      "Local": 3,
+      "with": 1,
+      "DoStuff": 1,
+      "w*1.5": 1,
+      "clock": 3,
+      "updateCount*1.1": 1,
+      "DeviceWidth/2": 1,
+      "Extends": 2,
+      "string6": 1,
+      "End": 8,
+      "w": 3,
+      "+": 5,
+      "OnCreate": 1,
+      "String": 4,
+      "i*2": 1,
+      "string3": 1,
+      "text": 1,
+      "separated": 1,
+      "a": 3,
+      "event.pos": 1,
+      "(": 12,
+      "DrawRect": 1,
+      "oss": 1,
+      "me": 1
+    },
+    "GLSL": {
+      "lessThan": 2,
+      "s*s*": 1,
+      "offset": 5,
+      "vec3": 165,
+      "Duiker": 1,
+      "sign": 1,
+      "tree": 2,
+      "rayDir*t": 2,
+      "tonemapping": 1,
+      "pos": 42,
+      "lightDir": 3,
+      "between": 1,
+      "*0.7": 1,
+      "Configurations": 1,
+      "cameraDir": 2,
+      "taken": 1,
+      "initialize": 1,
+      "resPlants.w": 6,
+      "curve": 1,
+      "/": 24,
+      "quality": 2,
+      "exp": 2,
+      "resLeaves": 3,
+      "*0.5": 1,
+      "permute": 4,
+      "plants": 6,
+      "res.x": 3,
+      "res2.w": 3,
+      "D.yyy": 1,
+      "eps.yxy": 1,
+      "-": 108,
+      "resSand.xyz": 1,
+      ".g": 1,
+      "||": 3,
+      "*7": 1,
+      "h.y": 1,
+      "gradients": 1,
+      "leaf": 1,
+      "Intel": 1,
+      "y_": 2,
+      "x.zw": 1,
+      "i.y": 1,
+      "GRASS": 3,
+      "p3": 5,
+      "+": 108,
+      "gl_FragColor": 2,
+      "e.yxy": 1,
+      "chroma_green": 2,
+      "h.w": 1,
+      "Win7": 1,
+      "RAGGED_LEAVES": 5,
+      "diffuseDot": 2,
+      "calculate": 1,
+      "too": 1,
+      "Island": 1,
+      "p1": 5,
+      "fbm": 2,
+      ")": 386,
+      "refl": 3,
+      "reduce": 1,
+      "s1.xzyw*sh.zzww": 1,
+      "chroma_red": 2,
+      "gl_FragCoord.xy": 7,
+      "MAX_DIST": 3,
+      "Defaults": 1,
+      "ao": 5,
+      "ns": 4,
+      "resTreasure.xyz": 1,
+      "openAmount": 4,
+      "n.y": 3,
+      "snoise": 7,
+      "reflDir": 3,
+      "pos.xz": 2,
+      "x0.yzx": 1,
+      "chroma": 2,
+      "fragmentNormal": 2,
+      "rayDir*res.w": 1,
+      "but": 1,
+      "}": 61,
+      "p.y": 1,
+      "b1.xzyw": 1,
+      "Calculate": 1,
+      "uv.y*uv.y": 1,
+      "p*0.5": 1,
+      "//#define": 10,
+      "chromaticize_and_invert": 2,
+      "aberrate": 4,
+      "light": 5,
+      "//if": 1,
+      "kCube": 2,
+      "D.xzx": 1,
+      "{": 61,
+      "k*x": 1,
+      "resTreasure.w": 4,
+      "float": 103,
+      "uShift": 3,
+      "rayDir": 43,
+      "eps.yyx": 1,
+      "N": 1,
+      "sandCol": 2,
+      "water": 1,
+      "adsk_input1_frameratio": 5,
+      "#ifdef": 14,
+      "d.xzy": 1,
+      "DETAILED_NOISE": 3,
+      "y": 2,
+      "gl_FragColor.rgba": 1,
+      "px.x": 2,
+      "cameraVector": 2,
+      "uniform": 7,
+      "Only": 1,
+      "adsk_input1_h": 3,
+      "C.y": 1,
+      "e7": 3,
+      "iGlobalTime*0.5": 1,
+      "i2": 2,
+      "void": 5,
+      "distance": 1,
+      "vgrass": 2,
+      "resPlants": 2,
+      "D.y": 1,
+      "theta": 6,
+      "rad": 2,
+      "intersectSphere": 2,
+      "iGlobalTime": 7,
+      "MAX_DIST_SQUARED": 3,
+      "rgb_f.gg": 1,
+      "PI": 3,
+      "lut": 9,
+      "scene": 7,
+      "when": 1,
+      "rd": 1,
+      "skyCol": 4,
+      "Shift": 1,
+      "or": 1,
+      "specular": 4,
+      "rd.y": 1,
+      "Left": 1,
+      "s": 23,
+      "normalize": 14,
+      "norm.z": 1,
+      "rdir2*t": 2,
+      "sunDir*0.01": 2,
+      "pos.y": 8,
+      "rgb_f.rr": 1,
+      "else": 1,
+      "fragment": 1,
+      "op": 5,
+      "out": 1,
+      "iResolution.x/iResolution.y*0.5": 1,
+      "LIGHT_AA": 3,
+      "rdir2": 2,
+      "i1.y": 1,
+      "/3": 1,
+      "leaves": 7,
+      "aliasing": 1,
+      "norm.x": 1,
+      "used": 1,
+      "det": 11,
+      "lut_r": 5,
+      "NUM_LIGHTS": 4,
+      "on": 3,
+      "taylorInvSqrt": 2,
+      "a0.xy": 1,
+      "k*res.x/t": 1,
+      "//vec4": 3,
+      "i2.y": 1,
+      "D": 1,
+      "r*r": 1,
+      "specularColor": 2,
+      "fine": 1,
+      "rayDir*res2.w": 1,
+      "adsk_input1_aspect": 1,
+      "slow": 1,
+      "incr": 2,
+      "Other": 1,
+      "&&": 10,
+      "//": 36,
+      "intersectCylinder": 1,
+      "sand": 2,
+      "C.xxx": 2,
+      "b0.xzyw": 1,
+      "sampled.r": 1,
+      "lightVector": 4,
+      "m": 8,
+      "Avoid": 1,
+      "intersectLeaf": 2,
+      "final": 5,
+      "b*b": 2,
+      "resTreasure": 1,
+      "rdir*t": 1,
+      "pos.y*0.03": 2,
+      "Up": 1,
+      "a0": 1,
+      "Intersect": 11,
+      "op.yz": 3,
+      "res.xyz": 1,
+      "Should": 1,
+      "intersectTreasure": 2,
+      ".z": 5,
+      "k": 8,
+      "n_": 2,
+      "treasure": 1,
+      "leavesPos": 4,
+      "p.xz": 2,
+      "resWater": 1,
+      "sampled": 1,
+      "distFactor": 3,
+      "width": 2,
+      "i": 38,
+      "y.xy": 1,
+      ".x": 4,
+      "shadow": 4,
+      "traceReflection": 2,
+      "*s": 4,
+      "uv.x": 11,
+      "Peter": 1,
+      "resWater.w": 4,
+      "dot": 30,
+      "<": 23,
+      "tex": 6,
+      "g": 2,
+      "length": 7,
+      "specularDot": 2,
+      "e": 4,
+      "may": 1,
+      "sampler2D": 1,
+      "diffuse/specular": 1,
+      "for": 7,
+      "C.yyy": 2,
+      "intersectWater": 2,
+      "rayPos": 38,
+      "a1.xy": 1,
+      ".r": 3,
+      "s0": 2,
+      "c": 6,
+      "b1": 3,
+      "inverse_f": 2,
+      "trans": 2,
+      "diffuse": 4,
+      "x_": 3,
+      "s0.xzyw*sh.xxyy": 1,
+      "main": 3,
+      "lightColor": 3,
+      "fresnel": 2,
+      "grass": 2,
+      "x2": 5,
+      "High": 1,
+      "TONEMAP": 5,
+      "RG": 1,
+      "col": 32,
+      "#version": 1,
+      "rpos.yz": 2,
+      "SMALL_WAVES": 4,
+      "Haarm": 1,
+      "x0.xyz": 1,
+      "vec4": 72,
+      "uv.x*uv.x": 1,
+      "down": 1,
+      "x0": 7,
+      "chest": 1,
+      ".xzy": 2,
+      "dir.xy": 1,
+      "through": 1,
+      "#define": 13,
+      "angleOffset": 3,
+      "sampled.b": 1,
+      "]": 29,
+      "vec2": 26,
+      "eps": 5,
+      "heightmap": 1,
+      "D.wyz": 1,
+      "x*34.0": 1,
+      "adsk_input1_w": 4,
+      "sky": 5,
+      "[": 29,
+      "a0.zw": 1,
+      "res.y": 2,
+      "loop": 1,
+      "l.zxy": 2,
+      "sunCol": 5,
+      ".rgb": 2,
+      "g.xyz": 2,
+      "h.z": 1,
+      "HIGHQUALITY": 2,
+      "sample.a": 1,
+      "i.z": 1,
+      "*0.25": 4,
+      "res.w": 6,
+      "x*": 2,
+      "Soft": 1,
+      "lighting": 1,
+      "norm": 1,
+      "adsk_result_h": 2,
+      "sample": 2,
+      "h.x": 1,
+      "i.x": 1,
+      "p2": 5,
+      "iChannel0": 3,
+      "*": 115,
+      "REFLECTIONS": 3,
+      "resLeaves.xyz": 2,
+      "return": 47,
+      "rdir.yz": 1,
+      "camera": 8,
+      "lightLeaves": 3,
+      "p.xzy": 1,
+      "p0": 5,
+      "resSand.w": 4,
+      "if": 29,
+      "vShift": 3,
+      "all": 1,
+      "(": 386,
+      "Some": 1,
+      "bump": 2,
+      "by": 1,
+      ".b": 1,
+      "*2": 2,
+      "texture2D": 6,
+      "*2.0": 4,
+      "p.z": 2,
+      "rotate": 5,
+      "away": 1,
+      "n.x": 1,
+      ".5": 1,
+      "works": 1,
+      "sample.rgb": 1,
+      "p.x": 2,
+      "mod": 2,
+      "HD2000": 1,
+      "eps.xyy": 1,
+      "quite": 1,
+      "max_r": 2,
+      "normal": 7,
+      "chroma_blue": 2,
+      "/3.0": 1,
+      "e.xyy": 1,
+      "px.y": 2,
+      "upDownSway": 2,
+      "a1.zw": 1,
+      "clamp": 4,
+      "waves": 3,
+      "floor": 8,
+      "e8": 1,
+      "systems": 1,
+      "impulse": 2,
+      "intersectPlane": 3,
+      "k*10.0": 1,
+      "x": 11,
+      "intersectSand": 3,
+      "/6.0": 1,
+      "i1": 2,
+      "/7.0": 1,
+      "sampled.rgb": 1,
+      "direction": 1,
+      "v": 8,
+      "treeCol": 2,
+      "x.xy": 1,
+      "y.zw": 1,
+      "rgb_f.bb": 1,
+      "SSAA": 2,
+      "sqrt": 6,
+      "Optimization": 1,
+      "individual": 1,
+      "HEAVY_AA": 2,
+      "sway": 5,
+      "pos.yz": 2,
+      "#endif": 14,
+      "t": 44,
+      "dir": 2,
+      "pos.z": 2,
+      "apply_disto": 4,
+      "m*pos.xy": 1,
+      "#else": 5,
+      "rpos": 5,
+      "step": 2,
+      "crash": 1,
+      "rd.x": 1,
+      "////": 4,
+      "mix": 2,
+      "i1.z": 1,
+      "reflect": 1,
+      "pos.x": 1,
+      "r": 14,
+      "norm.y": 1,
+      "i2.z": 1,
+      "col*exposure": 1,
+      "rgb_uvs": 12,
+      "resPlants.xyz": 2,
+      "uvFact": 2,
+      "px": 4,
+      "i1.x": 1,
+      "leavesPos.xz": 2,
+      "ct": 2,
+      "p": 26,
+      "norm.w": 1,
+      "sh": 1,
+      "i2.x": 1,
+      "kCoeff": 2,
+      "Fade": 1,
+      "C": 1,
+      "m*m": 1,
+      "pos*0.8": 2,
+      "leavesCol": 4,
+      "*ns.x": 2,
+      "mat2": 2,
+      "const": 18,
+      "n": 18,
+      "rgb_f": 5,
+      "bool": 1,
+      "res2": 2,
+      "mod289": 4,
+      "sunDir": 5,
+      "*x": 3,
+      "int": 7,
+      "a1": 1,
+      "grassCol": 2,
+      "to": 1,
+      "noise": 1,
+      "plantsShadow": 2,
+      "MEDIUMQUALITY": 2,
+      "l": 1,
+      "ns.z": 3,
+      "varying": 3,
+      "be": 1,
+      "distortion_f": 3,
+      "halfAngle": 2,
+      "iResolution.yy": 1,
+      "browsers": 1,
+      ".y": 2,
+      "input1": 4,
+      "uv": 12,
+      "j": 4,
+      "Medium": 1,
+      "uv.y": 7,
+      "min": 11,
+      "h": 21,
+      "AMBIENT": 2,
+      "cos": 4,
+      "rayDir.y": 1,
+      ";": 353,
+      "f": 17,
+      "adsk_result_w": 3,
+      "each": 1,
+      "from": 2,
+      "e20": 3,
+      "rad*rad": 2,
+      "resWater.t": 1,
+      "dist": 7,
+      "and": 2,
+      "waterHeight": 4,
+      "res": 6,
+      "s1": 2,
+      "d": 10,
+      "max": 9,
+      "vtree": 4,
+      "the": 1,
+      "far": 1,
+      "sin": 8,
+      "ns.yyyy": 2,
+      "trace": 2,
+      "//Normalise": 1,
+      "sampled.g": 1,
+      "b0": 3,
+      "resLeaves.w": 10,
+      "alpha": 3,
+      "fract": 1,
+      "freeze": 1,
+      "b": 5,
+      "resSand": 2,
+      "*C.x": 2,
+      "x3": 4,
+      "pow": 3,
+      "dir.z": 1,
+      "SHADOWS": 5,
+      "rdir": 3,
+      "right": 1,
+      "Optimized": 1,
+      "rayPos.y": 1,
+      "x1": 4,
+      "abs": 2,
+      "exposure": 1,
+      "iq": 2
+    },
+    "Gosu": {
+      "writer": 2,
+      "@": 1,
+      "set": 1,
+      ".Name": 1,
+      "throw": 1,
+      "DBConnectionManager.getConnection": 1,
+      "PersonCSVTemplate.renderToString": 1,
+      "gst": 1,
+      "user.LastName": 1,
+      "not": 1,
+      "get": 1,
+      "new": 6,
+      "FileWriter": 1,
+      "example": 2,
+      "String": 6,
+      "stmt": 1,
+      "class": 1,
+      "{": 28,
+      "and": 1,
+      "@Deprecated": 1,
+      "Relationship": 3,
+      ".orderBy": 1,
+      "+": 2,
+      "property": 2,
+      "HashMap": 1,
+      "enhancement": 1,
+      "IEmailable": 2,
+      "(": 54,
+      "EmailHelper": 1,
+      "print": 4,
+      "_name": 4,
+      "this": 1,
+      "IllegalArgumentException": 1,
+      "_relationship": 2,
+      "represents": 1,
+      "function": 11,
+      "contact.Name": 1,
+      "%": 2,
+      "p.Name": 2,
+      "Name": 3,
+      "addPerson": 4,
+      "id": 1,
+      "var": 10,
+      "incrementAge": 1,
+      "users": 2,
+      "PersonCSVTemplate.render": 1,
+      "File": 2,
+      "user.Department": 1,
+      "addAllPeople": 1,
+      "FAMILY": 1,
+      "Age": 1,
+      "loadFromFile": 1,
+      "implements": 1,
+      "<%>": 2,
+      "age": 4,
+      "override": 1,
+      "file.eachLine": 1,
+      "RelationshipOfPerson": 1,
+      "]": 4,
+      "typeis": 1,
+      "": 1,
+      "allPeople": 1,
+      "line": 1,
+      "user": 1,
+      "result.next": 1,
+      "name": 4,
+      "<%!-->": 1,
+      "in": 3,
+      "contact": 3,
+      ")": 55,
+      "ALL_PEOPLE.Values": 3,
+      "List": 1,
+      "_age": 3,
+      "FRIEND": 1,
+      "file": 3,
+      "result.getString": 2,
+      "stmt.executeQuery": 1,
+      "p": 5,
+      "defined": 1,
+      "Hello": 2,
+      "": 1,
+      "this.split": 1,
+      "Collection": 1,
+      "java.util.*": 1,
+      "Contact": 1,
+      "p.Age": 1,
+      "user.FirstName": 1,
+      "allPeople.where": 1,
+      "Person": 7,
+      "<": 1,
+      "loadPersonFromDB": 1,
+      "readonly": 1,
+      "contacts": 2,
+      "line.HasContent": 1,
+      "result": 1,
+      "return": 4,
+      "getEmailName": 1,
+      "conn": 1,
+      "conn.prepareStatement": 1,
+      "hello": 1,
+      "static": 7,
+      "relationship": 2,
+      "toPerson": 1,
+      "[": 4,
+      "as": 3,
+      "extends": 1,
+      "result.getInt": 1,
+      "}": 28,
+      "uses": 2,
+      "BUSINESS_CONTACT": 1,
+      "delegate": 1,
+      "printPersonInfo": 1,
+      "stmt.setInt": 1,
+      "java.io.File": 1,
+      "-": 3,
+      "line.toPerson": 1,
+      "for": 2,
+      "params": 1,
+      "enum": 1,
+      "construct": 1,
+      "Integer": 3,
+      "saveToFile": 1,
+      "using": 2,
+      "int": 2,
+      "_emailHelper": 2,
+      "if": 4,
+      "package": 2,
+      "ALL_PEOPLE": 2,
+      "getAllPeopleOlderThanNOrderedByName": 1,
+      "Relationship.valueOf": 2,
+      "ALL_PEOPLE.containsKey": 2,
+      "": 1,
+      "vals": 4
+    },
+    "XProc": {
+      "": 1,
+      "": 1,
+      "": 1,
+      "": 1,
+      "encoding=": 1,
+      "": 1,
+      "": 1,
+      "": 1,
+      "Hello": 1,
+      "version=": 2,
+      "": 1,
+      "p=": 1,
+      "": 1,
+      "c=": 1,
+      "": 1,
+      "world": 1,
+      "port=": 2,
+      "xmlns": 2,
+      "": 1
+    },
+    "Volt": {
+      "cmdGroup": 2,
+      "i": 14,
+      "list": 1,
+      "else": 3,
+      "files": 1,
+      "Result": 2,
+      "ret": 1,
+      "f": 1,
+      "float": 2,
+      "passed": 5,
+      "watt.path": 1,
+      "new": 3,
+      "-": 3,
+      "printImprovments": 2,
+      "xml": 8,
+      "///": 1,
+      "compiler": 3,
+      "cmdGroup.waitAll": 1,
+      "[": 6,
+      "regressed": 6,
+      "*": 1,
+      "core.stdc.stdlib": 1,
+      "improved": 3,
+      "core.stdc.stdio": 1,
+      "auto": 6,
+      "double": 1,
+      ".xmlLog": 1,
+      "printRegressions": 2,
+      "rets": 5,
+      "cast": 5,
+      "/": 1,
+      "fopen": 1,
+      "bool": 4,
+      "if": 7,
+      "{": 12,
+      "return": 2,
+      "@todo": 1,
+      "printOk": 2,
+      ".ptr": 14,
+      "watt.process": 1,
+      "]": 6,
+      "failed": 5,
+      "module": 1,
+      "is": 2,
+      "results": 1,
+      ")": 37,
+      "<": 3,
+      "Scan": 1,
+      "rate": 2,
+      "stdout": 1,
+      "import": 7,
+      "}": 12,
+      "true": 4,
+      "getEnv": 1,
+      "total": 5,
+      "testList": 1,
+      "tests.length": 3,
+      "ret.msg.ptr": 4,
+      "null": 3,
+      "ret.test.ptr": 4,
+      "printFailing": 2,
+      "ret.ok": 1,
+      "&&": 2,
+      "fclose": 1,
+      "fprintf": 2,
+      "fflush": 2,
+      ".runTest": 1,
+      "for": 4,
+      "size_t": 3,
+      "rets.length": 1,
+      "printf": 6,
+      "tests": 2,
+      "+": 14,
+      "int": 8,
+      "CmdGroup": 1,
+      "ret.hasPassed": 4,
+      "string": 1,
+      "main": 2,
+      ";": 53,
+      "cmd": 1,
+      "(": 37
+    },
+    "Tea": {
+      "foo": 1,
+      "template": 1,
+      "<%>": 1
+    },
+    "Scilab": {
+      "then": 1,
+      "myfunction": 1,
+      "assert_checkequal": 1,
+      "return": 1,
+      "-": 2,
+      ";": 7,
+      "%": 4,
+      "+": 5,
+      ")": 7,
+      "f": 2,
+      "e": 4,
+      "d": 2,
+      "(": 7,
+      "]": 1,
+      "b": 4,
+      "a": 4,
+      "[": 1,
+      "home": 1,
+      "cosh": 1,
+      "assert_checkfalse": 1,
+      "if": 1,
+      "function": 1,
+      "disp": 1,
+      "cos": 1,
+      "pi": 3,
+      "myvar": 1,
+      "endfunction": 1,
+      "e.field": 1,
+      "else": 1,
+      "end": 1
     },
     "Parrot Assembly": {
-      "SHEBANG#!parrot": 1,
       ".pcc_sub": 1,
       "main": 2,
       "say": 1,
-      "end": 1
-    },
-    "Parrot Internal Representation": {
-      "SHEBANG#!parrot": 1,
-      ".sub": 1,
-      "main": 1,
-      "say": 1,
-      ".end": 1
-    },
-    "Pascal": {
-      "program": 1,
-      "gmail": 1,
-      ";": 6,
-      "uses": 1,
-      "Forms": 1,
-      "Unit2": 1,
-      "in": 1,
-      "{": 2,
-      "Form2": 2,
-      "}": 2,
-      "R": 1,
-      "*.res": 1,
-      "begin": 1,
-      "Application.Initialize": 1,
-      "Application.MainFormOnTaskbar": 1,
-      "True": 1,
-      "Application.CreateForm": 1,
-      "(": 1,
-      "TForm2": 1,
-      ")": 1,
-      "Application.Run": 1,
-      "end.": 1
-    },
-    "Perl": {
-      "package": 14,
-      "App": 131,
-      "Ack": 136,
-      ";": 1185,
-      "use": 76,
-      "warnings": 16,
-      "strict": 16,
-      "File": 54,
-      "Next": 27,
-      "Plugin": 2,
-      "Basic": 10,
-      "head1": 31,
-      "NAME": 5,
-      "-": 860,
-      "A": 2,
-      "container": 1,
-      "for": 78,
-      "functions": 2,
-      "the": 131,
-      "ack": 38,
-      "program": 6,
-      "VERSION": 15,
-      "Version": 1,
-      "cut": 27,
-      "our": 34,
-      "COPYRIGHT": 6,
-      "BEGIN": 7,
-      "{": 1121,
-      "}": 1134,
-      "fh": 28,
-      "*STDOUT": 6,
-      "%": 78,
-      "types": 26,
-      "type_wanted": 20,
-      "mappings": 29,
-      "ignore_dirs": 12,
-      "input_from_pipe": 8,
-      "output_to_pipe": 12,
-      "dir_sep_chars": 10,
-      "is_cygwin": 6,
-      "is_windows": 12,
-      "Spec": 13,
-      "(": 919,
-      ")": 917,
-      "Glob": 4,
-      "Getopt": 6,
-      "Long": 6,
-      "_MTN": 2,
-      "blib": 2,
-      "CVS": 5,
-      "RCS": 2,
-      "SCCS": 2,
-      "_darcs": 2,
-      "_sgbak": 2,
-      "_build": 2,
-      "actionscript": 2,
-      "[": 159,
-      "qw": 35,
-      "as": 33,
-      "mxml": 2,
-      "]": 155,
-      "ada": 4,
-      "adb": 2,
-      "ads": 2,
-      "asm": 4,
-      "s": 34,
-      "batch": 2,
-      "bat": 2,
-      "cmd": 2,
-      "binary": 3,
-      "q": 5,
-      "Binary": 2,
-      "files": 41,
-      "defined": 54,
-      "by": 11,
-      "Perl": 6,
-      "T": 2,
-      "op": 2,
-      "default": 16,
-      "off": 4,
-      "tt": 4,
-      "tt2": 2,
-      "ttml": 2,
-      "vb": 4,
-      "bas": 2,
-      "cls": 2,
-      "frm": 2,
-      "ctl": 2,
-      "resx": 2,
-      "verilog": 2,
-      "v": 19,
-      "vh": 2,
-      "sv": 2,
-      "vhdl": 4,
-      "vhd": 2,
-      "vim": 4,
-      "yaml": 4,
-      "yml": 2,
-      "xml": 6,
-      "dtd": 2,
-      "xsl": 2,
-      "xslt": 2,
-      "ent": 2,
-      "while": 31,
-      "my": 401,
-      "type": 69,
-      "exts": 6,
-      "each": 14,
-      "if": 272,
-      "ref": 33,
-      "ext": 14,
-      "@": 38,
-      "push": 30,
-      "_": 101,
-      "mk": 2,
-      "mak": 2,
-      "not": 53,
-      "t": 18,
-      "p": 9,
-      "STDIN": 2,
-      "O": 4,
-      "eq": 31,
-      "/MSWin32/": 2,
-      "quotemeta": 5,
-      "catfile": 4,
-      "SYNOPSIS": 5,
-      "If": 14,
-      "you": 33,
-      "want": 5,
-      "to": 86,
-      "know": 4,
-      "about": 3,
-      "F": 24,
-      "": 13,
-      "see": 4,
-      "file": 40,
-      "itself.": 2,
-      "No": 4,
-      "user": 4,
-      "serviceable": 1,
-      "parts": 1,
-      "inside.": 1,
-      "is": 62,
-      "all": 22,
-      "that": 27,
-      "should": 6,
-      "this.": 1,
-      "FUNCTIONS": 1,
-      "head2": 32,
-      "read_ackrc": 4,
-      "Reads": 1,
-      "contents": 2,
-      "of": 55,
-      ".ackrc": 1,
-      "and": 76,
-      "returns": 4,
-      "arguments.": 1,
-      "sub": 225,
-      "@files": 12,
-      "ENV": 40,
-      "ACKRC": 2,
-      "@dirs": 4,
-      "HOME": 4,
-      "USERPROFILE": 2,
-      "dir": 27,
-      "grep": 17,
-      "bsd_glob": 4,
-      "GLOB_TILDE": 2,
-      "filename": 68,
-      "&&": 83,
-      "e": 20,
-      "open": 7,
-      "or": 47,
-      "die": 38,
-      "@lines": 21,
-      "/./": 2,
-      "/": 69,
-      "s*#/": 2,
-      "<$fh>": 4,
-      "chomp": 3,
-      "close": 19,
-      "s/": 22,
-      "+": 120,
-      "//": 9,
-      "return": 157,
-      "get_command_line_options": 4,
-      "Gets": 3,
-      "command": 13,
-      "line": 20,
-      "arguments": 2,
-      "does": 10,
-      "specific": 1,
-      "tweaking.": 1,
-      "opt": 291,
-      "pager": 19,
-      "ACK_PAGER_COLOR": 7,
-      "||": 49,
-      "ACK_PAGER": 5,
-      "getopt_specs": 6,
-      "m": 17,
-      "after_context": 16,
-      "before_context": 18,
-      "shift": 165,
-      "val": 26,
-      "break": 14,
-      "c": 5,
-      "count": 23,
-      "color": 38,
-      "ACK_COLOR_MATCH": 5,
-      "ACK_COLOR_FILENAME": 5,
-      "ACK_COLOR_LINENO": 4,
-      "column": 4,
-      "#": 99,
-      "ignore": 7,
-      "this": 18,
-      "option": 7,
-      "it": 25,
-      "handled": 2,
-      "beforehand": 2,
-      "f": 25,
-      "flush": 8,
-      "follow": 7,
-      "G": 11,
-      "heading": 18,
-      "h": 6,
-      "H": 6,
-      "i": 26,
-      "invert_file_match": 8,
-      "lines": 19,
-      "l": 17,
-      "regex": 28,
-      "n": 19,
-      "o": 17,
-      "output": 36,
-      "undef": 17,
-      "passthru": 9,
-      "print0": 7,
-      "Q": 7,
-      "show_types": 4,
-      "smart_case": 3,
-      "sort_files": 11,
-      "u": 10,
-      "w": 4,
-      "remove_dir_sep": 7,
-      "delete": 10,
-      "print_version_statement": 2,
-      "exit": 16,
-      "show_help": 3,
-      "@_": 41,
-      "show_help_types": 2,
-      "require": 12,
-      "Pod": 4,
-      "Usage": 4,
-      "pod2usage": 2,
-      "verbose": 2,
-      "exitval": 2,
-      "dummy": 2,
-      "wanted": 4,
-      "no//": 2,
-      "must": 5,
-      "be": 30,
-      "later": 2,
-      "exists": 19,
-      "else": 53,
-      "qq": 18,
-      "Unknown": 2,
-      "unshift": 4,
-      "@ARGV": 12,
-      "split": 13,
-      "ACK_OPTIONS": 5,
-      "def_types_from_ARGV": 5,
-      "filetypes_supported": 5,
-      "parser": 12,
-      "Parser": 4,
-      "new": 55,
-      "configure": 4,
-      "getoptions": 4,
-      "to_screen": 10,
-      "defaults": 16,
-      "eval": 8,
-      "Win32": 9,
-      "Console": 2,
-      "ANSI": 3,
-      "key": 20,
-      "value": 12,
-      "<": 15,
-      "join": 5,
-      "map": 10,
-      "@ret": 10,
-      "from": 19,
-      "warn": 22,
-      "..": 7,
-      "uniq": 4,
-      "@uniq": 2,
-      "sort": 8,
-      "a": 81,
-      "<=>": 2,
-      "b": 6,
-      "keys": 15,
-      "numerical": 2,
-      "occurs": 2,
-      "only": 11,
-      "once": 4,
-      "Go": 1,
-      "through": 6,
-      "look": 2,
-      "I": 67,
-      "<--type-set>": 1,
-      "foo=": 1,
-      "bar": 3,
-      "<--type-add>": 1,
-      "xml=": 1,
-      ".": 121,
-      "Remove": 1,
-      "them": 5,
-      "add": 8,
-      "supported": 1,
-      "filetypes": 8,
-      "i.e.": 2,
-      "into": 6,
-      "etc.": 1,
-      "@typedef": 8,
-      "td": 6,
-      "set": 11,
-      "Builtin": 4,
-      "cannot": 4,
-      "changed.": 4,
-      "ne": 9,
-      "delete_type": 5,
-      "Type": 2,
-      "exist": 4,
-      "creating": 2,
-      "with": 26,
-      "...": 2,
-      "unless": 39,
-      "@exts": 8,
-      ".//": 2,
-      "Cannot": 4,
-      "append": 2,
-      "Removes": 1,
-      "internal": 1,
-      "structures": 1,
-      "containing": 5,
-      "information": 1,
-      "type_wanted.": 1,
-      "Internal": 2,
-      "error": 4,
-      "builtin": 2,
-      "ignoredir_filter": 5,
-      "Standard": 1,
-      "filter": 12,
-      "pass": 1,
-      "L": 18,
-      "": 1,
-      "descend_filter.": 1,
-      "It": 2,
-      "true": 3,
-      "directory": 8,
-      "any": 3,
-      "ones": 1,
-      "we": 7,
-      "ignore.": 1,
-      "path": 28,
-      "This": 24,
-      "removes": 1,
-      "trailing": 1,
-      "separator": 4,
-      "there": 6,
-      "one": 9,
-      "its": 2,
-      "argument": 1,
-      "Returns": 10,
-      "list": 10,
-      "<$filename>": 1,
-      "could": 2,
-      "be.": 1,
-      "For": 5,
-      "example": 5,
-      "": 1,
-      "The": 20,
-      "filetype": 1,
-      "will": 7,
-      "C": 48,
-      "": 1,
-      "can": 26,
-      "skipped": 2,
-      "something": 2,
-      "avoid": 1,
-      "searching": 6,
-      "even": 4,
-      "under": 4,
-      "a.": 1,
-      "constant": 2,
-      "TEXT": 16,
-      "basename": 9,
-      ".*": 2,
-      "is_searchable": 8,
-      "lc_basename": 8,
-      "lc": 5,
-      "r": 14,
-      "B": 75,
-      "header": 17,
-      "SHEBANG#!#!": 2,
-      "ruby": 3,
-      "|": 28,
-      "lua": 2,
-      "erl": 2,
-      "hp": 2,
-      "ython": 2,
-      "d": 9,
-      "d.": 2,
-      "*": 8,
-      "b/": 4,
-      "ba": 2,
-      "k": 6,
-      "z": 2,
-      "sh": 2,
-      "/i": 2,
-      "search": 11,
-      "false": 1,
-      "regular": 3,
-      "expression": 9,
-      "found.": 4,
-      "www": 2,
-      "U": 2,
-      "y": 8,
-      "tr/": 2,
-      "x": 7,
-      "w/": 3,
-      "nOo_/": 2,
-      "_thpppt": 3,
-      "_get_thpppt": 3,
-      "print": 35,
-      "_bar": 3,
-      "<<": 6,
-      "&": 22,
-      "*I": 2,
-      "g": 7,
-      "#.": 6,
-      ".#": 4,
-      "I#": 2,
-      "#I": 6,
-      "#7": 4,
-      "results.": 2,
-      "on": 24,
-      "when": 17,
-      "used": 11,
-      "interactively": 6,
-      "no": 21,
-      "Print": 6,
-      "between": 3,
-      "results": 8,
-      "different": 2,
-      "files.": 6,
-      "group": 2,
-      "Same": 8,
-      "nogroup": 2,
-      "noheading": 2,
-      "nobreak": 2,
-      "Highlight": 2,
-      "matching": 15,
-      "text": 6,
-      "redirected": 2,
-      "Windows": 4,
-      "colour": 2,
-      "COLOR": 6,
-      "match": 21,
-      "lineno": 2,
-      "Set": 3,
-      "filenames": 7,
-      "matches": 7,
-      "numbers.": 2,
-      "Flush": 2,
-      "immediately": 2,
-      "non": 2,
-      "goes": 2,
-      "pipe": 4,
-      "finding": 2,
-      "Only": 7,
-      "found": 9,
-      "without": 3,
-      "searching.": 2,
-      "PATTERN": 8,
-      "specified.": 4,
-      "REGEX": 2,
-      "but": 4,
-      "REGEX.": 2,
-      "Sort": 2,
-      "lexically.": 3,
-      "invert": 2,
-      "Print/search": 2,
-      "handle": 2,
-      "do": 11,
-      "g/": 2,
-      "G.": 2,
-      "show": 3,
-      "Show": 2,
-      "which": 6,
-      "has.": 2,
-      "inclusion/exclusion": 2,
-      "All": 4,
-      "searched": 5,
-      "Ignores": 2,
-      ".svn": 3,
-      "other": 5,
-      "ignored": 6,
-      "directories": 9,
-      "unrestricted": 2,
-      "name": 44,
-      "Add/Remove": 2,
-      "dirs": 2,
-      "R": 2,
-      "recurse": 2,
-      "Recurse": 3,
-      "subdirectories": 2,
-      "END_OF_HELP": 2,
-      "VMS": 2,
-      "vd": 2,
-      "Term": 6,
-      "ANSIColor": 8,
-      "black": 3,
-      "on_yellow": 3,
-      "bold": 5,
-      "green": 3,
-      "yellow": 3,
-      "printing": 2,
-      "qr/": 13,
-      "last_output_line": 6,
-      "any_output": 10,
-      "keep_context": 8,
-      "@before": 16,
-      "before_starts_at_line": 10,
-      "after": 18,
-      "number": 3,
-      "still": 4,
-      "res": 59,
-      "next_text": 8,
-      "has_lines": 4,
-      "scalar": 2,
-      "m/": 4,
-      "regex/": 9,
-      "next": 9,
-      "print_match_or_context": 13,
-      "elsif": 10,
-      "last": 17,
-      "max": 12,
-      "nmatches": 61,
-      "show_filename": 35,
-      "context_overall_output_count": 6,
-      "print_blank_line": 2,
-      "is_binary": 4,
-      "search_resource": 7,
-      "is_match": 7,
-      "starting_line_no": 1,
-      "match_start": 5,
-      "match_end": 3,
-      "Prints": 4,
-      "out": 2,
-      "context": 1,
-      "around": 5,
-      "match.": 3,
-      "opts": 2,
-      "array": 7,
-      "line_no": 12,
-      "show_column": 4,
-      "display_filename": 8,
-      "colored": 6,
-      "print_first_filename": 2,
-      "sep": 8,
-      "output_func": 8,
-      "print_separator": 2,
-      "print_filename": 2,
-      "display_line_no": 4,
-      "print_line_no": 2,
-      "regex/go": 2,
-      "regex/Term": 2,
-      "substr": 2,
-      "/eg": 2,
-      "z/": 2,
-      "K/": 2,
-      "z//": 2,
-      "print_column_no": 2,
-      "scope": 4,
-      "TOTAL_COUNT_SCOPE": 2,
-      "total_count": 10,
-      "get_total_count": 4,
-      "reset_total_count": 4,
-      "search_and_list": 8,
-      "Optimized": 1,
-      "version": 2,
-      "lines.": 3,
-      "ors": 11,
-      "record": 3,
-      "show_total": 6,
-      "print_count": 4,
-      "print_count0": 2,
-      "filetypes_supported_set": 9,
-      "True/False": 1,
-      "are": 24,
-      "print_files": 4,
-      "iter": 23,
-      "returned": 2,
-      "iterator": 3,
-      "<$regex>": 1,
-      "<$one>": 1,
-      "stop": 1,
-      "first.": 1,
-      "<$ors>": 1,
-      "<\"\\n\">": 1,
-      "defines": 1,
-      "what": 14,
-      "filename.": 1,
-      "print_files_with_matches": 4,
-      "where": 3,
-      "was": 2,
-      "repo": 18,
-      "Repository": 11,
-      "next_resource": 6,
-      "print_matches": 4,
-      "tarballs_work": 4,
-      ".tar": 2,
-      ".gz": 2,
-      "Tar": 4,
-      "XXX": 4,
-      "Error": 2,
-      "checking": 2,
-      "needs_line_scan": 14,
-      "reset": 5,
-      "filetype_setup": 4,
-      "Minor": 1,
-      "housekeeping": 1,
-      "before": 1,
-      "go": 1,
-      "expand_filenames": 7,
-      "reference": 8,
-      "expanded": 3,
-      "globs": 1,
-      "EXPAND_FILENAMES_SCOPE": 4,
-      "argv": 12,
-      "attr": 6,
-      "foreach": 4,
-      "pattern": 10,
-      "@results": 14,
-      "didn": 2,
-      "ve": 2,
-      "tried": 2,
-      "load": 2,
-      "GetAttributes": 2,
-      "end": 9,
-      "attributes": 4,
-      "got": 2,
-      "get_starting_points": 4,
-      "starting": 2,
-      "@what": 14,
-      "reslash": 4,
-      "Assume": 2,
-      "current": 5,
-      "start_point": 4,
-      "_match": 8,
-      "target": 6,
-      "invert_flag": 4,
-      "get_iterator": 4,
-      "Return": 2,
-      "starting_point": 10,
-      "g_regex": 4,
-      "file_filter": 12,
-      "g_regex/": 6,
-      "Maybe": 2,
-      "is_interesting": 4,
-      "descend_filter": 11,
-      "error_handler": 5,
-      "msg": 4,
-      "follow_symlinks": 6,
-      "set_up_pager": 3,
-      "Unable": 2,
-      "going": 1,
-      "pipe.": 1,
-      "exit_from_ack": 5,
-      "Exit": 1,
-      "application": 10,
-      "correct": 1,
-      "code.": 2,
-      "otherwise": 2,
-      "handed": 1,
-      "in": 29,
-      "argument.": 1,
-      "rc": 11,
-      "LICENSE": 3,
-      "Copyright": 2,
-      "Andy": 2,
-      "Lester.": 2,
-      "free": 3,
-      "software": 3,
-      "redistribute": 3,
-      "and/or": 3,
-      "modify": 3,
-      "terms": 3,
-      "Artistic": 2,
-      "License": 2,
-      "v2.0.": 2,
-      "End": 3,
-      "SHEBANG#!#! perl": 4,
-      "examples/benchmarks/fib.pl": 1,
-      "Fibonacci": 2,
-      "Benchmark": 1,
-      "DESCRIPTION": 4,
-      "Calculates": 1,
-      "Number": 1,
-      "": 1,
-      "unspecified": 1,
-      "fib": 4,
-      "N": 2,
-      "SEE": 3,
-      "ALSO": 3,
-      "": 1,
-      "SHEBANG#!perl": 5,
-      "MAIN": 1,
-      "main": 3,
-      "env_is_usable": 3,
-      "th": 1,
-      "pt": 1,
-      "env": 76,
-      "@keys": 2,
-      "ACK_/": 1,
-      "@ENV": 1,
-      "load_colors": 1,
-      "ACK_SWITCHES": 1,
-      "Unbuffer": 1,
-      "mode": 1,
-      "build_regex": 3,
-      "nargs": 2,
-      "Resource": 5,
-      "file_matching": 2,
-      "check_regex": 2,
-      "like": 12,
-      "finder": 1,
-      "options": 7,
-      "FILE...": 1,
-      "DIRECTORY...": 1,
-      "designed": 1,
-      "replacement": 1,
-      "uses": 2,
-      "": 5,
-      "searches": 1,
-      "named": 3,
-      "input": 9,
-      "FILEs": 1,
-      "standard": 1,
-      "given": 10,
-      "PATTERN.": 1,
-      "By": 2,
-      "prints": 2,
-      "also": 7,
-      "would": 3,
-      "actually": 1,
-      "let": 1,
-      "take": 5,
-      "advantage": 1,
-      ".wango": 1,
-      "won": 1,
-      "throw": 1,
-      "away": 1,
-      "because": 3,
-      "times": 2,
-      "symlinks": 1,
-      "than": 5,
-      "whatever": 1,
-      "were": 1,
-      "specified": 3,
-      "line.": 4,
-      "default.": 2,
-      "item": 42,
-      "": 11,
-      "paths": 3,
-      "included": 1,
-      "search.": 1,
-      "entire": 2,
-      "matched": 1,
-      "against": 1,
-      "shell": 4,
-      "glob.": 1,
-      "<-i>": 5,
-      "<-w>": 2,
-      "<-v>": 3,
-      "<-Q>": 4,
-      "apply": 2,
-      "relative": 1,
-      "convenience": 1,
-      "shortcut": 2,
-      "<-f>": 6,
-      "<--group>": 2,
-      "<--nogroup>": 2,
-      "groups": 1,
-      "with.": 1,
-      "interactively.": 1,
-      "result": 1,
-      "per": 1,
-      "grep.": 2,
-      "redirected.": 1,
-      "<-H>": 1,
-      "<--with-filename>": 1,
-      "<-h>": 1,
-      "<--no-filename>": 1,
-      "Suppress": 1,
-      "prefixing": 1,
-      "multiple": 5,
-      "searched.": 1,
-      "<--help>": 1,
-      "short": 1,
-      "help": 2,
-      "statement.": 1,
-      "<--ignore-case>": 1,
-      "Ignore": 3,
-      "case": 3,
-      "strings.": 1,
-      "applies": 3,
-      "regexes": 3,
-      "<-g>": 5,
-      "<-G>": 3,
-      "options.": 4,
-      "": 2,
-      "etc": 2,
-      "May": 2,
-      "directories.": 2,
-      "mason": 1,
-      "users": 4,
-      "may": 3,
-      "wish": 1,
-      "include": 1,
-      "<--ignore-dir=data>": 1,
-      "<--noignore-dir>": 1,
-      "allows": 2,
-      "normally": 1,
-      "perhaps": 1,
-      "research": 1,
-      "<.svn/props>": 1,
-      "always": 5,
-      "simple": 2,
-      "name.": 1,
-      "Nested": 1,
-      "": 1,
-      "NOT": 1,
-      "supported.": 1,
-      "You": 3,
-      "need": 3,
-      "specify": 1,
-      "<--ignore-dir=foo>": 1,
-      "then": 3,
-      "foo": 6,
-      "taken": 1,
-      "account": 1,
-      "explicitly": 1,
-      "": 2,
-      "file.": 2,
-      "Multiple": 1,
-      "<--line>": 1,
-      "comma": 1,
-      "separated": 2,
-      "<--line=3,5,7>": 1,
-      "<--line=4-7>": 1,
-      "works.": 1,
-      "ascending": 1,
-      "order": 2,
-      "matter": 1,
-      "<-l>": 2,
-      "<--files-with-matches>": 1,
-      "instead": 4,
-      "text.": 1,
-      "<-L>": 1,
-      "<--files-without-matches>": 1,
-      "": 2,
-      "equivalent": 2,
-      "specifying": 1,
-      "Specify": 1,
-      "explicitly.": 1,
-      "helpful": 2,
-      "don": 2,
-      "": 1,
-      "via": 1,
-      "": 4,
-      "": 4,
-      "environment": 2,
-      "variables.": 1,
-      "Using": 3,
-      "suppress": 3,
-      "grouping": 3,
-      "coloring": 3,
-      "piping": 3,
-      "does.": 2,
-      "<--passthru>": 1,
-      "whether": 1,
-      "they": 1,
-      "expression.": 1,
-      "Highlighting": 1,
-      "work": 1,
-      "though": 1,
-      "so": 3,
-      "highlight": 1,
-      "seeing": 1,
-      "tail": 1,
-      "/access.log": 1,
-      "<--print0>": 1,
-      "works": 1,
-      "conjunction": 1,
-      "null": 1,
-      "byte": 1,
-      "usual": 1,
-      "newline.": 1,
-      "dealing": 1,
-      "contain": 2,
-      "whitespace": 1,
-      "e.g.": 1,
-      "html": 1,
-      "xargs": 2,
-      "rm": 1,
-      "<--literal>": 1,
-      "Quote": 1,
-      "metacharacters": 2,
-      "treated": 1,
-      "literal.": 1,
-      "<-r>": 1,
-      "<-R>": 1,
-      "<--recurse>": 1,
-      "just": 2,
-      "here": 2,
-      "compatibility": 2,
-      "turning": 1,
-      "<--no-recurse>": 1,
-      "off.": 1,
-      "<--smart-case>": 1,
-      "<--no-smart-case>": 1,
-      "strings": 1,
-      "contains": 1,
-      "uppercase": 1,
-      "characters.": 1,
-      "similar": 1,
-      "": 1,
-      "vim.": 1,
-      "overrides": 2,
-      "option.": 1,
-      "<--sort-files>": 1,
-      "Sorts": 1,
-      "Use": 6,
-      "your": 13,
-      "listings": 1,
-      "deterministic": 1,
-      "runs": 1,
-      "<--show-types>": 1,
-      "Outputs": 1,
-      "associates": 1,
-      "Works": 1,
-      "<--thpppt>": 1,
-      "Display": 1,
-      "important": 1,
-      "Bill": 1,
-      "Cat": 1,
-      "logo.": 1,
-      "Note": 4,
-      "exact": 1,
-      "spelling": 1,
-      "<--thpppppt>": 1,
-      "important.": 1,
-      "make": 3,
-      "perl": 8,
-      "php": 2,
-      "python": 1,
-      "looks": 1,
-      "location.": 1,
-      "variable": 1,
-      "specifies": 1,
-      "placed": 1,
-      "front": 1,
-      "explicit": 1,
-      "Specifies": 4,
-      "recognized": 1,
-      "clear": 2,
-      "dark": 1,
-      "underline": 1,
-      "underscore": 2,
-      "blink": 1,
-      "reverse": 1,
-      "concealed": 1,
-      "red": 1,
-      "blue": 1,
-      "magenta": 1,
-      "on_black": 1,
-      "on_red": 1,
-      "on_green": 1,
-      "on_blue": 1,
-      "on_magenta": 1,
-      "on_cyan": 1,
-      "on_white.": 1,
-      "Case": 1,
-      "significant.": 1,
-      "Underline": 1,
-      "reset.": 1,
-      "alone": 1,
-      "sets": 4,
-      "foreground": 1,
-      "on_color": 1,
-      "background": 1,
-      "color.": 2,
-      "<--color-filename>": 1,
-      "printed": 1,
-      "<--color>": 1,
-      "mode.": 1,
-      "<--color-lineno>": 1,
-      "See": 1,
-      "": 1,
-      "specifications.": 1,
-      "such": 5,
-      "": 1,
-      "": 1,
-      "": 1,
-      "send": 1,
-      "output.": 1,
-      "except": 1,
-      "assume": 1,
-      "support": 2,
-      "both": 1,
-      "understands": 1,
-      "sequences.": 1,
-      "never": 1,
-      "back": 3,
-      "ACK": 2,
-      "OTHER": 1,
-      "TOOLS": 1,
-      "Vim": 3,
-      "integration": 3,
-      "integrates": 1,
-      "easily": 2,
-      "editor.": 1,
-      "<.vimrc>": 1,
-      "grepprg": 1,
-      "That": 3,
-      "examples": 1,
-      "<-a>": 1,
-      "flags.": 1,
-      "Now": 1,
-      "step": 1,
-      "Dumper": 1,
-      "perllib": 1,
-      "Emacs": 1,
-      "Phil": 1,
-      "Jackson": 1,
-      "put": 1,
-      "together": 1,
-      "an": 11,
-      "": 1,
-      "extension": 1,
-      "": 1,
-      "TextMate": 2,
-      "Pedro": 1,
-      "Melo": 1,
-      "who": 1,
-      "writes": 1,
-      "Shell": 2,
-      "Code": 1,
-      "greater": 1,
-      "normal": 1,
-      "code": 7,
-      "<$?=256>": 1,
-      "": 1,
-      "backticks.": 1,
-      "errors": 1,
-      "used.": 1,
-      "at": 3,
-      "least": 1,
-      "returned.": 1,
-      "DEBUGGING": 1,
-      "PROBLEMS": 1,
-      "gives": 2,
-      "re": 3,
-      "expecting": 1,
-      "forgotten": 1,
-      "<--noenv>": 1,
-      "<.ackrc>": 1,
-      "remember.": 1,
-      "Put": 1,
-      "definitions": 1,
-      "it.": 1,
-      "smart": 1,
-      "too.": 1,
-      "there.": 1,
-      "working": 1,
-      "big": 1,
-      "codesets": 1,
-      "more": 2,
-      "create": 2,
-      "tree": 2,
-      "ideal": 1,
-      "sending": 1,
-      "": 1,
-      "prefer": 1,
-      "doubt": 1,
-      "day": 1,
-      "find": 1,
-      "trouble": 1,
-      "spots": 1,
-      "website": 1,
-      "visitor.": 1,
-      "had": 1,
-      "problem": 1,
-      "loading": 1,
-      "": 1,
-      "took": 1,
-      "access": 2,
-      "log": 3,
-      "scanned": 1,
-      "twice.": 1,
-      "aa.bb.cc.dd": 1,
-      "/path/to/access.log": 1,
-      "B5": 1,
-      "troublesome.gif": 1,
-      "first": 1,
-      "finds": 2,
-      "Apache": 2,
-      "IP.": 1,
-      "second": 1,
-      "troublesome": 1,
-      "GIF": 1,
-      "shows": 1,
-      "previous": 1,
-      "five": 1,
-      "case.": 1,
-      "Share": 1,
-      "knowledge": 1,
-      "Join": 1,
-      "mailing": 1,
-      "list.": 1,
-      "Send": 1,
-      "me": 1,
-      "tips": 1,
-      "here.": 1,
-      "FAQ": 1,
-      "Why": 2,
-      "isn": 1,
-      "doesn": 8,
-      "behavior": 3,
-      "driven": 1,
-      "filetype.": 1,
-      "": 1,
-      "kind": 1,
-      "ignores": 1,
-      "switch": 1,
-      "you.": 1,
-      "source": 2,
-      "compiled": 1,
-      "object": 6,
-      "control": 1,
-      "metadata": 1,
-      "wastes": 1,
-      "lot": 1,
-      "time": 3,
-      "those": 2,
-      "well": 2,
-      "returning": 1,
-      "things": 1,
-      "great": 1,
-      "did": 1,
-      "replace": 3,
-      "read": 6,
-      "only.": 1,
-      "has": 2,
-      "perfectly": 1,
-      "good": 2,
-      "way": 2,
-      "using": 2,
-      "<-p>": 1,
-      "<-n>": 1,
-      "switches.": 1,
-      "certainly": 2,
-      "select": 1,
-      "update.": 1,
-      "change": 1,
-      "PHP": 1,
-      "Unix": 1,
-      "Can": 1,
-      "recognize": 1,
-      "<.xyz>": 1,
-      "already": 2,
-      "program/package": 1,
-      "called": 3,
-      "ack.": 2,
-      "Yes": 1,
-      "know.": 1,
-      "nothing": 1,
-      "suggest": 1,
-      "symlink": 1,
-      "points": 1,
-      "": 1,
-      "crucial": 1,
-      "benefits": 1,
-      "having": 1,
-      "Regan": 1,
-      "Slaven": 1,
-      "ReziE": 1,
-      "<0x107>": 1,
-      "Mark": 1,
-      "Stosberg": 1,
-      "David": 1,
-      "Alan": 1,
-      "Pisoni": 1,
-      "Adriano": 1,
-      "Ferreira": 1,
-      "James": 1,
-      "Keenan": 1,
-      "Leland": 1,
-      "Johnson": 1,
-      "Ricardo": 1,
-      "Signes": 1,
-      "Pete": 1,
-      "Krawczyk.": 1,
-      "files_defaults": 3,
-      "skip_dirs": 3,
-      "CORE": 3,
-      "curdir": 1,
-      "updir": 1,
-      "__PACKAGE__": 1,
-      "parms": 15,
-      "@queue": 8,
-      "_setup": 2,
-      "fullpath": 12,
-      "splice": 2,
-      "local": 5,
-      "wantarray": 3,
-      "_candidate_files": 2,
-      "sort_standard": 2,
-      "cmp": 2,
-      "sort_reverse": 1,
-      "@parts": 3,
-      "passed_parms": 6,
-      "copy": 4,
-      "parm": 1,
-      "hash": 11,
-      "badkey": 1,
-      "caller": 2,
-      "start": 6,
-      "dh": 4,
-      "opendir": 1,
-      "@newfiles": 5,
-      "sort_sub": 4,
-      "readdir": 1,
-      "has_stat": 3,
-      "catdir": 3,
-      "closedir": 1,
-      "": 1,
-      "these": 1,
-      "updated": 1,
-      "update": 1,
-      "message": 1,
-      "bak": 1,
-      "core": 1,
-      "swp": 1,
-      "min": 3,
-      "js": 1,
-      "1": 1,
-      "str": 12,
-      "regex_is_lc": 2,
-      "S": 1,
-      ".*//": 1,
-      "_my_program": 3,
-      "Basename": 2,
-      "FAIL": 12,
-      "Carp": 11,
-      "confess": 2,
-      "@ISA": 2,
-      "class": 8,
-      "self": 141,
-      "bless": 7,
-      "could_be_binary": 4,
-      "opened": 1,
-      "id": 6,
-      "*STDIN": 2,
-      "size": 5,
-      "_000": 1,
-      "buffer": 9,
-      "sysread": 1,
-      "regex/m": 1,
-      "seek": 4,
-      "readline": 1,
-      "nexted": 3,
-      "CGI": 5,
-      "Fast": 3,
-      "XML": 2,
-      "Hash": 11,
-      "XS": 2,
-      "FindBin": 1,
-      "Bin": 3,
-      "#use": 1,
-      "lib": 2,
-      "_stop": 4,
-      "request": 11,
-      "SIG": 3,
-      "nginx": 2,
-      "external": 2,
-      "fcgi": 2,
-      "Ext_Request": 1,
-      "FCGI": 1,
-      "Request": 11,
-      "*STDERR": 1,
-      "int": 2,
-      "ARGV": 2,
-      "conv": 2,
-      "use_attr": 1,
-      "indent": 1,
-      "xml_decl": 1,
-      "tmpl_path": 2,
-      "tmpl": 5,
-      "data": 3,
-      "nick": 1,
-      "parent": 5,
-      "third_party": 1,
-      "artist_name": 2,
-      "venue": 2,
-      "event": 2,
-      "date": 2,
-      "zA": 1,
-      "Z0": 1,
-      "Content": 2,
-      "application/xml": 1,
-      "charset": 2,
-      "utf": 2,
-      "hash2xml": 1,
-      "text/html": 1,
-      "nError": 1,
-      "M": 1,
-      "system": 1,
-      "Foo": 11,
-      "Bar": 1,
-      "@array": 1,
-      "Plack": 25,
-      "_001": 1,
-      "HTTP": 16,
-      "Headers": 8,
-      "MultiValue": 9,
-      "Body": 2,
-      "Upload": 2,
-      "TempBuffer": 2,
-      "URI": 11,
-      "Escape": 6,
-      "_deprecated": 8,
-      "alt": 1,
-      "method": 7,
-      "carp": 2,
-      "croak": 3,
-      "required": 2,
-      "address": 2,
-      "REMOTE_ADDR": 1,
-      "remote_host": 2,
-      "REMOTE_HOST": 1,
-      "protocol": 1,
-      "SERVER_PROTOCOL": 1,
-      "REQUEST_METHOD": 1,
-      "port": 1,
-      "SERVER_PORT": 2,
-      "REMOTE_USER": 1,
-      "request_uri": 1,
-      "REQUEST_URI": 2,
-      "path_info": 4,
-      "PATH_INFO": 3,
-      "script_name": 1,
-      "SCRIPT_NAME": 2,
-      "scheme": 3,
-      "secure": 2,
-      "body": 30,
-      "content_length": 4,
-      "CONTENT_LENGTH": 3,
-      "content_type": 5,
-      "CONTENT_TYPE": 2,
-      "session": 1,
-      "session_options": 1,
-      "logger": 1,
-      "cookies": 9,
-      "HTTP_COOKIE": 3,
-      "@pairs": 2,
-      "pair": 4,
-      "uri_unescape": 1,
-      "query_parameters": 3,
-      "uri": 11,
-      "query_form": 2,
-      "content": 8,
-      "_parse_request_body": 4,
-      "cl": 10,
-      "raw_body": 1,
-      "headers": 56,
-      "field": 2,
-      "HTTPS": 1,
-      "_//": 1,
-      "CONTENT": 1,
-      "COOKIE": 1,
-      "content_encoding": 5,
-      "referer": 3,
-      "user_agent": 3,
-      "body_parameters": 3,
-      "parameters": 8,
-      "query": 4,
-      "flatten": 3,
-      "uploads": 5,
-      "hostname": 1,
-      "url_scheme": 1,
-      "params": 1,
-      "query_params": 1,
-      "body_params": 1,
-      "cookie": 6,
-      "param": 8,
-      "get_all": 2,
-      "upload": 13,
-      "raw_uri": 1,
-      "base": 10,
-      "path_query": 1,
-      "_uri_base": 3,
-      "path_escape_class": 2,
-      "uri_escape": 3,
-      "QUERY_STRING": 3,
-      "canonical": 2,
-      "HTTP_HOST": 1,
-      "SERVER_NAME": 1,
-      "new_response": 4,
-      "Response": 16,
-      "ct": 3,
-      "cleanup": 1,
-      "spin": 2,
-      "chunk": 4,
-      "length": 1,
-      "rewind": 1,
-      "from_mixed": 2,
-      "@uploads": 3,
-      "@obj": 3,
-      "_make_upload": 2,
-      "__END__": 2,
-      "Portable": 2,
-      "PSGI": 6,
-      "app_or_middleware": 1,
-      "req": 28,
-      "finalize": 5,
-      "": 2,
-      "provides": 1,
-      "consistent": 1,
-      "API": 2,
-      "objects": 2,
-      "across": 1,
-      "web": 5,
-      "server": 1,
-      "environments.": 1,
-      "CAVEAT": 1,
-      "module": 2,
-      "intended": 1,
-      "middleware": 1,
-      "developers": 3,
-      "framework": 2,
-      "rather": 2,
-      "Writing": 1,
-      "directly": 1,
-      "possible": 1,
-      "recommended": 1,
-      "yet": 1,
-      "too": 1,
-      "low": 1,
-      "level.": 1,
-      "encouraged": 1,
-      "frameworks": 2,
-      "": 1,
-      "modules": 1,
-      "": 1,
-      "provide": 1,
-      "higher": 1,
-      "level": 1,
-      "top": 1,
-      "PSGI.": 1,
-      "METHODS": 2,
-      "Some": 1,
-      "methods": 3,
-      "earlier": 1,
-      "versions": 1,
-      "deprecated": 1,
-      "Take": 1,
-      "": 1,
-      "Unless": 1,
-      "noted": 1,
-      "": 1,
-      "passing": 1,
-      "values": 5,
-      "accessor": 1,
-      "debug": 1,
-      "set.": 1,
-      "": 2,
-      "request.": 1,
-      "uploads.": 2,
-      "": 2,
-      "": 1,
-      "objects.": 1,
-      "Shortcut": 6,
-      "content_encoding.": 1,
-      "content_length.": 1,
-      "content_type.": 1,
-      "header.": 2,
-      "referer.": 1,
-      "user_agent.": 1,
-      "GET": 1,
-      "POST": 1,
-      "CGI.pm": 2,
-      "compatible": 1,
-      "method.": 1,
-      "alternative": 1,
-      "accessing": 1,
-      "parameters.": 3,
-      "Unlike": 1,
-      "": 1,
-      "allow": 1,
-      "setting": 1,
-      "modifying": 1,
-      "@values": 1,
-      "@params": 1,
-      "convenient": 1,
-      "@fields": 1,
-      "Creates": 2,
-      "": 3,
-      "object.": 4,
-      "Handy": 1,
-      "remove": 2,
-      "dependency": 1,
-      "easy": 1,
-      "subclassing": 1,
-      "duck": 1,
-      "typing": 1,
-      "overriding": 1,
-      "generation": 1,
-      "middlewares.": 1,
-      "Parameters": 1,
-      "": 1,
-      "": 1,
-      "": 1,
-      "": 1,
-      "store": 1,
-      "means": 2,
-      "plain": 2,
-      "": 1,
-      "scalars": 1,
-      "references": 1,
-      "ARRAY": 1,
-      "parse": 1,
-      "twice": 1,
-      "efficiency.": 1,
-      "DISPATCHING": 1,
-      "wants": 1,
-      "dispatch": 1,
-      "route": 1,
-      "actions": 1,
-      "based": 1,
-      "sure": 1,
-      "": 1,
-      "virtual": 1,
-      "regardless": 1,
-      "how": 1,
-      "mounted.": 1,
-      "hosted": 1,
-      "mod_perl": 1,
-      "scripts": 1,
-      "multiplexed": 1,
-      "tools": 1,
-      "": 1,
-      "idea": 1,
-      "subclass": 1,
-      "define": 1,
-      "uri_for": 2,
-      "args": 3,
-      "So": 1,
-      "say": 1,
-      "link": 1,
-      "signoff": 1,
-      "": 1,
-      "empty.": 1,
-      "older": 1,
-      "call": 1,
-      "instead.": 1,
-      "Cookie": 2,
-      "handling": 1,
-      "simplified": 1,
-      "string": 5,
-      "encoding": 2,
-      "decoding": 1,
-      "totally": 1,
-      "up": 1,
-      "framework.": 1,
-      "Also": 1,
-      "": 1,
-      "now": 1,
-      "": 1,
-      "Simple": 1,
-      "longer": 1,
-      "have": 2,
-      "write": 1,
-      "wacky": 1,
-      "simply": 1,
-      "AUTHORS": 1,
-      "Tatsuhiko": 2,
-      "Miyagawa": 2,
-      "Kazuhiro": 1,
-      "Osawa": 1,
-      "Tokuhiro": 2,
-      "Matsuno": 2,
-      "": 1,
-      "": 1,
-      "library": 1,
-      "same": 1,
-      "Util": 3,
-      "Accessor": 1,
-      "status": 17,
-      "Scalar": 2,
-      "location": 4,
-      "redirect": 1,
-      "url": 2,
-      "clone": 1,
-      "_finalize_cookies": 2,
-      "/chr": 1,
-      "/ge": 1,
-      "LWS": 1,
-      "single": 1,
-      "SP": 1,
-      "//g": 1,
-      "CR": 1,
-      "LF": 1,
-      "since": 1,
-      "char": 1,
-      "invalid": 1,
-      "header_field_names": 1,
-      "_body": 2,
-      "blessed": 1,
-      "overload": 1,
-      "Method": 1,
-      "_bake_cookie": 2,
-      "push_header": 1,
-      "@cookie": 7,
-      "domain": 3,
-      "_date": 2,
-      "expires": 7,
-      "httponly": 1,
-      "@MON": 1,
-      "Jan": 1,
-      "Feb": 1,
-      "Mar": 1,
-      "Apr": 1,
-      "Jun": 1,
-      "Jul": 1,
-      "Aug": 1,
-      "Sep": 1,
-      "Oct": 1,
-      "Nov": 1,
-      "Dec": 1,
-      "@WDAY": 1,
-      "Sun": 1,
-      "Mon": 1,
-      "Tue": 1,
-      "Wed": 1,
-      "Thu": 1,
-      "Fri": 1,
-      "Sat": 1,
-      "sec": 2,
-      "hour": 2,
-      "mday": 2,
-      "mon": 2,
-      "year": 3,
-      "wday": 2,
-      "gmtime": 1,
-      "sprintf": 1,
-      "WDAY": 1,
-      "MON": 1,
-      "response": 5,
-      "psgi_handler": 1,
-      "API.": 1,
-      "over": 1,
-      "Sets": 2,
-      "gets": 2,
-      "": 1,
-      "alias.": 2,
-      "response.": 1,
-      "Setter": 2,
-      "either": 2,
-      "headers.": 1,
-      "body_str": 1,
-      "io": 1,
-      "body.": 1,
-      "IO": 1,
-      "Handle": 1,
-      "": 1,
-      "X": 2,
-      "text/plain": 1,
-      "gzip": 1,
-      "normalize": 1,
-      "string.": 1,
-      "Users": 1,
-      "responsible": 1,
-      "properly": 1,
-      "": 1,
-      "names": 1,
-      "their": 1,
-      "corresponding": 1,
-      "": 2,
-      "everything": 1,
-      "": 1,
-      "": 2,
-      "": 1,
-      "": 1,
-      "": 1,
-      "integer": 1,
-      "epoch": 1,
-      "": 1,
-      "convert": 1,
-      "formats": 1,
-      "<+3M>": 1,
-      "reference.": 1,
-      "AUTHOR": 1
-    },
-    "PHP": {
-      "<": 11,
-      "php": 12,
-      "namespace": 28,
-      "Symfony": 24,
-      "Component": 24,
-      "Console": 17,
-      ";": 1383,
-      "use": 23,
-      "Input": 6,
-      "InputInterface": 4,
-      "ArgvInput": 2,
-      "ArrayInput": 3,
-      "InputDefinition": 2,
-      "InputOption": 15,
-      "InputArgument": 3,
-      "Output": 5,
-      "OutputInterface": 6,
-      "ConsoleOutput": 2,
-      "ConsoleOutputInterface": 2,
-      "Command": 6,
-      "HelpCommand": 2,
-      "ListCommand": 2,
-      "Helper": 3,
-      "HelperSet": 3,
-      "FormatterHelper": 2,
-      "DialogHelper": 2,
-      "class": 21,
-      "Application": 3,
-      "{": 974,
-      "private": 24,
-      "commands": 39,
-      "wantHelps": 4,
-      "false": 154,
-      "runningCommand": 5,
-      "name": 181,
-      "version": 8,
-      "catchExceptions": 4,
-      "autoExit": 4,
-      "definition": 3,
-      "helperSet": 6,
-      "public": 202,
-      "function": 205,
-      "__construct": 8,
-      "(": 2416,
-      ")": 2417,
-      "this": 928,
-      "-": 1271,
-      "true": 133,
-      "array": 296,
-      "getDefaultHelperSet": 2,
-      "getDefaultInputDefinition": 2,
-      "foreach": 94,
-      "getDefaultCommands": 2,
-      "as": 96,
-      "command": 41,
-      "add": 7,
-      "}": 972,
-      "run": 4,
-      "input": 20,
-      "null": 164,
-      "output": 60,
-      "if": 450,
-      "new": 74,
-      "try": 3,
-      "statusCode": 14,
-      "doRun": 2,
-      "catch": 3,
-      "Exception": 1,
-      "e": 18,
-      "throw": 19,
-      "instanceof": 8,
-      "renderException": 3,
-      "getErrorOutput": 2,
-      "else": 70,
-      "getCode": 1,
-      "is_numeric": 7,
-      "&&": 119,
-      "exit": 7,
-      "return": 305,
-      "getCommandName": 2,
-      "hasParameterOption": 7,
-      "setDecorated": 2,
-      "elseif": 31,
-      "setInteractive": 2,
-      "function_exists": 4,
-      "getHelperSet": 3,
-      "has": 7,
-      "inputStream": 2,
-      "get": 12,
-      "getInputStream": 1,
-      "posix_isatty": 1,
-      "setVerbosity": 2,
-      "VERBOSITY_QUIET": 1,
-      "VERBOSITY_VERBOSE": 2,
-      "writeln": 13,
-      "getLongVersion": 3,
-      "find": 17,
-      "setHelperSet": 1,
-      "getDefinition": 2,
-      "getHelp": 2,
-      "messages": 16,
-      "sprintf": 27,
-      "getOptions": 1,
-      "option": 5,
-      "[": 672,
-      "]": 672,
-      ".": 169,
-      "getName": 14,
-      "getShortcut": 2,
-      "getDescription": 3,
-      "implode": 8,
-      "PHP_EOL": 3,
-      "setCatchExceptions": 1,
-      "boolean": 4,
-      "Boolean": 4,
-      "setAutoExit": 1,
-      "setName": 1,
-      "getVersion": 3,
-      "setVersion": 1,
-      "register": 1,
-      "addCommands": 1,
-      "setApplication": 2,
-      "isEnabled": 1,
-      "getAliases": 3,
-      "alias": 87,
-      "isset": 101,
-      "InvalidArgumentException": 9,
-      "helpCommand": 3,
-      "setCommand": 1,
-      "getNamespaces": 3,
-      "namespaces": 4,
-      "extractNamespace": 7,
-      "array_values": 5,
-      "array_unique": 4,
-      "array_filter": 2,
-      "findNamespace": 4,
-      "allNamespaces": 3,
-      "n": 12,
-      "explode": 9,
-      "found": 4,
-      "i": 36,
-      "part": 10,
-      "abbrevs": 31,
-      "static": 6,
-      "getAbbreviations": 4,
-      "array_map": 2,
-      "p": 3,
-      "message": 12,
-      "<=>": 3,
-      "alternatives": 10,
-      "findAlternativeNamespace": 2,
-      "count": 32,
-      "getAbbreviationSuggestions": 4,
-      "searchName": 13,
-      "pos": 3,
-      "strrpos": 2,
-      "substr": 6,
-      "namespace.substr": 1,
-      "suggestions": 2,
-      "aliases": 8,
-      "findAlternativeCommands": 2,
-      "all": 11,
-      "substr_count": 1,
-      "+": 12,
-      "names": 3,
-      "for": 8,
-      "len": 11,
-      "strlen": 14,
-      "abbrev": 4,
-      "asText": 1,
-      "raw": 2,
-      "width": 7,
-      "sortCommands": 4,
-      "space": 5,
-      "space.": 1,
-      "asXml": 2,
-      "asDom": 2,
-      "dom": 12,
-      "DOMDocument": 2,
-      "formatOutput": 1,
-      "appendChild": 10,
-      "xml": 5,
-      "createElement": 6,
-      "commandsXML": 3,
-      "setAttribute": 2,
-      "namespacesXML": 3,
-      "namespaceArrayXML": 4,
-      "continue": 7,
-      "commandXML": 3,
-      "createTextNode": 1,
-      "node": 42,
-      "getElementsByTagName": 1,
-      "item": 9,
-      "importNode": 3,
-      "saveXml": 1,
-      "string": 5,
-      "encoding": 2,
-      "mb_detect_encoding": 1,
-      "mb_strlen": 1,
-      "do": 2,
-      "title": 3,
-      "get_class": 4,
-      "getTerminalWidth": 3,
-      "PHP_INT_MAX": 1,
-      "lines": 3,
-      "preg_split": 1,
-      "getMessage": 1,
-      "line": 10,
-      "str_split": 1,
-      "max": 2,
-      "str_repeat": 2,
-      "title.str_repeat": 1,
-      "line.str_repeat": 1,
-      "message.": 1,
-      "getVerbosity": 1,
-      "trace": 12,
-      "getTrace": 1,
-      "array_unshift": 2,
-      "getFile": 2,
-      "getLine": 2,
-      "type": 62,
-      "file": 3,
-      "while": 6,
-      "getPrevious": 1,
-      "getSynopsis": 1,
-      "protected": 59,
-      "defined": 5,
-      "ansicon": 4,
-      "getenv": 2,
-      "preg_replace": 4,
-      "preg_match": 6,
-      "getSttyColumns": 3,
-      "match": 4,
-      "getTerminalHeight": 1,
-      "trim": 3,
-      "getFirstArgument": 1,
-      "REQUIRED": 1,
-      "VALUE_NONE": 7,
-      "descriptorspec": 2,
-      "process": 10,
-      "proc_open": 1,
-      "pipes": 4,
-      "is_resource": 1,
-      "info": 5,
-      "stream_get_contents": 1,
-      "fclose": 2,
-      "proc_close": 1,
-      "namespacedCommands": 5,
-      "key": 64,
-      "ksort": 2,
-      "&": 19,
-      "limit": 3,
-      "parts": 4,
-      "array_pop": 1,
-      "array_slice": 1,
-      "callback": 5,
-      "findAlternatives": 3,
-      "collection": 3,
-      "call_user_func": 2,
-      "lev": 6,
-      "levenshtein": 2,
-      "3": 1,
-      "strpos": 15,
-      "values": 53,
-      "/": 1,
-      "||": 52,
-      "value": 53,
-      "asort": 1,
-      "array_keys": 7,
-      "BrowserKit": 1,
-      "DomCrawler": 5,
-      "Crawler": 2,
-      "Link": 3,
-      "Form": 4,
-      "Process": 1,
-      "PhpProcess": 2,
-      "abstract": 2,
-      "Client": 1,
-      "history": 15,
-      "cookieJar": 9,
-      "server": 20,
-      "request": 76,
-      "response": 33,
-      "crawler": 7,
-      "insulated": 7,
-      "redirect": 6,
-      "followRedirects": 5,
-      "History": 2,
-      "CookieJar": 2,
-      "setServerParameters": 2,
-      "followRedirect": 4,
-      "insulate": 1,
-      "class_exists": 2,
-      "RuntimeException": 2,
-      "array_merge": 32,
-      "setServerParameter": 1,
-      "getServerParameter": 1,
-      "default": 9,
-      "getHistory": 1,
-      "getCookieJar": 1,
-      "getCrawler": 1,
-      "getResponse": 1,
-      "getRequest": 1,
-      "click": 1,
-      "link": 10,
-      "submit": 2,
-      "getMethod": 6,
-      "getUri": 8,
-      "form": 7,
-      "setValues": 2,
-      "getPhpValues": 2,
-      "getPhpFiles": 2,
-      "method": 31,
-      "uri": 23,
-      "parameters": 4,
-      "files": 7,
-      "content": 4,
-      "changeHistory": 4,
-      "getAbsoluteUri": 2,
-      "isEmpty": 2,
-      "current": 4,
-      "parse_url": 3,
-      "PHP_URL_HOST": 1,
-      "PHP_URL_SCHEME": 1,
-      "Request": 3,
-      "allValues": 1,
-      "filterRequest": 2,
-      "doRequestInProcess": 2,
-      "doRequest": 2,
-      "filterResponse": 2,
-      "updateFromResponse": 1,
-      "getHeader": 2,
-      "createCrawlerFromContent": 2,
-      "getContent": 2,
-      "getScript": 2,
-      "sys_get_temp_dir": 2,
-      "isSuccessful": 1,
-      "getOutput": 3,
-      "unserialize": 1,
-      "LogicException": 4,
-      "addContent": 1,
-      "back": 2,
-      "requestFromRequest": 4,
-      "forward": 2,
-      "reload": 1,
-      "empty": 96,
-      "restart": 1,
-      "clear": 2,
-      "currentUri": 7,
-      "path": 20,
-      "PHP_URL_PATH": 1,
-      "path.": 1,
-      "getParameters": 1,
-      "getFiles": 3,
-      "getServer": 1,
-      "": 3,
-      "CakePHP": 6,
-      "tm": 6,
-      "Rapid": 2,
-      "Development": 2,
-      "Framework": 2,
-      "http": 14,
-      "cakephp": 4,
-      "org": 10,
-      "Copyright": 5,
-      "2005": 4,
-      "2012": 4,
-      "Cake": 7,
-      "Software": 5,
-      "Foundation": 4,
-      "Inc": 4,
-      "cakefoundation": 4,
-      "Licensed": 2,
-      "under": 2,
-      "The": 4,
-      "MIT": 4,
-      "License": 4,
-      "Redistributions": 2,
-      "of": 10,
-      "must": 2,
-      "retain": 2,
-      "the": 11,
-      "above": 2,
-      "copyright": 5,
-      "notice": 2,
-      "Project": 2,
-      "package": 2,
-      "Controller": 4,
-      "since": 2,
-      "v": 17,
-      "0": 4,
-      "2": 2,
-      "9": 1,
-      "license": 6,
-      "www": 4,
-      "opensource": 2,
-      "licenses": 2,
-      "mit": 2,
-      "App": 20,
-      "uses": 46,
-      "CakeResponse": 2,
-      "Network": 1,
-      "ClassRegistry": 9,
-      "Utility": 6,
-      "ComponentCollection": 2,
-      "View": 9,
-      "CakeEvent": 13,
-      "Event": 6,
-      "CakeEventListener": 4,
-      "CakeEventManager": 5,
-      "controller": 3,
-      "organization": 1,
-      "business": 1,
-      "logic": 1,
-      "Provides": 1,
-      "basic": 1,
-      "functionality": 1,
-      "such": 1,
-      "rendering": 1,
-      "views": 1,
-      "inside": 1,
-      "layouts": 1,
-      "automatic": 1,
-      "model": 34,
-      "availability": 1,
-      "redirection": 2,
-      "callbacks": 4,
-      "and": 5,
-      "more": 1,
-      "Controllers": 2,
-      "should": 1,
-      "provide": 1,
-      "a": 11,
-      "number": 1,
-      "action": 7,
-      "methods": 5,
-      "These": 1,
-      "are": 5,
-      "on": 4,
-      "that": 2,
-      "not": 2,
-      "prefixed": 1,
-      "with": 5,
-      "_": 1,
-      "Each": 1,
-      "serves": 1,
-      "an": 1,
-      "endpoint": 1,
-      "performing": 2,
-      "specific": 1,
-      "resource": 1,
-      "or": 9,
-      "resources": 1,
-      "For": 2,
-      "example": 2,
-      "adding": 1,
-      "editing": 1,
-      "object": 14,
-      "listing": 1,
-      "set": 26,
-      "objects": 5,
-      "You": 2,
-      "can": 2,
-      "access": 1,
-      "using": 2,
-      "contains": 1,
-      "POST": 1,
-      "GET": 1,
-      "FILES": 1,
-      "*": 25,
-      "were": 1,
-      "request.": 1,
-      "After": 1,
-      "required": 2,
-      "actions": 2,
-      "controllers": 2,
-      "responsible": 1,
-      "creating": 1,
-      "response.": 2,
-      "This": 1,
-      "usually": 1,
-      "takes": 1,
-      "generated": 1,
-      "possibly": 1,
-      "to": 6,
-      "another": 1,
-      "action.": 1,
-      "In": 1,
-      "either": 1,
-      "case": 31,
-      "allows": 1,
-      "you": 1,
-      "manipulate": 1,
-      "aspects": 1,
-      "created": 8,
-      "by": 2,
-      "Dispatcher": 1,
-      "based": 2,
-      "routing.": 1,
-      "By": 1,
-      "conventional": 1,
-      "names.": 1,
-      "/posts/index": 1,
-      "maps": 1,
-      "PostsController": 1,
-      "index": 5,
-      "re": 1,
-      "map": 1,
-      "urls": 1,
-      "Router": 5,
-      "connect": 1,
-      "@package": 2,
-      "Cake.Controller": 1,
-      "@property": 8,
-      "AclComponent": 1,
-      "Acl": 1,
-      "AuthComponent": 1,
-      "Auth": 1,
-      "CookieComponent": 1,
-      "Cookie": 1,
-      "EmailComponent": 1,
-      "Email": 1,
-      "PaginatorComponent": 1,
-      "Paginator": 1,
-      "RequestHandlerComponent": 1,
-      "RequestHandler": 1,
-      "SecurityComponent": 1,
-      "Security": 1,
-      "SessionComponent": 1,
-      "Session": 1,
-      "@link": 2,
-      "//book.cakephp.org/2.0/en/controllers.html": 1,
-      "*/": 2,
-      "extends": 3,
-      "Object": 4,
-      "implements": 3,
-      "helpers": 1,
-      "_responseClass": 1,
-      "viewPath": 3,
-      "layoutPath": 1,
-      "viewVars": 3,
-      "view": 5,
-      "layout": 5,
-      "autoRender": 6,
-      "autoLayout": 2,
-      "Components": 7,
-      "components": 1,
-      "viewClass": 10,
-      "ext": 1,
-      "plugin": 31,
-      "cacheAction": 1,
-      "passedArgs": 2,
-      "scaffold": 2,
-      "modelClass": 25,
-      "modelKey": 2,
-      "validationErrors": 50,
-      "_mergeParent": 4,
-      "_eventManager": 12,
-      "Inflector": 12,
-      "singularize": 4,
-      "underscore": 3,
-      "childMethods": 2,
-      "get_class_methods": 2,
-      "parentMethods": 2,
-      "array_diff": 3,
-      "CakeRequest": 5,
-      "setRequest": 2,
-      "parent": 14,
-      "__isset": 2,
-      "switch": 6,
-      "is_array": 37,
-      "list": 29,
-      "pluginSplit": 12,
-      "loadModel": 3,
-      "__get": 2,
-      "params": 34,
-      "load": 3,
-      "settings": 2,
-      "__set": 1,
-      "camelize": 3,
-      "array_key_exists": 11,
-      "invokeAction": 1,
-      "ReflectionMethod": 2,
-      "_isPrivateAction": 2,
-      "PrivateActionException": 1,
-      "invokeArgs": 1,
-      "ReflectionException": 1,
-      "_getScaffold": 2,
-      "MissingActionException": 1,
-      "privateAction": 4,
-      "isPublic": 1,
-      "in_array": 26,
-      "prefixes": 4,
-      "prefix": 2,
-      "Scaffold": 1,
-      "_mergeControllerVars": 2,
-      "pluginController": 9,
-      "pluginDot": 4,
-      "mergeParent": 2,
-      "is_subclass_of": 3,
-      "pluginVars": 3,
-      "appVars": 6,
-      "merge": 12,
-      "_mergeVars": 5,
-      "get_class_vars": 2,
-      "_mergeUses": 3,
-      "implementedEvents": 2,
-      "constructClasses": 1,
-      "init": 4,
-      "getEventManager": 13,
-      "attach": 4,
-      "startupProcess": 1,
-      "dispatch": 11,
-      "shutdownProcess": 1,
-      "httpCodes": 3,
-      "code": 4,
-      "id": 82,
-      "MissingModelException": 1,
-      "url": 18,
-      "status": 15,
-      "extract": 9,
-      "EXTR_OVERWRITE": 3,
-      "event": 35,
-      "//TODO": 1,
-      "Remove": 1,
-      "following": 1,
-      "when": 1,
-      "events": 1,
-      "fully": 1,
-      "migrated": 1,
-      "break": 19,
-      "breakOn": 4,
-      "collectReturn": 1,
-      "isStopped": 4,
-      "result": 21,
-      "_parseBeforeRedirect": 2,
-      "session_write_close": 1,
-      "header": 3,
-      "is_string": 7,
-      "codes": 3,
-      "array_flip": 1,
-      "send": 1,
-      "_stop": 1,
-      "resp": 6,
-      "compact": 8,
-      "one": 19,
-      "two": 6,
-      "data": 187,
-      "array_combine": 2,
-      "setAction": 1,
-      "args": 5,
-      "func_get_args": 5,
-      "unset": 22,
-      "call_user_func_array": 3,
-      "validate": 9,
-      "errors": 9,
-      "validateErrors": 1,
-      "invalidFields": 2,
-      "render": 3,
-      "className": 27,
-      "models": 6,
-      "keys": 19,
-      "currentModel": 2,
-      "currentObject": 6,
-      "getObject": 1,
-      "is_a": 1,
-      "location": 1,
-      "body": 1,
-      "referer": 5,
-      "local": 2,
-      "disableCache": 2,
-      "flash": 1,
-      "pause": 2,
-      "postConditions": 1,
-      "op": 9,
-      "bool": 5,
-      "exclusive": 2,
-      "cond": 5,
-      "arrayOp": 2,
-      "fields": 60,
-      "field": 88,
-      "fieldOp": 11,
-      "strtoupper": 3,
-      "paginate": 3,
-      "scope": 2,
-      "whitelist": 14,
-      "beforeFilter": 1,
-      "beforeRender": 1,
-      "beforeRedirect": 1,
-      "afterFilter": 1,
-      "beforeScaffold": 2,
-      "_beforeScaffold": 1,
-      "afterScaffoldSave": 2,
-      "_afterScaffoldSave": 1,
-      "afterScaffoldSaveError": 2,
-      "_afterScaffoldSaveError": 1,
-      "scaffoldError": 2,
-      "_scaffoldError": 1,
-      "php_help": 1,
-      "arg": 1,
-      "t": 26,
-      "php_permission": 1,
-      "TRUE": 1,
-      "php_eval": 1,
-      "global": 2,
-      "theme_path": 5,
-      "theme_info": 3,
-      "conf": 2,
-      "old_theme_path": 2,
-      "drupal_get_path": 1,
-      "dirname": 1,
-      "filename": 1,
-      "ob_start": 1,
-      "print": 1,
-      "eval": 1,
-      "ob_get_contents": 1,
-      "ob_end_clean": 1,
-      "_php_filter_tips": 1,
-      "filter": 1,
-      "format": 3,
-      "long": 2,
-      "FALSE": 2,
-      "base_url": 1,
-      "php_filter_info": 1,
-      "filters": 2,
-      "Field": 9,
-      "FormField": 3,
-      "ArrayAccess": 1,
-      "button": 6,
-      "DOMNode": 3,
-      "initialize": 2,
-      "getFormNode": 1,
-      "getValues": 3,
-      "isDisabled": 2,
-      "FileFormField": 3,
-      "hasValue": 1,
-      "getValue": 2,
-      "qs": 4,
-      "http_build_query": 3,
-      "parse_str": 2,
-      "queryString": 2,
-      "sep": 1,
-      "sep.": 1,
-      "getRawUri": 1,
-      "getAttribute": 10,
-      "remove": 4,
-      "offsetExists": 1,
-      "offsetGet": 1,
-      "offsetSet": 1,
-      "offsetUnset": 1,
-      "setNode": 1,
-      "nodeName": 13,
-      "parentNode": 1,
-      "FormFieldRegistry": 2,
-      "document": 6,
-      "root": 4,
-      "xpath": 2,
-      "DOMXPath": 1,
-      "query": 102,
-      "hasAttribute": 1,
-      "InputFormField": 2,
-      "ChoiceFormField": 2,
-      "addChoice": 1,
-      "TextareaFormField": 1,
-      "base": 8,
-      "segments": 13,
-      "getSegments": 4,
-      "target": 20,
-      "array_shift": 5,
-      "self": 1,
-      "create": 13,
-      "k": 7,
-      "setValue": 1,
-      "walk": 3,
-      "registry": 4,
-      "m": 5,
-      "relational": 2,
-      "mapper": 2,
-      "DBO": 2,
-      "backed": 2,
-      "mapping": 1,
-      "database": 2,
-      "tables": 5,
-      "PHP": 1,
-      "versions": 1,
-      "5": 1,
-      "Model": 5,
-      "10": 1,
-      "Validation": 1,
-      "String": 5,
-      "Set": 9,
-      "BehaviorCollection": 2,
-      "ModelBehavior": 1,
-      "ConnectionManager": 2,
-      "Xml": 2,
-      "Automatically": 1,
-      "selects": 1,
-      "table": 21,
-      "pluralized": 1,
-      "lowercase": 1,
-      "User": 1,
-      "is": 1,
-      "have": 2,
-      "at": 1,
-      "least": 1,
-      "primary": 3,
-      "key.": 1,
-      "Cake.Model": 1,
-      "//book.cakephp.org/2.0/en/models.html": 1,
-      "useDbConfig": 7,
-      "useTable": 12,
-      "displayField": 4,
-      "schemaName": 1,
-      "primaryKey": 38,
-      "_schema": 11,
-      "validationDomain": 1,
-      "tablePrefix": 8,
-      "tableToModel": 4,
-      "cacheQueries": 1,
-      "belongsTo": 7,
-      "hasOne": 2,
-      "hasMany": 2,
-      "hasAndBelongsToMany": 24,
-      "actsAs": 2,
-      "Behaviors": 6,
-      "cacheSources": 7,
-      "findQueryType": 3,
-      "recursive": 9,
-      "order": 4,
-      "virtualFields": 8,
-      "_associationKeys": 2,
-      "_associations": 5,
-      "__backAssociation": 22,
-      "__backInnerAssociation": 1,
-      "__backOriginalAssociation": 1,
-      "__backContainableAssociation": 1,
-      "_insertID": 1,
-      "_sourceConfigured": 1,
-      "findMethods": 3,
-      "ds": 3,
-      "addObject": 2,
-      "parentClass": 3,
-      "get_parent_class": 1,
-      "tableize": 2,
-      "_createLinks": 3,
-      "__call": 1,
-      "dispatchMethod": 1,
-      "getDataSource": 15,
-      "relation": 7,
-      "assocKey": 13,
-      "dynamic": 2,
-      "isKeySet": 1,
-      "AppModel": 1,
-      "_constructLinkedModel": 2,
-      "schema": 11,
-      "hasField": 7,
-      "setDataSource": 2,
-      "property_exists": 3,
-      "bindModel": 1,
-      "reset": 6,
-      "assoc": 75,
-      "assocName": 6,
-      "unbindModel": 1,
-      "_generateAssociation": 2,
-      "dynamicWith": 3,
-      "sort": 1,
-      "setSource": 1,
-      "tableName": 4,
-      "db": 45,
-      "method_exists": 5,
-      "sources": 3,
-      "listSources": 1,
-      "strtolower": 1,
-      "MissingTableException": 1,
-      "is_object": 2,
-      "SimpleXMLElement": 1,
-      "_normalizeXmlData": 3,
-      "toArray": 1,
-      "reverse": 1,
-      "_setAliasData": 2,
-      "modelName": 3,
-      "fieldSet": 3,
-      "fieldName": 6,
-      "fieldValue": 7,
-      "deconstruct": 2,
-      "getAssociated": 4,
-      "getColumnType": 4,
-      "useNewDate": 2,
-      "dateFields": 5,
-      "timeFields": 2,
-      "date": 9,
-      "val": 27,
-      "columns": 5,
-      "str_replace": 3,
-      "describe": 1,
-      "getColumnTypes": 1,
-      "trigger_error": 1,
-      "__d": 1,
-      "E_USER_WARNING": 1,
-      "cols": 7,
-      "column": 10,
-      "startQuote": 4,
-      "endQuote": 4,
-      "checkVirtual": 3,
-      "isVirtualField": 3,
-      "hasMethod": 2,
-      "getVirtualField": 1,
-      "filterKey": 2,
-      "defaults": 6,
-      "properties": 4,
-      "read": 2,
-      "conditions": 41,
-      "saveField": 1,
-      "options": 85,
-      "save": 9,
-      "fieldList": 1,
-      "_whitelist": 4,
-      "keyPresentAndEmpty": 2,
-      "exists": 6,
-      "validates": 60,
-      "updateCol": 6,
-      "colType": 4,
-      "time": 3,
-      "strtotime": 1,
-      "joined": 5,
-      "x": 4,
-      "y": 2,
-      "success": 10,
-      "cache": 2,
-      "_prepareUpdateFields": 2,
-      "update": 2,
-      "fInfo": 4,
-      "isUUID": 5,
-      "j": 2,
-      "array_search": 1,
-      "uuid": 3,
-      "updateCounterCache": 6,
-      "_saveMulti": 2,
-      "_clearCache": 2,
-      "join": 22,
-      "joinModel": 8,
-      "keyInfo": 4,
-      "withModel": 4,
-      "pluginName": 1,
-      "dbMulti": 6,
-      "newData": 5,
-      "newValues": 8,
-      "newJoins": 7,
-      "primaryAdded": 3,
-      "idField": 3,
-      "row": 17,
-      "keepExisting": 3,
-      "associationForeignKey": 5,
-      "links": 4,
-      "oldLinks": 4,
-      "delete": 9,
-      "oldJoin": 4,
-      "insertMulti": 1,
-      "foreignKey": 11,
-      "fkQuoted": 3,
-      "escapeField": 6,
-      "intval": 4,
-      "updateAll": 3,
-      "foreignKeys": 3,
-      "included": 3,
-      "array_intersect": 1,
-      "old": 2,
-      "saveAll": 1,
-      "numeric": 1,
-      "validateMany": 4,
-      "saveMany": 3,
-      "validateAssociated": 5,
-      "saveAssociated": 5,
-      "transactionBegun": 4,
-      "begin": 2,
-      "record": 10,
-      "saved": 18,
-      "commit": 2,
-      "rollback": 2,
-      "associations": 9,
-      "association": 47,
-      "notEmpty": 4,
-      "_return": 3,
-      "recordData": 2,
-      "cascade": 10,
-      "_deleteDependent": 3,
-      "_deleteLinks": 3,
-      "_collectForeignKeys": 2,
-      "savedAssociatons": 3,
-      "deleteAll": 2,
-      "records": 6,
-      "ids": 8,
-      "_id": 2,
-      "getID": 2,
-      "hasAny": 1,
-      "buildQuery": 2,
-      "is_null": 1,
-      "results": 22,
-      "resetAssociations": 3,
-      "_filterResults": 2,
-      "ucfirst": 2,
-      "modParams": 2,
-      "_findFirst": 1,
-      "state": 15,
-      "_findCount": 1,
-      "calculate": 2,
-      "expression": 1,
-      "_findList": 1,
-      "tokenize": 1,
-      "lst": 4,
-      "combine": 1,
-      "_findNeighbors": 1,
-      "prevVal": 2,
-      "return2": 6,
-      "_findThreaded": 1,
-      "nest": 1,
-      "isUnique": 1,
-      "is_bool": 1,
-      "sql": 1,
-      "SHEBANG#!php": 3,
-      "echo": 2,
-      "Yii": 3,
-      "console": 3,
-      "bootstrap": 1,
-      "yiiframework": 2,
-      "com": 2,
-      "c": 1,
-      "2008": 1,
-      "LLC": 1,
-      "YII_DEBUG": 2,
-      "define": 2,
-      "fcgi": 1,
-      "doesn": 1,
-      "STDIN": 3,
-      "fopen": 1,
-      "stdin": 1,
-      "r": 1,
-      "require": 3,
-      "__DIR__": 3,
-      "vendor": 2,
-      "yiisoft": 1,
-      "yii2": 1,
-      "yii": 2,
-      "autoload": 1,
-      "config": 3,
-      "application": 2
-    },
-    "PogoScript": {
-      "httpism": 1,
-      "require": 3,
-      "async": 1,
-      "resolve": 2,
-      ".resolve": 1,
-      "exports.squash": 1,
-      "(": 38,
-      "url": 5,
-      ")": 38,
-      "html": 15,
-      "httpism.get": 2,
-      ".body": 2,
-      "squash": 2,
-      "callback": 2,
-      "replacements": 6,
-      "sort": 2,
-      "links": 2,
-      "in": 11,
-      ".concat": 1,
-      "scripts": 2,
-      "for": 2,
-      "each": 2,
-      "@": 6,
-      "r": 1,
-      "{": 3,
-      "r.url": 1,
-      "r.href": 1,
-      "}": 3,
-      "async.map": 1,
-      "get": 2,
-      "err": 2,
-      "requested": 2,
-      "replace": 2,
-      "replacements.sort": 1,
-      "a": 1,
-      "b": 1,
-      "a.index": 1,
-      "-": 1,
-      "b.index": 1,
-      "replacement": 2,
-      "replacement.body": 1,
-      "replacement.url": 1,
-      "i": 3,
-      "parts": 3,
-      "rep": 1,
-      "rep.index": 1,
-      "+": 2,
-      "rep.length": 1,
-      "html.substr": 1,
-      "link": 2,
-      "reg": 5,
-      "r/": 2,
-      "": 1,
-      "]": 7,
-      "*href": 1,
-      "[": 5,
-      "*": 2,
-      "/": 2,
-      "|": 2,
-      "s*": 2,
-      "<\\/link\\>": 1,
-      "/gi": 2,
-      "elements": 5,
-      "matching": 3,
-      "as": 3,
-      "script": 2,
-      "": 1,
-      "*src": 1,
-      "<\\/script\\>": 1,
-      "tag": 3,
-      "while": 1,
-      "m": 1,
-      "reg.exec": 1,
-      "elements.push": 1,
-      "index": 1,
-      "m.index": 1,
-      "length": 1,
-      "m.0.length": 1,
-      "href": 1,
-      "m.1": 1
-    },
-    "PowerShell": {
-      "Write": 2,
-      "-": 2,
-      "Host": 2,
-      "function": 1,
-      "hello": 1,
-      "(": 1,
-      ")": 1,
-      "{": 1,
-      "}": 1
-    },
-    "Processing": {
-      "void": 2,
-      "setup": 1,
-      "(": 17,
-      ")": 17,
-      "{": 2,
-      "size": 1,
-      ";": 15,
-      "background": 1,
-      "noStroke": 1,
-      "}": 2,
-      "draw": 1,
-      "fill": 6,
-      "triangle": 2,
-      "rect": 1,
-      "quad": 1,
-      "ellipse": 1,
-      "arc": 1,
-      "PI": 1,
-      "TWO_PI": 1
-    },
-    "Prolog": {
-      "action_module": 1,
-      "(": 585,
-      "calculator": 1,
-      ")": 584,
-      ".": 210,
-      "%": 334,
-      "[": 110,
-      "-": 276,
-      "d1": 1,
-      "]": 109,
-      "push": 20,
-      "D": 37,
-      "if": 2,
-      "mode": 22,
-      "init": 11,
-      "<": 11,
-      "deny": 10,
-      "displayed": 17,
-      "D1": 5,
-      "affirm": 10,
-      "cont": 3,
-      "*D1": 2,
-      "+": 32,
-      "New": 2,
-      "a": 31,
-      "op": 28,
-      "d": 27,
-      "m": 16,
-      "clear": 4,
-      "nop": 6,
-      "accumulator": 10,
-      "A": 40,
-      "O": 14,
-      "memory": 5,
-      "M": 14,
-      "X": 62,
-      "mem_rec": 2,
-      "plus": 6,
-      "eval": 7,
-      "V": 16,
-      ";": 9,
-      "use": 3,
-      "normal": 3,
-      "arithmetic": 3,
-      "i.e.": 3,
-      "minus": 5,
-      "lt": 1,
-      "times": 4,
-      "equal": 2,
-      "mem_plus": 2,
-      "v": 3,
-      "where": 3,
-      "V1": 2,
-      "plus_minus": 1,
-      "normalize": 2,
-      "Wff": 3,
-      "NormalClauses": 3,
-      "conVert": 1,
-      "S": 26,
-      "cnF": 1,
-      "T": 6,
-      "flatten_and": 5,
-      "U": 2,
-      "make_clauses": 5,
-      "make": 2,
-      "sequence": 2,
-      "out": 4,
-      "of": 5,
-      "conjunction": 1,
-      "/": 2,
-      "Y": 34,
-      "F": 31,
-      "B": 30,
-      "sequence_append": 5,
-      "disjunction": 1,
-      "flatten_or": 6,
-      "append": 2,
-      "two": 1,
-      "sequences": 1,
-      "R": 32,
-      "separate": 7,
-      "into": 1,
-      "positive": 1,
-      "and": 3,
-      "negative": 1,
-      "literals": 1,
-      "P": 37,
-      "N": 20,
-      "|": 36,
-      "N1": 2,
-      "P1": 2,
-      "tautology": 4,
-      "some_occurs": 3,
-      "occurs": 4,
-      "_": 21,
-      "C": 21,
-      "make_clause": 5,
-      "false": 1,
-      "make_sequence": 9,
-      "H": 11,
-      "write_list": 3,
-      "write": 13,
-      "nl": 8,
-      "A*": 1,
-      "Algorithm": 1,
-      "Nodes": 1,
-      "have": 2,
-      "form": 2,
-      "S#D#F#A": 1,
-      "describes": 1,
-      "the": 15,
-      "state": 1,
-      "or": 1,
-      "configuration": 1,
-      "is": 22,
-      "depth": 1,
-      "node": 2,
-      "evaluation": 1,
-      "function": 4,
-      "value": 1,
-      "ancestor": 1,
-      "list": 1,
-      "for": 1,
-      "yfx": 1,
-      "solve": 2,
-      "State": 7,
-      "Soln": 3,
-      "f_function": 3,
-      "search": 4,
-      "State#0#F#": 1,
-      "reverse": 2,
-      "h_function": 2,
-      "H.": 1,
-      "State#_#_#Soln": 1,
-      "goal": 2,
-      "expand": 2,
-      "Children": 2,
-      "insert_all": 4,
-      "Open": 7,
-      "Open1": 2,
-      "Open3": 2,
-      "insert": 6,
-      "Open2": 2,
-      "repeat_node": 2,
-      "cheaper": 2,
-      "B1": 2,
-      "P#_#_#_": 2,
-      "_#_#F1#_": 1,
-      "_#_#F2#_": 1,
-      "F1": 1,
-      "F2.": 1,
-      "State#D#_#S": 1,
-      "All_My_Children": 2,
-      "bagof": 1,
-      "Child#D1#F#": 1,
-      "Move": 3,
-      "move": 7,
-      "Child": 2,
-      "puzzle": 4,
-      "solver": 1,
-      "A/B/C/D/E/F/G/H/I": 3,
-      "{": 3,
-      "...": 3,
-      "I": 5,
-      "}": 3,
-      "represents": 1,
-      "empty": 2,
-      "tile": 5,
-      "/2/3/8/0/4/7/6/5": 1,
-      "The": 1,
-      "moves": 1,
-      "left": 26,
-      "A/0/C/D/E/F/H/I/J": 3,
-      "/A/C/D/E/F/H/I/J": 1,
-      "A/B/C/D/0/F/H/I/J": 4,
-      "A/B/C/0/D/F/H/I/J": 1,
-      "A/B/C/D/E/F/H/0/J": 3,
-      "A/B/C/D/E/F/0/H/J": 1,
-      "A/B/0/D/E/F/H/I/J": 2,
-      "A/0/B/D/E/F/H/I/J": 1,
-      "A/B/C/D/E/0/H/I/J": 3,
-      "A/B/C/D/0/E/H/I/J": 1,
-      "A/B/C/D/E/F/H/I/0": 2,
-      "A/B/C/D/E/F/H/0/I": 1,
-      "up": 17,
-      "A/B/C/0/E/F/H/I/J": 3,
-      "/B/C/A/E/F/H/I/J": 1,
-      "A/0/C/D/B/F/H/I/J": 1,
-      "A/B/0/D/E/C/H/I/J": 1,
-      "A/B/C/D/E/F/0/I/J": 2,
-      "A/B/C/0/E/F/D/I/J": 1,
-      "A/B/C/D/0/F/H/E/J": 1,
-      "A/B/C/D/E/0/H/I/F": 1,
-      "right": 22,
-      "A/C/0/D/E/F/H/I/J": 1,
-      "A/B/C/D/F/0/H/I/J": 1,
-      "A/B/C/D/E/F/H/J/0": 1,
-      "/B/C/D/E/F/H/I/J": 2,
-      "B/0/C/D/E/F/H/I/J": 1,
-      "A/B/C/E/0/F/H/I/J": 1,
-      "A/B/C/D/E/F/I/0/J": 1,
-      "down": 15,
-      "A/B/C/H/E/F/0/I/J": 1,
-      "A/B/C/D/I/F/H/0/J": 1,
-      "A/B/C/D/E/J/H/I/0": 1,
-      "D/B/C/0/E/F/H/I/J": 1,
-      "A/E/C/D/0/F/H/I/J": 1,
-      "A/B/F/D/E/0/H/I/J": 1,
-      "heuristic": 1,
-      "Puzz": 3,
-      "p_fcn": 2,
-      "s_fcn": 2,
-      "*S.": 1,
-      "Manhattan": 1,
-      "distance": 1,
-      "Pa": 2,
-      "b": 12,
-      "Pb": 2,
-      "c": 10,
-      "Pc": 2,
-      "Pd": 2,
-      "e": 10,
-      "E": 3,
-      "Pe": 2,
-      "f": 10,
-      "Pf": 2,
-      "g": 10,
-      "G": 7,
-      "Pg": 3,
-      "h": 10,
-      "Ph": 2,
-      "i": 10,
-      "Pi": 1,
-      "Pi.": 1,
-      "cycle": 1,
-      "s_aux": 14,
-      "S1": 2,
-      "S2": 2,
-      "S3": 2,
-      "S4": 2,
-      "S5": 2,
-      "S6": 2,
-      "S7": 2,
-      "S8": 2,
-      "S9": 1,
-      "S9.": 1,
-      "animation": 1,
-      "using": 2,
-      "VT100": 1,
-      "character": 3,
-      "graphics": 1,
-      "animate": 2,
-      "message.": 2,
-      "initialize": 2,
-      "cursor": 7,
-      "get0": 2,
-      "_X": 2,
-      "play_back": 5,
-      "dynamic": 1,
-      "location/3.": 1,
-      "A/B/C/D/E/F/H/I/J": 1,
-      "cls": 2,
-      "retractall": 1,
-      "location": 32,
-      "assert": 17,
-      "J": 1,
-      "draw_all.": 1,
-      "draw_all": 1,
-      "draw": 18,
-      "call": 1,
-      "Put": 1,
-      "way": 1,
-      "message": 1,
-      "nl.": 1,
-      "put": 16,
-      "ESC": 1,
-      "screen": 1,
-      "quickly": 1,
-      "video": 1,
-      "attributes": 1,
-      "bold": 1,
-      "blink": 1,
-      "not": 1,
-      "working": 1,
-      "plain": 1,
-      "reverse_video": 2,
-      "Tile": 35,
-      "objects": 1,
-      "map": 2,
-      "s": 1,
-      "Each": 1,
-      "should": 1,
-      "be": 1,
-      "drawn": 2,
-      "at": 1,
-      "which": 1,
-      "asserted": 1,
-      "retracted": 1,
-      "by": 1,
-      "character_map": 3,
-      "spot": 1,
-      "to": 1,
-      "retract": 8,
-      "X0": 10,
-      "Y0": 10,
-      "Xnew": 6,
-      "Ynew": 6,
-      "Obj": 26,
-      "plain.": 1,
-      "hide": 10,
-      "hide_row": 4,
-      "Y1": 8,
-      "X1": 8,
-      "draw_row": 4,
-      "an": 1,
-      "Object": 1,
-      "partition": 5,
-      "Xs": 5,
-      "Pivot": 4,
-      "Smalls": 3,
-      "Bigs": 3,
-      "@": 1,
-      "Rest": 4,
-      "quicksort": 4,
-      "Smaller": 2,
-      "Bigger": 2,
-      "male": 3,
-      "john": 2,
-      "peter": 3,
-      "female": 2,
-      "vick": 2,
-      "christie": 3,
-      "parents": 4,
-      "brother": 1,
-      "turing": 1,
-      "Tape0": 2,
-      "Tape": 2,
-      "perform": 4,
-      "q0": 1,
-      "Ls": 12,
-      "Rs": 16,
-      "Ls1": 4,
-      "qf": 1,
-      "Q0": 2,
-      "Ls0": 6,
-      "Rs0": 6,
-      "symbol": 3,
-      "Sym": 6,
-      "RsRest": 2,
-      "once": 1,
-      "rule": 1,
-      "Q1": 2,
-      "NewSym": 2,
-      "Action": 2,
-      "action": 4,
-      "Rs1": 2,
-      "stay": 1,
-      "L": 2
-    },
-    "Python": {
-      "from": 34,
-      "__future__": 2,
-      "import": 47,
-      "unicode_literals": 1,
-      "copy": 1,
-      "sys": 2,
-      "functools": 1,
-      "update_wrapper": 2,
-      "future_builtins": 1,
-      "zip": 8,
-      "django.db.models.manager": 1,
-      "#": 13,
-      "Imported": 1,
-      "to": 4,
-      "register": 1,
-      "signal": 1,
-      "handler.": 1,
-      "django.conf": 1,
-      "settings": 1,
-      "django.core.exceptions": 1,
-      "(": 719,
-      "ObjectDoesNotExist": 2,
-      "MultipleObjectsReturned": 2,
-      "FieldError": 4,
-      "ValidationError": 8,
-      "NON_FIELD_ERRORS": 3,
-      ")": 730,
-      "django.core": 1,
-      "validators": 1,
-      "django.db.models.fields": 1,
-      "AutoField": 2,
-      "FieldDoesNotExist": 2,
-      "django.db.models.fields.related": 1,
-      "ManyToOneRel": 3,
-      "OneToOneField": 3,
-      "add_lazy_relation": 2,
-      "django.db": 1,
-      "router": 1,
-      "transaction": 1,
-      "DatabaseError": 3,
-      "DEFAULT_DB_ALIAS": 2,
-      "django.db.models.query": 1,
-      "Q": 3,
-      "django.db.models.query_utils": 2,
-      "DeferredAttribute": 3,
-      "django.db.models.deletion": 1,
-      "Collector": 2,
-      "django.db.models.options": 1,
-      "Options": 2,
-      "django.db.models": 1,
-      "signals": 1,
-      "django.db.models.loading": 1,
-      "register_models": 2,
-      "get_model": 3,
-      "django.utils.translation": 1,
-      "ugettext_lazy": 1,
-      "as": 11,
-      "_": 5,
-      "django.utils.functional": 1,
-      "curry": 6,
-      "django.utils.encoding": 1,
-      "smart_str": 3,
-      "force_unicode": 3,
-      "django.utils.text": 1,
-      "get_text_list": 2,
-      "capfirst": 6,
-      "class": 14,
-      "ModelBase": 4,
-      "type": 6,
-      "def": 68,
-      "__new__": 2,
-      "cls": 32,
-      "name": 39,
-      "bases": 6,
-      "attrs": 7,
-      "super_new": 3,
-      "super": 2,
-      ".__new__": 1,
-      "parents": 8,
-      "[": 152,
-      "b": 11,
-      "for": 59,
-      "in": 79,
-      "if": 145,
-      "isinstance": 11,
-      "]": 152,
-      "not": 64,
-      "return": 57,
-      "module": 6,
-      "attrs.pop": 2,
-      "new_class": 9,
-      "{": 25,
-      "}": 25,
-      "attr_meta": 5,
-      "None": 86,
-      "abstract": 3,
-      "getattr": 30,
-      "False": 28,
-      "meta": 12,
-      "else": 30,
-      "base_meta": 2,
-      "is": 29,
-      "model_module": 1,
-      "sys.modules": 1,
-      "new_class.__module__": 1,
-      "kwargs": 9,
-      "model_module.__name__.split": 1,
-      "-": 30,
-      "new_class.add_to_class": 7,
-      "**kwargs": 9,
-      "subclass_exception": 3,
-      "tuple": 3,
-      "x.DoesNotExist": 1,
-      "x": 22,
-      "hasattr": 11,
-      "and": 35,
-      "x._meta.abstract": 2,
-      "or": 27,
-      "x.MultipleObjectsReturned": 1,
-      "base_meta.abstract": 1,
-      "new_class._meta.ordering": 1,
-      "base_meta.ordering": 1,
-      "new_class._meta.get_latest_by": 1,
-      "base_meta.get_latest_by": 1,
-      "is_proxy": 5,
-      "new_class._meta.proxy": 1,
-      "new_class._default_manager": 2,
-      "new_class._base_manager": 2,
-      "new_class._default_manager._copy_to_model": 1,
-      "new_class._base_manager._copy_to_model": 1,
-      "m": 3,
-      "new_class._meta.app_label": 3,
-      "seed_cache": 2,
-      "only_installed": 2,
-      "obj_name": 2,
-      "obj": 4,
-      "attrs.items": 1,
-      "new_fields": 2,
-      "new_class._meta.local_fields": 3,
-      "+": 37,
-      "new_class._meta.local_many_to_many": 2,
-      "new_class._meta.virtual_fields": 1,
-      "field_names": 5,
-      "set": 3,
-      "f.name": 5,
-      "f": 19,
-      "base": 13,
-      "parent": 5,
-      "parent._meta.abstract": 1,
-      "parent._meta.fields": 1,
-      "raise": 22,
-      "TypeError": 4,
-      "%": 32,
-      "continue": 10,
-      "new_class._meta.setup_proxy": 1,
-      "new_class._meta.concrete_model": 2,
-      "base._meta.concrete_model": 2,
-      "o2o_map": 3,
-      "dict": 3,
-      "f.rel.to": 1,
-      "original_base": 1,
-      "parent_fields": 3,
-      "base._meta.local_fields": 1,
-      "base._meta.local_many_to_many": 1,
-      "field": 32,
-      "field.name": 14,
-      "base.__name__": 2,
-      "base._meta.abstract": 2,
-      "elif": 4,
-      "attr_name": 3,
-      "base._meta.module_name": 1,
-      "auto_created": 1,
-      "True": 20,
-      "parent_link": 1,
-      "new_class._meta.parents": 1,
-      "copy.deepcopy": 2,
-      "new_class._meta.parents.update": 1,
-      "base._meta.parents": 1,
-      "new_class.copy_managers": 2,
-      "base._meta.abstract_managers": 1,
-      "original_base._meta.concrete_managers": 1,
-      "base._meta.virtual_fields": 1,
-      "attr_meta.abstract": 1,
-      "new_class.Meta": 1,
-      "new_class._prepare": 1,
-      "copy_managers": 1,
-      "base_managers": 2,
-      "base_managers.sort": 1,
-      "mgr_name": 3,
-      "manager": 3,
-      "val": 14,
-      "new_manager": 2,
-      "manager._copy_to_model": 1,
-      "cls.add_to_class": 1,
-      "add_to_class": 1,
-      "value": 9,
-      "value.contribute_to_class": 1,
-      "setattr": 14,
-      "_prepare": 1,
-      "opts": 5,
-      "cls._meta": 3,
-      "opts._prepare": 1,
-      "opts.order_with_respect_to": 2,
-      "cls.get_next_in_order": 1,
-      "cls._get_next_or_previous_in_order": 2,
-      "is_next": 9,
-      "cls.get_previous_in_order": 1,
-      "make_foreign_order_accessors": 2,
-      "model": 8,
-      "field.rel.to": 2,
-      "cls.__name__.lower": 2,
-      "method_get_order": 2,
-      "method_set_order": 2,
-      "opts.order_with_respect_to.rel.to": 1,
-      "cls.__doc__": 3,
-      "cls.__name__": 1,
-      ".join": 3,
-      "f.attname": 5,
-      "opts.fields": 1,
-      "cls.get_absolute_url": 3,
-      "get_absolute_url": 2,
-      "signals.class_prepared.send": 1,
-      "sender": 5,
-      "ModelState": 2,
-      "object": 6,
-      "__init__": 5,
-      "self": 100,
-      "db": 2,
-      "self.db": 1,
-      "self.adding": 1,
-      "Model": 2,
-      "__metaclass__": 3,
-      "_deferred": 1,
-      "*args": 4,
-      "signals.pre_init.send": 1,
-      "self.__class__": 10,
-      "args": 8,
-      "self._state": 1,
-      "args_len": 2,
-      "len": 9,
-      "self._meta.fields": 5,
-      "IndexError": 2,
-      "fields_iter": 4,
-      "iter": 1,
-      "field.attname": 17,
-      "kwargs.pop": 6,
-      "field.rel": 2,
-      "is_related_object": 3,
-      "self.__class__.__dict__.get": 2,
-      "try": 17,
-      "rel_obj": 3,
-      "except": 17,
-      "KeyError": 3,
-      "field.get_default": 3,
-      "field.null": 1,
-      "prop": 5,
-      "kwargs.keys": 2,
-      "property": 2,
-      "AttributeError": 1,
-      "pass": 4,
-      ".__init__": 1,
-      "signals.post_init.send": 1,
-      "instance": 5,
-      "__repr__": 2,
-      "u": 9,
-      "unicode": 8,
-      "UnicodeEncodeError": 1,
-      "UnicodeDecodeError": 1,
-      "self.__class__.__name__": 3,
-      "__str__": 1,
-      ".encode": 1,
-      "__eq__": 1,
-      "other": 4,
-      "self._get_pk_val": 6,
-      "other._get_pk_val": 1,
-      "__ne__": 1,
-      "self.__eq__": 1,
-      "__hash__": 1,
-      "hash": 1,
-      "__reduce__": 1,
-      "data": 22,
-      "self.__dict__": 1,
-      "defers": 2,
-      "self._deferred": 1,
-      "deferred_class_factory": 2,
-      "factory": 5,
-      "defers.append": 1,
-      "self._meta.proxy_for_model": 1,
-      "simple_class_factory": 2,
-      "model_unpickle": 2,
-      "_get_pk_val": 2,
-      "self._meta": 2,
-      "meta.pk.attname": 2,
-      "_set_pk_val": 2,
-      "self._meta.pk.attname": 2,
-      "pk": 5,
-      "serializable_value": 1,
-      "field_name": 8,
-      "self._meta.get_field_by_name": 1,
-      "save": 1,
-      "force_insert": 7,
-      "force_update": 10,
-      "using": 30,
-      "update_fields": 23,
-      "ValueError": 5,
-      "frozenset": 2,
-      "field.primary_key": 1,
-      "non_model_fields": 2,
-      "update_fields.difference": 1,
-      "self.save_base": 2,
-      "save.alters_data": 1,
-      "save_base": 1,
-      "raw": 9,
-      "origin": 7,
-      "router.db_for_write": 2,
-      "assert": 7,
-      "meta.proxy": 5,
-      "meta.auto_created": 2,
-      "signals.pre_save.send": 1,
-      "org": 3,
-      "meta.parents.items": 1,
-      "parent._meta.pk.attname": 2,
-      "parent._meta": 1,
-      "non_pks": 5,
-      "meta.local_fields": 2,
-      "f.primary_key": 2,
-      "pk_val": 4,
-      "pk_set": 5,
-      "record_exists": 5,
-      "cls._base_manager": 1,
-      "manager.using": 3,
-      ".filter": 7,
-      ".exists": 1,
-      "values": 13,
-      "f.pre_save": 1,
-      "rows": 3,
-      "._update": 1,
-      "meta.order_with_respect_to": 2,
-      "order_value": 2,
-      "*": 33,
-      ".count": 1,
-      "self._order": 1,
-      "fields": 12,
-      "update_pk": 3,
-      "bool": 2,
-      "meta.has_auto_field": 1,
-      "result": 2,
-      "manager._insert": 1,
-      "return_id": 1,
-      "transaction.commit_unless_managed": 2,
-      "self._state.db": 2,
-      "self._state.adding": 4,
-      "signals.post_save.send": 1,
-      "created": 1,
-      "save_base.alters_data": 1,
-      "delete": 1,
-      "self._meta.object_name": 1,
-      "collector": 1,
-      "collector.collect": 1,
-      "collector.delete": 1,
-      "delete.alters_data": 1,
-      "_get_FIELD_display": 1,
-      "field.flatchoices": 1,
-      ".get": 2,
-      "strings_only": 1,
-      "_get_next_or_previous_by_FIELD": 1,
-      "self.pk": 6,
-      "op": 6,
-      "order": 5,
-      "param": 3,
-      "q": 4,
-      "|": 1,
-      "qs": 6,
-      "self.__class__._default_manager.using": 1,
-      "*kwargs": 1,
-      ".order_by": 2,
-      "self.DoesNotExist": 1,
-      "self.__class__._meta.object_name": 1,
-      "_get_next_or_previous_in_order": 1,
-      "cachename": 4,
-      "order_field": 1,
-      "self._meta.order_with_respect_to": 1,
-      "self._default_manager.filter": 1,
-      "order_field.name": 1,
-      "order_field.attname": 1,
-      "self._default_manager.values": 1,
-      "self._meta.pk.name": 1,
-      "prepare_database_save": 1,
-      "unused": 1,
-      "clean": 1,
-      "validate_unique": 1,
-      "exclude": 23,
-      "unique_checks": 6,
-      "date_checks": 6,
-      "self._get_unique_checks": 1,
-      "errors": 20,
-      "self._perform_unique_checks": 1,
-      "date_errors": 1,
-      "self._perform_date_checks": 1,
-      "k": 4,
-      "v": 11,
-      "date_errors.items": 1,
-      "errors.setdefault": 3,
-      ".extend": 2,
-      "_get_unique_checks": 1,
-      "unique_togethers": 2,
-      "self._meta.unique_together": 1,
-      "parent_class": 4,
-      "self._meta.parents.keys": 2,
-      "parent_class._meta.unique_together": 2,
-      "unique_togethers.append": 1,
-      "model_class": 11,
-      "unique_together": 2,
-      "check": 4,
-      "break": 2,
-      "unique_checks.append": 2,
-      "fields_with_class": 2,
-      "self._meta.local_fields": 1,
-      "fields_with_class.append": 1,
-      "parent_class._meta.local_fields": 1,
-      "f.unique": 1,
-      "f.unique_for_date": 3,
-      "date_checks.append": 3,
-      "f.unique_for_year": 3,
-      "f.unique_for_month": 3,
-      "_perform_unique_checks": 1,
-      "unique_check": 10,
-      "lookup_kwargs": 8,
-      "self._meta.get_field": 1,
-      "lookup_value": 3,
-      "str": 2,
-      "lookup_kwargs.keys": 1,
-      "model_class._default_manager.filter": 2,
-      "*lookup_kwargs": 2,
-      "model_class_pk": 3,
-      "model_class._meta": 2,
-      "qs.exclude": 2,
-      "qs.exists": 2,
-      "key": 5,
-      ".append": 2,
-      "self.unique_error_message": 1,
-      "_perform_date_checks": 1,
-      "lookup_type": 7,
-      "unique_for": 9,
-      "date": 3,
-      "date.day": 1,
-      "date.month": 1,
-      "date.year": 1,
-      "self.date_error_message": 1,
-      "date_error_message": 1,
-      "opts.get_field": 4,
-      ".verbose_name": 3,
-      "unique_error_message": 1,
-      "model_name": 3,
-      "opts.verbose_name": 1,
-      "field_label": 2,
-      "field.verbose_name": 1,
-      "field.error_messages": 1,
-      "field_labels": 4,
-      "map": 1,
-      "lambda": 1,
-      "full_clean": 1,
-      "self.clean_fields": 1,
-      "e": 13,
-      "e.update_error_dict": 3,
-      "self.clean": 1,
-      "errors.keys": 1,
-      "exclude.append": 1,
-      "self.validate_unique": 1,
-      "clean_fields": 1,
-      "raw_value": 3,
-      "f.blank": 1,
-      "validators.EMPTY_VALUES": 1,
-      "f.clean": 1,
-      "e.messages": 1,
-      "############################################": 2,
-      "ordered_obj": 2,
-      "id_list": 2,
-      "rel_val": 4,
-      "ordered_obj._meta.order_with_respect_to.rel.field_name": 2,
-      "order_name": 4,
-      "ordered_obj._meta.order_with_respect_to.name": 2,
-      "i": 7,
-      "j": 2,
-      "enumerate": 1,
-      "ordered_obj.objects.filter": 2,
-      ".update": 1,
-      "_order": 1,
-      "pk_name": 3,
-      "ordered_obj._meta.pk.name": 1,
-      "r": 3,
-      ".values": 1,
-      "##############################################": 2,
-      "func": 2,
-      "settings.ABSOLUTE_URL_OVERRIDES.get": 1,
-      "opts.app_label": 1,
-      "opts.module_name": 1,
-      "########": 2,
-      "Empty": 1,
-      "cls.__new__": 1,
-      "model_unpickle.__safe_for_unpickle__": 1,
-      ".globals": 1,
-      "request": 1,
-      "http_method_funcs": 2,
-      "View": 2,
-      "A": 1,
-      "which": 1,
-      "methods": 5,
-      "this": 2,
-      "pluggable": 1,
-      "view": 2,
-      "can": 1,
-      "handle.": 1,
-      "The": 1,
-      "canonical": 1,
-      "way": 1,
-      "decorate": 2,
-      "based": 1,
-      "views": 1,
-      "the": 5,
-      "of": 3,
-      "as_view": 1,
-      ".": 1,
-      "However": 1,
-      "since": 1,
-      "moves": 1,
-      "parts": 1,
-      "logic": 1,
-      "declaration": 1,
-      "place": 1,
-      "where": 1,
-      "it": 1,
-      "s": 1,
-      "also": 1,
-      "used": 1,
-      "instantiating": 1,
-      "view.view_class": 1,
-      "view.__name__": 1,
-      "view.__doc__": 1,
-      "view.__module__": 1,
-      "cls.__module__": 1,
-      "view.methods": 1,
-      "cls.methods": 1,
-      "MethodViewType": 2,
-      "d": 5,
-      "rv": 2,
-      "type.__new__": 1,
-      "rv.methods": 2,
-      "methods.add": 1,
-      "key.upper": 1,
-      "sorted": 1,
-      "MethodView": 1,
-      "dispatch_request": 1,
-      "meth": 5,
-      "request.method.lower": 1,
-      "request.method": 2,
-      "google.protobuf": 4,
-      "descriptor": 1,
-      "_descriptor": 1,
-      "message": 1,
-      "_message": 1,
-      "reflection": 1,
-      "_reflection": 1,
-      "descriptor_pb2": 1,
-      "DESCRIPTOR": 3,
-      "_descriptor.FileDescriptor": 1,
-      "package": 1,
-      "serialized_pb": 1,
-      "_PERSON": 3,
-      "_descriptor.Descriptor": 1,
-      "full_name": 2,
-      "filename": 1,
-      "file": 1,
-      "containing_type": 2,
-      "_descriptor.FieldDescriptor": 1,
-      "index": 1,
-      "number": 1,
-      "cpp_type": 1,
-      "label": 18,
-      "has_default_value": 1,
-      "default_value": 1,
-      "message_type": 1,
-      "enum_type": 1,
-      "is_extension": 1,
-      "extension_scope": 1,
-      "options": 3,
-      "extensions": 1,
-      "nested_types": 1,
-      "enum_types": 1,
-      "is_extendable": 1,
-      "extension_ranges": 1,
-      "serialized_start": 1,
-      "serialized_end": 1,
-      "DESCRIPTOR.message_types_by_name": 1,
-      "Person": 1,
-      "_message.Message": 1,
-      "_reflection.GeneratedProtocolMessageType": 1,
-      "SHEBANG#!python": 4,
-      "print": 39,
-      "os": 1,
-      "main": 4,
-      "usage": 3,
-      "string": 1,
-      "command": 4,
-      "sys.argv": 2,
-      "<": 1,
-      "sys.exit": 1,
-      "printDelimiter": 4,
-      "get": 1,
-      "a": 2,
-      "list": 1,
-      "git": 1,
-      "directories": 1,
-      "specified": 1,
-      "gitDirectories": 2,
-      "getSubdirectories": 2,
-      "isGitDirectory": 2,
-      "gitDirectory": 2,
-      "os.chdir": 1,
-      "os.getcwd": 1,
-      "os.system": 1,
-      "directory": 9,
-      "filter": 3,
-      "os.path.abspath": 1,
-      "subdirectories": 3,
-      "os.walk": 1,
-      ".next": 1,
-      "os.path.isdir": 1,
-      "__name__": 2,
-      "argparse": 1,
-      "matplotlib.pyplot": 1,
-      "pl": 1,
-      "numpy": 1,
-      "np": 1,
-      "scipy.optimize": 1,
-      "prettytable": 1,
-      "PrettyTable": 6,
-      "__docformat__": 1,
-      "S": 4,
-      "phif": 7,
-      "U": 10,
-      "/": 23,
-      "_parse_args": 2,
-      "V": 12,
-      "np.genfromtxt": 8,
-      "delimiter": 8,
-      "t": 8,
-      "U_err": 7,
-      "offset": 13,
-      "np.mean": 1,
-      "np.linspace": 9,
-      "min": 10,
-      "max": 11,
-      "y": 10,
-      "np.ones": 11,
-      "x.size": 2,
-      "pl.plot": 9,
-      "**6": 6,
-      ".format": 11,
-      "pl.errorbar": 8,
-      "yerr": 8,
-      "linestyle": 8,
-      "marker": 4,
-      "pl.grid": 5,
-      "pl.legend": 5,
-      "loc": 5,
-      "pl.title": 5,
-      "pl.xlabel": 5,
-      "ur": 11,
-      "pl.ylabel": 5,
-      "pl.savefig": 5,
-      "pl.clf": 5,
-      "glanz": 13,
-      "matt": 13,
-      "schwarz": 13,
-      "weiss": 13,
-      "T0": 1,
-      "T0_err": 2,
-      "glanz_phi": 4,
-      "matt_phi": 4,
-      "schwarz_phi": 4,
-      "weiss_phi": 4,
-      "T_err": 7,
-      "sigma": 4,
-      "boltzmann": 12,
-      "T": 6,
-      "epsilon": 7,
-      "T**4": 1,
-      "glanz_popt": 3,
-      "glanz_pconv": 1,
-      "op.curve_fit": 6,
-      "matt_popt": 3,
-      "matt_pconv": 1,
-      "schwarz_popt": 3,
-      "schwarz_pconv": 1,
-      "weiss_popt": 3,
-      "weiss_pconv": 1,
-      "glanz_x": 3,
-      "glanz_y": 2,
-      "*glanz_popt": 1,
-      "color": 8,
-      "matt_x": 3,
-      "matt_y": 2,
-      "*matt_popt": 1,
-      "schwarz_x": 3,
-      "schwarz_y": 2,
-      "*schwarz_popt": 1,
-      "weiss_x": 3,
-      "weiss_y": 2,
-      "*weiss_popt": 1,
-      "np.sqrt": 17,
-      "glanz_pconv.diagonal": 2,
-      "matt_pconv.diagonal": 2,
-      "schwarz_pconv.diagonal": 2,
-      "weiss_pconv.diagonal": 2,
-      "xerr": 6,
-      "U_err/S": 4,
-      "header": 5,
-      "glanz_table": 2,
-      "row": 10,
-      ".size": 4,
-      "*T_err": 4,
-      "glanz_phi.size": 1,
-      "*U_err/S": 4,
-      "glanz_table.add_row": 1,
-      "matt_table": 2,
-      "matt_phi.size": 1,
-      "matt_table.add_row": 1,
-      "schwarz_table": 2,
-      "schwarz_phi.size": 1,
-      "schwarz_table.add_row": 1,
-      "weiss_table": 2,
-      "weiss_phi.size": 1,
-      "weiss_table.add_row": 1,
-      "T0**4": 1,
-      "phi": 5,
-      "c": 3,
-      "a*x": 1,
-      "dx": 6,
-      "d**": 2,
-      "dy": 4,
-      "dx_err": 3,
-      "np.abs": 1,
-      "dy_err": 2,
-      "popt": 5,
-      "pconv": 2,
-      "*popt": 2,
-      "pconv.diagonal": 3,
-      "table": 2,
-      "table.align": 1,
-      "dy.size": 1,
-      "*dy_err": 1,
-      "table.add_row": 1,
-      "U1": 3,
-      "I1": 3,
-      "U2": 2,
-      "I_err": 2,
-      "p": 1,
-      "R": 1,
-      "R_err": 2,
-      "/I1": 1,
-      "**2": 2,
-      "U1/I1**2": 1,
-      "phi_err": 3,
-      "alpha": 2,
-      "beta": 1,
-      "R0": 6,
-      "R0_err": 2,
-      "alpha*R0": 2,
-      "*np.sqrt": 6,
-      "*beta*R": 5,
-      "alpha**2*R0": 5,
-      "*beta*R0": 7,
-      "*beta*R0*T0": 2,
-      "epsilon_err": 2,
-      "f1": 1,
-      "f2": 1,
-      "f3": 1,
-      "alpha**2": 1,
-      "*beta": 1,
-      "*beta*T0": 1,
-      "*beta*R0**2": 1,
-      "f1**2": 1,
-      "f2**2": 1,
-      "f3**2": 1,
-      "parser": 1,
-      "argparse.ArgumentParser": 1,
-      "description": 1,
-      "#parser.add_argument": 3,
-      "metavar": 1,
-      "nargs": 1,
-      "help": 2,
-      "dest": 1,
-      "default": 1,
-      "action": 1,
-      "version": 6,
-      "parser.parse_args": 1,
-      "absolute_import": 1,
-      "division": 1,
-      "with_statement": 1,
-      "Cookie": 1,
-      "logging": 1,
-      "socket": 1,
-      "time": 1,
-      "tornado.escape": 1,
-      "utf8": 2,
-      "native_str": 4,
-      "parse_qs_bytes": 3,
-      "tornado": 3,
-      "httputil": 1,
-      "iostream": 1,
-      "tornado.netutil": 1,
-      "TCPServer": 2,
-      "stack_context": 1,
-      "tornado.util": 1,
-      "bytes_type": 2,
-      "ssl": 2,
-      "Python": 1,
-      "ImportError": 1,
-      "HTTPServer": 1,
-      "request_callback": 4,
-      "no_keep_alive": 4,
-      "io_loop": 3,
-      "xheaders": 4,
-      "ssl_options": 3,
-      "self.request_callback": 5,
-      "self.no_keep_alive": 4,
-      "self.xheaders": 3,
-      "TCPServer.__init__": 1,
-      "handle_stream": 1,
-      "stream": 4,
-      "address": 4,
-      "HTTPConnection": 2,
-      "_BadRequestException": 5,
-      "Exception": 2,
-      "self.stream": 1,
-      "self.address": 3,
-      "self._request": 7,
-      "self._request_finished": 4,
-      "self._header_callback": 3,
-      "stack_context.wrap": 2,
-      "self._on_headers": 1,
-      "self.stream.read_until": 2,
-      "self._write_callback": 5,
-      "write": 2,
-      "chunk": 5,
-      "callback": 7,
-      "self.stream.closed": 1,
-      "self.stream.write": 2,
-      "self._on_write_complete": 1,
-      "finish": 2,
-      "self.stream.writing": 2,
-      "self._finish_request": 2,
-      "_on_write_complete": 1,
-      "_finish_request": 1,
-      "disconnect": 5,
-      "connection_header": 5,
-      "self._request.headers.get": 2,
-      "connection_header.lower": 1,
-      "self._request.supports_http_1_1": 1,
-      "self._request.headers": 1,
-      "self._request.method": 2,
-      "self.stream.close": 2,
-      "_on_headers": 1,
-      "data.decode": 1,
-      "eol": 3,
-      "data.find": 1,
-      "start_line": 1,
-      "method": 5,
-      "uri": 5,
-      "start_line.split": 1,
-      "version.startswith": 1,
-      "headers": 5,
-      "httputil.HTTPHeaders.parse": 1,
-      "self.stream.socket": 1,
-      "socket.AF_INET": 2,
-      "socket.AF_INET6": 1,
-      "remote_ip": 8,
-      "HTTPRequest": 2,
-      "connection": 5,
-      "content_length": 6,
-      "headers.get": 2,
-      "int": 1,
-      "self.stream.max_buffer_size": 1,
-      "self.stream.read_bytes": 1,
-      "self._on_request_body": 1,
-      "logging.info": 1,
-      "_on_request_body": 1,
-      "self._request.body": 2,
-      "content_type": 1,
-      "content_type.startswith": 2,
-      "arguments": 2,
-      "arguments.iteritems": 2,
-      "self._request.arguments.setdefault": 1,
-      "content_type.split": 1,
-      "sep": 2,
-      "field.strip": 1,
-      ".partition": 1,
-      "httputil.parse_multipart_form_data": 1,
-      "self._request.arguments": 1,
-      "self._request.files": 1,
-      "logging.warning": 1,
-      "body": 2,
-      "protocol": 4,
-      "host": 2,
-      "files": 2,
-      "self.method": 1,
-      "self.uri": 2,
-      "self.version": 2,
-      "self.headers": 4,
-      "httputil.HTTPHeaders": 1,
-      "self.body": 1,
-      "connection.xheaders": 1,
-      "self.remote_ip": 4,
-      "self.headers.get": 5,
-      "self._valid_ip": 1,
-      "self.protocol": 7,
-      "connection.stream": 1,
-      "iostream.SSLIOStream": 1,
-      "self.host": 2,
-      "self.files": 1,
-      "self.connection": 1,
-      "self._start_time": 3,
-      "time.time": 3,
-      "self._finish_time": 4,
-      "self.path": 1,
-      "self.query": 2,
-      "uri.partition": 1,
-      "self.arguments": 2,
-      "supports_http_1_1": 1,
-      "@property": 1,
-      "cookies": 1,
-      "self._cookies": 3,
-      "Cookie.SimpleCookie": 1,
-      "self._cookies.load": 1,
-      "self.connection.write": 1,
-      "self.connection.finish": 1,
-      "full_url": 1,
-      "request_time": 1,
-      "get_ssl_certificate": 1,
-      "self.connection.stream.socket.getpeercert": 1,
-      "ssl.SSLError": 1,
-      "n": 3,
-      "_valid_ip": 1,
-      "ip": 2,
-      "res": 2,
-      "socket.getaddrinfo": 1,
-      "socket.AF_UNSPEC": 1,
-      "socket.SOCK_STREAM": 1,
-      "socket.AI_NUMERICHOST": 1,
-      "socket.gaierror": 1,
-      "e.args": 1,
-      "socket.EAI_NONAME": 1
-    },
-    "R": {
-      "SHEBANG#!Rscript": 1,
-      "ParseDates": 2,
-      "<": 12,
-      "-": 12,
-      "function": 3,
-      "(": 28,
-      "lines": 4,
-      ")": 28,
-      "{": 3,
-      "dates": 3,
-      "matrix": 2,
-      "unlist": 2,
-      "strsplit": 2,
-      "ncol": 2,
-      "byrow": 2,
-      "TRUE": 3,
-      "days": 2,
-      "[": 3,
-      "]": 3,
-      "times": 2,
-      "hours": 2,
-      "all.days": 2,
-      "c": 2,
-      "all.hours": 2,
-      "data.frame": 1,
-      "Day": 2,
-      "factor": 2,
-      "levels": 2,
-      "Hour": 2,
-      "}": 3,
-      "Main": 2,
-      "system": 1,
-      "intern": 1,
-      "punchcard": 4,
-      "as.data.frame": 1,
-      "table": 1,
-      "ggplot2": 6,
-      "ggplot": 1,
-      "aes": 2,
-      "y": 1,
-      "x": 1,
-      "+": 2,
-      "geom_point": 1,
-      "size": 1,
-      "Freq": 1,
-      "scale_size": 1,
-      "range": 1,
-      "ggsave": 1,
-      "filename": 1,
-      "plot": 1,
-      "width": 1,
-      "height": 1,
-      "hello": 2,
-      "print": 1
-    },
-    "Racket": {
-      ";": 3,
-      "Clean": 1,
-      "simple": 1,
-      "and": 1,
-      "efficient": 1,
-      "code": 1,
-      "-": 100,
-      "that": 2,
-      "s": 1,
-      "the": 3,
-      "power": 1,
-      "of": 4,
-      "Racket": 2,
-      "http": 1,
-      "//racket": 1,
-      "lang.org/": 1,
-      "(": 25,
-      "define": 1,
-      "bottles": 4,
-      "n": 8,
-      "more": 2,
-      ")": 25,
-      "printf": 2,
-      "case": 1,
-      "[": 16,
-      "]": 16,
-      "else": 1,
-      "if": 1,
-      "for": 3,
-      "in": 3,
-      "range": 1,
-      "sub1": 1,
-      "displayln": 2,
-      "SHEBANG#!sh": 1,
-      "#": 2,
-      "|": 2,
-      "*": 2,
-      "scheme": 1,
-      "exec": 1,
-      "racket": 1,
-      "um": 1,
-      "require": 2,
-      "racket/file": 1,
-      "racket/path": 1,
-      "racket/list": 1,
-      "racket/string": 1,
-      "syntax": 1,
-      "racket/base": 1,
-      "#lang": 1,
-      "scribble/manual": 1,
-      "@": 3,
-      "scribble/bnf": 1,
-      "@title": 1,
-      "{": 2,
-      "Scribble": 3,
-      "The": 1,
-      "Documentation": 1,
-      "Tool": 1,
-      "}": 2,
-      "@author": 1,
-      "is": 3,
-      "a": 1,
-      "collection": 1,
-      "tools": 1,
-      "creating": 1,
-      "prose": 2,
-      "documents": 1,
-      "papers": 1,
-      "books": 1,
-      "library": 1,
-      "documentation": 1,
-      "etc.": 1,
-      "HTML": 1,
-      "or": 2,
-      "PDF": 1,
-      "via": 1,
-      "Latex": 1,
-      "form.": 1,
-      "More": 1,
-      "generally": 1,
-      "helps": 1,
-      "you": 1,
-      "write": 1,
-      "programs": 1,
-      "are": 1,
-      "rich": 1,
-      "textual": 1,
-      "content": 2,
-      "whether": 1,
-      "to": 2,
-      "be": 2,
-      "typeset": 1,
-      "any": 1,
-      "other": 1,
-      "form": 1,
-      "text": 1,
-      "generated": 1,
-      "programmatically.": 1,
-      "This": 1,
-      "document": 1,
-      "itself": 1,
-      "written": 1,
-      "using": 1,
-      "Scribble.": 1,
-      "You": 1,
-      "can": 1,
-      "see": 1,
-      "its": 1,
-      "source": 1,
-      "at": 1,
-      "let": 1,
-      "url": 3,
-      "link": 1,
-      "starting": 1,
-      "with": 1,
-      "@filepath": 1,
-      "scribble.scrbl": 1,
-      "file.": 1,
-      "@table": 1,
-      "contents": 1,
-      "@include": 8,
-      "section": 9,
-      "@index": 1
-    },
-    "Ragel in Ruby Host": {
-      "begin": 3,
-      "%": 34,
-      "{": 19,
-      "machine": 3,
-      "ephemeris_parser": 1,
-      ";": 38,
-      "action": 9,
-      "mark": 6,
-      "p": 8,
-      "}": 19,
-      "parse_start_time": 2,
-      "parser.start_time": 1,
-      "data": 15,
-      "[": 20,
-      "mark..p": 4,
-      "]": 20,
-      ".pack": 6,
-      "(": 33,
-      ")": 33,
-      "parse_stop_time": 2,
-      "parser.stop_time": 1,
-      "parse_step_size": 2,
-      "parser.step_size": 1,
-      "parse_ephemeris_table": 2,
-      "fhold": 1,
-      "parser.ephemeris_table": 1,
-      "ws": 2,
-      "t": 1,
-      "r": 1,
-      "n": 1,
-      "adbc": 2,
-      "|": 11,
-      "year": 2,
-      "digit": 7,
-      "month": 2,
-      "upper": 1,
-      "lower": 1,
-      "date": 2,
-      "hours": 2,
-      "minutes": 2,
-      "seconds": 2,
-      "tz": 2,
-      "datetime": 3,
-      "time_unit": 2,
-      "s": 4,
-      "soe": 2,
-      "eoe": 2,
-      "ephemeris_table": 3,
-      "alnum": 1,
-      "*": 9,
-      "-": 5,
-      "./": 1,
-      "start_time": 4,
-      "space*": 2,
-      "stop_time": 4,
-      "step_size": 3,
-      "+": 7,
-      "ephemeris": 2,
-      "main": 3,
-      "any*": 3,
-      "end": 23,
-      "require": 1,
-      "module": 1,
-      "Tengai": 1,
-      "EPHEMERIS_DATA": 2,
-      "Struct.new": 1,
-      ".freeze": 1,
-      "class": 3,
-      "EphemerisParser": 1,
-      "<": 1,
-      "def": 10,
-      "self.parse": 1,
-      "parser": 2,
-      "new": 1,
-      "data.unpack": 1,
-      "if": 4,
-      "data.is_a": 1,
-      "String": 1,
-      "eof": 3,
-      "data.length": 3,
-      "write": 9,
-      "init": 3,
-      "exec": 3,
-      "time": 6,
-      "super": 2,
-      "parse_time": 3,
-      "private": 1,
-      "DateTime.parse": 1,
-      "simple_scanner": 1,
-      "Emit": 4,
-      "emit": 4,
-      "ts": 4,
-      "..": 1,
-      "te": 1,
-      "foo": 8,
-      "any": 4,
-      "#": 4,
-      "SimpleScanner": 1,
-      "attr_reader": 2,
-      "path": 8,
-      "initialize": 2,
-      "@path": 2,
-      "stdout.puts": 2,
-      "perform": 2,
-      "pe": 4,
-      "ignored": 4,
-      "leftover": 8,
-      "File.open": 2,
-      "do": 2,
-      "f": 2,
-      "while": 2,
-      "chunk": 2,
-      "f.read": 2,
-      "ENV": 2,
-      ".to_i": 2,
-      "chunk.unpack": 2,
-      "||": 1,
-      "ts..pe": 1,
-      "else": 2,
-      "SimpleScanner.new": 1,
-      "ARGV": 2,
-      "s.perform": 2,
-      "simple_tokenizer": 1,
-      "MyTs": 2,
-      "my_ts": 6,
-      "MyTe": 2,
-      "my_te": 6,
-      "my_ts...my_te": 1,
-      "nil": 4,
-      "SimpleTokenizer": 1,
-      "my_ts..": 1,
-      "SimpleTokenizer.new": 1
-    },
-    "Rebol": {
-      "REBOL": 1,
-      "[": 3,
-      "]": 3,
-      "hello": 2,
-      "func": 1,
-      "print": 1
-    },
-    "Ruby": {
-      "load": 3,
-      "Dir": 4,
-      "[": 56,
-      "]": 56,
-      ".each": 4,
-      "{": 68,
-      "|": 91,
-      "plugin": 3,
-      "(": 244,
-      ")": 256,
-      "}": 68,
-      "task": 2,
-      "default": 2,
-      "do": 35,
-      "puts": 12,
-      "end": 236,
-      "module": 8,
-      "Foo": 1,
-      "require": 58,
-      "class": 7,
-      "Formula": 2,
-      "include": 3,
-      "FileUtils": 1,
-      "attr_reader": 5,
-      "name": 51,
-      "path": 16,
-      "url": 12,
-      "version": 10,
-      "homepage": 2,
-      "specs": 14,
-      "downloader": 6,
-      "standard": 2,
-      "unstable": 2,
-      "head": 3,
-      "bottle_version": 2,
-      "bottle_url": 3,
-      "bottle_sha1": 2,
-      "buildpath": 1,
-      "def": 143,
-      "initialize": 2,
-      "nil": 21,
-      "set_instance_variable": 12,
-      "if": 72,
-      "@head": 4,
-      "and": 6,
-      "not": 3,
-      "@url": 8,
-      "or": 7,
-      "ARGV.build_head": 2,
-      "@version": 10,
-      "@spec_to_use": 4,
-      "@unstable": 2,
-      "else": 25,
-      "@standard.nil": 1,
-      "SoftwareSpecification.new": 3,
-      "@specs": 3,
-      "@standard": 3,
-      "raise": 17,
-      "@url.nil": 1,
-      "@name": 3,
-      "validate_variable": 7,
-      "@path": 1,
-      "path.nil": 1,
-      "self.class.path": 1,
-      "Pathname.new": 3,
-      "||": 22,
-      "@spec_to_use.detect_version": 1,
-      "CHECKSUM_TYPES.each": 1,
-      "type": 10,
-      "@downloader": 2,
-      "download_strategy.new": 2,
-      "@spec_to_use.url": 1,
-      "@spec_to_use.specs": 1,
-      "@bottle_url": 2,
-      "bottle_base_url": 1,
-      "+": 47,
-      "bottle_filename": 1,
-      "self": 11,
-      "@bottle_sha1": 2,
-      "installed": 2,
-      "return": 25,
-      "installed_prefix.children.length": 1,
-      "rescue": 13,
-      "false": 26,
-      "explicitly_requested": 1,
-      "ARGV.named.empty": 1,
-      "ARGV.formulae.include": 1,
-      "linked_keg": 1,
-      "HOMEBREW_REPOSITORY/": 2,
-      "/@name": 1,
-      "installed_prefix": 1,
-      "head_prefix": 2,
-      "HOMEBREW_CELLAR": 2,
-      "head_prefix.directory": 1,
-      "prefix": 14,
-      "rack": 1,
-      ";": 41,
-      "prefix.parent": 1,
-      "bin": 1,
-      "doc": 1,
-      "info": 2,
-      "lib": 1,
-      "libexec": 1,
-      "man": 9,
-      "man1": 1,
-      "man2": 1,
-      "man3": 1,
-      "man4": 1,
-      "man5": 1,
-      "man6": 1,
-      "man7": 1,
-      "man8": 1,
-      "sbin": 1,
-      "share": 1,
-      "etc": 1,
-      "HOMEBREW_PREFIX": 2,
-      "var": 1,
-      "plist_name": 2,
-      "plist_path": 1,
-      "download_strategy": 1,
-      "@spec_to_use.download_strategy": 1,
-      "cached_download": 1,
-      "@downloader.cached_location": 1,
-      "caveats": 1,
-      "options": 3,
-      "patches": 2,
-      "keg_only": 2,
-      "self.class.keg_only_reason": 1,
-      "fails_with": 2,
-      "cc": 3,
-      "self.class.cc_failures.nil": 1,
-      "Compiler.new": 1,
-      "unless": 15,
-      "cc.is_a": 1,
-      "Compiler": 1,
-      "self.class.cc_failures.find": 1,
-      "failure": 1,
-      "next": 1,
-      "failure.compiler": 1,
-      "cc.name": 1,
-      "failure.build.zero": 1,
-      "failure.build": 1,
-      "cc.build": 1,
-      "skip_clean": 2,
-      "true": 15,
-      "self.class.skip_clean_all": 1,
-      "to_check": 2,
-      "path.relative_path_from": 1,
-      ".to_s": 3,
-      "self.class.skip_clean_paths.include": 1,
-      "brew": 2,
-      "stage": 2,
-      "begin": 9,
-      "patch": 3,
-      "yield": 5,
-      "Interrupt": 2,
-      "RuntimeError": 1,
-      "SystemCallError": 1,
-      "e": 8,
-      "#": 100,
-      "don": 1,
-      "config.log": 2,
-      "t": 3,
-      "a": 10,
-      "std_autotools": 1,
-      "variant": 1,
-      "because": 1,
-      "autotools": 1,
-      "is": 3,
-      "lot": 1,
-      "std_cmake_args": 1,
-      "%": 10,
-      "W": 1,
-      "-": 34,
-      "DCMAKE_INSTALL_PREFIX": 1,
-      "DCMAKE_BUILD_TYPE": 1,
-      "None": 1,
-      "DCMAKE_FIND_FRAMEWORK": 1,
-      "LAST": 1,
-      "Wno": 1,
-      "dev": 1,
-      "self.class_s": 2,
-      "#remove": 1,
-      "invalid": 1,
-      "characters": 1,
-      "then": 4,
-      "camelcase": 1,
-      "it": 1,
-      "name.capitalize.gsub": 1,
-      "/": 34,
-      "_.": 1,
-      "s": 2,
-      "zA": 1,
-      "Z0": 1,
-      "upcase": 1,
-      ".gsub": 5,
-      "self.names": 1,
-      ".map": 6,
-      "f": 11,
-      "File.basename": 2,
-      ".sort": 2,
-      "self.all": 1,
-      "map": 1,
-      "self.map": 1,
-      "rv": 3,
-      "each": 1,
-      "<<": 15,
-      "self.each": 1,
-      "names.each": 1,
-      "n": 4,
-      "Formula.factory": 2,
-      "onoe": 2,
-      "inspect": 2,
-      "self.aliases": 1,
-      "self.canonical_name": 1,
-      "name.to_s": 3,
-      "name.kind_of": 2,
-      "Pathname": 2,
-      "formula_with_that_name": 1,
-      "HOMEBREW_REPOSITORY": 4,
-      "possible_alias": 1,
-      "possible_cached_formula": 1,
-      "HOMEBREW_CACHE_FORMULA": 2,
-      "name.include": 2,
-      "r": 3,
-      ".": 3,
-      "tapd": 1,
-      ".downcase": 2,
-      "tapd.find_formula": 1,
-      "relative_pathname": 1,
-      "relative_pathname.stem.to_s": 1,
-      "tapd.directory": 1,
-      "elsif": 7,
-      "formula_with_that_name.file": 1,
-      "formula_with_that_name.readable": 1,
-      "possible_alias.file": 1,
-      "possible_alias.realpath.basename": 1,
-      "possible_cached_formula.file": 1,
-      "possible_cached_formula.to_s": 1,
-      "self.factory": 1,
-      "https": 1,
-      "ftp": 1,
-      "//": 3,
-      ".basename": 1,
-      "target_file": 6,
-      "name.basename": 1,
-      "HOMEBREW_CACHE_FORMULA.mkpath": 1,
-      "FileUtils.rm": 1,
-      "force": 1,
-      "curl": 1,
-      "install_type": 4,
-      "from_url": 1,
-      "Formula.canonical_name": 1,
-      ".rb": 1,
-      "path.stem": 1,
-      "from_path": 1,
-      "path.to_s": 3,
-      "Formula.path": 1,
-      "from_name": 2,
-      "klass_name": 2,
-      "klass": 16,
-      "Object.const_get": 1,
-      "NameError": 2,
-      "LoadError": 3,
-      "klass.new": 2,
-      "FormulaUnavailableError.new": 1,
-      "tap": 1,
-      "path.realpath.to_s": 1,
-      "/Library/Taps/": 1,
-      "w": 6,
-      "self.path": 1,
-      "mirrors": 4,
-      "self.class.mirrors": 1,
-      "deps": 1,
-      "self.class.dependencies.deps": 1,
-      "external_deps": 1,
-      "self.class.dependencies.external_deps": 1,
-      "recursive_deps": 1,
-      "Formula.expand_deps": 1,
-      ".flatten.uniq": 1,
-      "self.expand_deps": 1,
-      "f.deps.map": 1,
-      "dep": 3,
-      "f_dep": 3,
-      "dep.to_s": 1,
-      "expand_deps": 1,
-      "protected": 1,
-      "system": 1,
-      "cmd": 6,
-      "*args": 16,
-      "pretty_args": 1,
-      "args.dup": 1,
-      "pretty_args.delete": 1,
-      "ARGV.verbose": 2,
-      "ohai": 3,
-      ".strip": 1,
-      "removed_ENV_variables": 2,
-      "case": 5,
-      "args.empty": 1,
-      "cmd.split": 1,
-      ".first": 1,
-      "when": 11,
-      "ENV.remove_cc_etc": 1,
-      "safe_system": 4,
-      "rd": 1,
-      "wr": 3,
-      "IO.pipe": 1,
-      "pid": 1,
-      "fork": 1,
-      "rd.close": 1,
-      "stdout.reopen": 1,
-      "stderr.reopen": 1,
-      "args.collect": 1,
-      "arg": 1,
-      "arg.to_s": 1,
-      "exec": 2,
-      "exit": 2,
-      "never": 1,
-      "gets": 1,
-      "here": 1,
-      "threw": 1,
-      "failed": 3,
-      "wr.close": 1,
-      "out": 4,
-      "rd.read": 1,
-      "until": 1,
-      "rd.eof": 1,
-      "Process.wait": 1,
-      ".success": 1,
-      "removed_ENV_variables.each": 1,
-      "key": 8,
-      "value": 4,
-      "ENV": 4,
-      "ENV.kind_of": 1,
-      "Hash": 3,
-      "BuildError.new": 1,
-      "args": 5,
-      "public": 2,
-      "fetch": 2,
-      "install_bottle": 1,
-      "CurlBottleDownloadStrategy.new": 1,
-      "mirror_list": 2,
-      "HOMEBREW_CACHE.mkpath": 1,
-      "fetched": 4,
-      "downloader.fetch": 1,
-      "CurlDownloadStrategyError": 1,
-      "mirror_list.empty": 1,
-      "mirror_list.shift.values_at": 1,
-      "retry": 2,
-      "checksum_type": 2,
-      "CHECKSUM_TYPES.detect": 1,
-      "instance_variable_defined": 2,
-      "verify_download_integrity": 2,
-      "fn": 2,
-      "args.length": 1,
-      "md5": 2,
-      "supplied": 4,
-      "instance_variable_get": 2,
-      "type.to_s.upcase": 1,
-      "hasher": 2,
-      "Digest.const_get": 1,
-      "hash": 2,
-      "fn.incremental_hash": 1,
-      "supplied.empty": 1,
-      "message": 2,
-      "EOF": 2,
-      "mismatch": 1,
-      "Expected": 1,
-      "Got": 1,
-      "Archive": 1,
-      "To": 1,
-      "an": 1,
-      "incomplete": 1,
-      "download": 1,
-      "remove": 1,
-      "the": 8,
-      "file": 1,
-      "above.": 1,
-      "supplied.upcase": 1,
-      "hash.upcase": 1,
-      "opoo": 1,
-      "private": 3,
-      "CHECKSUM_TYPES": 2,
-      "sha1": 4,
-      "sha256": 1,
-      ".freeze": 1,
-      "fetched.kind_of": 1,
-      "mktemp": 1,
-      "downloader.stage": 1,
-      "@buildpath": 2,
-      "Pathname.pwd": 1,
-      "patch_list": 1,
-      "Patches.new": 1,
-      "patch_list.empty": 1,
-      "patch_list.external_patches": 1,
-      "patch_list.download": 1,
-      "patch_list.each": 1,
-      "p": 2,
-      "p.compression": 1,
-      "gzip": 1,
-      "p.compressed_filename": 2,
-      "bzip2": 1,
-      "*": 3,
-      "p.patch_args": 1,
-      "v": 2,
-      "v.to_s.empty": 1,
-      "s/": 1,
-      "class_value": 3,
-      "self.class.send": 1,
-      "instance_variable_set": 1,
-      "self.method_added": 1,
-      "method": 4,
-      "self.attr_rw": 1,
-      "attrs": 1,
-      "attrs.each": 1,
-      "attr": 4,
-      "class_eval": 1,
-      "Q": 1,
-      "val": 10,
-      "val.nil": 3,
-      "@#": 2,
-      "attr_rw": 4,
-      "keg_only_reason": 1,
-      "skip_clean_all": 2,
-      "cc_failures": 1,
-      "stable": 2,
-      "&": 31,
-      "block": 30,
-      "block_given": 5,
-      "instance_eval": 2,
-      "ARGV.build_devel": 2,
-      "devel": 1,
-      "@mirrors": 3,
-      "clear": 1,
-      "from": 1,
-      "release": 1,
-      "bottle": 1,
-      "bottle_block": 1,
-      "Class.new": 2,
-      "self.version": 1,
-      "self.url": 1,
-      "self.sha1": 1,
-      "sha1.shift": 1,
-      "@sha1": 6,
-      "MacOS.cat": 1,
-      "String": 2,
-      "MacOS.lion": 1,
-      "self.data": 1,
-      "&&": 8,
-      "bottle_block.instance_eval": 1,
-      "@bottle_version": 1,
-      "bottle_block.data": 1,
-      "mirror": 1,
-      "@mirrors.uniq": 1,
-      "dependencies": 1,
-      "@dependencies": 1,
-      "DependencyCollector.new": 1,
-      "depends_on": 1,
-      "dependencies.add": 1,
-      "paths": 3,
-      "all": 1,
-      "@skip_clean_all": 2,
-      "@skip_clean_paths": 3,
-      ".flatten.each": 1,
-      "p.to_s": 2,
-      "@skip_clean_paths.include": 1,
-      "skip_clean_paths": 1,
-      "reason": 2,
-      "explanation": 1,
-      "@keg_only_reason": 1,
-      "KegOnlyReason.new": 1,
-      "explanation.to_s.chomp": 1,
-      "compiler": 3,
-      "@cc_failures": 2,
-      "CompilerFailures.new": 1,
-      "CompilerFailure.new": 2,
-      "Grit": 1,
-      "ActiveSupport": 1,
-      "Inflector": 1,
-      "extend": 2,
-      "pluralize": 3,
-      "word": 10,
-      "apply_inflections": 3,
-      "inflections.plurals": 1,
-      "singularize": 2,
-      "inflections.singulars": 1,
-      "camelize": 2,
-      "term": 1,
-      "uppercase_first_letter": 2,
-      "string": 4,
-      "term.to_s": 1,
-      "string.sub": 2,
-      "z": 7,
-      "d": 6,
-      "*/": 1,
-      "inflections.acronyms": 1,
-      ".capitalize": 1,
-      "inflections.acronym_regex": 2,
-      "b": 4,
-      "A": 5,
-      "Z_": 1,
-      "string.gsub": 1,
-      "_": 2,
-      "/i": 2,
-      "underscore": 3,
-      "camel_cased_word": 6,
-      "camel_cased_word.to_s.dup": 1,
-      "word.gsub": 4,
-      "Za": 1,
-      "Z": 3,
-      "word.tr": 1,
-      "word.downcase": 1,
-      "humanize": 2,
-      "lower_case_and_underscored_word": 1,
-      "result": 8,
-      "lower_case_and_underscored_word.to_s.dup": 1,
-      "inflections.humans.each": 1,
-      "rule": 4,
-      "replacement": 4,
-      "break": 4,
-      "result.sub": 2,
-      "result.gsub": 2,
-      "/_id": 1,
-      "result.tr": 1,
-      "match": 6,
-      "w/": 1,
-      ".upcase": 1,
-      "titleize": 1,
-      "": 1,
-      "capitalize": 1,
-      "Create": 1,
-      "of": 1,
-      "table": 2,
-      "like": 1,
-      "Rails": 1,
-      "does": 1,
-      "for": 1,
-      "models": 1,
-      "to": 1,
-      "names": 2,
-      "This": 1,
-      "uses": 1,
-      "on": 2,
-      "last": 4,
-      "in": 3,
-      "RawScaledScorer": 1,
-      "tableize": 2,
-      "class_name": 2,
-      "classify": 1,
-      "table_name": 1,
-      "table_name.to_s.sub": 1,
-      "/.*": 1,
-      "./": 1,
-      "dasherize": 1,
-      "underscored_word": 1,
-      "underscored_word.tr": 1,
-      "demodulize": 1,
-      "i": 2,
-      "path.rindex": 2,
-      "..": 1,
-      "deconstantize": 1,
-      "implementation": 1,
-      "based": 1,
-      "one": 1,
-      "facets": 1,
-      "id": 1,
-      "outside": 2,
-      "inside": 2,
-      "owned": 1,
-      "constant": 4,
-      "constant.ancestors.inject": 1,
-      "const": 3,
-      "ancestor": 3,
-      "Object": 1,
-      "ancestor.const_defined": 1,
-      "constant.const_get": 1,
-      "safe_constantize": 1,
-      "constantize": 1,
-      "e.message": 2,
-      "uninitialized": 1,
-      "wrong": 1,
-      "const_regexp": 3,
-      "e.name.to_s": 1,
-      "camel_cased_word.to_s": 1,
-      "ArgumentError": 1,
-      "/not": 1,
-      "missing": 1,
-      "ordinal": 1,
-      "number": 2,
-      ".include": 1,
-      "number.to_i.abs": 2,
-      "ordinalize": 1,
-      "nodoc": 3,
-      "parts": 1,
-      "camel_cased_word.split": 1,
-      "parts.pop": 1,
-      "parts.reverse.inject": 1,
-      "acc": 2,
-      "part": 1,
-      "part.empty": 1,
-      "rules": 1,
-      "word.to_s.dup": 1,
-      "word.empty": 1,
-      "inflections.uncountables.include": 1,
-      "result.downcase": 1,
-      "Z/": 1,
-      "rules.each": 1,
-      ".unshift": 1,
-      "File.dirname": 4,
-      "__FILE__": 3,
-      "For": 1,
-      "use/testing": 1,
-      "no": 1,
-      "gem": 1,
-      "require_all": 4,
-      "glob": 2,
-      "File.join": 6,
-      "Jekyll": 3,
-      "VERSION": 1,
-      "DEFAULTS": 2,
-      "Dir.pwd": 3,
-      "self.configuration": 1,
-      "override": 3,
-      "source": 2,
-      "config_file": 2,
-      "config": 3,
-      "YAML.load_file": 1,
-      "config.is_a": 1,
-      "stdout.puts": 1,
-      "err": 1,
-      "stderr.puts": 2,
-      "err.to_s": 1,
-      "DEFAULTS.deep_merge": 1,
-      ".deep_merge": 1,
-      "Jenkins": 1,
-      "Plugin": 1,
-      "Specification.new": 1,
-      "plugin.name": 1,
-      "plugin.display_name": 1,
-      "plugin.version": 1,
-      "plugin.description": 1,
-      "plugin.url": 1,
-      "plugin.developed_by": 1,
-      "plugin.uses_repository": 1,
-      "github": 1,
-      "plugin.depends_on": 1,
-      "#plugin.depends_on": 1,
-      "SHEBANG#!macruby": 1,
-      "object": 2,
-      "@user": 1,
-      "person": 1,
-      "attributes": 2,
-      "username": 1,
-      "email": 1,
-      "location": 1,
-      "created_at": 1,
-      "registered_at": 1,
-      "node": 2,
-      "role": 1,
-      "user": 1,
-      "user.is_admin": 1,
-      "child": 1,
-      "phone_numbers": 1,
-      "pnumbers": 1,
-      "extends": 1,
-      "node_numbers": 1,
-      "u": 1,
-      "partial": 1,
-      "u.phone_numbers": 1,
-      "Resque": 3,
-      "Helpers": 1,
-      "redis": 7,
-      "server": 11,
-      "/redis": 1,
-      "Redis.connect": 2,
-      "thread_safe": 2,
-      "namespace": 3,
-      "server.split": 2,
-      "host": 3,
-      "port": 4,
-      "db": 3,
-      "Redis.new": 1,
-      "resque": 2,
-      "@redis": 6,
-      "Redis": 3,
-      "Namespace.new": 2,
-      "Namespace": 1,
-      "@queues": 2,
-      "Hash.new": 1,
-      "h": 2,
-      "Queue.new": 1,
-      "coder": 3,
-      "@coder": 1,
-      "MultiJsonCoder.new": 1,
-      "attr_writer": 4,
-      "self.redis": 2,
-      "Redis.respond_to": 1,
-      "connect": 1,
-      "redis_id": 2,
-      "redis.respond_to": 2,
-      "redis.server": 1,
-      "nodes": 1,
-      "distributed": 1,
-      "redis.nodes.map": 1,
-      "n.id": 1,
-      ".join": 1,
-      "redis.client.id": 1,
-      "before_first_fork": 2,
-      "@before_first_fork": 2,
-      "before_fork": 2,
-      "@before_fork": 2,
-      "after_fork": 2,
-      "@after_fork": 2,
-      "to_s": 1,
-      "attr_accessor": 2,
-      "inline": 3,
-      "alias": 1,
-      "push": 1,
-      "queue": 24,
-      "item": 4,
-      "pop": 1,
-      ".pop": 1,
-      "ThreadError": 1,
-      "size": 3,
-      ".size": 1,
-      "peek": 1,
-      "start": 7,
-      "count": 5,
-      ".slice": 1,
-      "list_range": 1,
-      "decode": 2,
-      "redis.lindex": 1,
-      "Array": 2,
-      "redis.lrange": 1,
-      "queues": 3,
-      "redis.smembers": 1,
-      "remove_queue": 1,
-      ".destroy": 1,
-      "@queues.delete": 1,
-      "queue.to_s": 1,
-      "enqueue": 1,
-      "enqueue_to": 2,
-      "queue_from_class": 4,
-      "before_hooks": 2,
-      "Plugin.before_enqueue_hooks": 1,
-      ".collect": 2,
-      "hook": 9,
-      "klass.send": 4,
-      "before_hooks.any": 2,
-      "Job.create": 1,
-      "Plugin.after_enqueue_hooks": 1,
-      "dequeue": 1,
-      "Plugin.before_dequeue_hooks": 1,
-      "Job.destroy": 1,
-      "Plugin.after_dequeue_hooks": 1,
-      "klass.instance_variable_get": 1,
-      "@queue": 1,
-      "klass.respond_to": 1,
-      "klass.queue": 1,
-      "reserve": 1,
-      "Job.reserve": 1,
-      "validate": 1,
-      "NoQueueError.new": 1,
-      "klass.to_s.empty": 1,
-      "NoClassError.new": 1,
-      "workers": 2,
-      "Worker.all": 1,
-      "working": 2,
-      "Worker.working": 1,
-      "remove_worker": 1,
-      "worker_id": 2,
-      "worker": 1,
-      "Worker.find": 1,
-      "worker.unregister_worker": 1,
-      "pending": 1,
-      "queues.inject": 1,
-      "m": 3,
-      "k": 2,
-      "processed": 2,
-      "Stat": 2,
-      "queues.size": 1,
-      "workers.size.to_i": 1,
-      "working.size": 1,
-      "servers": 1,
-      "environment": 2,
-      "keys": 6,
-      "redis.keys": 1,
-      "key.sub": 1,
-      "SHEBANG#!ruby": 2,
-      "SHEBANG#!rake": 1,
-      "Sinatra": 2,
-      "Request": 2,
-      "<": 2,
-      "Rack": 1,
-      "accept": 1,
-      "@env": 2,
-      "entries": 1,
-      ".to_s.split": 1,
-      "entries.map": 1,
-      "accept_entry": 1,
-      ".sort_by": 1,
-      "first": 1,
-      "preferred_type": 1,
-      "self.defer": 1,
-      "pattern": 1,
-      "path.respond_to": 5,
-      "path.keys": 1,
-      "path.names": 1,
-      "TypeError": 1,
-      "URI": 3,
-      "URI.const_defined": 1,
-      "Parser": 1,
-      "Parser.new": 1,
-      "encoded": 1,
-      "char": 4,
-      "enc": 5,
-      "URI.escape": 1,
-      "helpers": 3,
-      "data": 1,
-      "reset": 1,
-      "set": 36,
-      "development": 6,
-      ".to_sym": 1,
-      "raise_errors": 1,
-      "Proc.new": 11,
-      "test": 5,
-      "dump_errors": 1,
-      "show_exceptions": 1,
-      "sessions": 1,
-      "logging": 2,
-      "protection": 1,
-      "method_override": 4,
-      "use_code": 1,
-      "default_encoding": 1,
-      "add_charset": 1,
-      "javascript": 1,
-      "xml": 2,
-      "xhtml": 1,
-      "json": 1,
-      "settings.add_charset": 1,
-      "text": 3,
-      "session_secret": 3,
-      "SecureRandom.hex": 1,
-      "NotImplementedError": 1,
-      "Kernel.rand": 1,
-      "**256": 1,
-      "alias_method": 2,
-      "methodoverride": 2,
-      "run": 2,
-      "via": 1,
-      "at": 1,
-      "running": 2,
-      "built": 1,
-      "now": 1,
-      "http": 1,
-      "webrick": 1,
-      "bind": 1,
-      "ruby_engine": 6,
-      "defined": 1,
-      "RUBY_ENGINE": 2,
-      "server.unshift": 6,
-      "ruby_engine.nil": 1,
-      "absolute_redirects": 1,
-      "prefixed_redirects": 1,
-      "empty_path_info": 1,
-      "app_file": 4,
-      "root": 5,
-      "File.expand_path": 1,
-      "views": 1,
-      "reload_templates": 1,
-      "lock": 1,
-      "threaded": 1,
-      "public_folder": 3,
-      "static": 1,
-      "File.exist": 1,
-      "static_cache_control": 1,
-      "error": 3,
-      "Exception": 1,
-      "response.status": 1,
-      "content_type": 3,
-      "configure": 2,
-      "get": 2,
-      "filename": 2,
-      "png": 1,
-      "send_file": 1,
-      "NotFound": 1,
-      "HTML": 2,
-      "": 1,
-      "html": 1,
-      "": 1,
-      "": 1,
-      "": 1,
-      "": 1,
-      "": 1,
-      "

": 1, - "doesn": 1, - "rsquo": 1, - "know": 1, - "this": 2, - "ditty.": 1, - "

": 1, - "": 1, - "src=": 1, - "
": 1, - "id=": 1, - "Try": 1, - "
": 1,
-      "request.request_method.downcase": 1,
-      "nend": 1,
-      "
": 1, - "
": 1, - "": 1, - "": 1, - "Application": 2, - "Base": 2, - "super": 3, - "self.register": 2, - "extensions": 6, - "added_methods": 2, - "extensions.map": 1, - "m.public_instance_methods": 1, - ".flatten": 1, - "Delegator.delegate": 1, - "Delegator": 1, - "self.delegate": 1, - "methods": 1, - "methods.each": 1, - "method_name": 5, - "define_method": 1, - "respond_to": 1, - "Delegator.target.send": 1, - "delegate": 1, - "put": 1, - "post": 1, - "delete": 1, - "template": 1, - "layout": 1, - "before": 1, - "after": 1, - "not_found": 1, - "mime_type": 1, - "enable": 1, - "disable": 1, - "use": 1, - "production": 1, - "settings": 2, - "target": 1, - "self.target": 1, - "Wrapper": 1, - "stack": 2, - "instance": 2, - "@stack": 1, - "@instance": 2, - "@instance.settings": 1, - "call": 1, - "env": 2, - "@stack.call": 1, - "self.new": 1, - "base": 4, - "base.class_eval": 1, - "Delegator.target.register": 1, - "self.helpers": 1, - "Delegator.target.helpers": 1, - "self.use": 1, - "Delegator.target.use": 1, - "SHEBANG#!python": 1 - }, - "Rust": { - "//": 20, - "use": 10, - "cell": 1, - "Cell": 2, - ";": 218, - "cmp": 1, - "Eq": 2, - "option": 4, - "result": 18, - "Result": 3, - "comm": 5, - "{": 213, - "stream": 21, - "Chan": 4, - "GenericChan": 1, - "GenericPort": 1, - "Port": 3, - "SharedChan": 4, - "}": 210, - "prelude": 1, - "*": 1, - "task": 39, - "rt": 29, - "task_id": 2, - "sched_id": 2, - "rust_task": 1, - "util": 4, - "replace": 8, - "mod": 5, - "local_data_priv": 1, - "pub": 26, - "local_data": 1, - "spawn": 15, - "///": 13, - "A": 6, - "handle": 3, - "to": 6, - "a": 9, - "scheduler": 6, - "#": 61, - "[": 61, - "deriving_eq": 3, - "]": 61, - "enum": 4, - "Scheduler": 4, - "SchedulerHandle": 2, - "(": 429, - ")": 434, - "Task": 2, - "TaskHandle": 2, - "TaskResult": 4, - "Success": 6, - "Failure": 6, - "impl": 3, - "for": 10, - "pure": 2, - "fn": 89, - "eq": 1, - "&": 30, - "self": 15, - "other": 4, - "-": 33, - "bool": 6, - "match": 4, - "|": 20, - "true": 9, - "_": 4, - "false": 7, - "ne": 1, - ".eq": 1, - "modes": 1, - "SchedMode": 4, - "Run": 3, - "on": 5, - "the": 10, - "default": 1, - "DefaultScheduler": 2, - "current": 1, - "CurrentScheduler": 2, - "specific": 1, - "ExistingScheduler": 1, - "PlatformThread": 2, - "All": 1, - "tasks": 1, - "run": 1, - "in": 3, - "same": 1, - "OS": 3, - "thread": 2, - "SingleThreaded": 4, - "Tasks": 2, - "are": 2, - "distributed": 2, - "among": 2, - "available": 1, - "CPUs": 1, - "ThreadPerCore": 2, - "Each": 1, - "runs": 1, - "its": 1, - "own": 1, - "ThreadPerTask": 1, - "fixed": 1, - "number": 1, - "of": 3, - "threads": 1, - "ManualThreads": 3, - "uint": 7, - "struct": 7, - "SchedOpts": 4, - "mode": 9, - "foreign_stack_size": 3, - "Option": 4, - "": 2, - "TaskOpts": 12, - "linked": 15, - "supervised": 11, - "mut": 16, - "notify_chan": 24, - "<": 3, - "": 3, - "sched": 10, - "TaskBuilder": 21, - "opts": 21, - "gen_body": 4, - "@fn": 2, - "v": 6, - "can_not_copy": 11, - "": 1, - "consumed": 4, - "default_task_opts": 4, - "body": 6, - "Identity": 1, - "function": 1, - "None": 23, - "doc": 1, - "hidden": 1, - "FIXME": 1, - "#3538": 1, - "priv": 1, - "consume": 1, - "if": 7, - "self.consumed": 2, - "fail": 17, - "Fake": 1, - "move": 1, - "let": 84, - "self.opts.notify_chan": 7, - "self.opts.linked": 4, - "self.opts.supervised": 5, - "self.opts.sched": 6, - "self.gen_body": 2, - "unlinked": 1, - "..": 8, - "self.consume": 7, - "future_result": 1, - "blk": 2, - "self.opts.notify_chan.is_some": 1, - "notify_pipe_po": 2, - "notify_pipe_ch": 2, - "Some": 8, - "Configure": 1, - "custom": 1, - "task.": 1, - "sched_mode": 1, - "add_wrapper": 1, - "wrapper": 2, - "prev_gen_body": 2, - "f": 38, - "x": 7, - "x.opts.linked": 1, - "x.opts.supervised": 1, - "x.opts.sched": 1, - "spawn_raw": 1, - "x.gen_body": 1, - "Runs": 1, - "while": 2, - "transfering": 1, - "ownership": 1, - "one": 1, - "argument": 1, - "child.": 1, - "spawn_with": 2, - "": 2, - "arg": 5, - "do": 49, - "self.spawn": 1, - "arg.take": 1, - "try": 5, - "": 2, - "T": 2, - "": 2, - "po": 11, - "ch": 26, - "": 1, - "fr_task_builder": 1, - "self.future_result": 1, - "+": 4, - "r": 6, - "fr_task_builder.spawn": 1, - "||": 11, - "ch.send": 11, - "unwrap": 3, - ".recv": 3, - "Ok": 3, - "po.recv": 10, - "Err": 2, - ".spawn": 9, - "spawn_unlinked": 6, - ".unlinked": 3, - "spawn_supervised": 5, - ".supervised": 2, - ".spawn_with": 1, - "spawn_sched": 8, - ".sched_mode": 2, - ".try": 1, - "yield": 16, - "Yield": 1, - "control": 1, - "unsafe": 31, - "task_": 2, - "rust_get_task": 5, - "killed": 3, - "rust_task_yield": 1, - "&&": 1, - "failing": 2, - "True": 1, - "running": 2, - "has": 1, - "failed": 1, - "rust_task_is_unwinding": 1, - "get_task": 1, - "Get": 1, - "get_task_id": 1, - "get_scheduler": 1, - "rust_get_sched_id": 6, - "unkillable": 5, - "": 3, - "U": 6, - "AllowFailure": 5, - "t": 24, - "*rust_task": 6, - "drop": 3, - "rust_task_allow_kill": 3, - "self.t": 4, - "_allow_failure": 2, - "rust_task_inhibit_kill": 3, - "The": 1, - "inverse": 1, - "unkillable.": 1, - "Only": 1, - "ever": 1, - "be": 2, - "used": 1, - "nested": 1, - ".": 1, - "rekillable": 1, - "DisallowFailure": 5, - "atomically": 3, - "DeferInterrupts": 5, - "rust_task_allow_yield": 1, - "_interrupts": 1, - "rust_task_inhibit_yield": 1, - "test": 31, - "should_fail": 11, - "ignore": 16, - "cfg": 16, - "windows": 14, - "test_cant_dup_task_builder": 1, - "b": 2, - "b.spawn": 2, - "should": 2, - "have": 1, - "been": 1, - "by": 1, - "previous": 1, - "call": 1, - "test_spawn_unlinked_unsup_no_fail_down": 1, - "grandchild": 1, - "sends": 1, - "port": 3, - "ch.clone": 2, - "iter": 8, - "repeat": 8, - "If": 1, - "first": 1, - "grandparent": 1, - "hangs.": 1, - "Shouldn": 1, - "leave": 1, - "child": 3, - "hanging": 1, - "around.": 1, - "test_spawn_linked_sup_fail_up": 1, - "fails": 4, - "parent": 2, - "_ch": 1, - "<()>": 6, - "opts.linked": 2, - "opts.supervised": 2, - "b0": 5, - "b1": 3, - "b1.spawn": 3, - "We": 1, - "get": 1, - "punted": 1, - "awake": 1, - "test_spawn_linked_sup_fail_down": 1, - "loop": 5, - "*both*": 1, - "mechanisms": 1, - "would": 1, - "wrong": 1, - "this": 1, - "didn": 1, - "s": 1, - "failure": 1, - "propagate": 1, - "across": 1, - "gap": 1, - "test_spawn_failure_propagate_secondborn": 1, - "test_spawn_failure_propagate_nephew_or_niece": 1, - "test_spawn_linked_sup_propagate_sibling": 1, - "test_run_basic": 1, - "Wrapper": 5, - "test_add_wrapper": 1, - "b0.add_wrapper": 1, - "ch.f.swap_unwrap": 4, - "test_future_result": 1, - ".future_result": 4, - "assert": 10, - "test_back_to_the_future_result": 1, - "test_try_success": 1, - "test_try_fail": 1, - "test_spawn_sched_no_threads": 1, - "u": 2, - "test_spawn_sched": 1, - "i": 3, - "int": 5, - "parent_sched_id": 4, - "child_sched_id": 5, - "else": 1, - "test_spawn_sched_childs_on_default_sched": 1, - "default_id": 2, - "nolink": 1, - "extern": 1, - "testrt": 9, - "rust_dbg_lock_create": 2, - "*libc": 6, - "c_void": 6, - "rust_dbg_lock_destroy": 2, - "lock": 13, - "rust_dbg_lock_lock": 3, - "rust_dbg_lock_unlock": 3, - "rust_dbg_lock_wait": 2, - "rust_dbg_lock_signal": 2, - "test_spawn_sched_blocking": 1, - "start_po": 1, - "start_ch": 1, - "fin_po": 1, - "fin_ch": 1, - "start_ch.send": 1, - "fin_ch.send": 1, - "start_po.recv": 1, - "pingpong": 3, - "": 2, - "val": 4, - "setup_po": 1, - "setup_ch": 1, - "parent_po": 2, - "parent_ch": 2, - "child_po": 2, - "child_ch": 4, - "setup_ch.send": 1, - "setup_po.recv": 1, - "child_ch.send": 1, - "fin_po.recv": 1, - "avoid_copying_the_body": 5, - "spawnfn": 2, - "p": 3, - "x_in_parent": 2, - "ptr": 2, - "addr_of": 2, - "as": 7, - "x_in_child": 4, - "p.recv": 1, - "test_avoid_copying_the_body_spawn": 1, - "test_avoid_copying_the_body_task_spawn": 1, - "test_avoid_copying_the_body_try": 1, - "test_avoid_copying_the_body_unlinked": 1, - "test_platform_thread": 1, - "test_unkillable": 1, - "pp": 2, - "*uint": 1, - "cast": 2, - "transmute": 2, - "_p": 1, - "test_unkillable_nested": 1, - "Here": 1, - "test_atomically_nested": 1, - "test_child_doesnt_ref_parent": 1, - "const": 1, - "generations": 2, - "child_no": 3, - "return": 1, - "test_sched_thread_per_core": 1, - "chan": 2, - "cores": 2, - "rust_num_threads": 1, - "reported_threads": 2, - "rust_sched_threads": 2, - "chan.send": 2, - "port.recv": 2, - "test_spawn_thread_on_demand": 1, - "max_threads": 2, - "running_threads": 2, - "rust_sched_current_nonlazy_threads": 2, - "port2": 1, - "chan2": 1, - "chan2.send": 1, - "running_threads2": 2, - "port2.recv": 1 - }, - "Sass": { - "blue": 7, - "#3bbfce": 2, - ";": 6, - "margin": 8, - "px": 3, - ".content_navigation": 1, - "{": 2, - "color": 4, - "}": 2, - ".border": 2, - "padding": 2, - "/": 4, - "border": 3, - "solid": 1, - ".content": 1, - "-": 3, - "navigation": 1, - "darken": 1, - "(": 1, - "%": 1, - ")": 1 - }, - "Scala": { - "SHEBANG#!sh": 2, - "exec": 2, - "scala": 2, - "#": 2, - "object": 2, - "Beers": 1, - "extends": 1, - "Application": 1, - "{": 10, - "def": 7, - "bottles": 3, - "(": 34, - "qty": 12, - "Int": 3, - "f": 4, - "String": 5, - ")": 34, - "//": 4, - "higher": 1, - "-": 4, - "order": 1, - "functions": 2, - "match": 2, - "case": 5, - "+": 29, - "x": 3, - "}": 11, - "beers": 3, - "sing": 3, - "implicit": 3, - "song": 3, - "takeOne": 2, - "nextQty": 2, - "nested": 1, - "if": 2, - "else": 2, - "refrain": 2, - ".capitalize": 1, - "tail": 1, - "recursion": 1, - "val": 2, - "headOfSong": 1, - "println": 2, - "parameter": 1, - "name": 4, - "version": 1, - "organization": 1, - "libraryDependencies": 3, - "%": 12, - "Seq": 3, - "libosmVersion": 4, - "from": 1, - "maxErrors": 1, - "pollInterval": 1, - "javacOptions": 1, - "scalacOptions": 1, - "scalaVersion": 1, - "initialCommands": 2, - "in": 12, - "console": 1, - "mainClass": 2, - "Compile": 4, - "packageBin": 1, - "Some": 6, - "run": 1, - "watchSources": 1, - "<+=>": 1, - "baseDirectory": 1, - "map": 1, - "_": 1, - "input": 1, - "add": 2, - "a": 2, - "maven": 2, - "style": 2, - "repository": 2, - "resolvers": 2, - "at": 4, - "url": 3, - "sequence": 1, - "of": 1, - "repositories": 1, - "define": 1, - "the": 4, - "to": 4, - "publish": 1, - "publishTo": 1, - "set": 2, - "Ivy": 1, - "logging": 1, - "be": 1, - "highest": 1, - "level": 1, - "ivyLoggingLevel": 1, - "UpdateLogging": 1, - "Full": 1, - "disable": 1, - "updating": 1, - "dynamic": 1, - "revisions": 1, - "including": 1, - "SNAPSHOT": 1, - "versions": 1, - "offline": 1, - "true": 5, - "prompt": 1, - "for": 1, - "this": 1, - "build": 1, - "include": 1, - "project": 1, - "id": 1, - "shellPrompt": 2, - "ThisBuild": 1, - "state": 3, - "Project.extract": 1, - ".currentRef.project": 1, - "System.getProperty": 1, - "showTiming": 1, - "false": 7, - "showSuccess": 1, - "timingFormat": 1, - "import": 1, - "java.text.DateFormat": 1, - "DateFormat.getDateTimeInstance": 1, - "DateFormat.SHORT": 2, - "crossPaths": 1, - "fork": 2, - "Test": 3, - "javaOptions": 1, - "parallelExecution": 2, - "javaHome": 1, - "file": 3, - "scalaHome": 1, - "aggregate": 1, - "clean": 1, - "logLevel": 2, - "compile": 1, - "Level.Warn": 2, - "persistLogLevel": 1, - "Level.Debug": 1, - "traceLevel": 2, - "unmanagedJars": 1, - "publishArtifact": 2, - "packageDoc": 2, - "artifactClassifier": 1, - "retrieveManaged": 1, - "credentials": 2, - "Credentials": 2, - "Path.userHome": 1, - "/": 2, - "HelloWorld": 1, - "main": 1, - "args": 1, - "Array": 1, - "[": 1, - "]": 1 - }, - "Scheme": { - "(": 359, - "import": 1, - "rnrs": 1, - ")": 373, - "only": 1, - "surfage": 4, - "s1": 1, - "lists": 1, - "filter": 4, - "-": 188, - "map": 4, - "gl": 12, - "glut": 2, - "dharmalab": 2, - "records": 1, - "define": 27, - "record": 5, - "type": 5, - "math": 1, - "basic": 1, - "agave": 4, - "glu": 1, - "compat": 1, - "geometry": 1, - "pt": 49, - "glamour": 2, - "window": 2, - "misc": 1, - "s19": 1, - "time": 24, - "s27": 1, - "random": 27, - "bits": 1, - "s42": 1, - "eager": 1, - "comprehensions": 1, - ";": 1684, - "utilities": 1, - "say": 9, - ".": 1, - "args": 2, - "for": 7, - "each": 7, - "display": 4, - "newline": 2, - "translate": 6, - "p": 6, - "glTranslated": 1, - "x": 8, - "y": 3, - "radians": 8, - "/": 7, - "pi": 2, - "degrees": 2, - "angle": 6, - "a": 19, - "cos": 1, - "sin": 1, - "current": 15, - "in": 14, - "nanoseconds": 2, - "let": 2, - "val": 3, - "+": 28, - "second": 1, - "nanosecond": 1, - "seconds": 12, - "micro": 1, - "milli": 1, - "base": 2, - "step": 1, - "score": 5, - "level": 5, - "ships": 1, - "spaceship": 5, - "fields": 4, - "mutable": 14, - "pos": 16, - "vel": 4, - "theta": 1, - "force": 1, - "particle": 8, - "birth": 2, - "lifetime": 1, - "color": 2, - "particles": 11, - "asteroid": 14, - "radius": 6, - "number": 3, - "of": 3, - "starting": 3, - "asteroids": 15, - "#f": 5, - "bullet": 16, - "pack": 12, - "is": 8, - "initialize": 1, - "size": 1, - "title": 1, - "reshape": 1, - "width": 8, - "height": 8, - "source": 2, - "randomize": 1, - "default": 1, - "wrap": 4, - "mod": 2, - "ship": 8, - "make": 11, - "ammo": 9, - "set": 19, - "list": 6, - "ec": 6, - "i": 6, - "inexact": 16, - "integer": 25, - "buffered": 1, - "procedure": 1, - "lambda": 12, - "background": 1, - "glColor3f": 5, - "matrix": 5, - "excursion": 5, - "ship.pos": 5, - "glRotated": 2, - "ship.theta": 10, - "glutWireCone": 1, - "par": 6, - "c": 4, - "vector": 6, - "ref": 3, - "glutWireSphere": 3, - "bullets": 7, - "pack.pos": 3, - "glutWireCube": 1, - "last": 3, - "dt": 7, - "update": 2, - "system": 2, - "pt*n": 8, - "ship.vel": 5, - "pack.vel": 1, - "cond": 2, - "par.birth": 1, - "par.lifetime": 1, - "else": 2, - "par.pos": 2, - "par.vel": 1, - "bullet.birth": 1, - "bullet.pos": 2, - "bullet.vel": 1, - "a.pos": 2, - "a.vel": 1, - "if": 1, - "<": 1, - "a.radius": 1, - "contact": 2, - "b": 4, - "when": 5, - "<=>": 3, - "distance": 3, - "begin": 1, - "1": 2, - "f": 1, - "append": 4, - "4": 1, - "50": 4, - "0": 7, - "100": 6, - "2": 1, - "n": 2, - "null": 1, - "10": 1, - "5": 1, - "glutIdleFunc": 1, - "glutPostRedisplay": 1, - "glutKeyboardFunc": 1, - "key": 2, - "case": 1, - "char": 1, - "#": 6, - "w": 1, - "d": 1, - "s": 1, - "space": 1, - "cons": 1, - "glutMainLoop": 1 - }, - "Scilab": { - "function": 1, - "[": 1, - "a": 4, - "b": 4, - "]": 1, - "myfunction": 1, - "(": 7, - "d": 2, - "e": 4, - "f": 2, - ")": 7, - "+": 5, - "%": 4, - "pi": 3, - ";": 7, - "cos": 1, - "cosh": 1, - "if": 1, - "then": 1, - "-": 2, - "e.field": 1, - "else": 1, - "home": 1, - "return": 1, "end": 1, - "myvar": 1, - "endfunction": 1, - "disp": 1, - "assert_checkequal": 1, - "assert_checkfalse": 1 + "SHEBANG#!parrot": 1 }, - "SCSS": { - "blue": 4, - "#3bbfce": 1, - ";": 7, - "margin": 4, - "px": 1, - ".content": 1, - "-": 3, - "navigation": 1, - "{": 2, - "border": 2, - "color": 3, - "darken": 1, - "(": 1, - "%": 1, - ")": 1, - "}": 2, - ".border": 1, - "padding": 1, - "/": 2 - }, - "Shell": { - "SHEBANG#!bash": 8, - "typeset": 5, - "-": 391, - "i": 2, - "n": 22, - "bottles": 6, - "no": 16, - "while": 3, - "[": 85, - "]": 85, - "do": 8, - "echo": 71, - "case": 9, - "{": 63, - "}": 61, - "in": 25, - ")": 154, - "%": 5, - "s": 14, - ";": 138, - "esac": 7, - "done": 8, - "exit": 10, - "/usr/bin/clear": 2, - "##": 28, - "if": 39, - "z": 12, - "then": 41, - "export": 25, - "SCREENDIR": 2, - "fi": 34, - "PATH": 14, - "/usr/local/bin": 6, - "/usr/local/sbin": 6, - "/usr/xpg4/bin": 4, - "/usr/sbin": 6, - "/usr/bin": 8, - "/usr/sfw/bin": 4, - "/usr/ccs/bin": 4, - "/usr/openwin/bin": 4, - "/opt/mysql/current/bin": 4, - "MANPATH": 2, - "/usr/local/man": 2, - "/usr/share/man": 2, - "Random": 2, - "ENV...": 2, - "TERM": 4, - "COLORTERM": 2, - "CLICOLOR": 2, - "#": 53, - "can": 3, - "be": 3, - "set": 21, - "to": 33, - "anything": 2, - "actually": 2, - "DISPLAY": 2, - "r": 17, - "&&": 65, - ".": 5, - "function": 6, - "ls": 6, - "command": 5, - "Fh": 2, - "l": 8, - "list": 3, - "long": 2, - "format...": 2, - "ll": 2, - "|": 17, - "less": 2, - "XF": 2, - "pipe": 2, - "into": 3, - "#CDPATH": 2, - "HISTIGNORE": 2, - "HISTCONTROL": 2, - "ignoreboth": 2, - "shopt": 13, - "cdspell": 2, - "extglob": 2, - "progcomp": 2, - "complete": 82, - "f": 68, - "X": 54, - "bunzip2": 2, - "bzcat": 2, - "bzcmp": 2, - "bzdiff": 2, - "bzegrep": 2, - "bzfgrep": 2, - "bzgrep": 2, - "unzip": 2, - "zipinfo": 2, - "compress": 2, - "znew": 2, - "gunzip": 2, - "zcmp": 2, - "zdiff": 2, - "zcat": 2, - "zegrep": 2, - "zfgrep": 2, - "zgrep": 2, - "zless": 2, - "zmore": 2, - "uncompress": 2, - "ee": 2, - "display": 2, - "xv": 2, - "qiv": 2, - "gv": 2, - "ggv": 2, - "xdvi": 2, - "dvips": 2, - "dviselect": 2, - "dvitype": 2, - "acroread": 2, - "xpdf": 2, - "makeinfo": 2, - "texi2html": 2, - "tex": 2, - "latex": 2, - "slitex": 2, - "jadetex": 2, - "pdfjadetex": 2, - "pdftex": 2, - "pdflatex": 2, - "texi2dvi": 2, - "mpg123": 2, - "mpg321": 2, - "xine": 2, - "aviplay": 2, - "realplay": 2, - "xanim": 2, - "ogg123": 2, - "gqmpeg": 2, - "freeamp": 2, - "xmms": 2, - "xfig": 2, - "timidity": 2, - "playmidi": 2, - "vi": 2, - "vim": 2, - "gvim": 2, - "rvim": 2, - "view": 2, - "rview": 2, - "rgvim": 2, - "rgview": 2, - "gview": 2, - "emacs": 2, - "wine": 2, - "bzme": 2, - "netscape": 2, - "mozilla": 2, - "lynx": 2, - "opera": 2, - "w3m": 2, - "galeon": 2, - "curl": 8, - "dillo": 2, - "elinks": 2, - "links": 2, - "u": 2, - "su": 2, - "passwd": 2, - "groups": 2, - "user": 2, - "commands": 8, - "see": 4, - "only": 6, - "users": 2, - "A": 10, - "stopped": 4, - "P": 4, - "bg": 4, - "completes": 10, - "with": 12, - "jobs": 4, - "j": 2, - "fg": 2, - "disown": 2, - "other": 2, - "job": 3, - "v": 11, - "readonly": 4, - "unset": 10, - "and": 5, - "shell": 4, - "variables": 2, - "setopt": 8, - "options": 8, - "helptopic": 2, - "help": 5, - "helptopics": 2, - "a": 12, - "unalias": 4, - "aliases": 2, - "binding": 2, - "bind": 4, - "readline": 2, - "bindings": 2, - "(": 107, - "make": 6, - "this": 6, - "more": 3, - "intelligent": 2, - "c": 2, - "type": 5, - "which": 10, - "man": 6, - "#sudo": 2, - "on": 4, - "d": 9, - "pushd": 2, - "cd": 11, - "rmdir": 2, - "Make": 2, - "directory": 5, - "directories": 2, - "W": 2, - "alias": 42, - "filenames": 2, - "for": 7, - "PS1": 2, - "..": 2, - "cd..": 2, - "t": 3, - "csh": 2, - "is": 11, - "same": 2, - "as": 2, - "bash...": 2, - "quit": 2, - "q": 8, - "even": 3, - "shorter": 2, - "D": 2, - "rehash": 2, - "source": 7, - "/.bashrc": 3, - "after": 2, - "I": 2, - "edit": 2, - "it": 2, - "pg": 2, - "patch": 2, - "sed": 2, - "awk": 2, - "diff": 2, - "grep": 8, - "find": 2, - "ps": 2, - "whoami": 2, - "ping": 2, - "histappend": 2, - "PROMPT_COMMAND": 2, - "umask": 2, - "path": 13, - "/opt/local/bin": 2, - "/opt/local/sbin": 2, - "/bin": 4, - "prompt": 2, - "history": 18, - "endif": 2, - "stty": 2, - "istrip": 2, - "dirpersiststore": 2, - "##############################################################################": 16, - "#Import": 2, - "the": 17, - "agnostic": 2, - "Bash": 3, - "or": 3, - "Zsh": 2, - "environment": 2, - "config": 4, - "/.profile": 2, - "HISTSIZE": 2, - "#How": 2, - "many": 2, - "lines": 2, - "of": 6, - "keep": 3, - "memory": 3, - "HISTFILE": 2, - "/.zsh_history": 2, - "#Where": 2, - "save": 4, - "disk": 5, - "SAVEHIST": 2, - "#Number": 2, - "entries": 2, - "HISTDUP": 2, - "erase": 2, - "#Erase": 2, - "duplicates": 2, - "file": 9, - "appendhistory": 2, - "#Append": 2, - "overwriting": 2, - "sharehistory": 2, - "#Share": 2, - "across": 2, - "terminals": 2, - "incappendhistory": 2, - "#Immediately": 2, - "append": 2, - "not": 2, - "just": 2, - "when": 2, - "term": 2, - "killed": 2, - "#.": 2, - "/.dotfiles/z": 4, - "zsh/z.sh": 2, - "#function": 2, - "precmd": 2, - "rupa/z.sh": 2, - "fpath": 6, - "HOME/.zsh/func": 2, - "U": 2, - "docker": 1, - "version": 12, - "from": 1, - "ubuntu": 1, - "maintainer": 1, - "Solomon": 1, - "Hykes": 1, - "": 1, - "run": 13, - "apt": 6, - "get": 6, - "install": 8, - "y": 5, - "git": 16, - "https": 2, - "//go.googlecode.com/files/go1.1.1.linux": 1, - "amd64.tar.gz": 1, - "tar": 1, - "C": 1, - "/usr/local": 1, - "xz": 1, - "env": 4, - "/usr/local/go/bin": 2, - "/sbin": 2, - "GOPATH": 1, - "/go": 1, - "CGO_ENABLED": 1, - "/tmp": 1, - "t.go": 1, - "go": 2, - "test": 1, - "PKG": 12, - "github.com/kr/pty": 1, - "REV": 6, - "c699": 1, - "clone": 5, - "http": 3, - "//": 3, - "/go/src/": 6, - "checkout": 3, - "github.com/gorilla/context/": 1, - "d61e5": 1, - "github.com/gorilla/mux/": 1, - "b36453141c": 1, - "iptables": 1, - "/etc/apt/sources.list": 1, - "update": 2, - "lxc": 1, - "aufs": 1, - "tools": 1, - "add": 1, - "/go/src/github.com/dotcloud/docker": 1, - "/go/src/github.com/dotcloud/docker/docker": 1, - "ldflags": 1, - "/go/bin": 1, - "cmd": 1, - "pkgname": 1, - "stud": 4, - "pkgver": 1, - "pkgrel": 1, - "pkgdesc": 1, - "arch": 1, - "i686": 1, - "x86_64": 1, - "url": 4, - "license": 1, - "depends": 1, - "libev": 1, - "openssl": 1, - "makedepends": 1, - "provides": 1, - "conflicts": 1, - "_gitroot": 1, - "//github.com/bumptech/stud.git": 1, - "_gitname": 1, - "build": 2, - "msg": 4, - "pull": 3, - "origin": 1, - "else": 10, - "rm": 2, - "rf": 1, - "package": 1, - "PREFIX": 1, - "/usr": 1, - "DESTDIR": 1, - "Dm755": 1, - "init.stud": 1, - "mkdir": 2, - "p": 2, - "script": 1, - "dotfile": 1, - "repository": 3, - "does": 1, - "lot": 1, - "fun": 2, - "stuff": 3, - "like": 1, - "turning": 1, - "normal": 1, - "dotfiles": 1, - "eg": 1, - ".bashrc": 1, - "symlinks": 1, - "away": 1, - "optionally": 1, - "moving": 1, - "old": 4, - "files": 1, - "so": 1, - "that": 1, - "they": 1, - "preserved": 1, - "setting": 2, - "up": 1, - "cron": 1, - "automate": 1, - "aforementioned": 1, - "maybe": 1, - "some": 1, - "nocasematch": 1, - "This": 1, - "makes": 1, - "pattern": 1, - "matching": 1, - "insensitive": 1, - "POSTFIX": 1, - "URL": 1, - "PUSHURL": 1, - "overwrite": 3, - "true": 2, - "print_help": 2, - "e": 4, - "opt": 3, - "@": 3, - "k": 1, - "local": 22, - "false": 2, - "h": 3, - ".*": 2, - "o": 3, - "continue": 1, - "mv": 1, - "ln": 1, - "remote.origin.url": 1, - "remote.origin.pushurl": 1, - "crontab": 1, - ".jobs.cron": 1, - "x": 1, - "system": 1, - "exec": 3, - "rbenv": 2, - "versions": 1, - "bare": 1, - "&": 5, - "prefix": 1, - "/dev/null": 6, - "rvm_ignore_rvmrc": 1, - "declare": 22, - "rvmrc": 3, - "rvm_rvmrc_files": 3, - "ef": 1, - "+": 1, - "GREP_OPTIONS": 1, - "printf": 4, - "rvm_path": 4, - "UID": 1, - "elif": 4, - "rvm_is_not_a_shell_function": 2, - "rvm_path/scripts": 1, - "rvm": 1, - "sbt_release_version": 2, - "sbt_snapshot_version": 2, - "SNAPSHOT": 3, - "sbt_jar": 3, - "sbt_dir": 2, - "sbt_create": 2, - "sbt_snapshot": 1, - "sbt_launch_dir": 3, - "scala_version": 3, - "java_home": 1, - "sbt_explicit_version": 7, - "verbose": 6, - "debug": 11, - "quiet": 6, - "build_props_sbt": 3, - "project/build.properties": 9, - "versionLine": 2, - "sbt.version": 3, - "versionString": 3, - "versionLine##sbt.version": 1, - "update_build_props_sbt": 2, - "ver": 5, - "return": 3, - "perl": 3, - "pi": 1, - "||": 12, - "Updated": 1, - "Previous": 1, - "value": 1, - "was": 1, - "sbt_version": 8, - "echoerr": 3, - "vlog": 1, - "dlog": 8, - "get_script_path": 2, - "L": 1, - "target": 1, - "readlink": 1, - "get_mem_opts": 3, - "mem": 4, - "perm": 6, - "/": 2, - "<": 2, - "codecache": 1, - "die": 2, - "make_url": 3, - "groupid": 1, - "category": 1, - "default_jvm_opts": 1, - "default_sbt_opts": 1, - "default_sbt_mem": 2, - "noshare_opts": 1, - "sbt_opts_file": 1, - "jvm_opts_file": 1, - "latest_28": 1, - "latest_29": 1, - "latest_210": 1, - "script_path": 1, - "script_dir": 1, - "script_name": 2, - "java_cmd": 2, - "java": 2, - "sbt_mem": 5, - "residual_args": 4, - "java_args": 3, - "scalac_args": 4, - "sbt_commands": 2, - "build_props_scala": 1, - "build.scala.versions": 1, - "versionLine##build.scala.versions": 1, - "execRunner": 2, - "arg": 3, - "sbt_groupid": 3, - "*": 11, - "org.scala": 4, - "tools.sbt": 3, - "sbt": 18, - "sbt_artifactory_list": 2, - "version0": 2, - "F": 1, - "pe": 1, - "make_release_url": 2, - "releases": 1, - "make_snapshot_url": 2, - "snapshots": 1, - "head": 1, - "jar_url": 1, - "jar_file": 1, - "download_url": 2, - "jar": 3, - "dirname": 1, - "fail": 1, - "silent": 1, - "output": 1, - "wget": 2, - "O": 1, - "acquire_sbt_jar": 1, - "sbt_url": 1, - "usage": 2, - "cat": 3, - "<<": 2, - "EOM": 3, - "Usage": 1, - "print": 1, - "message": 1, - "runner": 1, - "chattier": 1, - "log": 2, - "level": 2, - "Debug": 1, - "Error": 1, - "colors": 2, - "disable": 1, - "ANSI": 1, - "color": 1, - "codes": 1, - "create": 2, - "start": 1, - "current": 1, - "contains": 2, - "project": 1, - "dir": 3, - "": 3, - "global": 1, - "settings/plugins": 1, - "default": 4, - "/.sbt/": 1, - "": 1, - "boot": 3, - "shared": 1, - "/.sbt/boot": 1, - "series": 1, - "ivy": 2, - "Ivy": 1, - "/.ivy2": 1, - "": 1, - "share": 2, - "use": 1, - "all": 1, - "caches": 1, - "sharing": 1, - "offline": 3, - "put": 1, - "mode": 2, - "jvm": 2, - "": 1, - "Turn": 1, - "JVM": 1, - "debugging": 1, - "open": 1, - "at": 1, - "given": 2, - "port.": 1, - "batch": 2, - "Disable": 1, - "interactive": 1, - "The": 1, - "way": 1, - "accomplish": 1, - "pre": 1, - "there": 2, - "build.properties": 1, + "fish": { + "cmd": 2, + "/dev/null": 2, + "funcname": 14, + "If": 2, + "fish_function_path": 4, + "e": 6, + "set": 49, + "_": 3, + "normal": 2, + "wont": 1, + "XDG_CONFIG_HOME": 2, + "not": 8, + "/usr/local/sbin": 1, + "on": 2, + "status": 7, + "res": 2, + "eval.": 1, + "signal": 1, + "is": 3, + "no": 2, "an": 1, - "property": 1, - "disk.": 1, - "That": 1, - "scalacOptions": 3, - "S": 2, - "stripped": 1, - "In": 1, - "duplicated": 1, - "conflicting": 1, - "order": 1, - "above": 1, - "shows": 1, - "precedence": 1, - "JAVA_OPTS": 1, - "lowest": 1, - "line": 1, - "highest.": 1, - "addJava": 9, - "addSbt": 12, - "addScalac": 2, - "addResidual": 2, - "addResolver": 1, - "addDebugger": 2, - "get_jvm_opts": 2, - "process_args": 2, - "require_arg": 12, - "gt": 1, - "shift": 28, - "integer": 1, - "inc": 1, - "port": 1, - "snapshot": 1, - "launch": 1, - "scala": 3, - "home": 2, - "D*": 1, - "J*": 1, - "S*": 1, - "sbtargs": 3, - "IFS": 1, + ".": 2, + "functions": 5, + "S": 1, + "was": 1, + "switch": 3, + "__fish_sysconfdir/functions": 1, + "interactive": 8, + "(": 7, + "TRAP": 1, + "this": 1, + "%": 2, + "red": 2, + "help": 1, + "function": 6, + "code": 1, + "USER": 1, + "l": 15, + "fish_sigtrap_handler": 1, + "configdir/fish/functions": 1, + "EDITOR": 1, + "i": 5, + "f": 3, + "configdir": 2, + "editor": 7, + "c": 1, + "breakpoint": 1, + "do": 1, + "that": 1, + "work": 1, + "echo": 3, + "tmpname": 8, + "fish_indent": 2, + ";": 7, + "event": 1, + "contains": 4, + "PATH": 6, + "or": 3, + "root": 1, + "configdir/fish/completions": 1, + "]": 13, + "don": 1, + "real": 1, + "fish": 3, + "printf": 3, + "argv": 9, + "end": 33, + "/.config": 1, + "mode": 5, + "/sbin": 1, + "it": 1, + "|": 3, + "init": 5, + "__fish_print_help": 1, + "while": 2, + "type": 1, + "behave": 1, + "in": 2, + "be": 1, + "/bin": 1, + "TMPDIR": 2, + "s": 1, + ")": 7, + "/usr/sbin": 1, + "__fish_config_interactive": 1, + "fish_complete_path": 4, + "else": 3, + "p": 1, + "&": 1, + "we": 2, + "__fish_on_interactive": 2, + "eval": 5, + "like": 2, + "case": 9, + "#": 18, + "scope": 1, + "the": 1, + "__fish_sysconfdir/completions": 1, + "enable": 1, + "are": 1, + "g": 1, + "__fish_datadir/functions": 3, + "rm": 1, + "/tmp": 1, + "begin": 2, + "/usr/xpg4/bin": 3, + "d": 3, + "commands": 1, + "self": 2, + "<": 1, + "/usr/bin": 1, + "prompt": 2, + "full": 4, + "return": 6, + "/usr/local/bin": 1, + "__fish_bin_dir": 1, + "stat": 2, + "indent": 1, + "[": 13, + "nend": 2, + "set_color": 4, + "funced": 3, + "description": 2, + "test": 7, + "path_list": 4, "read": 1, - "<\"$sbt_opts_file\">": 1, - "process": 1, - "combined": 1, - "args": 2, - "reset": 1, - "residuals": 1, - "argumentCount=": 1, - "we": 1, - "were": 1, + "z": 1, + "editor_cmd": 2, + "less": 1, + "interactively": 1, + "shadowing": 1, + "expect": 1, + "control": 5, + "none": 1, + "-": 102, + "__fish_datadir/completions": 3, + "random": 2, + "t": 2, + "executed.": 1, + "for": 1, + "q": 9, + "IFS": 4, + "using": 1, + "fish_prompt": 1, + "shell": 1, + "if": 21, + "to": 1, + "/usr/X11R6/bin": 1, + "n": 5, + "since": 1, + "used": 1, + "should": 2, + "h": 1, + "job": 5 + }, + "Ioke": { + "println": 1, + "SHEBANG#!ioke": 1 + }, + "Emacs Lisp": { + "etc": 1, + "dribble": 1, + "copy": 2, + "car": 1, + "tb": 1, + "char": 6, + "License": 3, + "keep": 2, + ")": 144, + "http": 1, + "interaction": 1, + "arguments": 2, + "Public": 3, + "a": 4, + "subset": 2, + "versions": 1, + "STERM": 1, + "words": 1, + "skip": 1, + "If": 1, + "hooks": 1, + "implied": 1, + "proc": 3, + "PARTICULAR": 1, + "auto": 1, + "newline": 1, + "free": 1, + "of": 8, + "Keywords": 1, + "get": 3, + "window": 2, + "warranty": 1, + "published": 1, + "received": 1, + "x": 2, + "show": 1, + "workaround": 1, + "*": 1, + "prefix": 2, + "current": 2, + "Floor": 1, + "ANY": 1, + "your": 1, + "W": 1, + "forward": 1, + "logo": 1, + "even": 1, + "useful": 1, + "separate": 1, + "quote": 2, + "constant": 1, + "com": 1, + "or": 3, + "re": 2, + "should": 2, + "files": 1, + "ignored": 1, + "character": 1, + "A": 1, + "Copyright": 1, + "eldoc": 1, + "just": 1, + "editor": 2, + "to": 4, + "make": 4, + "w*": 1, + "Software": 2, + "calculate": 1, + "program": 6, + "sequence": 1, + "while": 1, + "n": 1, + "details.": 1, + "without": 1, + "lang": 1, + "list": 3, + "point": 6, + "+": 5, + "if": 4, + "###autoload": 2, "any": 1, - "opts": 1, - "eq": 1, - "0": 1, - "ThisBuild": 1, - "Update": 1, - "properties": 1, - "explicit": 1, - "gives": 1, - "us": 1, - "choice": 1, - "Detected": 1, - "Overriding": 1, - "alert": 1, - "them": 1, - "here": 1, - "argumentCount": 1, - "./build.sbt": 1, - "./project": 1, - "pwd": 1, - "doesn": 1, - "understand": 1, - "iflast": 1, - "#residual_args": 1, - "SHEBANG#!sh": 2, - "SHEBANG#!zsh": 2, - "name": 1, - "foodforthought.jpg": 1, - "name##*fo": 1 + "forloop": 1, + "part": 2, + "keyword": 2, + "page": 2, + "doc": 1, + "nth": 1, + "multi": 1, + "space": 1, + "notably": 1, + "end": 1, + "used": 1, + "You": 1, + "temporary": 1, + "project": 1, + "syntax": 7, + "dump": 2, + "M": 2, + "length": 1, + "funname.start": 1, + "This": 4, + "julia.": 2, + "defconst": 5, + "process": 5, + "Filename": 1, + "inside": 1, + "delimiter": 2, + "max": 1, + "you": 1, + "ESS": 5, + "MERCHANTABILITY": 1, + "screws": 1, + "//docs.julialang.org/en/latest/search/": 1, + "basic": 1, + ".*": 2, + "and": 3, + "C": 2, + "later": 1, + "Emacs.": 1, + "identity": 1, + "cons": 1, + "See": 1, + "object": 2, + "fill": 1, + "function": 7, + "-": 294, + "ess": 48, + "error": 6, + "defaults": 2, + "is": 5, + "directory": 2, + "classes": 1, + "post": 1, + "hook": 4, + "parse": 1, + "based": 1, + "require": 2, + "Maintainer": 1, + "mode": 12, + "face": 4, + "match": 1, + "nil": 12, + "FOR": 1, + "see": 2, + "inject": 1, + "debugging": 1, + "language": 1, + "Street": 1, + "release": 1, + "send": 3, + "COPYING.": 1, + "print": 1, + "Franklin": 1, + "functions": 2, + "String": 1, + "autoload": 1, + "vector": 1, + "*in": 1, + "Syntax": 3, + "Julia": 1, + "q": 1, + "it": 3, + "default": 1, + ".": 40, + "minibuffer": 1, + "available.": 1, + "format": 3, + "MA": 1, + "[": 3, + "Author": 1, + "not": 1, + "ignore": 2, + "by": 1, + "WITHOUT": 1, + "command": 5, + "alist": 9, + "for": 8, + "modify": 5, + "will": 1, + "entry": 4, + "distributed": 1, + "paragraph": 3, + "column": 1, + "lock": 6, + "Spinu.": 1, + "concat": 7, + "local": 6, + "complete": 1, + "include": 1, + "start": 13, + "indent": 8, + "font": 6, + "insert": 1, + "symbol": 2, + "fboundp": 1, + "when": 2, + "the": 10, + "PURPOSE.": 1, + "terms": 1, + "replace": 1, + "...": 1, + "funargs": 1, + "aggressive": 1, + "only": 1, + "Vitalie": 3, + "GNU": 4, + "Free": 2, + "propertize": 1, + "min": 1, + "pager": 2, + "interactive": 2, + ";": 333, + "with": 4, + "s": 5, + "have": 1, + "%": 1, + "Inc.": 1, + "can": 1, + "julia.el": 2, + "search": 1, + "..": 3, + "FITNESS": 1, + "but": 2, + "]": 3, + "and/or": 1, + "starting": 1, + "R": 2, + "optional": 3, + "use": 1, + "variable": 3, + "comments": 1, + "be": 2, + "goto": 2, + "run": 2, + "<": 1, + "Spinu": 2, + "General": 3, + "let*": 2, + "t": 6, + "file": 10, + "style": 2, + "add": 4, + "code": 1, + "final": 1, + "&": 3, + "this": 1, + "set": 3, + "group": 1, + "made": 1, + "Foundation": 2, + "defvar": 5, + "busy": 1, + "S": 2, + "funname": 5, + "settings": 1, + "Fifth": 1, + "load": 1, + "temp": 2, + "version": 2, + "software": 1, + "transpose": 1, + "on": 2, + "defun": 5, + "jl": 2, + "line": 5, + "write": 2, + "table": 9, + "arg": 1, + "dialect": 1, + "emacs": 1, + "Created": 1, + "comment": 6, + "case": 1, + "topics": 1, + "that": 2, + "julia": 39, + "sexp": 1, + "_": 1, + "completion": 4, + "version.": 1, + "read": 1, + "*NOT*": 1, + "null": 1, + "as": 1, + "along": 1, + "regexp": 6, + "from": 3, + "width": 1, + "customize": 5, + "WARRANTY": 1, + "Boston": 1, + "mode.el": 1, + "hope": 1, + "in": 3, + "help": 3, + "(": 156, + "egrep": 1, + "first": 1, + "let": 3, + "unquote": 1, + "regex": 5, + "setq": 2, + "name": 8, + "USA.": 1, + "Commentary": 1, + "inferior": 13, + "args": 10, + "buffer": 3, + "either": 1, + "redistribute": 1, + "more": 1, + "string": 8, + "customise": 1, + "under": 1, + "at": 5, + "visibly": 1 }, "Slash": { - "<%>": 1, - "class": 11, - "Env": 1, - "def": 18, - "init": 4, - "memory": 3, - "ptr": 9, - "0": 3, - "ptr=": 1, - "current_value": 5, + "ARGV.first": 1, + "Sequence.new": 1, "current_value=": 1, + "0": 3, + "Inc": 1, + "ast": 1, + "seq": 4, + "new": 2, + "-": 1, + "[": 1, + "str": 2, + "Next": 1, + "Env": 1, + "env": 16, + "memory": 3, + "unexpected": 2, + "length": 1, + "_parse_char": 2, + "last": 1, "value": 1, "AST": 4, - "Next": 1, - "eval": 10, - "env": 16, - "Prev": 1, - "Inc": 1, - "Dec": 1, - "Output": 1, - "print": 1, + "ptr": 9, + "while": 1, + "@stack.pop": 1, + "of": 1, + "if": 1, + "chars": 2, + "current_value": 5, + "Sequence": 2, + "class": 11, + "in": 2, + "]": 1, + "File.read": 1, + "split": 1, + ".parse": 1, + "switch": 1, + "<": 1, + ")": 7, + "Parser.new": 1, + "<%>": 1, + "nodes": 6, + "Loop.new": 1, + "ptr=": 1, + "1": 1, + "}": 3, "char": 5, "Input": 1, - "Sequence": 2, - "nodes": 6, - "for": 2, - "node": 2, - "in": 2, "Loop": 1, - "seq": 4, - "while": 1, - "Parser": 1, - "str": 2, - "chars": 2, - "split": 1, - "parse": 1, - "stack": 3, - "_parse_char": 2, - "if": 1, - "length": 1, - "1": 1, - "throw": 1, - "SyntaxError": 1, - "new": 2, - "unexpected": 2, - "end": 1, - "of": 1, - "input": 1, - "last": 1, - "switch": 1, - "<": 1, - "+": 1, - "-": 1, + "Dec": 1, + "init": 4, ".": 1, - "[": 1, - "]": 1, - ")": 7, - ";": 6, - "}": 3, - "@stack.pop": 1, + "def": 18, + "node": 2, "_add": 1, - "(": 6, - "Loop.new": 1, - "Sequence.new": 1, - "src": 2, - "File.read": 1, - "ARGV.first": 1, - "ast": 1, - "Parser.new": 1, - ".parse": 1, + "for": 2, + "Output": 1, + "stack": 3, + "parse": 1, + "Env.new": 1, + "input": 1, + "print": 1, + "+": 1, + "SyntaxError": 1, + "throw": 1, "ast.eval": 1, - "Env.new": 1 + "end": 1, + "Prev": 1, + "Parser": 1, + "src": 2, + "eval": 10, + ";": 6, + "(": 6 }, - "Standard ML": { - "signature": 2, - "LAZY_BASE": 3, - "sig": 2, - "type": 2, - "a": 18, - "lazy": 12, - "-": 13, - ")": 23, - "end": 6, - "LAZY": 1, - "bool": 4, - "val": 12, - "inject": 3, - "toString": 2, - "(": 22, - "string": 1, - "eq": 2, - "*": 1, - "eqBy": 3, - "compare": 2, - "order": 2, - "map": 2, - "b": 2, - "structure": 6, - "Ops": 2, - "LazyBase": 2, - "struct": 4, - "exception": 1, - "Undefined": 3, - "fun": 9, - "delay": 3, - "f": 9, - "force": 9, - "undefined": 1, - "fn": 3, - "raise": 1, - "LazyMemoBase": 2, - "datatype": 1, - "|": 1, - "Done": 1, - "of": 1, - "unit": 1, - "let": 1, - "open": 1, - "B": 1, - "x": 15, - "isUndefined": 2, - "ignore": 1, - ";": 1, - "false": 1, - "handle": 1, - "true": 1, - "if": 1, - "then": 1, - "else": 1, - "p": 4, - "y": 6, - "op": 1, - "Lazy": 1, - "LazyFn": 2, - "LazyMemo": 1 - }, - "SuperCollider": { - "BCR2000": 1, - "{": 14, - "var": 2, - "controls": 2, - "controlBuses": 2, - "rangedControlBuses": 2, - "responders": 2, - ";": 32, - "*new": 1, - "super.new.init": 1, - "}": 14, - "init": 1, - "Dictionary.new": 3, - "(": 34, - ")": 34, - "this.createCCResponders": 1, - "createCCResponders": 1, - "Array.fill": 1, - "|": 4, - "i": 5, - "CCResponder": 1, - "src": 3, - "chan": 3, - "num": 3, - "val": 4, - "[": 3, - "]": 3, - ".postln": 1, - "controls.put": 1, - "+": 4, - "controlBuses.put": 1, - "Bus.control": 1, - "Server.default": 1, - "controlBuses.at": 2, - ".value": 1, + "SCSS": { + "darken": 1, + "navigation": 1, + ".content": 1, "/": 2, - "nil": 4, - "//": 4, - "value": 1, - "at": 1, - "arg": 4, - "controlNum": 6, - "controls.at": 2, - "scalarAt": 1, - "busAt": 1, - "//boot": 1, - "server": 1, - "s.boot": 1, - "SynthDef": 1, - "sig": 7, - "resfreq": 3, - "Saw.ar": 1, - "SinOsc.kr": 1, - "*": 3, - "RLPF.ar": 1, - "Out.ar": 1, - ".play": 2, - "do": 2, - "Pan2.ar": 1, - "SinOsc.ar": 1, - "exprand": 1, - "LFNoise2.kr": 2, - "rrand": 2, - ".range": 2, - "**": 1, - "rand2": 1, - "a": 2, - "Env.perc": 1, - "-": 1, - "b": 1, - "a.delay": 2, - "a.test.plot": 1, - "b.test.plot": 1, - "Env": 1, - ".plot": 2, - "e": 1, - "Env.sine.asStream": 1, - "e.next.postln": 1, - "wait": 1, - ".fork": 1 - }, - "Tea": { - "<%>": 1, - "template": 1, - "foo": 1 - }, - "TeX": { - "%": 59, - "NeedsTeXFormat": 1, - "{": 180, - "LaTeX2e": 1, - "}": 185, - "ProvidesClass": 1, - "reedthesis": 1, - "[": 22, - "/01/27": 1, - "The": 4, - "Reed": 5, - "College": 5, - "Thesis": 5, - "Class": 4, - "]": 22, - "DeclareOption*": 1, - "PassOptionsToClass": 1, - "CurrentOption": 1, - "book": 2, - "ProcessOptions": 1, - "relax": 2, - "LoadClass": 1, - "RequirePackage": 1, - "fancyhdr": 1, - "AtBeginDocument": 1, - "fancyhf": 1, - "fancyhead": 5, - "LE": 1, - "RO": 1, - "thepage": 1, - "above": 1, - "makes": 2, - "your": 1, - "headers": 6, - "in": 10, - "all": 1, - "caps.": 2, - "If": 1, - "you": 1, - "would": 1, - "like": 1, - "different": 1, - "choose": 1, - "one": 1, - "of": 8, - "the": 14, - "following": 1, - "options": 1, - "(": 3, - "be": 3, - "sure": 1, - "to": 8, - "remove": 1, - "symbol": 1, - "from": 1, - "both": 1, - "right": 1, - "and": 2, - "left": 1, - ")": 3, - "RE": 2, - "slshape": 2, - "nouppercase": 2, - "leftmark": 2, - "This": 2, - "on": 1, - "RIGHT": 2, - "side": 2, - "pages": 2, - "italic": 1, - "use": 1, - "lowercase": 1, - "With": 1, - "Capitals": 1, - "When": 1, - "Specified.": 1, - "LO": 2, - "rightmark": 2, - "does": 1, - "same": 1, - "thing": 1, - "LEFT": 2, - "or": 1, - "scshape": 2, - "will": 2, - "small": 2, - "And": 1, - "so": 1, - "pagestyle": 2, - "fancy": 1, - "let": 10, - "oldthebibliography": 2, - "thebibliography": 2, - "endoldthebibliography": 2, - "endthebibliography": 1, - "renewenvironment": 2, - "#1": 12, - "addcontentsline": 5, - "toc": 5, - "chapter": 9, - "bibname": 2, - "end": 5, - "things": 1, - "for": 5, - "psych": 1, - "majors": 1, - "comment": 1, - "out": 1, - "oldtheindex": 2, - "theindex": 2, - "endoldtheindex": 2, - "endtheindex": 1, - "indexname": 1, - "RToldchapter": 1, - "renewcommand": 6, - "if@openright": 1, - "RTcleardoublepage": 3, - "else": 7, - "clearpage": 3, - "fi": 13, - "thispagestyle": 3, - "empty": 4, - "global": 2, - "@topnum": 1, - "z@": 2, - "@afterindentfalse": 1, - "secdef": 1, - "@chapter": 2, - "@schapter": 1, - "def": 12, - "#2": 4, - "ifnum": 2, - "c@secnumdepth": 1, - "m@ne": 2, - "if@mainmatter": 1, - "refstepcounter": 1, - "typeout": 1, - "@chapapp": 2, - "space": 4, - "thechapter.": 1, - "thechapter": 1, - "space#1": 1, - "chaptermark": 1, - "addtocontents": 2, - "lof": 1, - "protect": 2, - "addvspace": 2, - "p@": 3, - "lot": 1, - "if@twocolumn": 3, - "@topnewpage": 1, - "@makechapterhead": 2, - "@afterheading": 1, - "newcommand": 2, - "if@twoside": 1, - "ifodd": 1, - "c@page": 1, - "hbox": 15, - "newpage": 3, - "RToldcleardoublepage": 1, - "cleardoublepage": 4, - "setlength": 10, - "oddsidemargin": 2, - ".5in": 3, - "evensidemargin": 2, - "textwidth": 2, - "textheight": 4, - "topmargin": 6, - "addtolength": 8, - "headheight": 4, - "headsep": 3, - ".6in": 1, - "pt": 1, - "division#1": 1, - "gdef": 6, - "@division": 3, - "@latex@warning@no@line": 3, - "No": 3, - "noexpand": 3, - "division": 2, - "given": 3, - "department#1": 1, - "@department": 3, - "department": 1, - "thedivisionof#1": 1, - "@thedivisionof": 3, - "Division": 2, - "approvedforthe#1": 1, - "@approvedforthe": 3, - "advisor#1": 1, - "@advisor": 3, - "advisor": 1, - "altadvisor#1": 1, - "@altadvisor": 3, - "@altadvisortrue": 1, - "@empty": 1, - "newif": 1, - "if@altadvisor": 3, - "@altadvisorfalse": 1, - "contentsname": 1, - "Table": 1, - "Contents": 1, - "References": 1, - "l@chapter": 1, - "c@tocdepth": 1, - "addpenalty": 1, - "@highpenalty": 2, - "vskip": 4, - "em": 3, - "@plus": 1, - "@tempdima": 2, - "begingroup": 1, - "parindent": 1, - "rightskip": 1, - "@pnumwidth": 3, - "parfillskip": 1, - "-": 2, - "leavevmode": 1, - "bfseries": 3, - "advance": 1, - "leftskip": 2, - "hskip": 1, - "nobreak": 2, - "normalfont": 1, - "leaders": 1, - "m@th": 1, - "mkern": 2, - "@dotsep": 2, - "mu": 2, - ".": 1, - "hfill": 1, - "hb@xt@": 1, - "hss": 1, - "par": 6, - "penalty": 1, - "endgroup": 1, - "newenvironment": 1, - "abstract": 1, - "@restonecoltrue": 1, - "onecolumn": 1, - "@restonecolfalse": 1, - "Abstract": 2, - "begin": 4, - "center": 7, - "fontsize": 7, - "selectfont": 6, - "if@restonecol": 1, - "twocolumn": 1, - "ifx": 1, - "@pdfoutput": 1, - "@undefined": 1, - "RTpercent": 3, - "@percentchar": 1, - "AtBeginDvi": 2, - "special": 2, - "LaTeX": 3, - "/12/04": 3, - "SN": 3, - "rawpostscript": 1, - "AtEndDocument": 1, - "pdfinfo": 1, - "/Creator": 1, - "maketitle": 1, - "titlepage": 2, - "footnotesize": 1, - "footnoterule": 1, - "footnote": 1, - "thanks": 1, - "baselineskip": 2, - "setbox0": 2, - "Requirements": 2, - "Degree": 2, - "setcounter": 1, - "page": 3, - "null": 3, - "vfil": 8, - "@title": 1, - "centerline": 8, - "wd0": 7, - "hrulefill": 5, - "A": 1, - "Presented": 1, - "In": 1, - "Partial": 1, - "Fulfillment": 1, - "Bachelor": 1, - "Arts": 1, - "bigskip": 2, - "lineskip": 1, - ".75em": 1, - "tabular": 2, - "t": 1, - "c": 5, - "@author": 1, - "@date": 1, - "Approved": 2, - "just": 1, - "below": 2, - "cm": 2, - "not": 1, - "copy0": 1, - "approved": 1, - "major": 1, - "sign": 1, - "makebox": 6 - }, - "Turing": { - "function": 1, - "factorial": 4, - "(": 3, - "n": 9, - "int": 2, - ")": 3, - "real": 1, - "if": 2, - "then": 1, - "result": 2, - "else": 1, - "*": 1, - "-": 1, - "end": 3, - "var": 1, - "loop": 2, - "put": 3, - "..": 1, - "get": 1, - "exit": 1, - "when": 1 - }, - "TXL": { - "define": 12, - "program": 1, - "[": 38, - "expression": 9, - "]": 38, - "end": 12, - "term": 6, - "|": 3, - "addop": 2, - "primary": 4, - "mulop": 2, - "number": 10, - "(": 2, - ")": 2, + "padding": 1, + "}": 2, + ")": 1, + "%": 1, + "(": 1, + "{": 2, "-": 3, - "/": 3, - "rule": 12, - "main": 1, - "replace": 6, - "E": 3, - "construct": 1, - "NewE": 3, - "resolveAddition": 2, - "resolveSubtraction": 2, - "resolveMultiplication": 2, - "resolveDivision": 2, - "resolveParentheses": 2, - "where": 1, - "not": 1, - "by": 6, - "N1": 8, - "+": 2, - "N2": 8, - "*": 2, - "N": 2 - }, - "TypeScript": { - "class": 3, - "Animal": 4, - "{": 9, - "constructor": 3, - "(": 17, - "public": 1, - "name": 5, - ")": 17, - "}": 9, - "move": 3, - "meters": 2, - "alert": 3, - "this.name": 1, - "+": 3, ";": 7, - "Snake": 2, - "extends": 2, - "super": 2, - "super.move": 2, - "Horse": 2, - "var": 2, - "sam": 1, - "new": 2, - "tom": 1, - "sam.move": 1, - "tom.move": 1, - "console.log": 1 + "#3bbfce": 1, + "blue": 4, + "px": 1, + "color": 3, + ".border": 1, + "border": 2, + "margin": 4 + }, + "PHP": { + "PHP_URL_HOST": 1, + "restart": 1, + "backed": 2, + "tables": 5, + "for": 8, + "CakeEventManager": 5, + "__backAssociation": 22, + "CookieComponent": 1, + "with": 5, + "SecurityComponent": 1, + "currentModel": 2, + "getInputStream": 1, + "request.": 1, + "findAlternatives": 3, + "escapeField": 6, + "Event": 6, + "saveMany": 3, + "class": 21, + "_mergeParent": 4, + "two": 6, + "title.str_repeat": 1, + "modParams": 2, + "getValue": 2, + "id": 82, + "defaults": 6, + "CakePHP": 6, + "ob_start": 1, + "of": 10, + "plugin": 31, + "ListCommand": 2, + "yii": 2, + "segments": 13, + "commandsXML": 3, + "inside": 1, + "path": 20, + "get_class_methods": 2, + "map": 1, + "withModel": 4, + "lowercase": 1, + "getFormNode": 1, + "PHP_URL_PATH": 1, + "Set": 9, + "9": 1, + "cacheAction": 1, + "long": 2, + "hasParameterOption": 7, + "based": 2, + "_scaffoldError": 1, + "changeHistory": 4, + "newJoins": 7, + "hasMethod": 2, + "toArray": 1, + "limit": 3, + "RequestHandlerComponent": 1, + "ComponentCollection": 2, + "clear": 2, + "redirection": 2, + "PrivateActionException": 1, + "POST": 1, + "Request": 3, + "updateCol": 6, + "extends": 3, + "offsetGet": 1, + "InputFormField": 2, + "bindModel": 1, + "addCommands": 1, + "setAttribute": 2, + "descriptorspec": 2, + "FALSE": 2, + "PHP_INT_MAX": 1, + "array_shift": 5, + "save": 9, + "array_filter": 2, + "dirname": 1, + "dateFields": 5, + "_saveMulti": 2, + "_prepareUpdateFields": 2, + "package": 2, + "_generateAssociation": 2, + "referer": 5, + "namespace": 28, + "names.": 1, + "calculate": 2, + "call_user_func": 2, + "followRedirect": 4, + "catchExceptions": 4, + "buildQuery": 2, + "beforeScaffold": 2, + "2": 2, + "header": 3, + "lst": 4, + "xpath": 2, + "keyPresentAndEmpty": 2, + "options": 85, + "read": 2, + "opensource": 2, + "updateFromResponse": 1, + "Remove": 1, + "basic": 1, + "joinModel": 8, + "FormFieldRegistry": 2, + "Acl": 1, + "action": 7, + "endQuote": 4, + "String": 5, + "Field": 9, + "commandXML": 3, + "pluginDot": 4, + "width": 7, + "path.": 1, + "cookieJar": 9, + "rendering": 1, + "inputStream": 2, + "delete": 9, + "controllers": 2, + "mapper": 2, + "appendChild": 10, + "_sourceConfigured": 1, + "boolean": 4, + "a": 11, + "notEmpty": 4, + "viewVars": 3, + "setValue": 1, + "conf": 2, + "2012": 4, + "cascade": 10, + "resource": 1, + "getDefaultHelperSet": 2, + "is_subclass_of": 3, + "return": 305, + "+": 12, + "Output": 5, + "findAlternativeNamespace": 2, + "responsible": 1, + "is_bool": 1, + "notice": 2, + "least": 1, + "record": 10, + "Provides": 1, + "FormField": 3, + "addChoice": 1, + "PhpProcess": 2, + "exists": 6, + "createTextNode": 1, + "takes": 1, + "set": 26, + "self": 1, + "allows": 1, + "conditions": 41, + "echo": 2, + "return2": 6, + "back": 2, + "RuntimeException": 2, + "exclusive": 2, + "prefixes": 4, + "dbMulti": 6, + "update": 2, + "User": 1, + "//book.cakephp.org/2.0/en/controllers.html": 1, + "stream_get_contents": 1, + "By": 1, + "oldLinks": 4, + "using": 2, + "addContent": 1, + "default": 9, + "OutputInterface": 6, + "proc_open": 1, + "unbindModel": 1, + "license": 6, + "generated": 1, + "findAlternativeCommands": 2, + "Behaviors": 6, + "pluginController": 9, + "Inc": 4, + "trim": 3, + "afterFilter": 1, + "send": 1, + "collection": 3, + "getAliases": 3, + "isKeySet": 1, + "displayField": 4, + "YII_DEBUG": 2, + "dynamic": 2, + "_associationKeys": 2, + "type": 62, + "code": 4, + "n": 12, + "currentUri": 7, + "reload": 1, + "since": 2, + "yii2": 1, + "getFirstArgument": 1, + "stdin": 1, + "match": 4, + "setDataSource": 2, + "key.": 1, + "pluginSplit": 12, + "primaryKey": 38, + "old": 2, + "status": 15, + "remove": 4, + "_whitelist": 4, + "beforeRedirect": 1, + "attach": 4, + "FileFormField": 3, + "findQueryType": 3, + "useDbConfig": 7, + "HelpCommand": 2, + "savedAssociatons": 3, + "line.str_repeat": 1, + "getPhpValues": 2, + "ClassRegistry": 9, + "func_get_args": 5, + "keyInfo": 4, + "response": 33, + "__backInnerAssociation": 1, + "abstract": 2, + "field": 88, + "commit": 2, + "writeln": 13, + "suggestions": 2, + "fcgi": 1, + "alias": 87, + "namespace.substr": 1, + "DBO": 2, + "ArgvInput": 2, + "current": 4, + "App": 20, + "ReflectionMethod": 2, + "doRequest": 2, + "setInteractive": 2, + "command": 41, + "index": 5, + "migrated": 1, + "parameters": 4, + "dispatchMethod": 1, + "@package": 2, + "www": 4, + "define": 2, + "state": 15, + "order": 4, + "MIT": 4, + "getEventManager": 13, + "item": 9, + "_setAliasData": 2, + "call_user_func_array": 3, + "submit": 2, + "{": 974, + "EmailComponent": 1, + "primaryAdded": 3, + "should": 1, + "or": 9, + "require": 3, + "ids": 8, + "isVirtualField": 3, + "get_parent_class": 1, + "function_exists": 4, + "has": 7, + "http_build_query": 3, + "implode": 8, + "getAssociated": 4, + "assoc": 75, + "base_url": 1, + "must": 2, + "getContent": 2, + "CakeEventListener": 4, + "appVars": 6, + "php_permission": 1, + "_responseClass": 1, + "SHEBANG#!php": 3, + "serves": 1, + "*": 25, + "getScript": 2, + "scaffold": 2, + "re": 1, + "autoExit": 4, + "Security": 1, + "create": 13, + "transactionBegun": 4, + "tablePrefix": 8, + "getHistory": 1, + "FormatterHelper": 2, + "getPhpFiles": 2, + "codes": 3, + "getCookieJar": 1, + "Application": 3, + "t": 26, + "http": 14, + "reset": 6, + "actions": 2, + "getNamespaces": 3, + "isStopped": 4, + "model": 34, + "invalidFields": 2, + "InputOption": 15, + "Input": 6, + "isDisabled": 2, + "Copyright": 5, + "properties": 4, + "cacheQueries": 1, + "2005": 4, + "whitelist": 14, + "queryString": 2, + "str_split": 1, + "Automatically": 1, + "underscore": 3, + "public": 202, + "__DIR__": 3, + "MissingTableException": 1, + "proc_close": 1, + "base": 8, + "getValues": 3, + "get_class_vars": 2, + "findNamespace": 4, + "Boolean": 4, + "Model": 5, + "ConsoleOutput": 2, + "views": 1, + "InputArgument": 3, + "more": 1, + "php_help": 1, + "invokeAction": 1, + "array_map": 2, + "components": 1, + "setCatchExceptions": 1, + "getAbbreviations": 4, + "m": 5, + "local": 2, + "nest": 1, + "fieldName": 6, + "validate": 9, + "setAutoExit": 1, + "allNamespaces": 3, + "pipes": 4, + "is_null": 1, + "fieldValue": 7, + "validationDomain": 1, + "trace": 12, + "raw": 2, + "str_repeat": 2, + "helpers": 1, + "getColumnTypes": 1, + "values": 53, + "In": 1, + "setAction": 1, + "catch": 3, + "postConditions": 1, + "doRun": 2, + "You": 2, + "__set": 1, + "TRUE": 1, + "com": 2, + "array_diff": 3, + "conventional": 1, + "beforeRender": 1, + "ChoiceFormField": 2, + "version": 8, + "is_array": 37, + "preg_split": 1, + "retain": 2, + "setServerParameters": 2, + "substr": 6, + "resetAssociations": 3, + "_insertID": 1, + "crawler": 7, + "bool": 5, + "beforeFilter": 1, + "assocName": 6, + "theme_info": 3, + "form": 7, + "ConsoleOutputInterface": 2, + "parse_str": 2, + "array_key_exists": 11, + "ob_end_clean": 1, + "STDIN": 3, + "number": 1, + "availability": 1, + "Utility": 6, + "sys_get_temp_dir": 2, + "deconstruct": 2, + "10": 1, + "new": 74, + "by": 2, + "E_USER_WARNING": 1, + "is_a": 1, + "mapping": 1, + "input": 20, + "methods": 5, + "useTable": 12, + "uses": 46, + "scope": 2, + "hasMany": 2, + "prefixed": 1, + "0": 4, + "target": 20, + "//book.cakephp.org/2.0/en/models.html": 1, + "adding": 1, + "and": 5, + "getServer": 1, + "LLC": 1, + "saveAssociated": 5, + "hasOne": 2, + "option": 5, + "is_string": 7, + "cakephp": 4, + "links": 4, + "relation": 7, + "belongsTo": 7, + "case": 31, + "aliases": 8, + "routing.": 1, + "Helper": 3, + "access": 1, + "ucfirst": 2, + "arg": 1, + "createElement": 6, + "instanceof": 8, + "levenshtein": 2, + "getCommandName": 2, + "BrowserKit": 1, + "sortCommands": 4, + "relational": 2, + "_": 1, + "parts": 4, + "getShortcut": 2, + "models": 6, + "startupProcess": 1, + "MissingModelException": 1, + "cond": 5, + "title": 3, + "part": 10, + "Software": 5, + "fInfo": 4, + "BehaviorCollection": 2, + "server": 20, + "event": 35, + ")": 2417, + "console": 3, + "_findNeighbors": 1, + "isUUID": 5, + "registry": 4, + "fkQuoted": 3, + "controller": 3, + "Symfony": 24, + "array_flip": 1, + "ksort": 2, + "php": 12, + "EXTR_OVERWRITE": 3, + "find": 17, + "that": 2, + "getAbbreviationSuggestions": 4, + "trigger_error": 1, + "global": 2, + "setCommand": 1, + "file": 3, + "contains": 1, + "breakOn": 4, + "Cake.Controller": 1, + "you": 1, + "getElementsByTagName": 1, + "getPrevious": 1, + "importNode": 3, + "uri": 23, + "After": 1, + "ReflectionException": 1, + "logic": 1, + "preg_match": 6, + "@link": 2, + "empty": 96, + "not": 2, + "_getScaffold": 2, + "cols": 7, + "parse_url": 3, + "//TODO": 1, + "getDataSource": 15, + "urls": 1, + "startQuote": 4, + "License": 4, + "getErrorOutput": 2, + "schema": 11, + "getObject": 1, + "loadModel": 3, + "all": 11, + "protected": 59, + "filterRequest": 2, + "invokeArgs": 1, + "_filterResults": 2, + "saved": 18, + "colType": 4, + "abbrev": 4, + "allValues": 1, + "joined": 5, + "Xml": 2, + "preg_replace": 4, + "getName": 14, + "_afterScaffoldSave": 1, + "fopen": 1, + "keepExisting": 3, + "validates": 60, + "__call": 1, + "getCode": 1, + "VALUE_NONE": 7, + "render": 3, + "eval": 1, + "callbacks": 4, + "DOMDocument": 2, + "drupal_get_path": 1, + "validateAssociated": 5, + "isPublic": 1, + "runningCommand": 5, + "space.": 1, + "getAbsoluteUri": 2, + "substr_count": 1, + "unset": 22, + "bootstrap": 1, + "Redistributions": 2, + "implements": 3, + "||": 52, + "_createLinks": 3, + "info": 5, + "name": 181, + "redirect": 6, + "objects": 5, + "db": 45, + "getLongVersion": 3, + "run": 4, + "e": 18, + "Router": 5, + "fields": 60, + "to": 6, + "use": 23, + "searchName": 13, + "pluginName": 1, + "connect": 1, + "events": 1, + "offsetUnset": 1, + "pause": 2, + "_schema": 11, + "request": 76, + "getHelperSet": 3, + "expression": 1, + "_normalizeXmlData": 3, + "property_exists": 3, + "cacheSources": 7, + "AclComponent": 1, + "doRequestInProcess": 2, + "database": 2, + "/": 1, + "parentMethods": 2, + "combine": 1, + "findMethods": 3, + "Project": 2, + "Form": 4, + "action.": 1, + "pos": 3, + "rollback": 2, + "paginate": 3, + "insulated": 7, + "line": 10, + "helpCommand": 3, + "setSource": 1, + "setApplication": 2, + "afterScaffoldSave": 2, + "merge": 12, + "array_unique": 4, + "get": 12, + "filter": 1, + "results": 22, + "numeric": 1, + "recursive": 9, + "y": 2, + "filters": 2, + "foreignKey": 11, + "__d": 1, + "possibly": 1, + "getDefaultInputDefinition": 2, + "op": 9, + "insulate": 1, + "PHP_EOL": 3, + "isUnique": 1, + "aspects": 1, + "ArrayAccess": 1, + "getColumnType": 4, + "__backContainableAssociation": 1, + "DialogHelper": 2, + "Components": 7, + "space": 5, + "_mergeControllerVars": 2, + "_mergeVars": 5, + "hasField": 7, + "DomCrawler": 5, + "query": 102, + "(": 2416, + "created": 8, + "ModelBehavior": 1, + "list": 29, + "getAttribute": 10, + "associationForeignKey": 5, + "newData": 5, + "getServerParameter": 1, + "required": 2, + "array_slice": 1, + "errors": 9, + "do": 2, + "unserialize": 1, + "lev": 6, + "isset": 101, + "xml": 5, + "data": 187, + "asXml": 2, + "className": 27, + "r": 1, + "useNewDate": 2, + "endpoint": 1, + "InvalidArgumentException": 9, + "_associations": 5, + "dispatch": 11, + "exit": 7, + "null": 164, + "example": 2, + "object": 14, + "Scaffold": 1, + "PaginatorComponent": 1, + "arrayOp": 2, + "<": 11, + "getDescription": 3, + "disableCache": 2, + "try": 3, + "messages": 16, + "flash": 1, + "time": 3, + "str_replace": 3, + "Inflector": 12, + "this": 928, + "formatOutput": 1, + "creating": 1, + "newValues": 8, + "_stop": 1, + "functionality": 1, + "setServerParameter": 1, + "records": 6, + "namespacesXML": 3, + "Dispatcher": 1, + "parentClass": 3, + "yiisoft": 1, + "intval": 4, + "k": 7, + "array_search": 1, + "fieldSet": 3, + "tableName": 4, + "isSuccessful": 1, + "filename": 1, + "alternatives": 10, + "_id": 2, + "Client": 1, + "idField": 3, + "PHP_URL_SCHEME": 1, + "under": 2, + "an": 1, + "layoutPath": 1, + "ext": 1, + "associations": 9, + "currentObject": 6, + "5": 1, + "Command": 6, + "process": 10, + "doesn": 1, + "History": 2, + "link": 10, + "session_write_close": 1, + "Crawler": 2, + "validateErrors": 1, + "helperSet": 6, + "_findFirst": 1, + "Cake": 7, + "vendor": 2, + "listSources": 1, + "Foundation": 4, + "function": 205, + "_findCount": 1, + "cache": 2, + "can": 2, + "prefix": 2, + "isEnabled": 1, + "setHelperSet": 1, + "key": 64, + "Auth": 1, + "asDom": 2, + "offsetSet": 1, + "names": 3, + "business": 1, + "implementedEvents": 2, + "getHelp": 2, + "tableToModel": 4, + "Link": 3, + "array_keys": 7, + "Exception": 1, + "fieldOp": 11, + "getSynopsis": 1, + ".": 169, + "application": 2, + "table": 21, + "renderException": 3, + "message": 12, + "_beforeScaffold": 1, + "Session": 1, + "click": 1, + "HelperSet": 3, + "are": 5, + "/posts/index": 1, + "x": 4, + "setValues": 2, + "found": 4, + "pluginVars": 3, + "sql": 1, + "method_exists": 5, + "params": 34, + "privateAction": 4, + "]": 672, + "php_eval": 1, + "sprintf": 27, + "createCrawlerFromContent": 2, + "response.": 2, + "strtoupper": 3, + "Cake.Model": 1, + "Process": 1, + "print": 1, + "_mergeUses": 3, + "files": 7, + "VERBOSITY_VERBOSE": 2, + "_return": 3, + "primary": 3, + "ConnectionManager": 2, + "viewClass": 10, + "Console": 17, + "compact": 8, + "organization": 1, + "defined": 5, + "saveAll": 1, + "httpCodes": 3, + "autoRender": 6, + "getParameters": 1, + "getMessage": 1, + "hasAny": 1, + "actsAs": 2, + "true": 133, + "getUri": 8, + "DOMXPath": 1, + "_isPrivateAction": 2, + "Framework": 2, + "getSttyColumns": 3, + "filterKey": 2, + "autoLayout": 2, + "hasAttribute": 1, + "register": 1, + "&&": 119, + "another": 1, + "if": 450, + "__get": 2, + "Validation": 1, + "listing": 1, + "constructClasses": 1, + "Controller": 4, + "CakeEvent": 13, + "sep": 1, + "CakeResponse": 2, + "MissingActionException": 1, + "dynamicWith": 3, + "addObject": 2, + "at": 1, + "namespacedCommands": 5, + "add": 7, + "specific": 1, + "pluralized": 1, + "fully": 1, + ";": 1383, + "fclose": 2, + "<=>": 3, + "getTerminalWidth": 3, + "get_class": 4, + "root": 4, + "namespaceArrayXML": 4, + "posix_isatty": 1, + "foreach": 94, + "when": 1, + "updateCounterCache": 6, + "setRequest": 2, + "load": 3, + "oldJoin": 4, + "column": 10, + "TextareaFormField": 1, + "requestFromRequest": 4, + "getFiles": 3, + "editing": 1, + "Rapid": 2, + "lines": 3, + "len": 11, + "Component": 24, + "static": 6, + "mb_detect_encoding": 1, + "have": 2, + "FILES": 1, + "node": 42, + "SessionComponent": 1, + "InputInterface": 4, + "j": 2, + "@property": 8, + "RequestHandler": 1, + "__construct": 8, + "Paginator": 1, + "while": 6, + "following": 1, + "getID": 2, + "one": 19, + "sources": 3, + "either": 1, + "explode": 9, + "This": 1, + "_collectForeignKeys": 2, + "begin": 2, + "singularize": 4, + "tableize": 2, + "schemaName": 1, + "array_intersect": 1, + "foreignKeys": 3, + "content": 4, + "mergeParent": 2, + "mit": 2, + "mb_strlen": 1, + "_deleteLinks": 3, + "count": 32, + "_afterScaffoldSaveError": 1, + "commands": 39, + "getVerbosity": 1, + "view": 5, + "_findList": 1, + "is": 1, + "format": 3, + "above": 2, + "getTerminalHeight": 1, + "getDefinition": 2, + "strpos": 15, + "string": 5, + "_php_filter_tips": 1, + "wantHelps": 4, + "c": 1, + "extractNamespace": 7, + "getRequest": 1, + "tokenize": 1, + "saveField": 1, + "assocKey": 13, + "dom": 12, + "setNode": 1, + "tm": 6, + "result": 21, + "performing": 2, + "namespaces": 4, + "throw": 19, + "class_exists": 2, + "Network": 1, + "args": 5, + "View": 9, + "-": 1271, + "copyright": 5, + "The": 4, + "_findThreaded": 1, + "_clearCache": 2, + "qs": 4, + "ArrayInput": 3, + "insertMulti": 1, + "parentNode": 1, + "setName": 1, + "continue": 7, + "Licensed": 2, + "val": 27, + "output": 60, + "ob_get_contents": 1, + "modelClass": 25, + "yiiframework": 2, + "message.": 1, + "LogicException": 4, + "on": 4, + "else": 70, + "layouts": 1, + "max": 2, + "getOutput": 3, + "*/": 2, + "init": 4, + "getFile": 2, + "Email": 1, + "statusCode": 14, + "old_theme_path": 2, + "is_resource": 1, + "2008": 1, + "were": 1, + "php_filter_info": 1, + "DOMNode": 3, + "switch": 6, + "usually": 1, + "fieldList": 1, + "hasAndBelongsToMany": 24, + "&": 19, + "value": 53, + "success": 10, + "getOptions": 1, + "join": 22, + "describe": 1, + "settings": 2, + "array_merge": 32, + "validationErrors": 50, + "PHP": 1, + "definition": 3, + "row": 17, + "reverse": 1, + "SimpleXMLElement": 1, + "method": 31, + "setDecorated": 2, + "VERBOSITY_QUIET": 1, + "getVirtualField": 1, + "__backOriginalAssociation": 1, + "p": 3, + "getMethod": 6, + "AppModel": 1, + "selects": 1, + "": 3, + "false": 154, + "getResponse": 1, + "CookieJar": 2, + "collectReturn": 1, + "as": 96, + "layout": 5, + "timeFields": 2, + "afterScaffoldSaveError": 2, + "manipulate": 1, + "validateMany": 4, + "included": 3, + "document": 6, + "getVersion": 3, + "array": 296, + "For": 2, + "setVerbosity": 2, + "array_unshift": 2, + "updateAll": 3, + "Development": 2, + "history": 15, + "walk": 3, + "isEmpty": 2, + "followRedirects": 5, + "camelize": 3, + "sep.": 1, + "InputDefinition": 2, + "getSegments": 4, + "CakeRequest": 5, + "ansicon": 4, + "i": 36, + "location": 1, + "licenses": 2, + "viewPath": 3, + "sort": 1, + "cakefoundation": 4, + "Each": 1, + "strlen": 14, + "strtotime": 1, + "_constructLinkedModel": 2, + "modelKey": 2, + "private": 24, + "initialize": 2, + "getRawUri": 1, + "the": 11, + "setVersion": 1, + "Controllers": 2, + "extract": 9, + "association": 47, + "PostsController": 1, + "_eventManager": 12, + "_parseBeforeRedirect": 2, + "such": 1, + "parent": 14, + "3": 1, + "Yii": 3, + "org": 10, + "childMethods": 2, + "button": 6, + "array_pop": 1, + "abbrevs": 31, + "modelName": 3, + "virtualFields": 8, + "__isset": 2, + "theme_path": 5, + "filterResponse": 2, + "offsetExists": 1, + "is_numeric": 7, + "keys": 19, + "}": 972, + "autoload": 1, + "getLine": 2, + "nodeName": 13, + "Object": 4, + "config": 3, + "asText": 1, + "asort": 1, + "provide": 1, + "resources": 1, + "hasValue": 1, + "Cookie": 1, + "strtolower": 1, + "getenv": 2, + "array_values": 5, + "These": 1, + "elseif": 31, + "checkVirtual": 3, + "maps": 1, + "columns": 5, + "getTrace": 1, + "encoding": 2, + "versions": 1, + "scaffoldError": 2, + "saveXml": 1, + "AuthComponent": 1, + "resp": 6, + "recordData": 2, + "is_object": 2, + "strrpos": 2, + "body": 1, + "GET": 1, + "prevVal": 2, + "ds": 3, + "date": 9, + "shutdownProcess": 1, + "passedArgs": 2, + "deleteAll": 2, + "_deleteDependent": 3, + "REQUIRED": 1, + "v": 17, + "array_combine": 2, + "getCrawler": 1, + "automatic": 1, + "callback": 5, + "in_array": 26, + "break": 19, + "uuid": 3, + "forward": 2, + "getHeader": 2, + "[": 672, + "url": 18, + "getDefaultCommands": 2 }, "Verilog": { - "////////////////////////////////////////////////////////////////////////////////": 14, - "//": 117, - "timescale": 10, - "ns": 8, - "/": 11, - "ps": 8, - "module": 18, - "button_debounce": 3, - "(": 378, - "input": 68, - "clk": 40, - "clock": 3, - "reset_n": 32, - "asynchronous": 2, - "reset": 13, - "button": 25, - "bouncy": 1, - "output": 42, - "reg": 26, - "debounce": 6, - "debounced": 1, - "-": 73, - "cycle": 1, - "signal": 3, - ")": 378, - ";": 287, - "parameter": 7, - "CLK_FREQUENCY": 4, - "DEBOUNCE_HZ": 4, - "localparam": 4, - "COUNT_VALUE": 2, - "WAIT": 6, - "FIRE": 4, - "COUNT": 4, - "[": 179, - "]": 179, - "state": 6, - "next_state": 6, - "count": 6, - "always": 23, - "@": 16, - "posedge": 11, - "or": 14, - "negedge": 8, - "<": 47, - "begin": 46, - "if": 23, - "end": 48, - "else": 22, - "case": 3, - "<=>": 4, - "1": 7, - "endcase": 3, - "default": 2, - "endmodule": 18, - "control": 1, - "en": 13, - "dsp_sel": 9, - "an": 6, - "wire": 67, - "a": 5, - "b": 3, - "c": 3, - "d": 3, - "e": 3, - "f": 2, - "g": 2, - "h": 2, - "i": 62, - "j": 2, - "k": 2, - "l": 2, - "assign": 23, - "FDRSE": 6, - "#": 10, - ".INIT": 6, - "b0": 27, - "Synchronous": 12, - ".S": 6, - "b1": 19, - "Initial": 6, - "value": 6, - "of": 8, - "register": 6, - "DFF2": 1, - ".Q": 6, - "Data": 13, - ".C": 6, - "Clock": 14, - ".CE": 6, - "enable": 6, - ".D": 6, - ".R": 6, - "set": 6, - "DFF0": 1, - "DFF6": 1, - "DFF4": 1, - "DFF10": 1, - "DFF8": 1, - "hex_display": 1, - "num": 5, - "hex0": 2, - "hex1": 2, - "hex2": 2, - "hex3": 2, - "seg_7": 4, - "hex_group0": 1, - ".num": 4, - ".en": 4, - ".seg": 4, - "hex_group1": 1, - "hex_group2": 1, - "hex_group3": 1, - "mux": 1, - "opA": 4, - "opB": 3, - "sum": 5, - "out": 5, - "cout": 4, - "b0000": 1, - "b01": 1, - "b11": 1, - "pipeline_registers": 1, - "BIT_WIDTH": 5, - "pipe_in": 4, - "pipe_out": 5, - "NUMBER_OF_STAGES": 7, - "generate": 3, - "genvar": 3, - "*": 4, - "BIT_WIDTH*": 5, - "pipe_gen": 6, - "for": 4, - "+": 36, - "pipeline": 2, - "BIT_WIDTH*i": 2, - "endgenerate": 3, - "ps2_mouse": 1, - "Input": 2, - "Reset": 1, - "inout": 2, - "ps2_clk": 3, - "PS2": 2, - "Bidirectional": 2, - "ps2_dat": 3, - "the_command": 2, - "Command": 1, - "to": 3, - "send": 2, - "mouse": 1, - "send_command": 2, - "Signal": 2, - "command_was_sent": 2, - "command": 1, - "finished": 1, - "sending": 1, - "error_communication_timed_out": 3, - "received_data": 2, - "Received": 1, - "data": 4, - "received_data_en": 4, - "If": 1, - "new": 1, - "has": 1, - "been": 1, - "received": 1, - "start_receiving_data": 3, - "wait_for_incoming_data": 3, - "ps2_clk_posedge": 3, - "Internal": 2, - "Wires": 1, - "ps2_clk_negedge": 3, - "idle_counter": 4, - "Registers": 2, - "ps2_clk_reg": 4, - "ps2_data_reg": 5, - "last_ps2_clk": 4, - "ns_ps2_transceiver": 13, - "State": 1, - "Machine": 1, - "s_ps2_transceiver": 8, - "PS2_STATE_0_IDLE": 10, - "h1": 1, - "PS2_STATE_2_COMMAND_OUT": 2, - "h3": 1, - "PS2_STATE_4_END_DELAYED": 4, - "Defaults": 1, - "PS2_STATE_1_DATA_IN": 3, - "||": 1, - "PS2_STATE_3_END_TRANSFER": 3, - "h00": 1, - "&&": 3, - "h01": 1, - "ps2_mouse_cmdout": 1, - "mouse_cmdout": 1, - ".clk": 6, - "Inputs": 2, - ".reset": 2, - ".the_command": 1, - ".send_command": 1, - ".ps2_clk_posedge": 2, - ".ps2_clk_negedge": 2, - ".ps2_clk": 1, - "Bidirectionals": 1, - ".ps2_dat": 1, - ".command_was_sent": 1, - "Outputs": 2, - ".error_communication_timed_out": 1, - "ps2_mouse_datain": 1, - "mouse_datain": 1, - ".wait_for_incoming_data": 1, - ".start_receiving_data": 1, - ".ps2_data": 1, - ".received_data": 1, - ".received_data_en": 1, - "ns/1ps": 2, - "e0": 1, - "x": 41, - "y": 21, - "{": 11, - "}": 11, - "e1": 1, - "ch": 1, - "z": 7, - "o": 6, - "&": 6, - "maj": 1, - "|": 2, - "s0": 1, - "s1": 1, - "sign_extender": 1, - "INPUT_WIDTH": 5, - "OUTPUT_WIDTH": 4, - "original": 3, - "sign_extended_original": 2, - "sign_extend": 3, - "gen_sign_extend": 1, - "sqrt_pipelined": 3, - "start": 12, - "optional": 2, - "INPUT_BITS": 28, - "radicand": 12, - "unsigned": 2, - "data_valid": 7, - "valid": 2, - "OUTPUT_BITS": 14, - "root": 8, - "number": 2, - "bits": 2, - "any": 1, - "integer": 1, - "%": 3, - "start_gen": 7, - "propagation": 1, - "OUTPUT_BITS*INPUT_BITS": 9, - "root_gen": 15, - "values": 3, - "radicand_gen": 10, - "mask_gen": 9, - "mask": 3, - "mask_4": 1, - "is": 4, - "odd": 1, - "this": 2, - "INPUT_BITS*": 27, - "<<": 2, "i/2": 2, - "even": 1, - "pipeline_stage": 1, - "INPUT_BITS*i": 5, - "t_button_debounce": 1, - ".CLK_FREQUENCY": 1, - ".DEBOUNCE_HZ": 1, - ".reset_n": 3, - ".button": 1, - ".debounce": 1, - "initial": 3, + "control": 1, + "BITS": 2, + ".csr_adr_i": 1, + "1": 7, + "w_vert_sync": 3, + "NUMBER_OF_STAGES": 7, + "Inputs": 2, + "If": 1, + ".csrm_adr_o": 1, + "start_gen": 7, + ".wb_dat_o": 2, + ".wbm_dat_i": 1, + ".wbs_stb_i": 1, + ".dac_read_data": 2, + "ns/1ps": 2, + "vga_lcd": 1, + ".start": 2, + "/": 11, + "csr_dat_i": 3, + ".wait_for_incoming_data": 1, + ".wbm_stb_o": 1, + "mask": 3, + "finished": 1, + "dac_read_data_register": 3, + ".vh_retrace": 2, + "b01": 1, + "INPUT_WIDTH": 5, + "-": 73, + "root_gen": 15, + "pal_we": 3, + "||": 1, + "enable": 6, + "reg": 26, + "wb_rst_i": 6, + "DFF8": 1, + "en": 13, + "h3": 1, + "+": 36, + "localparam": 4, + "x_dotclockdiv2": 3, + ".wb_dat_i": 2, + ".wb_rst_i": 2, + "maj": 1, + "DFF6": 1, + ".st_hor_retr": 2, + "end_vert": 3, + "ps2_mouse_datain": 1, + "h1": 1, + ".quotient": 1, + ")": 378, + "ps2_clk_negedge": 3, + "h01": 1, + ".hcursor": 2, + "Defaults": 1, + "DFF4": 1, + "ns": 8, + "PS2_STATE_2_COMMAND_OUT": 2, + "asynchronous": 2, + ".dac_we": 2, + "csr_stb_o": 3, "bx": 4, + "Bidirectionals": 1, + ".start_addr": 1, + "}": 11, + "default": 2, + "DFF2": 1, + "clk": 40, + "%": 3, + "PS2_STATE_1_DATA_IN": 3, + "button_debounce": 3, + "dac_we": 3, + "DFF0": 1, + ".wb_clk_i": 2, + "csrm_adr_o": 2, "#10": 10, - "#5": 3, - "#100": 1, - "#0.1": 8, - "t_div_pipelined": 1, + "#1000": 1, + "bouncy": 1, + "conf_wb_dat_o": 3, + "{": 11, + "pipeline": 2, + "data": 4, + "Reset": 1, + "#": 10, + ".ps2_dat": 1, + "wait_for_incoming_data": 3, + ".wbs_adr_i": 1, + ".vga_green_o": 1, + "opA": 4, + ".wb_stb_i": 2, + "enable_set_reset": 3, + "any": 1, + "y": 21, + ".dac_read_data_cycle": 2, + "csr_stb_i": 2, + "mux": 1, + ".error_communication_timed_out": 1, + ".vert_total": 2, + "Synchronous": 12, + "dac_read_data_cycle": 3, + "mouse_datain": 1, + "PS2_STATE_3_END_TRANSFER": 3, + ".vert_sync": 1, + "graphics_alpha": 4, + ".end_vert": 2, + ".pal_read": 2, + "posedge": 11, + ".csrm_sel_o": 1, + "vcursor": 3, + "optional": 2, + ".DEBOUNCE_HZ": 1, + "root": 8, + "dac_write_data": 3, + "mask_4": 1, + "bits": 2, + "or": 14, + ".x_dotclockdiv2": 2, + "pipe_out": 5, + "genvar": 3, + "DEBOUNCE_HZ": 4, + "hex2": 2, + "color_dont_care": 3, + "t_sqrt_pipelined": 1, + "even": 1, + "next_state": 6, + "inout": 2, + "wbm_ack_i": 3, + "command": 1, + "out": 5, + "clock": 3, + "else": 22, + "hex0": 2, + "input": 68, + "pal_read": 3, + "e1": 1, + ".wbs_we_i": 1, + ".v_retrace": 2, + "INPUT_BITS": 28, + "seg_7": 4, + "vga_mem_arbitrer": 1, + "csr_adr_o": 2, + "vga_red_o": 2, + "WAIT": 6, + "VDU": 1, + ".clk": 6, + ".S": 6, + ".clk_i": 1, + "this": 2, + ".BITS": 1, + "o": 6, + ".horiz_sync": 1, + ".vcursor": 2, + "read_mode": 3, + "pipe_in": 4, + "button": 25, + "lcd": 1, + ".cur_start": 2, + "&&": 3, + "wb_stb_i": 2, + "//": 117, + ".Q": 6, + "Mhz": 1, + ".en": 4, + "negedge": 8, + ".received_data": 1, + ".INIT": 6, + ".wb_we_i": 2, + "register": 6, + "dac_read_data": 3, + "ps": 8, + "@": 16, + "k": 2, + "BIT_WIDTH*": 5, + ".CLK_FREQUENCY": 1, + "case": 3, + "command_was_sent": 2, + "generate": 3, + "send": 2, + "csr_adr_i": 3, + "wb_tga_i": 5, + "Clock": 14, + ".csrm_dat_o": 1, + ".chain_four": 2, + "sign_extend": 3, + "i": 62, + ".num": 4, + "module": 18, + "PS2_STATE_4_END_DELAYED": 4, + "of": 8, + "debounced": 1, + "<": 47, + "PS2_STATE_0_IDLE": 10, + ".wbs_sel_i": 1, + ".pal_write": 2, + ".raster_op": 2, + "parameter": 7, + "ps2_mouse": 1, + "g": 2, + "vga": 1, + "PS2": 2, + "hcursor": 3, "dividend": 3, "divisor": 5, - "div_by_zero": 2, - "quotient": 2, - "quotient_correct": 1, - "BITS": 2, - "div_pipelined": 2, - ".BITS": 1, - ".dividend": 1, - ".divisor": 1, - ".quotient": 1, - ".div_by_zero": 1, - ".start": 2, - ".data_valid": 2, - "#50": 2, - "#1": 1, - "#1000": 1, - "finish": 2, - "t_sqrt_pipelined": 1, - ".INPUT_BITS": 1, - ".radicand": 1, - ".root": 1, - "#10000": 1, - "vga": 1, - "wb_clk_i": 6, - "Mhz": 1, - "VDU": 1, - "wb_rst_i": 6, - "wb_dat_i": 3, - "wb_dat_o": 2, - "wb_adr_i": 3, - "wb_we_i": 3, - "wb_tga_i": 5, - "wb_sel_i": 3, - "wb_stb_i": 2, - "wb_cyc_i": 2, - "wb_ack_o": 2, - "vga_red_o": 2, - "vga_green_o": 2, - "vga_blue_o": 2, - "horiz_sync": 2, - "vert_sync": 2, - "csrm_adr_o": 2, - "csrm_sel_o": 2, - "csrm_we_o": 2, - "csrm_dat_o": 2, - "csrm_dat_i": 2, - "csr_adr_i": 3, - "csr_stb_i": 2, - "conf_wb_dat_o": 3, - "conf_wb_ack_o": 3, - "mem_wb_dat_o": 3, - "mem_wb_ack_o": 3, - "csr_adr_o": 2, - "csr_dat_i": 3, - "csr_stb_o": 3, - "v_retrace": 3, + ".received_data_en": 1, + "e": 3, + "INPUT_BITS*i": 5, + "debounce": 6, + "set": 6, "vh_retrace": 3, - "w_vert_sync": 3, - "shift_reg1": 3, - "graphics_alpha": 4, - "memory_mapping1": 3, - "write_mode": 3, - "raster_op": 3, - "read_mode": 3, - "bitmask": 3, - "set_reset": 3, - "enable_set_reset": 3, - "map_mask": 3, - "x_dotclockdiv2": 3, - "chain_four": 3, - "read_map_select": 3, - "color_compare": 3, - "color_dont_care": 3, - "wbm_adr_o": 3, - "wbm_sel_o": 3, - "wbm_we_o": 3, - "wbm_dat_o": 3, - "wbm_dat_i": 3, - "wbm_stb_o": 3, - "wbm_ack_i": 3, - "stb": 4, - "cur_start": 3, - "cur_end": 3, - "start_addr": 2, - "vcursor": 3, - "hcursor": 3, - "horiz_total": 3, - "end_horiz": 3, - "st_hor_retr": 3, - "end_hor_retr": 3, - "vert_total": 3, - "end_vert": 3, - "st_ver_retr": 3, - "end_ver_retr": 3, - "pal_addr": 3, - "pal_we": 3, - "pal_read": 3, - "pal_write": 3, - "dac_we": 3, - "dac_read_data_cycle": 3, - "dac_read_data_register": 3, - "dac_read_data": 3, - "dac_write_data_cycle": 3, - "dac_write_data_register": 3, - "dac_write_data": 3, - "vga_config_iface": 1, - "config_iface": 1, - ".wb_clk_i": 2, - ".wb_rst_i": 2, - ".wb_dat_i": 2, - ".wb_dat_o": 2, - ".wb_adr_i": 2, - ".wb_we_i": 2, - ".wb_sel_i": 2, - ".wb_stb_i": 2, - ".wb_ack_o": 2, - ".shift_reg1": 2, - ".graphics_alpha": 2, - ".memory_mapping1": 2, - ".write_mode": 2, - ".raster_op": 2, - ".read_mode": 2, - ".bitmask": 2, - ".set_reset": 2, - ".enable_set_reset": 2, - ".map_mask": 2, - ".x_dotclockdiv2": 2, - ".chain_four": 2, - ".read_map_select": 2, - ".color_compare": 2, - ".color_dont_care": 2, - ".pal_addr": 2, - ".pal_we": 2, - ".pal_read": 2, - ".pal_write": 2, - ".dac_we": 2, - ".dac_read_data_cycle": 2, - ".dac_read_data_register": 2, - ".dac_read_data": 2, - ".dac_write_data_cycle": 2, - ".dac_write_data_register": 2, - ".dac_write_data": 2, - ".cur_start": 2, - ".cur_end": 2, - ".start_addr": 1, - ".vcursor": 2, - ".hcursor": 2, - ".horiz_total": 2, - ".end_horiz": 2, - ".st_hor_retr": 2, ".end_hor_retr": 2, - ".vert_total": 2, - ".end_vert": 2, - ".st_ver_retr": 2, - ".end_ver_retr": 2, - ".v_retrace": 2, - ".vh_retrace": 2, - "vga_lcd": 1, - "lcd": 1, - ".rst": 1, - ".csr_adr_o": 1, - ".csr_dat_i": 1, - ".csr_stb_o": 1, - ".vga_red_o": 1, - ".vga_green_o": 1, - ".vga_blue_o": 1, - ".horiz_sync": 1, - ".vert_sync": 1, - "vga_cpu_mem_iface": 1, - "cpu_mem_iface": 1, - ".wbs_adr_i": 1, - ".wbs_sel_i": 1, - ".wbs_we_i": 1, - ".wbs_dat_i": 1, - ".wbs_dat_o": 1, - ".wbs_stb_i": 1, - ".wbs_ack_o": 1, - ".wbm_adr_o": 1, - ".wbm_sel_o": 1, - ".wbm_we_o": 1, - ".wbm_dat_o": 1, - ".wbm_dat_i": 1, - ".wbm_stb_o": 1, - ".wbm_ack_i": 1, - "vga_mem_arbitrer": 1, - "mem_arbitrer": 1, - ".clk_i": 1, - ".rst_i": 1, - ".csr_adr_i": 1, - ".csr_dat_o": 1, - ".csr_stb_i": 1, - ".csrm_adr_o": 1, - ".csrm_sel_o": 1, - ".csrm_we_o": 1, - ".csrm_dat_o": 1, - ".csrm_dat_i": 1 - }, - "VHDL": { - "-": 2, - "VHDL": 1, - "example": 1, - "file": 1, - "library": 1, - "ieee": 1, - ";": 7, - "use": 1, - "ieee.std_logic_1164.all": 1, - "entity": 2, - "inverter": 2, - "is": 2, - "port": 1, - "(": 1, - "a": 2, - "in": 1, - "std_logic": 2, - "b": 2, - "out": 1, - ")": 1, - "end": 2, - "architecture": 2, - "rtl": 1, - "of": 1, - "begin": 1, - "<": 1, - "not": 1 - }, - "VimL": { - "no": 1, - "toolbar": 1, - "set": 7, - "guioptions": 1, - "-": 1, - "T": 1, - "nocompatible": 1, - "ignorecase": 1, - "incsearch": 1, - "smartcase": 1, - "showmatch": 1, - "showcmd": 1, - "syntax": 1, - "on": 1 - }, - "Visual Basic": { - "VERSION": 1, - "CLASS": 1, - "BEGIN": 1, - "MultiUse": 1, - "-": 6, - "NotPersistable": 1, - "DataBindingBehavior": 1, - "vbNone": 1, - "MTSTransactionMode": 1, - "*************************************************************************************************************************************************************************************************************************************************": 2, - "Copyright": 1, - "(": 14, - "c": 1, - ")": 14, - "David": 1, - "Briant": 1, - "All": 1, - "rights": 1, - "reserved": 1, - "Option": 1, - "Explicit": 1, - "Private": 25, - "Declare": 3, - "Function": 5, - "apiSetProp": 4, - "Lib": 3, - "Alias": 3, - "ByVal": 6, - "hwnd": 2, - "As": 34, - "Long": 10, - "lpString": 2, - "String": 13, - "hData": 1, - "apiGlobalAddAtom": 3, - "apiSetForegroundWindow": 1, - "myMouseEventsForm": 5, - "fMouseEventsForm": 2, - "WithEvents": 3, - "myAST": 3, - "cTP_AdvSysTray": 2, - "Attribute": 3, - "myAST.VB_VarHelpID": 1, - "myClassName": 2, - "myWindowName": 2, - "Const": 9, - "TEN_MILLION": 1, - "Single": 1, - "myListener": 1, - "VLMessaging.VLMMMFileListener": 1, - "myListener.VB_VarHelpID": 1, - "myMMFileTransports": 2, - "VLMessaging.VLMMMFileTransports": 1, - "myMMFileTransports.VB_VarHelpID": 1, - "myMachineID": 1, - "myRouterSeed": 1, - "myRouterIDsByMMTransportID": 1, - "New": 6, - "Dictionary": 3, - "myMMTransportIDsByRouterID": 2, - "myDirectoryEntriesByIDString": 1, - "GET_ROUTER_ID": 1, - "GET_ROUTER_ID_REPLY": 1, - "REGISTER_SERVICE": 1, - "REGISTER_SERVICE_REPLY": 1, - "UNREGISTER_SERVICE": 1, - "UNREGISTER_SERVICE_REPLY": 1, - "GET_SERVICES": 1, - "GET_SERVICES_REPLY": 1, - "Initialize": 1, - "/": 1, - "Release": 1, - "hide": 1, - "us": 1, - "from": 1, - "the": 3, - "Applications": 1, - "list": 1, - "in": 1, - "Windows": 1, - "Task": 1, - "Manager": 1, - "App.TaskVisible": 1, - "False": 1, - "create": 1, - "tray": 1, - "icon": 1, - "Set": 5, - "myAST.create": 1, - "myMouseEventsForm.icon": 1, - "make": 1, - "myself": 1, - "easily": 1, - "found": 1, - "myMouseEventsForm.hwnd": 3, - "End": 7, - "Sub": 7, - "shutdown": 1, - "myAST.destroy": 1, - "Nothing": 2, - "Unload": 1, - "myAST_RButtonUp": 1, - "Dim": 1, - "epm": 1, - "cTP_EasyPopupMenu": 1, - "menuItemSelected": 1, - "epm.addMenuItem": 3, - "MF_STRING": 3, - "epm.addSubmenuItem": 2, - "MF_SEPARATOR": 1, - "MF_CHECKED": 1, - "route": 2, - "to": 1, - "a": 1, - "remote": 1, - "machine": 1, - "Else": 1, - "for": 1, - "moment": 1, - "just": 1, - "between": 1, - "MMFileTransports": 1, - "If": 3, - "myMMTransportIDsByRouterID.Exists": 1, - "message.toAddress.RouterID": 2, - "Then": 1, - "transport": 1, - "transport.send": 1, - "messageToBytes": 1, - "message": 1, - "directoryEntryIDString": 2, - "serviceType": 2, - "address": 1, - "VLMAddress": 1, - "&": 7, - "address.MachineID": 1, - "address.RouterID": 1, - "address.AgentID": 1, - "myMMFileTransports_disconnecting": 1, - "id": 1, - "oReceived": 2, - "Boolean": 1, - "True": 1 - }, - "Volt": { - "module": 1, - "main": 2, - ";": 53, - "import": 7, - "core.stdc.stdio": 1, - "core.stdc.stdlib": 1, - "watt.process": 1, - "watt.path": 1, - "results": 1, - "list": 1, - "cmd": 1, - "int": 8, - "(": 37, - ")": 37, - "{": 12, - "auto": 6, - "cmdGroup": 2, - "new": 3, - "CmdGroup": 1, - "bool": 4, - "printOk": 2, - "true": 4, - "printImprovments": 2, - "printFailing": 2, - "printRegressions": 2, - "string": 1, - "compiler": 3, - "getEnv": 1, - "if": 7, - "is": 2, - "null": 3, - "printf": 6, - ".ptr": 14, - "return": 2, - "-": 3, - "}": 12, - "///": 1, - "@todo": 1, - "Scan": 1, + ".ps2_clk": 1, "for": 4, - "files": 1, - "tests": 2, - "testList": 1, - "total": 5, - "passed": 5, - "failed": 5, - "improved": 3, - "regressed": 6, - "rets": 5, - "Result": 2, - "[": 6, - "]": 6, - "tests.length": 3, - "size_t": 3, - "i": 14, - "<": 3, - "+": 14, - ".runTest": 1, - "cmdGroup.waitAll": 1, - "ret": 1, - "ret.ok": 1, - "cast": 5, - "ret.hasPassed": 4, - "&&": 2, - "ret.test.ptr": 4, - "ret.msg.ptr": 4, - "else": 3, - "fflush": 2, - "stdout": 1, - "xml": 8, - "fopen": 1, - "fprintf": 2, - "rets.length": 1, - ".xmlLog": 1, - "fclose": 1, - "rate": 2, - "float": 2, - "/": 1, - "*": 1, - "f": 1, - "double": 1 - }, - "wisp": { - ";": 199, - "#": 2, - "wisp": 6, - "Wisp": 13, - "is": 20, - "homoiconic": 1, - "JS": 17, - "dialect": 1, - "with": 6, - "a": 24, - "clojure": 2, - "syntax": 2, - "s": 7, - "-": 33, - "expressions": 6, - "and": 9, - "macros.": 1, - "code": 3, - "compiles": 1, - "to": 21, - "human": 1, - "readable": 1, - "javascript": 1, - "which": 3, - "one": 3, - "of": 16, - "they": 3, - "key": 3, - "differences": 1, - "from": 2, - "clojurescript.": 1, - "##": 2, - "data": 1, - "structures": 1, - "nil": 4, - "just": 3, - "like": 2, - "js": 1, - "undefined": 1, - "differenc": 1, - "that": 7, - "it": 10, - "shortcut": 1, - "for": 5, - "void": 2, - "(": 77, - ")": 75, - "in": 16, - "JS.": 2, - "Booleans": 1, - "booleans": 2, - "true": 6, - "/": 1, - "false": 2, - "are": 14, - "Numbers": 1, - "numbers": 2, - "Strings": 2, - "strings": 3, - "can": 13, - "be": 15, - "multiline": 1, - "Characters": 2, - "sugar": 1, - "single": 1, - "char": 1, - "Keywords": 3, - "symbolic": 2, - "identifiers": 2, - "evaluate": 2, - "themselves.": 1, - "keyword": 1, - "Since": 1, - "string": 1, - "constats": 1, - "fulfill": 1, - "this": 2, - "purpose": 2, - "keywords": 1, - "compile": 3, - "equivalent": 2, - "strings.": 1, - "window.addEventListener": 1, - "load": 1, - "handler": 1, - "invoked": 2, - "as": 4, - "functions": 8, - "desugars": 1, - "plain": 2, - "associated": 2, - "value": 2, - "access": 1, - "bar": 4, - "foo": 6, - "[": 22, - "]": 22, - "Vectors": 1, - "vectors": 1, - "arrays.": 1, - "Note": 3, - "Commas": 2, - "white": 1, - "space": 1, - "&": 6, - "used": 1, - "if": 7, - "desired": 1, - "Maps": 2, - "hash": 1, - "maps": 1, - "objects.": 1, - "unlike": 1, - "keys": 1, - "not": 4, - "arbitary": 1, - "types.": 1, - "{": 4, - "beep": 1, - "bop": 1, - "}": 4, - "optional": 2, - "but": 7, - "come": 1, - "handy": 1, - "separating": 1, - "pairs.": 1, - "b": 5, - "In": 5, - "future": 2, - "JSONs": 1, - "may": 1, - "made": 2, - "compatible": 1, - "map": 3, - "syntax.": 1, - "Lists": 1, - "You": 1, - "up": 1, - "lists": 1, - "representing": 1, - "expressions.": 1, - "The": 1, - "first": 4, - "item": 2, - "the": 9, - "expression": 6, - "function": 7, - "being": 1, - "rest": 7, - "items": 2, - "arguments.": 2, - "baz": 2, - "Conventions": 1, - "puts": 1, - "lot": 2, - "effort": 1, - "making": 1, - "naming": 1, - "conventions": 3, - "transparent": 1, - "by": 2, - "encouraning": 1, - "lisp": 1, - "then": 1, - "translating": 1, - "them": 1, - "dash": 1, - "delimited": 1, - "dashDelimited": 1, - "predicate": 1, - "isPredicate": 1, - "__privates__": 1, - "list": 2, - "vector": 1, - "listToVector": 1, - "As": 1, - "side": 2, - "effect": 1, - "some": 2, - "names": 1, - "expressed": 3, - "few": 1, - "ways": 1, - "although": 1, - "third": 2, - "expression.": 1, - "<": 1, - "number": 3, - "Else": 1, - "missing": 1, - "conditional": 1, - "evaluates": 2, - "result": 2, - "will": 6, - ".": 6, - "monday": 1, - "today": 1, - "Compbining": 1, - "everything": 1, - "an": 1, - "sometimes": 1, - "might": 1, - "want": 2, - "compbine": 1, - "multiple": 1, - "into": 2, - "usually": 3, - "evaluating": 1, - "have": 2, - "effects": 1, - "do": 4, - "console.log": 2, - "+": 9, - "Also": 1, - "special": 4, - "form": 10, - "many.": 1, - "If": 2, - "evaluation": 1, - "nil.": 1, - "Bindings": 1, - "Let": 1, - "containing": 1, - "lexical": 1, - "context": 1, - "simbols": 1, - "bindings": 1, - "forms": 1, - "bound": 1, - "their": 2, - "respective": 1, - "results.": 1, - "let": 2, - "c": 1, - "Functions": 1, - "fn": 15, - "x": 22, - "named": 1, - "similar": 2, - "increment": 1, - "also": 2, - "contain": 1, - "documentation": 1, - "metadata.": 1, - "Docstring": 1, - "metadata": 1, - "presented": 1, - "compiled": 2, - "yet": 1, - "comments": 1, - "function.": 1, - "incerement": 1, - "added": 1, - "makes": 1, - "capturing": 1, - "arguments": 7, - "easier": 1, - "than": 1, - "argument": 1, - "follows": 1, - "simbol": 1, - "capture": 1, - "all": 4, - "args": 1, - "array.": 1, - "rest.reduce": 1, - "sum": 3, - "Overloads": 1, - "overloaded": 1, - "depending": 1, - "on": 1, - "take": 2, - "without": 2, - "introspection": 1, - "version": 1, - "y": 6, - "more": 3, - "more.reduce": 1, - "does": 1, - "has": 2, - "variadic": 1, - "overload": 1, - "passed": 1, - "throws": 1, - "exception.": 1, - "Other": 1, - "Special": 1, - "Forms": 1, - "Instantiation": 1, - "type": 2, - "instantiation": 1, - "consice": 1, - "needs": 1, - "suffixed": 1, - "character": 1, - "Type.": 1, - "options": 2, - "More": 1, - "verbose": 1, - "there": 1, - "new": 2, - "Class": 1, - "Method": 1, - "calls": 3, - "method": 2, - "no": 1, - "different": 1, - "Any": 1, - "quoted": 1, - "prevent": 1, - "doesn": 1, - "t": 1, - "unless": 5, - "or": 2, - "macro": 7, - "try": 1, - "implemting": 1, - "understand": 1, - "use": 2, - "case": 1, - "We": 1, - "execute": 1, - "body": 4, - "condition": 4, - "defn": 2, - "Although": 1, - "following": 2, - "log": 1, - "anyway": 1, - "since": 1, - "exectued": 1, - "before": 1, - "called.": 1, - "Macros": 2, - "solve": 1, - "problem": 1, - "because": 1, - "immediately.": 1, - "Instead": 1, - "you": 1, - "get": 2, - "choose": 1, - "when": 1, - "evaluated.": 1, - "return": 1, - "instead.": 1, - "defmacro": 3, - "less": 1, - "how": 1, - "build": 1, - "implemented.": 1, - "define": 4, - "name": 2, - "def": 1, - "@body": 1, - "Now": 1, - "we": 2, - "above": 1, - "defined": 1, - "expanded": 2, - "time": 1, - "resulting": 1, - "diff": 1, - "program": 1, - "output.": 1, - "print": 1, - "message": 2, - ".log": 1, - "console": 1, - "Not": 1, - "macros": 2, - "via": 2, - "templating": 1, - "language": 1, - "available": 1, - "at": 1, - "hand": 1, - "assemble": 1, - "form.": 1, - "For": 2, - "instance": 1, - "ease": 1, - "functional": 1, - "chanining": 1, - "popular": 1, - "chaining.": 1, - "example": 1, - "API": 1, - "pioneered": 1, - "jQuery": 1, - "very": 2, - "common": 1, - "open": 2, - "target": 1, - "keypress": 2, - "filter": 2, - "isEnterKey": 1, - "getInputText": 1, - "reduce": 3, - "render": 2, - "Unfortunately": 1, - "though": 1, - "requires": 1, - "need": 1, - "methods": 1, - "dsl": 1, - "object": 1, - "limited.": 1, - "Making": 1, - "party": 1, - "second": 1, - "class.": 1, - "Via": 1, - "achieve": 1, - "chaining": 1, - "such": 1, - "tradeoffs.": 1, - "operations": 3, - "operation": 3, - "cons": 2, - "tagret": 1, - "enter": 1, - "input": 1, - "text": 1 - }, - "XC": { - "int": 2, - "main": 1, - "(": 1, - ")": 1, - "{": 2, - "x": 3, - ";": 4, - "chan": 1, + "COUNT": 4, + "hex_group3": 1, + ".csrm_dat_i": 1, + "has": 1, + "s0": 1, + "state": 6, + "endmodule": 18, "c": 3, - "par": 1, - "<:>": 1, - "0": 1, - "}": 2, - "return": 1 - }, - "XML": { - "": 3, - "version=": 4, - "": 1, - "name=": 223, - "xmlns": 2, - "ea=": 2, - "": 2, - "This": 21, - "easyant": 3, - "module.ant": 1, - "sample": 2, - "file": 3, - "is": 123, - "optionnal": 1, - "and": 44, - "designed": 1, - "to": 164, - "customize": 1, - "your": 8, - "build": 1, - "with": 23, - "own": 2, - "specific": 8, - "target.": 1, - "": 2, - "": 2, - "": 2, - "my": 2, - "awesome": 1, - "additionnal": 1, - "target": 6, - "": 2, - "": 2, - "extensionOf=": 1, - "i": 2, - "would": 2, - "love": 1, - "could": 1, - "easily": 1, - "plug": 1, - "pre": 1, - "compile": 1, - "step": 1, - "": 1, - "": 1, - "": 1, - "organisation=": 3, - "module=": 3, - "revision=": 3, - "status=": 1, - "this": 77, - "a": 127, - "module.ivy": 1, - "for": 59, - "java": 1, - "standard": 1, - "application": 2, - "": 1, - "": 1, - "value=": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 2, - "visibility=": 2, - "description=": 2, - "": 1, - "": 1, - "": 1, - "org=": 1, - "rev=": 1, - "conf=": 1, - "default": 9, - "junit": 2, - "test": 7, - "-": 49, - "/": 6, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "ReactiveUI": 2, - "": 1, - "": 1, - "": 1, - "": 120, - "": 120, - "IObservedChange": 5, - "generic": 3, - "interface": 4, - "that": 94, - "replaces": 1, - "the": 260, - "non": 1, - "PropertyChangedEventArgs.": 1, - "Note": 7, - "it": 16, - "used": 19, - "both": 2, - "Changing": 5, - "(": 52, - "i.e.": 23, - ")": 45, - "Changed": 4, - "Observables.": 2, - "In": 6, - "future": 2, - "will": 65, - "be": 57, - "Covariant": 1, - "which": 12, - "allow": 1, - "simpler": 1, - "casting": 1, - "between": 15, - "changes.": 2, - "": 121, - "": 120, - "The": 74, - "object": 42, - "has": 16, - "raised": 1, - "change.": 12, - "name": 7, - "of": 75, - "property": 74, - "changed": 18, - "on": 35, - "Sender.": 1, - "value": 44, - "changed.": 9, - "IMPORTANT": 1, - "NOTE": 1, - "often": 3, - "not": 9, - "set": 41, - "performance": 1, - "reasons": 1, - "unless": 1, - "you": 20, - "have": 17, - "explicitly": 1, - "requested": 1, - "an": 88, - "Observable": 56, - "via": 8, - "method": 34, - "such": 5, - "as": 25, - "ObservableForProperty.": 1, - "To": 4, - "retrieve": 3, - "use": 5, - "Value": 3, - "extension": 2, - "method.": 2, - "IReactiveNotifyPropertyChanged": 6, - "represents": 4, - "extended": 1, - "version": 3, - "INotifyPropertyChanged": 1, - "also": 17, - "exposes": 1, - "IEnableLogger": 1, - "dummy": 1, - "attaching": 1, - "any": 11, - "class": 11, - "give": 1, - "access": 3, - "Log": 2, - "When": 5, - "called": 5, - "fire": 11, - "change": 26, - "notifications": 22, - "neither": 3, - "traditional": 3, - "nor": 3, - "until": 7, - "return": 11, - "disposed.": 3, - "": 36, - "An": 26, - "when": 38, - "disposed": 4, - "reenables": 3, - "notifications.": 5, - "": 36, - "Represents": 4, - "fires": 6, - "*before*": 2, - "about": 5, - "should": 10, - "duplicate": 2, - "if": 27, - "same": 8, - "multiple": 6, - "times.": 4, - "*after*": 2, - "TSender": 1, - "helper": 5, - "adds": 2, - "typed": 2, - "versions": 2, - "Changed.": 1, - "IReactiveCollection": 3, - "collection": 27, - "can": 11, - "notify": 3, - "its": 4, - "contents": 2, - "are": 13, - "either": 1, - "items": 27, - "added/removed": 1, - "or": 24, - "itself": 2, - "changes": 13, - ".": 20, - "It": 1, - "important": 6, - "implement": 5, - "Changing/Changed": 1, - "from": 12, - "semantically": 3, - "Fires": 14, - "added": 6, - "once": 4, - "per": 2, - "item": 19, - "added.": 4, - "Functions": 2, - "add": 2, - "AddRange": 2, - "provided": 14, - "was": 6, - "before": 8, - "going": 4, - "collection.": 6, - "been": 5, - "removed": 4, - "providing": 20, - "removed.": 4, - "whenever": 18, - "number": 9, - "in": 45, - "new": 10, - "Count.": 4, - "previous": 2, - "Provides": 4, - "Item": 4, - "implements": 8, - "IReactiveNotifyPropertyChanged.": 4, - "only": 18, - "enabled": 8, - "ChangeTrackingEnabled": 2, - "True.": 2, - "Enables": 2, - "ItemChanging": 2, - "ItemChanged": 2, - "properties": 29, - ";": 10, - "implementing": 2, - "rebroadcast": 2, - "through": 3, - "ItemChanging/ItemChanged.": 2, - "T": 1, - "type": 23, - "specified": 7, - "Observables": 4, - "IMessageBus": 1, - "act": 2, - "simple": 2, - "way": 2, - "ViewModels": 3, - "other": 9, - "objects": 4, - "communicate": 2, - "each": 7, - "loosely": 2, - "coupled": 2, - "way.": 2, - "Specifying": 2, - "messages": 22, - "go": 2, - "where": 4, - "done": 2, - "combination": 2, - "Type": 9, - "message": 30, - "well": 2, - "additional": 3, - "parameter": 6, - "unique": 12, - "string": 13, - "distinguish": 12, - "arbitrarily": 2, - "by": 13, - "client.": 2, - "Listen": 4, - "provides": 6, - "Message": 2, - "RegisterMessageSource": 4, - "SendMessage.": 2, - "": 12, - "listen": 6, - "to.": 7, - "": 12, - "": 84, - "A": 19, - "identical": 11, - "types": 10, - "one": 27, - "purpose": 10, - "leave": 10, - "null.": 10, - "": 83, - "Determins": 2, - "particular": 2, - "registered.": 2, - "message.": 1, - "True": 6, - "posted": 3, - "Type.": 2, - "Registers": 3, - "representing": 20, - "stream": 7, - "send.": 4, - "Another": 2, - "part": 2, - "code": 4, - "then": 3, - "call": 5, - "Observable.": 6, - "subscribed": 2, - "sent": 2, - "out": 4, - "provided.": 5, - "Sends": 2, - "single": 2, - "using": 9, - "contract.": 2, - "Consider": 2, - "instead": 2, - "sending": 2, - "response": 2, - "events.": 2, - "actual": 2, - "send": 3, - "returns": 5, - "current": 10, - "logger": 2, - "allows": 15, - "log": 2, - "attached.": 1, - "data": 1, - "structure": 1, - "representation": 1, - "memoizing": 2, - "cache": 14, - "evaluate": 1, - "function": 13, - "but": 7, - "keep": 1, - "recently": 3, - "evaluated": 1, - "parameters.": 1, - "Since": 1, - "mathematical": 2, - "sense": 1, - "key": 12, - "*always*": 1, - "maps": 1, - "corresponding": 2, - "value.": 2, - "calculation": 8, - "function.": 6, - "returned": 2, - "Constructor": 2, - "whose": 7, - "results": 6, - "want": 2, - "Tag": 1, - "user": 2, - "defined": 1, - "size": 1, - "maintain": 1, - "after": 1, - "old": 1, - "start": 1, - "thrown": 1, - "out.": 1, - "result": 3, - "gets": 1, - "evicted": 2, - "because": 2, - "Invalidate": 2, - "full": 1, - "Evaluates": 1, - "returning": 1, - "cached": 2, - "possible": 1, - "pass": 2, - "optional": 2, - "parameter.": 1, - "Ensure": 1, - "next": 1, - "time": 3, - "queried": 1, - "called.": 1, - "all": 4, - "Returns": 5, - "values": 4, - "currently": 2, - "MessageBus": 3, - "bus.": 1, - "scheduler": 11, - "post": 2, - "RxApp.DeferredScheduler": 2, - "default.": 2, - "Current": 1, - "RxApp": 1, - "global": 1, - "object.": 3, - "ViewModel": 8, - "another": 3, - "s": 1, - "Return": 1, - "instance": 2, - "type.": 3, - "registered": 1, - "ObservableAsPropertyHelper": 6, - "help": 1, - "backed": 1, - "read": 3, - "still": 1, - "created": 2, - "directly": 1, - "more": 16, - "ToProperty": 2, - "ObservableToProperty": 1, - "methods.": 2, - "so": 1, - "output": 1, - "chained": 2, - "example": 2, - "property.": 12, - "Constructs": 4, - "base": 3, - "on.": 6, - "action": 2, - "take": 2, - "typically": 1, - "t": 2, - "bindings": 13, - "null": 4, - "OAPH": 2, - "at": 2, - "startup.": 1, - "initial": 28, - "normally": 6, - "Dispatcher": 3, - "based": 9, - "last": 1, - "Exception": 1, - "steps": 1, - "taken": 1, - "ensure": 3, - "never": 3, - "complete": 1, - "fail.": 1, - "Converts": 2, - "automatically": 3, - "onChanged": 2, - "raise": 2, - "notification.": 2, - "equivalent": 2, - "convenient.": 1, - "Expression": 7, - "initialized": 2, - "backing": 9, - "field": 10, - "ReactiveObject": 11, - "ObservableAsyncMRUCache": 2, - "memoization": 2, - "asynchronous": 4, - "expensive": 2, - "compute": 1, - "MRU": 1, - "fixed": 1, - "limit": 5, - "cache.": 5, - "guarantees": 6, - "given": 11, - "flight": 2, - "subsequent": 1, - "requests": 4, - "wait": 3, - "first": 1, - "empty": 1, - "web": 6, - "image": 1, - "receives": 1, - "two": 1, - "concurrent": 5, - "issue": 2, - "WebRequest": 1, - "does": 1, - "mean": 1, - "request": 3, - "Concurrency": 1, - "limited": 1, - "maxConcurrent": 1, - "too": 1, - "many": 1, - "operations": 6, - "progress": 1, - "further": 1, - "queued": 1, - "slot": 1, - "available.": 1, - "performs": 1, - "asyncronous": 1, - "async": 3, - "CPU": 1, - "Observable.Return": 1, - "may": 1, - "result.": 2, - "*must*": 1, - "equivalently": 1, - "input": 2, - "being": 1, - "memoized": 1, - "calculationFunc": 2, - "depends": 1, - "varables": 1, - "than": 5, - "unpredictable.": 1, - "reached": 2, - "discarded.": 4, - "maximum": 2, - "regardless": 2, - "caches": 2, - "server.": 2, - "clean": 1, - "up": 25, - "manage": 1, - "disk": 1, - "download": 1, - "save": 1, - "temporary": 1, - "folder": 1, - "onRelease": 1, - "delete": 1, - "file.": 1, - "run": 7, - "defaults": 1, - "TaskpoolScheduler": 2, - "Issues": 1, - "fetch": 1, - "operation.": 1, - "operation": 2, - "finishes.": 1, - "If": 6, - "immediately": 3, - "upon": 1, - "subscribing": 1, - "returned.": 2, - "provide": 2, - "synchronous": 1, - "AsyncGet": 1, - "resulting": 1, - "Works": 2, - "like": 2, - "SelectMany": 2, - "memoizes": 2, - "selector": 5, - "calls.": 2, - "addition": 3, - "no": 4, - "selectors": 2, - "running": 4, - "concurrently": 2, - "queues": 2, - "rest.": 2, - "very": 2, - "services": 2, - "avoid": 2, - "potentially": 2, - "spamming": 2, - "server": 2, - "hundreds": 2, - "requests.": 2, - "similar": 3, - "passed": 1, - "SelectMany.": 1, - "similarly": 1, - "ObservableAsyncMRUCache.AsyncGet": 1, - "must": 2, - "sense.": 1, - "flattened": 2, - "selector.": 2, - "overload": 2, - "useful": 2, - "making": 3, - "service": 1, - "several": 1, - "places": 1, - "paths": 1, - "already": 1, - "configured": 1, - "ObservableAsyncMRUCache.": 1, - "notification": 6, - "Attempts": 1, - "expression": 3, - "false": 2, - "expression.": 1, - "entire": 1, - "able": 1, - "followed": 1, - "otherwise": 1, - "Given": 3, - "fully": 3, - "filled": 1, - "SetValueToProperty": 1, - "apply": 3, - "target.property": 1, - "This.GetValue": 1, - "observed": 1, - "onto": 1, - "convert": 2, - "stream.": 3, - "ValueIfNotDefault": 1, - "filters": 1, - "BindTo": 1, - "takes": 1, - "applies": 1, - "Conceptually": 1, - "child": 2, - "without": 1, - "checks.": 1, - "set.": 3, - "x.Foo.Bar.Baz": 1, - "disconnects": 1, - "binding.": 1, - "ReactiveCollection.": 1, - "ReactiveCollection": 1, - "existing": 3, - "list.": 2, - "list": 1, - "populate": 1, - "anything": 2, - "Change": 2, - "Tracking": 2, - "Creates": 3, - "adding": 2, - "completes": 4, - "optionally": 2, - "ensuring": 2, - "delay.": 2, - "withDelay": 2, - "leak": 2, - "Timer.": 2, - "always": 4, - "UI": 2, - "thread.": 3, - "put": 2, - "into": 2, - "populated": 4, - "faster": 2, - "delay": 2, - "Select": 3, - "item.": 3, - "creating": 2, - "collections": 1, - "updated": 1, - "respective": 1, - "Model": 1, - "updated.": 1, - "Collection.Select": 1, - "mirror": 1, - "ObservableForProperty": 14, - "ReactiveObject.": 1, - "unlike": 13, - "Selector": 1, - "classes": 2, - "INotifyPropertyChanged.": 1, - "monitor": 1, - "RaiseAndSetIfChanged": 2, - "Setter": 2, - "write": 2, - "assumption": 4, - "named": 2, - "RxApp.GetFieldNameForPropertyNameFunc.": 2, - "almost": 2, - "keyword.": 2, - "newly": 2, - "intended": 5, - "Silverlight": 2, - "WP7": 1, - "reflection": 1, - "cannot": 1, - "private": 1, - "field.": 1, - "Reference": 1, - "Use": 13, - "custom": 4, - "raiseAndSetIfChanged": 1, - "doesn": 1, - "x": 1, - "x.SomeProperty": 1, - "suffice.": 1, - "RaisePropertyChanging": 2, - "mock": 4, - "scenarios": 4, - "manually": 4, - "fake": 4, - "invoke": 4, - "raisePropertyChanging": 4, - "faking": 4, - "RaisePropertyChanged": 2, - "helps": 1, - "make": 2, - "them": 1, - "compatible": 1, - "Rx.Net.": 1, - "declare": 1, - "initialize": 1, - "derive": 1, - "properties/methods": 1, - "MakeObjectReactiveHelper.": 1, - "InUnitTestRunner": 1, - "attempts": 1, - "determine": 1, - "heuristically": 1, - "unit": 3, - "framework.": 1, - "we": 1, - "determined": 1, - "framework": 1, - "running.": 1, - "GetFieldNameForProperty": 1, - "convention": 2, - "GetFieldNameForPropertyNameFunc.": 1, - "needs": 1, - "found.": 1, - "name.": 1, - "DeferredScheduler": 1, - "schedule": 2, - "work": 2, - "normal": 2, - "mode": 2, - "DispatcherScheduler": 1, - "Unit": 1, - "Test": 1, - "Immediate": 1, - "simplify": 1, - "writing": 1, - "common": 1, - "tests.": 1, - "background": 1, - "modes": 1, - "TPL": 1, - "Task": 1, - "Pool": 1, - "Threadpool": 1, - "Set": 3, - "provider": 1, - "usually": 1, - "entry": 1, - "MessageBus.Current.": 1, - "override": 1, - "naming": 1, - "one.": 1, - "WhenAny": 12, - "observe": 12, - "constructors": 12, - "need": 12, - "setup.": 12, - "": 1, - "": 1 - }, - "XProc": { - "": 1, - "version=": 2, - "encoding=": 1, - "": 1, - "xmlns": 2, - "p=": 1, - "c=": 1, - "": 1, - "port=": 2, - "": 1, - "": 1, - "Hello": 1, - "world": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1 - }, - "XQuery": { - "(": 38, - "-": 486, - "xproc.xqm": 1, - "core": 1, - "xqm": 1, - "contains": 1, - "entry": 2, - "points": 1, - "primary": 1, - "eval": 3, - "step": 5, - "function": 3, - "and": 3, - "control": 1, - "functions.": 1, - ")": 38, - "xquery": 1, - "version": 1, - "encoding": 1, - ";": 25, - "module": 6, - "namespace": 8, - "xproc": 17, - "declare": 24, - "namespaces": 5, - "p": 2, - "c": 1, - "err": 1, - "imports": 1, - "import": 4, - "util": 1, - "at": 4, - "const": 1, - "parse": 8, - "u": 2, - "options": 2, - "boundary": 1, - "space": 1, - "preserve": 1, - "option": 1, - "saxon": 1, - "output": 1, - "functions": 1, - "variable": 13, - "run": 2, - "run#6": 1, - "choose": 1, - "try": 1, - "catch": 1, - "group": 1, - "for": 1, - "each": 1, - "viewport": 1, - "library": 1, - "pipeline": 8, - "list": 1, - "all": 1, - "declared": 1, - "enum": 3, - "{": 5, - "": 1, - "name=": 1, - "ns": 1, - "": 1, - "}": 5, - "": 1, - "": 1, - "point": 1, - "stdin": 1, - "dflag": 1, - "tflag": 1, - "bindings": 2, - "STEP": 3, - "I": 1, - "preprocess": 1, - "let": 6, - "validate": 1, - "explicit": 3, - "AST": 2, - "name": 1, - "type": 1, - "ast": 1, - "element": 1, - "parse/@*": 1, - "sort": 1, - "parse/*": 1, - "II": 1, - "eval_result": 1, - "III": 1, - "serialize": 1, - "return": 2, - "results": 1, - "serialized_result": 2 - }, - "XSLT": { - "": 1, - "version=": 2, - "": 1, - "xmlns": 1, - "xsl=": 1, - "": 1, - "match=": 1, - "": 1, - "": 1, - "

": 1, - "My": 1, - "CD": 1, - "Collection": 1, - "

": 1, - "
": 1, - "border=": 1, - "": 2, - "bgcolor=": 1, - "": 2, - "Artist": 1, - "": 2, - "": 1, - "select=": 3, - "": 2, - "": 1, - "
": 2, - "Title": 1, - "
": 2, - "": 2, - "
": 1, - "": 1, - "": 1, - "
": 1, - "": 1 - }, - "Xtend": { - "package": 2, - "example2": 1, - "import": 7, - "org.junit.Test": 2, - "static": 4, - "org.junit.Assert.*": 2, - "class": 4, - "BasicExpressions": 2, - "{": 14, - "@Test": 7, - "def": 7, - "void": 7, - "literals": 5, - "(": 42, - ")": 42, - "//": 11, - "string": 1, - "work": 1, - "with": 2, - "single": 1, - "or": 1, - "double": 2, - "quotes": 1, - "assertEquals": 14, - "number": 1, - "big": 1, - "decimals": 1, - "in": 2, - "this": 1, - "case": 1, - "+": 6, - "*": 1, - "bd": 3, - "boolean": 1, - "true": 1, - "false": 1, - "getClass": 1, - "typeof": 1, - "}": 13, - "collections": 2, - "There": 1, - "are": 1, - "various": 1, - "methods": 2, - "to": 1, - "create": 1, - "and": 1, - "numerous": 1, - "extension": 2, - "which": 1, - "make": 1, - "working": 1, - "them": 1, - "convenient.": 1, - "val": 9, - "list": 1, - "newArrayList": 2, - "list.map": 1, - "[": 9, - "toUpperCase": 1, - "]": 9, - ".head": 1, - "set": 1, - "newHashSet": 1, - "set.filter": 1, - "it": 2, - ".size": 2, - "map": 1, - "newHashMap": 1, - "-": 5, - "map.get": 1, - "controlStructures": 1, - "looks": 1, - "like": 1, - "Java": 1, - "if": 1, - ".length": 1, - "but": 1, - "foo": 1, - "bar": 1, - "Never": 2, - "happens": 3, - "text": 2, - "never": 1, - "s": 1, - "cascades.": 1, - "Object": 1, - "someValue": 2, - "switch": 1, - "Number": 1, - "String": 2, - "loops": 1, - "for": 2, - "loop": 2, - "var": 1, - "counter": 8, - "i": 4, - "..": 1, - "while": 2, - "iterator": 1, - ".iterator": 2, - "iterator.hasNext": 1, - "iterator.next": 1, - "example6": 1, - "java.io.FileReader": 1, - "java.util.Set": 1, - "com.google.common.io.CharStreams.*": 1, - "Movies": 1, - "numberOfActionMovies": 1, - "movies.filter": 2, - "categories.contains": 1, - "yearOfBestMovieFrom80ies": 1, - ".contains": 1, - "year": 2, - ".sortBy": 1, - "rating": 3, - ".last.year": 1, - "sumOfVotesOfTop2": 1, - "long": 2, - "movies": 3, - "movies.sortBy": 1, - ".take": 1, - ".map": 1, - "numberOfVotes": 2, - ".reduce": 1, - "a": 2, - "b": 2, + "b1": 19, + ".set_reset": 2, + "vga_cpu_mem_iface": 1, + "#100": 1, + "value": 6, + "pal_write": 3, + "hex_group1": 1, + ".color_dont_care": 2, + "Data": 13, + "hex_display": 1, + "a": 5, + ".wbs_dat_o": 1, + "BIT_WIDTH*i": 2, + "memory_mapping1": 3, + ".CE": 6, + "pal_addr": 3, + "dsp_sel": 9, + ".C": 6, + "ps2_data_reg": 5, + ".data_valid": 2, + "error_communication_timed_out": 3, + ".reset_n": 3, + ".st_ver_retr": 2, + ".memory_mapping1": 2, + "received_data": 2, + "endcase": 3, + "wb_clk_i": 6, + "FIRE": 4, + "wbm_sel_o": 3, + "original": 3, + "]": 179, + "data_valid": 7, + "shift_reg1": 3, + "v_retrace": 3, + "wb_dat_o": 2, + ".dac_read_data_register": 2, + "pipe_gen": 6, + "vert_sync": 2, + ".vga_blue_o": 1, + ".dac_write_data_cycle": 2, + "[": 179, + ".wbs_dat_i": 1, + ".cur_end": 2, + ".map_mask": 2, + "INPUT_BITS*": 27, + "end_ver_retr": 3, + "wb_sel_i": 3, + "cout": 4, + "reset_n": 32, + "start": 12, + "unsigned": 2, + "pipeline_registers": 1, + "FDRSE": 6, + "div_by_zero": 2, + ".wbm_ack_i": 1, + "sign_extender": 1, + ".send_command": 1, + ".wb_ack_o": 2, + "st_hor_retr": 3, + "<=>": 4, + ".write_mode": 2, + "ns_ps2_transceiver": 13, + "wb_dat_i": 3, + "vert_total": 3, + "*": 4, + "ps2_dat": 3, + "wb_cyc_i": 2, + "bitmask": 3, + "cur_start": 3, + "start_receiving_data": 3, + "#50": 2, + "wbm_dat_o": 3, + "<<": 2, + "if": 23, + ".rst": 1, + "(": 378, + "cur_end": 3, + ".wb_sel_i": 2, + ".debounce": 1, + "h00": 1, + "propagation": 1, + "an": 6, + "horiz_total": 3, + "&": 6, + "mask_gen": 9, + "mouse": 1, + "wb_we_i": 3, + "OUTPUT_BITS": 14, + "integer": 1, + ".ps2_data": 1, + "set_reset": 3, + "csrm_we_o": 2, + "signal": 3, + "been": 1, + "Input": 2, "|": 2, - "_229": 1, - "new": 2, - "FileReader": 1, - ".readLines.map": 1, - "line": 1, - "segments": 1, - "line.split": 1, - "return": 1, - "Movie": 2, - "segments.next": 4, - "Integer": 1, - "parseInt": 1, - "Double": 1, - "parseDouble": 1, - "Long": 1, - "parseLong": 1, - "segments.toSet": 1, - "@Data": 1, - "title": 1, - "int": 1, - "Set": 1, - "": 1, - "categories": 1 + "DFF10": 1, + ".reset": 2, + "vga_config_iface": 1, + "COUNT_VALUE": 2, + "wbm_dat_i": 3, + "z": 7, + "opB": 3, + "pipeline_stage": 1, + "reset": 13, + "t_button_debounce": 1, + ".csr_dat_o": 1, + ".dac_write_data": 2, + "valid": 2, + "horiz_sync": 2, + "received_data_en": 4, + "wb_ack_o": 2, + "quotient": 2, + "ps2_clk_reg": 4, + "ps2_mouse_cmdout": 1, + "x": 41, + "Bidirectional": 2, + "vga_green_o": 2, + "radicand": 12, + ".wbm_adr_o": 1, + "#0.1": 8, + ".start_receiving_data": 1, + ".color_compare": 2, + ".read_map_select": 2, + "gen_sign_extend": 1, + "Wires": 1, + "timescale": 10, + ".divisor": 1, + "cycle": 1, + "wire": 67, + ".pal_addr": 2, + "hex3": 2, + "Machine": 1, + "Received": 1, + ".wbm_we_o": 1, + "wbm_stb_o": 3, + ".radicand": 1, + "wbm_we_o": 3, + ".the_command": 1, + ".csr_dat_i": 1, + "csrm_sel_o": 2, + "hex1": 2, + ".dac_write_data_register": 2, + "conf_wb_ack_o": 3, + "endgenerate": 3, + "Signal": 2, + "the_command": 2, + ".seg": 4, + "b11": 1, + ".csr_stb_o": 1, + "mem_wb_dat_o": 3, + "wb_adr_i": 3, + "vga_blue_o": 2, + "Command": 1, + ".shift_reg1": 2, + "e0": 1, + ".enable_set_reset": 2, + "mouse_cmdout": 1, + ".R": 6, + "end_hor_retr": 3, + "raster_op": 3, + "color_compare": 3, + "end_horiz": 3, + "#5": 3, + ".csrm_we_o": 1, + "CLK_FREQUENCY": 4, + "begin": 46, + "config_iface": 1, + "ps2_clk_posedge": 3, + ".pal_we": 2, + "to": 3, + "idle_counter": 4, + "mem_arbitrer": 1, + "num": 5, + "dac_write_data_register": 3, + "mem_wb_ack_o": 3, + "count": 6, + "l": 2, + "read_map_select": 3, + "new": 1, + ".csr_stb_i": 1, + "State": 1, + "last_ps2_clk": 4, + "map_mask": 3, + "dac_write_data_cycle": 3, + "j": 2, + "#1": 1, + ".graphics_alpha": 2, + ".dividend": 1, + ".rst_i": 1, + ".wb_adr_i": 2, + "#10000": 1, + ".root": 1, + "Outputs": 2, + "Registers": 2, + "cpu_mem_iface": 1, + ".div_by_zero": 1, + ".command_was_sent": 1, + "start_addr": 2, + "h": 2, + "sum": 5, + "send_command": 2, + "received": 1, + ".wbs_ack_o": 1, + ".bitmask": 2, + ".INPUT_BITS": 1, + "sending": 1, + ".button": 1, + "radicand_gen": 10, + ";": 287, + "stb": 4, + "Internal": 2, + "BIT_WIDTH": 5, + "OUTPUT_BITS*INPUT_BITS": 9, + "ps2_clk": 3, + "f": 2, + "finish": 2, + "csrm_dat_o": 2, + "wbm_adr_o": 3, + "initial": 3, + "////////////////////////////////////////////////////////////////////////////////": 14, + "always": 23, + ".vga_red_o": 1, + "assign": 23, + "ch": 1, + ".wbm_sel_o": 1, + ".end_horiz": 2, + "values": 3, + "s1": 1, + "div_pipelined": 2, + "d": 3, + "sign_extended_original": 2, + ".end_ver_retr": 2, + ".read_mode": 2, + "t_div_pipelined": 1, + "b0000": 1, + "chain_four": 3, + ".csr_adr_o": 1, + ".horiz_total": 2, + "hex_group2": 1, + "b0": 27, + "write_mode": 3, + "b": 3, + ".wbm_dat_o": 1, + "quotient_correct": 1, + "output": 42, + ".ps2_clk_negedge": 2, + "is": 4, + "odd": 1, + "s_ps2_transceiver": 8, + "hex_group0": 1, + ".D": 6, + "OUTPUT_WIDTH": 4, + "number": 2, + "end": 48, + "st_ver_retr": 3, + "Initial": 6, + "csrm_dat_i": 2, + "sqrt_pipelined": 3, + ".ps2_clk_posedge": 2 }, - "YAML": { - "gem": 1, - "-": 16, - "local": 1, - "gen": 1, - "rdoc": 2, - "run": 1, - "tests": 1, - "inline": 1, - "source": 1, + "Squirrel": { + "MoveTo": 1, + "type": 2, + "foreach": 1, + "table": 1, + "lang.org/#documentation": 1, + "newplayer": 1, + "base.constructor": 1, + "subtable": 1, + "Player": 2, + "z": 2, + "y": 2, + "x": 2, + ")": 10, + "i": 1, + "(": 10, + ";": 15, + "b": 1, + "+": 2, + "}": 10, + "]": 3, + "[": 3, + "a": 2, + "{": 10, + "-": 1, + "from": 1, + "null": 2, + "local": 3, + "function": 2, + "entityname": 4, + "class": 2, + "/////////////////////////////////////////////": 1, + "print": 2, + "in": 1, + "array": 3, + "constructor": 2, + "Entity": 3, + "newplayer.MoveTo": 1, + "extends": 1, + "name": 2, + "etype": 2, + "newz": 2, + "newy": 2, + "newx": 2, + "//example": 1, + "//www.squirrel": 1, + "DoDomething": 1, + "typeof": 1, + "val": 2, + "http": 1 + }, + "Shell": { + "opts": 1, + "pattern": 1, + "view": 2, + "lynx": 2, + "sbt_release_version": 2, + "does": 1, + "appendhistory": 2, + "quit": 2, + "ignoreboth": 2, + "/usr/sfw/bin": 4, + "clone": 5, + "pre": 1, + "sbt_artifactory_list": 2, + "rvm_is_not_a_shell_function": 2, + "//go.googlecode.com/files/go1.1.1.linux": 1, + "actually": 2, + "display": 2, + "config": 4, + "offline": 3, + "versionLine##build.scala.versions": 1, + "scala": 3, + "jvm_opts_file": 1, + "build_props_sbt": 3, + "java_home": 1, + "sbt_launch_dir": 3, + "##": 28, + "explicit": 1, + "dirname": 1, + "UID": 1, + "c699": 1, + "zless": 2, + "endif": 2, + "./project": 1, + "/": 2, + "github.com/gorilla/context/": 1, + "/go": 1, + "readline": 2, + "acquire_sbt_jar": 1, + "latest_29": 1, + "dotfiles": 1, + "man": 6, + "/.ivy2": 1, + "emacs": 2, + "realplay": 2, + "choice": 1, + "category": 1, + "t.go": 1, + "-": 391, + "function": 6, + "uncompress": 2, + "||": 12, + "/bin": 4, + "tar": 1, + "csh": 2, + "X": 54, + "symlinks": 1, + "script": 1, + "as": 2, + "DISPLAY": 2, + "argumentCount": 1, + "": 3, + "silent": 1, + "+": 1, + "/.bashrc": 3, + "gunzip": 2, + "ThisBuild": 1, + "": 1, + "download_url": 2, + "This": 1, + "bzgrep": 2, + "see": 4, + "iptables": 1, + "extglob": 2, + "": 1, + "versionString": 3, + "bare": 1, + "opt": 3, + "pushd": 2, + ")": 154, + "Debug": 1, + "log": 2, + "snapshots": 1, + "tools": 1, + "The": 1, + "vi": 2, + "##############################################################################": 16, + "user": 2, + "/usr/local": 1, + "combined": 1, + "verbose": 6, + "path": 13, + "launch": 1, + "erase": 2, + "sharing": 1, + "default": 4, + "wget": 2, + "bzcmp": 2, + "}": 61, + "#Where": 2, + "properties": 1, + "read": 1, + "precedence": 1, + "mode": 2, + "Error": 1, + "local": 22, + "mkdir": 2, + "%": 5, + "su": 2, + "dlog": 8, + "maybe": 1, + "P": 4, + "rehash": 2, + "#Append": 2, + "Fh": 2, + "shared": 1, + "level": 2, + "ef": 1, + "no": 16, + "{": 63, + "SHEBANG#!zsh": 2, + "latest_210": 1, + "system": 1, + "nocasematch": 1, + "galeon": 2, + "#": 53, + "residual_args": 4, + "update_build_props_sbt": 2, + "versions": 1, + "texi2dvi": 2, + "any": 1, + "pipe": 2, + "Solomon": 1, + "y": 5, + "same": 2, + "diff": 2, + "xmms": 2, + "sharehistory": 2, + "get_jvm_opts": 2, + "disk.": 1, + "L": 1, + "moving": 1, + "groups": 2, + "gv": 2, + "/usr/local/man": 2, + "addResidual": 2, + "noshare_opts": 1, + "rbenv": 2, + "rf": 1, + "help": 5, + "ogg123": 2, + "so": 1, + "..": 2, + "aliases": 2, + "rvim": 2, + "gt": 1, + "sbtargs": 3, + "u": 2, + "github.com/gorilla/mux/": 1, + "when": 2, + "build": 2, + "project": 1, + "project/build.properties": 9, + "repository": 3, + "package": 1, + "origin": 1, + "fi": 34, + "or": 3, + "update": 2, + "http": 3, + "fun": 2, + "bind": 4, + "ivy": 2, + "vlog": 1, + "s": 14, + "even": 3, + "iflast": 1, + "Updated": 1, + ".*": 2, + "/etc/apt/sources.list": 1, + "istrip": 2, + "command": 5, + "else": 10, + "fg": 2, + "Turn": 1, + "put": 1, + "usage": 2, + "F": 1, + "sbt_snapshot": 1, + "pdfjadetex": 2, + "cd..": 2, + "open": 1, + "perm": 6, + "sbt.version": 3, + "files": 1, + "/go/src/": 6, + "pull": 3, + "q": 8, + "umask": 2, + "fpath": 6, + "disown": 2, + "on": 4, + "make": 6, + "wine": 2, + "residuals": 1, + "insensitive": 1, + "which": 10, + "zcmp": 2, + "D": 2, + "/opt/local/bin": 2, + "gview": 2, + "make_snapshot_url": 2, + "o": 3, + "ubuntu": 1, + "this": 6, + "history": 18, + "J*": 1, + "highest.": 1, + "/usr": 1, + "then": 41, + "libev": 1, + "grep": 8, + "rupa/z.sh": 2, + "get": 6, + "codecache": 1, + "&&": 65, + "//": 3, + "pkgdesc": 1, + "zmore": 2, + "/opt/mysql/current/bin": 4, + "some": 1, + "jobs": 4, + "while": 3, + "gvim": 2, + "argumentCount=": 1, + "lowest": 1, + "tools.sbt": 3, + "printf": 4, + "rvm_ignore_rvmrc": 1, + "@": 3, + "amd64.tar.gz": 1, + "unset": 10, + "into": 3, + "ps": 2, + "cmd": 1, + "alert": 1, + "series": 1, + "ln": 1, + "k": 1, + "REV": 6, + "echo": 71, + "bash...": 2, + "case": 9, + "rgview": 2, + "dirpersiststore": 2, + "less": 2, + "JVM": 1, + "run": 13, + "rmdir": 2, + "entries": 2, + "color": 1, + "script_dir": 1, + "get_mem_opts": 3, + "scala_version": 3, + "zipinfo": 2, + "/usr/share/man": 2, + "ll": 2, + "i": 2, + "HISTIGNORE": 2, + "of": 6, + "sbt_url": 1, + "<": 2, + "GREP_OPTIONS": 1, + "filenames": 2, + "bzegrep": 2, + "tex": 2, + "us": 1, + "die": 2, + "#.": 2, + "HISTSIZE": 2, + "understand": 1, + "gives": 1, + "addResolver": 1, + "Disable": 1, + "continue": 1, + "Make": 2, + "IFS": 1, + "port.": 1, + "jvm": 2, + "java_cmd": 2, + "after": 2, + "alias": 42, + "edit": 2, + "order": 1, + "e": 4, + "texi2html": 2, + "with": 12, + "/.dotfiles/z": 4, + "zdiff": 2, + "stty": 2, + "esac": 7, + "jar_url": 1, + "matching": 1, + "Dm755": 1, + "set": 21, + "compress": 2, + "./build.sbt": 1, + "args": 2, + "target": 1, + "xpdf": 2, + "pkgver": 1, + "helptopic": 2, + "for": 7, + "helptopics": 2, + "stripped": 1, + "mpg123": 2, + "latex": 2, + "znew": 2, + "c": 2, + "CLICOLOR": 2, + "Ivy": 1, + "version0": 2, + "options": 8, + "version": 12, + "it": 2, + "completes": 10, + "value": 1, + "pi": 1, + "anything": 2, + "aviplay": 2, + "/.zsh_history": 2, + "lot": 1, + "precmd": 2, + "pkgrel": 1, + "intelligent": 2, + "bunzip2": 2, + "a": 12, + "docker": 1, + "automate": 1, + "stuff": 3, + "checkout": 3, + "Zsh": 2, + "url": 4, + "zgrep": 2, + "terminals": 2, + "name": 1, + "ver": 5, + "setting": 2, + "install": 8, + "/.profile": 2, + "/go/src/github.com/dotcloud/docker/docker": 1, + "vim": 2, + "pg": 2, + "fail": 1, + "rvm": 1, + "passwd": 2, + "mpg321": 2, + "not": 2, + "make_url": 3, + "rvm_path/scripts": 1, + "": 1, + "agnostic": 2, + "shell": 4, + "here": 1, + "pe": 1, + "default_jvm_opts": 1, + "init.stud": 1, + "acroread": 2, + "dillo": 2, + "runner": 1, + "SHEBANG#!bash": 8, + "]": 85, + "ggv": 2, + "playmidi": 2, + "w3m": 2, + "inc": 1, + "process_args": 2, + "addScalac": 2, + "way": 1, + "make_release_url": 2, + "in": 25, + "complete": 82, + "setopt": 8, + "provides": 1, + "0": 1, + "head": 1, + "/dev/null": 6, + "disk": 5, + "_gitname": 1, + "default_sbt_mem": 2, + "/usr/local/go/bin": 2, + "[": 85, + "elinks": 2, + "eq": 1, + "debug": 11, + "print_help": 2, + "URL": 1, + "PREFIX": 1, + "rgvim": 2, + "home": 2, + "JAVA_OPTS": 1, + "start": 1, + "build.scala.versions": 1, + "stopped": 4, + "commands": 8, + ".": 5, "line": 1, - "numbers": 1, - "gempath": 1, - "/usr/local/rubygems": 1, - "/home/gavin/.rubygems": 1 + "java": 2, + "latest_28": 1, + "export": 25, + "x86_64": 1, + "readonly": 4, + "unalias": 4, + "dvips": 2, + "zfgrep": 2, + "duplicated": 1, + "at": 1, + "SNAPSHOT": 3, + "incappendhistory": 2, + "HOME/.zsh/func": 2, + "Update": 1, + ".jobs.cron": 1, + "links": 2, + "/usr/sbin": 6, + "environment": 2, + "crontab": 1, + "overwrite": 3, + ".bashrc": 1, + "/sbin": 2, + "W": 2, + "was": 1, + "declare": 22, + "freeamp": 2, + "TERM": 4, + "rview": 2, + "That": 1, + "message": 1, + "*": 11, + "groupid": 1, + "long": 2, + "/opt/local/sbin": 2, + "/.sbt/": 1, + "chattier": 1, + "get_script_path": 2, + "return": 3, + "format...": 2, + "U": 2, + "dviselect": 2, + "exit": 10, + "done": 8, + "require_arg": 12, + "<<": 2, + "sed": 2, + "if": 39, + "pdflatex": 2, + "process": 1, + "all": 1, + "(": 107, + "arch": 1, + "zsh/z.sh": 2, + "patch": 2, + "S": 2, + "POSTFIX": 1, + "DESTDIR": 1, + "#CDPATH": 2, + "/usr/bin": 8, + "property": 1, + "an": 1, + "rm": 2, + "jadetex": 2, + "netscape": 2, + "SCREENDIR": 2, + "#residual_args": 1, + "integer": 1, + "create": 2, + "&": 5, + "away": 1, + "killed": 2, + "bottles": 6, + "D*": 1, + "snapshot": 1, + "interactive": 1, + "debugging": 1, + "settings/plugins": 1, + "sbt": 18, + "versionLine##sbt.version": 1, + "elif": 4, + "more": 3, + "HISTDUP": 2, + "gqmpeg": 2, + "XF": 2, + "i686": 1, + "bindings": 2, + "xz": 1, + "Overriding": 1, + "Detected": 1, + "Usage": 1, + "echoerr": 3, + "eg": 1, + "job": 3, + "/usr/xpg4/bin": 4, + "/tmp": 1, + "|": 17, + "execRunner": 2, + "sbt_dir": 2, + "preserved": 1, + "PKG": 12, + "print": 1, + "O": 1, + "default_sbt_opts": 1, + "normal": 1, + "HISTFILE": 2, + "msg": 4, + "pwd": 1, + "ee": 2, + "z": 12, + "were": 1, + "reset": 1, + "they": 1, + "save": 4, + "xv": 2, + "share": 2, + "x": 1, + "makes": 1, + "openssl": 1, + "github.com/kr/pty": 1, + "#Erase": 2, + "current": 1, + "Random": 2, + "just": 2, + "addDebugger": 2, + "memory": 3, + "https": 2, + "makeinfo": 2, + "caches": 1, + "quiet": 6, + "like": 1, + "v": 11, + "pkgname": 1, + "xdvi": 2, + "build.properties": 1, + "boot": 3, + "global": 1, + "pdftex": 2, + "codes": 1, + "sbt_opts_file": 1, + "rvmrc": 3, + "turning": 1, + "I": 2, + "/.sbt/boot": 1, + "dir": 3, + "scalac_args": 4, + "t": 3, + "other": 2, + "bzfgrep": 2, + "git": 16, + "keep": 3, + "script_name": 2, + "remote.origin.pushurl": 1, + "env": 4, + "lxc": 1, + "name##*fo": 1, + "scalacOptions": 3, + "accomplish": 1, + "use": 1, + "sbt_commands": 2, + "script_path": 1, + "PUSHURL": 1, + "conflicts": 1, + "bzcat": 2, + "r": 17, + "//github.com/bumptech/stud.git": 1, + "stud": 4, + "ENV...": 2, + "we": 1, + "shift": 28, + "makedepends": 1, + "slitex": 2, + "_gitroot": 1, + "depends": 1, + "whoami": 2, + "sbt_create": 2, + "rvm_path": 4, + "go": 2, + "MANPATH": 2, + "port": 1, + "colors": 2, + "sbt_version": 8, + "perl": 3, + "dotfile": 1, + "p": 2, + "#sudo": 2, + "ls": 6, + "PROMPT_COMMAND": 2, + "source": 7, + "org.scala": 4, + "that": 1, + "/usr/openwin/bin": 4, + "shorter": 2, + "bzme": 2, + "C": 1, + "append": 2, + "aforementioned": 1, + "find": 2, + "n": 22, + "users": 2, + "them": 1, + "conflicting": 1, + "sbt_explicit_version": 7, + "prefix": 1, + "bg": 4, + "add": 1, + "mozilla": 2, + "qiv": 2, + "foodforthought.jpg": 1, + "addSbt": 12, + "shows": 1, + "optionally": 1, + "ldflags": 1, + "HISTCONTROL": 2, + "maintainer": 1, + "to": 33, + "A": 10, + "there": 2, + "arg": 3, + "sbt_snapshot_version": 2, + "many": 2, + "term": 2, + "l": 8, + "old": 4, + "SAVEHIST": 2, + "be": 3, + "remote.origin.url": 1, + "aufs": 1, + "xanim": 2, + "#Immediately": 2, + "j": 2, + "histappend": 2, + "<\"$sbt_opts_file\">": 1, + "sbt_mem": 5, + "mv": 1, + "curl": 8, + "test": 1, + "#Share": 2, + "Hykes": 1, + "d61e5": 1, + "PATH": 14, + "typeset": 5, + "#Import": 2, + "xfig": 2, + "cat": 3, + "Previous": 1, + "h": 3, + "true": 2, + "list": 3, + "java_args": 3, + "versionLine": 2, + "sbt_jar": 3, + "duplicates": 2, + "progcomp": 2, + "dvitype": 2, + "b36453141c": 1, + "opera": 2, + "ANSI": 1, + "sbt_groupid": 3, + "build_props_scala": 1, + ";": 138, + "type": 5, + "unzip": 2, + "doesn": 1, + "exec": 3, + "PS1": 2, + "from": 1, + "#function": 2, + "f": 68, + "GOPATH": 1, + "S*": 1, + "": 1, + "only": 6, + "SHEBANG#!sh": 2, + "In": 1, + "jar_file": 1, + "timidity": 2, + "directories": 2, + "zcat": 2, + "/go/src/github.com/dotcloud/docker": 1, + "rvm_rvmrc_files": 3, + "up": 1, + "/usr/bin/clear": 2, + "variables": 2, + "bzdiff": 2, + "xine": 2, + "and": 5, + "d": 9, + "above": 1, + "EOM": 3, + "zegrep": 2, + "shopt": 13, + "cdspell": 2, + "the": 17, + "binding": 2, + "releases": 1, + "mem": 4, + "#How": 2, + "ping": 2, + "license": 1, + "batch": 2, + "#Number": 2, + "/usr/ccs/bin": 4, + "do": 8, + "can": 3, + "/go/bin": 1, + "across": 2, + "awk": 2, + "given": 2, + "contains": 2, + "output": 1, + "lines": 2, + "overwriting": 2, + "COLORTERM": 2, + "is": 11, + "readlink": 1, + "apt": 6, + "cd": 11, + "CGO_ENABLED": 1, + "jar": 3, + "false": 2, + "file": 9, + "prompt": 2, + "Bash": 3, + "/usr/local/sbin": 6, + "addJava": 9, + "disable": 1, + "cron": 1, + "directory": 5, + "/usr/local/bin": 6 + }, + "Processing": { + "size": 1, + "quad": 1, + "draw": 1, + "rect": 1, + "noStroke": 1, + "background": 1, + "}": 2, + ";": 15, + "{": 2, + ")": 17, + "(": 17, + "TWO_PI": 1, + "PI": 1, + "arc": 1, + "fill": 6, + "ellipse": 1, + "void": 2, + "setup": 1, + "triangle": 2 + }, + "Nginx": { + "logs/nginx.pid": 1, + "|": 6, + "worker_processes": 1, + "domain1.com": 1, + "//big_server_com": 1, + "proxy_pass": 2, + "log_format": 1, + "application/octet": 1, + "sendfile": 1, + "expires": 1, + "http": 3, + "simple": 2, + "/etc/nginx/proxy.conf": 1, + "seems": 1, + "-": 2, + "user": 1, + "www.domain1.com": 1, + "flash": 1, + "some": 1, + "html": 1, + "listen": 3, + "fastcgi_pass": 1, + "server_names_hash_bucket_size": 1, + "pid": 1, + "vhosts": 1, + "location": 4, + "logs/domain1.access.log": 1, + "include": 3, + "this": 1, + "to": 1, + "index": 1, + "www": 2, + "events": 1, + "{": 10, + "/": 4, + "be": 1, + ".php": 1, + "css": 1, + "on": 2, + "index.html": 1, + "images": 1, + "big_server_com": 1, + "tcp_nopush": 1, + "stream": 1, + "static": 1, + "index.php": 1, + "/etc/nginx/fastcgi.conf": 1, + "default_type": 1, + "load": 1, + "weight": 2, + "upstream": 1, + ")": 1, + "conf/mime.types": 1, + "logs/big.server.access.log": 1, + "js": 1, + "domain2.com": 1, + "}": 10, + "big.server.com": 1, + "balancing": 1, + "php/fastcgi": 1, + "root": 2, + "logs/domain2.access.log": 1, + "reverse": 1, + "required": 1, + "server": 7, + "//127.0.0.1": 1, + "for": 1, + "#": 4, + "access_log": 4, + "d": 1, + "/var/www/virtual/big.server.com/htdocs": 1, + "error_log": 1, + "worker_connections": 1, + "media": 1, + "index.htm": 1, + "logs/error.log": 1, + "main": 5, + "logs/access.log": 1, + "proxy": 1, + "javascript": 1, + "www.domain2.com": 1, + ";": 35, + "(": 1, + "worker_rlimit_nofile": 1, + "server_name": 3 + }, + "Handlebars": { + "": 5, + "#each": 1, + "Comments": 1, + "comments": 1, + "": 3, + "}": 16, + "{": 16, + "title": 1, + "/each": 1, + "body": 3, + "

": 1, + "fullName": 2, + "By": 2, + "class=": 5, + "
": 5, + "

": 1, + "author": 2, + "

": 3 + }, + "Logos": { + "ctor": 1, + "retain": 1, + "release": 1, + "nil": 2, + "return": 2, + "OptionalHooks": 2, + "]": 2, + "RuntimeAccessibleClass": 1, + "c": 1, + "[": 2, + "NSObject": 1, + "DEF": 1, + "}": 4, + ";": 8, + "{": 4, + "b": 1, + "B": 1, + "a": 1, + ")": 8, + "(": 8, + "-": 3, + "%": 15, + "init": 3, + "ABC": 2, + "OptionalCondition": 1, + "if": 1, + "id": 2, + "subclass": 1, + "orig": 2, + "hook": 2, + "void": 1, + "group": 1, + "log": 1, + "self": 1, + "alloc": 1, + "end": 4 } }, - "language_tokens": { - "ABAP": 1500, - "ApacheConf": 1449, - "Apex": 4408, - "AppleScript": 1862, - "Arduino": 20, - "AutoHotkey": 3, - "Awk": 544, - "C": 58732, - "C++": 21480, - "Ceylon": 50, - "COBOL": 90, - "CoffeeScript": 2951, - "Coq": 18259, - "CSS": 43867, - "Dart": 68, - "Diff": 16, - "Ecl": 281, - "edn": 227, - "Elm": 628, - "Emacs Lisp": 1756, - "Erlang": 2928, - "fish": 636, - "Forth": 1516, - "GAS": 133, - "GLSL": 3766, - "Gosu": 413, - "Groovy": 69, - "Groovy Server Pages": 91, - "Haml": 4, - "Handlebars": 69, - "INI": 27, - "Ioke": 2, - "Java": 8987, - "JavaScript": 76934, - "JSON": 619, - "Julia": 247, - "Kotlin": 155, - "Lasso": 9849, - "Less": 39, - "Literate CoffeeScript": 275, - "LiveScript": 123, - "Logos": 93, - "Logtalk": 36, - "Lua": 724, - "M": 23373, - "Makefile": 50, - "Markdown": 1, - "Matlab": 11787, - "Max": 136, - "Monkey": 207, - "MoonScript": 1718, - "Nemerle": 17, - "Nginx": 179, - "Nimrod": 1, - "NSIS": 725, - "Nu": 116, - "Objective-C": 26518, - "OCaml": 382, - "Omgrofl": 57, - "Opa": 28, - "OpenCL": 88, - "OpenEdge ABL": 762, - "Parrot Assembly": 6, - "Parrot Internal Representation": 5, - "Pascal": 30, - "Perl": 17497, - "PHP": 20724, - "PogoScript": 250, - "PowerShell": 12, - "Processing": 74, - "Prolog": 4040, - "Python": 5715, - "R": 175, - "Racket": 360, - "Ragel in Ruby Host": 593, - "Rebol": 11, - "Ruby": 3854, - "Rust": 3566, - "Sass": 56, - "Scala": 420, - "Scheme": 3478, - "Scilab": 69, - "SCSS": 39, - "Shell": 3744, - "Slash": 187, - "Standard ML": 243, - "SuperCollider": 268, - "Tea": 3, - "TeX": 1155, - "Turing": 44, - "TXL": 213, - "TypeScript": 106, - "Verilog": 3778, - "VHDL": 42, - "VimL": 20, - "Visual Basic": 345, - "Volt": 388, - "wisp": 1363, - "XC": 24, - "XML": 5622, - "XProc": 22, - "XQuery": 801, - "XSLT": 44, - "Xtend": 399, - "YAML": 30 - }, "languages": { - "ABAP": 1, - "ApacheConf": 3, - "Apex": 6, - "AppleScript": 7, - "Arduino": 1, - "AutoHotkey": 1, - "Awk": 1, + "VimL": 2, "C": 24, - "C++": 20, - "Ceylon": 1, - "COBOL": 4, - "CoffeeScript": 9, + "LFE": 4, + "Apex": 6, + "Standard ML": 2, + "Parrot Internal Representation": 1, + "Less": 1, + "NSIS": 2, + "INI": 2, + "Markdown": 1, + "VHDL": 1, + "TypeScript": 3, + "TeX": 1, + "Rust": 1, "Coq": 12, - "CSS": 2, + "Nemerle": 1, + "Matlab": 37, + "XC": 1, + "Scheme": 1, + "JSON": 5, + "Omgrofl": 1, + "Ragel in Ruby Host": 3, + "JavaScript": 20, + "Makefile": 2, + "COBOL": 4, + "Groovy Server Pages": 4, + "Pascal": 1, + "Nu": 2, + "XML": 3, "Dart": 1, - "Diff": 1, "Ecl": 1, - "edn": 1, - "Elm": 3, - "Emacs Lisp": 2, + "M": 28, + "AutoHotkey": 1, + "Max": 1, + "Turing": 1, + "SuperCollider": 2, "Erlang": 5, - "fish": 3, - "Forth": 7, + "Diff": 1, + "YAML": 1, + "Scala": 3, + "Sass": 2, + "Perl": 14, + "Ceylon": 1, + "ABAP": 1, + "Elm": 3, + "OCaml": 2, + "R": 2, + "Prolog": 6, + "Haml": 1, + "Logtalk": 1, + "Visual Basic": 1, + "PogoScript": 1, + "LiveScript": 1, + "OpenEdge ABL": 5, + "Kotlin": 1, + "Xtend": 2, + "Racket": 3, + "CSS": 2, + "OpenCL": 1, + "Awk": 1, + "Groovy": 2, + "Nimrod": 1, + "XSLT": 1, + "Rebol": 1, + "PowerShell": 2, + "Opa": 2, "GAS": 1, + "CoffeeScript": 9, + "Lasso": 4, + "C++": 20, + "Julia": 1, + "ApacheConf": 3, + "edn": 1, + "MoonScript": 1, + "Lua": 3, + "Objective-C": 19, + "wisp": 1, + "TXL": 1, + "Ruby": 16, + "Literate CoffeeScript": 1, + "Forth": 7, + "Java": 6, + "Arduino": 1, + "XQuery": 1, + "Python": 7, + "AppleScript": 7, + "Monkey": 1, "GLSL": 3, "Gosu": 5, - "Groovy": 2, - "Groovy Server Pages": 4, - "Haml": 1, - "Handlebars": 2, - "INI": 2, - "Ioke": 1, - "Java": 6, - "JavaScript": 20, - "JSON": 5, - "Julia": 1, - "Kotlin": 1, - "Lasso": 4, - "Less": 1, - "Literate CoffeeScript": 1, - "LiveScript": 1, - "Logos": 1, - "Logtalk": 1, - "Lua": 3, - "M": 28, - "Makefile": 2, - "Markdown": 1, - "Matlab": 37, - "Max": 1, - "Monkey": 1, - "MoonScript": 1, - "Nemerle": 1, - "Nginx": 1, - "Nimrod": 1, - "NSIS": 2, - "Nu": 2, - "Objective-C": 19, - "OCaml": 2, - "Omgrofl": 1, - "Opa": 2, - "OpenCL": 1, - "OpenEdge ABL": 5, - "Parrot Assembly": 1, - "Parrot Internal Representation": 1, - "Pascal": 1, - "Perl": 14, - "PHP": 9, - "PogoScript": 1, - "PowerShell": 2, - "Processing": 1, - "Prolog": 6, - "Python": 7, - "R": 2, - "Racket": 3, - "Ragel in Ruby Host": 3, - "Rebol": 1, - "Ruby": 16, - "Rust": 1, - "Sass": 2, - "Scala": 3, - "Scheme": 1, - "Scilab": 3, - "SCSS": 1, - "Shell": 37, - "Slash": 1, - "Standard ML": 2, - "SuperCollider": 2, - "Tea": 1, - "TeX": 1, - "Turing": 1, - "TXL": 1, - "TypeScript": 3, - "Verilog": 13, - "VHDL": 1, - "VimL": 2, - "Visual Basic": 1, - "Volt": 1, - "wisp": 1, - "XC": 1, - "XML": 3, "XProc": 1, - "XQuery": 1, - "XSLT": 1, - "Xtend": 2, - "YAML": 1 - }, - "md5": "04aab6477c2dc5ef1be1c9de1886c3f3" + "Volt": 1, + "Tea": 1, + "Scilab": 3, + "Parrot Assembly": 1, + "fish": 3, + "Ioke": 1, + "Emacs Lisp": 2, + "Slash": 1, + "SCSS": 1, + "PHP": 9, + "Verilog": 13, + "Squirrel": 1, + "Shell": 37, + "Processing": 1, + "Nginx": 1, + "Handlebars": 2, + "Logos": 1 + } } \ No newline at end of file From 063ba509528ee7358d1e7c1236da7ed271dedb82 Mon Sep 17 00:00:00 2001 From: Ted Nyman Date: Thu, 17 Oct 2013 13:57:00 -0700 Subject: [PATCH 161/184] Bump to 2.9.6 --- github-linguist.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/github-linguist.gemspec b/github-linguist.gemspec index 71846285..42e5cd10 100644 --- a/github-linguist.gemspec +++ b/github-linguist.gemspec @@ -1,6 +1,6 @@ Gem::Specification.new do |s| s.name = 'github-linguist' - s.version = '2.9.5' + s.version = '2.9.6' s.summary = "GitHub Language detection" s.authors = "GitHub" From f41c79066b5f58a344ebddd28f713776f211bf50 Mon Sep 17 00:00:00 2001 From: Westley Argentum Hennigh Date: Fri, 18 Oct 2013 10:37:31 -0700 Subject: [PATCH 162/184] Color for Julia! See https://github.com/JuliaLang/julia/issues/4569 --- lib/linguist/languages.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 6c5cde1f..6f25f1ac 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -714,6 +714,7 @@ JavaScript: Julia: type: programming primary_extension: .jl + color: "#a270ba" Kotlin: type: programming From 281e7456d567681f41e9ee234779036da4f4b0b9 Mon Sep 17 00:00:00 2001 From: Hanfei Shen Date: Fri, 22 Feb 2013 15:19:13 +0800 Subject: [PATCH 163/184] Add Protocol Buffers --- lib/linguist/languages.yml | 8 +++++++ samples/Protocol Buffer/addressbook.proto | 27 +++++++++++++++++++++++ 2 files changed, 35 insertions(+) create mode 100644 samples/Protocol Buffer/addressbook.proto diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 6c5cde1f..22e6a3cc 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -1098,6 +1098,14 @@ Prolog: extensions: - .pro +Protocol Buffer: + type: markup + ace_mode: protobuf + aliases: + - protobuf + - Protocol Buffers + primary_extension: .proto + Puppet: type: programming color: "#cc5555" diff --git a/samples/Protocol Buffer/addressbook.proto b/samples/Protocol Buffer/addressbook.proto new file mode 100644 index 00000000..2dee2965 --- /dev/null +++ b/samples/Protocol Buffer/addressbook.proto @@ -0,0 +1,27 @@ +package tutorial; + +option java_package = "com.example.tutorial"; +option java_outer_classname = "AddressBookProtos"; + +message Person { + required string name = 1; + required int32 id = 2; + optional string email = 3; + + enum PhoneType { + MOBILE = 0; + HOME = 1; + WORK = 2; + } + + message PhoneNumber { + required string number = 1; + optional PhoneType type = 2 [default = HOME]; + } + + repeated PhoneNumber phone = 4; +} + +message AddressBook { + repeated Person person = 1; +} From 024005d912c04b9819f5885a44d7ff4f7da5f389 Mon Sep 17 00:00:00 2001 From: Sam Stephenson Date: Fri, 18 Oct 2013 10:45:31 -0500 Subject: [PATCH 164/184] Highlight Bats test files as Shell --- lib/linguist/languages.yml | 3 +- lib/linguist/samples.json | 83439 ++++++++++++++++++----------------- 2 files changed, 42137 insertions(+), 41305 deletions(-) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 6c5cde1f..10e8e60f 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -619,7 +619,7 @@ Handlebars: - .hbs - .html.handlebars - .html.hbs - + Haskell: type: programming color: "#29b544" @@ -1288,6 +1288,7 @@ Shell: - zsh primary_extension: .sh extensions: + - .bats - .tmux filenames: - Dockerfile diff --git a/lib/linguist/samples.json b/lib/linguist/samples.json index ddb379d5..c0b13322 100644 --- a/lib/linguist/samples.json +++ b/lib/linguist/samples.json @@ -1,26 +1,405 @@ { - "languages_total": 452, - "filenames": { - "YAML": [ - ".gemrc" + "extnames": { + "ABAP": [ + ".abap" + ], + "Apex": [ + ".cls" + ], + "AppleScript": [ + ".applescript" + ], + "Arduino": [ + ".ino" + ], + "AsciiDoc": [ + ".adoc", + ".asc", + ".asciidoc" + ], + "AutoHotkey": [ + ".ahk" + ], + "Awk": [ + ".awk" + ], + "C": [ + ".c", + ".h" + ], + "C++": [ + ".cc", + ".cpp", + ".cu", + ".h", + ".hpp" + ], + "Ceylon": [ + ".ceylon" + ], + "COBOL": [ + ".cbl", + ".ccp", + ".cob", + ".cpy" + ], + "CoffeeScript": [ + ".coffee" + ], + "Coq": [ + ".v" + ], + "Creole": [ + ".creole" + ], + "CSS": [ + ".css" + ], + "Dart": [ + ".dart" + ], + "Diff": [ + ".patch" + ], + "Ecl": [ + ".ecl" + ], + "edn": [ + ".edn" + ], + "Elm": [ + ".elm" + ], + "Emacs Lisp": [ + ".el" + ], + "Erlang": [ + ".erl", + ".escript", + ".script!" + ], + "fish": [ + ".fish" + ], + "Forth": [ + ".forth", + ".fth" + ], + "GAS": [ + ".s" + ], + "GLSL": [ + ".fp", + ".glsl" + ], + "Gosu": [ + ".gs", + ".gsp", + ".gst", + ".gsx", + ".vark" + ], + "Groovy": [ + ".gradle", + ".script!" + ], + "Groovy Server Pages": [ + ".gsp" + ], + "Haml": [ + ".haml" + ], + "Handlebars": [ + ".handlebars", + ".hbs" + ], + "Ioke": [ + ".ik" + ], + "Java": [ + ".java" + ], + "JavaScript": [ + ".js", + ".script!" + ], + "JSON": [ + ".json", + ".maxhelp", + ".maxpat" + ], + "Julia": [ + ".jl" + ], + "Kotlin": [ + ".kt" + ], + "Lasso": [ + ".las", + ".lasso", + ".lasso9", + ".ldml" + ], + "Less": [ + ".less" + ], + "LFE": [ + ".lfe" + ], + "Literate CoffeeScript": [ + ".litcoffee" + ], + "LiveScript": [ + ".ls" + ], + "Logos": [ + ".xm" + ], + "Logtalk": [ + ".lgt" + ], + "Lua": [ + ".pd_lua" + ], + "M": [ + ".m" + ], + "Makefile": [ + ".script!" + ], + "Markdown": [ + ".md" + ], + "Matlab": [ + ".m" + ], + "Max": [ + ".mxt" + ], + "MediaWiki": [ + ".mediawiki" + ], + "Monkey": [ + ".monkey" + ], + "MoonScript": [ + ".moon" + ], + "Nemerle": [ + ".n" + ], + "Nimrod": [ + ".nim" + ], + "NSIS": [ + ".nsh", + ".nsi" + ], + "Nu": [ + ".nu", + ".script!" + ], + "Objective-C": [ + ".h", + ".m" + ], + "OCaml": [ + ".eliom", + ".ml" + ], + "Omgrofl": [ + ".omgrofl" + ], + "Opa": [ + ".opa" + ], + "OpenCL": [ + ".cl" + ], + "OpenEdge ABL": [ + ".cls", + ".p" + ], + "Org": [ + ".org" + ], + "Parrot Assembly": [ + ".pasm" + ], + "Parrot Internal Representation": [ + ".pir" + ], + "Pascal": [ + ".dpr" + ], + "Perl": [ + ".fcgi", + ".pl", + ".pm", + ".script!", + ".t" + ], + "PHP": [ + ".module", + ".php", + ".script!" + ], + "PogoScript": [ + ".pogo" + ], + "PowerShell": [ + ".ps1", + ".psm1" + ], + "Processing": [ + ".pde" + ], + "Prolog": [ + ".pl" + ], + "Python": [ + ".py", + ".script!" + ], + "R": [ + ".R", + ".script!" + ], + "Racket": [ + ".scrbl", + ".script!" + ], + "Ragel in Ruby Host": [ + ".rl" + ], + "RDoc": [ + ".rdoc" + ], + "Rebol": [ + ".r" ], "Ruby": [ - "Capfile", - "Rakefile" + ".pluginspec", + ".rabl", + ".rake", + ".rb", + ".script!" + ], + "Rust": [ + ".rs" + ], + "Sass": [ + ".sass", + ".scss" + ], + "Scala": [ + ".sbt", + ".script!" + ], + "Scheme": [ + ".sps" + ], + "Scilab": [ + ".sce", + ".sci", + ".tst" + ], + "SCSS": [ + ".scss" + ], + "Shell": [ + ".bash", + ".script!", + ".sh", + ".zsh" + ], + "Slash": [ + ".sl" + ], + "Squirrel": [ + ".nut" + ], + "Standard ML": [ + ".sig", + ".sml" + ], + "SuperCollider": [ + ".sc", + ".scd" + ], + "Tea": [ + ".tea" + ], + "TeX": [ + ".cls" + ], + "Turing": [ + ".t" + ], + "TXL": [ + ".txl" + ], + "TypeScript": [ + ".ts" + ], + "Verilog": [ + ".v" + ], + "VHDL": [ + ".vhd" + ], + "Visual Basic": [ + ".cls" + ], + "Volt": [ + ".volt" + ], + "wisp": [ + ".wisp" + ], + "XC": [ + ".xc" + ], + "XML": [ + ".ant", + ".ivy", + ".xml" + ], + "XProc": [ + ".xpl" + ], + "XQuery": [ + ".xqm" + ], + "XSLT": [ + ".xslt" + ], + "Xtend": [ + ".xtend" + ] + }, + "filenames": { + "ApacheConf": [ + ".htaccess", + "apache2.conf", + "httpd.conf" ], "INI": [ ".editorconfig", ".gitconfig" ], - "VimL": [ - ".gvimrc", - ".vimrc" + "Makefile": [ + "Makefile" + ], + "Nginx": [ + "nginx.conf" ], "Perl": [ "ack" ], - "Nginx": [ - "nginx.conf" + "Ruby": [ + "Capfile", + "Rakefile" ], "Shell": [ ".bash_logout", @@ -48,41410 +427,41862 @@ "zshenv", "zshrc" ], - "ApacheConf": [ - ".htaccess", - "apache2.conf", - "httpd.conf" + "VimL": [ + ".gvimrc", + ".vimrc" ], - "Makefile": [ - "Makefile" + "YAML": [ + ".gemrc" ] }, - "extnames": { - "C": [ - ".c", - ".h" - ], - "LFE": [ - ".lfe" - ], - "Apex": [ - ".cls" - ], - "Standard ML": [ - ".sig", - ".sml" - ], - "Parrot Internal Representation": [ - ".pir" - ], - "Less": [ - ".less" - ], - "NSIS": [ - ".nsh", - ".nsi" - ], - "Markdown": [ - ".md" - ], - "VHDL": [ - ".vhd" - ], - "TypeScript": [ - ".ts" - ], - "TeX": [ - ".cls" - ], - "Rust": [ - ".rs" - ], - "Coq": [ - ".v" - ], - "Nemerle": [ - ".n" - ], - "Matlab": [ - ".m" - ], - "XC": [ - ".xc" - ], - "Scheme": [ - ".sps" - ], - "JSON": [ - ".json", - ".maxhelp", - ".maxpat" - ], - "Omgrofl": [ - ".omgrofl" - ], - "Ragel in Ruby Host": [ - ".rl" - ], - "JavaScript": [ - ".js", - ".script!" - ], - "Makefile": [ - ".script!" - ], - "COBOL": [ - ".cbl", - ".ccp", - ".cob", - ".cpy" - ], - "Groovy Server Pages": [ - ".gsp" - ], - "Pascal": [ - ".dpr" - ], - "Nu": [ - ".nu", - ".script!" - ], - "XML": [ - ".ant", - ".ivy", - ".xml" - ], - "Dart": [ - ".dart" - ], - "Ecl": [ - ".ecl" - ], - "M": [ - ".m" - ], - "AutoHotkey": [ - ".ahk" - ], - "Max": [ - ".mxt" - ], - "Turing": [ - ".t" - ], - "SuperCollider": [ - ".sc", - ".scd" - ], - "Erlang": [ - ".erl", - ".escript", - ".script!" - ], - "Diff": [ - ".patch" - ], - "Scala": [ - ".sbt", - ".script!" - ], - "Sass": [ - ".sass", - ".scss" - ], - "Ceylon": [ - ".ceylon" - ], - "Perl": [ - ".fcgi", - ".pl", - ".pm", - ".script!", - ".t" - ], - "ABAP": [ - ".abap" - ], - "Elm": [ - ".elm" - ], - "OCaml": [ - ".eliom", - ".ml" - ], - "R": [ - ".R", - ".script!" - ], - "Prolog": [ - ".pl" - ], - "Haml": [ - ".haml" - ], - "Logtalk": [ - ".lgt" - ], - "Visual Basic": [ - ".cls" - ], - "PogoScript": [ - ".pogo" - ], - "LiveScript": [ - ".ls" - ], - "OpenEdge ABL": [ - ".cls", - ".p" - ], - "Kotlin": [ - ".kt" - ], - "Xtend": [ - ".xtend" - ], - "Racket": [ - ".scrbl", - ".script!" - ], - "CSS": [ - ".css" - ], - "OpenCL": [ - ".cl" - ], - "Awk": [ - ".awk" - ], - "Groovy": [ - ".gradle", - ".script!" - ], - "Nimrod": [ - ".nim" - ], - "XSLT": [ - ".xslt" - ], - "Rebol": [ - ".r" - ], - "PowerShell": [ - ".ps1", - ".psm1" - ], - "Opa": [ - ".opa" - ], - "GAS": [ - ".s" - ], - "CoffeeScript": [ - ".coffee" - ], - "Lasso": [ - ".las", - ".lasso", - ".lasso9", - ".ldml" - ], - "C++": [ - ".cc", - ".cpp", - ".cu", - ".h", - ".hpp" - ], - "Julia": [ - ".jl" - ], - "edn": [ - ".edn" - ], - "MoonScript": [ - ".moon" - ], - "Lua": [ - ".pd_lua" - ], - "Objective-C": [ - ".h", - ".m" - ], - "wisp": [ - ".wisp" - ], - "TXL": [ - ".txl" - ], - "Ruby": [ - ".pluginspec", - ".rabl", - ".rake", - ".rb", - ".script!" - ], - "Literate CoffeeScript": [ - ".litcoffee" - ], - "Forth": [ - ".forth", - ".fth" - ], - "Java": [ - ".java" - ], - "Arduino": [ - ".ino" - ], - "XQuery": [ - ".xqm" - ], - "Python": [ - ".py", - ".script!" - ], - "AppleScript": [ - ".applescript" - ], - "Monkey": [ - ".monkey" - ], - "GLSL": [ - ".fp", - ".glsl" - ], - "Gosu": [ - ".gs", - ".gsp", - ".gst", - ".gsx", - ".vark" - ], - "XProc": [ - ".xpl" - ], - "Volt": [ - ".volt" - ], - "Tea": [ - ".tea" - ], - "Scilab": [ - ".sce", - ".sci", - ".tst" - ], - "Parrot Assembly": [ - ".pasm" - ], - "fish": [ - ".fish" - ], - "Ioke": [ - ".ik" - ], - "Emacs Lisp": [ - ".el" - ], - "Slash": [ - ".sl" - ], - "SCSS": [ - ".scss" - ], - "PHP": [ - ".module", - ".php", - ".script!" - ], - "Verilog": [ - ".v" - ], - "Squirrel": [ - ".nut" - ], - "Shell": [ - ".bash", - ".script!", - ".sh", - ".zsh" - ], - "Processing": [ - ".pde" - ], - "Handlebars": [ - ".handlebars", - ".hbs" - ], - "Logos": [ - ".xm" - ] - }, - "tokens_total": 413727, - "md5": "91d1a6d24334312acb9f444b358e3495", - "language_tokens": { - "VimL": 20, - "C": 58732, - "LFE": 1711, - "Apex": 4408, - "Standard ML": 243, - "Parrot Internal Representation": 5, - "Less": 39, - "NSIS": 725, - "INI": 27, - "Markdown": 1, - "VHDL": 42, - "TypeScript": 106, - "TeX": 1155, - "Rust": 3566, - "Coq": 18259, - "Nemerle": 17, - "Matlab": 11787, - "XC": 24, - "Scheme": 3478, - "JSON": 619, - "Omgrofl": 57, - "Ragel in Ruby Host": 593, - "JavaScript": 76934, - "Makefile": 50, - "COBOL": 90, - "Groovy Server Pages": 91, - "Pascal": 30, - "Nu": 116, - "XML": 5622, - "Dart": 68, - "Ecl": 281, - "M": 23373, - "AutoHotkey": 3, - "Max": 136, - "Turing": 44, - "SuperCollider": 268, - "Erlang": 2928, - "Diff": 16, - "YAML": 30, - "Scala": 420, - "Sass": 56, - "Perl": 17497, - "Ceylon": 50, - "ABAP": 1500, - "Elm": 628, - "OCaml": 382, - "R": 175, - "Prolog": 4040, - "Haml": 4, - "Logtalk": 36, - "Visual Basic": 345, - "PogoScript": 250, - "LiveScript": 123, - "OpenEdge ABL": 762, - "Kotlin": 155, - "Xtend": 399, - "Racket": 360, - "CSS": 43867, - "OpenCL": 88, - "Awk": 544, - "Groovy": 69, - "Nimrod": 1, - "XSLT": 44, - "Rebol": 11, - "PowerShell": 12, - "Opa": 28, - "GAS": 133, - "CoffeeScript": 2951, - "Lasso": 9849, - "C++": 21480, - "Julia": 247, - "ApacheConf": 1449, - "edn": 227, - "MoonScript": 1718, - "Lua": 724, - "Objective-C": 26518, - "wisp": 1363, - "TXL": 213, - "Ruby": 3854, - "Literate CoffeeScript": 275, - "Forth": 1516, - "Java": 8987, - "Arduino": 20, - "XQuery": 801, - "Python": 5715, - "AppleScript": 1862, - "Monkey": 207, - "GLSL": 3766, - "Gosu": 413, - "XProc": 22, - "Volt": 388, - "Tea": 3, - "Scilab": 69, - "Parrot Assembly": 6, - "fish": 636, - "Ioke": 2, - "Emacs Lisp": 1756, - "Slash": 187, - "SCSS": 39, - "PHP": 20724, - "Verilog": 3778, - "Squirrel": 130, - "Shell": 3744, - "Processing": 74, - "Nginx": 179, - "Handlebars": 69, - "Logos": 93 - }, + "tokens_total": 415370, + "languages_total": 459, "tokens": { - "VimL": { - "showmatch": 1, - "smartcase": 1, - "nocompatible": 1, - "guioptions": 1, - "toolbar": 1, - "T": 1, - "-": 1, - "no": 1, - "showcmd": 1, - "ignorecase": 1, - "set": 7, - "syntax": 1, - "incsearch": 1, - "on": 1 - }, - "C": { - "dwSize": 1, - "WGL_ARB_create_context": 2, - "__Pyx_c_difff": 2, - "function": 6, - "keepstrP": 2, - "shutdownCommand": 2, - "trackOperationsPerSecond": 2, - "PM_POST_HIBERNATION": 1, - "normal_url_char": 3, - "utf8BufferSize": 4, - "p_fnmatch": 1, - "header_value": 6, - "PFNWGLDELETEDCNVPROC": 2, - "server.repl_transfer_lastio": 1, - "RF_String*": 222, - "": 1, - "CALLBACK_DATA_": 4, - "server.list_max_ziplist_value": 1, - "yajl_get_error": 1, - "wglResetFrameCountNV": 1, - "*__pyx_n_s__shape": 1, - "__pyx_k__seed": 1, - "new_packmode": 1, - "fv": 4, - "PyExc_TypeError": 4, - "i_SELECT_RF_STRING_REPLACE3": 1, - "rfString_Append_f": 2, - "sremCommand": 1, - "infoCommand": 4, - "LOG_NOWAIT": 1, - "CALLBACK_NOTIFY_NOADVANCE": 2, - "PFNWGLENDFRAMETRACKINGI3DPROC": 2, - "wglDestroyDisplayColorTableEXT": 1, - "__pyx_k__shuffle": 1, - "CMIT_FMT_RAW": 1, - "name.machine": 1, - "RAW_NOTIFIER_HEAD": 1, - "charsN": 5, - "git_usage_string": 2, - "__Pyx_c_prodf": 2, - "PyString_AsStringAndSize": 1, - "git_cache_init": 1, - "setup_work_tree": 1, - "__Pyx_ArgTypeTest": 1, - "INCREF": 1, - "Strings": 2, - "RF_UTF32_BE//": 2, - "*denominator": 1, - "PyBUF_RECORDS": 1, - "i_SELECT_RF_STRING_BEFORE2": 1, - "hashcmp": 2, - "wglQuerySwapGroupNV": 1, - "D1": 1, - "WGL_EXT_depth_float": 2, - "WGLEW_EXT_create_context_es2_profile": 1, - "setup_git_directory_gently": 1, - "lru_count": 1, - "size_mask": 6, - "uRate": 2, - "rfString_ToDouble": 1, - "i_SELECT_RF_STRING_CREATELOCAL": 1, - "commandTableDictType": 2, - "ignore": 1, - "http_method": 4, - "tag_len": 3, - "XX": 63, - "signal": 2, - "passes": 1, - "core_initcall": 2, - "HTTP_GET": 1, - "bestkey": 9, - "command": 2, - "MASK_DECLARE_8": 9, - "__wglewDXSetResourceShareHandleNV": 2, - "__Pyx_SafeReleaseBuffer": 1, - "num_found": 1, - "char": 529, - "schedule": 1, - "*get_merge_bases": 1, - "cpu_active_bits": 4, - "#endif": 236, - "PFNWGLQUERYGENLOCKMAXSOURCEDELAYI3DPROC": 2, - "WGL_ALPHA_BITS_ARB": 1, - "__pyx_k__range": 1, - "PyBoolObject": 1, - "rfString_PruneMiddleF": 2, - "decrbyCommand": 1, - "*after_subject": 1, - "wglReleaseVideoCaptureDeviceNV": 1, - "i_OPTIONS_": 28, - "representation": 2, - "columns": 3, - "cmd_revert": 1, - "yajl_state_start": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_14Classification_2dloss": 1, - "i_NPSELECT_RF_STRING_BEFORE": 1, - "backwards": 1, - "...": 127, - "commit_graft": 13, - "WGL_DRAW_TO_WINDOW_EXT": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_13ModifiedHuber_4__reduce__": 1, - "l": 7, - "reading": 1, - "config_bool": 5, - "doc": 6, - "ops_sec": 3, - "format_commit_message": 1, - "wglEnumGpuDevicesNV": 1, - "Py_None": 8, - "PyString_Type": 2, - "CPU_STARTING_FROZEN": 1, - "querybuf_peak": 2, - "PFNWGLISENABLEDFRAMELOCKI3DPROC": 2, - "PFNWGLGENLOCKSOURCEEDGEI3DPROC": 2, - "PyCodeObject": 1, - "PyLong_CheckExact": 1, - "": 1, - "diff_strdup_prefix": 2, - "xffff": 1, - "RF_String*sub": 2, - "ob": 14, - "tree": 3, - "SEEK_CUR": 19, - "WGL_GPU_OPENGL_VERSION_STRING_AMD": 1, - ".imag": 3, - "i_SELECT_RF_STRING_AFTERV5": 1, - "nBytePos": 23, - "COMMIT_H": 2, - "cmd_checkout": 1, - "RF_OPTION_DEFAULT_ARGUMENTS": 24, - "server.logfile": 8, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_SquaredHinge": 6, - "LONG_LONG": 1, - "*tree": 3, - "sort_in_topological_order": 1, - "sequence": 6, - "wglGetContextGPUIDAMD": 1, - "__Pyx_GetItemInt_Tuple": 1, - "i_SELECT_RF_STRING_BETWEEN": 1, - "REDIS_SHUTDOWN_SAVE": 1, - "__Pyx_PyUnicode_GET_LENGTH": 2, - "REDIS_CLIENT_LIMIT_CLASS_PUBSUB": 3, - "acceptTcpHandler": 1, - "wglBindDisplayColorTableEXT": 1, - "WGL_SWAP_LAYER_BUFFERS_ARB": 1, - "i_LIMSELECT_RF_STRING_BEFOREV": 1, - "i_SOURCE_": 2, - "rfString_Init_fUTF16": 3, - "GIT_DELTA_ADDED": 4, - "while": 70, - "cond": 1, - "i_rfString_Create_nc": 3, - "__WGLEW_NV_DX_interop": 2, - "__wglewGetGenlockSampleRateI3D": 2, - "WGL_SWAP_UNDEFINED_ARB": 1, - "ERROR_INVALID_PIXEL_TYPE_ARB": 1, - "CR": 18, - "setenv": 1, - "COPY": 2, - "readFrequency": 1, - "WGL_NV_present_video": 2, - "WGL_GENLOCK_SOURCE_EDGE_FALLING_I3D": 1, - "wglCreatePbufferEXT": 1, - "*__pyx_k_tuple_18": 1, - "*__pyx_n_s__u": 1, - "__pyx_k_10": 1, - "creates": 1, - "GIT_DIFFCAPS_USE_DEV": 1, - "REDIS_DEFAULT_DBNUM": 1, - "srcP": 6, - "wglQueryMaxSwapGroupsNV": 1, - "WGLEW_NV_gpu_affinity": 1, - "CYTHON_INLINE": 65, - "put_online_cpus": 2, - "ids": 1, - "WGL_STEREO_POLARITY_INVERT_3DL": 1, - "num_max": 1, - "*X_indices_ptr": 1, - "sdiffCommand": 1, - "off64_t": 1, - "tv.tv_usec/1000": 1, - "__WGLEW_EXT_pixel_format_packed_float": 2, - "*__pyx_n_s__range": 1, - "spopCommand": 1, - "server.maxclients": 6, - "temp": 11, - "_param": 1, - "same": 1, - "config": 4, - "WGL_BIND_TO_TEXTURE_RGBA_ARB": 1, - "i_rfLMSX_WRAP3": 5, - "incrbyfloatCommand": 1, - "__pyx_base.loss": 1, - "#n": 1, - "list_common_cmds_help": 1, - "CPU_DOWN_FAILED": 2, - "__WGLEW_I3D_gamma": 2, - "their": 1, - "ops*1000/t": 1, - "endianess": 40, - "__wglewEnumerateVideoDevicesNV": 2, - "PyUnicodeObject": 1, - "server.aof_rewrite_min_size": 2, - "microseconds/c": 1, - "dictSdsKeyCompare": 6, - "elapsed*remaining_bytes": 1, - "lpushCommand": 1, - "s_req_line_almost_done": 4, - "do": 21, - "IS_ALPHA": 5, - "long": 105, - "S_ISDIR": 1, - "define": 14, - "s_req_http_HTTP": 3, - "UNLOCK": 2, - "*barrier": 1, - "GPU_DEVICE": 1, - "fmt_offset": 1, - "rfString_Init_fUTF32": 3, - "cc": 24, - "under_end": 1, - "register_shallow": 1, - "__wglewSwapLayerBuffersMscOML": 2, - "PyBytesObject": 1, - "rpushxCommand": 1, - "cmd_ls_tree": 1, - "WGL_BIND_TO_VIDEO_RGBA_NV": 1, - "pybuffer": 1, - "i_FORMAT_": 2, - "_ms_": 2, - "SIG_IGN": 2, - "task_pid_nr": 1, - "C6": 1, - "PFNWGLSETPBUFFERATTRIBARBPROC": 2, - "2010": 1, - "pfd.revents": 1, - "HTTP_PARSER_STRICT": 5, - "dictSize": 10, - "HTTP_##name": 1, - "PFNWGLRELEASETEXIMAGEARBPROC": 2, - "keylistDictType": 4, - "pollfd": 1, - "listSetFreeMethod": 1, - "characterLength": 16, - "sdsavail": 1, - "aeEventLoop": 2, - "byteLength*2": 1, - "keyptrDictType": 2, - "*o2": 2, - "MKD_NOHEADER": 1, - "run_command_v_opt": 1, - "linuxOvercommitMemoryWarning": 2, - "error_lineno": 3, - "__wglewGetDigitalVideoParametersI3D": 2, - "wglGetPixelFormatAttribivEXT": 1, - "__pyx_obj_7sklearn_5utils_13weight_vector_WeightVector": 3, - "i_SELECT_RF_STRING_CREATE_NC0": 1, - "header_field_mark": 2, - "rfString_Init_nc": 4, - "SIGBUS": 1, - "xF000": 2, - "shared.plus": 1, - "lookup_object": 2, - "wglQueryFrameLockMasterI3D": 1, - "WGL_AUX8_ARB": 1, - "__pyx_k__C": 1, - "max_count": 1, - "close_fd": 2, - "res": 4, - "ssize_t": 1, - "cmd_mktag": 1, - "WGLEW_EXT_depth_float": 1, - "pair": 4, - "free": 62, - "}": 1544, - "IS_URL_CHAR": 6, - "wglGenlockSourceEdgeI3D": 1, - "__pyx_k__np": 1, - "node_online": 1, - "localtime": 1, - "REDIS_MAXMEMORY_NO_EVICTION": 2, - "WGL_SHARE_STENCIL_ARB": 1, - "MKD_TABSTOP": 1, - "character": 11, - "WGL_IMAGE_BUFFER_LOCK_I3D": 1, - "c_line": 1, - "PyTuple_CheckExact": 1, - "pathspec.contents": 1, - "psubscribeCommand": 2, - "*fmt": 2, - "__wglewDestroyPbufferARB": 2, - "*retval": 1, - "RF_UTF16_BE//": 2, - "<5)>": 1, - "*bufferSize": 1, - "PFNWGLGETGENLOCKSOURCEEDGEI3DPROC": 2, - "CONNECT": 2, - "PFNWGLGETFRAMEUSAGEI3DPROC": 2, - "backwards.": 1, - "commit_buffer": 1, - "gperf_case_strncmp": 1, - "WGL_TEXTURE_CUBE_MAP_ARB": 1, - "hdc": 16, - "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_Hinge": 2, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_EpsilonInsensitive": 6, - "*__pyx_filename": 7, - "ob_type": 7, - "variable": 1, - "cpu_possible_bits": 6, - "tv.tv_sec": 4, - "idle_thread_get": 1, - "options.uid": 1, - "might_sleep": 1, - "col_data": 2, - "rfString_Remove": 3, - "htNeedsResize": 3, - "": 7, - "OBJ_BLOB": 3, - "rfFReadLine_UTF32BE": 1, - "h_matching_connection_keep_alive": 3, - "*__pyx_kp_u_13": 1, - "cmd_remote_ext": 1, - "hDevice": 9, - "__pyx_f_7sklearn_12linear_model_8sgd_fast_max": 1, - "i_SELECT_RF_STRING_AFTER2": 1, - "int32_t*": 1, - "#pragma": 1, - "REFU_USTRING_H": 2, - "git_buf_cstr": 1, - "cpu_present": 1, - "is": 17, - "HTTP_PARSER_VERSION_MAJOR": 1, - "LOWER": 7, - "": 1, - "PFNWGLLOADDISPLAYCOLORTABLEEXTPROC": 2, - "UV__O_CLOEXEC": 1, - "*codepoints": 2, - "nongit_ok": 2, - "param": 2, - "s_req_host_start": 8, - "RSTRING_LEN": 2, - "a": 80, - "*1024*8": 1, - "WGLEW_ARB_pixel_format_float": 1, - "__pyx_k__eta": 1, - "*swap": 1, - "rfString_Init_cp": 3, - ".off": 2, - "__pyx_k__p": 1, - "__pyx_k_1": 1, - "expand_tabs": 1, - "iterations": 4, - "*columns": 2, - "PFNWGLDXUNREGISTEROBJECTNVPROC": 2, - "__pyx_n_s__loss": 2, - "__Pyx_PyInt_AsLongDouble": 1, - "__Pyx_RefNannySetupContext": 12, - "i_SELECT_RF_STRING_AFTERV12": 1, - "cmd_branch": 1, - "*get_shallow_commits": 1, - "git_more_info_string": 2, - "rfString_Create_f": 2, - "new_prefix": 2, - "rfFReadLine_UTF16BE": 6, - "authenticated": 3, - "__wglewJoinSwapGroupNV": 2, - "wglQueryCurrentContextNV": 1, - "PFNWGLCREATEPBUFFEREXTPROC": 2, - "*__pyx_v_dataset": 1, - "functions": 2, - "shared.pmessagebulk": 1, - "null": 4, - "l2": 3, - "__wglewReleasePbufferDCEXT": 2, - "Python": 2, - "i_SELECT_RF_STRING_REPLACE": 1, - "specific": 1, - "h_transfer_encoding_chunked": 4, - "*patch_mode": 1, - "*n": 1, - "": 1, - "server.current_client": 3, - "WGL_TEXTURE_FLOAT_RGBA_NV": 1, - "WGL_PIXEL_TYPE_ARB": 1, - "back": 1, - "keepstr": 5, - "new_file.oid": 7, - "assert": 41, - "PFNWGLDISABLEGENLOCKI3DPROC": 2, - "WGL_PBUFFER_LARGEST_EXT": 1, - "__Pyx_c_pow": 3, - "i_RESULT_": 12, - "EXPORT_SYMBOL": 8, - "backgroundSaveDoneHandler": 1, - "zremCommand": 1, - "__wglewEnumerateVideoCaptureDevicesNV": 2, - "*__pyx_n_s__NotImplementedError": 1, - "code_line": 4, - "git_attr_fnmatch__parse": 1, - "__pyx_k_21": 1, - "UV_NAMED_PIPE": 2, - "yajl_free_error": 1, - "WGL_EXT_create_context_es2_profile": 2, - "__WGLEW_ARB_pixel_format_float": 2, - "__pyx_k__plain_sgd": 1, - "PyLong_AS_LONG": 1, - "isinherited": 1, - "nmode": 10, - "WGL_COLOR_SAMPLES_NV": 1, - "loss": 1, - "PyObject_DelAttrString": 2, - "rfString_KeepOnly": 2, - "CMIT_FMT_FULLER": 1, - "hDc": 6, - "*__pyx_n_s__weights": 1, - "String": 11, - "E": 11, - "*sign_commit": 2, - "WGL_FULL_ACCELERATION_ARB": 1, - "*index": 2, - "lstrP": 1, - "byteI": 7, - "num": 24, - "have_repository": 1, - "AE_ERR": 2, - "__pyx_t_5numpy_float64_t": 4, - "s_req_method": 4, - "CONTENT_LENGTH": 4, - "WGL_3DL_stereo_control": 2, - "*internal": 1, - "i_SELECT_RF_STRING_FWRITE": 1, - "GITERR_CHECK_ALLOC": 3, - "help": 4, - "__read_mostly": 5, - "server.stat_starttime": 2, - "n/": 3, - "normally": 1, - "wglLockVideoCaptureDeviceNV": 1, - "i_SELECT_RF_STRING_CREATELOCAL1": 1, - "numclients/": 1, - "cmd_replace": 1, - "*1024*256": 1, - "__WGLEW_EXT_display_color_table": 2, - "PyBytes_Repr": 1, - "Py_ssize_t": 35, - "inline": 3, - "ftello64": 1, - "WGL_TRANSPARENT_BLUE_VALUE_ARB": 1, - "__pyx_f_7sklearn_12linear_model_8sgd_fast_10Regression_loss": 1, - "__pyx_f_7sklearn_12linear_model_8sgd_fast_12LossFunction_loss": 1, - "*__pyx_kp_u_6": 1, - "epsilon": 2, - "wglEnumerateVideoCaptureDevicesNV": 1, - "PFNWGLCREATEIMAGEBUFFERI3DPROC": 2, - "WGL_GPU_RAM_AMD": 1, - "Py_DECREF": 2, - "i_FILE_": 16, - "s_body_identity": 3, - "server.repl_transfer_left": 1, - "rb_cRDiscount": 4, - "PySequenceMethods": 1, - "rfString_Length": 5, - "pathspec.length": 1, - "git_odb__hashfd": 1, - "RE_UTF8_INVALID_CODE_POINT": 2, - "shared.err": 1, - "for_each_online_cpu": 1, - "WGL_TRANSPARENT_INDEX_VALUE_ARB": 1, - "*1000000": 1, - "EOF": 26, - "PFNWGLGETCURRENTREADDCARBPROC": 2, - "<=0)>": 1, - "WGL_TEXTURE_CUBE_MAP_NEGATIVE_X_ARB": 1, - "npy_ulonglong": 2, - "http_minor": 11, - "GITERR_OS": 1, - "i_rfLMSX_WRAP10": 2, - "number": 19, - "static": 454, - ")": 6215, - "cmd_read_tree": 1, - "init_cpu_present": 1, - "cmd_clean": 1, - "__wglewGetGenlockSourceDelayI3D": 2, - "WGL_FRONT_LEFT_ARB": 1, - "*__pyx_n_s__np": 1, - "complex": 2, - "#error": 4, - "cell_work": 3, - "__wglewQueryCurrentContextNV": 2, - "arraysize": 1, - "anetUnixServer": 1, - "i_rfString_Count": 5, - "DICT_NOTUSED": 6, - "cell_end": 6, - "*use_noid": 1, - "server.rdb_filename": 4, - "zrevrankCommand": 1, - "shared.ok": 3, - "jsonText": 4, - "long*": 2, - "*pMissedFrames": 1, - "PFNWGLQUERYFRAMELOCKMASTERI3DPROC": 2, - "__wglewGetCurrentReadDCARB": 2, - "bioPendingJobsOfType": 1, - "r": 58, - "*rndr": 4, - "*settings": 2, - "": 2, - "__wglewGetVideoDeviceNV": 2, - "__Pyx_PyIndex_AsSsize_t": 1, - "alias_command": 4, - "WGLEW_EXT_swap_control": 1, - "cb.blockhtml": 6, - "end_tag": 4, - "WGLEW_NV_present_video": 1, - "__WGLEW_I3D_image_buffer": 2, - "__wglewGetGenlockSourceI3D": 2, - "i_SUBSTR_": 6, - "Consider": 2, - "echoCommand": 2, - "loop": 9, - "INVALID_VERSION": 1, - "WGL_ERROR_MISSING_AFFINITY_MASK_NV": 1, - "WGL_NV_float_buffer": 2, - "Py_INCREF": 10, - "*encodingP": 1, - "SA_RESETHAND": 1, - "__stdcall": 2, - "i_SELECT_RF_STRING_REMOVE4": 1, - "how": 1, - "*value": 5, - "REDIS_NOTUSED": 5, - "i_SELECT_RF_STRING_BEFOREV8": 1, - "uv_process_t*": 3, - "shared.del": 1, - "parse_block": 1, - "__Pyx_CREAL": 4, - "by": 1, - "*opts": 6, - "WGL_TEXTURE_2D_ARB": 1, - "conj": 3, - "rfString_Create_fUTF16": 2, - "REDIS_REPL_PING_SLAVE_PERIOD": 1, - "publishCommand": 1, - "PFNWGLQUERYFRAMECOUNTNVPROC": 2, - "*__pyx_k_tuple_5": 1, - "*sha1": 16, - "WGL_GAMMA_TABLE_SIZE_I3D": 1, - "__pyx_k_16": 1, - "__Pyx_minusones": 1, - "__Pyx_GIVEREF": 9, - "__Pyx_SetAttrString": 2, - "keepChars": 4, - "UV_PROCESS_DETACHED": 2, - "randomkeyCommand": 1, - "allowComments": 4, - "WGL_EXT_swap_control": 2, - "wglGetExtensionsStringEXT": 1, - "i_LIMSELECT_RF_STRING_AFTERV0": 1, - "hgetallCommand": 1, - "PFNWGLDXUNLOCKOBJECTSNVPROC": 2, - "PFNWGLDXOBJECTACCESSNVPROC": 2, - "__pyx_clineno": 58, - "res1": 2, - "rfString_Init_f": 2, - "codepoint": 47, - "__wglewReleaseVideoDeviceNV": 2, - "dstX": 1, - "*values": 1, - "i_LIMSELECT_RF_STRING_BEFOREV1": 1, - "current": 5, - "redisLogRaw": 3, - "arch_disable_nonboot_cpus_end": 2, - "out_release": 3, - "wglSetStereoEmitterState3DL": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_ModifiedHuber": 1, - "i_SELECT_RF_STRING_FWRITE3": 1, - "i_rfLMSX_WRAP9": 2, - "i_SELECT_RF_STRING_BETWEEN5": 1, - "*active_writer": 1, - "s_headers_done": 4, - "bigger": 3, - "cpu_chain": 4, - "VALUE": 13, - "zcardCommand": 1, - ".expires": 8, - "git_config": 3, - "git_pool_strcat": 1, - "HTTP_PARSER_VERSION_MINOR": 1, - "getRandomHexChars": 1, - "WGL_COLOR_BITS_EXT": 1, - "__pyx_gilstate_save": 2, - "i_SELECT_RF_STRING_REMOVE": 1, - "encode": 2, - "git_repository_workdir": 1, - "fgets": 1, - "wglSendPbufferToVideoNV": 1, - "enc_packmode": 1, - "i_NPSELECT_RF_STRING_AFTER0": 1, - "shared.queued": 2, - "rfString_Equal": 4, - "*c": 69, - "srcLevel": 1, - "hReadDC": 2, - "WGLEW_ARB_create_context_profile": 1, - "rfString_Create_fUTF32": 2, - "REDIS_REPL_NONE": 1, - "CPU_DEAD": 1, - "EXPORT_SYMBOL_GPL": 4, - "__pyx_t_7sklearn_12linear_model_8sgd_fast_INTEGER": 3, - "s_req_spaces_before_url": 5, - "uSource": 2, - "WGL_ATI_pixel_format_float": 2, - "": 1, - "cpu_present_mask": 2, - "statloc": 5, - "alloc": 6, - "HANDLE": 14, - "rfString_Fwrite_fUTF8": 1, - "argument": 1, - ".size": 2, - "surrogate": 4, - "i_NVrfString_CreateLocal": 3, - "RF_STRING_ITERATE_END": 9, - "MSEARCH": 1, - "querybuf_size/": 1, - "B0": 1, - "*__pyx_kp_s_2": 1, - "git_cached_obj_freeptr": 1, - "sdscatrepr": 1, - "*author": 2, - "PFNWGLRELEASEPBUFFERDCEXTPROC": 2, - "height": 3, - "PyBytes_DecodeEscape": 1, - "rfString_ToInt": 1, - "onto_pool": 7, - "cmd_annotate": 1, - "s_req_host_v6_start": 7, - "uv__process_open_stream": 2, - "init_cpu_possible": 1, - "server.stat_evictedkeys": 3, - "argc": 26, - "hAffinityDC": 1, - "__WGLEW_EXT_create_context_es2_profile": 2, - "__pyx_k__dloss": 1, - "rfString_PruneStart": 2, - "s_req_host": 8, - "zmalloc_used_memory": 8, - "date": 5, - "WGLEW_I3D_swap_frame_usage": 1, - "WGL_SUPPORT_GDI_EXT": 1, - "PyFloat_AS_DOUBLE": 1, - "trace_repo_setup": 1, - "rndr_newbuf": 2, - "wglSwapBuffersMscOML": 1, - "wglBindVideoImageNV": 1, - "PFNWGLCOPYIMAGESUBDATANVPROC": 2, - "__pyx_k__I": 1, - "added": 1, - "i_SELECT_RF_STRING_BEFOREV14": 1, - "refcount": 2, - "cmd_format_patch": 1, - "yajl_handle_t": 1, - "i_STR_": 8, - "unused": 3, - "afterP": 2, - "*db": 3, - "call": 1, - "pingCommand": 2, - "http_strerror_tab": 7, - "uv_handle_t*": 1, - "PFNWGLBINDSWAPBARRIERNVPROC": 2, - "__wglewSaveBufferRegionARB": 2, - "backgroundRewriteDoneHandler": 1, - "s_header_field_start": 12, - "http_parser_url": 3, - "HPE_INVALID_CONTENT_LENGTH": 4, - "stack": 6, - "PURGE": 2, - "__wglewGetGammaTableI3D": 2, - "*__pyx_ptype_5numpy_flatiter": 1, - "pow": 2, - "SIGILL": 1, - "cmd_write_tree": 1, - "options.stdio": 3, - "HTTP_DELETE": 1, - "llist_mergesort": 1, - "yajl_callbacks": 1, - "wglEnumGpusNV": 1, - "PFNWGLSETSTEREOEMITTERSTATE3DLPROC": 2, - "wglGetGPUIDsAMD": 1, - "WGL_SAMPLE_BUFFERS_3DFX": 1, - "__Pyx_PyBytes_FromUString": 1, - "saddCommand": 1, - "server.aof_rewrite_perc": 3, - "i_rfString_Create": 3, - "": 1, - "hShareContext": 2, - "__pyx_k__shape": 1, - "unhex": 3, - "each_commit_graft_fn": 1, - "WGL_ARB_make_current_read": 2, - "WGLEW_GET_FUN": 120, - "__wglext_h_": 2, - "__pyx_k__numpy": 1, - "__pyx_v_weight_neg": 1, - "S_ISLNK": 2, - "KEEP_ALIVE": 4, - "__wglewGetFrameUsageI3D": 2, - "WGL_DRAW_TO_PBUFFER_ARB": 1, - "*__pyx_n_s__C": 1, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_LossFunction": 15, - "__Pyx_BufFmt_StackElem": 1, - "Py_UNICODE*": 1, - "sdscat": 14, - "Quitting": 2, - "sections": 11, - "SIGTERM": 1, - "Error": 2, - "__Pyx_ErrFetch": 1, - "nosave": 2, - "*tokensN": 1, - "description": 1, - "server.aof_current_size": 2, - "sscanf": 1, - "WGL_TRANSPARENT_EXT": 1, - "__cdecl": 2, - "c_ru.ru_stime.tv_usec/1000000": 1, - "success": 4, - "SUNDOWN_VER_MINOR": 1, - "server.stat_numcommands": 4, - "RF_BIG_ENDIAN": 10, - "strbuf_release": 1, - "has_non_ascii": 1, - "ll2string": 3, - "PyObject_Call": 6, - "tag": 1, - "cmd_describe": 1, - "SET_ERRNO": 47, - "server.zset_max_ziplist_value": 1, - "bgrewriteaofCommand": 1, - "WGL_DRAW_TO_WINDOW_ARB": 1, - "i_SELECT_RF_STRING_AFTERV18": 1, - "header_value_mark": 2, - "git_hash_final": 1, - "*__pyx_vtabptr_7sklearn_12linear_model_8sgd_fast_Huber": 1, - "pragma": 1, - "opening": 2, - "warning": 1, - "callbacks": 3, - "rb_rdiscount_toc_content": 2, - "__GFP_ZERO": 1, - "parse_signed_commit": 1, - "*t": 2, - "git_vector_init": 3, - "fit": 3, - "self_ru": 2, - "populateCommandTable": 2, - "HTTP_ERRNO_MAP": 3, - "pager_command_config": 2, - "REDIS_MAX_LOGMSG_LEN": 1, - "alloc_cpumask_var": 1, - "tolower": 2, - "genRedisInfoString": 2, - "headers": 1, - "item": 24, - "DICT_HT_INITIAL_SIZE": 2, - "git_oid_cpy": 5, - "wglFreeMemoryNV": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_25SquaredEpsilonInsensitive_6__reduce__": 1, - "npy_uint16": 1, - "*__pyx_f": 1, - "i_ARG1_": 56, - "s1P": 2, - "IS_HEX": 2, - "trace_argv_printf": 3, - "*__pyx_n_s__p": 1, - "*__pyx_n_s__numpy": 1, - "PyUnicode_Check": 1, - "EV_A_": 1, - "sdsRemoveFreeSpace": 1, - "FILE*": 64, - "ops": 1, - "A5": 3, - "PyList_CheckExact": 1, - "npy_uintp": 1, - "needs": 1, - "commit_tree": 1, - "git_attr_fnmatch": 4, - "WGLEW_EXT_pixel_format": 1, - "__Pyx_RaiseDoubleKeywordsError": 1, - "testity": 2, - "*new_oid": 1, - "REDIS_SHARED_SELECT_CMDS": 1, - "WGL_VIDEO_OUT_FIELD_2": 1, - "wglCreatePbufferARB": 1, - "IS_NUM": 14, - "s_req_host_v6": 7, - "*piFormats": 2, - "uType": 1, - "npy_longlong": 2, - "0xBF": 1, - "dup2": 4, - "self_ru.ru_utime.tv_sec": 1, - "WGL_NUMBER_PIXEL_FORMATS_EXT": 1, - "DL_EXPORT": 2, - "WGL_BIND_TO_TEXTURE_RECTANGLE_RGBA_NV": 1, - "monitorCommand": 2, - "defined": 42, - "RF_String": 27, - "*message": 1, - "__pyx_k__count": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_11SquaredLoss_loss": 1, - "*__pyx_ptype_7sklearn_5utils_11seq_dataset_SequentialDataset": 1, - "__Pyx_AddTraceback": 7, - "ev": 2, - "act.sa_flags": 2, - "addReplyBulkLongLong": 2, - "*ln": 3, - "/sizeof": 4, - "PFNWGLMAKECONTEXTCURRENTARBPROC": 2, - "__Pyx_PyInt_FromSize_t": 1, - "robj*": 3, - "REDIS_SLAVE": 3, - "extended": 3, - "redisDb": 3, - "hand": 28, - "*__pyx_n_s__weight_neg": 1, - "characterPos_": 5, - "*subValues": 2, - "memcpy": 34, - "patch": 1, - "__WGLEW_ARB_pbuffer": 2, - "GLEW_STATIC": 1, - "__pyx_obj_7sklearn_5utils_11seq_dataset_ArrayDataset": 2, - "SOCK_NONBLOCK": 2, - "RF_UTF32_BE": 3, - "shared.roslaveerr": 2, - "wglReleaseVideoDeviceNV": 1, - "C1": 1, - "WGL_AUX5_ARB": 1, - "xstrdup": 2, - "server.pubsub_patterns": 4, - "server.aof_flush_postponed_start": 2, - "defsections": 11, - "gets": 1, - "s_req_http_H": 3, - "zscoreCommand": 1, - "REDIS_HASH_MAX_ZIPLIST_ENTRIES": 1, - "GLuint": 9, - "obuf_bytes": 3, - "REDIS_RUN_ID_SIZE": 2, - "msg": 10, - "GIT_IDXENTRY_INTENT_TO_ADD": 1, - "**__pyx_pyargnames": 3, - "__pyx_k____main__": 1, - "i_rfLMSX_WRAP16": 2, - "*argc": 1, - "HTTP_POST": 2, - "http_parser_pause": 2, - "hlenCommand": 1, - "/": 9, - "R_Zero/R_Zero": 1, - "CPU_UP_CANCELED": 1, - "_GPU_DEVICE": 1, - "WGL_ACCUM_ALPHA_BITS_EXT": 1, - "shape": 1, - "PyInt_Type": 1, - "retval": 3, - "rstr": 24, - "dictRehashMilliseconds": 2, - "PFNWGLENABLEGENLOCKI3DPROC": 2, - "nr_parent": 3, - "YA_MALLOC": 1, - "WGL_FRAMEBUFFER_SRGB_CAPABLE_ARB": 1, - "REDIS_SLOWLOG_MAX_LEN": 1, - "hcpu": 10, - "x": 57, - "wglGetPixelFormatAttribivARB": 1, - "cmd_blame": 2, - "s_chunk_data": 3, - "SA_SIGINFO": 1, - "cmd_diff_index": 1, - "REDIS_REPL_SYNCIO_TIMEOUT": 1, - "rfString_ToUTF16": 4, - "ff": 10, - "wglDestroyPbufferEXT": 1, - "ERROR_INCOMPATIBLE_DEVICE_CONTEXTS_ARB": 1, - "cabs": 1, - "*__pyx_vtabptr_7sklearn_12linear_model_8sgd_fast_Hinge": 1, - "i_NPSELECT_RF_STRING_BETWEEN0": 1, - "*REDIS_EXPIRELOOKUPS_TIME_PERC/REDIS_HZ/100": 1, - "RUSAGE_SELF": 1, - "__pyx_k__float64": 1, - "bytesN": 98, - "rlimit": 1, - "on": 4, - "rfString_Afterv": 4, - "cmd_init_db": 2, - "__pyx_k__weights": 1, - "*commit_list_insert": 1, - "nb": 2, - "cmd_tag": 1, - "REDIS_SHUTDOWN_NOSAVE": 1, - "uEdge": 2, - "n_features": 2, - "UV_CREATE_PIPE": 4, - "server.delCommand": 1, - "h_connection_keep_alive": 4, - "__Pyx_BUILTIN_MODULE_NAME": 2, - "cpumask_clear_cpu": 5, - "__WGLEW_ARB_multisample": 2, - "strncmp": 1, - "git_iterator": 8, - "LOG_LOCAL0": 1, - "bitcountCommand": 1, - "WGL_NEED_PALETTE_EXT": 1, - "WGL_CONTEXT_COMPATIBILITY_PROFILE_BIT_ARB": 1, - "section": 14, - "server.bpop_blocked_clients": 2, - "MKD_LI_END": 1, - "wglBindSwapBarrierNV": 1, - "wglEnumerateVideoDevicesNV": 1, - "wglIsEnabledGenlockI3D": 1, - "width": 3, - "npy_uint8": 1, - "cmd_verify_tag": 1, - "RUN_SETUP": 81, - "as": 4, - "dictSlots": 3, - "READ_VSNPRINTF_ARGS": 5, - "server.cluster.myself": 1, - "cmd_repo_config": 1, - "server.rdb_checksum": 1, - "CMIT_FMT_UNSPECIFIED": 1, - "in": 11, - "them": 3, - "retcode": 3, - "DeviceString": 1, - "rfString_ToUTF32": 4, - "__Pyx_GetBufferAndValidate": 1, - "PyErr_Warn": 1, - "i_SELECT_RF_STRING_INIT_NC": 1, - "strlen": 17, - "cpu_hotplug_begin": 4, - "hash": 12, - "UNKNOWN": 1, - "POST": 2, - "cmd_send_pack": 1, - "ascii_logo": 1, - "git_iterator_for_workdir_range": 2, - "WGLEW_EXPORT": 167, - "F00": 1, - "": 1, - "i_NPSELECT_RF_STRING_REPLACE1": 1, - "clientsCronHandleTimeout": 2, - "PyInt_FromSize_t": 1, - "i_SELECT_RF_STRING_COUNT1": 1, - "Ftelll": 1, - "__wglewQueryVideoCaptureDeviceNV": 2, - "__Pyx_Print": 1, - "mem_used": 9, - "upgrade": 3, - "zmalloc_get_fragmentation_ratio": 1, - "__WGLEW_NV_video_output": 2, - "WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_R_NV": 1, - "__WGLEW_ARB_create_context_profile": 2, - "lineno": 1, - "GOTREF": 1, - "cpu_maps_update_begin": 9, - "*_param": 1, - "__wglewQueryFrameLockMasterI3D": 2, - "*kwds2": 1, - "*w_data_ptr": 1, - "xC0": 3, - "HEAD": 2, - "array": 1, - "rb_define_class": 1, - "stateStack": 3, - "PFNWGLGETVIDEODEVICENVPROC": 2, - "WGL_NO_ACCELERATION_EXT": 1, - "find_block_tag": 1, - "http_parser_parse_url": 2, - "sinterCommand": 2, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Huber": 1, - "count": 17, - "s_res_first_http_major": 3, - "delCommand": 1, - "CB": 1, - "B6": 1, - "WGL_PBUFFER_LARGEST_ARB": 1, - "WGLEW_AMD_gpu_association": 1, - "*__pyx_ptype_5numpy_broadcast": 1, - "i_NPSELECT_RF_STRING_BEFORE1": 1, - "WGLEW_I3D_swap_frame_lock": 1, - "file_size": 6, - "CONFIG_NR_CPUS": 5, - "RF_BITFLAG_ON": 5, - "int*": 22, - "deltas": 8, - "WGL_NV_vertex_array_range": 2, - "*param": 1, - "__cpu_die": 1, - "Py_PYTHON_H": 1, - "PROPFIND": 2, - "__weak": 4, - "cell_start": 5, - "*PGPU_DEVICE": 1, - "__pyx_k__O": 1, - "__pyx_v_flags": 1, - "char*": 166, - "__pyx_k__ValueError": 1, - "SetupContext": 3, - "getpid": 7, - "*keyobj": 2, - "WGL_ACCESS_WRITE_DISCARD_NV": 1, - "wglGetGenlockSourceI3D": 1, - "i_SELECT_RF_STRING_REPLACE4": 1, - "_cpu_down": 3, - "REDIS_ZSET_MAX_ZIPLIST_ENTRIES": 1, - "**column_data": 1, - "diff_delta__dup": 3, - "///": 4, - "diff_from_iterators": 5, - "float*": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_EpsilonInsensitive": 1, - "i_SELECT_RF_STRING_CREATE": 1, - "chars": 3, - "getNodeByQuery": 1, - "beforeSleep": 2, - "WGL_FRONT_RIGHT_ARB": 1, - "__Pyx_PyInt_AsSignedLong": 1, - "setrlimit": 1, - "CONFIG_SMP": 1, - "*old_tree": 3, - ".hcpu": 1, - "server.list_max_ziplist_entries": 1, - "WGL_CONTEXT_CORE_PROFILE_BIT_ARB": 1, - "llenCommand": 1, - "IS_HOST_CHAR": 4, - "INVALID_FRAGMENT": 1, - "else": 190, - "PyLong_AsLong": 1, - "flag": 1, - "i_SELECT_RF_STRING_BEFORE3": 1, - "createPidFile": 2, - "*commandTable": 1, - "entry": 17, - "build_all_zonelists": 1, - "__wglewBindVideoImageNV": 2, - "__pyx_k__sys": 1, - "__pyx_print_kwargs": 1, - "allsections": 12, - "__wglewQueryMaxSwapGroupsNV": 2, - "wglGenlockSampleRateI3D": 1, - "MKD_AUTOLINK": 1, - "*http_method_str": 1, - "punsubscribeCommand": 2, - "s_header_field": 4, - "__WGLEW_NV_copy_image": 2, - "PFNWGLGENLOCKSOURCEI3DPROC": 2, - "__Pyx_c_quotf": 2, - "Rebuild": 1, - "rfString_Between": 3, - "sflags": 1, - "cpu_hotplug_pm_sync_init": 2, - "cmd_gc": 1, - "setnxCommand": 1, - "**tb": 1, - "__fastcall": 2, - "setCommand": 1, - "ctime.seconds": 2, - "tag_size": 3, - "GIT_DELTA_DELETED": 7, - "LOG_NOTICE": 1, - "yajl_lex_free": 1, - "*__pyx_n_s__class_weight": 1, - "*__pyx_ptype_7sklearn_5utils_11seq_dataset_CSRDataset": 1, - "marked": 1, - "uv_process_t": 1, - "_entry": 1, - "free_commit_list": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Hinge_2loss": 1, - "ZMALLOC_LIB": 2, - "__pyx_cfilenm": 1, - "otherwise": 1, - "ref_name": 2, - "rfFgets_UTF32BE": 1, - "deltas.length": 4, - "PFNWGLGETEXTENSIONSSTRINGARBPROC": 2, - "cmd_fmt_merge_msg": 1, - "m": 8, - "RF_LF": 10, - "cpu_notify": 5, - "parse_commit_buffer": 3, - "WGL_CONTEXT_FLAGS_ARB": 1, - "PyNumber_Int": 1, - "method_strings": 2, - "grafts_replace_parents": 1, - "server.unixsocketperm": 2, - "parse_commit_date": 2, - "__WGLEW_ATI_render_texture_rectangle": 2, - "__pyx_pf_7sklearn_12linear_model_8sgd_fast_12LossFunction_loss": 1, - "*__pyx_t_1": 6, - "*__pyx_vtab": 3, - "__pyx_t_5numpy_uint64_t": 1, - "tp_as_sequence": 1, - "can": 2, - "RF_StringX": 2, - "RF_UTF16_BE": 7, - "cleanup": 12, - "commit_list_count": 1, - "npy_float64": 1, - "notinherited": 1, - "StringX": 2, - "git_hash_buf": 1, - "__WGLEW_NV_video_capture": 2, - "pAddress": 2, - "__pyx_k__intercept_decay": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Hinge_4dloss": 1, - "__Pyx_c_eq": 2, - "i_SELECT_RF_STRING_AFTERV6": 1, - "*pop_commit": 1, - "Does": 1, - "REDIS_SET_MAX_INTSET_ENTRIES": 1, - "arch_disable_nonboot_cpus_begin": 2, - "*__Pyx_GetName": 1, - "PyBytes_Type": 1, - "listIter": 2, - "h_matching_transfer_encoding": 3, - "header_end": 7, - "listNode": 4, - "WGL_DRAW_TO_BITMAP_ARB": 1, - "is_valid_array": 1, - "REDIS_BLOCKED": 2, - "git_vector": 1, - "uid": 2, - "PFNWGLBINDVIDEOCAPTUREDEVICENVPROC": 2, - "CYTHON_WITHOUT_ASSERTIONS": 1, - "mstime": 5, - "deltas.contents": 1, - "*entry": 2, - "__WGLEW_EXT_depth_float": 2, - "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_LossFunction": 5, - "kind": 1, - "AOF_FSYNC_EVERYSEC": 1, - "old_prefix": 2, - "server.unixtime": 10, - "die": 5, - "old_file.oid": 3, - "__WGLEW_NV_float_buffer": 2, - "__wglewQueryFrameTrackingI3D": 2, - "*__pyx_n_s__threshold": 1, - "__GNUC_MINOR__": 2, - "uv__process_close_stream": 2, - "reflog_walk_info": 1, - "*get_merge_parent": 1, - "hkeysCommand": 1, - "start_of_line": 2, - "PFNWGLWAITFORMSCOMLPROC": 2, - "*sbc": 3, - "WGLEW_ARB_multisample": 1, - "*__pyx_n_s__update": 1, - "off": 8, - "RSTRING_PTR": 2, - "*row_work": 1, - "message_complete": 7, - "little": 7, - "zonelists_mutex": 2, - "oom": 3, - "wglReleasePbufferDCEXT": 1, - "__pyx_pyargnames": 3, - "pager_config": 3, - "*__pyx_n_s__penalty_type": 1, - "__pyx_vtabstruct_7sklearn_5utils_11seq_dataset_SequentialDataset": 4, - "*str": 1, - "stderr": 15, - "F_TRAILING": 3, - "MKD_NO_EXT": 1, - "i_NVrfString_Create": 3, - "WGL_SHARE_ACCUM_EXT": 1, - "*__pyx_ptype_7sklearn_5utils_13weight_vector_WeightVector": 1, - "i_SELECT_RF_STRING_BETWEEN0": 1, - "i_rfLMSX_WRAP4": 11, - "CONFIG_INIT_ALL_POSSIBLE": 1, - "<=thisstr->": 1, - "wglGetGammaTableParametersI3D": 1, - "*temp": 1, - "s_chunk_data_almost_done": 3, - "__pyx_t_1": 69, - "Py_buffer*": 2, - "//@": 1, - "*blob_type": 2, - "*one": 1, - "server.zset_max_ziplist_entries": 1, - "body": 6, - "divisor": 3, - "HVIDEOOUTPUTDEVICENV": 2, - "WGL_STEREO_POLARITY_NORMAL_3DL": 1, - "characterUnicodeValue_": 4, - "check_for_tasks": 2, - "block_lines": 3, - "i_rfString_Equal": 3, - "anetPeerToString": 1, - "unhex_val": 7, - "IS_UNSIGNED": 1, - "contiuing": 1, - "GET": 2, - "git_iterator_for_index_range": 2, - "prefix": 34, - "uv_spawn": 1, - "WGL_COLOR_BITS_ARB": 1, - "WGL_ARB_pixel_format": 2, - "*__Pyx_GetItemInt_Generic": 1, - "GIT_BUF_INIT": 3, - "calloc": 1, - "dictCreate": 6, - "wglDXRegisterObjectNV": 1, - "wglDestroyImageBufferI3D": 1, - "exit_status": 3, - "substring": 5, - "PFNWGLQUERYMAXSWAPGROUPSNVPROC": 2, - "Flags": 1, - ".blocking_keys": 1, - "type": 36, - "key": 9, - "C7": 1, - "__Pyx_GetItemInt": 1, - "EV_CHILD": 1, - "have": 2, - "": 1, - "*eol": 1, - "__Pyx_TypeTest": 1, - "cmd_diff": 1, - "rfString_Copy_IN": 2, - "WGL_VIDEO_OUT_COLOR_AND_DEPTH_NV": 1, - "occurences": 5, - "va_arg": 2, - "dictSdsKeyCaseCompare": 2, - "slaves": 3, - "RF_HEXGE_US": 4, - "bufferSize": 6, - "wglGetDigitalVideoParametersI3D": 1, - "RF_HEXL_US": 8, - "byteLength": 197, - "5": 1, - "i_rfString_CreateLocal1": 3, - "server.saveparams": 2, - "appendCommand": 1, - "library": 3, - "__pyx_t_7sklearn_5utils_11seq_dataset_INTEGER": 7, - "i_SELECT_RF_STRING_CREATE_NC1": 1, - "execvp": 1, - "s_chunk_size_almost_done": 4, - "RF_NEWLINE_CRLF": 1, - "": 2, - "_strnicmp": 1, - "realloc": 1, - "WGL_EXT_framebuffer_sRGB": 2, - "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_Classification": 1, - "for_each_cpu": 1, - "GIT_MODE_TYPE": 3, - "ret": 142, - "WGL_GENLOCK_SOURCE_MULTIVIEW_I3D": 1, - "*puBlue": 2, - "__pyx_L0": 18, - "PyLong_Check": 1, - "PyBytes_Concat": 1, - "RF_STRING_ITERATEB_END": 2, - "s_req_http_HT": 3, - "h_connection_close": 4, - "*text": 1, - "access": 2, - "WGL_SUPPORT_GDI_ARB": 1, - "piValue": 8, - "INT": 3, - "*md": 1, - "redisAsciiArt": 2, - "RF_HEXEQ_C": 9, - "fl": 8, - "__pyx_v_intercept_decay": 1, - "__FILE__": 4, - "git_buf_detach": 1, - "": 2, - "cpu_hotplug.refcount": 3, - "decoration": 1, - "rfUTF8_Decode": 2, - "listRotate": 1, - "INVALID_HEADER_TOKEN": 1, - "__WGLEW_EXT_make_current_read": 2, - "evalShaCommand": 1, - "*maxBarriers": 1, - "REDIS_MAX_QUERYBUF_LEN": 1, - "REDIS_MAX_CLIENTS": 1, - "*__pyx_n_s__dloss": 1, - "c_index_": 3, - "register_commit_graft": 2, - "server.unblocked_clients": 4, - "__pyx_t_7sklearn_5utils_13weight_vector_DOUBLE": 2, - "12": 1, - "perror": 5, - "xBF": 2, - "void": 279, - "PFNWGLFREEMEMORYNVPROC": 2, - "indexing": 1, - "mem_freed": 4, - "wglBindVideoCaptureDeviceNV": 1, - "utime": 1, - "cmd_merge_recursive": 4, - "*kwds": 1, - "Python.": 1, - "LL*1024*1024*1024": 1, - "bgsaveCommand": 1, - "i_NVrfString_Init_nc": 3, - "*__pyx_ptype_5numpy_dtype": 1, - "*__pyx_refnanny": 1, - "i_SELECT_RF_STRING_AFTER3": 1, - "it": 12, - "git_pool_clear": 2, - "HTTP_SEARCH": 1, - "task_unlock": 1, - "wglewInit": 1, - "wglGenlockSourceDelayI3D": 1, - "__WGLEW_ATI_pixel_format_float": 2, - "__wglewSetPbufferAttribARB": 2, - "PyUnicode_Decode": 1, - "raw_notifier_chain_register": 1, - "b": 66, - "PFNWGLCHOOSEPIXELFORMATEXTPROC": 2, - "PyLong_AsSsize_t": 1, - "new_parent": 6, - "*method_strings": 1, - "PFNWGLMAKECONTEXTCURRENTEXTPROC": 2, - "__pyx_k__q": 1, - "__pyx_k_2": 1, - "__Pyx_NAMESTR": 2, - ".len": 3, - "#if": 92, - "git_config_maybe_bool": 1, - "WGLEW_GET_VAR": 49, - "i_SELECT_RF_STRING_AFTERV13": 1, - "cppcode": 1, - "logging": 5, - "include": 6, - "cmd_notes": 1, - "memset": 4, - "*process": 1, - "uv__process_child_init": 2, - "PyBytes_Size": 1, - "shared.subscribebulk": 1, - "s_res_line_almost_done": 4, - "": 3, - "PFNWGLENUMGPUSNVPROC": 2, - "entries": 2, - "i_rfString_Replace": 6, - "syslog": 1, - "__pyx_t_double_complex_from_parts": 1, - "persistCommand": 1, - "*o": 8, - "HTTP_CONNECT": 4, - "": 1, - "R_NegInf": 2, - "RF_IAMHERE_FOR_DOXYGEN": 22, - "more": 2, - "server.neterr": 4, - "flags_extended": 2, - "server.aof_no_fsync_on_rewrite": 1, - "remaining_bytes": 1, - "WGL_GPU_NUM_RB_AMD": 1, - "__Pyx_PySequence_GetSlice": 2, - "GFP_KERNEL": 1, - "PyGILState_Ensure": 1, - "i_ENCODING_": 4, - "i_NPSELECT_RF_STRING_FWRITE": 1, - "listSetMatchMethod": 1, - "new": 4, - "DIFF_NEW_PREFIX_DEFAULT": 1, - "__Pyx_Buffer": 2, - "i_rfString_Fwrite": 5, - "HEADER_OVERFLOW": 1, - "rb_intern": 15, - "std": 8, - "lrangeCommand": 1, - "A0": 3, - "UV_PROCESS": 1, - "s_res_status_code": 3, - "server.clients": 7, - "*diff_prefix_from_pathspec": 1, - "__wglewBindVideoDeviceNV": 2, - "F": 38, - "strbuf": 12, - "GIT_VERSION": 1, - "thisstr": 210, - "KERN_WARNING": 3, - "WGL_MIPMAP_LEVEL_ARB": 1, - "PyCodeObject*": 2, - "PyBytes_CheckExact": 1, - "ANET_ERR": 2, - "error": 96, - "limit.rlim_max": 1, - "WIFEXITED": 1, - "cmd_check_ref_format": 1, - "WGL_GENLOCK_SOURCE_EDGE_RISING_I3D": 1, - "wglSetGammaTableI3D": 1, - "subValues": 8, - "diff*number": 1, - "HPE_##n": 1, - "server.slowlog_log_slower_than": 1, - "do_render": 4, - "commit_graft_pos": 2, - "object": 10, - "lexer": 4, - "group": 3, - "LPVOID*": 1, - "wglGetCurrentAssociatedContextAMD": 1, - "existence": 2, - "acceptUnixHandler": 1, - "rfString_After": 4, - "fgetc": 9, - "cpu_maps_update_done": 9, - "*modname": 1, - "watcher": 4, - "parse_inline": 1, - "opts.flags": 8, - "stdout": 5, - "RE_STRING_TOFLOAT_UNDERFLOW": 1, - "WGL_TEXTURE_CUBE_MAP_POSITIVE_Y_ARB": 1, - "*__pyx_n_s__xnnz": 1, - "charValue": 12, - "INVALID_QUERY_STRING": 1, - "exitcode": 3, - "de": 12, - "WGL_I3D_digital_video_control": 2, - "*index_data_ptr": 2, - "": 1, - "server.arch_bits": 3, - "on_message_complete": 1, - "dictGetKey": 4, - "*pop_most_recent_commit": 1, - "environ": 4, - "*__pyx_ptype_5numpy_ndarray": 1, - "i_rfString_CreateLocal": 2, - "non": 1, - "git_iterator_advance_into_directory": 1, - "shared.nullbulk": 1, - "__wglewReleaseVideoCaptureDeviceNV": 2, - "wglSetGammaTableParametersI3D": 1, - "__pyx_k__dtype": 1, - "npy_float32": 1, - "RE_FILE_EOF": 22, - "cpu_hotplug_enable_after_thaw": 2, - "UF_SCHEMA": 2, - "old_iter": 8, - "rfFReadLine_UTF32LE": 4, - "i_rfString_StripEnd": 3, - "UTF": 17, - "max": 4, - "shared.pong": 2, - "child_fd": 3, - "pulCounterPbuffer": 1, - "sP": 2, - "options.gid": 1, - "yajl_set_default_alloc_funcs": 1, - "wglDisableGenlockI3D": 1, - "WGL_NUMBER_UNDERLAYS_EXT": 1, - "__Pyx_PyInt_AsUnsignedLong": 1, - "i_rfLMSX_WRAP11": 2, - "*": 253, - "pp_remainder": 1, - "arch_enable_nonboot_cpus_begin": 2, - "__wglewGenlockSampleRateI3D": 2, - "__pyx_k__order": 1, - "cpu_hotplug_disable_before_freeze": 2, - "*git_diff_list_alloc": 1, - "PFNWGLDELETEASSOCIATEDCONTEXTAMDPROC": 2, - "push": 1, - "": 1, - "local": 5, - "dictEntry": 2, - "pttlCommand": 1, - "cmd_merge_file": 1, - "s": 154, - "WGL_ACCUM_ALPHA_BITS_ARB": 1, - "SUBSCRIBE": 2, - "lstr": 6, - "strncasecmp": 2, - "pptr": 5, - "strcmp": 20, - "ENOSYS": 1, - "__pyx_k__Zd": 1, - "diffcaps": 13, - "*key1": 4, - "errno": 20, - "phDeviceList": 2, - "RF_COMPILE_ERROR": 33, - "i_CMD_": 2, - "task_cpu": 1, - "REPORT": 2, - "cpu_relax": 1, - "__wglewGenlockSourceEdgeI3D": 2, - "slots": 2, - "options.file": 2, - "decodeBuf": 2, - "wglGetPbufferDCEXT": 1, - "wglDestroyPbufferARB": 1, - "i_VAR_": 2, - "included": 2, - "dateptr": 2, - "uptime/": 1, - "shared.psubscribebulk": 1, - "seconds": 2, - "clear_tasks_mm_cpumask": 1, - "shared.emptybulk": 1, - "_WIN32": 3, - "verbose": 2, - "bytesConsumed": 2, - "WGL_GENLOCK_SOURCE_EXTERNAL_SYNC_I3D": 1, - "WGL_GPU_RENDERER_STRING_AMD": 1, - "*__pyx_builtin_range": 1, - "parse_htmlblock": 1, - "CMIT_FMT_ONELINE": 1, - "rb_rdiscount_to_html": 2, - "yajl_status_client_canceled": 1, - "WGL_TRANSPARENT_ALPHA_VALUE_ARB": 1, - "*__pyx_vtabptr_7sklearn_12linear_model_8sgd_fast_SquaredHinge": 1, - "i_SELECT_RF_STRING_BEFOREV9": 1, - "RF_MODULE_STRINGS//": 1, - "lock": 6, - "HPE_INVALID_URL": 4, - "WGLEW_NV_vertex_array_range": 1, - "__WGLEW_AMD_gpu_association": 2, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_13ModifiedHuber_2dloss": 1, - "__Pyx_PyInt_AsUnsignedLongLong": 1, - "current_index": 2, - "rfString_Find": 3, - "new_src": 3, - "git_vector_swap": 1, - "__pyx_vtabstruct_7sklearn_5utils_11seq_dataset_ArrayDataset": 2, - "Lefteris": 1, - "UPGRADE": 4, - "an": 2, - "afterstr": 5, - "": 4, - "HVIDEOINPUTDEVICENV*": 1, - "WGL_SHARE_DEPTH_ARB": 1, - "*__pyx_r": 6, - "strtol": 2, - "i_rfString_Append": 3, - "server.assert_failed": 1, - "WGL_NEED_PALETTE_ARB": 1, - "": 1, - "val": 20, - "__wglewBindSwapBarrierNV": 2, - "dstY0": 1, - "PyErr_WarnEx": 1, - "i_LIMSELECT_RF_STRING_AFTERV1": 1, - "REDIS_CLIENT_LIMIT_CLASS_SLAVE": 3, - "WGL_NEED_SYSTEM_PALETTE_EXT": 1, - "__wglew_h__": 2, - "__pyx_k____test__": 1, - "*__pyx_v_info": 2, - "real": 2, - "res2": 2, - "REDIS_STRING": 31, - "i_DECLIMEX_": 121, - "open": 4, - "rfFgetc_UTF16LE": 4, - "pp_commit_easy": 1, - "SIGHUP": 1, - "cmd_config": 1, - "priority": 1, - "dstY": 1, - "s_req_port_start": 7, - "__pyx_k__f": 1, - "*__pyx_vtabptr_7sklearn_5utils_11seq_dataset_CSRDataset": 1, - "sigaction": 6, - "PySet_Check": 1, - "@endinternal": 1, - "#elif": 14, - "__Pyx_GetItemInt_Tuple_Fast": 1, - "GIT_ATTR_FNMATCH_NEGATIVE": 1, - "server.cluster.configfile": 1, - "Py_buffer": 6, - "server.syslog_enabled": 3, - "": 1, - "wglext.h": 1, - "i_NPSELECT_RF_STRING_AFTER1": 1, - "": 1, - "float": 26, - "*d": 1, - "name.sysname": 1, - ".active_writer": 1, - "here": 5, - "REDIS_MULTI": 1, - "WGLEW_I3D_digital_video_control": 1, - "PFNWGLGETDIGITALVIDEOPARAMETERSI3DPROC": 2, - "sq_length": 2, - "rfString_Replace": 3, - "INVALID_CONTENT_LENGTH": 1, - "cmd_remote": 1, - "debugCommand": 1, - "afterstrP": 2, - "addReplyError": 6, - "server.master": 3, - "strdup": 1, - "target_sbc": 1, - "Py_True": 2, - "uv__handle_stop": 1, - "nodes": 10, - "B1": 1, - "__wglewMakeAssociatedContextCurrentAMD": 2, - "*__pyx_kp_s_3": 1, - "__pyx_t_5numpy_int32_t": 4, - "dictGenHashFunction": 5, - "cmd_whatchanged": 1, - "CALLBACK_NOTIFY": 10, - "ignore_dups": 2, - "PyBytes_AsString": 2, - "standard": 1, - "buf": 57, - "srand": 1, - "HPE_PAUSED": 2, - "socketpair": 2, - "PyObject_TypeCheck": 3, - "bad": 1, - "*logmsg_reencode": 1, - "UL": 1, - ";": 5439, - "PFNWGLENUMGPUDEVICESNVPROC": 2, - "*piValues": 2, - "__pyx_pw_7sklearn_12linear_model_8sgd_fast_10Regression_1loss": 1, - "encodingP": 1, - ".id": 1, - "getrusage": 2, - "on_header_field": 1, - "commit_list_insert": 2, - "strides": 1, - "__inline__": 1, - "i_SELECT_RF_STRING_BEFOREV15": 1, - "h_matching_upgrade": 3, - "omode": 8, - "__pyx_v_y": 46, - "__pyx_t_5numpy_complex_t": 1, - "*__pyx_empty_bytes": 1, - "PyNumber_InPlaceTrueDivide": 1, - "msetnxCommand": 1, - "find": 1, - "string": 18, - "": 1, - "o1": 7, - "HVIDEOINPUTDEVICENV": 5, - "PFNWGLCREATEDISPLAYCOLORTABLEEXTPROC": 2, - "rfString_Init_fUTF8": 3, - "s_chunk_size": 3, - "cmd_version": 1, - "acquire_gil": 4, - "PyBUF_STRIDES": 6, - "": 1, - "DEFINE_MUTEX": 1, - "uMaxLineDelay": 1, - "PyTuple_SET_ITEM": 6, - "i_SELECT_RF_STRING_FIND0": 1, - "otherP": 4, - "cmd_merge_index": 1, - "keyobj": 6, - "termination": 3, - "///closing": 1, - "name": 28, - ".asize": 2, - "ttlCommand": 1, - "WGLEW_NV_multisample_coverage": 1, - "__pyx_k__n_features": 1, - "i_NVrfString_Create_nc": 3, - "redisGitSHA1": 3, - "usage": 2, - "SEARCH": 3, - "__wglewDXUnregisterObjectNV": 2, - "*lookup_commit": 2, - "CHECKOUT": 2, - "DWORD*": 1, - "PyInt_FromSsize_t": 6, - "HPE_INVALID_METHOD": 4, - "cmd_pack_objects": 1, - "uState": 1, - "server.cluster.state": 1, - "cmd_fast_export": 1, - "MASK_DECLARE_4": 3, - "**subject": 2, - "__wglewDXObjectAccessNV": 2, - "__pyx_pf_7sklearn_12linear_model_8sgd_fast_10Regression_loss": 1, - "rfString_StripStart": 3, - "server.stat_peak_memory": 5, - "given": 5, - "PyBaseString_Type": 1, - "rfString_PruneMiddleB": 2, - ".lock": 1, - "header_state": 42, - "online": 2, - "git_diff_options": 7, - "keys_freed": 3, - "shared.emptymultibulk": 1, - "WGLEW_NV_float_buffer": 1, - "empty_cell": 2, - "REDIS_MONITOR": 1, - "byte": 6, - "mutex_unlock": 6, - "*onto": 1, - "DWORD": 5, - "__pyx_f_7sklearn_12linear_model_8sgd_fast_l1penalty": 1, - "__PYX_HAVE__sklearn__linear_model__sgd_fast": 1, - "clear_commit_marks": 1, - "REDIS_REPL_ONLINE": 1, - "big": 14, - "option_count": 1, - "PFNWGLSETGAMMATABLEI3DPROC": 2, - "WGL_CONTEXT_MINOR_VERSION_ARB": 1, - "decrCommand": 1, - "cmd_cherry": 1, - "__pyx_k__w": 1, - "__pyx_k_8": 1, - "__Pyx_PyInt_AsUnsignedShort": 1, - "nid": 5, - "rfFtell": 2, - "GIT_DIFF_INCLUDE_IGNORED": 1, - "strict": 2, - "O_RDONLY": 1, - "SIGSEGV": 1, - "UF_FRAGMENT": 2, - "__WGLEW_ARB_extensions_string": 2, - "wglSaveBufferRegionARB": 1, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Hinge": 6, - "h_matching_connection": 3, - "c2": 13, - "cmd_checkout_index": 1, - "wglBindTexImageARB": 1, - "calling": 4, - "*eofReached": 14, - "other": 16, - "uv__process_close": 1, - "__pyx_k__isnan": 1, - "__Pyx_Raise": 4, - "object_type": 1, - "sds": 13, - "rawmode": 2, - "_isspace": 3, - "*u": 2, - "USHORT": 4, - "UINT*": 6, - "Py_SIZE": 1, - "dictGenCaseHashFunction": 1, - "KERN_ERR": 5, - "freeMemoryIfNeeded": 2, - "i_rfString_After": 5, - "WGL_ACCESS_READ_WRITE_NV": 1, - "__Pyx_GetAttrString": 2, - "i_NPSELECT_RF_STRING_COUNT": 1, - "new_argv": 7, - "HTTP_PATCH": 1, - "s_start_req_or_res": 4, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Huber_2loss": 1, - "functionality": 1, - "***tail": 1, - "shared.loadingerr": 2, - "": 1, - "dst": 15, - "*__pyx_k_tuple_14": 1, - "*__pyx_n_s__q": 1, - "HTTP_STRERROR_GEN": 3, - "S_ISGITLINK": 1, - "die_errno": 3, - "shared.space": 1, - "__WGLEW_EXT_multisample": 2, - "A6": 2, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_SquaredEpsilonInsensitive": 6, - "cpu_hotplug_pm_callback": 2, - "yajl_bs_init": 1, - "L": 1, - "server.stat_numconnections": 2, - "*cfg": 2, - "malloc": 3, - "definitions": 1, - "new_file.size": 3, - "CLOSE": 4, - "WGLEW_ATI_render_texture_rectangle": 1, - "WGLEW_ATI_pixel_format_float": 1, - "i_WHENCE_": 4, - "s_req_http_HTT": 3, - "times": 1, - "s_res_first_status_code": 3, - "PY_MINOR_VERSION": 1, - "ignore_prefix": 6, - "slaveofCommand": 2, - "buff": 95, - "MKD_NOLINKS": 1, - "WGL_RED_SHIFT_EXT": 1, - "wglReleasePbufferDCARB": 1, - "PyDict_GetItem": 6, - "__real__": 1, - "__pyx_t_5numpy_uint32_t": 1, - "*scan": 2, - "piAttribList": 4, - "string_": 9, - "internally": 1, - "int64_t": 2, - "__MINGW32__": 1, - "ev_child_init": 1, - "*commit_buffer": 2, - "WGL_SHARE_ACCUM_ARB": 1, - "util": 3, - "rpopCommand": 1, - "act": 6, - "cmd_bisect__helper": 1, - "used": 10, - "git_cached_obj": 5, - "_USE_MATH_DEFINES": 1, - "REDIS_REPL_WAIT_BGSAVE_END": 1, - "v1": 38, - "*__pyx_kp_s_20": 1, - "__pyx_k__t_start": 1, - "DECREF": 1, - "Refu": 2, - "timeCommand": 2, - "*header_value_mark": 1, - "intern": 1, - "*1024LL": 1, - "dup": 15, - "rfFgetc_UTF8": 3, - "yajl_do_parse": 1, - "__wglewGetPbufferDCEXT": 2, - "enc_count": 1, - "giterr_set": 1, - "not": 6, - "__cpu_up": 1, - "C2": 1, - "__Pyx_PyUnicode_READY": 2, - "server.maxmemory_samples": 3, - "ask": 3, - "WGL_ATI_render_texture_rectangle": 2, - "PFNWGLGETPIXELFORMATATTRIBFVARBPROC": 2, - "__pyx_t_5numpy_uint16_t": 1, - "szres": 8, - "cache": 26, - "atoi": 3, - "WGL_EXT_pixel_format_packed_float": 2, - "maybe_modified": 2, - "handle": 10, - "uDelay": 2, - "__wglewGetGammaTableParametersI3D": 2, - "WGL_STEREO_EMITTER_ENABLE_3DL": 1, - "n_samples": 1, - "i_rfLMSX_WRAP17": 2, - "0": 11, - "server.aof_last_fsync": 1, - "updateLRUClock": 3, - "wglGetGammaTableI3D": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_10Regression_2dloss": 1, - "PyFloat_CheckExact": 1, - "cmd_commit_tree": 1, - "*fp": 3, - "source": 8, - "iBuffer": 2, - "pair.": 1, - "startCharacterPos_": 4, - "rfString_Append_fUTF8": 2, - "*val": 4, - "CMIT_FMT_DEFAULT": 1, - "__wglewQueryFrameCountNV": 2, - "y": 14, - "i_STRING_": 2, - "noPreloadGetKeys": 6, - "write": 7, - "__pyx_v_threshold": 2, - "__Pyx_GetItemInt_List_Fast": 1, - "flushSlavesOutputBuffers": 1, - "**stack": 1, - "RE_FILE_READ": 2, - "node": 9, - "exact": 6, - "PFNWGLDISABLEFRAMELOCKI3DPROC": 2, - "WGL_EXT_extensions_string": 2, - "wglCreateDisplayColorTableEXT": 1, - "PyLong_FromString": 1, - "PyString_FromStringAndSize": 1, - "i_NPSELECT_RF_STRING_BETWEEN1": 1, - "git_diff_list_free": 3, - "notes": 1, - "*__pyx_vtabptr_7sklearn_12linear_model_8sgd_fast_EpsilonInsensitive": 1, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Classification": 7, - "*res": 2, - "SIGPIPE": 1, - "STRBUF_INIT": 1, - "git_pool_strdup": 3, - "*16": 2, - "WGL_ACCUM_RED_BITS_EXT": 1, - "py_line": 1, - "__Pyx_SET_CREAL": 2, - "configfile": 2, - "subscribeCommand": 2, - "*get_octopus_merge_bases": 1, - "__WGLEW_ARB_make_current_read": 2, - "function_name": 1, - "FinishContext": 1, - "initialize": 1, - "NOTIFY": 2, - "__linux__": 3, - "Non": 2, - "__pyx_skip_dispatch": 6, - "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_EpsilonInsensitive": 2, - "listCreate": 6, - "INVALID_CONSTANT": 1, - "cpu_hotplug": 1, - "short": 6, - "WGL_SWAP_METHOD_EXT": 1, - "wglMakeAssociatedContextCurrentAMD": 1, - "__Pyx_PyInt_AsSignedChar": 1, - "PyBUF_C_CONTIGUOUS": 1, - "*section": 2, - "values": 30, - "PyArray_Descr": 1, - "*vtable": 1, - "should": 2, - "saveCommand": 1, - "*cache": 4, - "clusterCron": 1, - "at": 3, - "WGL_GPU_FASTEST_TARGET_GPUS_AMD": 1, - "byteIndex_": 12, - "objectCommand": 1, - "http_message_needs_eof": 4, - "PFNWGLGETMSCRATEOMLPROC": 2, - "*__Pyx_RefNannyImportAPI": 1, - "slowlogCommand": 1, - "*configfile": 1, - "var": 7, - "**twos": 1, - "then": 1, - "BITS_TO_LONGS": 1, - "*nNumFormats": 2, - "__Pyx_c_neg": 2, - "convert": 1, - "sinterstoreCommand": 1, - "cmd": 46, - "zrevrangeCommand": 1, - "not_shallow_flag": 1, - "]": 597, - "FOR": 11, - "cmd_cat_file": 1, - "*shape": 1, - "possible": 2, - "HPE_INVALID_VERSION": 12, - "WGL_ACCUM_BITS_EXT": 1, - "HGLRC": 14, - "F01": 1, - "*__pyx_n_s__loss": 1, - "__pyx_k__l": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_14Classification_loss": 1, - "__Pyx_PyInt_AsUnsignedInt": 1, - "compile": 1, - "rfString_Before": 3, - "rfString_ToCstr": 2, - "mod": 13, - "WGL_TYPE_RGBA_UNSIGNED_FLOAT_EXT": 1, - "__Pyx_c_quot": 2, - "i_SELECT_RF_STRING_COUNT2": 1, - "git_pool_swap": 1, - "parent_offset": 1, - "PYREX_WITHOUT_ASSERTIONS": 1, - "strncpy": 3, - "45": 1, - "slaveseldb": 1, - "uv_kill": 1, - "work": 4, - "*__pyx_n_s__dataset": 1, - "*__pyx_v_loss": 1, - "_Complex_I": 3, - "RF_SELECT_FUNC_IF_NARGGT": 10, - "documentation": 1, - "opts.pathspec": 2, - "__WGLEW_NV_swap_group": 2, - "__wglewSwapIntervalEXT": 2, - "REDIS_REPL_TIMEOUT": 1, - "xC1": 1, - "INVALID_CHUNK_SIZE": 1, - "WGLEWContext*": 2, - "RF_UTF32_LE": 3, - "s_req_schema_slash": 6, - "cp": 12, - "__wglewIsEnabledGenlockI3D": 2, - "iPixelFormat": 6, - "PyString_FromFormat": 1, - "i_rfString_Afterv": 16, - "poll": 1, - "invalid": 2, - "*read_commit_extra_headers": 1, - "dxDevice": 1, - "__wglewDestroyDisplayColorTableEXT": 2, - "WGL_TEXTURE_FORMAT_ARB": 1, - "__wglewReleasePbufferDCARB": 2, - "__pyx_doc_7sklearn_12linear_model_8sgd_fast_12LossFunction_loss": 1, - "*__pyx_n_s__sample_weight": 1, - "PY_SSIZE_T_MAX": 1, - "*sp": 1, - "yajl_get_bytes_consumed": 1, - "WGLEWContextStruct": 2, - "CC": 1, - "j_": 6, - "ahead": 5, - "RF_LITTLE_ENDIAN": 23, - "B7": 1, - "WGL_SAMPLES_EXT": 1, - "__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Huber___init__": 1, - "created": 1, - "endif": 6, - "ptr": 18, - "O_APPEND": 2, - "yajl_render_error_string": 1, - "rfString_Prepend": 2, - "typename": 2, - "s_req_schema_slash_slash": 6, - "__wglewEnumGpusNV": 2, - "__pyx_PyFloat_AsDouble": 12, - "A": 11, - "rstatus": 1, - "rfFback_UTF32LE": 2, - "s_chunk_parameters": 3, - "xff": 3, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_SquaredLoss": 1, - "_OPENMP": 1, - "PySequence_DelSlice": 2, - "shared.nullmultibulk": 2, - "MIN": 3, - "fread": 12, - "tail": 12, - "WGL_ALPHA_SHIFT_EXT": 1, - "strbuf_addf": 1, - "WGL_NV_multisample_coverage": 2, - "WGL_AUX_BUFFERS_ARB": 1, - "i_SELECT_RF_STRING_REPLACE5": 1, - "dictVanillaFree": 1, - "__pyx_k__q_data_ptr": 1, - "PyNumber_Index": 1, - "shared": 1, - "tasklist_lock": 2, - "WGL_VIDEO_OUT_ALPHA_NV": 1, - ".real": 3, - "git_mutex_lock": 2, - "rfFgets_UTF8": 2, - "http_parser_init": 2, - "s_res_http_major": 3, - "sigemptyset": 2, - "FLEX_ARRAY": 1, - "suboffsets": 1, - "full_path.ptr": 2, - "cpumask_empty": 1, - "__wglewSwapBuffersMscOML": 2, - "WGL_DEPTH_FLOAT_EXT": 1, - "WGL_SUPPORT_OPENGL_ARB": 1, - "i_SELECT_RF_STRING_BEFORE4": 1, - "due": 2, - "*curtag": 2, - "old_file.mode": 2, - "watchdogScheduleSignal": 1, - "rfString_IterateB_End": 1, - "message": 3, - "jsonTextLen": 4, - "GL_RGBA_FLOAT_MODE_ATI": 1, - "__wglewQueryGenlockMaxSourceDelayI3D": 2, - "server.aof_fsync": 1, - "PyBytes_FromFormat": 1, - "server.lua_time_limit": 1, - "*get_merge_bases_many": 1, - "base": 1, - "hDC": 33, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Huber_4dloss": 1, - "__Pyx_GetItemInt_Generic": 6, - "%": 2, - "CHAR": 2, - "HTTP_MKACTIVITY": 1, - "LOG_INFO": 1, - "uv__make_socketpair": 2, - "*diff_ptr": 2, - "server.ops_sec_last_sample_time": 3, - "cmd_rev_list": 1, - "git_diff_list": 17, - "WGL_AUX4_ARB": 1, - "WGL_CUBE_MAP_FACE_ARB": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_plain_sgd": 1, - "Py_TPFLAGS_HAVE_NEWBUFFER": 1, - "git_version_string": 1, - "printk": 12, - "server.lpushCommand": 1, - "REFU_WIN32_VERSION": 1, - "WGL_NUMBER_UNDERLAYS_ARB": 1, - "__pyx_pf_7sklearn_12linear_model_8sgd_fast_25SquaredEpsilonInsensitive___init__": 1, - "__pyx_v_c": 1, - "#undef": 7, - "cmd_var": 1, - "self_ru.ru_stime.tv_usec/1000000": 1, - "n": 70, - "PyFloat_Check": 2, - "temp.bytes": 1, - "likely": 22, - "rfFback_UTF16BE": 2, - "*hcpu": 3, - "fprintf": 18, - "cmd_log": 1, - "rfUTF8_IsContinuationByte": 12, - "*__pyx_t_2": 3, - "__pyx_t_5numpy_longlong_t": 1, - "i_NPSELECT_RF_STRING_COUNT0": 1, - "*keepChars": 1, - "REDIS_MAXIDLETIME": 1, - "openlog": 1, - "p_close": 1, - "*__pyx_n_s__dtype": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_10Regression_loss": 2, - "num_online_cpus": 2, - "cmit_fmt": 3, - "__Pyx_c_is_zerof": 3, - "PyIntObject": 1, - "i_SELECT_RF_STRING_REMOVE0": 1, - "i_SELECT_RF_STRING_AFTERV7": 1, - "*header_field_mark": 1, - "cpu_notify_nofail": 4, - "WGL_SAMPLE_BUFFERS_EXT": 1, - "__Pyx_SetVtable": 1, - "*X_data_ptr": 2, - "__Pyx_StructField_": 2, - "Py_False": 2, - "yajl_status": 4, - "INT32": 1, - "iDeviceIndex": 1, - "PFNWGLCREATEASSOCIATEDCONTEXTAMDPROC": 2, - "mask": 1, - "*__pyx_n_s__order": 1, - "rfUTF16_Decode": 5, - "giterr_clear": 1, - "server.maxidletime": 3, - "wglGetPbufferDCARB": 1, - "__pyx_pw_7sklearn_12linear_model_8sgd_fast_12LossFunction_1loss": 1, - "url": 4, - "WGL_TRANSPARENT_VALUE_EXT": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_3Log_2dloss": 1, - "please": 1, - "HTTP_PARSER_ERRNO": 10, - ".name": 1, - "wglCreateImageBufferI3D": 1, - "*__pyx_m": 1, - "PyUnicode_GET_LENGTH": 1, - "**msg_p": 2, - "*__pyx_n_s__w": 1, - "__pyx_k_12": 1, - "id": 13, - "uv_stream_t*": 2, - "*url_mark": 1, - "wglDeleteAssociatedContextAMD": 1, - "sdsfree": 2, - "len": 30, - "yajl_status_to_string": 1, - "PFNWGLBEGINFRAMETRACKINGI3DPROC": 2, - "*__pyx_ptype_7sklearn_5utils_11seq_dataset_ArrayDataset": 1, - "rdbSave": 1, - "git_pool_init": 2, - "getkeys_proc": 1, - "RLIMIT_NOFILE": 2, - "HPE_OK": 10, - "depends": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12SquaredHinge_6__reduce__": 1, - "__pyx_code_cache": 1, - "parN": 10, - "cmd_column": 1, - "bytesToHuman": 3, - "__wglewCreateBufferRegionARB": 2, - "iLayerPlane": 5, - "none_allowed": 1, - "i_SELECT_RF_STRING_BETWEEN1": 1, - "i_rfLMSX_WRAP5": 9, - "REDIS_EXPIRELOOKUPS_PER_CRON": 2, - "http_parser_execute": 2, - "WGL_NEED_SYSTEM_PALETTE_ARB": 1, - "MARKDOWN_GROW": 1, - "///Fseek": 1, - "rfFback_UTF8": 2, - "__int64": 3, - "": 5, - "*ver_revision": 2, - "body_mark": 2, - "yajl_free": 1, - "__pyx_t_2": 21, - "hgetCommand": 1, - "rfLMS_MacroEvalPtr": 2, - "the": 91, - "activeExpireCycle": 2, - "sismemberCommand": 1, - "restoreCommand": 1, - "WGL_STENCIL_BITS_EXT": 1, - "HTTP_HEAD": 2, - "s_req_http_major": 3, - "pexpireCommand": 1, - "EINTR": 1, - "wglBeginFrameTrackingI3D": 1, - "**orig_argv": 1, - "HPE_CB_##FOR": 2, - "wglGetVideoDeviceNV": 1, - "WGL_NUMBER_OVERLAYS_ARB": 1, - "UINT": 30, - "WGL_UNIQUE_ID_NV": 1, - "rfPopen": 2, - "options.flags": 4, - "need_8bit_cte": 2, - "CPU_POST_DEAD": 1, - "C8": 1, - "PFNWGLDESTROYIMAGEBUFFERI3DPROC": 2, - "__wglewLoadDisplayColorTableEXT": 2, - "rfString_Assign_fUTF16": 2, - "REDIS_LRU_CLOCK_MAX": 1, - "*type": 4, - "__Pyx_StructField": 2, - "PyInt_CheckExact": 1, - "before": 4, - "validity": 2, - "git_iterator_for_tree_range": 4, - "zmalloc_enable_thread_safeness": 1, - "__wglewWaitForMscOML": 2, - "ySrc": 1, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Log": 5, - "peel_to_type": 1, - "result": 48, - "i_rfString_Find": 5, - "FOR##_mark": 7, - "WGL_VIDEO_OUT_STACKED_FIELDS_2_1": 1, - "kw_name": 1, - "__Pyx_PyNumber_Int": 1, - "tp_name": 4, - "UF_QUERY": 2, - "#string": 1, - "data": 69, - "remainder": 3, - "interval": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_18EpsilonInsensitive_2loss": 1, - "PyNumber_Divide": 1, - "noMatch": 8, - "rfString_Deinit": 3, - "appendServerSaveParams": 3, - "url_mark": 2, - "dictSetHashFunctionSeed": 1, - "*arg": 1, - "__wglewEnableGenlockI3D": 2, - "cpow": 1, - "i_SELECT_RF_STRING_BEFOREV10": 1, - "*var": 1, - "__pyx_v_t": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12LossFunction_2dloss": 2, - "err": 38, - "SIGKILL": 2, - "i_NPSELECT_RF_STRING_BEFOREV0": 1, - "s_start_req": 6, - "*state": 1, - "swapE": 21, - "REDIS_MAXMEMORY_VOLATILE_RANDOM": 1, - "dictSdsCaseHash": 2, - "pos": 7, - "LL*": 1, - "WGL_GENLOCK_SOURCE_DIGITAL_SYNC_I3D": 1, - "old_file.size": 1, - "*oitem": 2, - "rfString_Create_UTF16": 2, - "to_read": 6, - "aeSetBeforeSleepProc": 1, - "listMatchPubsubPattern": 1, - "__wglewGetSwapIntervalEXT": 2, - "PFNWGLBINDDISPLAYCOLORTABLEEXTPROC": 2, - "Endian": 1, - "<=>": 16, - "": 1, - "rb_respond_to": 1, - "desc": 5, - "rfString_Assign_fUTF32": 2, - "on_##FOR": 4, - "ev_child_stop": 2, - "double": 126, - "memory": 4, - "__Pyx_SET_CIMAG": 2, - "__pyx_vtabstruct_7sklearn_5utils_13weight_vector_WeightVector": 3, - "expireCommand": 1, - "*ctx": 5, - "action": 2, - "uv_err_t": 1, - "s_res_http_minor": 3, - "iBufferType": 1, - "<0)>": 1, - "won": 1, - "Local": 2, - "handle_options": 2, - "fopen": 3, - "setupSignalHandlers": 2, - "GIT_MODE_PERMS_MASK": 1, - "gid": 2, - "offsetof": 2, - "timelimit": 5, - "rfLMS_Push": 4, - "*__pyx_ptype_7cpython_4type_type": 1, - "__Pyx_PyInt_AsSize_t": 1, - "i_SELECT_RF_STRING_AFTER4": 1, - "i_SELECT_RF_STRING_FIND": 1, - "**diff": 4, - "hi": 5, - "server.maxmemory": 6, - "wglReleaseImageBufferEventsI3D": 1, - "dstX0": 1, - "c": 252, - "dictObjKeyCompare": 2, - "server.loading": 4, - "bib": 3, - "git_vector_foreach": 4, - "WGL_TRANSPARENT_ARB": 1, - "rfString_Create_UTF32": 2, - "psetexCommand": 1, - "different": 1, - "*slave": 2, - "PFNWGLSWAPLAYERBUFFERSMSCOMLPROC": 2, - "hpVideoDevice": 1, - "__wglewResetFrameCountNV": 2, - "__pyx_k_3": 1, - "get_commit_format": 1, - "bpop.timeout": 2, - "cmd_patch_id": 1, - "PyBuffer_Release": 1, - "__Pyx_IterFinish": 1, - "i_SELECT_RF_STRING_AFTERV14": 1, - "handle_alias": 1, - "PFNWGLCREATECONTEXTATTRIBSARBPROC": 2, - "__pyx_t_5numpy_cdouble_t": 1, - "i_rfLMS_WRAP2": 5, - "hObjects": 2, - "_Complex": 2, - "fields": 1, - "even": 1, - "listRelease": 1, - "cmd_reset": 1, - "WGL_ARB_framebuffer_sRGB": 2, - "*p": 9, - "calls": 4, - "i_rfString_Prepend": 3, - "tv.tv_usec": 3, - "cmd_shortlog": 1, - "Once": 1, - "CALLBACK_NOTIFY_": 3, - "F_UPGRADE": 3, - "wglEnableFrameLockI3D": 1, - "i_SELECT_RF_STRING_BEFOREV": 1, - "bSize*sizeof": 1, - "CB_url": 1, - "dictListDestructor": 2, - "PFNWGLISENABLEDGENLOCKI3DPROC": 2, - "__pyx_v_eta0": 1, - "versions": 1, - "S_ISREG": 1, - "WGL_FLOAT_COMPONENTS_NV": 1, - "npy_cdouble": 2, - "*__pyx_b": 1, - "PyLong_FromLong": 1, - "document": 9, - "server.slowlog_max_len": 1, - "active": 2, - "ends": 3, - "http_parser_url_fields": 2, - "Insufficient": 2, - "__Pyx_GOTREF": 24, - "LF_EXPECTED": 1, - "git_iterator_current": 2, - "htmlblock_end_tag": 1, - "i_FSEEK_CHECK": 14, - "UTF16": 4, - "A1": 1, - "wglQueryGenlockMaxSourceDelayI3D": 1, - "WGL_BLUE_SHIFT_ARB": 1, - "__WGLEW_3DL_stereo_control": 2, - "__Pyx_RefNannyDeclarations": 11, - "PyType_Modified": 1, - "cmd_cherry_pick": 1, - "git_oid_iszero": 2, - "wglGetFrameUsageI3D": 1, - "WGL_GREEN_BITS_EXT": 1, - "__Pyx_c_sum": 2, - "**pptr": 1, - "s_res_HTT": 3, - "server.repl_serve_stale_data": 2, - "cmd_count_objects": 1, - "xFEFF": 1, - "create": 2, - "*description": 1, - "*feature_indices_ptr": 2, - "PyExc_SystemError": 3, - "__WGLEW_NV_render_depth_texture": 2, - "WGL_ACCESS_READ_ONLY_NV": 1, - "got": 1, - "authCommand": 3, - "RF_String**": 2, - "keys": 4, - "PFNWGLGETCURRENTASSOCIATEDCONTEXTAMDPROC": 2, - "is_str": 1, - "__PYX_BUILD_PY_SSIZE_T": 2, - "i_NPSELECT_RF_STRING_FIND0": 1, - "xD": 1, - "server.bug_report_start": 1, - "askingCommand": 1, - "WGL_PBUFFER_WIDTH_EXT": 1, - "WGL_ARB_extensions_string": 2, - "i_NUMBER_": 12, - "*sample_weight_data": 2, - "FILE*f": 2, - "Allocation": 2, - "*__pyx_kp_u_8": 1, - "__pyx_v_intercept": 1, - "s_req_fragment_start": 7, - "dest": 7, - "growth": 3, - "mm": 1, - "*match": 3, - ".item": 2, - "PFNWGLGETGAMMATABLEI3DPROC": 2, - "__WGLEW_ARB_create_context": 2, - "decrRefCount": 6, - "RF_HEXEQ_UI": 7, - "oid": 17, - "PyErr_Format": 4, - "cmd_mailsplit": 1, - "": 1, - "git__prefixcmp": 2, - "UTF32": 4, - "s_header_value_start": 4, - "RE_UTF16_NO_SURRPAIR": 2, - "server.sofd": 9, - "__wglewReleaseImageBufferEventsI3D": 2, - "PY_LONG_LONG": 5, - "*dict": 5, - "take_cpu_down_param": 3, - "WGL_NV_copy_image": 2, - "WGL_CONTEXT_ROBUST_ACCESS_BIT_ARB": 1, - "mem_online_node": 1, - "**diff_ptr": 1, - "lindexCommand": 1, - "__int16": 2, - "STRIP_EXTENSION": 1, - "MKD_NOTABLES": 1, - "WGL_TYPE_RGBA_EXT": 1, - "PyCFunction": 3, - "endinternal": 1, - "flushdbCommand": 1, - "RF_HEXGE_UI": 6, - "i_rfLMSX_WRAP12": 2, - "+": 551, - "num*100/slots": 1, - "nAttributes": 4, - "*__pyx_n_s__count": 1, - "i_READ_CHECK": 20, - "hmsetCommand": 1, - "WGLEW_ARB_extensions_string": 1, - "Py_TPFLAGS_HAVE_INDEX": 1, - "F_SKIPBODY": 4, - "container": 17, - "UF_HOST": 3, - "CB_headers_complete": 1, - "*data": 12, - "wglGetVideoInfoNV": 1, - "iHeight": 2, - "__WGLEW_ARB_buffer_region": 2, - "__pyx_v_learning_rate": 1, - "__pyx_t_5numpy_uintp_t": 1, - "*git_cache_try_store": 1, - "*git_hash_new_ctx": 1, - "t": 32, - "rfFgets_UTF16LE": 2, - "uFlags": 1, - "cabsf": 1, - "sortCommand": 1, - "git_diff_merge": 1, - "*1024": 4, - "WGLEW_EXT_multisample": 1, - "WGL_ARB_multisample": 2, - "rfString_Assign": 2, - "*key2": 4, - "*col_data": 1, - "HTTP_MOVE": 1, - "s_dead": 10, - "querybuf_size": 3, - "argv0": 2, - "GLbitfield": 1, - "link_ref": 2, - "PFNWGLQUERYVIDEOCAPTUREDEVICENVPROC": 2, - "__pyx_k__isinf": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_11SquaredLoss_2dloss": 1, - "__pyx_t_5numpy_cfloat_t": 1, - "out": 18, - "save_commit_buffer": 3, - "REDIS_EXPIRELOOKUPS_PER_CRON/4": 1, - "**environ": 1, - "rfFgetc_UTF32LE": 4, - "WGL_BIND_TO_TEXTURE_DEPTH_NV": 1, - "PFNWGLGETGENLOCKSOURCEI3DPROC": 2, - "property": 1, - "__Pyx_LocalBuf_ND": 1, - "PyString_Repr": 1, - "PyUnicode_CheckExact": 1, - "i_NPSELECT_RF_STRING_REMOVE": 1, - "RF_SELECT_FUNC": 10, - "serverCron": 2, - "stack_free": 2, - "we": 10, - "*desc": 1, - "CMIT_FMT_USERFORMAT": 1, - "GIT_DIFFCAPS_TRUST_EXEC_BIT": 2, - "RUN_SETUP_GENTLY": 16, - "__int32": 2, - "WGL_VIDEO_OUT_STACKED_FIELDS_1_2": 1, - "__WGLEW_NV_multisample_coverage": 2, - "WGL_RED_BITS_EXT": 1, - "": 2, - "cmd_rm": 1, - "notifier_to_errno": 1, - "pFlag": 3, - "WGL_EXT_make_current_read": 2, - "__Pyx_c_powf": 3, - "*body_mark": 1, - "HGPUNV": 5, - "__pyx_t_5numpy_uint8_t": 1, - "Py_TYPE": 7, - "zremrangebyrankCommand": 1, - "rev_info": 2, - "pEvent": 1, - "HDC": 65, - "*__pyx_k_tuple_7": 1, - "code_object": 2, - "initServerConfig": 2, - "": 1, - "updateDictResizePolicy": 2, - "srcX": 1, - "WGL_SWAP_METHOD_ARB": 1, - "strcpy": 4, - "hashDictType": 1, - "server.bindaddr": 2, - "WGLEW_EXT_display_color_table": 1, - "dstY1": 1, - "PyString_CheckExact": 2, - "__GNUC__": 7, - "Counts": 1, - "LL*1024*1024": 2, - "wrapping": 1, - "last": 1, - "shared.czero": 1, - "SHA_CTX": 3, - "dstZ": 1, - "__Pyx_IternextUnpackEndCheck": 1, - "h_C": 3, - "new_file.flags": 4, - "expireatCommand": 1, - "HTTP_ERRNO_GEN": 3, - "wglGetPixelFormatAttribfvARB": 1, - "__pyx_k__g": 1, - "UF_PATH": 2, - "is_connect": 4, - "bytePos": 23, - "__wglewQueryPbufferARB": 2, - "iWidth": 2, - "itemsize": 1, - "uv__new_sys_error": 1, - "signal_pipe": 7, - "cpumask_first": 1, - "__pyx_f_7sklearn_12linear_model_8sgd_fast_12LossFunction_dloss": 1, - "off.": 1, - "bogus": 1, - "numclients": 3, - "brpoplpushCommand": 1, - "GIT_DELTA_IGNORED": 5, - "__wglewCreateAssociatedContextAMD": 2, - "PyVarObject_HEAD_INIT": 1, - "parse_table_row": 1, - "old_file.flags": 2, - "__LINE__": 50, - "done_help": 3, - "GLEW_MX": 4, - "Attempted": 1, - "server.aof_fd": 4, - "FILE": 3, - "onto_new": 6, - "s_req_first_http_major": 3, - "*output_encoding": 2, - "cpu_online_bits": 5, - "on_url": 1, - "getCommand": 1, - "end": 48, - "frozen_cpus": 9, - "PFNWGLCHOOSEPIXELFORMATARBPROC": 2, - "hashslot": 3, - "shared.unsubscribebulk": 1, - "noid": 4, - ".dict": 9, - "pp_title_line": 1, - "wglQueryPbufferEXT": 1, - "__WGLEW_EXT_extensions_string": 2, - "WGL_NO_ACCELERATION_ARB": 1, - "sq_norm": 1, - "wscale": 1, - "exists": 6, - "start": 10, - "": 2, - "B2": 1, - "*__pyx_kp_s_4": 1, - "__pyx_t_double_complex": 27, - "PY_SSIZE_T_MIN": 1, - "__WGLEW_I3D_swap_frame_usage": 2, - "Py_TPFLAGS_CHECKTYPES": 1, - "i_LIMSELECT_RF_STRING_AFTERV": 1, - "RF_STRING_INDEX_OUT_OF_BOUNDS": 2, - "nread": 7, - "act.sa_mask": 2, - "GLfloat": 3, - "__Pyx_RaiseTooManyValuesError": 1, - "performed": 1, - "syslogLevelMap": 2, - "smoveCommand": 1, - "__int8": 2, - "<": 219, - "PFNWGLASSOCIATEIMAGEBUFFEREVENTSI3DPROC": 2, - "WGL_SAMPLES_ARB": 1, - "PFNWGLGETCONTEXTGPUIDAMDPROC": 2, - "i_SELECT_RF_STRING_AFTERV": 1, - "server.el": 7, - "i_SELECT_RF_STRING_BEFOREV16": 1, - "into": 8, - "attempting": 2, - "header_states": 1, - "REDIS_REPL_SEND_BULK": 1, - "F_CONNECTION_CLOSE": 3, - "uv__handle_init": 1, - "WGL_BLUE_BITS_EXT": 1, - "CPU_STARTING": 1, - "o2": 7, - "__WGLEW_H__": 1, - "i_SELECT_RF_STRING_REPLACE0": 1, - "zcountCommand": 1, - "WGLEW_ARB_make_current_read": 1, - "The": 1, - "moveCommand": 1, - "INVALID_PATH": 1, - "STDERR_FILENO": 2, - "getrlimit": 1, - "s_res_H": 3, - "IS_ERR": 1, - "WGLEW_NV_copy_image": 1, - "WGL_ACCUM_GREEN_BITS_EXT": 1, - "__pyx_t_5numpy_int16_t": 1, - "PyBUF_SIMPLE": 1, - "i_SELECT_RF_STRING_FIND1": 1, - "brpopCommand": 1, - "cmd_remote_fd": 1, - "0x7a": 1, - "iEntries": 2, - "single_parent": 1, - "HTTP_PROPPATCH": 1, - "sigtermHandler": 2, - "NEED_WORK_TREE": 18, - "shared.nokeyerr": 1, - "no": 4, - "server.loading_total_bytes": 3, - "utf8": 36, - "WGL_AUX1_ARB": 1, - "WGL_TEXTURE_TARGET_ARB": 1, - "__pyx_pw_7sklearn_12linear_model_8sgd_fast_12LossFunction_3dloss": 1, - "bytesN=": 1, - "cmd_show_branch": 1, - "http_errno_name": 1, - "rfString_Create_cp": 2, - "int32_t": 112, - "guards": 2, - "CONFIG_PM_SLEEP_SMP": 2, - "NODE_DATA": 1, - "WGL_STENCIL_BUFFER_BIT_ARB": 1, - "__pyx_v_verbose": 1, - "equals": 1, - "list": 1, - "__MUTEX_INITIALIZER": 1, - "": 2, - "*X_indptr_ptr": 1, - "init_cpu_online": 1, - "*bufptr": 1, - "msetCommand": 1, - "sig": 2, - "dictGetRandomKey": 4, - "cmd_get_tar_commit_id": 1, - "*__pyx_vtabptr_7sklearn_5utils_11seq_dataset_ArrayDataset": 1, - "PyString_Check": 2, - "CB_header_field": 1, - "cmp": 9, - "printf": 4, - "setsid": 2, - "addReplyErrorFormat": 1, - "flags": 89, - "WGL_NV_video_capture": 2, - "DECLARE_HANDLE": 6, - "__Pyx_RaiseBufferFallbackError": 1, - "CYTHON_UNUSED": 14, - "i": 410, - "setbitCommand": 1, - "set_cpu_present": 1, - "MKD_STRICT": 1, - "__pyx_pf_5numpy_7ndarray_2__releasebuffer__": 1, - "i_SELECT_RF_STRING_COUNT": 1, - "GPERF_CASE_STRNCMP": 1, - "hexistsCommand": 1, - "zremrangebyscoreCommand": 1, - "HTTP_COPY": 1, - "buffAllocated": 11, - "PFNWGLSWAPBUFFERSMSCOMLPROC": 2, - "macro": 2, - "server.assert_file": 1, - "zmalloc_get_rss": 1, - "WGL_VIDEO_OUT_DEPTH_NV": 1, - "PFNWGLDXREGISTEROBJECTNVPROC": 2, - "git_odb__hashlink": 1, - "RF_HEXG_US": 8, - "": 2, - "check_commit": 2, - "scardCommand": 1, - "PAUSED": 1, - "PFNWGLGETGENLOCKSAMPLERATEI3DPROC": 2, - "__pyx_t_5numpy_long_t": 1, - "http_major": 11, - "xf": 1, - "int16_t": 1, - "*parents": 4, - "c3": 9, - "*doc": 2, - "getClientOutputBufferMemoryUsage": 1, - "CYTHON_COMPILING_IN_PYPY": 3, - "optionsP": 11, - "dictFind": 1, - "help_unknown_cmd": 1, - "sprintf": 10, - "WGL_VIDEO_OUT_FRAME": 1, - "__wglewDeleteAssociatedContextAMD": 2, - "__Pyx_c_conjf": 3, - "HTTP_NOTIFY": 1, - "REDIS_REPL_WAIT_BGSAVE_START": 1, - "<<": 56, - "shared.syntaxerr": 2, - "git_buf_len": 1, - "*v": 3, - "__set_current_state": 1, - "new_iter": 13, - "__wglewGetExtensionsStringEXT": 2, - "*__pyx_kwds": 9, - "copy": 4, - "server.hash_max_ziplist_value": 1, - "*commit_list_insert_by_date": 1, - "PFNWGLGETPIXELFORMATATTRIBFVEXTPROC": 2, - "npy_intp": 1, - "EBUSY": 3, - "cmd_archive": 1, - "ust": 7, - "UTF8_BOM": 1, - "MKACTIVITY": 2, - "listDelNode": 1, - "server.client_max_querybuf_len": 1, - "initServer": 2, - "redisCommandTable": 5, - "col": 9, - "*__pyx_k_tuple_15": 1, - "WGL_OPTIMAL_PBUFFER_WIDTH_EXT": 1, - "A7": 2, - "shared.outofrangeerr": 1, - "h_matching_connection_close": 3, - "notify_cpu_starting": 1, - "argv": 54, - "tempBuff": 6, - "environment": 3, - "__pyx_n_s__dloss": 1, - "lnos": 4, - "M": 1, - "rfString_Tokenize": 2, - "*lookup_commit_or_die": 2, - "REDIS_MBULK_BIG_ARG": 1, - "rstrP": 5, - "wglWaitForSbcOML": 1, - "PFNWGLLOCKVIDEOCAPTUREDEVICENVPROC": 2, - "__Pyx_TypeInfo*": 2, - "REDIS_AOF_OFF": 5, - "renamenxCommand": 1, - "__wglewSendPbufferToVideoNV": 2, - "stride": 2, - "#ifndef": 84, - "xDFFF": 8, - "__WGLEW_3DFX_multisample": 2, - "assumed": 1, - "off_t": 1, - "mgetCommand": 1, - "querybuf": 6, - "uint16_t*": 11, - "BOOL": 84, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Classification": 1, - "cpumask_var_t": 1, - "data.stream": 7, - "cmd_stripspace": 1, - "cpu_possible": 1, - "__Pyx_PyObject_IsTrue": 1, - "TARGET_OS_IPHONE": 1, - "rfFReadLine_UTF16LE": 4, - "uint32_t*length": 1, - "v2": 26, - "GIT_DIFFCAPS_ASSUME_UNCHANGED": 2, - "old_uf": 4, - "parse_object": 1, - "offset": 1, - "createObject": 31, - "sha1": 20, - "*util": 1, - "yajl_alloc_funcs": 3, - "__wglewReleaseTexImageARB": 2, - "this": 5, - "*out": 3, - "cmd_unpack_file": 1, - "DELETE": 2, - "WGL_STENCIL_BITS_ARB": 1, - "__Pyx_c_negf": 2, - "curtag": 8, - "*pathspec": 2, - "C3": 1, - "PyBytes_AsStringAndSize": 1, - "rfString_GetChar": 2, - "bitopCommand": 1, - "handle_internal_command": 3, - "PFNWGLDXCLOSEDEVICENVPROC": 2, - "goes": 1, - "__pyx_n_s__y": 6, - "configCommand": 1, - "server.set_max_intset_entries": 1, - "R_Nan": 2, - "server.pidfile": 3, - "__Pyx_CLEAR": 1, - "__pyx_t_5numpy_intp_t": 1, - "i_rfLMSX_WRAP18": 2, - "*key": 5, - "1": 2, - "HPE_INVALID_HEADER_TOKEN": 2, - "cmd_update_server_info": 1, - "*cell_work": 1, - "yajl_lex_realloc": 1, - "__Pyx_RaiseArgtupleInvalid": 7, - "__Pyx_XGOTREF": 2, - "remove": 1, - "server.aof_rewrite_time_start": 2, - "alloc_frozen_cpus": 2, - "cmd_rev_parse": 1, - "dstLevel": 1, - "__pyx_k__xnnz": 1, - "stacklevel": 1, - "position": 1, - "z": 47, - "CPU_DYING": 1, - "sdsnew": 27, - "getClientsMaxBuffers": 1, - "PROPPATCH": 2, - "dictIsRehashing": 2, - "__wglewEnumGpusFromAffinityDCNV": 2, - "PyTypeObject": 25, - "performs": 1, - "vsnprintf": 1, - "interactive_add": 1, - "SHA1_Update": 3, - "__pyx_k__zeros": 1, - "__Pyx_GetBuffer": 2, - "op": 8, - "PyNumber_Check": 2, - "GIT_DELTA_MODIFIED": 3, - "*ret": 20, - "*__pyx_n_s__seed": 1, - "nd": 1, - "server.lruclock": 2, - "server.aof_selected_db": 1, - "proccess": 2, - "git_submodule_lookup": 1, - "__pyx_t_5numpy_int8_t": 1, - "npy_int8": 1, - "idle": 4, - "state": 104, - "#define": 911, - "git_buf": 3, - "REDIS_LOG_RAW": 2, - "options.env": 1, - "shared.integers": 2, - "numerator": 1, - "*__pyx_v_seed": 1, - "__pyx_t_7sklearn_5utils_11seq_dataset_DOUBLE": 7, - "LOG_NDELAY": 1, - "ipc": 1, - "mark": 3, - "i_rfString_StripStart": 3, - "cmd_fetch_pack": 1, - "settings": 6, - "sigsegvHandler": 1, - "certainly": 3, - "": 2, - "*__pyx_kp_u_10": 1, - "SHA1_Init": 4, - "bufgrow": 1, - "__WGLEW_OML_sync_control": 2, - "__wglewFreeMemoryNV": 2, - "PFNWGLGETGENLOCKSOURCEDELAYI3DPROC": 2, - "PY_MAJOR_VERSION": 13, - "ip": 4, - "REFU_IO_H": 2, - "cmd_apply": 1, - "WGL_DEPTH_TEXTURE_FORMAT_NV": 1, - "WGL_TEXTURE_FLOAT_RG_NV": 1, - "PyTuple_New": 3, - "*__pyx_n_s__float64": 1, - "PY_VERSION_HEX": 11, - "eventLoop": 2, - "src": 16, - "strstr": 2, - "WGLEWContext": 1, - "i_StringCHandle": 1, - "HPE_UNKNOWN": 1, - "git__malloc": 3, - "*buf": 10, - "*new_parent": 2, - "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_SquaredHinge": 2, - "numberP": 1, - ".data": 1, - "strftime": 1, - "F02": 1, - "rb_define_method": 2, - "setexCommand": 1, - "s_header_almost_done": 6, - "POLLHUP": 1, - "node_zonelists": 1, - "npy_ulong": 1, - "i_SELECT_RF_STRING_COUNT3": 1, - "check": 8, - "cmd_merge_ours": 1, - "REDIS_ENCODING_RAW": 1, - "PFNWGLRELEASEVIDEODEVICENVPROC": 2, - "WGL_TEXTURE_CUBE_MAP_NEGATIVE_Z_ARB": 1, - "46": 1, - "*diff": 8, - "": 1, - "*__pyx_n_s__any": 1, - "__pyx_t_5numpy_ulonglong_t": 1, - "*numP": 1, - "http_parser": 13, - "listAddNodeTail": 1, - "cmd_name_rev": 1, - "WGLEW_ARB_pixel_format": 1, - "WGLEW_ARB_pbuffer": 1, - "shared.noscripterr": 1, - "cmd.buf": 1, - "REDIS_OPS_SEC_SAMPLES": 3, - "setup_pager": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Log": 1, - "__Pyx_c_eqf": 2, - "lremCommand": 1, - "commit_list_set_next": 1, - "be": 6, - "*dateptr": 1, - "__cpu_disable": 1, - "*optionsP": 8, - "WGL_MAX_PBUFFER_HEIGHT_EXT": 1, - "__pyx_pf_7sklearn_12linear_model_8sgd_fast_12LossFunction_2dloss": 1, - "temp.byteLength": 1, - "deleted": 1, - "getrangeCommand": 2, - "*envchanged": 1, - "http_should_keep_alive": 2, - "take_cpu_down": 2, - "NEW_MESSAGE": 6, - "constructor": 1, - "__cplusplus": 18, - "shared.rpop": 1, - "wglEnumGpusFromAffinityDCNV": 1, - "B8": 1, - "WGL_TEXTURE_FLOAT_R_NV": 1, - "i_NPSELECT_RF_STRING_AFTERV0": 1, - "backs": 1, - "message_begin": 3, - "git_iterator_current_is_ignored": 2, - "commit_extra_header": 7, - "WGL_NUM_VIDEO_CAPTURE_SLOTS_NV": 1, - "*class_name": 1, - "s_message_done": 3, - "after": 6, - "RF_MALLOC": 47, - "bufputc": 2, - "cpu_present_bits": 5, - "wglGetSyncValuesOML": 1, - "WGL_NV_render_depth_texture": 2, - "B": 9, - "__Pyx_zeros": 1, - "PyUnicode_GET_SIZE": 1, - "*argv": 6, - "occurs": 1, - "RF_REALLOC": 9, - "commit_graft_nr": 5, - "clientData": 1, - "*new": 1, - "HTTP_METHOD_MAP": 3, - "rusage": 1, - "__Pyx_PyInt_AsLong": 1, - "*graft": 3, - "cmd_diff_tree": 1, - "s_res_first_http_minor": 3, - "WTERMSIG": 2, - "bioInit": 1, - "WGL_GENLOCK_SOURCE_EDGE_BOTH_I3D": 1, - "__pyx_k__Q": 1, - "Py_XINCREF": 1, - "bysignal": 4, - "parse_url_char": 5, - "unlink": 3, - "*context": 1, - "HTTP_PUT": 2, - "WGL_FRONT_COLOR_BUFFER_BIT_ARB": 1, - "PyTuple_GET_SIZE": 14, - "cmd_merge_tree": 1, - "PFNWGLBINDTEXIMAGEARBPROC": 2, - "*__pyx_n_s__eta0": 1, - "__Pyx_CIMAG": 4, - "goto": 159, - "rfString_Append_i": 2, - "cmd_update_index": 1, - "*tail": 2, - "hello": 1, - "git_hash_free_ctx": 1, - "__Pyx_PrintOne": 1, - "Unicode": 1, - "REDIS_CALL_FULL": 1, - "diff_delta__from_one": 5, - "git_diff_list_alloc": 1, - "REDIS_SERVERPORT": 1, - "wglDXCloseDeviceNV": 1, - "__wglewMakeContextCurrentEXT": 2, - "WGL_TEXTURE_RECTANGLE_ATI": 1, - "da": 2, - "rlim_t": 3, - "yajl_parse_complete": 1, - "WGL_BIND_TO_TEXTURE_RGB_ARB": 1, - "WGLEW_ARB_create_context": 1, - "**argnames": 1, - "Py_UCS4": 2, - "work_bufs": 8, - "MKD_NOIMAGE": 1, - "KERN_INFO": 2, - "ev_child_start": 1, - "PFNWGLGETEXTENSIONSSTRINGEXTPROC": 2, - "WGL_TEXTURE_RGBA_ARB": 1, - "PFNWGLDELETEBUFFERREGIONARBPROC": 2, - "*nr_calls": 1, - "uv__stream_close": 1, - "End": 2, - "PFNWGLQUERYFRAMETRACKINGI3DPROC": 2, - "PyIndex_Check": 2, - "charBLength": 5, - "exit_cb": 3, - "hvalsCommand": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_25SquaredEpsilonInsensitive_4dloss": 1, - "PyLong_AsUnsignedLongLongMask": 1, - "PyInt_AsSsize_t": 3, - "cmd_update_ref": 1, - "__WGLEW_EXT_framebuffer_sRGB": 2, - "__Pyx_BufFmt_Context": 1, - "rfString_BytePosToCharPos": 4, - "shared.cnegone": 1, - "OBJ_COMMIT": 5, - "http_parser_settings": 5, - "": 1, - "RF_STRING_ITERATE_START": 9, - "WGL_TYPE_COLORINDEX_EXT": 1, - "kw_args": 15, - "PyTuple_GET_ITEM": 15, - "rfUTF8_IsContinuationByte2": 1, - "&": 442, - "shared.bulkhdr": 1, - "ffff": 4, - "WGL_CONTEXT_PROFILE_MASK_ARB": 1, - "wglBlitContextFramebufferAMD": 1, - "switch": 46, - "server.loading_start_time": 2, - "cmd_show": 1, - "WGL_TYPE_RGBA_ARB": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_3Log_loss": 1, - "subP": 7, - "UV_IGNORE": 2, - "server.aof_delayed_fsync": 2, - "HTTP_BOTH": 1, - "keepLength": 2, - "RF_UTF8": 8, - "self_ru.ru_utime.tv_usec/1000000": 1, - "free_ptr": 2, - "disable_nonboot_cpus": 1, - "/1000": 1, - "o": 80, - "PFNWGLCREATEBUFFERREGIONARBPROC": 2, - "*read_commit_extra_header_lines": 1, - "bytes": 225, - "object_array": 2, - "rfString_FindBytePos": 10, - "*__pyx_t_3": 3, - "__pyx_t_7sklearn_12linear_model_8sgd_fast_DOUBLE": 4, - "i_NPSELECT_RF_STRING_COUNT1": 1, - "internal": 4, - "bytepos": 12, - "numLen": 8, - "cmd_upload_archive_writer": 1, - "wglDisableFrameLockI3D": 1, - "__Pyx_Buf_DimInfo": 2, - "__pyx_t_5numpy_int_t": 1, - "RP_SELECT_FUNC_IF_NARGIS": 5, - "cmd_verify_pack": 1, - "uname": 1, - "F0": 1, - "WGL_STEREO_EXT": 1, - "wglQueryFrameCountNV": 1, - "__pyx_k__n_iter": 1, - "i_SELECT_RF_STRING_REMOVE1": 1, - "i_SELECT_RF_STRING_AFTERV8": 1, - "HTTP_CHECKOUT": 1, - "WGL_DOUBLE_BUFFER_EXT": 1, - "__WGLEW_ARB_framebuffer_sRGB": 2, - "*idle": 1, - "pathspec.count": 2, - "wake_up_process": 1, - "for_each_commit_graft": 1, - "repo": 23, - "cmd_ls_remote": 2, - "createSharedObjects": 2, - "PFNWGLGENLOCKSAMPLERATEI3DPROC": 2, - "i_SELECT_RF_STRING_BEFOREV5": 1, - "aofRewriteBufferSize": 2, - "encoded": 2, - "redisClient": 12, - "renameCommand": 1, - "typeCommand": 1, - "yajl_lex_alloc": 1, - "__WGLEW_ARB_pixel_format": 2, - "__Pyx_XDECREF": 20, - "PySet_Type": 2, - "*in": 1, - "old_entry": 5, - "loops": 2, - "__WGLEW_I3D_digital_video_control": 2, - "__wglewCreateAssociatedContextAttribsAMD": 2, - "*dup": 1, - "uint32_t": 144, - "/server.loading_loaded_bytes": 1, - "WGL_RED_BITS_ARB": 1, - "__Pyx_RefNannyAPIStruct": 3, - "i_NPSELECT_RF_STRING_FIND": 1, - "rfString_Append": 5, - "okay": 1, - "server.lastsave": 3, - "__pyx_k_13": 1, - "fail": 19, - "defvalue": 2, - "POLLIN": 1, - "shared.oomerr": 2, - "pid": 13, - "DL_IMPORT": 2, - "aeGetApiName": 1, - "incrCommand": 1, - "addReplySds": 3, - "PyLong_FromSize_t": 1, - "path": 20, - "ULLONG_MAX": 10, - "*__pyx_n_s__isinf": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_LossFunction": 1, - "*__pyx_f_5numpy__util_dtypestring": 1, - "equal": 1, - "uint8_t": 6, - "*commit_type": 2, - "HVIDEOOUTPUTDEVICENV*": 1, - "__pyx_k__dataset": 1, - "__pyx_k__b": 1, - "i_SELECT_RF_STRING_FWRITE0": 1, - "i_rfLMSX_WRAP6": 2, - "i_SELECT_RF_STRING_BETWEEN2": 1, - "many": 1, - "hincrbyfloatCommand": 1, - "uv__process_init_stdio": 2, - "wglCreateContextAttribsARB": 1, - "*Y_data_ptr": 2, - "sunionCommand": 1, - "vkeys": 8, - "lastinteraction": 3, - "wglCreateAffinityDCNV": 1, - "WGL_CONTEXT_ES2_PROFILE_BIT_EXT": 1, - "WGL_SAMPLES_3DFX": 1, - "__pyx_t_3": 39, - "__Pyx_PyInt_AsSignedShort": 1, - "HTTP_MKCOL": 2, - "*__pyx_vtabptr_7sklearn_5utils_11seq_dataset_SequentialDataset": 1, - "///Internal": 1, - "Stack": 2, - "pathspec.strings": 1, - "__WGLEW_NV_present_video": 2, - "WGL_GENERIC_ACCELERATION_EXT": 1, - "*__pyx_n_s__t_start": 1, - "cast": 1, - "enable_nonboot_cpus": 1, - "wglGetGenlockSampleRateI3D": 1, - "*__pyx_n_s__learning_rate": 1, - "pp_user_info": 1, - "s_body_identity_eof": 4, - "*__Pyx_ImportModule": 1, - "dict": 11, - "lua_gc": 1, - "HPVIDEODEV*": 1, - "C9": 1, - "__pyx_v_self": 15, - "*eventLoop": 2, - "NR_CPUS": 2, - "zsetDictType": 1, - "are": 6, - "save_our_env": 3, - "zunionstoreCommand": 1, - "diff_delta__cmp": 3, - "server.stat_fork_time": 2, - "WGL_DIGITAL_VIDEO_CURSOR_INCLUDED_I3D": 1, - "PFNWGLRESTOREBUFFERREGIONARBPROC": 2, - "WITH_THREAD": 1, - "PyBytes_ConcatAndDel": 1, - "foundN": 10, - "pth": 2, - "h_CON": 3, - "newLineFound": 1, - "CYTHON_COMPILING_IN_CPYTHON": 6, - "CMIT_FMT_MEDIUM": 2, - "*60": 1, - "WGL_NO_TEXTURE_ARB": 2, - "__pyx_v_epsilon": 2, - "WIN32": 2, - "": 2, - "7": 1, - "mkd_cleanup": 2, - "s_req_path": 8, - "unicode": 2, - "bSize": 4, - "REDIS_REPL_CONNECTED": 3, - "i_rfString_KeepOnly": 3, - "on_body": 1, - "fuPlanes": 1, - "WGLEW_EXT_make_current_read": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_SquaredHinge": 1, - "i_SELECT_RF_STRING_BEFOREV11": 1, - "Functions": 1, - "depending": 1, - "fmt": 4, - "RF_CR": 1, - "__pyx_k__weight_pos": 1, - "git__size_t_powerof2": 1, - "HTTP_RESPONSE": 3, - "lookupCommandByCString": 3, - "wglew.h": 1, - "sq_item": 2, - "i_NPSELECT_RF_STRING_BEFOREV1": 1, - "fn": 5, - "cmd_unpack_objects": 1, - "WGLEW_NV_swap_group": 1, - "*phGpu": 1, - "*subject": 1, - "oldlimit": 5, - "LOG_WARNING": 1, - "clusterNode": 1, - "GLsizei": 4, - "WGL_BLUE_BITS_ARB": 1, - "hDrawDC": 2, - "i_OTHERSTR_": 4, - "firstkey": 1, - "TASK_RUNNING": 1, - "HTTP_REQUEST": 7, - "yajl_status_ok": 1, - "WGL_AUX7_ARB": 1, - "WGLEW_ARB_framebuffer_sRGB": 1, - "PyGILState_STATE": 1, - "PyNumber_TrueDivide": 1, - "xFF0FFFF": 1, - "time": 10, - "numDevices": 1, - "srcName": 1, - "wglDXOpenDeviceNV": 1, - "WGL_GAMMA_EXCLUDE_DESKTOP_I3D": 1, - "__pyx_t_5numpy_float32_t": 1, - "Init_rdiscount": 1, - "info": 64, - "server.stat_expiredkeys": 3, - "listRewind": 2, - "server.stat_keyspace_misses": 2, - "git_iterator_advance": 5, - "": 1, - "delta_type": 8, - "ENOENT": 3, - "": 1, - "WGL_GREEN_SHIFT_EXT": 1, - "WGL_ARB_render_texture": 2, - "*__pyx_n_s__n_samples": 1, - "const": 357, - "cpumask_set_cpu": 5, - "PyUnicode_IS_READY": 1, - "set_cpu_possible": 1, - "rfUTILS_Endianess": 24, - "WGL_ERROR_INCOMPATIBLE_AFFINITY_MASKS_NV": 1, - "__Pyx_c_abs": 3, - "git_diff_tree_to_tree": 1, - "time_t": 4, - "*__pyx_kp_u_16": 1, - "cmd_ls_files": 1, - "saveparam": 1, - "cmd_pack_redundant": 1, - "maxCount": 1, - "npy_int64": 1, - "run_add_interactive": 1, - "git_diff_delta": 19, - "will": 3, - "enum": 29, - "dictRedisObjectDestructor": 7, - "server.cronloops": 3, - "*ob": 3, - "use_noid": 2, - "child_watcher.data": 1, - "wglBindVideoDeviceNV": 1, - "hVideoDevice": 4, - "dstX1": 1, - "PyObject_GetAttr": 3, - "__Pyx_check_binary_version": 1, - "__Pyx_ErrRestore": 1, - "d": 16, - "alloc_blob_node": 1, - "mode": 11, - "MKD_TOC": 1, - "according": 1, - "__pyx_k_4": 1, - "REDIS_MAXMEMORY_ALLKEYS_LRU": 2, - "linuxOvercommitMemoryValue": 2, - "wglCreateAssociatedContextAttribsAMD": 1, - "i_SELECT_RF_STRING_AFTERV15": 1, - "always": 2, - "rfString_Create_i": 2, - "new_oid": 3, - "i_rfLMS_WRAP3": 4, - "RF_STRING_ITERATEB_START": 2, - "GIT_UNUSED": 1, - "server.shutdown_asap": 3, - "wglWaitForMscOML": 1, - "field": 1, - "GIT_ENOTFOUND": 1, - "WGL_DRAW_TO_PBUFFER_EXT": 1, - "PyBUF_WRITABLE": 3, - "HTTP_PURGE": 1, - "O_RDWR": 2, - "wglEnableGenlockI3D": 1, - "PyObject*": 24, - "xD800": 8, - "git_iterator_free": 4, - "WGL_BIND_TO_TEXTURE_RECTANGLE_RGB_NV": 1, - "__pyx_t_float_complex_from_parts": 1, - "__Pyx_PyInt_AsHash_t": 2, - "CYTHON_FORMAT_SSIZE_T": 2, - "Py_HUGE_VAL": 2, - "i_SELECT_RF_STRING_INIT0": 1, - "commit_list_sort_by_date": 2, - "server.repl_slave_ro": 2, - "continue": 20, - "NULL": 330, - "srcY0": 1, - "__pyx_filename": 51, - "parse_table_header": 1, - "": 1, - "__wglewGetExtensionsStringARB": 2, - "diff_path_matches_pathspec": 3, - "*old_iter": 2, - "exitFromChild": 1, - "date_mode": 2, - "method": 39, - "yajl_parser_config": 1, - "*__pyx_vtabptr_7sklearn_5utils_13weight_vector_WeightVector": 1, - "works": 1, - "rfString_Iterate_Start": 6, - "server.commands": 1, - "could": 2, - "lookup_commit_graft": 1, - "A2": 2, - "*__pyx_n_s__n_iter": 1, - "__pyx_k__loss": 1, - "ltrimCommand": 1, - "for_each_process": 2, - "numcommands": 5, - "GIT_DIFF_FILE_VALID_OID": 4, - "cmd_hash_object": 1, - "__Pyx_InitStrings": 1, - "__pyx_t_5numpy_longdouble_t": 1, - "PyLongObject": 2, - "cover": 1, - "cpu_hotplug.active_writer": 6, - "graft": 10, - "MKD_NOHTML": 1, - "RF_MATCH_WORD": 5, - "PFNWGLGETPBUFFERDCARBPROC": 2, - "*__pyx_n_s____test__": 1, - "i_NPSELECT_RF_STRING_BETWEEN": 1, - "act.sa_sigaction": 1, - "typedef": 189, - "cmd_clone": 1, - "*__pyx_n_s__isnan": 1, - "0x80": 1, - "aeCreateEventLoop": 1, - "thisval": 8, - "wglQueryVideoCaptureDeviceNV": 1, - "*__pyx_int_15": 1, - "minPos": 17, - "e.t.c.": 1, - "work.size": 5, - "STRICT_CHECK": 15, - "WGLEW_3DFX_multisample": 1, - "i_NPSELECT_RF_STRING_FIND1": 1, - "xE": 2, - "parents": 4, - "fclose": 5, - "__wglewCreateDisplayColorTableEXT": 2, - "WGL_AUX6_ARB": 1, - "WGL_RED_SHIFT_ARB": 1, - "WGL_GPU_NUM_PIPES_AMD": 1, - "__Pyx_StringTabEntry": 2, - "git_cached_obj_incref": 3, - "__wglewBindVideoCaptureDeviceNV": 2, - "wglQueryFrameTrackingI3D": 1, - "HPBUFFEREXT": 6, - "new_count": 1, - "dictDisableResize": 1, - "nitem": 32, - "cpumask_of": 1, - "WGL_IMAGE_BUFFER_MIN_ACCESS_I3D": 1, - "puRed": 2, - "__pyx_vtabstruct_7sklearn_5utils_11seq_dataset_CSRDataset": 2, - "PyString_Size": 1, - "failed": 2, - "name.release": 1, - "rb_funcall": 14, - "__wglewGenlockSourceI3D": 2, - "__Pyx_PyBytes_AsUString": 1, - "rfString_Strip": 2, - "": 1, - "i_rfString_Init": 3, - "mkd_toc": 1, - "sstr2": 2, - "CPU_ONLINE": 1, - "diff_prefix_from_pathspec": 4, - ".watched_keys": 1, - "__wglewGetPixelFormatAttribivEXT": 2, - "PyLong_AsUnsignedLongMask": 1, - "status_code": 8, - "WGL_DIGITAL_VIDEO_GAMMA_CORRECTED_I3D": 1, - "*__pyx_find_code_object": 1, - "*encoding": 2, - "0x20": 1, - "depth": 2, - "PFNWGLRELEASEIMAGEBUFFEREVENTSI3DPROC": 2, - "PFNWGLSWAPINTERVALEXTPROC": 2, - "__wglewGetPbufferDCARB": 2, - "__Pyx_PyInt_AsUnsignedChar": 1, - "09": 1, - "RE_UTF8_ENCODING": 2, - "dumpCommand": 1, - "GIT_OBJ_BLOB": 1, - "WGL_TEXTURE_CUBE_MAP_POSITIVE_X_ARB": 1, - "PyObject_GetBuffer": 1, - "RE_UTF8_INVALID_SEQUENCE_END": 6, - "cb.table_row": 2, - "server.loading_loaded_bytes": 3, - "PyInt_AsUnsignedLongLongMask": 1, - "i_NPSELECT_RF_STRING_FWRITE0": 1, - "i_rfLMSX_WRAP13": 2, - "uv__nonblock": 5, - "GIT_IDXENTRY_SKIP_WORKTREE": 1, - "arch_enable_nonboot_cpus_end": 2, - "parse_commit": 3, - "shared.masterdownerr": 2, - "going": 1, - "Check_Type": 2, - "*msg": 6, - "__wglewRestoreBufferRegionARB": 2, - "u": 18, - "go": 8, - "UV_PROCESS_SETUID": 2, - "signed": 5, - "expected": 2, - "development": 1, - "": 1, - "server.aof_child_pid": 10, - "HTTP_PARSER_DEBUG": 4, - "__pyx_k__Zf": 1, - "PyInt_FromString": 1, - "gettimeofday": 4, - "zrankCommand": 1, - "_MSC_VER": 5, - "h_upgrade": 4, - "__Pyx_TypeInfo_nn___pyx_t_7sklearn_12linear_model_8sgd_fast_DOUBLE": 1, - "server.runid": 3, - "__wglewCreateContextAttribsARB": 2, - "WGL_CONTEXT_MAJOR_VERSION_ARB": 1, - "__pyx_v_alpha": 1, - "cmd_for_each_ref": 1, - "HTTP_MAX_HEADER_SIZE": 2, - "extern": 37, - "diff_delta__alloc": 2, - "shareHandle": 1, - "__wglewEndFrameTrackingI3D": 2, - "__pyx_k__x_data_ptr": 1, - "__pyx_k__n_samples": 1, - "cell": 4, - "__wglewChoosePixelFormatEXT": 2, - "*__pyx_n_s__time": 1, - "i_SELECT_RF_STRING_INIT": 1, - "GIT_DELTA_UNMODIFIED": 11, - "read_sha1_file": 1, - "wglewGetExtension": 1, - "__wglewAllocateMemoryNV": 2, - "true": 73, - "loadServerConfig": 1, - "wglAssociateImageBufferEventsI3D": 1, - "pack": 2, - "": 1, - "ap": 4, - "dictSdsHash": 4, - "PyObject_SetAttrString": 2, - "PyLong_FromSsize_t": 1, - "srcY": 1, - "wglMakeContextCurrentEXT": 1, - "PyBUF_FORMAT": 3, - "i_RFUI32_": 8, - "diff_pathspec_is_interesting": 2, - "c_ru": 2, - "zrangeCommand": 1, - "create_object": 2, - "fline": 4, - "O_WRONLY": 2, - "git_vector_insert": 4, - "": 1, - "NOTIFY_OK": 1, - "*format_subject": 1, - "c.cmd": 1, - "PyList_GET_ITEM": 3, - "CHUNKED": 4, - "git_buf_common_prefix": 1, - "rfString_Init_i": 2, - "options.cwd": 2, - "CB_message_begin": 1, - "close": 13, - "MKCOL": 2, - "__pyx_k__h": 1, - "PyUnicode_READ": 1, - "changes": 2, - "**commit_list_append": 2, - "deref_tag": 1, - "PFNWGLENUMERATEVIDEOCAPTUREDEVICESNVPROC": 2, - "__Pyx_c_sumf": 2, - "PyInt_AS_LONG": 1, - "head": 3, - "WGL_ACCUM_BITS_ARB": 1, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Huber": 6, - "GIT_DIFFCAPS_HAS_SYMLINKS": 2, - "server.aof_current_size*100/base": 1, - "WGLEW_OML_sync_control": 1, - "i_SELECT_RF_STRING_AFTER": 1, - "its": 1, - "rfString_Create_nc": 3, - "out_notify": 3, - "sep": 3, - "PROXY_CONNECTION": 4, - "chdir": 2, - "wglReleaseVideoImageNV": 1, - "WGL_SWAP_COPY_EXT": 1, - "npy_int16": 1, - "__VA_ARGS__": 66, - "*f": 2, - "setup_git_directory": 1, - "thisPos": 8, - "get_sha1_hex": 2, - "This": 1, - "memtest": 2, - "/REDIS_HZ": 2, - "perc": 3, - "__wglewBeginFrameTrackingI3D": 2, - "processInputBuffer": 1, - "PFNWGLSETDIGITALVIDEOPARAMETERSI3DPROC": 2, - "__Pyx_MODULE_NAME": 1, - "npy_double": 2, - "counters.process_init": 1, - "LOG_PID": 1, - "server.aof_rewrite_base_size": 4, - "*revision": 1, - "_ftelli64": 1, - "cpu_down": 2, - "cpowf": 1, - "inside": 2, - "rdbSaveBackground": 1, - "N_": 1, - "**list": 5, - "GIT_SUBMODULE_IGNORE_ALL": 1, - "B3": 1, - "WGLEW_EXT_pixel_format_packed_float": 1, - "PyMethod_New": 2, - "to": 37, - "LF": 21, - "PFNWGLCREATEAFFINITYDCNVPROC": 2, - "__wglewDisableFrameLockI3D": 2, - "swap": 9, - "lol": 3, - "wglGetMscRateOML": 1, - "PFNWGLGETPIXELFORMATATTRIBIVEXTPROC": 2, - "__WGLEW_ARB_create_context_robustness": 2, - "shared.colon": 1, - "T_STRING": 2, - "mm_cpumask": 1, - "self_ru.ru_stime.tv_sec": 1, - "mkd_compile": 2, - "barrier": 1, - "__WGLEW_I3D_swap_frame_lock": 2, - "i_REPSTR_": 16, - "*reduce_heads": 1, - "shared.slowscripterr": 2, - "strerror": 4, - "fds": 20, - "WGL_NV_gpu_affinity": 2, - "*pAddress": 1, - "__pyx_k__L": 1, - "PyFrozenSet_Check": 1, - "i_SELECT_RF_STRING_BEFOREV17": 1, - "clear_commit_marks_for_object_array": 1, - "listNext": 2, - "rfString_ScanfAfter": 2, - "s_res_HTTP": 3, - "CB_message_complete": 1, - "*de": 2, - "__wglewDXOpenDeviceNV": 2, - "npy_int32": 1, - "i_SELECT_RF_STRING_REPLACE1": 1, - "rdbRemoveTempFile": 1, - "*ref_name": 2, - "git_mutex_unlock": 2, - "WGL_CONTEXT_FORWARD_COMPATIBLE_BIT_ARB": 1, - "__wglewGetCurrentAssociatedContextAMD": 2, - "func": 3, - "RE_UTF8_INVALID_SEQUENCE": 2, - "lookup_commit": 2, - "wglCreateBufferRegionARB": 1, - "i_SELECT_RF_STRING_FIND2": 1, - "all": 2, - "syncCommand": 1, - "sdslen": 14, - "__wglewCreateImageBufferI3D": 2, - "__WGLEW_I3D_genlock": 2, - "*__pyx_n_s__shuffle": 1, - "__pyx_k__any": 1, - "HTTP_UNSUBSCRIBE": 1, - "__APPLE__": 2, - "__Pyx_PyInt_AsSignedLongLong": 1, - "i_SELECT_RF_STRING_BEFORE0": 1, - "is_ref": 1, - "hincrbyCommand": 1, - "server.verbosity": 4, - "pretty_print_context": 6, - "__wglewMakeContextCurrentARB": 2, - "new_file.mode": 4, - "LOG_DEBUG": 1, - "date_mode_explicit": 1, - "selectCommand": 1, - "find_lock_task_mm": 1, - "__Pyx_BufFmt_StackElem*": 2, - "zinterstoreCommand": 1, - "aofRewriteBufferReset": 1, - "incrbyCommand": 1, - "WGLEW_I3D_genlock": 1, - "shared.punsubscribebulk": 1, - "**argv": 6, - "WGL_OPTIMAL_PBUFFER_HEIGHT_EXT": 1, - "PFNWGLRELEASEPBUFFERDCARBPROC": 2, - "RFS_": 8, - "__wglewSetGammaTableI3D": 2, - "WGL_GPU_NUM_SPI_AMD": 1, - "*__pyx_n_s__fit_intercept": 1, - "PyInt_Check": 1, - "ndim": 2, - "Failure": 1, - "dbsizeCommand": 1, - "use_fd": 7, - "redisGitDirty": 3, - "tmp": 6, - "wglLoadDisplayColorTableEXT": 1, - "old_src": 1, - "cmd_bundle": 1, - "rb_str_buf_new": 2, - "WGL_EXT_display_color_table": 2, - "WGL_TYPE_COLORINDEX_ARB": 1, - "PFNWGLSAVEBUFFERREGIONARBPROC": 2, - "rfUTF8_FromCodepoint": 1, - "i_OFFSET_": 4, - "F_CONNECTION_KEEP_ALIVE": 3, - "j": 206, - "dictGetSignedIntegerVal": 1, - "writeFrequency": 1, - "PyBytes_FromStringAndSize": 1, - "HUGE_VAL": 1, - "To": 1, - "new_tree": 2, - "cmd_tar_tree": 1, - "__pyx_k__y": 1, - "*filename": 2, - "diff": 93, - "UF_PORT": 5, - "git_oid": 7, - "git_submodule": 1, - "__wglewGetGenlockSourceEdgeI3D": 2, - "mutex_lock": 5, - "rfString_Init": 3, - "encoding": 14, - "__ref": 6, - "REDIS_REPL_TRANSFER": 2, - "rb_str_cat": 4, - "c4": 5, - "*read_graft_line": 1, - "yajl_status_insufficient_data": 1, - "WGL_NUMBER_PIXEL_FORMATS_ARB": 1, - "WGL_BACK_COLOR_BUFFER_BIT_ARB": 1, - "*__Pyx_ImportType": 1, - "__Pyx_RaiseNoneNotIterableError": 1, - "rfFReadLine_UTF8": 5, - "REDIS_MAXMEMORY_VOLATILE_LRU": 3, - "server.cluster_enabled": 6, - "struct": 359, - "redisAssert": 1, - "*w": 2, - "wglAllocateMemoryNV": 1, - "WGL_STEREO_ARB": 1, - "__Pyx_RaiseImportError": 1, - "closing": 1, - "free_obj": 4, - "CPU_DOWN_PREPARE": 1, - "": 1, - "existsCommand": 1, - "GLuint*": 3, - "WGL_NV_render_texture_rectangle": 2, - "find_commit_subject": 2, - "new_entry": 5, - "getDecodedObject": 3, - "WGL_MAX_PBUFFER_WIDTH_EXT": 1, - "is_unsigned": 1, - "expires": 3, - "h_transfer_encoding": 5, - "during": 1, - "listFirst": 2, - "__Pyx_INCREF": 6, - "i_NPSELECT_RF_STRING_AFTER": 1, - "s_req_http_minor": 3, - "git_vector_free": 3, - "uint64_t": 8, - "git_hash_ctx": 7, - "A8": 2, - "*__pyx_builtin_ValueError": 1, - "PyBytes_AS_STRING": 1, - "MOVE": 2, - "st": 2, - "__pyx_v_C": 1, - "PyNumber_InPlaceDivide": 1, - "BUFFER_SPAN": 9, - "anetTcpServer": 1, - "pubsub_channels": 2, - "key1": 5, - "daemonize": 2, - "OPTIONS": 2, - "git_hash_vec": 1, - "RF_OPTION_SOURCE_ENCODING": 30, - "Qtrue": 10, - "__pyx_k__x_ind_ptr": 1, - "b__": 3, - "utf8ByteLength": 34, - "npy_uint64": 1, - "xFF": 1, - "slowlogInit": 1, - "oid_for_workdir_item": 2, - "REDIS_MASTER": 2, - "h_matching_transfer_encoding_chunked": 3, - "tcd_param": 2, - "indegree": 1, - "timeval": 4, - "mtime.seconds": 2, - "server.repl_syncio_timeout": 1, - "*1024*64": 1, - "WGL_DRAW_TO_BITMAP_EXT": 1, - "*pfValues": 2, - "server.multiCommand": 1, - "shared.select": 1, - "saved_errno": 1, - "length": 58, - "i_rfString_Assign": 3, - "INVALID_PORT": 1, - "server.rdb_child_pid": 12, - "see": 2, - "PyFloat_FromDouble": 9, - "*utf32": 1, - "MARK": 7, - "eof": 53, - "git__calloc": 3, - "sdscatprintf": 24, - "__wglewSetStereoEmitterState3DL": 2, - "parser": 334, - "sizeof": 71, - "wglIsEnabledFrameLockI3D": 1, - "decoded": 3, - "sstr": 39, - "xmalloc": 2, - "wglGetCurrentReadDCEXT": 1, - "WGL_GENERIC_ACCELERATION_ARB": 1, - "st.st_mode": 2, - "C4": 1, - "zunionInterGetKeys": 4, - "HPVIDEODEV": 4, - "PFNWGLENUMGPUSFROMAFFINITYDCNVPROC": 2, - "filter": 1, - "__pyx_L3_error": 18, - "cmd_fsck": 2, - "wglChoosePixelFormatEXT": 1, - "__pyx_k__nonzero": 1, - "__Pyx_RefNannyFinishContext": 14, - "__pyx_t_5numpy_double_t": 1, - "REDIS_UNBLOCKED": 1, - "freeClient": 1, - "s_req_first_http_minor": 3, - "uv__handle_start": 1, - "WGL_TEXTURE_RECTANGLE_NV": 1, - "__pyx_t_5numpy_uint_t": 1, - "stime": 1, - "lpopCommand": 1, - "CPU_UP_PREPARE": 1, - "*rev1": 1, - "zaddCommand": 1, - "else//": 14, - "__cpu_notify": 6, - "__Pyx_StructField_*": 1, - "git_diff_workdir_to_index": 1, - "ustime": 7, - "merge_remote_desc": 3, - "*buffer": 6, - "WGL_DEPTH_BITS_EXT": 1, - "piAttributes": 4, - "uint32_t*": 34, - "nr_calls": 9, - "WGL_TEXTURE_RGB_ARB": 1, - "__pyx_v_p": 46, - "root": 1, - "{": 1528, - "move": 12, - "wglSwapIntervalEXT": 1, - "*__pyx_n_s__epsilon": 1, - "quiet": 5, - "keysCommand": 1, - "any": 3, - "content_length": 27, - "CPU_BITS_ALL": 2, - "REDIS_HZ*10": 1, - "WGLEW_ARB_render_texture": 1, - "*__pyx_n_s__x_ind_ptr": 1, - "i_RFI8_": 54, - "CB_body": 1, - "charPos": 8, - "createStringObject": 11, - "INVALID_HOST": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Hinge_6__reduce__": 1, - "__Pyx_PySequence_SetSlice": 2, - "__pyx_L1_error": 33, - "clearer": 1, - "lastBytePos": 4, - "alloc_nr": 1, - "abs": 2, - "i_AFTERSTR_": 8, - "R_PosInf": 2, - "*argv0": 1, - "*title": 1, - "WGL_BIND_TO_TEXTURE_RECTANGLE_DEPTH_NV": 1, - "WGL_NO_RESET_NOTIFICATION_ARB": 1, - "extensions": 1, - "//Two": 1, - "PFNWGLJOINSWAPGROUPNVPROC": 2, - "http_method_str": 1, - "shared.messagebulk": 1, - "s_header_value": 5, - "yajl_bs_push": 1, - "__pyx_pf_7sklearn_12linear_model_8sgd_fast_18EpsilonInsensitive___init__": 1, - "i_SELECT_RF_STRING_CREATE0": 1, - "htmlblock_end": 3, - "unregister_cpu_notifier": 2, - "INVALID_METHOD": 1, - "*const": 4, - "wglewContextInit": 2, - "*__pyx_n_s__n_features": 1, - "rfUTF16_Encode": 1, - "GIT_DIFF_INCLUDE_UNTRACKED": 1, - "dxObject": 2, - "PFNWGLGETPBUFFERDCEXTPROC": 2, - "WGL_GREEN_SHIFT_ARB": 1, - "*__pyx_n_s__sumloss": 1, - "iteration": 6, - "name_decoration": 3, - "http_parser_type": 3, - "server.masterport": 2, - "WGL_AUX0_ARB": 1, - "__pyx_v_shuffle": 1, - "i_SELECT_RF_STRING_AFTER0": 1, - "execCommand": 2, - "__wglewEnumGpuDevicesNV": 2, - "__wglewDXUnlockObjectsNV": 2, - "cpu_hotplug.lock": 8, - "iAttribute": 8, - "*funcname": 1, - "__pyx_lineno": 58, - "PyBUF_FULL": 1, - "uv__process_stdio_flags": 2, - "_": 3, - "PFNWGLDESTROYPBUFFEREXTPROC": 2, - "Py_XDECREF": 1, - "CYTHON_REFNANNY": 3, - "REDIS_NOTICE": 13, - "shared.lpop": 1, - "WIFSIGNALED": 2, - "lsetCommand": 1, - "__pyx_args": 21, - "utsname": 1, - "server.repl_timeout": 1, - "run_argv": 2, - "pos_args": 12, - "**value": 1, - "i_SELECT_RF_STRING_AFTERV10": 1, - "rfString_BytePosToCodePoint": 7, - "fflush": 2, - "server.lastbgsave_status": 3, - "s_req_http_start": 3, - "doc_size": 6, - "WGL_ARB_create_context_robustness": 2, - "*keepLength": 1, - "#ifdef": 64, - "git__is_sizet": 1, - "SUNDOWN_VER_REVISION": 1, - "slave": 3, - "thisstrP": 32, - "47": 1, - "__wglewAssociateImageBufferEventsI3D": 2, - "__pyx_k__time": 1, - "member": 2, - "eofReached": 4, - "vec": 2, - "REDIS_CLIENT_LIMIT_CLASS_NORMAL": 3, - "MMIOT": 2, - "PFNWGLGETGAMMATABLEPARAMETERSI3DPROC": 2, - "*lookup_commit_reference": 2, - "shared.crlf": 2, - "sleep": 1, - "*l": 1, - "*pulCounterOutputVideo": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_13ModifiedHuber_loss": 1, - "HPE_INVALID_CHUNK_SIZE": 2, - "RE_UTF8_INVALID_SEQUENCE_CONBYTE": 6, - "addReply": 13, - "determine": 1, - "cb.doc_footer": 2, - "hmem": 3, - "dictSdsDestructor": 4, - "GLEWAPI": 6, - "rfString_Iterate_End": 4, - "HELLO_H": 2, - "*new_iter": 2, - "*name": 12, - "rfString_Copy_chars": 2, - "main": 3, - "CE": 1, - "PFNWGLDESTROYDISPLAYCOLORTABLEEXTPROC": 2, - "__Pyx_CodeObjectCacheEntry": 1, - "__inline": 1, - "git_buf_truncate": 1, - "sum": 3, - "compiling": 2, - "B9": 1, - "WGLEW_I3D_image_buffer": 1, - "PyObject_HEAD_INIT": 1, - "rfString_Fwrite": 2, - "i_NPSELECT_RF_STRING_AFTERV1": 1, - "http_cb": 3, - "strncat": 1, - "__WGLEW_EXT_pbuffer": 2, - "PyString_GET_SIZE": 1, - "i_RIGHTSTR_": 6, - "RE_FILE_WRITE": 1, - "rfString_Append_fUTF16": 2, - "cmd_merge": 1, - "want": 3, - "WGL_OML_sync_control": 2, - "PySequence_SetSlice": 2, - "C": 14, - "WGL_MAX_PBUFFER_PIXELS_EXT": 1, - "WGL_TEXTURE_CUBE_MAP_POSITIVE_Z_ARB": 1, - "i_NPSELECT_RF_STRING_REPLACE": 1, - "RE_UTF16_INVALID_SEQUENCE": 20, - "GPERF_DOWNCASE": 1, - "s_res_status": 3, - "present": 2, - "***argv": 2, - "commit": 59, - "uVideoSlot": 2, - "WGL_NUM_VIDEO_SLOTS_NV": 1, - "hObject": 2, - "WGL_GREEN_BITS_ARB": 1, - "PYPY_VERSION": 1, - "rfString_IterateB_Start": 1, - "*check_commit": 1, - "GIT_DIFFCAPS_TRUST_CTIME": 2, - "WGL_BACK_LEFT_ARB": 1, - "__Pyx_PyInt_AsInt": 2, - "MS_WINDOWS": 2, - "run_builtin": 2, - "cpu_online_mask": 3, - "#else": 94, - "server.lua_caller": 1, - "diff_delta__from_two": 2, - "nMaxFormats": 2, - "__pyx_v_weight_pos": 1, - "__Pyx_RefNanny": 8, - "i_SELECT_RF_STRING_BEFORE": 1, - "rfString_ToUTF8": 2, - "way": 1, - "*commit": 10, - "__WGLEW_EXT_pixel_format": 2, - "RF_SELECT_FUNC_IF_NARGGT2": 2, - "unblockClientWaitingData": 1, - "proc": 14, - "__WGLEW_NV_gpu_affinity": 2, - "WGL_TEXTURE_1D_ARB": 1, - "db": 10, - "__pyx_k__power_t": 1, - "i_ARG4_": 56, - "i_rfString_Init_nc": 3, - "shallow_flag": 1, - "BUFFER_BLOCK": 5, - "EXEC_BIT_MASK": 3, - "mi": 5, - "git_buf_free": 4, - "rndr_popbuf": 2, - "*tb": 2, - "i_rfString_Strip": 3, - "uv_stdio_container_t*": 4, - "HPBUFFERARB": 12, - "rfStringX_Deinit": 1, - "writable": 8, - "*lookup_commit_graft": 1, - "__raw_notifier_call_chain": 1, - "WGL_ARB_buffer_region": 2, - "PyObject_GetItem": 1, - "__pyx_base": 18, - "imag": 2, - "rfString_Append_fUTF32": 2, - ".hard_limit_bytes": 3, - "CPU_TASKS_FROZEN": 2, - "match": 16, - "cmd_show_ref": 1, - "wglRestoreBufferRegionARB": 1, - "tp_dictoffset": 3, - "piAttribIList": 2, - "*oid": 2, - "server.daemonize": 5, - "server.aof_rewrite_time_last": 2, - "WGL_ARB_pbuffer": 2, - "S_ISFIFO": 1, - "sourceP": 2, - "WGL_DIGITAL_VIDEO_CURSOR_ALPHA_VALUE_I3D": 1, - "_PyUnicode_Ready": 1, - "scan": 4, - "show_notes": 1, - "cpu_online": 5, - "pfd.fd": 1, - "server.rdb_compression": 1, - "afs": 8, - "dstName": 1, - "__Pyx_PySequence_DelSlice": 2, - "ref": 1, - "has": 2, - "REDIS_LIST_MAX_ZIPLIST_VALUE": 1, - "SOCK_CLOEXEC": 1, - "*old_entry": 1, - "PFNWGLQUERYSWAPGROUPNVPROC": 2, - "WGL_GENLOCK_SOURCE_EXTERNAL_TTL_I3D": 1, - "num_min": 1, - "PyInt_FromLong": 3, - "operations": 1, - "p": 60, - "replstate": 1, - "*nb": 3, - "__pyx_v_n_iter": 1, - "server.clients_to_close": 1, - "lookup_commit_reference_gently": 1, - "*__pyx_t_4": 3, - "cmd_check_attr": 1, - "SOCK_STREAM": 2, - "full_path": 3, - "BOOL*": 3, - "of": 44, - "__pyx_t_5numpy_clongdouble_t": 1, - "macros": 1, - "All": 1, - "O_CREAT": 2, - "codeBuffer": 9, - "__wglewCopyImageSubDataNV": 2, - "__Pyx_Owned_Py_None": 1, - "__Pyx_PyUnicode_READ": 2, - "i_SELECT_RF_STRING_REMOVE2": 1, - "i_SELECT_RF_STRING_AFTERV9": 1, - "COVERAGE_TEST": 1, - "linsertCommand": 1, - "GIT_VECTOR_GET": 2, - "cmd_upload_archive": 1, - "done": 1, - "npy_uint32": 1, - "": 1, - "sd_markdown_free": 1, - "unsigned": 140, - "server.unixtime/REDIS_LRU_CLOCK_RESOLUTION": 1, - "pager_program": 1, - "wglEndFrameTrackingI3D": 1, - "table": 1, - "PFNWGLCREATEASSOCIATEDCONTEXTATTRIBSAMDPROC": 2, - "dtype": 1, - "i_SELECT_RF_STRING_BEFOREV6": 1, - "c_ru.ru_utime.tv_sec": 1, - "sdsAllocSize": 1, - "_fseeki64": 1, - "*1024*32": 1, - "PFNWGLGETSYNCVALUESOMLPROC": 2, - "LPVOID": 3, - "PFNWGLDESTROYPBUFFERARBPROC": 2, - "*__Pyx_GetItemInt_Tuple_Fast": 1, - "*repo": 7, - "UV_STREAM_WRITABLE": 2, - "*server.dbnum": 1, - "free_commit_extra_headers": 1, - "need": 5, - "__PYX_HAVE_API__sklearn__linear_model__sgd_fast": 1, - "setuid": 1, - "freeClientsInAsyncFreeQueue": 1, - "diff_delta__merge_like_cgit": 1, - "s1": 6, - "server.ipfd": 9, - "__wglewChoosePixelFormatARB": 2, - "srcX0": 1, - "__Pyx_PyNumber_InPlaceDivide": 2, - "tp_as_mapping": 3, - "http_errno": 11, - "WGL_VIDEO_OUT_COLOR_NV": 1, - "__pyx_L5_argtuple_error": 12, - "*__pyx_n_s__y": 1, - "str": 162, - "if": 1015, - "merge_remote_util": 1, - "USE_PAGER": 3, - "C0000": 2, - "RE_UTF8_INVALID_SEQUENCE_INVALID_BYTE": 6, - "TOKEN": 4, - "server.aof_state": 7, - "wglReleaseTexImageARB": 1, - "PyBUF_INDIRECT": 2, - "i_SELECT_RF_STRING_CREATE_NC": 1, - "mem_tofree": 3, - "T": 3, - "rfFback_UTF32BE": 2, - "wglMakeContextCurrentARB": 1, - "__wglewBlitContextFramebufferAMD": 2, - "*__pyx_n_s__plain_sgd": 1, - "*__pyx_n_s____main__": 1, - "safely": 1, - "CONNECTION": 4, - "": 4, - "rfUTF8_IsContinuationbyte": 1, - "WGL_ACCUM_BLUE_BITS_EXT": 1, - "__pyx_k__c": 1, - "i_SELECT_RF_STRING_FWRITE1": 1, - "i_rfLMSX_WRAP7": 2, - "i_SELECT_RF_STRING_BETWEEN3": 1, - "*path": 2, - "decode": 6, - "cmd_mv": 1, - "AF_UNIX": 2, - "pUsage": 1, - "WGL_EXT_multisample": 2, - "//if": 1, - "aof_fsync": 1, - "RF_HEXGE_C": 1, - "__pyx_t_4": 27, - "__PYX_EXTERN_C": 3, - "hsetCommand": 1, - "DeviceName": 1, - "PySequence_GetSlice": 2, - "done_alias": 4, - "server.repl_state": 6, - "WEXITSTATUS": 2, - "parse_blob_buffer": 2, - ".refcount": 1, - "__wglewReleaseVideoImageNV": 2, - "hGpu": 1, - "__pyx_k__weight_neg": 1, - "__Pyx_PyInt_AsChar": 1, - "PyString_DecodeEscape": 1, - "*node": 2, - "server.stop_writes_on_bgsave_err": 2, - "*a": 9, - "old_file.path": 12, - "cmd_commit": 1, - "__pyx_builtin_NotImplementedError": 3, - "__pyx_pf_7sklearn_12linear_model_8sgd_fast_12SquaredHinge___init__": 1, - "__Pyx_PyInt_AsSignedInt": 1, - "*diff_delta__alloc": 1, - "elapsed": 3, - "WGL_SHARE_DEPTH_EXT": 1, - "__wglewGetContextGPUIDAMD": 2, - "conjf": 1, - "*from_list": 1, - "ER": 4, - "0x5a": 1, - "ln": 8, - "ext": 4, - "WGL_SWAP_COPY_ARB": 1, - "attribList": 2, - "va_end": 3, - "foff_rft": 2, - "REDIS_AOF_ON": 2, - "afsBuffer": 3, - "sub": 12, - "CLOSED_CONNECTION": 1, - "PFNWGLQUERYPBUFFEREXTPROC": 2, - "__Pyx_TypeInfo": 2, - "LUA_GCCOUNT": 1, - "#include": 149, - "diminfo": 1, - "RF_OPTION_FGETS_READBYTESN": 5, - "SIGFPE": 1, - "__func__": 2, - "shared.sameobjecterr": 1, - "s_res_or_resp_H": 3, - "fork": 2, - "uptime": 2, - "PFNWGLDXSETRESOURCESHAREHANDLENVPROC": 2, - "*__pyx_n_s__rho": 1, - "PyUnicode_KIND": 1, - "slaveid": 3, - "incrementallyRehash": 2, - "8": 15, - "use_pager": 8, - "cpu_to_node": 1, - "unsubscribeCommand": 2, - "wglJoinSwapGroupNV": 1, - "__pyx_k__alpha": 1, - "__pyx_f_7sklearn_12linear_model_8sgd_fast_min": 1, - "microseconds": 1, - "break": 244, - "TRACE": 2, - "uv_ok_": 1, - "WGL_SHARE_STENCIL_EXT": 1, - "__wglewGetGPUInfoAMD": 2, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_18EpsilonInsensitive_4dloss": 1, - "clineno": 1, - "i_SELECT_RF_STRING_BEFOREV12": 1, - "accomplish": 1, - "false": 77, - "git_futils_open_ro": 1, - "propagateExpire": 2, - "__wglewGetMscRateOML": 2, - "__wglewGetGPUIDsAMD": 2, - "*__pyx_v_weights": 1, - "": 1, - "strlenCommand": 1, - "FNM_NOMATCH": 1, - "xF0": 2, - "__pyx_k__sample_weight": 1, - "*view": 2, - "unless": 1, - "a_date": 2, - "raw_notifier_chain_unregister": 1, - "s_start_res": 5, - "PyString_Concat": 1, - "MERGE": 2, - "yajl_reset_parser": 1, - "INVALID_URL": 1, - "ctx": 16, - "git_extract_argv0_path": 1, - "server.stat_keyspace_hits": 2, - "rfUTILS_SwapEndianUS": 10, - "__Pyx_c_prod": 2, - "temp.bIndex": 2, - "PyGILState_Release": 1, - "i_WRITE_CHECK": 1, - "rdbLoad": 1, - "wglDXUnregisterObjectNV": 1, - "threshold": 2, - "PyBytes_FromString": 2, - "estimateObjectIdleTime": 1, - "RF_HEXLE_US": 4, - "CONFIG_MEMORY_HOTPLUG": 2, - "object.sha1": 8, - "*__pyx_n_s__intercept_decay": 1, - "__pyx_bisect_code_objects": 1, - "MASK_DECLARE_1": 3, - "*http_errno_description": 1, - "commit_tree_extended": 1, - "h_content_length": 5, - "cb.doc_header": 2, - "dictResize": 2, - "WGL_NV_video_output": 2, - "PFNWGLCREATEPBUFFERARBPROC": 2, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_18EpsilonInsensitive_6__reduce__": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12SquaredHinge_4dloss": 1, - "uv__set_sys_error": 2, - "queueMultiCommand": 1, - "VOID": 6, - "*cause": 1, - "server.slaves": 9, - "comm": 1, - "i_rfPopen": 2, - "AE_READABLE": 2, - "YA_FREE": 2, - "*rcbuffer": 1, - "i_NPSELECT_RF_STRING_BEFOREV": 1, - "RE_LOCALMEMSTACK_INSUFFICIENT": 8, - "since": 5, - "cmd_pack_refs": 1, - "is_descendant_of": 1, - "i_MODE_": 2, - "WGLEW_NV_DX_interop": 1, - "WGL_PBUFFER_HEIGHT_EXT": 1, - "__pyx_L4_argument_unpacking_done": 6, - "sharedObjectsStruct": 1, - "REDIS_CMD_WRITE": 2, - "bufrelease": 3, - "zstrdup": 5, - "pubsub_patterns": 2, - "e": 4, - "ERANGE": 1, - "with": 9, - "on_header_value": 1, - "GLushort": 3, - "rfStringX_FromString_IN": 1, - "REDIS_WARNING": 19, - "clientsCronResizeQueryBuffer": 2, - "__pyx_k__t": 1, - "PyArrayObject": 8, - "__pyx_PyFloat_AsFloat": 1, - "rcu_read_lock": 1, - "used*100/size": 1, - "wglewGetContext": 4, - "__pyx_obj_7sklearn_5utils_11seq_dataset_SequentialDataset": 5, - "i_SELECT_RF_STRING_AFTERV16": 1, - "double*": 1, - "nSize": 4, - "s_req_host_v6_end": 7, - "i_SELECT_RF_STRING_INIT_NC0": 1, - "WGL_TEXTURE_DEPTH_COMPONENT_NV": 1, - "PySet_CheckExact": 2, - "*r": 7, - "server.repl_down_since": 2, - "format": 4, - "s_req_schema": 6, - "uv__make_pipe": 2, - "": 3, - "most": 3, - "__pyx_k__intercept": 1, - "INVALID_EOF_STATE": 1, - "BITS_PER_LONG": 2, - "aeDeleteEventLoop": 1, - "*__pyx_n_s__power_t": 1, - "i_SELECT_RF_STRING_INIT1": 1, - "stdio_count": 7, - "PFNWGLWAITFORSBCOMLPROC": 2, - "GLenum": 8, - "srcY1": 1, - "__pyx_t_5numpy_float_t": 1, - "PyFloat_AsDouble": 2, - "INVALID_STATUS": 1, - "exit": 20, - "on_message_begin": 1, - "RF_LMS": 6, - "*http_errno_name": 1, - "lookup_tree": 1, - "peak_hmem": 3, - "WGLEW_NV_render_depth_texture": 1, - "PyInt_AsLong": 2, - "CYTHON_PEP393_ENABLED": 2, - "subLength": 6, - "next": 8, - "i_rfString_Before": 5, - "*__pyx_k_tuple_11": 1, - "PPC_SHA1": 1, - "A3": 2, - "struct_alignment": 1, - "but": 1, - "so": 4, - "i_PLUSB_WIN32": 2, - "**encoding_p": 1, - "va_list": 3, - "REDIS_CLUSTER_OK": 1, - "hmgetCommand": 1, - "WGL_TEXTURE_FLOAT_RGB_NV": 1, - "WGLEW_EXT_framebuffer_sRGB": 1, - "__pyx_base.__pyx_vtab": 1, - "bytePositions": 17, - "*matcher": 1, - "PySequence_GetItem": 3, - "s_req_port": 6, - "pipe": 1, - "HPE_INVALID_INTERNAL_STATE": 1, - "dictObjHash": 2, - "rfString_Destroy": 2, - "LEN": 2, - "ENOMEM": 4, - "pm_notifier": 1, - "save": 2, - "dev": 2, - "abbrev": 1, - "*delta": 6, - "xF": 5, - "field_set": 5, - "bytesWritten": 2, - "PFNWGLQUERYPBUFFERARBPROC": 2, - "WGL_GPU_NUM_SIMD_AMD": 1, - "__Pyx_DECREF": 20, - "npy_cfloat": 1, - ".mod": 1, - "bBlock": 1, - "WGL_COVERAGE_SAMPLES_NV": 1, - "*hGpu": 1, - "WGL_GENLOCK_SOURCE_DIGITAL_FIELD_I3D": 1, - "__pyx_refnanny": 8, - "PY_FORMAT_SIZE_T": 1, - "index": 58, - "clientsCron": 2, - "HTTP_LOCK": 1, - "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_Huber": 2, - "server.saveparamslen": 3, - "server.dirty": 3, - "rfString_Count": 4, - "UV__O_NONBLOCK": 1, - "&&": 248, - "PARSING_HEADER": 2, - "was_alias": 3, - "HTTP_TRACE": 1, - "i_LEFTSTR_": 6, - "TRANSFER_ENCODING": 4, - "ruby_obj": 11, - "server.requirepass": 4, - "REDIS_AOF_REWRITE_PERC": 1, - "setup_path": 1, - "tryResizeHashTables": 2, - "git_pool_strndup": 1, - "i_NPSELECT_RF_STRING_FWRITE1": 1, - "i_NPSELECT_RF_STRING_REMOVE0": 1, - "i_rfLMSX_WRAP14": 2, - "-": 1803, - "dataType": 1, - "__pyx_k__eta0": 1, - "__pyx_v_fit_intercept": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_11SquaredLoss_4__reduce__": 1, - "__pyx_t_7sklearn_5utils_13weight_vector_INTEGER": 1, - "PyVarObject*": 1, - "cmd_mailinfo": 1, - "limit": 3, - "search": 1, - "discardCommand": 2, - "_cpu_up": 3, - "git_cache": 4, - "HAVE_BACKTRACE": 1, - "*diff_delta__merge_like_cgit": 1, - "blob": 6, - "subdir": 3, - "v": 11, - "wglGetExtensionsStringARB": 1, - "lifo": 1, - "fd": 34, - "MKD_NOPANTS": 1, - "__wglewGetVideoInfoNV": 2, - "WGL_DEPTH_BITS_ARB": 1, - "__pyx_k__epoch": 1, - "__pyx_k__Zg": 1, - "size_t": 52, - "renameGetKeys": 2, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Huber_6__reduce__": 1, - "wglGetGenlockSourceDelayI3D": 1, - "uv__pipe2": 1, - "new_file.path": 6, - "allocate": 1, - "REDIS_HASH_MAX_ZIPLIST_VALUE": 1, - "megabytes": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12SquaredHinge_2loss": 1, - "xFC0": 4, - "version": 4, - "server.port": 7, - "WGL_GPU_VENDOR_AMD": 1, - "freePubsubPattern": 1, - "rpushCommand": 1, - "WGL_BIND_TO_VIDEO_RGB_AND_DEPTH_NV": 1, - "PFNWGLDXLOCKOBJECTSNVPROC": 2, - "manipulate": 1, - "which": 1, - "fileno": 1, - "PFNWGLSENDPBUFFERTOVIDEONVPROC": 2, - "WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_RGBA_NV": 1, - "cmd_help": 1, - "REDIS_ENCODING_INT": 4, - "F000": 2, - "WGL_I3D_genlock": 2, - "*__pyx_k_tuple_9": 1, - "Little": 1, - "LOCK": 2, - "REDIS_VERBOSE": 3, - "paused": 3, - "bIndex": 5, - "yajl_alloc": 1, - "__wglewWaitForSbcOML": 2, - "srcZ": 1, - "__pyx_k__fit_intercept": 1, - "text": 22, - "*sub": 1, - "HTTP_MSEARCH": 1, - "*__pyx_n_s__nonzero": 1, - "REDIS_MAXMEMORY_VOLATILE_TTL": 1, - "rfFgets_UTF32LE": 2, - "cmd_index_pack": 1, - "git_buf_vec": 1, - "fseeko64": 1, - "LOG_ERROR": 64, - "h_general": 23, - "lpGpuDevice": 1, - "__pyx_k__epsilon": 1, - "zincrbyCommand": 1, - "TASK_UNINTERRUPTIBLE": 1, - "__pyx_k__i": 1, - "header_flag": 3, - "cpumask_copy": 3, - "__WGLEW_EXT_swap_control": 2, - "**p": 1, - "*src": 3, - "HTTP_PROPFIND": 2, - "RF_UTF16_LE": 9, - "get": 4, - "rb_cObject": 1, - "*cmd": 5, - "STDOUT_FILENO": 2, - "WGL_CONTEXT_RESET_NOTIFICATION_STRATEGY_ARB": 1, - "__pyx_f": 42, - "zero": 2, - "*line_separator": 1, - "PyDict_Size": 3, - "lpushxCommand": 1, - "buffer": 10, - "user": 2, - "server.lua_timedout": 2, - "cmd_push": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_3Log_4__reduce__": 1, - "PyLong_Type": 1, - "uv_pipe_t*": 1, - "sunionstoreCommand": 1, - "use": 1, - "RUN_CLEAN_ON_EXIT": 1, - "codepoints": 44, - "unwatchCommand": 1, - "options.stdio_count": 4, - "row_work": 4, - "*lookup_commit_reference_by_name": 2, - "i_STRING2_": 2, - "specified": 1, - "rfString_PruneEnd": 2, - "server.rdb_save_time_start": 2, - "wglSetPbufferAttribARB": 1, - "WGL_AUX9_ARB": 1, - "uv_process_options_t": 2, - "PFNWGLENUMERATEVIDEODEVICESNVPROC": 2, - "B4": 1, - "WGL_MAX_PBUFFER_HEIGHT_ARB": 1, - "*__pyx_n_s__c": 1, - "__pyx_print": 1, - "PyCode_New": 2, - "what": 1, - "author": 1, - "s_req_query_string": 7, - "*parNP": 2, - "listNodeValue": 3, - "S_ISSOCK": 1, - "__pyx_k__NotImplementedError": 1, - "cpu_active_mask": 2, - "cpu_up": 2, - "__Pyx_c_conj": 3, - "int": 446, - "*new_entry": 1, - "brief": 1, - "rfString_Init_UTF16": 3, - "write_lock_irq": 1, - "*ptr": 1, - "*__pyx_pw_7sklearn_12linear_model_8sgd_fast_10Regression_1loss": 3, - "PY_SSIZE_T_CLEAN": 1, - "i_SELECT_RF_STRING_BEFOREV18": 1, - "stream": 3, - "server.aof_filename": 3, - "prefix.size": 1, - "server.db": 23, - "i_rfString_Between": 4, - "flushallCommand": 1, - "rfFgets_UTF16BE": 2, - "SA_NODEFER": 1, - "wglewIsSupported": 2, - "WGL_MAX_PBUFFER_PIXELS_ARB": 1, - "__Pyx_PyInt_AsLongLong": 1, - "__pyx_obj_7sklearn_5utils_11seq_dataset_CSRDataset": 2, - "PyBytes_GET_SIZE": 1, - "i_SELECT_RF_STRING_REPLACE2": 1, - "pbytePos": 2, - "memmove": 1, - "*parser": 9, - "redisLogFromHandler": 2, - "GLushort*": 1, - "*__pyx_n_s__x_data_ptr": 1, - "i_THISSTR_": 60, - "pointer": 5, - "UV_PROCESS_SETGID": 2, - "resetServerSaveParams": 2, - "append_merge_tag_headers": 1, - "matcher": 3, - "PFNWGLGETCURRENTREADDCEXTPROC": 2, - "i_SELECT_RF_STRING_FIND3": 1, - "xDC00": 4, - "wait3": 1, - "to_cpumask": 15, - ".soft_limit_bytes": 3, - "UV_INHERIT_STREAM": 2, - "__Pyx_XCLEAR": 1, - "i_OUTSTR_": 6, - "make": 3, - "PATCH": 2, - "free_link_refs": 1, - "rfFgetc_UTF32BE": 3, - "opts.new_prefix": 4, - "md": 18, - "HPE_LF_EXPECTED": 1, - "*__pyx_n_s__sys": 1, - "i_SELECT_RF_STRING_BEFORE1": 1, - "refs": 2, - "D0": 1, - "WGLEW_ARB_buffer_region": 1, - "commands": 3, - "userformat_find_requirements": 1, - "signum": 4, - "git_delta_t": 5, - "GIVEREF": 1, - "allocation": 3, - "task_struct": 5, - "cpumask_test_cpu": 1, - "GL_COLOR_CLEAR_UNCLAMPED_VALUE_ATI": 1, - "*__pyx_builtin_RuntimeError": 1, - "I_KEEPSTR_": 2, - "been": 1, - "REDIS_BIO_AOF_FSYNC": 1, - "REDIS_ERR": 5, - "server.rdb_save_time_last": 2, - "oitem": 29, - "wglGetSwapIntervalEXT": 1, - "__Pyx_XGIVEREF": 5, - "PyBUF_F_CONTIGUOUS": 1, - "pg_data_t": 1, - "*diff_strdup_prefix": 1, - "rfString_Init_UTF32": 3, - "*__Pyx_RefNanny": 1, - "b_index_": 6, - "getbitCommand": 1, - "REDIS_SLOWLOG_LOG_SLOWER_THAN": 1, - "__wglewIsEnabledFrameLockI3D": 2, - "__pyx_t_float_complex": 27, - "__sun__": 1, - "finding": 1, - "WGLEW_I3D_gamma": 1, - "WGL_AUX_BUFFERS_EXT": 1, - "rfFgetc_UTF16BE": 4, - "/1000000": 2, - "WGL_LOSE_CONTEXT_ON_RESET_ARB": 1, - "ERROR_INVALID_VERSION_ARB": 1, - "cpu_add_remove_lock": 3, - "uv_process_kill": 1, - "k": 15, - "WGL_VIDEO_OUT_COLOR_AND_ALPHA_NV": 1, - "bracket": 4, - "*__pyx_args": 9, - "*pgdat": 1, - "WGL_SUPPORT_OPENGL_EXT": 1, - "hglrc": 5, - "npy_clongdouble": 1, - "PyObject_GetAttrString": 2, - "*/": 1, - "*24": 1, - "shared.mbulkhdr": 1, - "*ver_major": 2, - "is_empty": 4, - "bufptr": 12, - "rfUTF8_VerifySequence": 7, - "*__pyx_n_s__is_hinge": 1, - "rfUTF32_Length": 1, - "yajl_parse": 2, - "__wglewEnableFrameLockI3D": 2, - "WGL_ARB_create_context_profile": 2, - "num_pos_args": 1, - "size": 120, - "*new_tree": 1, - "__pyx_empty_tuple": 3, - "*strides": 1, - "*reflog_info": 1, - "cpu_bit_bitmap": 2, - "found": 20, - "git_hash_init": 1, - "WGL_DEPTH_COMPONENT_NV": 1, - "__wglewGetPixelFormatAttribfvEXT": 2, - "*__pyx_self": 1, - "__Pyx_PyUnicode_READ_CHAR": 2, - "scriptingInit": 1, - "WGLEW_NV_video_capture": 1, - "WGL_DOUBLE_BUFFER_ARB": 1, - "__imag__": 1, - "PyBUF_ANY_CONTIGUOUS": 1, - "INT_MIN": 1, - "Macros": 1, - "GLboolean": 53, - "PyString_AS_STRING": 1, - "cfg": 6, - "": 2, - "options": 62, - "UV__F_NONBLOCK": 5, - "ferror": 2, - "UV_STREAM_READABLE": 2, - "RUSAGE_CHILDREN": 1, - "*puGreen": 2, - "_exit": 6, - "userformat_want": 2, - "yajl_handle": 10, - "*uMaxPixelDelay": 1, - "*__pyx_k_tuple_17": 1, - "*__pyx_n_s__t": 1, - "fseek": 19, - "return": 529, - "__wglewBindDisplayColorTableEXT": 2, - "A9": 2, - "HPE_STRICT": 1, - "commit_graft_alloc": 4, - "git_setup_gettext": 1, - "hsetnxCommand": 1, - "pipes": 23, - "GIT_ATTR_FNMATCH_ALLOWSPACE": 1, - "read": 1, - "||": 141, - "srandmemberCommand": 1, - "int8_t": 3, - "key2": 5, - "git_pool": 4, - "idletime": 2, - "WGL_I3D_gamma": 2, - "hDstRC": 1, - "WGLEW_3DL_stereo_control": 1, - "*__pyx_n_s__RuntimeError": 1, - "__Pyx_PyInt_AsShort": 1, - "i_RFUI8_": 28, - "i_rfLMSX_WRAP2": 4, - "F_CHUNKED": 11, - "CONFIG_IA64": 1, - "revents": 2, - "rfString_Create_fUTF8": 2, - "c.want": 2, - "delta": 54, - "__init": 2, - "tag_end": 7, - "yajl_bs_free": 1, - "CMIT_FMT_SHORT": 1, - "CB_header_value": 1, - "server": 1, - "zfree": 2, - "WGL_ACCUM_BLUE_BITS_ARB": 1, - "*__pyx_n_s__verbose": 1, - "readonly": 1, - "While": 2, - "h_matching_proxy_connection": 3, - "PFNWGLGETVIDEOINFONVPROC": 2, - "WGL_I3D_image_buffer": 2, - "ob_size": 1, - "adjustOpenFilesLimit": 2, - "GIT_ATTR_FNMATCH_HASWILD": 1, - "": 1, - "cb": 1, - "klass": 1, - "__Pyx_PyCode_New": 2, - "utf": 1, - "needing": 1, - "beg": 10, - "*__Pyx_GetItemInt_List_Fast": 1, - "i_ARG3_": 56, - "li": 6, - "self": 9, - "*reencode_commit_message": 1, - "i_rfString_Remove": 6, - "code=": 2, - "i_NVrfString_Init": 3, - "__wglewSetGammaTableParametersI3D": 2, - "clean": 1, - ".soft_limit_seconds": 3, - "va_start": 3, - "*sb": 7, - "server.watchdog_period": 3, - "status": 57, - "list*": 1, - "now": 5, - "C5": 1, - "WGL_ACCELERATION_EXT": 1, - "WGL_ACCUM_RED_BITS_ARB": 1, - "server.assert_line": 1, - "sha1_to_hex": 8, - "replace": 3, - "aeMain": 1, - "cpu_possible_mask": 2, - "__pyx_k__threshold": 1, - "sd_markdown": 6, - "*o1": 2, - "maxGroups": 1, - "WGL_FRAMEBUFFER_SRGB_CAPABLE_EXT": 1, - "*rev2": 1, - "get_online_cpus": 2, - "peek": 5, - "valid": 1, - "server.aof_buf": 3, - "_zonerefs": 1, - "__pyx_k__B": 1, - "__Pyx_GetItemInt_List": 1, - "srcTarget": 1, - "HANDLE*": 3, - "PyInt_AsUnsignedLongMask": 1, - "zone": 1, - "git_buf_joinpath": 1, - "|": 132, - "INT32*": 1, - "fj": 1, - "is_unicode": 1, - "RE_STRING_INIT_FAILURE": 8, - "HPE_HEADER_OVERFLOW": 1, - "server.ops_sec_idx": 4, - "codePoint": 18, - "ERROR_INVALID_PROFILE_ARB": 1, - "xSrc": 1, - "__pyx_pf_5numpy_7ndarray___getbuffer__": 1, - "pop": 1, - "shared.cone": 1, - "rfString_Assign_char": 2, - "PM_SUSPEND_PREPARE": 1, - "start_state": 1, - "wants": 2, - "write_unlock_irq": 1, - "commit_list": 35, - "h_CO": 3, - "__wglewDeleteDCNV": 2, - "WGL_NUMBER_OVERLAYS_EXT": 1, - "PyUnicode_FromString": 2, - "or": 1, - "alloc_commit_node": 1, - "listLength": 14, - "git__iswildcard": 1, - "HTTP_UNLOCK": 2, - "buflen": 3, - "PyObject_HEAD": 3, - "i_SEARCHSTR_": 26, - "STDIN_FILENO": 1, - "REDIS_CMD_DENYOOM": 1, - "first_cpu": 3, - "PFNWGLBINDVIDEODEVICENVPROC": 2, - "*__pyx_n_s__alpha": 1, - "i_NPSELECT_RF_STRING_AFTERV": 1, - "s_chunk_data_done": 3, - "#endif//include": 1, - "addReplyMultiBulkLen": 1, - "REDIS_ZSET_MAX_ZIPLIST_VALUE": 1, - "*signature": 1, - "set_cpu_online": 1, - "typegroup": 1, - "wglDXObjectAccessNV": 1, - "__Pyx_c_absf": 3, - "i_SELECT_RF_STRING_CREATE1": 1, - "REDIS_LUA_TIME_LIMIT": 1, - "CYTHON_CCOMPLEX": 12, - "__Pyx_PyBool_FromLong": 1, - "startup_info": 3, - "rfPclose": 1, - "redisCommand": 6, - "WGL_SWAP_EXCHANGE_EXT": 1, - "WGL_TRANSPARENT_RED_VALUE_ARB": 1, - "*__pyx_kp_u_12": 1, - "PyString_FromString": 2, - "h_connection": 6, - "char**": 7, - "__pyx_insert_code_object": 1, - "i_SELECT_RF_STRING_AFTER1": 1, - "pFrameCount": 1, - "__pyx_k__rho": 1, - "npy_long": 1, - "means": 1, - "aeCreateFileEvent": 2, - "WGLEW_NV_video_output": 1, - "category": 2, - "*subLength": 2, - "SPAWN_WAIT_EXEC": 5, - "field_data": 5, - "evalCommand": 1, - "dictEncObjKeyCompare": 4, - "endian": 20, - "UV_PROCESS_WINDOWS_VERBATIM_ARGUMENTS": 1, - "iVideoBuffer": 2, - "__wglewCreateAffinityDCNV": 2, - "__wglewCreatePbufferEXT": 2, - "WGL_PBUFFER_HEIGHT_ARB": 1, - "__pyx_k__is_hinge": 1, - "i_SELECT_RF_STRING_AFTERV11": 1, - "*result": 1, - "__WGLEW_NV_vertex_array_range": 2, - "EV_P_": 1, - "BUG_ON": 4, - "get_sha1": 1, - "obj": 48, - "strings": 5, - "48": 1, - "WGL_ALPHA_SHIFT_ARB": 1, - "": 1, - "l1": 4, - "robj": 7, - "PFNWGLRELEASEVIDEOIMAGENVPROC": 2, - "wglCreateAssociatedContextAMD": 1, - "*m": 1, - "does": 1, - "argcp": 2, - "*format": 2, - "rfString_Create": 4, - "statStr": 6, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Hinge": 1, - "lastsaveCommand": 1, - "PyString_AsString": 1, - "*ver_minor": 2, - "cmd_merge_base": 1, - "*commit_list_get_next": 1, - "server.masterhost": 7, - "enc_type": 1, - "PyStringObject": 2, - "server.lua_client": 1, - "cpumask_clear": 2, - "zrangebyscoreCommand": 1, - "CF": 1, - "__pyx_doc_7sklearn_12linear_model_8sgd_fast_12LossFunction_2dloss": 1, - "__pyx_k_20": 1, - "RE_STRING_TOFLOAT": 1, - "preserve_subject": 1, - "EINVAL": 6, - "flushAppendOnlyFile": 2, - "*__pyx_n_s__i": 1, - "i_DESTINATION_": 2, - "opaque": 8, - "cpu_hotplug_disabled": 7, - "abort": 1, - "tv": 8, - "WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_RGB_NV": 1, - "PyList_GET_SIZE": 5, - "is_complex": 1, - "s_res_HT": 4, - "clusterNodesDictType": 1, - "bestval": 5, - "D": 8, - "__pyx_k__sumloss": 1, - "__pyx_module_is_main_sklearn__linear_model__sgd_fast": 1, - "__pyx_t_5numpy_ulong_t": 1, - "PyInt_FromUnicode": 1, - "WGL_TRANSPARENT_GREEN_VALUE_ARB": 1, - "*list": 2, - "hRegion": 3, - "PyCFunction_GET_FUNCTION": 3, - "tasks_frozen": 4, - "git_repository": 7, - "server.syslog_ident": 2, - "checkUTF8": 1, - "__WGLEW_ARB_render_texture": 2, - "__pyx_k__update": 1, - "unlikely": 54, - "getsetCommand": 1, - "*__pyx_empty_tuple": 1, - "PyBytes_Check": 1, - "*suboffsets": 1, - "xA": 1, - "cpu_hotplug_done": 4, - "shared.bgsaveerr": 2, - "xE0": 2, - "clusterInit": 1, - "register_cpu_notifier": 2, - "i_SELECT_RF_STRING_CREATELOCAL0": 1, - "space": 4, - "server.maxmemory_policy": 11, - "zmalloc": 2, - "server.unixsocket": 7, - "HTTP_REPORT": 1, - "than": 5, - "WGL_MIPMAP_TEXTURE_ARB": 1, - "__Pyx_PyIndex_Check": 3, - "case": 273, - "classes": 1, - "sure": 2, - "IS_ALPHANUM": 3, - "__stop_machine": 1, - "USHORT*": 2, - "": 1, - "__PYX_BUF_FLAGS_PACKED_STRUCT": 1, - "requires": 1, - "dictGetVal": 2, - "cmd_prune_packed": 1, - "*argcp": 4, - "server.monitors": 2, - "redisLog": 33, - "WGL_BLUE_SHIFT_EXT": 1, - "WGL_EXT_pixel_format": 2, - "__pyx_k__penalty_type": 1, - "reexecute_byte": 7, - "rfString_Beforev": 4, - "git_config_get_bool": 1, - "strcasecmp": 13, - "uf": 14, - "SUNDOWN_VER_MAJOR": 1, - "sd_version": 1, - "WGL_ALPHA_BITS_EXT": 1, - "WGL_SAMPLE_BUFFERS_ARB": 1, - "__pyx_k__verbose": 1, - "git_strarray": 2, - "run_with_period": 6, - "__wglewGetPixelFormatAttribivARB": 2, - "__pyx_n_s__p": 6, - "pfd.events": 1, - "RE_INPUT": 1, - "*__pyx_n_s__ValueError": 1, - "__Pyx_RaiseNeedMoreValuesError": 1, - "to_py_func": 6, - "rndr": 25, - "WNOHANG": 1, - "(": 6213, - "PFNWGLGENLOCKSOURCEDELAYI3DPROC": 2, - "WINAPI": 119, - "*__pyx_n_s__q_data_ptr": 1, - "*__pyx_v_self": 52, - "__Pyx_DelAttrString": 2, - "kill": 4, - "*lookup_commit_reference_gently": 2, - "cmd_symbolic_ref": 1, - "*msc": 3, - "__Pyx_CodeObjectCache": 2, - "HTTP_MERGE": 1, - "PFNWGLRELEASEVIDEOCAPTUREDEVICENVPROC": 2, - "STRICT": 1, - "": 1, - "from": 16, - "strtoul": 2, - "INT64": 18, - "WGL_DIGITAL_VIDEO_CURSOR_ALPHA_FRAMEBUFFER_I3D": 1, - "*pattern": 1, - "redisServer": 1, - "nr_to_call": 2, - "pathspec": 15, - "wglDeleteBufferRegionARB": 1, - "*__pyx_n_s_21": 1, - "cmd_grep": 1, - "dstTarget": 1, - "WGL_AUX3_ARB": 1, - "you": 1, - "needed": 10, - "*head": 1, - "validateUTF8": 3, - "INT_MAX": 1, - "i_SELECT_RF_STRING_REMOVE3": 1, - "REDIS_LIST_MAX_ZIPLIST_ENTRIES": 1, - "WGL_SWAP_UNDEFINED_EXT": 1, - "WGL_SWAP_LAYER_BUFFERS_EXT": 1, - "WGL_STEREO_EMITTER_DISABLE_3DL": 1, - "__Pyx_PyNumber_Divide": 2, - "opts": 24, - "indent": 1, - "pid_t": 2, - "*line": 1, - "GIT_ITERATOR_WORKDIR": 2, - "i_SELECT_RF_STRING_BEFOREV7": 1, - "data.fd": 1, - "BLOB_H": 2, - "http_data_cb": 4, - "s_header_value_lws": 3, - "WGL_GENLOCK_SOURCE_EXTERNAL_FIELD_I3D": 1, - "ERROR_INVALID_PIXEL_TYPE_EXT": 1, - "s_headers_almost_done": 4, - "SHA1_Final": 3, - "RF_UTF32_LE//": 2, - "removed": 2, - "s2": 6, - "/R_Zero": 2, - "zrevrangebyscoreCommand": 1, - "PFNWGLGETSWAPINTERVALEXTPROC": 2, - "srcX1": 1, - "*__pyx_n_s__epoch": 1, - "__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Hinge___init__": 1, - "pulCounterOutputPbuffer": 1, - "PFNWGLMAKEASSOCIATEDCONTEXTCURRENTAMDPROC": 2, - "two": 1, - "rfUTF8_Encode": 4, - "set_cpu_active": 1, - "__pyx_vtab": 2, - "eta": 4, - "CALLBACK_DATA": 10, - "HTTP_OPTIONS": 1, - "RF_CASE_IGNORE": 2, - "wglDXUnlockObjectsNV": 1, - "PFNWGLENABLEFRAMELOCKI3DPROC": 2, - "Py_hash_t": 1, - "char*utf8": 3, - "one": 2, - "scriptCommand": 2, - "replicationCron": 1, - "uv_loop_t*": 1, - "WGL_EXT_pbuffer": 2, - "__pyx_v_penalty_type": 1, - "i_LIMSELECT_RF_STRING_BEFOREV0": 1, - "git_buf_sets": 1, - "*pointer": 1, - "__wglewSetDigitalVideoParametersI3D": 2, - "WGL_CONTEXT_DEBUG_BIT_ARB": 1, - "__pyx_k__d": 1, - "__builtin_expect": 2, - "i_SELECT_RF_STRING_FWRITE2": 1, - "i_rfLMSX_WRAP8": 2, - "i_SELECT_RF_STRING_BETWEEN4": 1, - "server.syslog_facility": 2, - "PFNWGLRESETFRAMECOUNTNVPROC": 2, - "WGL_DEPTH_BUFFER_BIT_ARB": 1, - "PTR_ERR": 1, - "__pyx_t_5": 12, - "__Pyx_WriteUnraisable": 4, - "minPosLength": 3, - "R_Zero": 2, - "h_matching_content_length": 3, - "file": 6, - "prefixcmp": 3, - "rfString_Copy_OUT": 2, - "*_entry": 1, - "cpumask": 7, - "": 2, - "cb.table_cell": 3, - "PFNWGLQUERYCURRENTCONTEXTNVPROC": 2, - "wglCopyImageSubDataNV": 1, - "*b": 6, - "s_req_query_string_start": 8, - "mutex": 1, - "hdelCommand": 1, - "uv__chld": 2, - "*phGpuList": 1, - "PyFrozenSet_Type": 1, - "ch": 145, - "options.args": 1, - "privdata": 8, - "setDictType": 1, - "WGL_TEXTURE_CUBE_MAP_NEGATIVE_Y_ARB": 1, - "tokensN": 2, - "level": 12, - "lo": 6, - "git_diff_workdir_to_tree": 1, - "fstat": 1, - "RF_SUCCESS": 14, - "MKD_SAFELINK": 1, - "__pyx_f_7sklearn_12linear_model_8sgd_fast_sqnorm": 1, - "WGL_AMD_gpu_association": 2, - "effectively": 1, - "DECLARE_BITMAP": 6, - "HPE_INVALID_CONSTANT": 3, - "server.lua": 1, - "GIT_DIFF_REVERSE": 3, - "loadAppendOnlyFile": 1, - "*__pyx_kp_s_1": 1, - "options.exit_cb": 1, - "Memory": 4, - "pretty_print_commit": 1, - "PFNWGLBLITCONTEXTFRAMEBUFFERAMDPROC": 2, - "PyUnicode_AS_UNICODE": 1, - "uv__cloexec": 4, - "in_merge_bases": 1, - "server.aof_rewrite_scheduled": 4, - "REDIS_VERSION": 4, - "blpopCommand": 1, - "wglGetPixelFormatAttribfvEXT": 1, - "__Pyx_XINCREF": 2, - "cmd_struct": 4, - "object.parsed": 4, - "9": 1, - "ino": 2, - "server.repl_ping_slave_period": 1, - "dstCtx": 1, - "mkd_document": 1, - "parNP": 6, - "PGPU_DEVICE": 1, - "__wglewDeleteBufferRegionARB": 2, - "__pyx_k__H": 1, - "i_SELECT_RF_STRING_BEFOREV13": 1, - "git_tree": 4, - "REDIS_MAXMEMORY_ALLKEYS_RANDOM": 2, - "child_watcher": 5, - "http_parser_h": 2, - "wglGetGPUInfoAMD": 1, - "*__pyx_n_s__eta": 1, - "__pyx_v_power_t": 1, - "*__pyx_ptype_5numpy_ufunc": 1, - "__Pyx_ParseOptionalKeywords": 4, - "PyString_ConcatAndDel": 1, - "*da": 1, - "wglSwapLayerBuffersMscOML": 1, - "__wglewDestroyPbufferEXT": 2, - "*pfAttribFList": 2, - "*module_name": 1, - "numP": 1, - "opts.old_prefix": 4, - "fp": 13, - "wglewContextIsSupported": 2, - "WGL_BIND_TO_VIDEO_RGB_NV": 1, - "WGL_NV_swap_group": 2, - "PFNWGLSETGAMMATABLEPARAMETERSI3DPROC": 2, - "WGL_AUX2_ARB": 1, - "terminate": 1, - "pool": 12, - "WGLEW_NV_render_texture_rectangle": 1, - "__wglewDXRegisterObjectNV": 2, - "WGL_ARB_pixel_format_float": 2, - "__Pyx_StructField*": 1, - "PyBUF_ND": 2, - "cmd_receive_pack": 1, - "prefix.ptr": 2, - "*__pyx_n_s__intercept": 1, - "cpu_all_bits": 2, - "server.stat_rejected_conn": 2, - "__wglewBindTexImageARB": 2, - "*pool": 3, - "*obj": 9, - "__Pyx_TypeCheck": 1, - "PyUnicode_READ_CHAR": 1, - "OK": 1, - "**next": 2, - "__pyx_k__class_weight": 1, - "HPE_CB_headers_complete": 1, - "BOM": 1, - "PFNWGLGETPIXELFORMATATTRIBIVARBPROC": 2, - "maxfiles": 6, - "**pathspec": 1, - "dbDelete": 2, - "MASK_DECLARE_2": 3, - "*nitem": 2, - "cmd_reflog": 1, - "hPbuffer": 14, - "@endcpp": 1, - "server.ops_sec_last_sample_ops": 3, - "WGL_3DFX_multisample": 2, - "PyCFunction_Check": 3, - "PyComplex_Check": 1, - "onto": 7, - "setgid": 1, - "for": 88, - "": 3, - "__Pyx_PyIdentifier_FromString": 3, - "shared.wrongtypeerr": 1, - "act.sa_handler": 1, - "rpoplpushCommand": 1, - "CONFIG_HOTPLUG_CPU": 2, - "*pp": 4, - "migrateCommand": 1, - "yajl_buf_free": 1, - "wglDXLockObjectsNV": 1, - "port": 7, - "git_oid_cmp": 6, - "WGL_TYPE_RGBA_FLOAT_ATI": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12LossFunction_loss": 2, - "uv__stream_open": 1, - "*lookup_blob": 2, - "f": 184, - "UNSUBSCRIBE": 2, - "orSize": 5, - "unregister_shallow": 1, - "cmd_status": 1, - "*tmp": 1, - "server.client_obuf_limits": 9, - "and": 15, - "__wglewDestroyImageBufferI3D": 2, - "__pyx_k__u": 1, - "__pyx_k_6": 1, - "__Pyx_GetVtable": 1, - "*feature_indices": 2, - "rfString_Assign_fUTF8": 2, - "UF_MAX": 3, - "option": 9, - "*from": 1, - "//invalid": 1, - "b_date": 3, - "i_rfString_Beforev": 16, - "__WGLEW_NV_render_texture_rectangle": 2, - "PyObject": 276, - "i_SELECT_RF_STRING_AFTERV17": 1, - "**": 6, - "rb_rdiscount__get_flags": 3, - "WGL_PIXEL_TYPE_EXT": 1, - "__pyx_r": 39, - "__pyx_t_5numpy_int64_t": 1, - "i_SELECT_RF_STRING_INIT_NC1": 1, - "pBytePos": 15, - "PM_HIBERNATION_PREPARE": 1, - "server.pubsub_channels": 2, - "GIT_DIFF_INCLUDE_UNMODIFIED": 1, - "yajl_status_error": 1, - "Cython": 1, - "32": 1, - "number*diff": 1, - "commit_pager_choice": 4, - "cmd_diff_files": 1, - "RUN_SILENT_EXEC_FAILURE": 1, - "server.activerehashing": 2, - "__Pyx_GetItemInt_Fast": 2, - "**commit_graft": 1, - "cmd_add": 2, - "*s": 3, - "HTTP_SUBSCRIBE": 2, - "__wglewQuerySwapGroupNV": 2, - "WGL_PBUFFER_WIDTH_ARB": 1, - "PyErr_Occurred": 9, - "pgdat": 3, - "GIT_DIFF_IGNORE_SUBMODULES": 1, - "CMIT_FMT_EMAIL": 1, - "__Pyx_ReleaseBuffer": 2, - "sstrP": 6, - "addReplyBulk": 1, - "void*": 135, - "limit.rlim_cur": 2, - "__wglewDisableGenlockI3D": 2, - "just": 1, - "REDIS_SHARED_INTEGERS": 1, - "__cpuinit": 3, - "cpu": 57, - "argList": 8, - "undo": 5, - "PM_POST_SUSPEND": 1, - "__wglewGetSyncValuesOML": 2, - "__wglewGetPixelFormatAttribfvARB": 2, - "*__Pyx_Import": 1, - "i_STRING1_": 2, - "clusterCommand": 1, - "WGL_FULL_ACCELERATION_EXT": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Regression": 1, - "utf16": 11, - "memcmp": 6, - "WGL_MAX_PBUFFER_WIDTH_ARB": 1, - "A4": 2, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_ModifiedHuber": 5, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Regression": 11, - "module": 3, - "REDIS_AOF_REWRITE_MIN_SIZE": 1, - "*next": 6, - "thiskey": 7, - "sp": 4, - "cmd_rerere": 1, - "RECT": 1, - "*__pyx_pw_7sklearn_12linear_model_8sgd_fast_12LossFunction_3dloss": 3, - "git__free": 15, - "WGL_VIDEO_OUT_FIELD_1": 1, - "rcVirtualScreen": 1, - "bool": 6, - ".description": 1, - "xrealloc": 2, - "iGpuIndex": 2, - "Extended": 1, - "HPE_INVALID_EOF_STATE": 1, - "server.masterauth": 1, - "i_rfString_ScanfAfter": 3, - "snprintf": 2, - "__wglewDXLockObjectsNV": 2, - "FLOAT": 4, - "*__pyx_builtin_NotImplementedError": 1, - "*extra": 1, - "": 1, - "that": 9, - "exist": 2, - "i/2": 2, - "properly": 2, - "xFFFE0000": 1, - "*heads": 2, - "server.hash_max_ziplist_entries": 1, - "**type": 1, - "Py_REFCNT": 1, - "*clientData": 1, - "PFNWGLDXOPENDEVICENVPROC": 2, - "wglGenlockSourceI3D": 1, - "WGL_BACK_RIGHT_ARB": 1, - "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_Regression": 3, - "sdiffstoreCommand": 1, - "server.ops_sec_samples": 4, - "aeCreateTimeEvent": 1, - "git_index_entry": 8, - "func_name": 2, - "__STDC_VERSION__": 2, - "utf32": 10, - "INVALID_INTERNAL_STATE": 1, - "*numberP": 1, - "GIT_DIFF_RECURSE_UNTRACKED_DIRS": 1, - "HPE_INVALID_STATUS": 3, - "git_repository_config__weakptr": 1, - "WGL_I3D_swap_frame_usage": 2, - "C0": 3, - "header_field": 5, - "value": 9, - "ARRAY_SIZE": 1, - "WGLEW_EXT_extensions_string": 1, - "wglGetCurrentReadDCARB": 1, - "c_ru.ru_stime.tv_sec": 1, - "": 1, - "__Pyx_DOCSTR": 2, - "PyLong_FromUnicode": 1, - "manipulation": 1, - "*prefix": 7, - "stat": 3, - "//": 257, - "__wglewGetCurrentReadDCEXT": 2, - "WGL_ACCELERATION_ARB": 1, - ".": 1, - "i_NPSELECT_RF_STRING_REMOVE1": 1, - "i_rfLMSX_WRAP15": 2, - "git_hash_update": 1, - "PUT": 2, - "WGL_I3D_swap_frame_lock": 2, - "wglChoosePixelFormatARB": 1, - "__pyx_kwds": 15, - "*__pyx_n_s__zeros": 1, - "__Pyx_CodeObjectCacheEntry*": 2, - "npy_longdouble": 1, - "RF_FAILURE": 24, - "prepareForShutdown": 2, - "tokens": 5, - "default": 33, - "INT64*": 3, - "__pyx_k__learning_rate": 1, - "__pyx_k__RuntimeError": 1, - "PySequence_Check": 1, - "ob_refcnt": 1, - "#endif//": 1, - "s_chunk_size_start": 4, - "HPE_CLOSED_CONNECTION": 1, - "HTTP_PARSER_ERRNO_LINE": 2, - "__wglewLockVideoCaptureDeviceNV": 2, - "__Pyx_c_is_zero": 3, - "w": 6, - "git_mutex_init": 1, - "mkd_string": 2, - "getOperationsPerSecond": 2, - "WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_RG_NV": 1, - "wglDXSetResourceShareHandleNV": 1, - "setrangeCommand": 1, - "pfd": 2, - "REDIS_SHARED_BULKHDR_LEN": 1, - "git_cached_obj_decref": 3, - "PFNWGLBINDVIDEOIMAGENVPROC": 2, - "*pLastMissedUsage": 1, - "WGLEW_EXT_pbuffer": 1, - "WGL_TYPE_RGBA_FLOAT_ARB": 1, - "*__pyx_n_s__weight_pos": 1, - "__Pyx_c_diff": 2, - "every": 1, - "CMIT_FMT_FULL": 1, - "old_tree": 5, - "clientCommand": 1, - "git_startup_info": 2, - "git_diff_index_to_tree": 1, - "*__pyx_k_codeobj_19": 1, - "rfFseek": 2, - "rfUTILS_SwapEndianUI": 11, - "arity": 3, - "uint16_t": 12, - "*__pyx_pw_7sklearn_12linear_model_8sgd_fast_12LossFunction_1loss": 3, - "install": 1, - "multiCommand": 2, - "*privdata": 8, - "__Pyx_PyInt_FromHash_t": 2, - "smaller": 1, - "*git_cache_get": 1, - "*link": 1, - "process": 19, - "c_ru.ru_utime.tv_usec/1000000": 1, - "wglGetGenlockSourceEdgeI3D": 1, - "__GNUC_PATCHLEVEL__": 1, - "watchCommand": 2, - "RF_HEXLE_UI": 8, - "*diff_delta__dup": 1, - "dictEnableResize": 1, - "WARN_ON": 1, - "on_headers_complete": 3, - "cmd_mktree": 1, - "DIFF_OLD_PREFIX_DEFAULT": 1, - "xDBFF": 4, - "WGL_CONTEXT_LAYER_PLANE_ARB": 1, - "PyErr_SetString": 3, - "is_repository_shallow": 1, - "rewriteAppendOnlyFileBackground": 2, - "GLint": 18, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_SquaredLoss": 5, - "idle_cpu": 1, - "target_msc": 3, - "wglQueryPbufferARB": 1, - "check_pager_config": 3, - "CALLBACK_DATA_NOADVANCE": 6, - "s_req_fragment": 7, - "wglSetDigitalVideoParametersI3D": 1, - "WGL_SWAP_EXCHANGE_ARB": 1, - "[": 597, - "term_signal": 3, - "__wglewDXCloseDeviceNV": 2, - "__wglewGenlockSourceDelayI3D": 2, - "__wglewQueryPbufferEXT": 2, - "rfString_StripEnd": 3, - "GIT_DELTA_UNTRACKED": 5, - "rfFback_UTF16LE": 2, - "": 1, - "dictEncObjHash": 4, - "PyUnicode_Type": 2, - "i_NPSELECT_RF_STRING_REPLACE0": 1, - "http_errno_description": 1, - "sdsempty": 8, - "i_SELECT_RF_STRING_COUNT0": 1, - "temporary": 4, - "WGL_NV_DX_interop": 2, - "*pSize": 1, - "*column_data": 1, - "pattern": 3, - "git_cache_free": 1, - "WGLEW_ARB_create_context_robustness": 1, - "uses": 1, - "REDIS_HT_MINFILL": 1, - "__wglewCreatePbufferARB": 2, - "WGL_PBUFFER_LOST_ARB": 1, - "rfUTF16_Decode_swap": 5, - "dbDictType": 2, - "yajl_buf_alloc": 1, - "PFNWGLALLOCATEMEMORYNVPROC": 2, - "execv_dashed_external": 2, - "cmd_fetch": 1, - "rcu_read_unlock": 1, - "WGL_ACCUM_GREEN_BITS_ARB": 1, - "__pyx_v_rho": 1, - "NOTIFY_DONE": 1, - "pexpireatCommand": 1, - "i_ARG2_": 56, - "server.dbnum": 8, - "parent": 7, - "UV_INHERIT_FD": 3, - "s2P": 2, - "*vec": 1, - "CA": 1, - "PyInstanceMethod_New": 1, - "c.value": 3, - "expired": 4, - "B5": 1, - "PFNWGLGETGPUINFOAMDPROC": 2, - "PFNWGLGETGPUIDSAMDPROC": 2, - "dloss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_25SquaredEpsilonInsensitive_2loss": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_SquaredEpsilonInsensitive": 1, - "i_NPSELECT_RF_STRING_BEFORE0": 1, - "code": 6, - "cmd_prune": 1, - "REF_TABLE_SIZE": 1, - "*item": 10, - "REDIS_OK": 23, - "wglDeleteDCNV": 1, - "hSrcRC": 1, - "WGL_GPU_CLOCK_AMD": 1, - "type*": 1, - "ev_child*": 1, - "notifier_block": 3, - "One": 1, - "fwrite": 5, - "lookup_commit_reference": 2, - "dictType": 8, - "*what": 1 - }, - "LFE": { - "OOP": 1, - "spec": 1, - "copy": 3, - "money": 3, - "Mnesia": 2, - "cond": 1, - "//www.apache.org/licenses/LICENSE": 3, - "guide": 1, - "except": 3, - "mommy": 3, - "class": 3, - "To": 1, - "by_place_ms": 1, - "using": 1, - "License": 12, - "agreed": 3, - "required": 3, - ")": 231, - "car": 1, - "http": 4, - "id": 9, - "object.lfe": 1, - "select": 1, - "a": 8, - "drive": 1, - "fun": 1, - "update": 1, - "Comprehensions": 1, - "match_object": 1, - "church.lfe": 1, - "OF": 3, - "call": 2, - "by_place_qlc": 2, - "one": 1, - "McGreggor": 4, - "of": 10, - "numeral": 8, - "three": 1, - "get": 21, - "info": 1, - "lambda": 18, - "give": 1, - "gps1.lisp": 1, - "x": 12, - "Query": 2, - "*": 6, - "implied.": 3, - "lc": 1, - "Demonstrating": 2, - "guide/recursion/5.html": 1, - "ANY": 3, - "current": 1, - "OR": 3, - "Solver": 1, - "pattern": 1, - "simple": 4, - "installs": 1, - "obtain": 3, - "When": 1, - "necessary.": 1, - "tables.": 1, - "or": 6, - "new": 2, - "A": 1, - "Copyright": 4, - "example": 2, - "demonstrated": 1, - "schema.": 1, + "ABAP": { + "*/**": 1, + "*": 56, + "The": 2, + "MIT": 2, + "License": 1, + "(": 8, + ")": 8, + "Copyright": 1, + "c": 3, + "Ren": 1, + "van": 1, + "Mil": 1, + "Permission": 1, + "is": 2, + "hereby": 1, + "granted": 1, + "free": 1, + "of": 6, + "charge": 1, "to": 10, - "integer": 2, - "make": 2, - "formatted": 1, - "../bin/lfe": 1, - "his": 1, - "*state*": 5, - "n": 4, - "Purpose": 3, - "list": 13, - "some": 2, - "numerals": 1, - "+": 2, - "define": 1, - "examples": 1, - "if": 1, - "c": 4, - "move": 4, - "used": 1, - "You": 3, - "law": 3, - "macro": 1, - "Norvig": 1, - "emp": 1, - "length": 1, - "This": 2, - "Robert": 3, - "count": 7, - "permissions": 3, - "File": 4, - "macros": 1, - "applicable": 3, - "by_place": 1, - "mnesia_demo": 1, - "Virding": 3, - "you": 3, - "erlang": 1, - "Carp": 1, - "basic": 1, - "Load": 1, - "inheritance.": 1, - "WARRANTIES": 3, - "put": 1, - "telephone": 1, - "It": 1, - "here": 1, - "": 2, - "system": 1, - "naughty": 1, - "state": 4, - "and": 7, - "children": 10, - "ETS": 1, - "zero": 2, - "See": 3, - "object": 16, - "conditions.": 1, - "Code": 1, - "every": 1, - "records": 1, - "p": 2, - "-": 98, - "may": 6, - "is": 5, - "e": 1, - "place": 7, - "Execute": 1, - "Start": 1, - "match": 5, - "achieve": 1, - "five/0": 2, - "access.": 1, - "species": 7, - "does": 1, - "book": 1, - "del": 5, - "section": 1, - "language": 3, - "objects": 2, - "Mode": 1, - "an": 5, - "Paradigms": 1, - "q": 2, - "we": 1, - "works": 1, - "swam": 1, - "f": 3, - "#": 3, - "shop": 6, - "user": 1, - "getvar": 3, - "calculus": 1, - "difference": 1, - "self": 6, - "together": 1, - "[": 3, - "The": 4, - "Author": 3, - "First": 1, - "Licensed": 3, - "not": 5, - "goals": 2, - "by": 4, - "Note": 1, - "WITHOUT": 3, - "variables": 1, - "battery": 1, - "ok": 1, - "will": 1, - "for": 5, - "distributed": 6, - "#Fun": 1, - "hack": 1, - "GPS": 1, - "instance": 2, - "people": 1, - "start": 1, - "int": 2, - "demo": 2, - "/": 1, - "LFE": 4, - "demonstrate": 1, - "when": 1, - "mnesia": 8, - "Apache": 3, - "the": 36, - "contains": 1, - "successor": 3, - "Unless": 3, - "access": 1, - "was": 1, - "tuple": 1, - "only": 1, - "defsyntax": 2, - "union": 1, - "other": 1, - "shows": 2, - "Artificial": 1, - "usage": 1, - ";": 213, - "Use": 1, - "s": 19, - "with": 8, - "Duncan": 4, - "have": 3, - "solved": 1, - "gps": 1, - "however": 1, - "can": 1, - "table.": 1, - "License.": 6, - "global": 2, - "cd": 1, - "transaction": 2, - "attributes": 1, - "but": 1, - "]": 3, - "XXXX": 1, - "Now": 1, - "pa": 1, - "Set": 1, - "successor/1": 1, - "Define": 1, - "": 1, - "qlc": 2, - "person": 8, - "action": 3, - "variable": 2, - "preconds": 4, - "use": 6, - "LFE.": 1, - "do": 2, - "<": 1, - "compliance": 3, - "existing": 1, - "General": 1, - "specifications": 1, - "slurp": 2, - "file": 6, - "Converted": 1, - "add": 3, - "CONDITIONS": 3, - "school": 2, - "setvar": 2, - "code": 2, - "this": 3, - "governing": 3, - "Problem": 1, - "feet": 1, - "../ebin": 1, - "express": 3, - "*ops*": 1, - "defvar": 2, - "set": 1, - "//lfe.github.io/user": 1, - "KIND": 3, - "four": 1, - "version": 1, - "software": 3, - "on": 4, - "defun": 20, - "List": 2, - "reproduce": 1, - "verb": 2, - "isn": 1, - "table": 2, - "Comprehensions.": 1, - "communication": 2, - "son": 2, - "j": 2, - "mnesia_demo.lfe": 1, - "phone": 1, - "five": 1, - "distance": 2, - "that": 1, - "closures": 1, - "create_table": 1, - "Peter": 1, - "defmodule": 2, - "two": 1, - "int1": 1, - "very": 1, - "methods": 5, - "church": 20, - "limit": 4, - "create": 4, - "funcall": 23, - "Programming": 1, - "from": 2, - "Initialise": 1, - "export": 2, - "how": 2, - "Here": 1, - "v": 3, - "strictly": 1, - "fish": 6, - "which": 1, - "Version": 3, - "BASIS": 3, - "in": 10, - "(": 217, + "any": 1, + "person": 1, + "obtaining": 1, + "a": 1, + "copy": 2, + "this": 2, + "software": 1, + "and": 3, + "associated": 1, + "documentation": 1, + "files": 4, + "the": 10, + "deal": 1, + "in": 3, + "Software": 3, + "without": 2, + "restriction": 1, + "including": 1, + "limitation": 1, + "rights": 1, + "use": 1, + "modify": 1, + "merge": 1, + "publish": 1, + "distribute": 1, + "sublicense": 1, + "and/or": 1, + "sell": 1, + "copies": 2, + "permit": 1, + "persons": 1, + "whom": 1, + "furnished": 1, + "do": 4, + "so": 1, + "subject": 1, + "following": 1, + "conditions": 1, + "above": 1, + "copyright": 1, + "notice": 2, + "permission": 1, + "shall": 1, + "be": 1, + "included": 1, "all": 1, - "method": 7, - "let": 6, - "limitations": 3, - "memory": 1, - "name": 8, - "following": 2, - "defrecord": 1, - "Intelligence": 1, - "op": 8, - "has": 1, - "writing": 3, - "int2": 1, - "specific": 3, - "below": 3, - "those": 1, - "job": 3, - "either": 3, - "val": 2, - "under": 9, - "at": 4 + "or": 1, + "substantial": 1, + "portions": 1, + "Software.": 1, + "THE": 6, + "SOFTWARE": 2, + "IS": 1, + "PROVIDED": 1, + "WITHOUT": 1, + "WARRANTY": 1, + "OF": 4, + "ANY": 2, + "KIND": 1, + "EXPRESS": 1, + "OR": 7, + "IMPLIED": 1, + "INCLUDING": 1, + "BUT": 1, + "NOT": 1, + "LIMITED": 1, + "TO": 2, + "WARRANTIES": 1, + "MERCHANTABILITY": 1, + "FITNESS": 1, + "FOR": 2, + "A": 1, + "PARTICULAR": 1, + "PURPOSE": 1, + "AND": 1, + "NONINFRINGEMENT.": 1, + "IN": 4, + "NO": 1, + "EVENT": 1, + "SHALL": 1, + "AUTHORS": 1, + "COPYRIGHT": 1, + "HOLDERS": 1, + "BE": 1, + "LIABLE": 1, + "CLAIM": 1, + "DAMAGES": 1, + "OTHER": 2, + "LIABILITY": 1, + "WHETHER": 1, + "AN": 1, + "ACTION": 1, + "CONTRACT": 1, + "TORT": 1, + "OTHERWISE": 1, + "ARISING": 1, + "FROM": 1, + "OUT": 1, + "CONNECTION": 1, + "WITH": 1, + "USE": 1, + "DEALINGS": 1, + "SOFTWARE.": 1, + "*/": 1, + "-": 978, + "CLASS": 2, + "CL_CSV_PARSER": 6, + "DEFINITION": 2, + "class": 2, + "cl_csv_parser": 2, + "definition": 1, + "public": 3, + "inheriting": 1, + "from": 1, + "cl_object": 1, + "final": 1, + "create": 1, + ".": 9, + "section.": 3, + "not": 3, + "include": 3, + "other": 3, + "source": 3, + "here": 3, + "type": 11, + "pools": 1, + "abap": 1, + "methods": 2, + "constructor": 2, + "importing": 1, + "delegate": 1, + "ref": 1, + "if_csv_parser_delegate": 1, + "csvstring": 1, + "string": 1, + "separator": 1, + "skip_first_line": 1, + "abap_bool": 2, + "parse": 2, + "raising": 1, + "cx_csv_parse_error": 2, + "protected": 1, + "private": 1, + "constants": 1, + "_textindicator": 1, + "value": 2, + "IMPLEMENTATION": 2, + "implementation.": 1, + "": 2, + "+": 9, + "|": 7, + "Instance": 2, + "Public": 1, + "Method": 2, + "CONSTRUCTOR": 1, + "[": 5, + "]": 5, + "DELEGATE": 1, + "TYPE": 5, + "REF": 1, + "IF_CSV_PARSER_DELEGATE": 1, + "CSVSTRING": 1, + "STRING": 1, + "SEPARATOR": 1, + "C": 1, + "SKIP_FIRST_LINE": 1, + "ABAP_BOOL": 1, + "": 2, + "method": 2, + "constructor.": 1, + "super": 1, + "_delegate": 1, + "delegate.": 1, + "_csvstring": 2, + "csvstring.": 1, + "_separator": 1, + "separator.": 1, + "_skip_first_line": 1, + "skip_first_line.": 1, + "endmethod.": 2, + "Get": 1, + "lines": 4, + "data": 3, + "is_first_line": 1, + "abap_true.": 2, + "standard": 2, + "table": 3, + "string.": 3, + "_lines": 1, + "field": 1, + "symbols": 1, + "": 3, + "loop": 1, + "at": 2, + "assigning": 1, + "Parse": 1, + "line": 1, + "values": 2, + "_parse_line": 2, + "Private": 1, + "_LINES": 1, + "<": 1, + "RETURNING": 1, + "STRINGTAB": 1, + "_lines.": 1, + "split": 1, + "cl_abap_char_utilities": 1, + "cr_lf": 1, + "into": 6, + "returning.": 1, + "Space": 2, + "concatenate": 4, + "csvvalue": 6, + "csvvalue.": 5, + "else.": 4, + "char": 2, + "endif.": 6, + "This": 1, + "indicates": 1, + "an": 1, + "error": 1, + "CSV": 1, + "formatting": 1, + "text_ended": 1, + "message": 2, + "e003": 1, + "csv": 1, + "msg.": 2, + "raise": 1, + "exception": 1, + "exporting": 1, + "endwhile.": 2, + "append": 2, + "csvvalues.": 2, + "clear": 1, + "pos": 2, + "endclass.": 1 + }, + "ApacheConf": { + "ServerSignature": 1, + "Off": 1, + "RewriteCond": 15, + "%": 48, + "{": 16, + "REQUEST_METHOD": 1, + "}": 16, + "(": 16, + "HEAD": 1, + "|": 80, + "TRACE": 1, + "DELETE": 1, + "TRACK": 1, + ")": 17, + "[": 17, + "NC": 13, + "OR": 14, + "]": 17, + "THE_REQUEST": 1, + "r": 1, + "n": 1, + "A": 6, + "D": 6, + "HTTP_REFERER": 1, + "<|>": 6, + "C": 5, + "E": 5, + "HTTP_COOKIE": 1, + "REQUEST_URI": 1, + "/": 3, + ";": 2, + "<": 1, + ".": 7, + "HTTP_USER_AGENT": 5, + "java": 1, + "curl": 2, + "wget": 2, + "winhttp": 1, + "HTTrack": 1, + "clshttp": 1, + "archiver": 1, + "loader": 1, + "email": 1, + "harvest": 1, + "extract": 1, + "grab": 1, + "miner": 1, + "libwww": 1, + "-": 43, + "perl": 1, + "python": 1, + "nikto": 1, + "scan": 1, + "#Block": 1, + "mySQL": 1, + "injects": 1, + "QUERY_STRING": 5, + ".*": 3, + "*": 1, + "union": 1, + "select": 1, + "insert": 1, + "cast": 1, + "set": 1, + "declare": 1, + "drop": 1, + "update": 1, + "md5": 1, + "benchmark": 1, + "./": 1, + "localhost": 1, + "loopback": 1, + ".0": 2, + ".1": 1, + "a": 1, + "z0": 1, + "RewriteRule": 1, + "index.php": 1, + "F": 1, + "#": 182, + "ServerRoot": 2, + "#Listen": 2, + "Listen": 2, + "LoadModule": 126, + "authn_file_module": 2, + "/usr/lib/apache2/modules/mod_authn_file.so": 1, + "authn_dbm_module": 2, + "/usr/lib/apache2/modules/mod_authn_dbm.so": 1, + "authn_anon_module": 2, + "/usr/lib/apache2/modules/mod_authn_anon.so": 1, + "authn_dbd_module": 2, + "/usr/lib/apache2/modules/mod_authn_dbd.so": 1, + "authn_default_module": 2, + "/usr/lib/apache2/modules/mod_authn_default.so": 1, + "authn_alias_module": 1, + "/usr/lib/apache2/modules/mod_authn_alias.so": 1, + "authz_host_module": 2, + "/usr/lib/apache2/modules/mod_authz_host.so": 1, + "authz_groupfile_module": 2, + "/usr/lib/apache2/modules/mod_authz_groupfile.so": 1, + "authz_user_module": 2, + "/usr/lib/apache2/modules/mod_authz_user.so": 1, + "authz_dbm_module": 2, + "/usr/lib/apache2/modules/mod_authz_dbm.so": 1, + "authz_owner_module": 2, + "/usr/lib/apache2/modules/mod_authz_owner.so": 1, + "authnz_ldap_module": 1, + "/usr/lib/apache2/modules/mod_authnz_ldap.so": 1, + "authz_default_module": 2, + "/usr/lib/apache2/modules/mod_authz_default.so": 1, + "auth_basic_module": 2, + "/usr/lib/apache2/modules/mod_auth_basic.so": 1, + "auth_digest_module": 2, + "/usr/lib/apache2/modules/mod_auth_digest.so": 1, + "file_cache_module": 1, + "/usr/lib/apache2/modules/mod_file_cache.so": 1, + "cache_module": 2, + "/usr/lib/apache2/modules/mod_cache.so": 1, + "disk_cache_module": 2, + "/usr/lib/apache2/modules/mod_disk_cache.so": 1, + "mem_cache_module": 2, + "/usr/lib/apache2/modules/mod_mem_cache.so": 1, + "dbd_module": 2, + "/usr/lib/apache2/modules/mod_dbd.so": 1, + "dumpio_module": 2, + "/usr/lib/apache2/modules/mod_dumpio.so": 1, + "ext_filter_module": 2, + "/usr/lib/apache2/modules/mod_ext_filter.so": 1, + "include_module": 2, + "/usr/lib/apache2/modules/mod_include.so": 1, + "filter_module": 2, + "/usr/lib/apache2/modules/mod_filter.so": 1, + "charset_lite_module": 1, + "/usr/lib/apache2/modules/mod_charset_lite.so": 1, + "deflate_module": 2, + "/usr/lib/apache2/modules/mod_deflate.so": 1, + "ldap_module": 1, + "/usr/lib/apache2/modules/mod_ldap.so": 1, + "log_forensic_module": 2, + "/usr/lib/apache2/modules/mod_log_forensic.so": 1, + "env_module": 2, + "/usr/lib/apache2/modules/mod_env.so": 1, + "mime_magic_module": 2, + "/usr/lib/apache2/modules/mod_mime_magic.so": 1, + "cern_meta_module": 2, + "/usr/lib/apache2/modules/mod_cern_meta.so": 1, + "expires_module": 2, + "/usr/lib/apache2/modules/mod_expires.so": 1, + "headers_module": 2, + "/usr/lib/apache2/modules/mod_headers.so": 1, + "ident_module": 2, + "/usr/lib/apache2/modules/mod_ident.so": 1, + "usertrack_module": 2, + "/usr/lib/apache2/modules/mod_usertrack.so": 1, + "unique_id_module": 2, + "/usr/lib/apache2/modules/mod_unique_id.so": 1, + "setenvif_module": 2, + "/usr/lib/apache2/modules/mod_setenvif.so": 1, + "version_module": 2, + "/usr/lib/apache2/modules/mod_version.so": 1, + "proxy_module": 2, + "/usr/lib/apache2/modules/mod_proxy.so": 1, + "proxy_connect_module": 2, + "/usr/lib/apache2/modules/mod_proxy_connect.so": 1, + "proxy_ftp_module": 2, + "/usr/lib/apache2/modules/mod_proxy_ftp.so": 1, + "proxy_http_module": 2, + "/usr/lib/apache2/modules/mod_proxy_http.so": 1, + "proxy_ajp_module": 2, + "/usr/lib/apache2/modules/mod_proxy_ajp.so": 1, + "proxy_balancer_module": 2, + "/usr/lib/apache2/modules/mod_proxy_balancer.so": 1, + "ssl_module": 4, + "/usr/lib/apache2/modules/mod_ssl.so": 1, + "mime_module": 4, + "/usr/lib/apache2/modules/mod_mime.so": 1, + "dav_module": 2, + "/usr/lib/apache2/modules/mod_dav.so": 1, + "status_module": 2, + "/usr/lib/apache2/modules/mod_status.so": 1, + "autoindex_module": 2, + "/usr/lib/apache2/modules/mod_autoindex.so": 1, + "asis_module": 2, + "/usr/lib/apache2/modules/mod_asis.so": 1, + "info_module": 2, + "/usr/lib/apache2/modules/mod_info.so": 1, + "suexec_module": 1, + "/usr/lib/apache2/modules/mod_suexec.so": 1, + "cgid_module": 3, + "/usr/lib/apache2/modules/mod_cgid.so": 1, + "cgi_module": 2, + "/usr/lib/apache2/modules/mod_cgi.so": 1, + "dav_fs_module": 2, + "/usr/lib/apache2/modules/mod_dav_fs.so": 1, + "dav_lock_module": 1, + "/usr/lib/apache2/modules/mod_dav_lock.so": 1, + "vhost_alias_module": 2, + "/usr/lib/apache2/modules/mod_vhost_alias.so": 1, + "negotiation_module": 2, + "/usr/lib/apache2/modules/mod_negotiation.so": 1, + "dir_module": 4, + "/usr/lib/apache2/modules/mod_dir.so": 1, + "imagemap_module": 2, + "/usr/lib/apache2/modules/mod_imagemap.so": 1, + "actions_module": 2, + "/usr/lib/apache2/modules/mod_actions.so": 1, + "speling_module": 2, + "/usr/lib/apache2/modules/mod_speling.so": 1, + "userdir_module": 2, + "/usr/lib/apache2/modules/mod_userdir.so": 1, + "alias_module": 4, + "/usr/lib/apache2/modules/mod_alias.so": 1, + "rewrite_module": 2, + "/usr/lib/apache2/modules/mod_rewrite.so": 1, + "": 17, + "mpm_netware_module": 2, + "User": 2, + "daemon": 2, + "Group": 2, + "": 17, + "ServerAdmin": 2, + "you@example.com": 2, + "#ServerName": 2, + "www.example.com": 2, + "DocumentRoot": 2, + "": 6, + "Options": 6, + "FollowSymLinks": 4, + "AllowOverride": 6, + "None": 8, + "Order": 10, + "deny": 10, + "allow": 10, + "Deny": 6, + "from": 10, + "all": 10, + "": 6, + "usr": 2, + "share": 1, + "apache2": 1, + "default": 1, + "site": 1, + "htdocs": 1, + "Indexes": 2, + "Allow": 4, + "DirectoryIndex": 2, + "index.html": 2, + "": 2, + "ht": 1, + "Satisfy": 4, + "All": 4, + "": 2, + "ErrorLog": 2, + "/var/log/apache2/error_log": 1, + "LogLevel": 2, + "warn": 2, + "log_config_module": 3, + "LogFormat": 6, + "combined": 4, + "common": 4, + "logio_module": 3, + "combinedio": 2, + "CustomLog": 2, + "/var/log/apache2/access_log": 2, + "#CustomLog": 2, + "ScriptAlias": 1, + "/cgi": 2, + "bin/": 2, + "#Scriptsock": 2, + "/var/run/apache2/cgisock": 1, + "lib": 1, + "cgi": 3, + "bin": 1, + "DefaultType": 2, + "text/plain": 2, + "TypesConfig": 2, + "/etc/apache2/mime.types": 1, + "#AddType": 4, + "application/x": 6, + "gzip": 6, + ".tgz": 6, + "#AddEncoding": 4, + "x": 4, + "compress": 4, + ".Z": 4, + ".gz": 4, + "AddType": 4, + "#AddHandler": 4, + "script": 2, + ".cgi": 2, + "type": 2, + "map": 2, + "var": 2, + "text/html": 2, + ".shtml": 4, + "#AddOutputFilter": 2, + "INCLUDES": 2, + "#MIMEMagicFile": 2, + "/etc/apache2/magic": 1, + "#ErrorDocument": 8, + "/missing.html": 2, + "http": 2, + "//www.example.com/subscription_info.html": 2, + "#EnableMMAP": 2, + "off": 5, + "#EnableSendfile": 2, + "#Include": 17, + "/etc/apache2/extra/httpd": 11, + "mpm.conf": 2, + "multilang": 2, + "errordoc.conf": 2, + "autoindex.conf": 2, + "languages.conf": 2, + "userdir.conf": 2, + "info.conf": 2, + "vhosts.conf": 2, + "manual.conf": 2, + "dav.conf": 2, + "default.conf": 2, + "ssl.conf": 2, + "SSLRandomSeed": 4, + "startup": 2, + "builtin": 4, + "connect": 2, + "libexec/apache2/mod_authn_file.so": 1, + "libexec/apache2/mod_authn_dbm.so": 1, + "libexec/apache2/mod_authn_anon.so": 1, + "libexec/apache2/mod_authn_dbd.so": 1, + "libexec/apache2/mod_authn_default.so": 1, + "libexec/apache2/mod_authz_host.so": 1, + "libexec/apache2/mod_authz_groupfile.so": 1, + "libexec/apache2/mod_authz_user.so": 1, + "libexec/apache2/mod_authz_dbm.so": 1, + "libexec/apache2/mod_authz_owner.so": 1, + "libexec/apache2/mod_authz_default.so": 1, + "libexec/apache2/mod_auth_basic.so": 1, + "libexec/apache2/mod_auth_digest.so": 1, + "libexec/apache2/mod_cache.so": 1, + "libexec/apache2/mod_disk_cache.so": 1, + "libexec/apache2/mod_mem_cache.so": 1, + "libexec/apache2/mod_dbd.so": 1, + "libexec/apache2/mod_dumpio.so": 1, + "reqtimeout_module": 1, + "libexec/apache2/mod_reqtimeout.so": 1, + "libexec/apache2/mod_ext_filter.so": 1, + "libexec/apache2/mod_include.so": 1, + "libexec/apache2/mod_filter.so": 1, + "substitute_module": 1, + "libexec/apache2/mod_substitute.so": 1, + "libexec/apache2/mod_deflate.so": 1, + "libexec/apache2/mod_log_config.so": 1, + "libexec/apache2/mod_log_forensic.so": 1, + "libexec/apache2/mod_logio.so": 1, + "libexec/apache2/mod_env.so": 1, + "libexec/apache2/mod_mime_magic.so": 1, + "libexec/apache2/mod_cern_meta.so": 1, + "libexec/apache2/mod_expires.so": 1, + "libexec/apache2/mod_headers.so": 1, + "libexec/apache2/mod_ident.so": 1, + "libexec/apache2/mod_usertrack.so": 1, + "#LoadModule": 4, + "libexec/apache2/mod_unique_id.so": 1, + "libexec/apache2/mod_setenvif.so": 1, + "libexec/apache2/mod_version.so": 1, + "libexec/apache2/mod_proxy.so": 1, + "libexec/apache2/mod_proxy_connect.so": 1, + "libexec/apache2/mod_proxy_ftp.so": 1, + "libexec/apache2/mod_proxy_http.so": 1, + "proxy_scgi_module": 1, + "libexec/apache2/mod_proxy_scgi.so": 1, + "libexec/apache2/mod_proxy_ajp.so": 1, + "libexec/apache2/mod_proxy_balancer.so": 1, + "libexec/apache2/mod_ssl.so": 1, + "libexec/apache2/mod_mime.so": 1, + "libexec/apache2/mod_dav.so": 1, + "libexec/apache2/mod_status.so": 1, + "libexec/apache2/mod_autoindex.so": 1, + "libexec/apache2/mod_asis.so": 1, + "libexec/apache2/mod_info.so": 1, + "libexec/apache2/mod_cgi.so": 1, + "libexec/apache2/mod_dav_fs.so": 1, + "libexec/apache2/mod_vhost_alias.so": 1, + "libexec/apache2/mod_negotiation.so": 1, + "libexec/apache2/mod_dir.so": 1, + "libexec/apache2/mod_imagemap.so": 1, + "libexec/apache2/mod_actions.so": 1, + "libexec/apache2/mod_speling.so": 1, + "libexec/apache2/mod_userdir.so": 1, + "libexec/apache2/mod_alias.so": 1, + "libexec/apache2/mod_rewrite.so": 1, + "perl_module": 1, + "libexec/apache2/mod_perl.so": 1, + "php5_module": 1, + "libexec/apache2/libphp5.so": 1, + "hfs_apple_module": 1, + "libexec/apache2/mod_hfs_apple.so": 1, + "mpm_winnt_module": 1, + "_www": 2, + "Library": 2, + "WebServer": 2, + "Documents": 1, + "MultiViews": 1, + "Hh": 1, + "Tt": 1, + "Dd": 1, + "Ss": 2, + "_": 1, + "": 1, + "rsrc": 1, + "": 1, + "": 1, + "namedfork": 1, + "": 1, + "ScriptAliasMatch": 1, + "i": 1, + "webobjects": 1, + "/private/var/run/cgisock": 1, + "CGI": 1, + "Executables": 1, + "/private/etc/apache2/mime.types": 1, + "/private/etc/apache2/magic": 1, + "#MaxRanges": 1, + "unlimited": 1, + "TraceEnable": 1, + "Include": 6, + "/private/etc/apache2/extra/httpd": 11, + "/private/etc/apache2/other/*.conf": 1 }, "Apex": { - "//Polish": 1, - "Object": 23, - "comparator": 14, - "pluck": 1, - "acct.billingstate": 1, - "emailSubject": 10, - "toBoolean": 2, - ".get": 4, - "merged": 6, - "1": 2, - "Double": 1, - "system.assert": 1, - "pageRef": 3, - "theList": 72, - "StringUtils.defaultString": 4, - "insert": 1, - "Id": 1, - "array2.size": 2, - "sendEmail": 4, - "/": 4, - "anArray.size": 2, - "translatedLanguageNames.containsKey": 1, - "MissingTwilioConfigCustomSettingsException": 2, - "//Converts": 1, - "comparator.compare": 12, - "accountAddressString": 2, - "sid": 1, - "address": 1, - "filterLanguageCode": 4, - ".AuthToken__c": 1, - "-": 18, - "||": 12, - "LANGUAGES_FROM_BROWSER_AS_LIST": 3, - "toStringYesNo": 1, - "Test.isRunningTest": 1, - "as": 1, - "SORTING": 1, - "boolArray.size": 1, - "getLangCodeByHttpParamOrIfNullThenUser": 1, - ".getSid": 2, - "str.trim": 3, - "+": 75, - "FORCE.COM": 1, - "TwilioRestClient": 5, - "twilioCfg.AuthToken__c": 3, - "LANGUAGES_FROM_BROWSER_AS_STRING": 2, - "see": 2, - "SObject": 19, - "list2.size": 2, - "str.toLowerCase": 1, - ")": 481, - "getLangCodeByHttpParam": 4, - "isNotTrue": 1, - "OBJECTS": 1, - "node": 1, - "boolArray": 4, - "langCodes": 2, - "PageReference": 2, - "private": 10, - "sObj": 4, - "StringUtils.substring": 1, - "//Swedish": 1, - "fieldName": 3, - "but": 2, - "}": 219, - "need": 1, - "isNotValidEmailAddress": 1, - "": 29, - "textBody": 2, - "size": 2, - "array1.size": 4, - "//Korean": 1, - "sendTextEmail": 1, - "getLangCodeByUser": 3, - ".length": 2, - "defaultVal": 2, - "GeoUtils": 1, - "{": 219, - "FROM": 1, - "LANGUAGE_CODE_SET": 1, - "List": 71, - "mail.setHtmlBody": 1, - "getSuppLangCodeSet": 2, - "merged.add": 2, - "getAllLanguages": 3, - "aList": 4, - "useHTML": 6, - "isNotFalse": 1, - "conversion": 1, - "exception": 1, - "actual.size": 2, - "static": 83, - "objects": 3, - "generateFromContent": 1, - "array2": 9, - "str.toUpperCase": 1, - "void": 9, - "Map": 33, - "objects.size": 1, - "content": 1, - "ArrayUtils.toString": 12, - "SELECT": 1, - "fileAttachments.add": 1, - "getLanguageName": 1, - "attachment.Body": 1, - "splitAndFilterAcceptLanguageHeader": 2, - "//German": 1, - "ISObjectComparator": 3, - "lo0": 6, - "plucked": 3, - "Page.kmlPreviewTemplate": 1, - "UserInfo.getLanguage": 1, - "EMPTY_STRING_ARRAY": 1, - "TwilioAccount": 1, - "token.indexOf": 1, - "geo_response": 1, - ".toString": 1, - "LanguageUtils": 1, - "strs": 9, - "token.contains": 1, - "String": 60, - "else": 25, - "list1.size": 6, - "//dash": 1, - "account": 2, - "StringUtils.length": 1, - "isValidEmailAddress": 2, - "KML": 1, - "cleanup": 1, - "test_TwilioAPI": 1, - "IN": 1, - "isNotEmpty": 4, - "toInteger": 1, - "WHERE": 1, - "split.size": 2, - "email": 1, - "firstItem": 2, - "then": 1, - "objectArray": 17, - "mail.setPlainTextBody": 1, - "expected": 16, - "get": 4, - "&&": 46, - "//": 11, - "strings": 3, - "returnValue.add": 3, - "fileAttachment.setBody": 1, - "while": 8, - "acct": 1, - "createClient": 1, - "final": 6, - "//check": 2, - "negate": 1, - "sendEmailWithStandardAttachments": 3, - "attachment.Name": 1, - "chars": 1, - "getContent": 1, - "//Dutch": 1, - "list2": 9, - "generate": 1, - "token": 7, - "//Japanese": 1, - "tmp": 6, - "//Throws": 1, - "tokens": 3, - "i": 55, - "//Portuguese": 1, - "<": 32, - "LANGUAGES_FROM_BROWSER_AS_LIST.size": 1, - "LANGUAGE_HTTP_PARAMETER": 7, - "": 1, - "SUPPORTED_LANGUAGE_CODES": 2, - "TwilioConfig__c": 5, - "getLangCodeByBrowserOrIfNullThenUser": 1, - "Messaging.sendEmail": 1, - "header": 2, - "ID": 1, - "toString": 3, - "ret": 7, - "Brazilian": 1, - "e": 2, - "may": 1, - "fileAttachments.size": 1, - "getDefaultClient": 2, - "extends": 1, - "getLangCodeByBrowserOrIfNullThenHttpParam": 1, - "system.debug": 2, - "for": 24, - "trueValue": 2, - "fileAttachments": 5, - "langCode": 3, - "these": 2, - "HTTP_LANGUAGE_CODE_PARAMETER_KEY": 2, - "billingcountry": 1, - "value": 10, - "falseValue": 2, - "PRIMITIVES": 1, - "trim": 1, - "fileAttachment.setFileName": 1, - "hi": 50, - "a": 6, - "acct.billingcountry": 2, - "": 30, - "assertArraysAreEqual": 2, + "global": 70, + "class": 7, "ArrayUtils": 1, - "htmlBody": 2, - "name": 2, - "Simplified": 1, - "Account": 2, - "returnValue": 22, - "mail": 2, - "not": 3, - "Attachment": 2, - "stdAttachments": 4, - "call": 1, - "createCapability": 1, - "mail.setBccSender": 1, - "isTrue": 1, - "]": 102, - "body": 8, - "in": 1, - "attachment": 1, - "DEFAULT_LANGUAGE_CODE": 3, - "startIndex": 9, - "//Hungarian": 1, - "//French": 1, - "fieldName.trim": 2, - "merg": 2, - "": 22, + "{": 219, + "static": 83, + "String": 60, "[": 102, + "]": 102, + "EMPTY_STRING_ARRAY": 1, + "new": 60, + "}": 219, + ";": 308, + "Integer": 34, + "MAX_NUMBER_OF_ELEMENTS_IN_LIST": 5, + "get": 4, + "return": 106, + "List": 71, + "": 30, + "objectToString": 1, + "(": 481, + "": 22, + "objects": 3, + ")": 481, + "strings": 3, + "null": 92, + "if": 91, + "objects.size": 1, + "for": 24, + "Object": 23, + "obj": 3, + "instanceof": 1, + "strings.add": 1, + "reverse": 2, + "anArray": 14, + "i": 55, + "j": 10, + "anArray.size": 2, + "-": 18, + "tmp": 6, + "while": 8, + "+": 75, + "SObject": 19, + "lowerCase": 1, + "strs": 9, + "returnValue": 22, + "strs.size": 3, + "str": 10, + "returnValue.add": 3, + "str.toLowerCase": 1, + "upperCase": 1, + "str.toUpperCase": 1, + "trim": 1, + "str.trim": 3, + "mergex": 2, + "array1": 8, + "array2": 9, + "merged": 6, + "array1.size": 4, + "array2.size": 2, + "<": 32, + "": 19, + "sObj": 4, + "merged.add": 2, "Boolean": 38, "isEmpty": 7, - "dummy": 2, - "t1": 1, - "hi0": 8, - "recipients": 11, - "line": 1, - "Exception": 1, - "qsort": 18, - "one": 2, - "ApexPages.currentPage": 4, - ".split": 1, - "": 19, - "//Indonesian": 1, - "MAX_NUMBER_OF_ELEMENTS_IN_LIST": 5, - "ALL": 1, - "billingpostalcode": 1, - "//English": 1, - "translatedLanguageNames.get": 2, - "<=>": 2, - "displayLanguageCode": 13, - "@isTest": 1, - ".getAccountSid": 1, - "instanceof": 1, - "xor": 1, - "return": 106, - "Set": 6, - "mail.setUseSignature": 1, - "if": 91, - "saved": 1, - "(": 481, - "page": 1, - "langCodes.add": 1, - ".getAccount": 2, - "//Turkish": 1, - "activity.": 1, - "an": 4, - "id": 1, - "specifying": 1, - "output.": 1, - "//underscore": 1, - "reference": 1, - "must": 1, - "twilioCfg.AccountSid__c": 3, - "client": 2, - "split": 5, - "//the": 2, - "adr": 9, - "mail.setToAddresses": 1, - "DEFAULTS": 1, - "string": 7, - "getLangCodeByBrowser": 4, - "since": 1, - "authToken": 2, - "anArray": 14, - "Messaging.EmailFileAttachment": 2, - "lowerCase": 1, - "catch": 1, - "//Returns": 1, - "//Danish": 1, - "Integer": 34, - "also": 1, - "PrimitiveComparator": 2, - "pr.getContent": 1, - "recipients.size": 1, - "GeoUtils.generateFromContent": 1, - "TwilioAPI.getTwilioConfig": 2, - "str": 10, - "languageCode": 2, - "array1": 8, - "form": 1, - "//Italian": 1, - "//FOR": 2, - "sortAsc": 24, - "quote": 1, - "//Russian": 1, - "obj": 3, - "TwilioAPI": 2, - ".getParameters": 2, - "languageFromBrowser": 6, - "global": 70, - "adr.replaceAll": 4, - "system.assertEquals": 1, - "token.substring": 1, - "attachmentIDs": 2, - "acct.billingstreet": 1, - "other": 2, - "mail.setSaveAsActivity": 1, - "toStringYN": 1, - "sObjects": 1, - "": 3, - "str.split": 1, - "etc.": 1, - "theList.size": 2, - "Messaging.SingleEmailMessage": 3, - "returnList.add": 8, - "class": 7, - "use": 1, - "boolean": 1, - "actual": 16, - "toBooleanDefaultIfNull": 1, - "DEFAULTS.get": 3, - "System.assertEquals": 5, - ".getHeaders": 1, - "getLangCodeByHttpParamOrIfNullThenBrowser": 1, - "we": 1, - "sendHTMLEmail": 1, - "mergex": 2, - "//Finnish": 1, - "falseString": 2, - "Traditional": 1, - "DEFAULTS.containsKey": 3, - "//Chinese": 2, - "isFalse": 1, - "System.assert": 6, - "pivot": 14, - "": 2, - "try": 1, - "objectToString": 1, - "param": 2, - "int": 1, - "bool": 32, - "//LIST/ARRAY": 1, - "to": 4, - "TwilioAPI.getDefaultAccount": 1, - "many": 1, - "BooleanUtils": 1, - "count": 10, - "lo": 42, - "StringUtils.replaceChars": 2, - ".AccountSid__c": 1, - "StringUtils.split": 1, - "prs": 8, - "new": 60, - "escape": 1, - "returnList": 11, - "SUPPORTED_LANGUAGE_CODES.contains": 2, - "twilioCfg": 7, - "pr": 1, - "strToBoolean": 1, - "j": 10, - "getDefaultAccount": 1, - "produces": 1, - "list1": 15, - "object": 1, - "reverse": 2, - "translatedLanguageNames": 1, - "TwilioCapability": 2, - "": 2, - "acct.billingcity": 1, - "mail.setFileAttachments": 1, - "StringUtils.isNotBlank": 1, + "objectArray": 17, "true": 12, - "subset": 6, - "IllegalArgumentException": 5, - "accountSid": 2, - "fileAttachment": 2, - "ObjectComparator": 3, - "testmethod": 1, - "ret.replaceAll": 4, - ";": 308, - "StringUtils.equalsIgnoreCase": 1, - "//Thai": 1, - "acct.billingpostalcode": 2, - "TwilioAPI.client": 2, - "billingcity": 1, - "expected.size": 4, - "billingstate": 1, - "throw": 6, - "public": 10, - "billingstreet": 1, - "elmt": 8, - "the": 4, - "//Czech": 1, - "values.": 1, - "StringUtils.lowerCase": 3, - "trueString": 2, - "given": 2, "objectArray.size": 6, - "upperCase": 1, - "//Spanish": 1, + "isNotEmpty": 4, + "pluck": 1, + "fieldName": 3, + "||": 12, + "fieldName.trim": 2, + ".length": 2, + "plucked": 3, + ".get": 4, + "toString": 3, + "void": 9, + "assertArraysAreEqual": 2, + "expected": 16, + "actual": 16, + "//check": 2, + "to": 4, + "see": 2, + "one": 2, + "param": 2, "is": 5, - "TwilioConfig__c.getOrgDefaults": 1, - "strings.add": 1, - "SALESFORCE": 1, - "getTwilioConfig": 3, - "list1.get": 2, - "strs.size": 3, - "TwilioAPI.getDefaultClient": 2, - "false": 13, - "EmailUtils": 1, - "null": 92, - "mail.setSubject": 1, - "Test.setCurrentPage": 1 - }, - "Standard ML": { - "then": 1, - "true": 1, - "ignore": 1, - "open": 1, - "delay": 3, - "type": 2, - "fun": 9, - "inject": 3, - "sig": 2, - "LazyFn": 2, - "undefined": 1, - "string": 1, - "y": 6, - "p": 4, - ";": 1, - "x": 15, - "B": 1, - "|": 1, - "f": 9, - "LazyBase": 2, - "b": 2, - "order": 2, - "compare": 2, - "*": 1, - "(": 22, - ")": 23, - "-": 13, - "a": 18, - "let": 1, - "LazyMemoBase": 2, - "force": 9, - "Undefined": 3, - "lazy": 12, - "Lazy": 1, - "if": 1, - "false": 1, - "LAZY_BASE": 3, - "unit": 1, - "Done": 1, - "fn": 3, - "exception": 1, - "toString": 2, - "LAZY": 1, - "signature": 2, - "handle": 1, - "datatype": 1, - "map": 2, - "bool": 4, - "isUndefined": 2, - "raise": 1, - "Ops": 2, - "eqBy": 3, - "else": 1, - "struct": 4, - "structure": 6, - "LazyMemo": 1, - "op": 1, - "of": 1, - "eq": 2, - "val": 12, - "end": 6 - }, - "Parrot Internal Representation": { - "main": 1, - ".sub": 1, - ".end": 1, - "say": 1, - "SHEBANG#!parrot": 1 - }, - "Less": { - "darken": 1, - "navigation": 1, - "@blue": 4, - ".content": 1, - "/": 2, - "padding": 1, - "}": 2, - ")": 1, - "%": 1, - "(": 1, - "{": 2, - "-": 3, - "@margin": 3, - ";": 7, - "#3bbfce": 1, - "px": 1, - "color": 3, - "margin": 1, - ".border": 1, - "border": 2 - }, - "NSIS": { - "Pop": 1, - "defined": 1, - "CheckBitmap": 1, - "components": 1, - ")": 5, - "Group2": 1, - "a": 2, - "MyTestVar": 1, - "fun": 1, - "extracts": 2, - "If": 1, - "InstType": 6, - "xyz_cc_does_not_exist": 1, - "bt": 1, - "SW_SHOWMINIMIZED": 1, - "WriteRegDword": 3, - "Nop": 1, - "Microsoft": 1, - "MyProject": 1, - "of": 3, - "NOCOMPRESS": 1, - "info": 1, - "TextInSection": 1, - "give": 1, - "removed": 1, - "x64": 1, - "INIDelSuccess": 2, - "would": 1, - "Test": 2, - "DeleteINIStr": 1, - "show": 1, - "InstallColors": 1, - "DeleteINISec": 1, - "Windows": 3, - "so": 1, - "recursively": 1, - "installations": 1, - "fun.": 1, - "i.s": 1, - "example2.": 1, - "simple": 1, - "_a": 1, - "StrCpy": 2, - "A": 1, - "*i.s": 1, - "to": 6, - "StrCmp": 1, - "myfunc": 1, - "CRCCheck": 1, - "BigNSISTest": 8, - "checks": 1, - "Software": 1, - "tmp.dat": 1, - "CreateShortCut": 2, - "MB_OK": 8, - "+": 2, - "installer": 1, - "LogicLib.nsh": 1, - "define": 4, - "if": 4, - "Hit": 1, - "Shift": 1, - "Big": 1, - "SilentInstall": 1, - "macro": 3, - "WriteRegBin": 1, - "NSISTest": 7, - "_LOGICLIB_TEMP": 3, - "SysWOW64": 1, - "enables": 1, - "redirection.": 2, - "NoErrorMsg": 1, - "_b": 1, - "___X64__NSH___": 3, - "This": 2, - "x64.nsh": 1, - "MyFunctionTest": 1, - "File": 3, - "ifndef": 2, - "macros": 1, - "DisableX64FSRedirection": 4, - "xdeadbeef": 1, - "some.dll": 2, - "endif": 4, - "OutFile": 1, - "you": 1, - "MessageBox": 11, - "IDNO": 1, - "functionality": 1, - "WriteRegStr": 4, - "LogicLib.nsi": 1, - "CONTROL": 1, - "/a": 1, - "GetCurrentProcess": 1, - "System": 4, - "NSISDIR": 1, - "MySectionIni": 1, - "Goto": 1, - "UninstPage": 2, - "HKCR": 1, - "system": 2, - "IDYES": 2, - "InstallDirRegKey": 1, - "*.*": 2, - "and": 1, - "admin": 1, - "C": 2, - "icon": 1, - "BiG": 1, - "BGGradient": 1, - "XPStyle": 1, - "IsWow64Process": 1, - "next": 1, - "SOFTWARE": 7, - "{": 8, - "i0": 1, - "HAVE_UPX": 1, - "CurrentVersion": 1, - "-": 205, - "few": 1, - "is": 2, - "Icon": 1, - "directory": 3, - "most": 1, - "SetCompress": 1, - "RunningX64": 4, - "machines.": 1, - "AutoCloseWindow": 1, - "Start": 2, - "uninstall": 2, - "Ctrl": 1, - "SectionEnd": 5, - "Section": 5, - "FF8080": 1, - "ifdef": 2, - "NoOverwrite": 1, - "|": 3, - "i1": 1, - "silent.nsi": 1, - "it": 3, - "Name": 1, - "#": 3, - "handle": 1, - "empty": 1, - "BranchTest69": 1, - "not": 2, - "test": 1, - "Note": 1, - "test.ini": 2, - "for": 2, - "DetailPrint": 1, - "will": 1, - "MyLabel": 2, - "}": 8, - "Caption": 1, - "SHIFT": 1, - "kernel32": 4, - "include": 1, - "IfErrors": 1, - "start": 1, - "false": 1, - "license": 1, - "packhdr": 1, - "uninst.exe": 1, - "CreateDirectory": 1, - "minimized": 1, - "macroend": 3, - "bigtest.nsi": 1, + "but": 2, "the": 4, - "ReadINIStr": 1, - "SectionIn": 4, - "Call": 6, - "NOINSTTYPES": 1, - "IfFileExists": 1, - "Q": 2, + "other": 2, + "not": 3, + "System.assert": 6, + "&&": 46, + "ArrayUtils.toString": 12, + "expected.size": 4, + "actual.size": 2, + "merg": 2, + "list1": 15, + "list2": 9, + "returnList": 11, + "list1.size": 6, + "list2.size": 2, + "throw": 6, + "IllegalArgumentException": 5, + "elmt": 8, + "returnList.add": 8, + "subset": 6, + "aList": 4, + "count": 10, + "startIndex": 9, + "<=>": 2, + "size": 2, + "1": 2, + "list1.get": 2, + "//": 11, + "//LIST/ARRAY": 1, + "SORTING": 1, + "//FOR": 2, + "FORCE.COM": 1, + "PRIMITIVES": 1, + "Double": 1, + "ID": 1, + "etc.": 1, + "qsort": 18, + "theList": 72, + "PrimitiveComparator": 2, + "sortAsc": 24, + "ObjectComparator": 3, + "comparator": 14, + "theList.size": 2, + "SALESFORCE": 1, + "OBJECTS": 1, + "sObjects": 1, + "ISObjectComparator": 3, + "private": 10, + "lo0": 6, + "hi0": 8, + "lo": 42, + "hi": 50, + "else": 25, + "comparator.compare": 12, + "prs": 8, + "pivot": 14, + "/": 4, + "BooleanUtils": 1, + "isFalse": 1, + "bool": 32, + "false": 13, + "isNotFalse": 1, + "isNotTrue": 1, + "isTrue": 1, + "negate": 1, + "toBooleanDefaultIfNull": 1, + "defaultVal": 2, + "toBoolean": 2, + "value": 10, + "strToBoolean": 1, + "StringUtils.equalsIgnoreCase": 1, + "//Converts": 1, + "an": 4, + "int": 1, + "a": 6, + "boolean": 1, + "specifying": 1, + "//the": 2, + "conversion": 1, + "values.": 1, + "//Returns": 1, + "//Throws": 1, + "trueValue": 2, + "falseValue": 2, + "toInteger": 1, + "toStringYesNo": 1, + "toStringYN": 1, + "trueString": 2, + "falseString": 2, + "xor": 1, + "boolArray": 4, + "boolArray.size": 1, + "firstItem": 2, + "EmailUtils": 1, + "sendEmailWithStandardAttachments": 3, + "recipients": 11, + "emailSubject": 10, + "body": 8, + "useHTML": 6, + "": 1, + "attachmentIDs": 2, + "": 2, + "stdAttachments": 4, + "SELECT": 1, + "id": 1, + "name": 2, + "FROM": 1, + "Attachment": 2, + "WHERE": 1, + "Id": 1, + "IN": 1, + "": 3, + "fileAttachments": 5, + "attachment": 1, + "Messaging.EmailFileAttachment": 2, + "fileAttachment": 2, + "fileAttachment.setFileName": 1, + "attachment.Name": 1, + "fileAttachment.setBody": 1, + "attachment.Body": 1, + "fileAttachments.add": 1, + "sendEmail": 4, + "sendTextEmail": 1, + "textBody": 2, + "sendHTMLEmail": 1, + "htmlBody": 2, + "recipients.size": 1, + "Messaging.SingleEmailMessage": 3, + "mail": 2, + "email": 1, + "saved": 1, + "as": 1, + "activity.": 1, + "mail.setSaveAsActivity": 1, + "mail.setToAddresses": 1, + "mail.setSubject": 1, + "mail.setBccSender": 1, + "mail.setUseSignature": 1, + "mail.setHtmlBody": 1, + "mail.setPlainTextBody": 1, + "fileAttachments.size": 1, + "mail.setFileAttachments": 1, + "Messaging.sendEmail": 1, + "isValidEmailAddress": 2, + "split": 5, + "str.split": 1, + "split.size": 2, + ".split": 1, + "isNotValidEmailAddress": 1, + "public": 10, + "GeoUtils": 1, + "generate": 1, + "KML": 1, + "string": 7, + "given": 2, + "page": 1, + "reference": 1, + "call": 1, + "getContent": 1, + "then": 1, + "cleanup": 1, + "output.": 1, + "generateFromContent": 1, + "PageReference": 2, + "pr": 1, + "ret": 7, + "try": 1, + "pr.getContent": 1, + ".toString": 1, + "ret.replaceAll": 4, + "content": 1, + "produces": 1, + "quote": 1, + "chars": 1, + "we": 1, + "need": 1, + "escape": 1, + "these": 2, + "in": 1, + "node": 1, + "catch": 1, + "exception": 1, + "e": 2, + "system.debug": 2, + "must": 1, + "use": 1, + "ALL": 1, + "since": 1, + "many": 1, + "line": 1, + "may": 1, + "also": 1, + "Map": 33, + "": 2, + "geo_response": 1, + "accountAddressString": 2, + "account": 2, + "acct": 1, + "form": 1, + "address": 1, + "object": 1, + "adr": 9, + "acct.billingstreet": 1, + "acct.billingcity": 1, + "acct.billingstate": 1, + "acct.billingpostalcode": 2, + "acct.billingcountry": 2, + "adr.replaceAll": 4, + "testmethod": 1, + "t1": 1, + "pageRef": 3, + "Page.kmlPreviewTemplate": 1, + "Test.setCurrentPage": 1, + "system.assert": 1, + "GeoUtils.generateFromContent": 1, + "Account": 2, + "billingstreet": 1, + "billingcity": 1, + "billingstate": 1, + "billingpostalcode": 1, + "billingcountry": 1, + "insert": 1, + "system.assertEquals": 1, + "LanguageUtils": 1, + "final": 6, + "HTTP_LANGUAGE_CODE_PARAMETER_KEY": 2, + "DEFAULT_LANGUAGE_CODE": 3, + "Set": 6, + "SUPPORTED_LANGUAGE_CODES": 2, + "//Chinese": 2, + "Simplified": 1, + "Traditional": 1, + "//Dutch": 1, + "//English": 1, + "//Finnish": 1, + "//French": 1, + "//German": 1, + "//Italian": 1, + "//Japanese": 1, + "//Korean": 1, + "//Polish": 1, + "//Portuguese": 1, + "Brazilian": 1, + "//Russian": 1, + "//Spanish": 1, + "//Swedish": 1, + "//Thai": 1, + "//Czech": 1, + "//Danish": 1, + "//Hungarian": 1, + "//Indonesian": 1, + "//Turkish": 1, + "": 29, + "DEFAULTS": 1, + "getLangCodeByHttpParam": 4, + "LANGUAGE_CODE_SET": 1, + "getSuppLangCodeSet": 2, + "ApexPages.currentPage": 4, + ".getParameters": 2, + "LANGUAGE_HTTP_PARAMETER": 7, + "StringUtils.lowerCase": 3, + "StringUtils.replaceChars": 2, + "//underscore": 1, + "//dash": 1, + "DEFAULTS.containsKey": 3, + "DEFAULTS.get": 3, + "StringUtils.isNotBlank": 1, + "SUPPORTED_LANGUAGE_CODES.contains": 2, + "getLangCodeByBrowser": 4, + "LANGUAGES_FROM_BROWSER_AS_STRING": 2, + ".getHeaders": 1, + "LANGUAGES_FROM_BROWSER_AS_LIST": 3, + "splitAndFilterAcceptLanguageHeader": 2, + "LANGUAGES_FROM_BROWSER_AS_LIST.size": 1, + "languageFromBrowser": 6, + "getLangCodeByUser": 3, + "UserInfo.getLanguage": 1, + "getLangCodeByHttpParamOrIfNullThenBrowser": 1, + "StringUtils.defaultString": 4, + "getLangCodeByHttpParamOrIfNullThenUser": 1, + "getLangCodeByBrowserOrIfNullThenHttpParam": 1, + "getLangCodeByBrowserOrIfNullThenUser": 1, + "header": 2, + "tokens": 3, + "StringUtils.split": 1, + "token": 7, + "token.contains": 1, + "token.substring": 1, + "token.indexOf": 1, + "StringUtils.length": 1, + "StringUtils.substring": 1, + "langCodes": 2, + "langCode": 3, + "langCodes.add": 1, + "getLanguageName": 1, + "displayLanguageCode": 13, + "languageCode": 2, + "translatedLanguageNames.get": 2, + "filterLanguageCode": 4, + "getAllLanguages": 3, + "translatedLanguageNames.containsKey": 1, + "translatedLanguageNames": 1, + "TwilioAPI": 2, + "MissingTwilioConfigCustomSettingsException": 2, + "extends": 1, + "Exception": 1, + "TwilioRestClient": 5, + "client": 2, + "getDefaultClient": 2, + "TwilioConfig__c": 5, + "twilioCfg": 7, + "getTwilioConfig": 3, + "TwilioAPI.client": 2, + "twilioCfg.AccountSid__c": 3, + "twilioCfg.AuthToken__c": 3, + "TwilioAccount": 1, + "getDefaultAccount": 1, + ".getAccount": 2, + "TwilioCapability": 2, + "createCapability": 1, + "createClient": 1, + "accountSid": 2, + "authToken": 2, + "Test.isRunningTest": 1, + "dummy": 2, + "sid": 1, + "TwilioConfig__c.getOrgDefaults": 1, + "@isTest": 1, + "test_TwilioAPI": 1, + "System.assertEquals": 5, + "TwilioAPI.getTwilioConfig": 2, + ".AccountSid__c": 1, + ".AuthToken__c": 1, + "TwilioAPI.getDefaultClient": 2, + ".getAccountSid": 1, + ".getSid": 2, + "TwilioAPI.getDefaultAccount": 1 + }, + "AppleScript": { + "set": 108, + "windowWidth": 3, + "to": 128, + "windowHeight": 3, + "delay": 3, + "AppleScript": 2, + "s": 3, + "text": 13, + "item": 13, + "delimiters": 1, + "tell": 40, + "application": 16, + "screen_width": 2, + "(": 89, + "do": 4, + "JavaScript": 2, + "in": 13, + "document": 2, + ")": 88, + "screen_height": 2, + "end": 67, + "myFrontMost": 3, + "name": 8, + "of": 72, + "first": 1, + "processes": 2, + "whose": 1, + "frontmost": 1, + "is": 40, + "true": 8, + "{": 32, + "desktopTop": 2, + "desktopLeft": 1, + "desktopRight": 1, + "desktopBottom": 1, + "}": 32, + "bounds": 2, + "desktop": 1, + "try": 10, + "process": 5, + "w": 5, + "h": 4, + "size": 5, + "drawer": 2, + "window": 5, + "on": 18, + "error": 3, + "position": 1, + "-": 57, + "/": 2, + "property": 7, + "type_list": 6, + "extension_list": 6, + "html": 2, + "not": 5, + "currently": 2, + "handled": 2, + "run": 4, + "FinderSelection": 4, + "the": 56, + "selection": 2, + "as": 27, + "alias": 8, + "list": 9, + "FS": 10, + "Ideally": 2, + "this": 2, + "could": 2, + "be": 2, + "passed": 2, + "open": 8, + "handler": 2, + "SelectionCount": 6, + "number": 6, + "count": 10, + "if": 50, + "then": 28, + "userPicksFolder": 6, + "else": 14, + "MyPath": 4, + "path": 6, + "me": 2, + "If": 2, + "I": 2, + "m": 2, + "a": 4, + "double": 2, + "clicked": 2, + "droplet": 2, + "these_items": 18, + "choose": 2, + "file": 6, + "with": 11, + "prompt": 2, + "type": 6, + "thesefiles": 2, + "item_info": 24, + "repeat": 19, + "i": 10, + "from": 9, + "this_item": 14, + "info": 4, + "for": 5, + "folder": 10, + "processFolder": 8, + "false": 9, + "and": 7, + "or": 6, + "extension": 4, + "theFilePath": 8, + "string": 17, + "thePOSIXFilePath": 8, + "POSIX": 4, + "processFile": 8, + "folders": 2, + "theFolder": 6, + "without": 2, + "invisibles": 2, + "&": 63, + "thePOSIXFileName": 6, + "terminalCommand": 6, + "convertCommand": 4, + "newFileName": 4, + "shell": 2, + "script": 2, + "need": 1, + "pass": 1, + "URL": 1, + "Terminal": 1, + "localMailboxes": 3, + "every": 3, + "mailbox": 2, + "greater": 5, + "than": 6, + "messageCountDisplay": 5, + "return": 16, + "my": 3, + "getMessageCountsForMailboxes": 4, + "everyAccount": 2, + "account": 1, + "eachAccount": 3, + "accountMailboxes": 3, + "outputMessage": 2, + "make": 3, + "new": 2, + "outgoing": 2, + "message": 2, + "properties": 2, + "content": 2, + "subject": 1, + "visible": 2, + "font": 2, + "theMailboxes": 2, + "mailboxes": 1, + "returns": 2, + "displayString": 4, + "eachMailbox": 4, + "mailboxName": 2, + "messageCount": 2, + "messages": 1, + "unreadCount": 2, + "unread": 1, + "padString": 3, + "theString": 4, + "fieldLength": 5, + "integer": 3, + "stringLength": 4, + "length": 1, + "paddedString": 5, + "character": 2, + "less": 1, + "equal": 3, + "paddingLength": 2, + "times": 1, + "space": 1, + "lowFontSize": 9, + "highFontSize": 6, + "messageText": 4, + "userInput": 4, + "display": 4, + "dialog": 4, + "default": 4, + "answer": 3, + "buttons": 3, + "button": 4, + "returned": 5, + "minimumFontSize": 4, + "newFontSize": 6, + "result": 2, + "theText": 3, + "exit": 1, + "fontList": 2, + "activate": 3, + "crazyTextMessage": 2, + "eachCharacter": 4, + "characters": 1, + "some": 1, + "random": 4, + "color": 1, + "current": 3, + "pane": 4, + "UI": 1, + "elements": 1, + "enabled": 2, + "tab": 1, + "group": 1, + "click": 1, + "radio": 1, + "get": 1, + "value": 1, + "field": 1, + "isVoiceOverRunning": 3, + "isRunning": 3, + "contains": 1, + "isVoiceOverRunningWithAppleScript": 3, + "isRunningWithAppleScript": 3, + "VoiceOver": 1, + "x": 1, + "vo": 1, + "cursor": 1, + "currentDate": 3, + "date": 1, + "amPM": 4, + "currentHour": 9, + "minutes": 2, + "<": 2, + "below": 1, + "sound": 1, + "nice": 1, + "currentMinutes": 4, + "ensure": 1, + "nn": 2, + "gets": 1, + "AM": 1, + "readjust": 1, + "hour": 1, + "time": 1, + "currentTime": 3, + "day": 1, + "output": 1, + "say": 1 + }, + "Arduino": { + "void": 2, + "setup": 1, + "(": 4, + ")": 4, + "{": 2, + "Serial.begin": 1, + ";": 2, + "}": 2, + "loop": 1, + "Serial.print": 1 + }, + "AsciiDoc": { + "Gregory": 2, + "Rom": 2, + "has": 2, + "written": 2, + "an": 2, + "AsciiDoc": 3, + "plugin": 2, + "for": 2, + "the": 2, + "Redmine": 2, + "project": 2, + "management": 2, + "application.": 2, + "https": 1, + "//github.com/foo": 1, + "-": 4, + "users/foo": 1, + "vicmd": 1, + "gif": 1, + "tag": 1, + "rom": 2, + "[": 2, + "]": 2, + "end": 1, + "berschrift": 1, + "*": 4, + "Codierungen": 1, + "sind": 1, + "verr": 1, + "ckt": 1, + "auf": 1, + "lteren": 1, + "Versionen": 1, + "von": 1, + "Ruby": 1, + "Home": 1, + "Page": 1, + "Example": 1, + "Articles": 1, + "Item": 6, + "Document": 1, + "Title": 1, + "Doc": 1, + "Writer": 1, + "": 1, + "idprefix": 1, + "id_": 1, + "Preamble": 1, + "paragraph.": 4, + "NOTE": 1, + "This": 1, + "is": 1, + "test": 1, "only": 1, - "insertmacro": 2, - "_f": 2, - "cpdest": 3, - "exist": 1, - "SetDateSave": 1, - "Graphics": 1, - "disables": 1, - "like": 1, - "LicenseText": 1, - ";": 39, - "reg": 1, + "a": 1, + "test.": 1, + "Section": 3, + "A": 2, + "*Section": 3, + "A*": 2, + "Subsection": 1, + "B": 2, + "B*": 1, + ".Section": 1, + "list": 1 + }, + "AutoHotkey": { + "MsgBox": 1, + "Hello": 1, + "World": 1 + }, + "Awk": { + "SHEBANG#!awk": 1, + "BEGIN": 1, + "{": 17, + "n": 13, + ";": 55, + "printf": 1, + "network_max_bandwidth_in_byte": 3, + "network_max_packet_per_second": 3, + "last3": 3, + "last4": 3, + "last5": 3, + "last6": 3, + "}": 17, + "if": 14, + "(": 14, + "/Average/": 1, + ")": 14, + "#": 48, + "Skip": 1, + "the": 12, + "Average": 1, + "values": 1, + "next": 1, + "/all/": 1, + "This": 8, + "is": 7, + "cpu": 1, + "info": 7, + "print": 35, + "FILENAME": 35, + "-": 2, + "/eth0/": 1, + "eth0": 1, + "network": 1, + "Total": 9, + "number": 9, + "of": 22, + "packets": 4, + "received": 4, + "per": 14, + "second.": 8, + "else": 4, + "transmitted": 4, + "bytes": 4, + "/proc": 1, + "|": 4, + "cswch": 1, + "tps": 1, + "kbmemfree": 1, + "totsck/": 1, + "/": 2, + "[": 1, + "]": 1, + "proc/s": 1, + "context": 1, + "switches": 1, + "second": 6, + "disk": 1, + "total": 1, + "transfers": 1, + "read": 1, + "requests": 2, + "write": 1, + "block": 2, + "reads": 1, + "writes": 1, + "mem": 1, + "Amount": 7, + "free": 2, + "memory": 6, + "available": 1, + "in": 11, + "kilobytes.": 7, + "used": 8, + "does": 1, + "not": 1, + "take": 1, + "into": 1, + "account": 1, + "by": 4, + "kernel": 3, + "itself.": 1, + "Percentage": 2, + "memory.": 1, + "X": 1, + "shared": 1, + "system": 1, + "Always": 1, + "zero": 1, "with": 1, - "s": 1, - "EnableX64FSRedirection": 4, - "ClearErrors": 1, - "InstallDir": 1, - "/e": 1, - "WriteUninstaller": 1, - "off": 1, - "starting": 1, - "LicenseData": 1, - "EndIf": 1, - "could": 1, - "be": 1, - "SectionGroup1": 1, - "MB_YESNO": 3, - "instfiles": 2, - "Would": 1, - "t": 1, - "file": 4, - "Contrib": 1, - "skipped": 2, - "ErrorYay": 2, - "normal": 1, + "kernels.": 1, + "as": 1, + "buffers": 1, + "to": 1, + "cache": 1, + "data": 1, + "swap": 3, + "space": 2, + "space.": 1, + "socket": 1, + "sockets.": 1, + "Number": 4, + "TCP": 1, + "sockets": 3, + "currently": 4, + "use.": 4, + "UDP": 1, + "RAW": 1, + "IP": 1, + "fragments": 1, + "END": 1 + }, + "C": { + "#include": 149, + "const": 357, + "char": 529, + "*blob_type": 2, + ";": 5439, + "struct": 359, + "blob": 6, + "*lookup_blob": 2, + "(": 6213, + "unsigned": 140, + "*sha1": 16, + ")": 6215, + "{": 1528, + "object": 10, + "*obj": 9, + "lookup_object": 2, + "sha1": 20, + "if": 1015, + "obj": 48, + "return": 529, + "create_object": 2, + "OBJ_BLOB": 3, + "alloc_blob_node": 1, + "-": 1803, + "type": 36, + "error": 96, + "sha1_to_hex": 8, + "typename": 2, + "NULL": 330, + "}": 1544, + "*": 253, + "int": 446, + "parse_blob_buffer": 2, + "*item": 10, + "void": 279, + "*buffer": 6, + "long": 105, + "size": 120, + "item": 24, + "object.parsed": 4, + "#ifndef": 84, + "BLOB_H": 2, + "#define": 911, + "extern": 37, + "#endif": 236, + "git_cache_init": 1, + "git_cache": 4, + "*cache": 4, + "size_t": 52, + "git_cached_obj_freeptr": 1, + "free_ptr": 2, + "<": 219, + "git__size_t_powerof2": 1, + "cache": 26, + "size_mask": 6, + "lru_count": 1, + "free_obj": 4, + "git_mutex_init": 1, + "&": 442, + "lock": 6, + "nodes": 10, + "git__malloc": 3, + "sizeof": 71, + "git_cached_obj": 5, + "GITERR_CHECK_ALLOC": 3, + "memset": 4, + "git_cache_free": 1, + "i": 410, + "for": 88, + "+": 551, + "[": 597, + "]": 597, + "git_cached_obj_decref": 3, + "git__free": 15, + "*git_cache_get": 1, + "git_oid": 7, + "*oid": 2, + "uint32_t": 144, + "hash": 12, + "*node": 2, + "*result": 1, + "memcpy": 34, + "oid": 17, + "id": 13, + "git_mutex_lock": 2, + "node": 9, + "&&": 248, + "git_oid_cmp": 6, + "git_cached_obj_incref": 3, + "result": 48, + "git_mutex_unlock": 2, + "*git_cache_try_store": 1, + "*_entry": 1, + "*entry": 2, + "_entry": 1, + "entry": 17, + "else": 190, + "save_commit_buffer": 3, + "*commit_type": 2, + "static": 454, + "commit": 59, + "*check_commit": 1, + "quiet": 5, + "OBJ_COMMIT": 5, + "*lookup_commit_reference_gently": 2, + "deref_tag": 1, + "parse_object": 1, + "check_commit": 2, + "*lookup_commit_reference": 2, + "lookup_commit_reference_gently": 1, + "*lookup_commit_or_die": 2, + "*ref_name": 2, + "*c": 69, + "lookup_commit_reference": 2, + "c": 252, + "die": 5, + "_": 3, + "ref_name": 2, + "hashcmp": 2, + "object.sha1": 8, + "warning": 1, + "*lookup_commit": 2, + "alloc_commit_node": 1, + "*lookup_commit_reference_by_name": 2, + "*name": 12, + "*commit": 10, + "get_sha1": 1, + "name": 28, + "||": 141, + "parse_commit": 3, + "parse_commit_date": 2, + "*buf": 10, + "*tail": 2, + "*dateptr": 1, + "buf": 57, + "tail": 12, + "memcmp": 6, + "while": 70, + "dateptr": 2, + "strtoul": 2, + "commit_graft": 13, + "**commit_graft": 1, + "commit_graft_alloc": 4, + "commit_graft_nr": 5, + "commit_graft_pos": 2, + "lo": 6, + "hi": 5, + "mi": 5, + "/": 9, + "*graft": 3, + "cmp": 9, + "graft": 10, + "register_commit_graft": 2, + "ignore_dups": 2, + "pos": 7, + "free": 62, + "alloc_nr": 1, + "xrealloc": 2, + "parse_commit_buffer": 3, + "buffer": 10, + "*bufptr": 1, + "parent": 7, + "commit_list": 35, + "**pptr": 1, + "<=>": 16, + "bufptr": 12, + "46": 1, + "tree": 3, + "5": 1, + "45": 1, + "n": 70, + "bogus": 1, + "s": 154, + "get_sha1_hex": 2, + "lookup_tree": 1, + "pptr": 5, + "parents": 4, + "lookup_commit_graft": 1, + "*new_parent": 2, + "48": 1, + "7": 1, + "47": 1, + "bad": 1, + "in": 11, + "nr_parent": 3, + "grafts_replace_parents": 1, + "continue": 20, + "new_parent": 6, + "lookup_commit": 2, + "commit_list_insert": 2, + "next": 8, + "date": 5, + "enum": 29, + "object_type": 1, + "ret": 142, + "read_sha1_file": 1, + "find_commit_subject": 2, + "*commit_buffer": 2, + "**subject": 2, + "*eol": 1, + "*p": 9, + "commit_buffer": 1, + "a": 80, + "b_date": 3, + "b": 66, + "a_date": 2, + "*commit_list_get_next": 1, + "*a": 9, + "commit_list_set_next": 1, + "*next": 6, + "commit_list_sort_by_date": 2, + "**list": 5, + "*list": 2, + "llist_mergesort": 1, + "peel_to_type": 1, + "util": 3, + "merge_remote_desc": 3, + "*desc": 1, + "desc": 5, + "xmalloc": 2, + "strdup": 1, + "**commit_list_append": 2, + "**next": 2, + "*new": 1, + "new": 4, + "COMMIT_H": 2, + "*util": 1, + "indegree": 1, + "*parents": 4, + "*tree": 3, + "decoration": 1, + "name_decoration": 3, + "*commit_list_insert": 1, + "commit_list_count": 1, + "*l": 1, + "*commit_list_insert_by_date": 1, + "free_commit_list": 1, + "cmit_fmt": 3, + "CMIT_FMT_RAW": 1, + "CMIT_FMT_MEDIUM": 2, + "CMIT_FMT_DEFAULT": 1, + "CMIT_FMT_SHORT": 1, + "CMIT_FMT_FULL": 1, + "CMIT_FMT_FULLER": 1, + "CMIT_FMT_ONELINE": 1, + "CMIT_FMT_EMAIL": 1, + "CMIT_FMT_USERFORMAT": 1, + "CMIT_FMT_UNSPECIFIED": 1, + "pretty_print_context": 6, + "fmt": 4, + "abbrev": 1, + "*subject": 1, + "*after_subject": 1, + "preserve_subject": 1, + "date_mode": 2, + "date_mode_explicit": 1, + "need_8bit_cte": 2, + "show_notes": 1, + "reflog_walk_info": 1, + "*reflog_info": 1, + "*output_encoding": 2, + "userformat_want": 2, + "notes": 1, + "has_non_ascii": 1, + "*text": 1, + "rev_info": 2, + "*logmsg_reencode": 1, + "*reencode_commit_message": 1, + "**encoding_p": 1, + "get_commit_format": 1, + "*arg": 1, + "*format_subject": 1, + "strbuf": 12, + "*sb": 7, + "*msg": 6, + "*line_separator": 1, + "userformat_find_requirements": 1, + "*fmt": 2, + "*w": 2, + "format_commit_message": 1, + "*format": 2, + "*context": 1, + "pretty_print_commit": 1, + "*pp": 4, + "pp_commit_easy": 1, + "pp_user_info": 1, + "*what": 1, + "*line": 1, + "*encoding": 2, + "pp_title_line": 1, + "**msg_p": 2, + "pp_remainder": 1, + "indent": 1, + "*pop_most_recent_commit": 1, + "mark": 3, + "*pop_commit": 1, + "**stack": 1, + "clear_commit_marks": 1, + "clear_commit_marks_for_object_array": 1, + "object_array": 2, + "sort_in_topological_order": 1, + "**": 6, + "list": 1, + "lifo": 1, + "FLEX_ARRAY": 1, + "typedef": 189, + "*read_graft_line": 1, + "len": 30, + "*lookup_commit_graft": 1, + "*get_merge_bases": 1, + "*rev1": 1, + "*rev2": 1, + "cleanup": 12, + "*get_merge_bases_many": 1, + "*one": 1, + "**twos": 1, + "*get_octopus_merge_bases": 1, + "*in": 1, + "register_shallow": 1, + "unregister_shallow": 1, + "for_each_commit_graft": 1, + "each_commit_graft_fn": 1, + "is_repository_shallow": 1, + "*get_shallow_commits": 1, + "*heads": 2, + "depth": 2, + "shallow_flag": 1, + "not_shallow_flag": 1, + "is_descendant_of": 1, + "in_merge_bases": 1, + "interactive_add": 1, + "argc": 26, + "**argv": 6, + "*prefix": 7, + "patch": 1, + "run_add_interactive": 1, + "*revision": 1, + "*patch_mode": 1, + "**pathspec": 1, + "inline": 3, + "single_parent": 1, + "*reduce_heads": 1, + "commit_extra_header": 7, + "*key": 5, + "*value": 5, + "append_merge_tag_headers": 1, + "***tail": 1, + "commit_tree": 1, + "*ret": 20, + "*author": 2, + "*sign_commit": 2, + "commit_tree_extended": 1, + "*read_commit_extra_headers": 1, + "*read_commit_extra_header_lines": 1, + "free_commit_extra_headers": 1, + "*extra": 1, + "merge_remote_util": 1, + "*get_merge_parent": 1, + "parse_signed_commit": 1, + "*message": 1, + "*signature": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "#ifdef": 64, + "CONFIG_SMP": 1, + "DEFINE_MUTEX": 1, + "cpu_add_remove_lock": 3, + "cpu_maps_update_begin": 9, + "mutex_lock": 5, + "cpu_maps_update_done": 9, + "mutex_unlock": 6, + "RAW_NOTIFIER_HEAD": 1, + "cpu_chain": 4, + "cpu_hotplug_disabled": 7, + "CONFIG_HOTPLUG_CPU": 2, + "task_struct": 5, + "*active_writer": 1, + "mutex": 1, + "refcount": 2, + "cpu_hotplug": 1, + ".active_writer": 1, + ".lock": 1, + "__MUTEX_INITIALIZER": 1, + "cpu_hotplug.lock": 8, + ".refcount": 1, + "get_online_cpus": 2, + "might_sleep": 1, + "cpu_hotplug.active_writer": 6, + "current": 5, + "cpu_hotplug.refcount": 3, + "EXPORT_SYMBOL_GPL": 4, + "put_online_cpus": 2, + "unlikely": 54, + "wake_up_process": 1, + "cpu_hotplug_begin": 4, + "likely": 22, + "break": 244, + "__set_current_state": 1, + "TASK_UNINTERRUPTIBLE": 1, + "schedule": 1, + "cpu_hotplug_done": 4, + "#else": 94, + "__ref": 6, + "register_cpu_notifier": 2, + "notifier_block": 3, + "*nb": 3, + "raw_notifier_chain_register": 1, + "nb": 2, + "__cpu_notify": 6, + "val": 20, + "*v": 3, + "nr_to_call": 2, + "*nr_calls": 1, + "__raw_notifier_call_chain": 1, + "v": 11, + "nr_calls": 9, + "notifier_to_errno": 1, + "cpu_notify": 5, + "cpu_notify_nofail": 4, + "BUG_ON": 4, + "EXPORT_SYMBOL": 8, + "unregister_cpu_notifier": 2, + "raw_notifier_chain_unregister": 1, + "clear_tasks_mm_cpumask": 1, + "cpu": 57, + "WARN_ON": 1, + "cpu_online": 5, + "rcu_read_lock": 1, + "for_each_process": 2, + "p": 60, + "*t": 2, + "t": 32, + "find_lock_task_mm": 1, + "cpumask_clear_cpu": 5, + "mm_cpumask": 1, + "mm": 1, + "task_unlock": 1, + "rcu_read_unlock": 1, + "check_for_tasks": 2, + "write_lock_irq": 1, + "tasklist_lock": 2, + "task_cpu": 1, + "state": 104, + "TASK_RUNNING": 1, + "utime": 1, + "stime": 1, + "printk": 12, + "KERN_WARNING": 3, + "comm": 1, + "task_pid_nr": 1, + "flags": 89, + "write_unlock_irq": 1, + "take_cpu_down_param": 3, + "mod": 13, + "*hcpu": 3, + "take_cpu_down": 2, + "*_param": 1, + "*param": 1, + "_param": 1, + "err": 38, + "__cpu_disable": 1, + "CPU_DYING": 1, + "|": 132, + "param": 2, + "hcpu": 10, + "_cpu_down": 3, + "tasks_frozen": 4, + "CPU_TASKS_FROZEN": 2, + "tcd_param": 2, + ".mod": 1, + ".hcpu": 1, + "num_online_cpus": 2, + "EBUSY": 3, + "EINVAL": 6, + "CPU_DOWN_PREPARE": 1, + "CPU_DOWN_FAILED": 2, + "__func__": 2, + "goto": 159, + "out_release": 3, + "__stop_machine": 1, + "cpumask_of": 1, + "idle_cpu": 1, + "cpu_relax": 1, + "__cpu_die": 1, + "CPU_DEAD": 1, + "CPU_POST_DEAD": 1, + "cpu_down": 2, + "out": 18, + "__cpuinit": 3, + "_cpu_up": 3, + "*idle": 1, + "cpu_present": 1, + "idle": 4, + "idle_thread_get": 1, + "IS_ERR": 1, + "PTR_ERR": 1, + "CPU_UP_PREPARE": 1, + "out_notify": 3, + "__cpu_up": 1, + "CPU_ONLINE": 1, + "CPU_UP_CANCELED": 1, + "cpu_up": 2, + "CONFIG_MEMORY_HOTPLUG": 2, + "nid": 5, + "pg_data_t": 1, + "*pgdat": 1, + "cpu_possible": 1, + "KERN_ERR": 5, + "#if": 92, + "defined": 42, + "CONFIG_IA64": 1, + "cpu_to_node": 1, + "node_online": 1, + "mem_online_node": 1, + "pgdat": 3, + "NODE_DATA": 1, + "ENOMEM": 4, + "node_zonelists": 1, + "_zonerefs": 1, + "zone": 1, + "zonelists_mutex": 2, + "build_all_zonelists": 1, + "CONFIG_PM_SLEEP_SMP": 2, + "cpumask_var_t": 1, + "frozen_cpus": 9, + "__weak": 4, + "arch_disable_nonboot_cpus_begin": 2, + "arch_disable_nonboot_cpus_end": 2, + "disable_nonboot_cpus": 1, + "first_cpu": 3, + "cpumask_first": 1, + "cpu_online_mask": 3, + "cpumask_clear": 2, + "for_each_online_cpu": 1, + "cpumask_set_cpu": 5, + "arch_enable_nonboot_cpus_begin": 2, + "arch_enable_nonboot_cpus_end": 2, + "enable_nonboot_cpus": 1, + "cpumask_empty": 1, + "KERN_INFO": 2, + "for_each_cpu": 1, + "__init": 2, + "alloc_frozen_cpus": 2, + "alloc_cpumask_var": 1, + "GFP_KERNEL": 1, + "__GFP_ZERO": 1, + "core_initcall": 2, + "cpu_hotplug_disable_before_freeze": 2, + "cpu_hotplug_enable_after_thaw": 2, + "cpu_hotplug_pm_callback": 2, + "action": 2, + "*ptr": 1, + "switch": 46, + "case": 273, + "PM_SUSPEND_PREPARE": 1, + "PM_HIBERNATION_PREPARE": 1, + "PM_POST_SUSPEND": 1, + "PM_POST_HIBERNATION": 1, + "default": 33, + "NOTIFY_DONE": 1, + "NOTIFY_OK": 1, + "cpu_hotplug_pm_sync_init": 2, + "pm_notifier": 1, + "notify_cpu_starting": 1, + "CPU_STARTING": 1, + "cpumask_test_cpu": 1, + "CPU_STARTING_FROZEN": 1, + "MASK_DECLARE_1": 3, + "x": 57, + "UL": 1, + "<<": 56, + "MASK_DECLARE_2": 3, + "MASK_DECLARE_4": 3, + "MASK_DECLARE_8": 9, + "cpu_bit_bitmap": 2, + "BITS_PER_LONG": 2, + "BITS_TO_LONGS": 1, + "NR_CPUS": 2, + "DECLARE_BITMAP": 6, + "cpu_all_bits": 2, + "CPU_BITS_ALL": 2, + "CONFIG_INIT_ALL_POSSIBLE": 1, + "cpu_possible_bits": 6, + "CONFIG_NR_CPUS": 5, + "__read_mostly": 5, + "cpumask": 7, + "*const": 4, + "cpu_possible_mask": 2, + "to_cpumask": 15, + "cpu_online_bits": 5, + "cpu_present_bits": 5, + "cpu_present_mask": 2, + "cpu_active_bits": 4, + "cpu_active_mask": 2, + "set_cpu_possible": 1, + "bool": 6, + "possible": 2, + "set_cpu_present": 1, + "present": 2, + "set_cpu_online": 1, + "online": 2, + "set_cpu_active": 1, + "active": 2, + "init_cpu_present": 1, + "*src": 3, + "cpumask_copy": 3, + "src": 16, + "init_cpu_possible": 1, + "init_cpu_online": 1, + "*diff_prefix_from_pathspec": 1, + "git_strarray": 2, + "*pathspec": 2, + "git_buf": 3, + "prefix": 34, + "GIT_BUF_INIT": 3, + "*scan": 2, + "git_buf_common_prefix": 1, + "pathspec": 15, + "scan": 4, + "prefix.ptr": 2, + "git__iswildcard": 1, + "git_buf_truncate": 1, + "prefix.size": 1, + "git_buf_detach": 1, + "git_buf_free": 4, + "diff_pathspec_is_interesting": 2, + "*str": 1, + "count": 17, + "false": 77, + "true": 73, + "str": 162, + "strings": 5, + "diff_path_matches_pathspec": 3, + "git_diff_list": 17, + "*diff": 8, + "*path": 2, + "git_attr_fnmatch": 4, + "*match": 3, + "diff": 93, + "pathspec.length": 1, + "git_vector_foreach": 4, + "match": 16, + "p_fnmatch": 1, + "pattern": 3, + "path": 20, + "FNM_NOMATCH": 1, + "GIT_ATTR_FNMATCH_HASWILD": 1, + "strncmp": 1, + "length": 58, + "GIT_ATTR_FNMATCH_NEGATIVE": 1, + "git_diff_delta": 19, + "*diff_delta__alloc": 1, + "git_delta_t": 5, + "status": 57, + "*delta": 6, + "git__calloc": 3, + "delta": 54, + "old_file.path": 12, + "git_pool_strdup": 3, + "pool": 12, + "new_file.path": 6, + "opts.flags": 8, + "GIT_DIFF_REVERSE": 3, + "GIT_DELTA_ADDED": 4, + "GIT_DELTA_DELETED": 7, + "*diff_delta__dup": 1, + "*d": 1, + "git_pool": 4, + "*pool": 3, + "d": 16, + "fail": 19, + "*diff_delta__merge_like_cgit": 1, + "*b": 6, + "*dup": 1, + "diff_delta__dup": 3, + "dup": 15, + "new_file.oid": 7, + "git_oid_cpy": 5, + "new_file.mode": 4, + "new_file.size": 3, + "new_file.flags": 4, + "old_file.oid": 3, + "GIT_DELTA_UNTRACKED": 5, + "GIT_DELTA_IGNORED": 5, + "GIT_DELTA_UNMODIFIED": 11, + "diff_delta__from_one": 5, + "git_index_entry": 8, + "GIT_DIFF_INCLUDE_IGNORED": 1, + "GIT_DIFF_INCLUDE_UNTRACKED": 1, + "diff_delta__alloc": 2, + "assert": 41, + "GIT_DELTA_MODIFIED": 3, + "old_file.mode": 2, + "mode": 11, + "old_file.size": 1, + "file_size": 6, + "old_file.flags": 2, + "GIT_DIFF_FILE_VALID_OID": 4, + "git_vector_insert": 4, + "deltas": 8, + "diff_delta__from_two": 2, + "*old_entry": 1, + "*new_entry": 1, + "*new_oid": 1, + "GIT_DIFF_INCLUDE_UNMODIFIED": 1, + "*temp": 1, + "old_entry": 5, + "new_entry": 5, + "temp": 11, + "new_oid": 3, + "git_oid_iszero": 2, + "*diff_strdup_prefix": 1, + "strlen": 17, + "git_pool_strcat": 1, + "git_pool_strndup": 1, + "diff_delta__cmp": 3, + "*da": 1, + "*db": 3, + "strcmp": 20, + "da": 2, + "db": 10, + "config_bool": 5, + "git_config": 3, + "*cfg": 2, + "defvalue": 2, + "git_config_get_bool": 1, + "cfg": 6, + "giterr_clear": 1, + "*git_diff_list_alloc": 1, + "git_repository": 7, + "*repo": 7, + "git_diff_options": 7, + "*opts": 6, + "repo": 23, + "git_vector_init": 3, + "git_pool_init": 2, + "git_repository_config__weakptr": 1, + "diffcaps": 13, + "GIT_DIFFCAPS_HAS_SYMLINKS": 2, + "GIT_DIFFCAPS_ASSUME_UNCHANGED": 2, + "GIT_DIFFCAPS_TRUST_EXEC_BIT": 2, + "GIT_DIFFCAPS_TRUST_CTIME": 2, + "opts": 24, + "opts.pathspec": 2, + "opts.old_prefix": 4, + "diff_strdup_prefix": 2, + "old_prefix": 2, + "DIFF_OLD_PREFIX_DEFAULT": 1, + "opts.new_prefix": 4, + "new_prefix": 2, + "DIFF_NEW_PREFIX_DEFAULT": 1, + "*swap": 1, + "swap": 9, + "pathspec.count": 2, + "*pattern": 1, + "pathspec.strings": 1, + "GIT_ATTR_FNMATCH_ALLOWSPACE": 1, + "git_attr_fnmatch__parse": 1, + "GIT_ENOTFOUND": 1, + "git_diff_list_free": 3, + "deltas.contents": 1, + "git_vector_free": 3, + "pathspec.contents": 1, + "git_pool_clear": 2, + "oid_for_workdir_item": 2, + "full_path": 3, + "git_buf_joinpath": 1, + "git_repository_workdir": 1, + "S_ISLNK": 2, + "git_odb__hashlink": 1, + "full_path.ptr": 2, + "git__is_sizet": 1, + "giterr_set": 1, + "GITERR_OS": 1, + "fd": 34, + "git_futils_open_ro": 1, + "git_odb__hashfd": 1, + "GIT_OBJ_BLOB": 1, + "p_close": 1, + "EXEC_BIT_MASK": 3, + "maybe_modified": 2, + "git_iterator": 8, + "*old_iter": 2, + "*oitem": 2, + "*new_iter": 2, + "*nitem": 2, + "noid": 4, + "*use_noid": 1, + "omode": 8, + "oitem": 29, + "nmode": 10, + "nitem": 32, + "GIT_UNUSED": 1, + "old_iter": 8, + "S_ISREG": 1, + "GIT_MODE_TYPE": 3, + "GIT_MODE_PERMS_MASK": 1, + "flags_extended": 2, + "GIT_IDXENTRY_INTENT_TO_ADD": 1, + "GIT_IDXENTRY_SKIP_WORKTREE": 1, + "new_iter": 13, + "GIT_ITERATOR_WORKDIR": 2, + "ctime.seconds": 2, + "mtime.seconds": 2, + "GIT_DIFFCAPS_USE_DEV": 1, + "dev": 2, + "ino": 2, + "uid": 2, + "gid": 2, + "S_ISGITLINK": 1, + "git_submodule": 1, + "*sub": 1, + "GIT_DIFF_IGNORE_SUBMODULES": 1, + "git_submodule_lookup": 1, + "sub": 12, + "ignore": 1, + "GIT_SUBMODULE_IGNORE_ALL": 1, + "use_noid": 2, + "diff_from_iterators": 5, + "**diff_ptr": 1, + "ignore_prefix": 6, + "git_diff_list_alloc": 1, + "old_src": 1, + "new_src": 3, + "git_iterator_current": 2, + "git_iterator_advance": 5, + "delta_type": 8, + "git_buf_len": 1, + "git__prefixcmp": 2, + "git_buf_cstr": 1, + "S_ISDIR": 1, + "GIT_DIFF_RECURSE_UNTRACKED_DIRS": 1, + "git_iterator_current_is_ignored": 2, + "git_buf_sets": 1, + "git_iterator_advance_into_directory": 1, + "git_iterator_free": 4, + "*diff_ptr": 2, + "git_diff_tree_to_tree": 1, + "git_tree": 4, + "*old_tree": 3, + "*new_tree": 1, + "**diff": 4, + "diff_prefix_from_pathspec": 4, + "old_tree": 5, + "new_tree": 2, + "git_iterator_for_tree_range": 4, + "git_diff_index_to_tree": 1, + "git_iterator_for_index_range": 2, + "git_diff_workdir_to_index": 1, + "git_iterator_for_workdir_range": 2, + "git_diff_workdir_to_tree": 1, + "git_diff_merge": 1, + "*onto": 1, + "*from": 1, + "onto_pool": 7, + "git_vector": 1, + "onto_new": 6, + "j": 206, + "onto": 7, + "from": 16, + "deltas.length": 4, + "*o": 8, + "GIT_VECTOR_GET": 2, + "*f": 2, + "f": 184, + "o": 80, + "diff_delta__merge_like_cgit": 1, + "git_vector_swap": 1, + "git_pool_swap": 1, + "git_usage_string": 2, + "git_more_info_string": 2, + "N_": 1, + "startup_info": 3, + "git_startup_info": 2, + "use_pager": 8, + "pager_config": 3, + "*cmd": 5, + "want": 3, + "pager_command_config": 2, + "*var": 1, + "*data": 12, + "data": 69, + "prefixcmp": 3, + "var": 7, + "cmd": 46, + "git_config_maybe_bool": 1, + "value": 9, + "xstrdup": 2, + "check_pager_config": 3, + "c.cmd": 1, + "c.want": 2, + "c.value": 3, + "pager_program": 1, + "commit_pager_choice": 4, + "setenv": 1, + "setup_pager": 1, + "handle_options": 2, + "***argv": 2, + "*argc": 1, + "*envchanged": 1, + "**orig_argv": 1, + "*argv": 6, + "new_argv": 7, + "option_count": 1, + "alias_command": 4, + "trace_argv_printf": 3, + "*argcp": 4, + "subdir": 3, + "chdir": 2, + "die_errno": 3, + "errno": 20, + "saved_errno": 1, + "git_version_string": 1, + "GIT_VERSION": 1, + "RUN_SETUP": 81, + "RUN_SETUP_GENTLY": 16, + "USE_PAGER": 3, + "NEED_WORK_TREE": 18, + "cmd_struct": 4, + "option": 9, + "run_builtin": 2, + "help": 4, + "stat": 3, + "st": 2, + "argv": 54, + "setup_git_directory": 1, + "nongit_ok": 2, + "setup_git_directory_gently": 1, + "have_repository": 1, + "trace_repo_setup": 1, + "setup_work_tree": 1, + "fn": 5, + "fstat": 1, + "fileno": 1, + "stdout": 5, + "S_ISFIFO": 1, + "st.st_mode": 2, + "S_ISSOCK": 1, + "fflush": 2, + "ferror": 2, + "fclose": 5, + "handle_internal_command": 3, + "commands": 3, + "cmd_add": 2, + "cmd_annotate": 1, + "cmd_apply": 1, + "cmd_archive": 1, + "cmd_bisect__helper": 1, + "cmd_blame": 2, + "cmd_branch": 1, + "cmd_bundle": 1, + "cmd_cat_file": 1, + "cmd_check_attr": 1, + "cmd_check_ref_format": 1, + "cmd_checkout": 1, + "cmd_checkout_index": 1, + "cmd_cherry": 1, + "cmd_cherry_pick": 1, + "cmd_clean": 1, + "cmd_clone": 1, + "cmd_column": 1, + "cmd_commit": 1, + "cmd_commit_tree": 1, + "cmd_config": 1, + "cmd_count_objects": 1, + "cmd_describe": 1, + "cmd_diff": 1, + "cmd_diff_files": 1, + "cmd_diff_index": 1, + "cmd_diff_tree": 1, + "cmd_fast_export": 1, + "cmd_fetch": 1, + "cmd_fetch_pack": 1, + "cmd_fmt_merge_msg": 1, + "cmd_for_each_ref": 1, + "cmd_format_patch": 1, + "cmd_fsck": 2, + "cmd_gc": 1, + "cmd_get_tar_commit_id": 1, + "cmd_grep": 1, + "cmd_hash_object": 1, + "cmd_help": 1, + "cmd_index_pack": 1, + "cmd_init_db": 2, + "cmd_log": 1, + "cmd_ls_files": 1, + "cmd_ls_remote": 2, + "cmd_ls_tree": 1, + "cmd_mailinfo": 1, + "cmd_mailsplit": 1, + "cmd_merge": 1, + "cmd_merge_base": 1, + "cmd_merge_file": 1, + "cmd_merge_index": 1, + "cmd_merge_ours": 1, + "cmd_merge_recursive": 4, + "cmd_merge_tree": 1, + "cmd_mktag": 1, + "cmd_mktree": 1, + "cmd_mv": 1, + "cmd_name_rev": 1, + "cmd_notes": 1, + "cmd_pack_objects": 1, + "cmd_pack_redundant": 1, + "cmd_pack_refs": 1, + "cmd_patch_id": 1, + "cmd_prune": 1, + "cmd_prune_packed": 1, + "cmd_push": 1, + "cmd_read_tree": 1, + "cmd_receive_pack": 1, + "cmd_reflog": 1, + "cmd_remote": 1, + "cmd_remote_ext": 1, + "cmd_remote_fd": 1, + "cmd_replace": 1, + "cmd_repo_config": 1, + "cmd_rerere": 1, + "cmd_reset": 1, + "cmd_rev_list": 1, + "cmd_rev_parse": 1, + "cmd_revert": 1, + "cmd_rm": 1, + "cmd_send_pack": 1, + "cmd_shortlog": 1, + "cmd_show": 1, + "cmd_show_branch": 1, + "cmd_show_ref": 1, + "cmd_status": 1, + "cmd_stripspace": 1, + "cmd_symbolic_ref": 1, + "cmd_tag": 1, + "cmd_tar_tree": 1, + "cmd_unpack_file": 1, + "cmd_unpack_objects": 1, + "cmd_update_index": 1, + "cmd_update_ref": 1, + "cmd_update_server_info": 1, + "cmd_upload_archive": 1, + "cmd_upload_archive_writer": 1, + "cmd_var": 1, + "cmd_verify_pack": 1, + "cmd_verify_tag": 1, + "cmd_version": 1, + "cmd_whatchanged": 1, + "cmd_write_tree": 1, + "ext": 4, + "STRIP_EXTENSION": 1, + "*argv0": 1, + "argv0": 2, + "ARRAY_SIZE": 1, + "exit": 20, + "execv_dashed_external": 2, + "STRBUF_INIT": 1, + "*tmp": 1, + "strbuf_addf": 1, + "tmp": 6, + "cmd.buf": 1, + "run_command_v_opt": 1, + "RUN_SILENT_EXEC_FAILURE": 1, + "RUN_CLEAN_ON_EXIT": 1, + "ENOENT": 3, + "strbuf_release": 1, + "run_argv": 2, + "done_alias": 4, + "argcp": 2, + "handle_alias": 1, + "main": 3, + "git_extract_argv0_path": 1, + "git_setup_gettext": 1, + "printf": 4, + "list_common_cmds_help": 1, + "setup_path": 1, + "done_help": 3, + "was_alias": 3, + "fprintf": 18, + "stderr": 15, + "help_unknown_cmd": 1, + "strerror": 4, + "PPC_SHA1": 1, + "git_hash_ctx": 7, + "SHA_CTX": 3, + "*git_hash_new_ctx": 1, + "*ctx": 5, + "ctx": 16, + "SHA1_Init": 4, + "git_hash_free_ctx": 1, + "git_hash_init": 1, + "git_hash_update": 1, + "SHA1_Update": 3, + "git_hash_final": 1, + "*out": 3, + "SHA1_Final": 3, + "git_hash_buf": 1, + "git_hash_vec": 1, + "git_buf_vec": 1, + "*vec": 1, + "vec": 2, + ".data": 1, + ".len": 3, + "": 7, + "HELLO_H": 2, + "hello": 1, + "": 5, + "": 2, + "": 3, + "": 3, + "": 4, + "": 2, + "ULLONG_MAX": 10, + "MIN": 3, + "HTTP_PARSER_DEBUG": 4, + "SET_ERRNO": 47, + "e": 4, + "do": 21, + "parser": 334, + "http_errno": 11, + "error_lineno": 3, + "__LINE__": 50, + "CALLBACK_NOTIFY_": 3, + "FOR": 11, + "ER": 4, + "HTTP_PARSER_ERRNO": 10, + "HPE_OK": 10, + "settings": 6, + "on_##FOR": 4, + "HPE_CB_##FOR": 2, + "CALLBACK_NOTIFY": 10, + "CALLBACK_NOTIFY_NOADVANCE": 2, + "CALLBACK_DATA_": 4, + "LEN": 2, + "FOR##_mark": 7, + "CALLBACK_DATA": 10, + "CALLBACK_DATA_NOADVANCE": 6, + "MARK": 7, + "PROXY_CONNECTION": 4, + "CONNECTION": 4, + "CONTENT_LENGTH": 4, + "TRANSFER_ENCODING": 4, + "UPGRADE": 4, + "CHUNKED": 4, + "KEEP_ALIVE": 4, + "CLOSE": 4, + "*method_strings": 1, + "XX": 63, + "num": 24, + "string": 18, + "#string": 1, + "HTTP_METHOD_MAP": 3, + "#undef": 7, + "tokens": 5, + "int8_t": 3, + "unhex": 3, + "HTTP_PARSER_STRICT": 5, + "uint8_t": 6, + "normal_url_char": 3, + "T": 3, + "s_dead": 10, + "s_start_req_or_res": 4, + "s_res_or_resp_H": 3, + "s_start_res": 5, + "s_res_H": 3, + "s_res_HT": 4, + "s_res_HTT": 3, + "s_res_HTTP": 3, + "s_res_first_http_major": 3, + "s_res_http_major": 3, + "s_res_first_http_minor": 3, + "s_res_http_minor": 3, + "s_res_first_status_code": 3, + "s_res_status_code": 3, + "s_res_status": 3, + "s_res_line_almost_done": 4, + "s_start_req": 6, + "s_req_method": 4, + "s_req_spaces_before_url": 5, + "s_req_schema": 6, + "s_req_schema_slash": 6, + "s_req_schema_slash_slash": 6, + "s_req_host_start": 8, + "s_req_host_v6_start": 7, + "s_req_host_v6": 7, + "s_req_host_v6_end": 7, + "s_req_host": 8, + "s_req_port_start": 7, + "s_req_port": 6, + "s_req_path": 8, + "s_req_query_string_start": 8, + "s_req_query_string": 7, + "s_req_fragment_start": 7, + "s_req_fragment": 7, + "s_req_http_start": 3, + "s_req_http_H": 3, + "s_req_http_HT": 3, + "s_req_http_HTT": 3, + "s_req_http_HTTP": 3, + "s_req_first_http_major": 3, + "s_req_http_major": 3, + "s_req_first_http_minor": 3, + "s_req_http_minor": 3, + "s_req_line_almost_done": 4, + "s_header_field_start": 12, + "s_header_field": 4, + "s_header_value_start": 4, + "s_header_value": 5, + "s_header_value_lws": 3, + "s_header_almost_done": 6, + "s_chunk_size_start": 4, + "s_chunk_size": 3, + "s_chunk_parameters": 3, + "s_chunk_size_almost_done": 4, + "s_headers_almost_done": 4, + "s_headers_done": 4, + "s_chunk_data": 3, + "s_chunk_data_almost_done": 3, + "s_chunk_data_done": 3, + "s_body_identity": 3, + "s_body_identity_eof": 4, + "s_message_done": 3, + "PARSING_HEADER": 2, + "header_states": 1, + "h_general": 23, + "0": 11, + "h_C": 3, + "h_CO": 3, + "h_CON": 3, + "h_matching_connection": 3, + "h_matching_proxy_connection": 3, + "h_matching_content_length": 3, + "h_matching_transfer_encoding": 3, + "h_matching_upgrade": 3, + "h_connection": 6, + "h_content_length": 5, + "h_transfer_encoding": 5, + "h_upgrade": 4, + "h_matching_transfer_encoding_chunked": 3, + "h_matching_connection_keep_alive": 3, + "h_matching_connection_close": 3, + "h_transfer_encoding_chunked": 4, + "h_connection_keep_alive": 4, + "h_connection_close": 4, + "Macros": 1, + "character": 11, + "classes": 1, + "depends": 1, + "on": 4, + "strict": 2, + "define": 14, + "CR": 18, + "r": 58, + "LF": 21, + "LOWER": 7, + "0x20": 1, + "IS_ALPHA": 5, + "z": 47, + "IS_NUM": 14, + "9": 1, + "IS_ALPHANUM": 3, + "IS_HEX": 2, + "TOKEN": 4, + "IS_URL_CHAR": 6, + "IS_HOST_CHAR": 4, + "0x80": 1, + "endif": 6, + "start_state": 1, + "HTTP_REQUEST": 7, + "cond": 1, + "HPE_STRICT": 1, + "HTTP_STRERROR_GEN": 3, + "#n": 1, + "*description": 1, + "http_strerror_tab": 7, + "HTTP_ERRNO_MAP": 3, + "http_message_needs_eof": 4, + "http_parser": 13, + "*parser": 9, + "parse_url_char": 5, + "ch": 145, + "http_parser_execute": 2, + "http_parser_settings": 5, + "*settings": 2, + "unhex_val": 7, + "*header_field_mark": 1, + "*header_value_mark": 1, + "*url_mark": 1, + "*body_mark": 1, + "message_complete": 7, + "HPE_INVALID_EOF_STATE": 1, + "header_field_mark": 2, + "header_value_mark": 2, + "url_mark": 2, + "nread": 7, + "HTTP_MAX_HEADER_SIZE": 2, + "HPE_HEADER_OVERFLOW": 1, + "reexecute_byte": 7, + "HPE_CLOSED_CONNECTION": 1, + "content_length": 27, + "message_begin": 3, + "HTTP_RESPONSE": 3, + "HPE_INVALID_CONSTANT": 3, + "method": 39, + "HTTP_HEAD": 2, + "index": 58, + "STRICT_CHECK": 15, + "HPE_INVALID_VERSION": 12, + "http_major": 11, + "http_minor": 11, + "HPE_INVALID_STATUS": 3, + "status_code": 8, + "HPE_INVALID_METHOD": 4, + "http_method": 4, + "HTTP_CONNECT": 4, + "HTTP_DELETE": 1, + "HTTP_GET": 1, + "HTTP_LOCK": 1, + "HTTP_MKCOL": 2, + "HTTP_NOTIFY": 1, + "HTTP_OPTIONS": 1, + "HTTP_POST": 2, + "HTTP_REPORT": 1, + "HTTP_SUBSCRIBE": 2, + "HTTP_TRACE": 1, + "HTTP_UNLOCK": 2, + "*matcher": 1, + "matcher": 3, + "method_strings": 2, + "HTTP_CHECKOUT": 1, + "HTTP_COPY": 1, + "HTTP_MOVE": 1, + "HTTP_MERGE": 1, + "HTTP_MSEARCH": 1, + "HTTP_MKACTIVITY": 1, + "HTTP_SEARCH": 1, + "HTTP_PROPFIND": 2, + "HTTP_PUT": 2, + "HTTP_PATCH": 1, + "HTTP_PURGE": 1, + "HTTP_UNSUBSCRIBE": 1, + "HTTP_PROPPATCH": 1, + "url": 4, + "HPE_INVALID_URL": 4, + "HPE_LF_EXPECTED": 1, + "HPE_INVALID_HEADER_TOKEN": 2, + "header_field": 5, + "header_state": 42, + "header_value": 6, + "F_UPGRADE": 3, + "HPE_INVALID_CONTENT_LENGTH": 4, + "uint64_t": 8, + "F_CONNECTION_KEEP_ALIVE": 3, + "F_CONNECTION_CLOSE": 3, + "F_CHUNKED": 11, + "F_TRAILING": 3, + "NEW_MESSAGE": 6, + "upgrade": 3, + "on_headers_complete": 3, + "F_SKIPBODY": 4, + "HPE_CB_headers_complete": 1, + "to_read": 6, + "body": 6, + "body_mark": 2, + "HPE_INVALID_CHUNK_SIZE": 2, + "HPE_INVALID_INTERNAL_STATE": 1, + "1": 2, + "HPE_UNKNOWN": 1, + "Does": 1, + "the": 91, + "need": 5, + "to": 37, + "see": 2, + "an": 2, + "EOF": 26, + "find": 1, + "end": 48, + "of": 44, + "message": 3, + "http_should_keep_alive": 2, + "http_method_str": 1, + "m": 8, + "http_parser_init": 2, + "http_parser_type": 3, + "http_errno_name": 1, + "/sizeof": 4, + ".name": 1, + "http_errno_description": 1, + ".description": 1, + "http_parser_parse_url": 2, + "buflen": 3, + "is_connect": 4, + "http_parser_url": 3, + "*u": 2, + "http_parser_url_fields": 2, + "uf": 14, + "old_uf": 4, + "u": 18, + "port": 7, + "field_set": 5, + "UF_MAX": 3, + "UF_SCHEMA": 2, + "UF_HOST": 3, + "UF_PORT": 5, + "UF_PATH": 2, + "UF_QUERY": 2, + "UF_FRAGMENT": 2, + "field_data": 5, + ".off": 2, + "xffff": 1, + "uint16_t": 12, + "http_parser_pause": 2, + "paused": 3, + "HPE_PAUSED": 2, + "http_parser_h": 2, + "__cplusplus": 18, + "HTTP_PARSER_VERSION_MAJOR": 1, + "HTTP_PARSER_VERSION_MINOR": 1, + "": 2, + "_WIN32": 3, + "__MINGW32__": 1, + "_MSC_VER": 5, + "__int8": 2, + "__int16": 2, + "int16_t": 1, + "__int32": 2, + "int32_t": 112, + "__int64": 3, + "int64_t": 2, + "ssize_t": 1, + "": 1, + "*1024": 4, + "DELETE": 2, + "GET": 2, + "HEAD": 2, + "POST": 2, + "PUT": 2, + "CONNECT": 2, + "OPTIONS": 2, + "TRACE": 2, + "COPY": 2, + "LOCK": 2, + "MKCOL": 2, + "MOVE": 2, + "PROPFIND": 2, + "PROPPATCH": 2, + "SEARCH": 3, + "UNLOCK": 2, + "REPORT": 2, + "MKACTIVITY": 2, + "CHECKOUT": 2, + "MERGE": 2, + "MSEARCH": 1, + "M": 1, + "NOTIFY": 2, + "SUBSCRIBE": 2, + "UNSUBSCRIBE": 2, + "PATCH": 2, + "PURGE": 2, + "HTTP_##name": 1, + "HTTP_BOTH": 1, + "OK": 1, + "CB_message_begin": 1, + "CB_url": 1, + "CB_header_field": 1, + "CB_header_value": 1, + "CB_headers_complete": 1, + "CB_body": 1, + "CB_message_complete": 1, + "INVALID_EOF_STATE": 1, + "HEADER_OVERFLOW": 1, + "CLOSED_CONNECTION": 1, + "INVALID_VERSION": 1, + "INVALID_STATUS": 1, + "INVALID_METHOD": 1, + "INVALID_URL": 1, + "INVALID_HOST": 1, + "INVALID_PORT": 1, + "INVALID_PATH": 1, + "INVALID_QUERY_STRING": 1, + "INVALID_FRAGMENT": 1, + "LF_EXPECTED": 1, + "INVALID_HEADER_TOKEN": 1, + "INVALID_CONTENT_LENGTH": 1, + "INVALID_CHUNK_SIZE": 1, + "INVALID_CONSTANT": 1, + "INVALID_INTERNAL_STATE": 1, + "STRICT": 1, + "PAUSED": 1, + "UNKNOWN": 1, + "HTTP_ERRNO_GEN": 3, + "HPE_##n": 1, + "HTTP_PARSER_ERRNO_LINE": 2, + "short": 6, + "http_cb": 3, + "on_message_begin": 1, + "http_data_cb": 4, + "on_url": 1, + "on_header_field": 1, + "on_header_value": 1, + "on_body": 1, + "on_message_complete": 1, + "off": 8, + "*http_method_str": 1, + "*http_errno_name": 1, + "*http_errno_description": 1, + "strncasecmp": 2, + "_strnicmp": 1, + "REF_TABLE_SIZE": 1, + "BUFFER_BLOCK": 5, + "BUFFER_SPAN": 9, + "MKD_LI_END": 1, + "gperf_case_strncmp": 1, + "s1": 6, + "s2": 6, + "GPERF_DOWNCASE": 1, + "GPERF_CASE_STRNCMP": 1, + "link_ref": 2, + "*link": 1, + "*title": 1, + "sd_markdown": 6, + "tag": 1, + "tag_len": 3, + "w": 6, + "is_empty": 4, + "htmlblock_end": 3, + "*curtag": 2, + "*rndr": 4, + "start_of_line": 2, + "tag_size": 3, + "curtag": 8, + "end_tag": 4, + "block_lines": 3, + "htmlblock_end_tag": 1, + "rndr": 25, + "parse_htmlblock": 1, + "*ob": 3, + "do_render": 4, + "tag_end": 7, + "work": 4, + "find_block_tag": 1, + "work.size": 5, + "cb.blockhtml": 6, + "ob": 14, + "opaque": 8, + "parse_table_row": 1, + "columns": 3, + "*col_data": 1, + "header_flag": 3, + "col": 9, + "*row_work": 1, + "cb.table_cell": 3, + "cb.table_row": 2, + "row_work": 4, + "rndr_newbuf": 2, + "cell_start": 5, + "cell_end": 6, + "*cell_work": 1, + "cell_work": 3, + "_isspace": 3, + "parse_inline": 1, + "col_data": 2, + "rndr_popbuf": 2, + "empty_cell": 2, + "parse_table_header": 1, + "*columns": 2, + "**column_data": 1, + "pipes": 23, + "header_end": 7, + "under_end": 1, + "*column_data": 1, + "calloc": 1, + "beg": 10, + "doc_size": 6, + "document": 9, + "UTF8_BOM": 1, + "is_ref": 1, + "md": 18, + "refs": 2, + "expand_tabs": 1, + "text": 22, + "bufputc": 2, + "bufgrow": 1, + "MARKDOWN_GROW": 1, + "cb.doc_header": 2, + "parse_block": 1, + "cb.doc_footer": 2, + "bufrelease": 3, + "free_link_refs": 1, + "work_bufs": 8, + ".size": 2, + "sd_markdown_free": 1, + "*md": 1, + ".asize": 2, + ".item": 2, + "stack_free": 2, + "sd_version": 1, + "*ver_major": 2, + "*ver_minor": 2, + "*ver_revision": 2, + "SUNDOWN_VER_MAJOR": 1, + "SUNDOWN_VER_MINOR": 1, + "SUNDOWN_VER_REVISION": 1, + "": 4, + "": 2, + "": 1, + "": 1, + "": 2, + "__APPLE__": 2, + "TARGET_OS_IPHONE": 1, + "**environ": 1, + "uv__chld": 2, + "EV_P_": 1, + "ev_child*": 1, + "watcher": 4, + "revents": 2, + "rstatus": 1, + "exit_status": 3, + "term_signal": 3, + "uv_process_t": 1, + "*process": 1, + "process": 19, + "child_watcher": 5, + "EV_CHILD": 1, + "ev_child_stop": 2, + "EV_A_": 1, + "WIFEXITED": 1, + "WEXITSTATUS": 2, + "WIFSIGNALED": 2, + "WTERMSIG": 2, + "exit_cb": 3, + "uv__make_socketpair": 2, + "fds": 20, + "SOCK_NONBLOCK": 2, + "fl": 8, + "SOCK_CLOEXEC": 1, + "UV__F_NONBLOCK": 5, + "socketpair": 2, + "AF_UNIX": 2, + "SOCK_STREAM": 2, + "uv__cloexec": 4, + "uv__nonblock": 5, + "uv__make_pipe": 2, + "__linux__": 3, + "UV__O_CLOEXEC": 1, + "UV__O_NONBLOCK": 1, + "uv__pipe2": 1, + "ENOSYS": 1, + "pipe": 1, + "uv__process_init_stdio": 2, + "uv_stdio_container_t*": 4, + "container": 17, + "writable": 8, + "UV_IGNORE": 2, + "UV_CREATE_PIPE": 4, + "UV_INHERIT_FD": 3, + "UV_INHERIT_STREAM": 2, + "data.stream": 7, + "UV_NAMED_PIPE": 2, + "data.fd": 1, + "uv__process_stdio_flags": 2, + "uv_pipe_t*": 1, + "ipc": 1, + "UV_STREAM_READABLE": 2, + "UV_STREAM_WRITABLE": 2, + "uv__process_open_stream": 2, + "child_fd": 3, + "close": 13, + "uv__stream_open": 1, + "uv_stream_t*": 2, + "uv__process_close_stream": 2, + "uv__stream_close": 1, + "uv__process_child_init": 2, + "uv_process_options_t": 2, + "options": 62, + "stdio_count": 7, + "int*": 22, + "options.flags": 4, + "UV_PROCESS_DETACHED": 2, + "setsid": 2, + "close_fd": 2, + "use_fd": 7, + "open": 4, + "O_RDONLY": 1, + "O_RDWR": 2, + "perror": 5, + "_exit": 6, + "dup2": 4, + "options.cwd": 2, + "UV_PROCESS_SETGID": 2, + "setgid": 1, + "options.gid": 1, + "UV_PROCESS_SETUID": 2, + "setuid": 1, + "options.uid": 1, + "environ": 4, + "options.env": 1, + "execvp": 1, + "options.file": 2, + "options.args": 1, + "SPAWN_WAIT_EXEC": 5, + "uv_spawn": 1, + "uv_loop_t*": 1, + "loop": 9, + "uv_process_t*": 3, + "char**": 7, + "save_our_env": 3, + "options.stdio_count": 4, + "malloc": 3, + "signal_pipe": 7, + "pollfd": 1, + "pfd": 2, + "pid_t": 2, + "pid": 13, + "UV_PROCESS_WINDOWS_VERBATIM_ARGUMENTS": 1, + "uv__handle_init": 1, + "uv_handle_t*": 1, + "UV_PROCESS": 1, + "counters.process_init": 1, + "uv__handle_start": 1, + "options.exit_cb": 1, + "options.stdio": 3, + "fork": 2, + "pfd.fd": 1, + "pfd.events": 1, + "POLLIN": 1, + "POLLHUP": 1, + "pfd.revents": 1, + "poll": 1, + "EINTR": 1, + "ev_child_init": 1, + "ev_child_start": 1, + "ev": 2, + "child_watcher.data": 1, + "uv__set_sys_error": 2, + "uv_process_kill": 1, + "signum": 4, + "kill": 4, + "uv_err_t": 1, + "uv_kill": 1, + "uv__new_sys_error": 1, + "uv_ok_": 1, + "uv__process_close": 1, + "handle": 10, + "uv__handle_stop": 1, + "VALUE": 13, + "rb_cRDiscount": 4, + "rb_rdiscount_to_html": 2, + "self": 9, + "*res": 2, + "szres": 8, + "encoding": 14, + "rb_funcall": 14, + "rb_intern": 15, + "rb_str_buf_new": 2, + "Check_Type": 2, + "T_STRING": 2, + "rb_rdiscount__get_flags": 3, + "MMIOT": 2, + "*doc": 2, + "mkd_string": 2, + "RSTRING_PTR": 2, + "RSTRING_LEN": 2, + "mkd_compile": 2, + "doc": 6, + "mkd_document": 1, + "res": 4, + "rb_str_cat": 4, + "mkd_cleanup": 2, + "rb_respond_to": 1, + "rb_rdiscount_toc_content": 2, + "mkd_toc": 1, + "ruby_obj": 11, + "MKD_TABSTOP": 1, + "MKD_NOHEADER": 1, + "Qtrue": 10, + "MKD_NOPANTS": 1, + "MKD_NOHTML": 1, + "MKD_TOC": 1, + "MKD_NOIMAGE": 1, + "MKD_NOLINKS": 1, + "MKD_NOTABLES": 1, + "MKD_STRICT": 1, + "MKD_AUTOLINK": 1, + "MKD_SAFELINK": 1, + "MKD_NO_EXT": 1, + "Init_rdiscount": 1, + "rb_define_class": 1, + "rb_cObject": 1, + "rb_define_method": 2, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 2, + "": 1, + "": 1, + "": 3, + "": 1, + "sharedObjectsStruct": 1, + "shared": 1, + "double": 126, + "R_Zero": 2, + "R_PosInf": 2, + "R_NegInf": 2, + "R_Nan": 2, + "redisServer": 1, + "server": 1, + "redisCommand": 6, + "*commandTable": 1, + "redisCommandTable": 5, + "getCommand": 1, + "setCommand": 1, + "noPreloadGetKeys": 6, + "setnxCommand": 1, + "setexCommand": 1, + "psetexCommand": 1, + "appendCommand": 1, + "strlenCommand": 1, + "delCommand": 1, + "existsCommand": 1, + "setbitCommand": 1, + "getbitCommand": 1, + "setrangeCommand": 1, + "getrangeCommand": 2, + "incrCommand": 1, + "decrCommand": 1, + "mgetCommand": 1, + "rpushCommand": 1, + "lpushCommand": 1, + "rpushxCommand": 1, + "lpushxCommand": 1, + "linsertCommand": 1, + "rpopCommand": 1, + "lpopCommand": 1, + "brpopCommand": 1, + "brpoplpushCommand": 1, + "blpopCommand": 1, + "llenCommand": 1, + "lindexCommand": 1, + "lsetCommand": 1, + "lrangeCommand": 1, + "ltrimCommand": 1, + "lremCommand": 1, + "rpoplpushCommand": 1, + "saddCommand": 1, + "sremCommand": 1, + "smoveCommand": 1, + "sismemberCommand": 1, + "scardCommand": 1, + "spopCommand": 1, + "srandmemberCommand": 1, + "sinterCommand": 2, + "sinterstoreCommand": 1, + "sunionCommand": 1, + "sunionstoreCommand": 1, + "sdiffCommand": 1, + "sdiffstoreCommand": 1, + "zaddCommand": 1, + "zincrbyCommand": 1, + "zremCommand": 1, + "zremrangebyscoreCommand": 1, + "zremrangebyrankCommand": 1, + "zunionstoreCommand": 1, + "zunionInterGetKeys": 4, + "zinterstoreCommand": 1, + "zrangeCommand": 1, + "zrangebyscoreCommand": 1, + "zrevrangebyscoreCommand": 1, + "zcountCommand": 1, + "zrevrangeCommand": 1, + "zcardCommand": 1, + "zscoreCommand": 1, + "zrankCommand": 1, + "zrevrankCommand": 1, + "hsetCommand": 1, + "hsetnxCommand": 1, + "hgetCommand": 1, + "hmsetCommand": 1, + "hmgetCommand": 1, + "hincrbyCommand": 1, + "hincrbyfloatCommand": 1, + "hdelCommand": 1, + "hlenCommand": 1, + "hkeysCommand": 1, + "hvalsCommand": 1, + "hgetallCommand": 1, + "hexistsCommand": 1, + "incrbyCommand": 1, + "decrbyCommand": 1, + "incrbyfloatCommand": 1, + "getsetCommand": 1, + "msetCommand": 1, + "msetnxCommand": 1, + "randomkeyCommand": 1, + "selectCommand": 1, + "moveCommand": 1, + "renameCommand": 1, + "renameGetKeys": 2, + "renamenxCommand": 1, + "expireCommand": 1, + "expireatCommand": 1, + "pexpireCommand": 1, + "pexpireatCommand": 1, + "keysCommand": 1, + "dbsizeCommand": 1, + "authCommand": 3, + "pingCommand": 2, + "echoCommand": 2, + "saveCommand": 1, + "bgsaveCommand": 1, + "bgrewriteaofCommand": 1, + "shutdownCommand": 2, + "lastsaveCommand": 1, + "typeCommand": 1, + "multiCommand": 2, + "execCommand": 2, + "discardCommand": 2, + "syncCommand": 1, + "flushdbCommand": 1, + "flushallCommand": 1, + "sortCommand": 1, + "infoCommand": 4, + "monitorCommand": 2, + "ttlCommand": 1, + "pttlCommand": 1, + "persistCommand": 1, + "slaveofCommand": 2, + "debugCommand": 1, + "configCommand": 1, + "subscribeCommand": 2, + "unsubscribeCommand": 2, + "psubscribeCommand": 2, + "punsubscribeCommand": 2, + "publishCommand": 1, + "watchCommand": 2, + "unwatchCommand": 1, + "clusterCommand": 1, + "restoreCommand": 1, + "migrateCommand": 1, + "askingCommand": 1, + "dumpCommand": 1, + "objectCommand": 1, + "clientCommand": 1, + "evalCommand": 1, + "evalShaCommand": 1, + "slowlogCommand": 1, + "scriptCommand": 2, + "timeCommand": 2, + "bitopCommand": 1, + "bitcountCommand": 1, + "redisLogRaw": 3, + "level": 12, + "syslogLevelMap": 2, + "LOG_DEBUG": 1, + "LOG_INFO": 1, + "LOG_NOTICE": 1, + "LOG_WARNING": 1, + "FILE": 3, + "*fp": 3, + "rawmode": 2, + "REDIS_LOG_RAW": 2, + "xff": 3, + "server.verbosity": 4, + "fp": 13, + "server.logfile": 8, + "fopen": 3, + "msg": 10, + "timeval": 4, + "tv": 8, + "gettimeofday": 4, + "strftime": 1, + "localtime": 1, + "tv.tv_sec": 4, + "snprintf": 2, + "tv.tv_usec/1000": 1, + "getpid": 7, + "server.syslog_enabled": 3, + "syslog": 1, + "redisLog": 33, + "...": 127, + "va_list": 3, + "ap": 4, + "REDIS_MAX_LOGMSG_LEN": 1, + "va_start": 3, + "vsnprintf": 1, + "va_end": 3, + "redisLogFromHandler": 2, + "server.daemonize": 5, + "O_APPEND": 2, + "O_CREAT": 2, + "O_WRONLY": 2, + "STDOUT_FILENO": 2, + "ll2string": 3, + "write": 7, + "time": 10, + "oom": 3, + "REDIS_WARNING": 19, + "sleep": 1, + "abort": 1, + "ustime": 7, + "ust": 7, + "*1000000": 1, + "tv.tv_usec": 3, + "mstime": 5, + "/1000": 1, + "exitFromChild": 1, + "retcode": 3, + "COVERAGE_TEST": 1, + "dictVanillaFree": 1, + "*privdata": 8, + "*val": 4, + "DICT_NOTUSED": 6, + "privdata": 8, + "zfree": 2, + "dictListDestructor": 2, + "listRelease": 1, + "list*": 1, + "dictSdsKeyCompare": 6, + "*key1": 4, + "*key2": 4, + "l1": 4, + "l2": 3, + "sdslen": 14, + "sds": 13, + "key1": 5, + "key2": 5, + "dictSdsKeyCaseCompare": 2, + "strcasecmp": 13, + "dictRedisObjectDestructor": 7, + "decrRefCount": 6, + "dictSdsDestructor": 4, + "sdsfree": 2, + "dictObjKeyCompare": 2, + "robj": 7, + "*o1": 2, + "*o2": 2, + "o1": 7, + "ptr": 18, + "o2": 7, + "dictObjHash": 2, + "key": 9, + "dictGenHashFunction": 5, + "dictSdsHash": 4, + "char*": 166, + "dictSdsCaseHash": 2, + "dictGenCaseHashFunction": 1, + "dictEncObjKeyCompare": 4, + "robj*": 3, + "REDIS_ENCODING_INT": 4, + "getDecodedObject": 3, + "dictEncObjHash": 4, + "REDIS_ENCODING_RAW": 1, + "dictType": 8, + "setDictType": 1, + "zsetDictType": 1, + "dbDictType": 2, + "keyptrDictType": 2, + "commandTableDictType": 2, + "hashDictType": 1, + "keylistDictType": 4, + "clusterNodesDictType": 1, + "htNeedsResize": 3, + "dict": 11, + "*dict": 5, + "used": 10, + "dictSlots": 3, + "dictSize": 10, + "DICT_HT_INITIAL_SIZE": 2, + "used*100/size": 1, + "REDIS_HT_MINFILL": 1, + "tryResizeHashTables": 2, + "server.dbnum": 8, + "server.db": 23, + ".dict": 9, + "dictResize": 2, + ".expires": 8, + "incrementallyRehash": 2, + "dictIsRehashing": 2, + "dictRehashMilliseconds": 2, + "updateDictResizePolicy": 2, + "server.rdb_child_pid": 12, + "server.aof_child_pid": 10, + "dictEnableResize": 1, + "dictDisableResize": 1, + "activeExpireCycle": 2, + "iteration": 6, + "start": 10, + "timelimit": 5, + "*REDIS_EXPIRELOOKUPS_TIME_PERC/REDIS_HZ/100": 1, + "expired": 4, + "redisDb": 3, + "expires": 3, + "slots": 2, + "now": 5, + "num*100/slots": 1, + "REDIS_EXPIRELOOKUPS_PER_CRON": 2, + "dictEntry": 2, + "*de": 2, + "de": 12, + "dictGetRandomKey": 4, + "dictGetSignedIntegerVal": 1, + "dictGetKey": 4, + "*keyobj": 2, + "createStringObject": 11, + "propagateExpire": 2, + "keyobj": 6, + "dbDelete": 2, + "server.stat_expiredkeys": 3, + "xf": 1, + "REDIS_EXPIRELOOKUPS_PER_CRON/4": 1, + "updateLRUClock": 3, + "server.lruclock": 2, + "server.unixtime/REDIS_LRU_CLOCK_RESOLUTION": 1, + "REDIS_LRU_CLOCK_MAX": 1, + "trackOperationsPerSecond": 2, + "server.ops_sec_last_sample_time": 3, + "ops": 1, + "server.stat_numcommands": 4, + "server.ops_sec_last_sample_ops": 3, + "ops_sec": 3, + "ops*1000/t": 1, + "server.ops_sec_samples": 4, + "server.ops_sec_idx": 4, + "%": 2, + "REDIS_OPS_SEC_SAMPLES": 3, + "getOperationsPerSecond": 2, + "sum": 3, + "clientsCronHandleTimeout": 2, + "redisClient": 12, + "time_t": 4, + "server.unixtime": 10, + "server.maxidletime": 3, + "REDIS_SLAVE": 3, + "REDIS_MASTER": 2, + "REDIS_BLOCKED": 2, + "pubsub_channels": 2, + "listLength": 14, + "pubsub_patterns": 2, + "lastinteraction": 3, + "REDIS_VERBOSE": 3, + "freeClient": 1, + "bpop.timeout": 2, + "addReply": 13, + "shared.nullmultibulk": 2, + "unblockClientWaitingData": 1, + "clientsCronResizeQueryBuffer": 2, + "querybuf_size": 3, + "sdsAllocSize": 1, + "querybuf": 6, + "idletime": 2, + "REDIS_MBULK_BIG_ARG": 1, + "querybuf_size/": 1, + "querybuf_peak": 2, + "sdsavail": 1, + "sdsRemoveFreeSpace": 1, + "clientsCron": 2, + "numclients": 3, + "server.clients": 7, + "iterations": 4, + "numclients/": 1, + "REDIS_HZ*10": 1, + "listNode": 4, + "*head": 1, + "listRotate": 1, + "head": 3, + "listFirst": 2, + "listNodeValue": 3, + "run_with_period": 6, + "_ms_": 2, + "loops": 2, + "/REDIS_HZ": 2, + "serverCron": 2, + "aeEventLoop": 2, + "*eventLoop": 2, + "*clientData": 1, + "server.cronloops": 3, + "REDIS_NOTUSED": 5, + "eventLoop": 2, + "clientData": 1, + "server.watchdog_period": 3, + "watchdogScheduleSignal": 1, + "zmalloc_used_memory": 8, + "server.stat_peak_memory": 5, + "server.shutdown_asap": 3, + "prepareForShutdown": 2, + "REDIS_OK": 23, + "vkeys": 8, + "server.activerehashing": 2, + "server.slaves": 9, + "server.aof_rewrite_scheduled": 4, + "rewriteAppendOnlyFileBackground": 2, + "statloc": 5, + "wait3": 1, + "WNOHANG": 1, + "exitcode": 3, + "bysignal": 4, + "backgroundSaveDoneHandler": 1, + "backgroundRewriteDoneHandler": 1, + "server.saveparamslen": 3, + "saveparam": 1, + "*sp": 1, + "server.saveparams": 2, + "server.dirty": 3, + "sp": 4, + "changes": 2, + "server.lastsave": 3, + "seconds": 2, + "REDIS_NOTICE": 13, + "rdbSaveBackground": 1, + "server.rdb_filename": 4, + "server.aof_rewrite_perc": 3, + "server.aof_current_size": 2, + "server.aof_rewrite_min_size": 2, + "base": 1, + "server.aof_rewrite_base_size": 4, + "growth": 3, + "server.aof_current_size*100/base": 1, + "server.aof_flush_postponed_start": 2, + "flushAppendOnlyFile": 2, + "server.masterhost": 7, + "freeClientsInAsyncFreeQueue": 1, + "replicationCron": 1, + "server.cluster_enabled": 6, + "clusterCron": 1, + "beforeSleep": 2, + "*ln": 3, + "server.unblocked_clients": 4, + "ln": 8, + "redisAssert": 1, + "listDelNode": 1, + "REDIS_UNBLOCKED": 1, + "server.current_client": 3, + "processInputBuffer": 1, + "createSharedObjects": 2, + "shared.crlf": 2, + "createObject": 31, + "REDIS_STRING": 31, + "sdsnew": 27, + "shared.ok": 3, + "shared.err": 1, + "shared.emptybulk": 1, + "shared.czero": 1, + "shared.cone": 1, + "shared.cnegone": 1, + "shared.nullbulk": 1, + "shared.emptymultibulk": 1, + "shared.pong": 2, + "shared.queued": 2, + "shared.wrongtypeerr": 1, + "shared.nokeyerr": 1, + "shared.syntaxerr": 2, + "shared.sameobjecterr": 1, + "shared.outofrangeerr": 1, + "shared.noscripterr": 1, + "shared.loadingerr": 2, + "shared.slowscripterr": 2, + "shared.masterdownerr": 2, + "shared.bgsaveerr": 2, + "shared.roslaveerr": 2, + "shared.oomerr": 2, + "shared.space": 1, + "shared.colon": 1, + "shared.plus": 1, + "REDIS_SHARED_SELECT_CMDS": 1, + "shared.select": 1, + "sdscatprintf": 24, + "sdsempty": 8, + "shared.messagebulk": 1, + "shared.pmessagebulk": 1, + "shared.subscribebulk": 1, + "shared.unsubscribebulk": 1, + "shared.psubscribebulk": 1, + "shared.punsubscribebulk": 1, + "shared.del": 1, + "shared.rpop": 1, + "shared.lpop": 1, + "REDIS_SHARED_INTEGERS": 1, + "shared.integers": 2, + "void*": 135, + "REDIS_SHARED_BULKHDR_LEN": 1, + "shared.mbulkhdr": 1, + "shared.bulkhdr": 1, + "initServerConfig": 2, + "getRandomHexChars": 1, + "server.runid": 3, + "REDIS_RUN_ID_SIZE": 2, + "server.arch_bits": 3, + "server.port": 7, + "REDIS_SERVERPORT": 1, + "server.bindaddr": 2, + "server.unixsocket": 7, + "server.unixsocketperm": 2, + "server.ipfd": 9, + "server.sofd": 9, + "REDIS_DEFAULT_DBNUM": 1, + "REDIS_MAXIDLETIME": 1, + "server.client_max_querybuf_len": 1, + "REDIS_MAX_QUERYBUF_LEN": 1, + "server.loading": 4, + "server.syslog_ident": 2, + "zstrdup": 5, + "server.syslog_facility": 2, + "LOG_LOCAL0": 1, + "server.aof_state": 7, + "REDIS_AOF_OFF": 5, + "server.aof_fsync": 1, + "AOF_FSYNC_EVERYSEC": 1, + "server.aof_no_fsync_on_rewrite": 1, + "REDIS_AOF_REWRITE_PERC": 1, + "REDIS_AOF_REWRITE_MIN_SIZE": 1, + "server.aof_last_fsync": 1, + "server.aof_rewrite_time_last": 2, + "server.aof_rewrite_time_start": 2, + "server.aof_delayed_fsync": 2, + "server.aof_fd": 4, + "server.aof_selected_db": 1, + "server.pidfile": 3, + "server.aof_filename": 3, + "server.requirepass": 4, + "server.rdb_compression": 1, + "server.rdb_checksum": 1, + "server.maxclients": 6, + "REDIS_MAX_CLIENTS": 1, + "server.bpop_blocked_clients": 2, + "server.maxmemory": 6, + "server.maxmemory_policy": 11, + "REDIS_MAXMEMORY_VOLATILE_LRU": 3, + "server.maxmemory_samples": 3, + "server.hash_max_ziplist_entries": 1, + "REDIS_HASH_MAX_ZIPLIST_ENTRIES": 1, + "server.hash_max_ziplist_value": 1, + "REDIS_HASH_MAX_ZIPLIST_VALUE": 1, + "server.list_max_ziplist_entries": 1, + "REDIS_LIST_MAX_ZIPLIST_ENTRIES": 1, + "server.list_max_ziplist_value": 1, + "REDIS_LIST_MAX_ZIPLIST_VALUE": 1, + "server.set_max_intset_entries": 1, + "REDIS_SET_MAX_INTSET_ENTRIES": 1, + "server.zset_max_ziplist_entries": 1, + "REDIS_ZSET_MAX_ZIPLIST_ENTRIES": 1, + "server.zset_max_ziplist_value": 1, + "REDIS_ZSET_MAX_ZIPLIST_VALUE": 1, + "server.repl_ping_slave_period": 1, + "REDIS_REPL_PING_SLAVE_PERIOD": 1, + "server.repl_timeout": 1, + "REDIS_REPL_TIMEOUT": 1, + "server.cluster.configfile": 1, + "server.lua_caller": 1, + "server.lua_time_limit": 1, + "REDIS_LUA_TIME_LIMIT": 1, + "server.lua_client": 1, + "server.lua_timedout": 2, + "resetServerSaveParams": 2, + "appendServerSaveParams": 3, + "*60": 1, + "server.masterauth": 1, + "server.masterport": 2, + "server.master": 3, + "server.repl_state": 6, + "REDIS_REPL_NONE": 1, + "server.repl_syncio_timeout": 1, + "REDIS_REPL_SYNCIO_TIMEOUT": 1, + "server.repl_serve_stale_data": 2, + "server.repl_slave_ro": 2, + "server.repl_down_since": 2, + "server.client_obuf_limits": 9, + "REDIS_CLIENT_LIMIT_CLASS_NORMAL": 3, + ".hard_limit_bytes": 3, + ".soft_limit_bytes": 3, + ".soft_limit_seconds": 3, + "REDIS_CLIENT_LIMIT_CLASS_SLAVE": 3, + "*1024*256": 1, + "*1024*64": 1, + "REDIS_CLIENT_LIMIT_CLASS_PUBSUB": 3, + "*1024*32": 1, + "*1024*8": 1, + "/R_Zero": 2, + "R_Zero/R_Zero": 1, + "server.commands": 1, + "dictCreate": 6, + "populateCommandTable": 2, + "server.delCommand": 1, + "lookupCommandByCString": 3, + "server.multiCommand": 1, + "server.lpushCommand": 1, + "server.slowlog_log_slower_than": 1, + "REDIS_SLOWLOG_LOG_SLOWER_THAN": 1, + "server.slowlog_max_len": 1, + "REDIS_SLOWLOG_MAX_LEN": 1, + "server.assert_failed": 1, + "server.assert_file": 1, + "server.assert_line": 1, + "server.bug_report_start": 1, + "adjustOpenFilesLimit": 2, + "rlim_t": 3, + "maxfiles": 6, + "rlimit": 1, + "limit": 3, + "getrlimit": 1, + "RLIMIT_NOFILE": 2, + "oldlimit": 5, + "limit.rlim_cur": 2, + "limit.rlim_max": 1, + "setrlimit": 1, + "initServer": 2, + "signal": 2, + "SIGHUP": 1, + "SIG_IGN": 2, + "SIGPIPE": 1, + "setupSignalHandlers": 2, + "openlog": 1, + "LOG_PID": 1, + "LOG_NDELAY": 1, + "LOG_NOWAIT": 1, + "listCreate": 6, + "server.clients_to_close": 1, + "server.monitors": 2, + "server.el": 7, + "aeCreateEventLoop": 1, + "zmalloc": 2, + "*server.dbnum": 1, + "anetTcpServer": 1, + "server.neterr": 4, + "ANET_ERR": 2, + "unlink": 3, + "anetUnixServer": 1, + ".blocking_keys": 1, + ".watched_keys": 1, + ".id": 1, + "server.pubsub_channels": 2, + "server.pubsub_patterns": 4, + "listSetFreeMethod": 1, + "freePubsubPattern": 1, + "listSetMatchMethod": 1, + "listMatchPubsubPattern": 1, + "aofRewriteBufferReset": 1, + "server.aof_buf": 3, + "server.rdb_save_time_last": 2, + "server.rdb_save_time_start": 2, + "server.stat_numconnections": 2, + "server.stat_evictedkeys": 3, + "server.stat_starttime": 2, + "server.stat_keyspace_misses": 2, + "server.stat_keyspace_hits": 2, + "server.stat_fork_time": 2, + "server.stat_rejected_conn": 2, + "server.lastbgsave_status": 3, + "server.stop_writes_on_bgsave_err": 2, + "aeCreateTimeEvent": 1, + "aeCreateFileEvent": 2, + "AE_READABLE": 2, + "acceptTcpHandler": 1, + "AE_ERR": 2, + "acceptUnixHandler": 1, + "REDIS_AOF_ON": 2, + "LL*": 1, + "REDIS_MAXMEMORY_NO_EVICTION": 2, + "clusterInit": 1, + "scriptingInit": 1, + "slowlogInit": 1, + "bioInit": 1, + "numcommands": 5, + "sflags": 1, + "retval": 3, + "arity": 3, + "addReplyErrorFormat": 1, + "authenticated": 3, + "proc": 14, + "addReplyError": 6, + "getkeys_proc": 1, + "firstkey": 1, + "hashslot": 3, + "server.cluster.state": 1, + "REDIS_CLUSTER_OK": 1, + "ask": 3, + "clusterNode": 1, + "*n": 1, + "getNodeByQuery": 1, + "server.cluster.myself": 1, + "addReplySds": 3, + "ip": 4, + "freeMemoryIfNeeded": 2, + "REDIS_CMD_DENYOOM": 1, + "REDIS_ERR": 5, + "REDIS_CMD_WRITE": 2, + "REDIS_REPL_CONNECTED": 3, + "tolower": 2, + "REDIS_MULTI": 1, + "queueMultiCommand": 1, + "call": 1, + "REDIS_CALL_FULL": 1, + "save": 2, + "REDIS_SHUTDOWN_SAVE": 1, + "nosave": 2, + "REDIS_SHUTDOWN_NOSAVE": 1, + "SIGKILL": 2, + "rdbRemoveTempFile": 1, + "aof_fsync": 1, + "rdbSave": 1, + "addReplyBulk": 1, + "addReplyMultiBulkLen": 1, + "addReplyBulkLongLong": 2, + "bytesToHuman": 3, + "*s": 3, + "sprintf": 10, + "n/": 3, + "LL*1024*1024": 2, + "LL*1024*1024*1024": 1, + "genRedisInfoString": 2, + "*section": 2, + "info": 64, + "uptime": 2, + "rusage": 1, + "self_ru": 2, + "c_ru": 2, + "lol": 3, + "bib": 3, + "allsections": 12, + "defsections": 11, + "sections": 11, + "section": 14, + "getrusage": 2, + "RUSAGE_SELF": 1, + "RUSAGE_CHILDREN": 1, + "getClientsMaxBuffers": 1, + "utsname": 1, + "sdscat": 14, + "uname": 1, + "REDIS_VERSION": 4, + "redisGitSHA1": 3, + "strtol": 2, + "redisGitDirty": 3, + "name.sysname": 1, + "name.release": 1, + "name.machine": 1, + "aeGetApiName": 1, + "__GNUC__": 7, + "__GNUC_MINOR__": 2, + "__GNUC_PATCHLEVEL__": 1, + "uptime/": 1, + "*24": 1, + "hmem": 3, + "peak_hmem": 3, + "zmalloc_get_rss": 1, + "lua_gc": 1, + "server.lua": 1, + "LUA_GCCOUNT": 1, + "*1024LL": 1, + "zmalloc_get_fragmentation_ratio": 1, + "ZMALLOC_LIB": 2, + "aofRewriteBufferSize": 2, + "bioPendingJobsOfType": 1, + "REDIS_BIO_AOF_FSYNC": 1, + "perc": 3, + "eta": 4, + "elapsed": 3, + "off_t": 1, + "remaining_bytes": 1, + "server.loading_total_bytes": 3, + "server.loading_loaded_bytes": 3, + "server.loading_start_time": 2, + "elapsed*remaining_bytes": 1, + "/server.loading_loaded_bytes": 1, + "REDIS_REPL_TRANSFER": 2, + "server.repl_transfer_left": 1, + "server.repl_transfer_lastio": 1, + "slaveid": 3, + "listIter": 2, + "li": 6, + "listRewind": 2, + "listNext": 2, + "*slave": 2, + "*state": 1, + "anetPeerToString": 1, + "slave": 3, + "replstate": 1, + "REDIS_REPL_WAIT_BGSAVE_START": 1, + "REDIS_REPL_WAIT_BGSAVE_END": 1, + "REDIS_REPL_SEND_BULK": 1, + "REDIS_REPL_ONLINE": 1, + "float": 26, + "self_ru.ru_stime.tv_sec": 1, + "self_ru.ru_stime.tv_usec/1000000": 1, + "self_ru.ru_utime.tv_sec": 1, + "self_ru.ru_utime.tv_usec/1000000": 1, + "c_ru.ru_stime.tv_sec": 1, + "c_ru.ru_stime.tv_usec/1000000": 1, + "c_ru.ru_utime.tv_sec": 1, + "c_ru.ru_utime.tv_usec/1000000": 1, + "calls": 4, + "microseconds": 1, + "microseconds/c": 1, + "keys": 4, + "REDIS_MONITOR": 1, + "slaveseldb": 1, + "listAddNodeTail": 1, + "mem_used": 9, + "mem_tofree": 3, + "mem_freed": 4, + "slaves": 3, + "obuf_bytes": 3, + "getClientOutputBufferMemoryUsage": 1, + "k": 15, + "keys_freed": 3, + "bestval": 5, + "bestkey": 9, + "REDIS_MAXMEMORY_ALLKEYS_LRU": 2, + "REDIS_MAXMEMORY_ALLKEYS_RANDOM": 2, + "REDIS_MAXMEMORY_VOLATILE_RANDOM": 1, + "thiskey": 7, + "thisval": 8, + "dictFind": 1, + "dictGetVal": 2, + "estimateObjectIdleTime": 1, + "REDIS_MAXMEMORY_VOLATILE_TTL": 1, + "flushSlavesOutputBuffers": 1, + "linuxOvercommitMemoryValue": 2, + "fgets": 1, + "atoi": 3, + "linuxOvercommitMemoryWarning": 2, + "createPidFile": 2, + "daemonize": 2, + "STDIN_FILENO": 1, + "STDERR_FILENO": 2, + "version": 4, + "usage": 2, + "redisAsciiArt": 2, + "*16": 2, + "ascii_logo": 1, + "sigtermHandler": 2, + "sig": 2, + "sigaction": 6, + "act": 6, + "sigemptyset": 2, + "act.sa_mask": 2, + "act.sa_flags": 2, + "act.sa_handler": 1, + "SIGTERM": 1, + "HAVE_BACKTRACE": 1, + "SA_NODEFER": 1, + "SA_RESETHAND": 1, + "SA_SIGINFO": 1, + "act.sa_sigaction": 1, + "sigsegvHandler": 1, + "SIGSEGV": 1, + "SIGBUS": 1, + "SIGFPE": 1, + "SIGILL": 1, + "memtest": 2, + "megabytes": 1, + "passes": 1, + "zmalloc_enable_thread_safeness": 1, + "srand": 1, + "dictSetHashFunctionSeed": 1, + "*configfile": 1, + "configfile": 2, + "sdscatrepr": 1, + "loadServerConfig": 1, + "loadAppendOnlyFile": 1, + "/1000000": 2, + "rdbLoad": 1, + "aeSetBeforeSleepProc": 1, + "aeMain": 1, + "aeDeleteEventLoop": 1, + "": 1, + "": 2, + "": 2, + "//": 257, + "rfUTF8_IsContinuationbyte": 1, + "e.t.c.": 1, + "rfFReadLine_UTF8": 5, + "FILE*": 64, + "utf8": 36, + "uint32_t*": 34, + "byteLength": 197, + "bufferSize": 6, + "eof": 53, + "bytesN": 98, + "bIndex": 5, + "RF_NEWLINE_CRLF": 1, + "newLineFound": 1, + "*bufferSize": 1, + "RF_OPTION_FGETS_READBYTESN": 5, + "RF_MALLOC": 47, + "tempBuff": 6, + "RF_LF": 10, + "buff": 95, + "RF_SUCCESS": 14, + "RE_FILE_EOF": 22, + "found": 20, + "*eofReached": 14, + "LOG_ERROR": 64, + "RF_HEXEQ_UI": 7, + "rfFgetc_UTF32BE": 3, + "else//": 14, + "undo": 5, + "peek": 5, + "ahead": 5, + "file": 6, + "pointer": 5, + "fseek": 19, + "SEEK_CUR": 19, + "rfFgets_UTF32LE": 2, + "eofReached": 4, + "rfFgetc_UTF32LE": 4, + "rfFgets_UTF16BE": 2, + "rfFgetc_UTF16BE": 4, + "rfFgets_UTF16LE": 2, + "rfFgetc_UTF16LE": 4, + "rfFgets_UTF8": 2, + "rfFgetc_UTF8": 3, + "RF_HEXEQ_C": 9, + "fgetc": 9, + "check": 8, + "RE_FILE_READ": 2, + "cp": 12, + "c2": 13, + "c3": 9, + "c4": 5, + "i_READ_CHECK": 20, + "///": 4, + "success": 4, + "cc": 24, + "we": 10, + "more": 2, + "bytes": 225, + "xC0": 3, + "xC1": 1, + "RE_UTF8_INVALID_SEQUENCE_INVALID_BYTE": 6, + "RE_UTF8_INVALID_SEQUENCE_END": 6, + "rfUTF8_IsContinuationByte": 12, + "RE_UTF8_INVALID_SEQUENCE_CONBYTE": 6, + "decoded": 3, + "codepoint": 47, + "F": 38, + "xE0": 2, + "xF": 5, + "decode": 6, + "xF0": 2, + "RF_HEXGE_C": 1, + "xBF": 2, + "//invalid": 1, + "byte": 6, + "are": 6, + "xFF": 1, + "//if": 1, + "needing": 1, + "than": 5, + "swapE": 21, + "v1": 38, + "v2": 26, + "rfUTILS_Endianess": 24, + "RF_LITTLE_ENDIAN": 23, + "fread": 12, + "endianess": 40, + "needed": 10, + "rfUTILS_SwapEndianUS": 10, + "RF_HEXGE_US": 4, + "xD800": 8, + "RF_HEXLE_US": 4, + "xDFFF": 8, + "RF_HEXL_US": 8, + "RF_HEXG_US": 8, + "xDBFF": 4, + "RE_UTF16_INVALID_SEQUENCE": 20, + "RE_UTF16_NO_SURRPAIR": 2, + "xDC00": 4, + "user": 2, + "wants": 2, + "ff": 10, + "uint16_t*": 11, + "surrogate": 4, + "pair": 4, + "existence": 2, + "RF_BIG_ENDIAN": 10, + "rfUTILS_SwapEndianUI": 11, + "rfFback_UTF32BE": 2, + "i_FSEEK_CHECK": 14, + "rfFback_UTF32LE": 2, + "rfFback_UTF16BE": 2, + "rfFback_UTF16LE": 2, + "rfFback_UTF8": 2, + "depending": 1, + "number": 19, + "read": 1, + "backwards": 1, + "RE_UTF8_INVALID_SEQUENCE": 2, + "REFU_IO_H": 2, + "": 2, + "opening": 2, + "bracket": 4, + "calling": 4, + "C": 14, + "xA": 1, + "RF_CR": 1, + "xD": 1, + "REFU_WIN32_VERSION": 1, + "i_PLUSB_WIN32": 2, + "foff_rft": 2, + "off64_t": 1, + "///Fseek": 1, + "and": 15, + "Ftelll": 1, + "definitions": 1, + "rfFseek": 2, + "i_FILE_": 16, + "i_OFFSET_": 4, + "i_WHENCE_": 4, + "_fseeki64": 1, + "rfFtell": 2, + "_ftelli64": 1, + "fseeko64": 1, + "ftello64": 1, + "i_DECLIMEX_": 121, + "rfFReadLine_UTF16BE": 6, + "rfFReadLine_UTF16LE": 4, + "rfFReadLine_UTF32BE": 1, + "rfFReadLine_UTF32LE": 4, + "rfFgets_UTF32BE": 1, + "RF_IAMHERE_FOR_DOXYGEN": 22, + "rfPopen": 2, + "command": 2, + "i_rfPopen": 2, + "i_CMD_": 2, + "i_MODE_": 2, + "i_rfLMS_WRAP2": 5, + "rfPclose": 1, + "stream": 3, + "///closing": 1, + "#endif//include": 1, + "guards": 2, + "": 1, + "": 2, + "local": 5, + "stack": 6, + "memory": 4, + "RF_OPTION_DEFAULT_ARGUMENTS": 24, + "RF_String*": 222, + "rfString_Create": 4, + "i_rfString_Create": 3, + "READ_VSNPRINTF_ARGS": 5, + "rfUTF8_VerifySequence": 7, + "RF_FAILURE": 24, + "RE_STRING_INIT_FAILURE": 8, + "buffAllocated": 11, + "RF_String": 27, + "i_NVrfString_Create": 3, + "i_rfString_CreateLocal1": 3, + "RF_OPTION_SOURCE_ENCODING": 30, + "RF_UTF8": 8, + "characterLength": 16, + "*codepoints": 2, + "rfLMS_MacroEvalPtr": 2, + "RF_LMS": 6, + "RF_UTF16_LE": 9, + "RF_UTF16_BE": 7, + "codepoints": 44, + "i/2": 2, + "#elif": 14, + "RF_UTF32_LE": 3, + "RF_UTF32_BE": 3, + "UTF16": 4, + "rfUTF16_Decode": 5, + "rfUTF16_Decode_swap": 5, + "RF_UTF16_BE//": 2, + "RF_UTF32_LE//": 2, + "copy": 4, + "UTF32": 4, + "into": 8, + "RF_UTF32_BE//": 2, + "": 2, + "any": 3, + "other": 16, + "UTF": 17, + "8": 15, + "encode": 2, + "them": 3, + "rfUTF8_Encode": 4, + "While": 2, + "attempting": 2, + "create": 2, + "temporary": 4, + "given": 5, + "sequence": 6, + "could": 2, + "not": 6, + "be": 6, + "properly": 2, + "encoded": 2, + "RE_UTF8_ENCODING": 2, + "End": 2, + "Non": 2, + "code=": 2, + "normally": 1, + "since": 5, + "here": 5, + "have": 2, + "validity": 2, + "get": 4, + "Error": 2, + "at": 3, + "String": 11, + "Allocation": 2, + "due": 2, + "invalid": 2, + "rfLMS_Push": 4, + "Memory": 4, + "allocation": 3, + "Local": 2, + "Stack": 2, + "failed": 2, + "Insufficient": 2, + "space": 4, + "Consider": 2, + "compiling": 2, + "library": 3, + "with": 9, + "bigger": 3, + "Quitting": 2, + "proccess": 2, + "RE_LOCALMEMSTACK_INSUFFICIENT": 8, + "i_NVrfString_CreateLocal": 3, + "during": 1, + "rfString_Init": 3, + "i_rfString_Init": 3, + "i_NVrfString_Init": 3, + "rfString_Create_cp": 2, + "rfString_Init_cp": 3, + "RF_HEXLE_UI": 8, + "RF_HEXGE_UI": 6, + "C0": 3, + "ffff": 4, + "xFC0": 4, + "xF000": 2, + "xE": 2, + "F000": 2, + "C0000": 2, + "E": 11, + "RE_UTF8_INVALID_CODE_POINT": 2, + "rfString_Create_i": 2, + "numLen": 8, + "max": 4, + "is": 17, + "most": 3, + "environment": 3, + "so": 4, + "chars": 3, + "will": 3, + "certainly": 3, + "fit": 3, + "it": 12, + "strcpy": 4, + "rfString_Init_i": 2, + "rfString_Create_f": 2, + "rfString_Init_f": 2, + "rfString_Create_UTF16": 2, + "rfString_Init_UTF16": 3, + "utf8ByteLength": 34, + "last": 1, + "utf": 1, + "null": 4, + "termination": 3, + "byteLength*2": 1, + "allocate": 1, + "same": 1, + "as": 4, + "different": 1, + "RE_INPUT": 1, + "ends": 3, + "rfString_Create_UTF32": 2, + "rfString_Init_UTF32": 3, + "codeBuffer": 9, + "xFEFF": 1, + "big": 14, + "endian": 20, + "xFFFE0000": 1, + "little": 7, + "according": 1, + "standard": 1, + "no": 4, + "BOM": 1, + "means": 1, + "rfUTF32_Length": 1, + "i_rfString_Assign": 3, + "dest": 7, + "sourceP": 2, + "source": 8, + "RF_REALLOC": 9, + "rfString_Assign_char": 2, + "<5)>": 1, + "rfString_Create_nc": 3, + "i_rfString_Create_nc": 3, + "bytesWritten": 2, + "i_NVrfString_Create_nc": 3, + "rfString_Init_nc": 4, + "i_rfString_Init_nc": 3, + "i_NVrfString_Init_nc": 3, + "rfString_Destroy": 2, + "rfString_Deinit": 3, + "rfString_ToUTF16": 4, + "charsN": 5, + "rfUTF8_Decode": 2, + "rfUTF16_Encode": 1, + "rfString_ToUTF32": 4, + "rfString_Length": 5, + "RF_STRING_ITERATE_START": 9, + "RF_STRING_ITERATE_END": 9, + "rfString_GetChar": 2, + "thisstr": 210, + "codePoint": 18, + "RF_STRING_INDEX_OUT_OF_BOUNDS": 2, + "rfString_BytePosToCodePoint": 7, + "rfString_BytePosToCharPos": 4, + "thisstrP": 32, + "bytepos": 12, + "before": 4, + "charPos": 8, + "byteI": 7, + "i_rfString_Equal": 3, + "s1P": 2, + "s2P": 2, + "i_rfString_Find": 5, + "sstrP": 6, + "optionsP": 11, + "sstr": 39, + "*optionsP": 8, + "RF_BITFLAG_ON": 5, + "RF_CASE_IGNORE": 2, + "strstr": 2, + "RF_MATCH_WORD": 5, + "exact": 6, + "": 1, + "0x5a": 1, + "0x7a": 1, + "substring": 5, + "search": 1, + "zero": 2, + "equals": 1, + "then": 1, + "okay": 1, + "rfString_Equal": 4, + "RFS_": 8, + "ERANGE": 1, + "RE_STRING_TOFLOAT_UNDERFLOW": 1, + "RE_STRING_TOFLOAT": 1, + "rfString_Copy_OUT": 2, + "srcP": 6, + "rfString_Copy_IN": 2, + "dst": 15, + "rfString_Copy_chars": 2, + "bytePos": 23, + "terminate": 1, + "i_rfString_ScanfAfter": 3, + "afterstrP": 2, + "format": 4, + "afterstr": 5, + "sscanf": 1, + "<=0)>": 1, + "Counts": 1, + "how": 1, + "many": 1, + "times": 1, + "occurs": 1, + "inside": 2, + "i_rfString_Count": 5, + "sstr2": 2, + "move": 12, + "rfString_FindBytePos": 10, + "rfString_Tokenize": 2, + "sep": 3, + "tokensN": 2, + "RF_String**": 2, + "*tokensN": 1, + "rfString_Count": 4, + "lstr": 6, + "lstrP": 1, + "rstr": 24, + "rstrP": 5, + "rfString_After": 4, + "rfString_Beforev": 4, + "parNP": 6, + "i_rfString_Beforev": 16, + "parN": 10, + "*parNP": 2, + "minPos": 17, + "thisPos": 8, + "argList": 8, + "va_arg": 2, + "i_rfString_Before": 5, + "i_rfString_After": 5, + "afterP": 2, + "after": 6, + "rfString_Afterv": 4, + "i_rfString_Afterv": 16, + "minPosLength": 3, + "go": 8, + "i_rfString_Append": 3, + "otherP": 4, + "strncat": 1, + "rfString_Append_i": 2, + "rfString_Append_f": 2, + "i_rfString_Prepend": 3, + "goes": 1, + "i_rfString_Remove": 6, + "numberP": 1, + "*numberP": 1, + "occurences": 5, + "done": 1, + "<=thisstr->": 1, + "i_rfString_KeepOnly": 3, + "keepstrP": 2, + "keepLength": 2, + "charValue": 12, + "*keepChars": 1, + "keepstr": 5, + "exists": 6, + "charBLength": 5, + "keepChars": 4, + "*keepLength": 1, + "rfString_Iterate_Start": 6, + "rfString_Iterate_End": 4, + "": 1, + "does": 1, + "exist": 2, + "back": 1, + "cover": 1, + "that": 9, + "effectively": 1, + "gets": 1, + "deleted": 1, + "rfUTF8_FromCodepoint": 1, + "this": 5, + "kind": 1, + "non": 1, + "clean": 1, + "way": 1, + "macro": 2, + "internally": 1, + "uses": 1, + "byteIndex_": 12, + "variable": 1, + "use": 1, + "determine": 1, + "backs": 1, + "memmove": 1, + "by": 1, + "contiuing": 1, + "make": 3, + "sure": 2, + "position": 1, + "won": 1, + "array": 1, + "rfString_PruneStart": 2, + "nBytePos": 23, + "rfString_PruneEnd": 2, + "RF_STRING_ITERATEB_START": 2, + "RF_STRING_ITERATEB_END": 2, + "rfString_PruneMiddleB": 2, + "pBytePos": 15, + "indexing": 1, + "works": 1, + "pbytePos": 2, + "pth": 2, + "include": 6, + "rfString_PruneMiddleF": 2, + "got": 1, + "all": 2, + "i_rfString_Replace": 6, + "numP": 1, + "*numP": 1, + "RF_StringX": 2, + "just": 1, + "finding": 1, + "foundN": 10, + "bSize": 4, + "bytePositions": 17, + "bSize*sizeof": 1, + "rfStringX_FromString_IN": 1, + "temp.bIndex": 2, + "temp.bytes": 1, + "temp.byteLength": 1, + "rfStringX_Deinit": 1, + "replace": 3, + "removed": 2, + "one": 2, + "orSize": 5, + "nSize": 4, + "number*diff": 1, + "strncpy": 3, + "smaller": 1, + "diff*number": 1, "remove": 1, - "Wow64EnableWow64FsRedirection": 2, - "ShowInstDetails": 1, - "strings": 1, - "makes": 1, - "uninstConfirm": 1, - "_RunningX64": 1, + "equal": 1, + "i_rfString_StripStart": 3, + "subP": 7, + "RF_String*sub": 2, + "noMatch": 8, + "*subValues": 2, + "subLength": 6, + "subValues": 8, + "*subLength": 2, + "i_rfString_StripEnd": 3, + "lastBytePos": 4, + "testity": 2, + "i_rfString_Strip": 3, + "res1": 2, + "rfString_StripStart": 3, + "res2": 2, + "rfString_StripEnd": 3, + "rfString_Create_fUTF8": 2, + "rfString_Init_fUTF8": 3, + "unused": 3, + "rfString_Assign_fUTF8": 2, + "FILE*f": 2, + "utf8BufferSize": 4, + "function": 6, + "rfString_Append_fUTF8": 2, + "rfString_Append": 5, + "rfString_Create_fUTF16": 2, + "rfString_Init_fUTF16": 3, + "rfString_Assign_fUTF16": 2, + "rfString_Append_fUTF16": 2, + "char*utf8": 3, + "rfString_Create_fUTF32": 2, + "rfString_Init_fUTF32": 3, + "<0)>": 1, + "Failure": 1, + "initialize": 1, + "reading": 1, + "Little": 1, + "Endian": 1, + "32": 1, + "bytesN=": 1, + "rfString_Assign_fUTF32": 2, + "rfString_Append_fUTF32": 2, + "i_rfString_Fwrite": 5, + "sP": 2, + "encodingP": 1, + "*utf32": 1, + "utf16": 11, + "*encodingP": 1, + "fwrite": 5, + "logging": 5, + "utf32": 10, + "i_WRITE_CHECK": 1, + "RE_FILE_WRITE": 1, + "REFU_USTRING_H": 2, + "": 1, + "RF_MODULE_STRINGS//": 1, + "included": 2, + "module": 3, + "": 1, + "argument": 1, + "wrapping": 1, + "functionality": 1, + "": 1, + "unicode": 2, + "xFF0FFFF": 1, + "rfUTF8_IsContinuationByte2": 1, + "b__": 3, + "0xBF": 1, + "pragma": 1, + "pack": 2, + "push": 1, + "internal": 4, + "author": 1, + "Lefteris": 1, + "09": 1, + "12": 1, + "2010": 1, + "endinternal": 1, + "brief": 1, + "A": 11, + "representation": 2, + "The": 1, + "Refu": 2, + "Unicode": 1, + "has": 2, + "two": 1, + "versions": 1, + "One": 1, + "ref": 1, + "what": 1, + "operations": 1, + "can": 2, + "performed": 1, + "extended": 3, + "Strings": 2, + "Functions": 1, + "convert": 1, + "but": 1, + "always": 2, + "Once": 1, + "been": 1, + "created": 1, + "assumed": 1, + "valid": 1, + "every": 1, + "performs": 1, + "unless": 1, + "otherwise": 1, + "specified": 1, + "All": 1, + "functions": 2, + "which": 1, + "isinherited": 1, + "StringX": 2, + "their": 1, + "description": 1, + "safely": 1, + "specific": 1, + "or": 1, + "needs": 1, + "manipulate": 1, + "Extended": 1, + "To": 1, + "documentation": 1, + "even": 1, + "clearer": 1, + "should": 2, + "marked": 1, + "notinherited": 1, + "cppcode": 1, + "constructor": 1, + "i_StringCHandle": 1, + "@endcpp": 1, + "@endinternal": 1, + "*/": 1, + "#pragma": 1, + "pop": 1, + "i_rfString_CreateLocal": 2, + "__VA_ARGS__": 66, + "RP_SELECT_FUNC_IF_NARGIS": 5, + "i_SELECT_RF_STRING_CREATE": 1, + "i_SELECT_RF_STRING_CREATE1": 1, + "i_SELECT_RF_STRING_CREATE0": 1, + "///Internal": 1, + "creates": 1, + "i_SELECT_RF_STRING_CREATELOCAL": 1, + "i_SELECT_RF_STRING_CREATELOCAL1": 1, + "i_SELECT_RF_STRING_CREATELOCAL0": 1, + "i_SELECT_RF_STRING_INIT": 1, + "i_SELECT_RF_STRING_INIT1": 1, + "i_SELECT_RF_STRING_INIT0": 1, + "code": 6, + "i_SELECT_RF_STRING_CREATE_NC": 1, + "i_SELECT_RF_STRING_CREATE_NC1": 1, + "i_SELECT_RF_STRING_CREATE_NC0": 1, + "i_SELECT_RF_STRING_INIT_NC": 1, + "i_SELECT_RF_STRING_INIT_NC1": 1, + "i_SELECT_RF_STRING_INIT_NC0": 1, + "//@": 1, + "rfString_Assign": 2, + "i_DESTINATION_": 2, + "i_SOURCE_": 2, + "rfString_ToUTF8": 2, + "i_STRING_": 2, + "rfString_ToCstr": 2, + "uint32_t*length": 1, + "string_": 9, + "startCharacterPos_": 4, + "characterUnicodeValue_": 4, + "j_": 6, + "//Two": 1, + "macros": 1, + "accomplish": 1, + "going": 1, + "backwards.": 1, + "This": 1, + "its": 1, + "pair.": 1, + "rfString_IterateB_Start": 1, + "characterPos_": 5, + "b_index_": 6, + "c_index_": 3, + "rfString_IterateB_End": 1, + "i_STRING1_": 2, + "i_STRING2_": 2, + "i_rfLMSX_WRAP2": 4, + "rfString_Find": 3, + "i_THISSTR_": 60, + "i_SEARCHSTR_": 26, + "i_OPTIONS_": 28, + "i_rfLMS_WRAP3": 4, + "i_RFI8_": 54, + "RF_SELECT_FUNC_IF_NARGGT": 10, + "i_NPSELECT_RF_STRING_FIND": 1, + "i_NPSELECT_RF_STRING_FIND1": 1, + "RF_COMPILE_ERROR": 33, + "i_NPSELECT_RF_STRING_FIND0": 1, + "RF_SELECT_FUNC": 10, + "i_SELECT_RF_STRING_FIND": 1, + "i_SELECT_RF_STRING_FIND2": 1, + "i_SELECT_RF_STRING_FIND3": 1, + "i_SELECT_RF_STRING_FIND1": 1, + "i_SELECT_RF_STRING_FIND0": 1, + "rfString_ToInt": 1, + "int32_t*": 1, + "rfString_ToDouble": 1, + "double*": 1, + "rfString_ScanfAfter": 2, + "i_AFTERSTR_": 8, + "i_FORMAT_": 2, + "i_VAR_": 2, + "i_rfLMSX_WRAP4": 11, + "i_NPSELECT_RF_STRING_COUNT": 1, + "i_NPSELECT_RF_STRING_COUNT1": 1, + "i_NPSELECT_RF_STRING_COUNT0": 1, + "i_SELECT_RF_STRING_COUNT": 1, + "i_SELECT_RF_STRING_COUNT2": 1, + "i_rfLMSX_WRAP3": 5, + "i_SELECT_RF_STRING_COUNT3": 1, + "i_SELECT_RF_STRING_COUNT1": 1, + "i_SELECT_RF_STRING_COUNT0": 1, + "rfString_Between": 3, + "i_rfString_Between": 4, + "i_NPSELECT_RF_STRING_BETWEEN": 1, + "i_NPSELECT_RF_STRING_BETWEEN1": 1, + "i_NPSELECT_RF_STRING_BETWEEN0": 1, + "i_SELECT_RF_STRING_BETWEEN": 1, + "i_SELECT_RF_STRING_BETWEEN4": 1, + "i_LEFTSTR_": 6, + "i_RIGHTSTR_": 6, + "i_RESULT_": 12, + "i_rfLMSX_WRAP5": 9, + "i_SELECT_RF_STRING_BETWEEN5": 1, + "i_SELECT_RF_STRING_BETWEEN3": 1, + "i_SELECT_RF_STRING_BETWEEN2": 1, + "i_SELECT_RF_STRING_BETWEEN1": 1, + "i_SELECT_RF_STRING_BETWEEN0": 1, + "i_NPSELECT_RF_STRING_BEFOREV": 1, + "i_NPSELECT_RF_STRING_BEFOREV1": 1, + "RF_SELECT_FUNC_IF_NARGGT2": 2, + "i_LIMSELECT_RF_STRING_BEFOREV": 1, + "i_NPSELECT_RF_STRING_BEFOREV0": 1, + "i_LIMSELECT_RF_STRING_BEFOREV1": 1, + "i_LIMSELECT_RF_STRING_BEFOREV0": 1, + "i_SELECT_RF_STRING_BEFOREV": 1, + "i_SELECT_RF_STRING_BEFOREV5": 1, + "i_ARG1_": 56, + "i_ARG2_": 56, + "i_ARG3_": 56, + "i_ARG4_": 56, + "i_RFUI8_": 28, + "i_SELECT_RF_STRING_BEFOREV6": 1, + "i_rfLMSX_WRAP6": 2, + "i_SELECT_RF_STRING_BEFOREV7": 1, + "i_rfLMSX_WRAP7": 2, + "i_SELECT_RF_STRING_BEFOREV8": 1, + "i_rfLMSX_WRAP8": 2, + "i_SELECT_RF_STRING_BEFOREV9": 1, + "i_rfLMSX_WRAP9": 2, + "i_SELECT_RF_STRING_BEFOREV10": 1, + "i_rfLMSX_WRAP10": 2, + "i_SELECT_RF_STRING_BEFOREV11": 1, + "i_rfLMSX_WRAP11": 2, + "i_SELECT_RF_STRING_BEFOREV12": 1, + "i_rfLMSX_WRAP12": 2, + "i_SELECT_RF_STRING_BEFOREV13": 1, + "i_rfLMSX_WRAP13": 2, + "i_SELECT_RF_STRING_BEFOREV14": 1, + "i_rfLMSX_WRAP14": 2, + "i_SELECT_RF_STRING_BEFOREV15": 1, + "i_rfLMSX_WRAP15": 2, + "i_SELECT_RF_STRING_BEFOREV16": 1, + "i_rfLMSX_WRAP16": 2, + "i_SELECT_RF_STRING_BEFOREV17": 1, + "i_rfLMSX_WRAP17": 2, + "i_SELECT_RF_STRING_BEFOREV18": 1, + "i_rfLMSX_WRAP18": 2, + "rfString_Before": 3, + "i_NPSELECT_RF_STRING_BEFORE": 1, + "i_NPSELECT_RF_STRING_BEFORE1": 1, + "i_NPSELECT_RF_STRING_BEFORE0": 1, + "i_SELECT_RF_STRING_BEFORE": 1, + "i_SELECT_RF_STRING_BEFORE3": 1, + "i_SELECT_RF_STRING_BEFORE4": 1, + "i_SELECT_RF_STRING_BEFORE2": 1, + "i_SELECT_RF_STRING_BEFORE1": 1, + "i_SELECT_RF_STRING_BEFORE0": 1, + "i_NPSELECT_RF_STRING_AFTER": 1, + "i_NPSELECT_RF_STRING_AFTER1": 1, + "i_NPSELECT_RF_STRING_AFTER0": 1, + "i_SELECT_RF_STRING_AFTER": 1, + "i_SELECT_RF_STRING_AFTER3": 1, + "i_OUTSTR_": 6, + "i_SELECT_RF_STRING_AFTER4": 1, + "i_SELECT_RF_STRING_AFTER2": 1, + "i_SELECT_RF_STRING_AFTER1": 1, + "i_SELECT_RF_STRING_AFTER0": 1, + "i_NPSELECT_RF_STRING_AFTERV": 1, + "i_NPSELECT_RF_STRING_AFTERV1": 1, + "i_LIMSELECT_RF_STRING_AFTERV": 1, + "i_NPSELECT_RF_STRING_AFTERV0": 1, + "i_LIMSELECT_RF_STRING_AFTERV1": 1, + "i_LIMSELECT_RF_STRING_AFTERV0": 1, + "i_SELECT_RF_STRING_AFTERV": 1, + "i_SELECT_RF_STRING_AFTERV5": 1, + "i_SELECT_RF_STRING_AFTERV6": 1, + "i_SELECT_RF_STRING_AFTERV7": 1, + "i_SELECT_RF_STRING_AFTERV8": 1, + "i_SELECT_RF_STRING_AFTERV9": 1, + "i_SELECT_RF_STRING_AFTERV10": 1, + "i_SELECT_RF_STRING_AFTERV11": 1, + "i_SELECT_RF_STRING_AFTERV12": 1, + "i_SELECT_RF_STRING_AFTERV13": 1, + "i_SELECT_RF_STRING_AFTERV14": 1, + "i_SELECT_RF_STRING_AFTERV15": 1, + "i_SELECT_RF_STRING_AFTERV16": 1, + "i_SELECT_RF_STRING_AFTERV17": 1, + "i_SELECT_RF_STRING_AFTERV18": 1, + "i_OTHERSTR_": 4, + "rfString_Prepend": 2, + "rfString_Remove": 3, + "i_NPSELECT_RF_STRING_REMOVE": 1, + "i_NPSELECT_RF_STRING_REMOVE1": 1, + "i_NPSELECT_RF_STRING_REMOVE0": 1, + "i_SELECT_RF_STRING_REMOVE": 1, + "i_SELECT_RF_STRING_REMOVE2": 1, + "i_REPSTR_": 16, + "i_RFUI32_": 8, + "i_SELECT_RF_STRING_REMOVE3": 1, + "i_NUMBER_": 12, + "i_SELECT_RF_STRING_REMOVE4": 1, + "i_SELECT_RF_STRING_REMOVE1": 1, + "i_SELECT_RF_STRING_REMOVE0": 1, + "rfString_KeepOnly": 2, + "I_KEEPSTR_": 2, + "rfString_Replace": 3, + "i_NPSELECT_RF_STRING_REPLACE": 1, + "i_NPSELECT_RF_STRING_REPLACE1": 1, + "i_NPSELECT_RF_STRING_REPLACE0": 1, + "i_SELECT_RF_STRING_REPLACE": 1, + "i_SELECT_RF_STRING_REPLACE3": 1, + "i_SELECT_RF_STRING_REPLACE4": 1, + "i_SELECT_RF_STRING_REPLACE5": 1, + "i_SELECT_RF_STRING_REPLACE2": 1, + "i_SELECT_RF_STRING_REPLACE1": 1, + "i_SELECT_RF_STRING_REPLACE0": 1, + "i_SUBSTR_": 6, + "rfString_Strip": 2, + "rfString_Fwrite": 2, + "i_NPSELECT_RF_STRING_FWRITE": 1, + "i_NPSELECT_RF_STRING_FWRITE1": 1, + "i_NPSELECT_RF_STRING_FWRITE0": 1, + "i_SELECT_RF_STRING_FWRITE": 1, + "i_SELECT_RF_STRING_FWRITE3": 1, + "i_STR_": 8, + "i_ENCODING_": 4, + "i_SELECT_RF_STRING_FWRITE2": 1, + "i_SELECT_RF_STRING_FWRITE1": 1, + "i_SELECT_RF_STRING_FWRITE0": 1, + "rfString_Fwrite_fUTF8": 1, + "closing": 1, + "#error": 4, + "Attempted": 1, + "manipulation": 1, + "flag": 1, + "off.": 1, + "Rebuild": 1, + "added": 1, + "you": 1, + "#endif//": 1, + "PY_SSIZE_T_CLEAN": 1, + "Py_PYTHON_H": 1, + "Python": 2, + "headers": 1, + "compile": 1, + "extensions": 1, + "please": 1, + "install": 1, + "development": 1, + "Python.": 1, + "PY_VERSION_HEX": 11, + "Cython": 1, + "requires": 1, + ".": 1, + "offsetof": 2, + "member": 2, + "type*": 1, + "WIN32": 2, + "MS_WINDOWS": 2, + "__stdcall": 2, + "__cdecl": 2, + "__fastcall": 2, + "DL_IMPORT": 2, + "DL_EXPORT": 2, + "PY_LONG_LONG": 5, + "LONG_LONG": 1, + "Py_HUGE_VAL": 2, + "HUGE_VAL": 1, + "PYPY_VERSION": 1, + "CYTHON_COMPILING_IN_PYPY": 3, + "CYTHON_COMPILING_IN_CPYTHON": 6, + "Py_ssize_t": 35, + "PY_SSIZE_T_MAX": 1, + "INT_MAX": 1, + "PY_SSIZE_T_MIN": 1, + "INT_MIN": 1, + "PY_FORMAT_SIZE_T": 1, + "CYTHON_FORMAT_SSIZE_T": 2, + "PyInt_FromSsize_t": 6, + "PyInt_FromLong": 3, + "PyInt_AsSsize_t": 3, + "__Pyx_PyInt_AsInt": 2, + "PyNumber_Index": 1, + "PyNumber_Check": 2, + "PyFloat_Check": 2, + "PyNumber_Int": 1, + "PyErr_Format": 4, + "PyExc_TypeError": 4, + "Py_TYPE": 7, + "tp_name": 4, + "PyObject*": 24, + "__Pyx_PyIndex_Check": 3, + "PyComplex_Check": 1, + "PyIndex_Check": 2, + "PyErr_WarnEx": 1, + "category": 2, + "stacklevel": 1, + "PyErr_Warn": 1, + "__PYX_BUILD_PY_SSIZE_T": 2, + "Py_REFCNT": 1, + "ob_refcnt": 1, + "ob_type": 7, + "Py_SIZE": 1, + "PyVarObject*": 1, + "ob_size": 1, + "PyVarObject_HEAD_INIT": 1, + "PyObject_HEAD_INIT": 1, + "PyType_Modified": 1, + "PyObject": 276, + "itemsize": 1, + "readonly": 1, + "ndim": 2, + "*shape": 1, + "*strides": 1, + "*suboffsets": 1, + "*internal": 1, + "Py_buffer": 6, + "PyBUF_SIMPLE": 1, + "PyBUF_WRITABLE": 3, + "PyBUF_FORMAT": 3, + "PyBUF_ND": 2, + "PyBUF_STRIDES": 6, + "PyBUF_C_CONTIGUOUS": 1, + "PyBUF_F_CONTIGUOUS": 1, + "PyBUF_ANY_CONTIGUOUS": 1, + "PyBUF_INDIRECT": 2, + "PyBUF_RECORDS": 1, + "PyBUF_FULL": 1, + "PY_MAJOR_VERSION": 13, + "__Pyx_BUILTIN_MODULE_NAME": 2, + "__Pyx_PyCode_New": 2, + "l": 7, + "fv": 4, + "cell": 4, + "fline": 4, + "lnos": 4, + "PyCode_New": 2, + "PY_MINOR_VERSION": 1, + "PyUnicode_FromString": 2, + "PyUnicode_Decode": 1, + "Py_TPFLAGS_CHECKTYPES": 1, + "Py_TPFLAGS_HAVE_INDEX": 1, + "Py_TPFLAGS_HAVE_NEWBUFFER": 1, + "PyUnicode_KIND": 1, + "CYTHON_PEP393_ENABLED": 2, + "__Pyx_PyUnicode_READY": 2, + "op": 8, + "PyUnicode_IS_READY": 1, + "_PyUnicode_Ready": 1, + "__Pyx_PyUnicode_GET_LENGTH": 2, + "PyUnicode_GET_LENGTH": 1, + "__Pyx_PyUnicode_READ_CHAR": 2, + "PyUnicode_READ_CHAR": 1, + "__Pyx_PyUnicode_READ": 2, + "PyUnicode_READ": 1, + "PyUnicode_GET_SIZE": 1, + "Py_UCS4": 2, + "PyUnicode_AS_UNICODE": 1, + "Py_UNICODE*": 1, + "PyBaseString_Type": 1, + "PyUnicode_Type": 2, + "PyStringObject": 2, + "PyUnicodeObject": 1, + "PyString_Type": 2, + "PyString_Check": 2, + "PyUnicode_Check": 1, + "PyString_CheckExact": 2, + "PyUnicode_CheckExact": 1, + "PyBytesObject": 1, + "PyBytes_Type": 1, + "PyBytes_Check": 1, + "PyBytes_CheckExact": 1, + "PyBytes_FromString": 2, + "PyString_FromString": 2, + "PyBytes_FromStringAndSize": 1, + "PyString_FromStringAndSize": 1, + "PyBytes_FromFormat": 1, + "PyString_FromFormat": 1, + "PyBytes_DecodeEscape": 1, + "PyString_DecodeEscape": 1, + "PyBytes_AsString": 2, + "PyString_AsString": 1, + "PyBytes_AsStringAndSize": 1, + "PyString_AsStringAndSize": 1, + "PyBytes_Size": 1, + "PyString_Size": 1, + "PyBytes_AS_STRING": 1, + "PyString_AS_STRING": 1, + "PyBytes_GET_SIZE": 1, + "PyString_GET_SIZE": 1, + "PyBytes_Repr": 1, + "PyString_Repr": 1, + "PyBytes_Concat": 1, + "PyString_Concat": 1, + "PyBytes_ConcatAndDel": 1, + "PyString_ConcatAndDel": 1, + "PySet_Check": 1, + "PyObject_TypeCheck": 3, + "PySet_Type": 2, + "PyFrozenSet_Check": 1, + "PyFrozenSet_Type": 1, + "PySet_CheckExact": 2, + "__Pyx_TypeCheck": 1, + "PyTypeObject": 25, + "PyIntObject": 1, + "PyLongObject": 2, + "PyInt_Type": 1, + "PyLong_Type": 1, + "PyInt_Check": 1, + "PyLong_Check": 1, + "PyInt_CheckExact": 1, + "PyLong_CheckExact": 1, + "PyInt_FromString": 1, + "PyLong_FromString": 1, + "PyInt_FromUnicode": 1, + "PyLong_FromUnicode": 1, + "PyLong_FromLong": 1, + "PyInt_FromSize_t": 1, + "PyLong_FromSize_t": 1, + "PyLong_FromSsize_t": 1, + "PyInt_AsLong": 2, + "PyLong_AsLong": 1, + "PyInt_AS_LONG": 1, + "PyLong_AS_LONG": 1, + "PyLong_AsSsize_t": 1, + "PyInt_AsUnsignedLongMask": 1, + "PyLong_AsUnsignedLongMask": 1, + "PyInt_AsUnsignedLongLongMask": 1, + "PyLong_AsUnsignedLongLongMask": 1, + "PyBoolObject": 1, + "Py_hash_t": 1, + "__Pyx_PyInt_FromHash_t": 2, + "__Pyx_PyInt_AsHash_t": 2, + "__Pyx_PySequence_GetSlice": 2, + "PySequence_GetSlice": 2, + "__Pyx_PySequence_SetSlice": 2, + "PySequence_SetSlice": 2, + "__Pyx_PySequence_DelSlice": 2, + "PySequence_DelSlice": 2, + "PyErr_SetString": 3, + "PyExc_SystemError": 3, + "tp_as_mapping": 3, + "PyMethod_New": 2, + "func": 3, + "klass": 1, + "PyInstanceMethod_New": 1, + "__Pyx_GetAttrString": 2, + "PyObject_GetAttrString": 2, + "__Pyx_SetAttrString": 2, + "PyObject_SetAttrString": 2, + "__Pyx_DelAttrString": 2, + "PyObject_DelAttrString": 2, + "__Pyx_NAMESTR": 2, + "__Pyx_DOCSTR": 2, + "__Pyx_PyNumber_Divide": 2, + "y": 14, + "PyNumber_TrueDivide": 1, + "__Pyx_PyNumber_InPlaceDivide": 2, + "PyNumber_InPlaceTrueDivide": 1, + "PyNumber_Divide": 1, + "PyNumber_InPlaceDivide": 1, + "__PYX_EXTERN_C": 3, + "_USE_MATH_DEFINES": 1, + "__PYX_HAVE__sklearn__linear_model__sgd_fast": 1, + "__PYX_HAVE_API__sklearn__linear_model__sgd_fast": 1, + "_OPENMP": 1, + "": 1, + "PYREX_WITHOUT_ASSERTIONS": 1, + "CYTHON_WITHOUT_ASSERTIONS": 1, + "CYTHON_INLINE": 65, + "__inline__": 1, + "__inline": 1, + "__STDC_VERSION__": 2, + "L": 1, + "CYTHON_UNUSED": 14, + "**p": 1, + "is_unicode": 1, + "is_str": 1, + "intern": 1, + "__Pyx_StringTabEntry": 2, + "__Pyx_PyBytes_FromUString": 1, + "__Pyx_PyBytes_AsUString": 1, + "__Pyx_Owned_Py_None": 1, + "Py_INCREF": 10, + "Py_None": 8, + "__Pyx_PyBool_FromLong": 1, + "Py_True": 2, + "Py_False": 2, + "__Pyx_PyObject_IsTrue": 1, + "__Pyx_PyNumber_Int": 1, + "__Pyx_PyIndex_AsSsize_t": 1, + "__Pyx_PyInt_FromSize_t": 1, + "__Pyx_PyInt_AsSize_t": 1, + "__pyx_PyFloat_AsDouble": 12, + "PyFloat_CheckExact": 1, + "PyFloat_AS_DOUBLE": 1, + "PyFloat_AsDouble": 2, + "__pyx_PyFloat_AsFloat": 1, + "__builtin_expect": 2, + "*__pyx_m": 1, + "*__pyx_b": 1, + "*__pyx_empty_tuple": 1, + "*__pyx_empty_bytes": 1, + "__pyx_lineno": 58, + "__pyx_clineno": 58, + "__pyx_cfilenm": 1, + "__FILE__": 4, + "*__pyx_filename": 7, + "CYTHON_CCOMPLEX": 12, + "_Complex_I": 3, + "": 1, + "": 1, + "__sun__": 1, + "fj": 1, + "*__pyx_f": 1, + "IS_UNSIGNED": 1, + "__Pyx_StructField_": 2, + "__PYX_BUF_FLAGS_PACKED_STRUCT": 1, + "__Pyx_StructField_*": 1, + "fields": 1, + "arraysize": 1, + "typegroup": 1, + "is_unsigned": 1, + "__Pyx_TypeInfo": 2, + "__Pyx_TypeInfo*": 2, + "offset": 1, + "__Pyx_StructField": 2, + "__Pyx_StructField*": 1, + "field": 1, + "parent_offset": 1, + "__Pyx_BufFmt_StackElem": 1, + "root": 1, + "__Pyx_BufFmt_StackElem*": 2, + "fmt_offset": 1, + "new_count": 1, + "enc_count": 1, + "struct_alignment": 1, + "is_complex": 1, + "enc_type": 1, + "new_packmode": 1, + "enc_packmode": 1, + "is_valid_array": 1, + "__Pyx_BufFmt_Context": 1, + "npy_int8": 1, + "__pyx_t_5numpy_int8_t": 1, + "npy_int16": 1, + "__pyx_t_5numpy_int16_t": 1, + "npy_int32": 1, + "__pyx_t_5numpy_int32_t": 4, + "npy_int64": 1, + "__pyx_t_5numpy_int64_t": 1, + "npy_uint8": 1, + "__pyx_t_5numpy_uint8_t": 1, + "npy_uint16": 1, + "__pyx_t_5numpy_uint16_t": 1, + "npy_uint32": 1, + "__pyx_t_5numpy_uint32_t": 1, + "npy_uint64": 1, + "__pyx_t_5numpy_uint64_t": 1, + "npy_float32": 1, + "__pyx_t_5numpy_float32_t": 1, + "npy_float64": 1, + "__pyx_t_5numpy_float64_t": 4, + "npy_long": 1, + "__pyx_t_5numpy_int_t": 1, + "npy_longlong": 2, + "__pyx_t_5numpy_long_t": 1, + "__pyx_t_5numpy_longlong_t": 1, + "npy_ulong": 1, + "__pyx_t_5numpy_uint_t": 1, + "npy_ulonglong": 2, + "__pyx_t_5numpy_ulong_t": 1, + "__pyx_t_5numpy_ulonglong_t": 1, + "npy_intp": 1, + "__pyx_t_5numpy_intp_t": 1, + "npy_uintp": 1, + "__pyx_t_5numpy_uintp_t": 1, + "npy_double": 2, + "__pyx_t_5numpy_float_t": 1, + "__pyx_t_5numpy_double_t": 1, + "npy_longdouble": 1, + "__pyx_t_5numpy_longdouble_t": 1, + "__pyx_t_7sklearn_5utils_13weight_vector_DOUBLE": 2, + "__pyx_t_7sklearn_5utils_13weight_vector_INTEGER": 1, + "__pyx_t_7sklearn_5utils_11seq_dataset_DOUBLE": 7, + "__pyx_t_7sklearn_5utils_11seq_dataset_INTEGER": 7, + "__pyx_t_7sklearn_12linear_model_8sgd_fast_DOUBLE": 4, + "__pyx_t_7sklearn_12linear_model_8sgd_fast_INTEGER": 3, + "std": 8, + "complex": 2, + "__pyx_t_float_complex": 27, + "_Complex": 2, + "real": 2, + "imag": 2, + "__pyx_t_double_complex": 27, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_LossFunction": 15, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Regression": 11, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Huber": 6, + "__pyx_obj_7sklearn_5utils_11seq_dataset_SequentialDataset": 5, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_EpsilonInsensitive": 6, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Classification": 7, + "__pyx_obj_7sklearn_5utils_11seq_dataset_CSRDataset": 2, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Log": 5, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Hinge": 6, + "__pyx_obj_7sklearn_5utils_11seq_dataset_ArrayDataset": 2, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_SquaredHinge": 6, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_ModifiedHuber": 5, + "__pyx_obj_7sklearn_5utils_13weight_vector_WeightVector": 3, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_SquaredLoss": 5, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_SquaredEpsilonInsensitive": 6, + "npy_cfloat": 1, + "__pyx_t_5numpy_cfloat_t": 1, + "npy_cdouble": 2, + "__pyx_t_5numpy_cdouble_t": 1, + "npy_clongdouble": 1, + "__pyx_t_5numpy_clongdouble_t": 1, + "__pyx_t_5numpy_complex_t": 1, + "PyObject_HEAD": 3, + "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_LossFunction": 5, + "*__pyx_vtab": 3, + "__pyx_base": 18, + "__pyx_vtabstruct_7sklearn_5utils_11seq_dataset_SequentialDataset": 4, + "n_samples": 1, + "epsilon": 2, + "current_index": 2, + "stride": 2, + "*X_data_ptr": 2, + "*X_indptr_ptr": 1, + "*X_indices_ptr": 1, + "*Y_data_ptr": 2, + "PyArrayObject": 8, + "*feature_indices": 2, + "*feature_indices_ptr": 2, + "*index": 2, + "*index_data_ptr": 2, + "*sample_weight_data": 2, + "threshold": 2, + "n_features": 2, + "__pyx_vtabstruct_7sklearn_5utils_13weight_vector_WeightVector": 3, + "*w_data_ptr": 1, + "wscale": 1, + "sq_norm": 1, + "*__pyx_vtabptr_7sklearn_5utils_11seq_dataset_SequentialDataset": 1, + "__pyx_vtabstruct_7sklearn_5utils_11seq_dataset_ArrayDataset": 2, + "*__pyx_vtabptr_7sklearn_5utils_11seq_dataset_ArrayDataset": 1, + "__pyx_vtabstruct_7sklearn_5utils_11seq_dataset_CSRDataset": 2, + "*__pyx_vtabptr_7sklearn_5utils_11seq_dataset_CSRDataset": 1, + "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_EpsilonInsensitive": 2, + "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_Regression": 3, + "*__pyx_vtabptr_7sklearn_12linear_model_8sgd_fast_EpsilonInsensitive": 1, + "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_SquaredHinge": 2, + "*__pyx_vtabptr_7sklearn_12linear_model_8sgd_fast_SquaredHinge": 1, + "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_Huber": 2, + "*__pyx_vtabptr_7sklearn_12linear_model_8sgd_fast_Huber": 1, + "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_Hinge": 2, + "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_Classification": 1, + "*__pyx_vtabptr_7sklearn_12linear_model_8sgd_fast_Hinge": 1, + "*__pyx_vtabptr_7sklearn_5utils_13weight_vector_WeightVector": 1, + "CYTHON_REFNANNY": 3, + "__Pyx_RefNannyAPIStruct": 3, + "*__Pyx_RefNanny": 1, + "*__Pyx_RefNannyImportAPI": 1, + "*modname": 1, + "__Pyx_RefNannyDeclarations": 11, + "*__pyx_refnanny": 1, + "WITH_THREAD": 1, + "__Pyx_RefNannySetupContext": 12, + "acquire_gil": 4, + "PyGILState_STATE": 1, + "__pyx_gilstate_save": 2, + "PyGILState_Ensure": 1, + "__pyx_refnanny": 8, + "__Pyx_RefNanny": 8, + "SetupContext": 3, + "PyGILState_Release": 1, + "__Pyx_RefNannyFinishContext": 14, + "FinishContext": 1, + "__Pyx_INCREF": 6, + "INCREF": 1, + "__Pyx_DECREF": 20, + "DECREF": 1, + "__Pyx_GOTREF": 24, + "GOTREF": 1, + "__Pyx_GIVEREF": 9, + "GIVEREF": 1, + "__Pyx_XINCREF": 2, + "__Pyx_XDECREF": 20, + "__Pyx_XGOTREF": 2, + "__Pyx_XGIVEREF": 5, + "Py_DECREF": 2, + "Py_XINCREF": 1, + "Py_XDECREF": 1, + "__Pyx_CLEAR": 1, + "__Pyx_XCLEAR": 1, + "*__Pyx_GetName": 1, + "__Pyx_ErrRestore": 1, + "*type": 4, + "*tb": 2, + "__Pyx_ErrFetch": 1, + "**type": 1, + "**value": 1, + "**tb": 1, + "__Pyx_Raise": 4, + "*cause": 1, + "__Pyx_RaiseArgtupleInvalid": 7, + "func_name": 2, + "num_min": 1, + "num_max": 1, + "num_found": 1, + "__Pyx_RaiseDoubleKeywordsError": 1, + "kw_name": 1, + "__Pyx_ParseOptionalKeywords": 4, + "*kwds": 1, + "**argnames": 1, + "*kwds2": 1, + "*values": 1, + "num_pos_args": 1, + "function_name": 1, + "__Pyx_ArgTypeTest": 1, + "none_allowed": 1, + "__Pyx_GetBufferAndValidate": 1, + "Py_buffer*": 2, + "dtype": 1, + "nd": 1, + "cast": 1, + "__Pyx_SafeReleaseBuffer": 1, + "__Pyx_TypeTest": 1, + "__Pyx_RaiseBufferFallbackError": 1, + "*__Pyx_GetItemInt_Generic": 1, + "*r": 7, + "PyObject_GetItem": 1, + "__Pyx_GetItemInt_List": 1, + "to_py_func": 6, + "__Pyx_GetItemInt_List_Fast": 1, + "__Pyx_GetItemInt_Generic": 6, + "*__Pyx_GetItemInt_List_Fast": 1, + "PyList_GET_SIZE": 5, + "PyList_GET_ITEM": 3, + "PySequence_GetItem": 3, + "__Pyx_GetItemInt_Tuple": 1, + "__Pyx_GetItemInt_Tuple_Fast": 1, + "*__Pyx_GetItemInt_Tuple_Fast": 1, + "PyTuple_GET_SIZE": 14, + "PyTuple_GET_ITEM": 15, + "__Pyx_GetItemInt": 1, + "__Pyx_GetItemInt_Fast": 2, + "PyList_CheckExact": 1, + "PyTuple_CheckExact": 1, + "PySequenceMethods": 1, + "*m": 1, + "tp_as_sequence": 1, + "sq_item": 2, + "sq_length": 2, + "PySequence_Check": 1, + "__Pyx_RaiseTooManyValuesError": 1, + "expected": 2, + "__Pyx_RaiseNeedMoreValuesError": 1, + "__Pyx_RaiseNoneNotIterableError": 1, + "__Pyx_IterFinish": 1, + "__Pyx_IternextUnpackEndCheck": 1, + "*retval": 1, + "shape": 1, + "strides": 1, + "suboffsets": 1, + "__Pyx_Buf_DimInfo": 2, + "pybuffer": 1, + "__Pyx_Buffer": 2, + "*rcbuffer": 1, + "diminfo": 1, + "__Pyx_LocalBuf_ND": 1, + "__Pyx_GetBuffer": 2, + "*view": 2, + "__Pyx_ReleaseBuffer": 2, + "PyObject_GetBuffer": 1, + "PyBuffer_Release": 1, + "__Pyx_zeros": 1, + "__Pyx_minusones": 1, + "*__Pyx_Import": 1, + "*from_list": 1, + "__Pyx_RaiseImportError": 1, + "__Pyx_Print": 1, + "__pyx_print": 1, + "__pyx_print_kwargs": 1, + "__Pyx_PrintOne": 1, + "__Pyx_CREAL": 4, + ".real": 3, + "__Pyx_CIMAG": 4, + ".imag": 3, + "__real__": 1, + "__imag__": 1, + "__Pyx_SET_CREAL": 2, + "__Pyx_SET_CIMAG": 2, + "__pyx_t_float_complex_from_parts": 1, + "__Pyx_c_eqf": 2, + "__Pyx_c_sumf": 2, + "__Pyx_c_difff": 2, + "__Pyx_c_prodf": 2, + "__Pyx_c_quotf": 2, + "__Pyx_c_negf": 2, + "__Pyx_c_is_zerof": 3, + "__Pyx_c_conjf": 3, + "conj": 3, + "__Pyx_c_absf": 3, + "abs": 2, + "__Pyx_c_powf": 3, + "pow": 2, + "conjf": 1, + "cabsf": 1, + "cpowf": 1, + "__pyx_t_double_complex_from_parts": 1, + "__Pyx_c_eq": 2, + "__Pyx_c_sum": 2, + "__Pyx_c_diff": 2, + "__Pyx_c_prod": 2, + "__Pyx_c_quot": 2, + "__Pyx_c_neg": 2, + "__Pyx_c_is_zero": 3, + "__Pyx_c_conj": 3, + "__Pyx_c_abs": 3, + "__Pyx_c_pow": 3, + "cabs": 1, + "cpow": 1, + "__Pyx_PyInt_AsUnsignedChar": 1, + "__Pyx_PyInt_AsUnsignedShort": 1, + "__Pyx_PyInt_AsUnsignedInt": 1, + "__Pyx_PyInt_AsChar": 1, + "__Pyx_PyInt_AsShort": 1, + "signed": 5, + "__Pyx_PyInt_AsSignedChar": 1, + "__Pyx_PyInt_AsSignedShort": 1, + "__Pyx_PyInt_AsSignedInt": 1, + "__Pyx_PyInt_AsLongDouble": 1, + "__Pyx_PyInt_AsUnsignedLong": 1, + "__Pyx_PyInt_AsUnsignedLongLong": 1, + "__Pyx_PyInt_AsLong": 1, + "__Pyx_PyInt_AsLongLong": 1, + "__Pyx_PyInt_AsSignedLong": 1, + "__Pyx_PyInt_AsSignedLongLong": 1, + "__Pyx_WriteUnraisable": 4, + "clineno": 1, + "lineno": 1, + "*filename": 2, + "__Pyx_check_binary_version": 1, + "__Pyx_SetVtable": 1, + "*vtable": 1, + "__Pyx_PyIdentifier_FromString": 3, + "*__Pyx_ImportModule": 1, + "*__Pyx_ImportType": 1, + "*module_name": 1, + "*class_name": 1, + "__Pyx_GetVtable": 1, + "code_line": 4, + "PyCodeObject*": 2, + "code_object": 2, + "__Pyx_CodeObjectCacheEntry": 1, + "__Pyx_CodeObjectCache": 2, + "max_count": 1, + "__Pyx_CodeObjectCacheEntry*": 2, + "entries": 2, + "__pyx_code_cache": 1, + "__pyx_bisect_code_objects": 1, + "PyCodeObject": 1, + "*__pyx_find_code_object": 1, + "__pyx_insert_code_object": 1, + "__Pyx_AddTraceback": 7, + "*funcname": 1, + "c_line": 1, + "py_line": 1, + "__Pyx_InitStrings": 1, + "*__pyx_ptype_7cpython_4type_type": 1, + "*__pyx_ptype_5numpy_dtype": 1, + "*__pyx_ptype_5numpy_flatiter": 1, + "*__pyx_ptype_5numpy_broadcast": 1, + "*__pyx_ptype_5numpy_ndarray": 1, + "*__pyx_ptype_5numpy_ufunc": 1, + "*__pyx_f_5numpy__util_dtypestring": 1, + "PyArray_Descr": 1, + "*__pyx_ptype_7sklearn_5utils_13weight_vector_WeightVector": 1, + "*__pyx_ptype_7sklearn_5utils_11seq_dataset_SequentialDataset": 1, + "*__pyx_ptype_7sklearn_5utils_11seq_dataset_ArrayDataset": 1, + "*__pyx_ptype_7sklearn_5utils_11seq_dataset_CSRDataset": 1, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_LossFunction": 1, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Regression": 1, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Classification": 1, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_ModifiedHuber": 1, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Hinge": 1, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_SquaredHinge": 1, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Log": 1, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_SquaredLoss": 1, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Huber": 1, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_EpsilonInsensitive": 1, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_SquaredEpsilonInsensitive": 1, + "__pyx_f_7sklearn_12linear_model_8sgd_fast_max": 1, + "__pyx_f_7sklearn_12linear_model_8sgd_fast_min": 1, + "__pyx_f_7sklearn_12linear_model_8sgd_fast_sqnorm": 1, + "__pyx_f_7sklearn_12linear_model_8sgd_fast_l1penalty": 1, + "__Pyx_TypeInfo_nn___pyx_t_7sklearn_12linear_model_8sgd_fast_DOUBLE": 1, + "__Pyx_MODULE_NAME": 1, + "__pyx_module_is_main_sklearn__linear_model__sgd_fast": 1, + "*__pyx_builtin_NotImplementedError": 1, + "*__pyx_builtin_range": 1, + "*__pyx_builtin_ValueError": 1, + "*__pyx_builtin_RuntimeError": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12LossFunction_loss": 2, + "*__pyx_v_self": 52, + "__pyx_v_p": 46, + "__pyx_v_y": 46, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12LossFunction_2dloss": 2, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_10Regression_loss": 2, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_10Regression_2dloss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_14Classification_loss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_14Classification_2dloss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_13ModifiedHuber_loss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_13ModifiedHuber_2dloss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_13ModifiedHuber_4__reduce__": 1, + "__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Hinge___init__": 1, + "__pyx_v_threshold": 2, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Hinge_2loss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Hinge_4dloss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Hinge_6__reduce__": 1, + "__pyx_pf_7sklearn_12linear_model_8sgd_fast_12SquaredHinge___init__": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12SquaredHinge_2loss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12SquaredHinge_4dloss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12SquaredHinge_6__reduce__": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_3Log_loss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_3Log_2dloss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_3Log_4__reduce__": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_11SquaredLoss_loss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_11SquaredLoss_2dloss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_11SquaredLoss_4__reduce__": 1, + "__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Huber___init__": 1, + "__pyx_v_c": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Huber_2loss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Huber_4dloss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Huber_6__reduce__": 1, + "__pyx_pf_7sklearn_12linear_model_8sgd_fast_18EpsilonInsensitive___init__": 1, + "__pyx_v_epsilon": 2, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_18EpsilonInsensitive_2loss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_18EpsilonInsensitive_4dloss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_18EpsilonInsensitive_6__reduce__": 1, + "__pyx_pf_7sklearn_12linear_model_8sgd_fast_25SquaredEpsilonInsensitive___init__": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_25SquaredEpsilonInsensitive_2loss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_25SquaredEpsilonInsensitive_4dloss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_25SquaredEpsilonInsensitive_6__reduce__": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_plain_sgd": 1, + "*__pyx_self": 1, + "*__pyx_v_weights": 1, + "__pyx_v_intercept": 1, + "*__pyx_v_loss": 1, + "__pyx_v_penalty_type": 1, + "__pyx_v_alpha": 1, + "__pyx_v_C": 1, + "__pyx_v_rho": 1, + "*__pyx_v_dataset": 1, + "__pyx_v_n_iter": 1, + "__pyx_v_fit_intercept": 1, + "__pyx_v_verbose": 1, + "__pyx_v_shuffle": 1, + "*__pyx_v_seed": 1, + "__pyx_v_weight_pos": 1, + "__pyx_v_weight_neg": 1, + "__pyx_v_learning_rate": 1, + "__pyx_v_eta0": 1, + "__pyx_v_power_t": 1, + "__pyx_v_t": 1, + "__pyx_v_intercept_decay": 1, + "__pyx_pf_5numpy_7ndarray___getbuffer__": 1, + "*__pyx_v_info": 2, + "__pyx_v_flags": 1, + "__pyx_pf_5numpy_7ndarray_2__releasebuffer__": 1, + "__pyx_k_1": 1, + "__pyx_k_2": 1, + "__pyx_k_3": 1, + "__pyx_k_4": 1, + "__pyx_k_6": 1, + "__pyx_k_8": 1, + "__pyx_k_10": 1, + "__pyx_k_12": 1, + "__pyx_k_13": 1, + "__pyx_k_16": 1, + "__pyx_k_20": 1, + "__pyx_k_21": 1, + "__pyx_k__B": 1, + "__pyx_k__C": 1, + "__pyx_k__H": 1, + "__pyx_k__I": 1, + "__pyx_k__L": 1, + "__pyx_k__O": 1, + "__pyx_k__Q": 1, + "__pyx_k__b": 1, + "__pyx_k__c": 1, + "__pyx_k__d": 1, + "__pyx_k__f": 1, + "__pyx_k__g": 1, + "__pyx_k__h": 1, + "__pyx_k__i": 1, + "__pyx_k__l": 1, + "__pyx_k__p": 1, + "__pyx_k__q": 1, + "__pyx_k__t": 1, + "__pyx_k__u": 1, + "__pyx_k__w": 1, + "__pyx_k__y": 1, + "__pyx_k__Zd": 1, + "__pyx_k__Zf": 1, + "__pyx_k__Zg": 1, + "__pyx_k__np": 1, + "__pyx_k__any": 1, + "__pyx_k__eta": 1, + "__pyx_k__rho": 1, + "__pyx_k__sys": 1, + "__pyx_k__eta0": 1, + "__pyx_k__loss": 1, + "__pyx_k__seed": 1, + "__pyx_k__time": 1, + "__pyx_k__xnnz": 1, + "__pyx_k__alpha": 1, + "__pyx_k__count": 1, + "__pyx_k__dloss": 1, + "__pyx_k__dtype": 1, + "__pyx_k__epoch": 1, + "__pyx_k__isinf": 1, + "__pyx_k__isnan": 1, + "__pyx_k__numpy": 1, + "__pyx_k__order": 1, + "__pyx_k__range": 1, + "__pyx_k__shape": 1, + "__pyx_k__zeros": 1, + "__pyx_k__n_iter": 1, + "__pyx_k__update": 1, + "__pyx_k__dataset": 1, + "__pyx_k__epsilon": 1, + "__pyx_k__float64": 1, + "__pyx_k__nonzero": 1, + "__pyx_k__power_t": 1, + "__pyx_k__shuffle": 1, + "__pyx_k__sumloss": 1, + "__pyx_k__t_start": 1, + "__pyx_k__verbose": 1, + "__pyx_k__weights": 1, + "__pyx_k____main__": 1, + "__pyx_k____test__": 1, + "__pyx_k__is_hinge": 1, + "__pyx_k__intercept": 1, + "__pyx_k__n_samples": 1, + "__pyx_k__plain_sgd": 1, + "__pyx_k__threshold": 1, + "__pyx_k__x_ind_ptr": 1, + "__pyx_k__ValueError": 1, + "__pyx_k__n_features": 1, + "__pyx_k__q_data_ptr": 1, + "__pyx_k__weight_neg": 1, + "__pyx_k__weight_pos": 1, + "__pyx_k__x_data_ptr": 1, + "__pyx_k__RuntimeError": 1, + "__pyx_k__class_weight": 1, + "__pyx_k__penalty_type": 1, + "__pyx_k__fit_intercept": 1, + "__pyx_k__learning_rate": 1, + "__pyx_k__sample_weight": 1, + "__pyx_k__intercept_decay": 1, + "__pyx_k__NotImplementedError": 1, + "*__pyx_kp_s_1": 1, + "*__pyx_kp_u_10": 1, + "*__pyx_kp_u_12": 1, + "*__pyx_kp_u_13": 1, + "*__pyx_kp_u_16": 1, + "*__pyx_kp_s_2": 1, + "*__pyx_kp_s_20": 1, + "*__pyx_n_s_21": 1, + "*__pyx_kp_s_3": 1, + "*__pyx_kp_s_4": 1, + "*__pyx_kp_u_6": 1, + "*__pyx_kp_u_8": 1, + "*__pyx_n_s__C": 1, + "*__pyx_n_s__NotImplementedError": 1, + "*__pyx_n_s__RuntimeError": 1, + "*__pyx_n_s__ValueError": 1, + "*__pyx_n_s____main__": 1, + "*__pyx_n_s____test__": 1, + "*__pyx_n_s__alpha": 1, + "*__pyx_n_s__any": 1, + "*__pyx_n_s__c": 1, + "*__pyx_n_s__class_weight": 1, + "*__pyx_n_s__count": 1, + "*__pyx_n_s__dataset": 1, + "*__pyx_n_s__dloss": 1, + "*__pyx_n_s__dtype": 1, + "*__pyx_n_s__epoch": 1, + "*__pyx_n_s__epsilon": 1, + "*__pyx_n_s__eta": 1, + "*__pyx_n_s__eta0": 1, + "*__pyx_n_s__fit_intercept": 1, + "*__pyx_n_s__float64": 1, + "*__pyx_n_s__i": 1, + "*__pyx_n_s__intercept": 1, + "*__pyx_n_s__intercept_decay": 1, + "*__pyx_n_s__is_hinge": 1, + "*__pyx_n_s__isinf": 1, + "*__pyx_n_s__isnan": 1, + "*__pyx_n_s__learning_rate": 1, + "*__pyx_n_s__loss": 1, + "*__pyx_n_s__n_features": 1, + "*__pyx_n_s__n_iter": 1, + "*__pyx_n_s__n_samples": 1, + "*__pyx_n_s__nonzero": 1, + "*__pyx_n_s__np": 1, + "*__pyx_n_s__numpy": 1, + "*__pyx_n_s__order": 1, + "*__pyx_n_s__p": 1, + "*__pyx_n_s__penalty_type": 1, + "*__pyx_n_s__plain_sgd": 1, + "*__pyx_n_s__power_t": 1, + "*__pyx_n_s__q": 1, + "*__pyx_n_s__q_data_ptr": 1, + "*__pyx_n_s__range": 1, + "*__pyx_n_s__rho": 1, + "*__pyx_n_s__sample_weight": 1, + "*__pyx_n_s__seed": 1, + "*__pyx_n_s__shape": 1, + "*__pyx_n_s__shuffle": 1, + "*__pyx_n_s__sumloss": 1, + "*__pyx_n_s__sys": 1, + "*__pyx_n_s__t": 1, + "*__pyx_n_s__t_start": 1, + "*__pyx_n_s__threshold": 1, + "*__pyx_n_s__time": 1, + "*__pyx_n_s__u": 1, + "*__pyx_n_s__update": 1, + "*__pyx_n_s__verbose": 1, + "*__pyx_n_s__w": 1, + "*__pyx_n_s__weight_neg": 1, + "*__pyx_n_s__weight_pos": 1, + "*__pyx_n_s__weights": 1, + "*__pyx_n_s__x_data_ptr": 1, + "*__pyx_n_s__x_ind_ptr": 1, + "*__pyx_n_s__xnnz": 1, + "*__pyx_n_s__y": 1, + "*__pyx_n_s__zeros": 1, + "*__pyx_int_15": 1, + "*__pyx_k_tuple_5": 1, + "*__pyx_k_tuple_7": 1, + "*__pyx_k_tuple_9": 1, + "*__pyx_k_tuple_11": 1, + "*__pyx_k_tuple_14": 1, + "*__pyx_k_tuple_15": 1, + "*__pyx_k_tuple_17": 1, + "*__pyx_k_tuple_18": 1, + "*__pyx_k_codeobj_19": 1, + "*__pyx_pw_7sklearn_12linear_model_8sgd_fast_12LossFunction_1loss": 3, + "*__pyx_args": 9, + "*__pyx_kwds": 9, + "__pyx_f_7sklearn_12linear_model_8sgd_fast_12LossFunction_loss": 1, + "__pyx_skip_dispatch": 6, + "__pyx_r": 39, + "*__pyx_t_1": 6, + "*__pyx_t_2": 3, + "*__pyx_t_3": 3, + "*__pyx_t_4": 3, + "__pyx_t_5": 12, + "__pyx_v_self": 15, + "tp_dictoffset": 3, + "__pyx_t_1": 69, + "PyObject_GetAttr": 3, + "__pyx_n_s__loss": 2, + "__pyx_filename": 51, + "__pyx_f": 42, + "__pyx_L1_error": 33, + "PyCFunction_Check": 3, + "PyCFunction_GET_FUNCTION": 3, + "PyCFunction": 3, + "__pyx_pw_7sklearn_12linear_model_8sgd_fast_12LossFunction_1loss": 1, + "__pyx_t_2": 21, + "PyFloat_FromDouble": 9, + "__pyx_t_3": 39, + "__pyx_t_4": 27, + "PyTuple_New": 3, + "PyTuple_SET_ITEM": 6, + "PyObject_Call": 6, + "PyErr_Occurred": 9, + "__pyx_L0": 18, + "__pyx_builtin_NotImplementedError": 3, + "__pyx_empty_tuple": 3, + "__pyx_doc_7sklearn_12linear_model_8sgd_fast_12LossFunction_loss": 1, + "*__pyx_r": 6, + "**__pyx_pyargnames": 3, + "__pyx_n_s__p": 6, + "__pyx_n_s__y": 6, + "values": 30, + "__pyx_kwds": 15, + "kw_args": 15, + "pos_args": 12, + "__pyx_args": 21, + "__pyx_L5_argtuple_error": 12, + "PyDict_Size": 3, + "PyDict_GetItem": 6, + "__pyx_L3_error": 18, + "__pyx_pyargnames": 3, + "__pyx_L4_argument_unpacking_done": 6, + "__pyx_pf_7sklearn_12linear_model_8sgd_fast_12LossFunction_loss": 1, + "__pyx_vtab": 2, + "loss": 1, + "*__pyx_pw_7sklearn_12linear_model_8sgd_fast_12LossFunction_3dloss": 3, + "__pyx_f_7sklearn_12linear_model_8sgd_fast_12LossFunction_dloss": 1, + "__pyx_n_s__dloss": 1, + "__pyx_pw_7sklearn_12linear_model_8sgd_fast_12LossFunction_3dloss": 1, + "__pyx_doc_7sklearn_12linear_model_8sgd_fast_12LossFunction_2dloss": 1, + "__pyx_pf_7sklearn_12linear_model_8sgd_fast_12LossFunction_2dloss": 1, + "dloss": 1, + "*__pyx_pw_7sklearn_12linear_model_8sgd_fast_10Regression_1loss": 3, + "__pyx_f_7sklearn_12linear_model_8sgd_fast_10Regression_loss": 1, + "__pyx_pw_7sklearn_12linear_model_8sgd_fast_10Regression_1loss": 1, + "__pyx_pf_7sklearn_12linear_model_8sgd_fast_10Regression_loss": 1, + "__pyx_base.__pyx_vtab": 1, + "__pyx_base.loss": 1, + "__wglew_h__": 2, + "__WGLEW_H__": 1, + "__wglext_h_": 2, + "wglext.h": 1, + "wglew.h": 1, + "WINAPI": 119, + "": 1, + "GLEW_STATIC": 1, + "WGL_3DFX_multisample": 2, + "WGL_SAMPLE_BUFFERS_3DFX": 1, + "WGL_SAMPLES_3DFX": 1, + "WGLEW_3DFX_multisample": 1, + "WGLEW_GET_VAR": 49, + "__WGLEW_3DFX_multisample": 2, + "WGL_3DL_stereo_control": 2, + "WGL_STEREO_EMITTER_ENABLE_3DL": 1, + "WGL_STEREO_EMITTER_DISABLE_3DL": 1, + "WGL_STEREO_POLARITY_NORMAL_3DL": 1, + "WGL_STEREO_POLARITY_INVERT_3DL": 1, + "BOOL": 84, + "PFNWGLSETSTEREOEMITTERSTATE3DLPROC": 2, + "HDC": 65, + "hDC": 33, + "UINT": 30, + "uState": 1, + "wglSetStereoEmitterState3DL": 1, + "WGLEW_GET_FUN": 120, + "__wglewSetStereoEmitterState3DL": 2, + "WGLEW_3DL_stereo_control": 1, + "__WGLEW_3DL_stereo_control": 2, + "WGL_AMD_gpu_association": 2, + "WGL_GPU_VENDOR_AMD": 1, + "F00": 1, + "WGL_GPU_RENDERER_STRING_AMD": 1, + "F01": 1, + "WGL_GPU_OPENGL_VERSION_STRING_AMD": 1, + "F02": 1, + "WGL_GPU_FASTEST_TARGET_GPUS_AMD": 1, + "A2": 2, + "WGL_GPU_RAM_AMD": 1, + "A3": 2, + "WGL_GPU_CLOCK_AMD": 1, + "A4": 2, + "WGL_GPU_NUM_PIPES_AMD": 1, + "A5": 3, + "WGL_GPU_NUM_SIMD_AMD": 1, + "A6": 2, + "WGL_GPU_NUM_RB_AMD": 1, + "A7": 2, + "WGL_GPU_NUM_SPI_AMD": 1, + "A8": 2, + "VOID": 6, + "PFNWGLBLITCONTEXTFRAMEBUFFERAMDPROC": 2, + "HGLRC": 14, + "dstCtx": 1, + "GLint": 18, + "srcX0": 1, + "srcY0": 1, + "srcX1": 1, + "srcY1": 1, + "dstX0": 1, + "dstY0": 1, + "dstX1": 1, + "dstY1": 1, + "GLbitfield": 1, + "mask": 1, + "GLenum": 8, + "filter": 1, + "PFNWGLCREATEASSOCIATEDCONTEXTAMDPROC": 2, + "PFNWGLCREATEASSOCIATEDCONTEXTATTRIBSAMDPROC": 2, + "hShareContext": 2, + "attribList": 2, + "PFNWGLDELETEASSOCIATEDCONTEXTAMDPROC": 2, + "hglrc": 5, + "PFNWGLGETCONTEXTGPUIDAMDPROC": 2, + "PFNWGLGETCURRENTASSOCIATEDCONTEXTAMDPROC": 2, + "PFNWGLGETGPUIDSAMDPROC": 2, + "maxCount": 1, + "UINT*": 6, + "ids": 1, + "INT": 3, + "PFNWGLGETGPUINFOAMDPROC": 2, + "property": 1, + "dataType": 1, + "PFNWGLMAKEASSOCIATEDCONTEXTCURRENTAMDPROC": 2, + "wglBlitContextFramebufferAMD": 1, + "__wglewBlitContextFramebufferAMD": 2, + "wglCreateAssociatedContextAMD": 1, + "__wglewCreateAssociatedContextAMD": 2, + "wglCreateAssociatedContextAttribsAMD": 1, + "__wglewCreateAssociatedContextAttribsAMD": 2, + "wglDeleteAssociatedContextAMD": 1, + "__wglewDeleteAssociatedContextAMD": 2, + "wglGetContextGPUIDAMD": 1, + "__wglewGetContextGPUIDAMD": 2, + "wglGetCurrentAssociatedContextAMD": 1, + "__wglewGetCurrentAssociatedContextAMD": 2, + "wglGetGPUIDsAMD": 1, + "__wglewGetGPUIDsAMD": 2, + "wglGetGPUInfoAMD": 1, + "__wglewGetGPUInfoAMD": 2, + "wglMakeAssociatedContextCurrentAMD": 1, + "__wglewMakeAssociatedContextCurrentAMD": 2, + "WGLEW_AMD_gpu_association": 1, + "__WGLEW_AMD_gpu_association": 2, + "WGL_ARB_buffer_region": 2, + "WGL_FRONT_COLOR_BUFFER_BIT_ARB": 1, + "WGL_BACK_COLOR_BUFFER_BIT_ARB": 1, + "WGL_DEPTH_BUFFER_BIT_ARB": 1, + "WGL_STENCIL_BUFFER_BIT_ARB": 1, + "HANDLE": 14, + "PFNWGLCREATEBUFFERREGIONARBPROC": 2, + "iLayerPlane": 5, + "uType": 1, + "PFNWGLDELETEBUFFERREGIONARBPROC": 2, + "hRegion": 3, + "PFNWGLRESTOREBUFFERREGIONARBPROC": 2, + "width": 3, + "height": 3, + "xSrc": 1, + "ySrc": 1, + "PFNWGLSAVEBUFFERREGIONARBPROC": 2, + "wglCreateBufferRegionARB": 1, + "__wglewCreateBufferRegionARB": 2, + "wglDeleteBufferRegionARB": 1, + "__wglewDeleteBufferRegionARB": 2, + "wglRestoreBufferRegionARB": 1, + "__wglewRestoreBufferRegionARB": 2, + "wglSaveBufferRegionARB": 1, + "__wglewSaveBufferRegionARB": 2, + "WGLEW_ARB_buffer_region": 1, + "__WGLEW_ARB_buffer_region": 2, + "WGL_ARB_create_context": 2, + "WGL_CONTEXT_DEBUG_BIT_ARB": 1, + "WGL_CONTEXT_FORWARD_COMPATIBLE_BIT_ARB": 1, + "WGL_CONTEXT_MAJOR_VERSION_ARB": 1, + "WGL_CONTEXT_MINOR_VERSION_ARB": 1, + "WGL_CONTEXT_LAYER_PLANE_ARB": 1, + "WGL_CONTEXT_FLAGS_ARB": 1, + "ERROR_INVALID_VERSION_ARB": 1, + "ERROR_INVALID_PROFILE_ARB": 1, + "PFNWGLCREATECONTEXTATTRIBSARBPROC": 2, + "wglCreateContextAttribsARB": 1, + "__wglewCreateContextAttribsARB": 2, + "WGLEW_ARB_create_context": 1, + "__WGLEW_ARB_create_context": 2, + "WGL_ARB_create_context_profile": 2, + "WGL_CONTEXT_CORE_PROFILE_BIT_ARB": 1, + "WGL_CONTEXT_COMPATIBILITY_PROFILE_BIT_ARB": 1, + "WGL_CONTEXT_PROFILE_MASK_ARB": 1, + "WGLEW_ARB_create_context_profile": 1, + "__WGLEW_ARB_create_context_profile": 2, + "WGL_ARB_create_context_robustness": 2, + "WGL_CONTEXT_ROBUST_ACCESS_BIT_ARB": 1, + "WGL_LOSE_CONTEXT_ON_RESET_ARB": 1, + "WGL_CONTEXT_RESET_NOTIFICATION_STRATEGY_ARB": 1, + "WGL_NO_RESET_NOTIFICATION_ARB": 1, + "WGLEW_ARB_create_context_robustness": 1, + "__WGLEW_ARB_create_context_robustness": 2, + "WGL_ARB_extensions_string": 2, + "PFNWGLGETEXTENSIONSSTRINGARBPROC": 2, + "hdc": 16, + "wglGetExtensionsStringARB": 1, + "__wglewGetExtensionsStringARB": 2, + "WGLEW_ARB_extensions_string": 1, + "__WGLEW_ARB_extensions_string": 2, + "WGL_ARB_framebuffer_sRGB": 2, + "WGL_FRAMEBUFFER_SRGB_CAPABLE_ARB": 1, + "A9": 2, + "WGLEW_ARB_framebuffer_sRGB": 1, + "__WGLEW_ARB_framebuffer_sRGB": 2, + "WGL_ARB_make_current_read": 2, + "ERROR_INVALID_PIXEL_TYPE_ARB": 1, + "ERROR_INCOMPATIBLE_DEVICE_CONTEXTS_ARB": 1, + "PFNWGLGETCURRENTREADDCARBPROC": 2, + "PFNWGLMAKECONTEXTCURRENTARBPROC": 2, + "hDrawDC": 2, + "hReadDC": 2, + "wglGetCurrentReadDCARB": 1, + "__wglewGetCurrentReadDCARB": 2, + "wglMakeContextCurrentARB": 1, + "__wglewMakeContextCurrentARB": 2, + "WGLEW_ARB_make_current_read": 1, + "__WGLEW_ARB_make_current_read": 2, + "WGL_ARB_multisample": 2, + "WGL_SAMPLE_BUFFERS_ARB": 1, + "WGL_SAMPLES_ARB": 1, + "WGLEW_ARB_multisample": 1, + "__WGLEW_ARB_multisample": 2, + "WGL_ARB_pbuffer": 2, + "WGL_DRAW_TO_PBUFFER_ARB": 1, + "D": 8, + "WGL_MAX_PBUFFER_PIXELS_ARB": 1, + "WGL_MAX_PBUFFER_WIDTH_ARB": 1, + "WGL_MAX_PBUFFER_HEIGHT_ARB": 1, + "WGL_PBUFFER_LARGEST_ARB": 1, + "WGL_PBUFFER_WIDTH_ARB": 1, + "WGL_PBUFFER_HEIGHT_ARB": 1, + "WGL_PBUFFER_LOST_ARB": 1, + "DECLARE_HANDLE": 6, + "HPBUFFERARB": 12, + "PFNWGLCREATEPBUFFERARBPROC": 2, + "iPixelFormat": 6, + "iWidth": 2, + "iHeight": 2, + "piAttribList": 4, + "PFNWGLDESTROYPBUFFERARBPROC": 2, + "hPbuffer": 14, + "PFNWGLGETPBUFFERDCARBPROC": 2, + "PFNWGLQUERYPBUFFERARBPROC": 2, + "iAttribute": 8, + "piValue": 8, + "PFNWGLRELEASEPBUFFERDCARBPROC": 2, + "wglCreatePbufferARB": 1, + "__wglewCreatePbufferARB": 2, + "wglDestroyPbufferARB": 1, + "__wglewDestroyPbufferARB": 2, + "wglGetPbufferDCARB": 1, + "__wglewGetPbufferDCARB": 2, + "wglQueryPbufferARB": 1, + "__wglewQueryPbufferARB": 2, + "wglReleasePbufferDCARB": 1, + "__wglewReleasePbufferDCARB": 2, + "WGLEW_ARB_pbuffer": 1, + "__WGLEW_ARB_pbuffer": 2, + "WGL_ARB_pixel_format": 2, + "WGL_NUMBER_PIXEL_FORMATS_ARB": 1, + "WGL_DRAW_TO_WINDOW_ARB": 1, + "WGL_DRAW_TO_BITMAP_ARB": 1, + "WGL_ACCELERATION_ARB": 1, + "WGL_NEED_PALETTE_ARB": 1, + "WGL_NEED_SYSTEM_PALETTE_ARB": 1, + "WGL_SWAP_LAYER_BUFFERS_ARB": 1, + "WGL_SWAP_METHOD_ARB": 1, + "WGL_NUMBER_OVERLAYS_ARB": 1, + "WGL_NUMBER_UNDERLAYS_ARB": 1, + "WGL_TRANSPARENT_ARB": 1, + "WGL_SHARE_DEPTH_ARB": 1, + "WGL_SHARE_STENCIL_ARB": 1, + "WGL_SHARE_ACCUM_ARB": 1, + "WGL_SUPPORT_GDI_ARB": 1, + "WGL_SUPPORT_OPENGL_ARB": 1, + "WGL_DOUBLE_BUFFER_ARB": 1, + "WGL_STEREO_ARB": 1, + "WGL_PIXEL_TYPE_ARB": 1, + "WGL_COLOR_BITS_ARB": 1, + "WGL_RED_BITS_ARB": 1, + "WGL_RED_SHIFT_ARB": 1, + "WGL_GREEN_BITS_ARB": 1, + "WGL_GREEN_SHIFT_ARB": 1, + "WGL_BLUE_BITS_ARB": 1, + "WGL_BLUE_SHIFT_ARB": 1, + "WGL_ALPHA_BITS_ARB": 1, + "B": 9, + "WGL_ALPHA_SHIFT_ARB": 1, + "WGL_ACCUM_BITS_ARB": 1, + "WGL_ACCUM_RED_BITS_ARB": 1, + "WGL_ACCUM_GREEN_BITS_ARB": 1, + "WGL_ACCUM_BLUE_BITS_ARB": 1, + "WGL_ACCUM_ALPHA_BITS_ARB": 1, + "WGL_DEPTH_BITS_ARB": 1, + "WGL_STENCIL_BITS_ARB": 1, + "WGL_AUX_BUFFERS_ARB": 1, + "WGL_NO_ACCELERATION_ARB": 1, + "WGL_GENERIC_ACCELERATION_ARB": 1, + "WGL_FULL_ACCELERATION_ARB": 1, + "WGL_SWAP_EXCHANGE_ARB": 1, + "WGL_SWAP_COPY_ARB": 1, + "WGL_SWAP_UNDEFINED_ARB": 1, + "WGL_TYPE_RGBA_ARB": 1, + "WGL_TYPE_COLORINDEX_ARB": 1, + "WGL_TRANSPARENT_RED_VALUE_ARB": 1, + "WGL_TRANSPARENT_GREEN_VALUE_ARB": 1, + "WGL_TRANSPARENT_BLUE_VALUE_ARB": 1, + "WGL_TRANSPARENT_ALPHA_VALUE_ARB": 1, + "WGL_TRANSPARENT_INDEX_VALUE_ARB": 1, + "PFNWGLCHOOSEPIXELFORMATARBPROC": 2, + "piAttribIList": 2, + "FLOAT": 4, + "*pfAttribFList": 2, + "nMaxFormats": 2, + "*piFormats": 2, + "*nNumFormats": 2, + "PFNWGLGETPIXELFORMATATTRIBFVARBPROC": 2, + "nAttributes": 4, + "piAttributes": 4, + "*pfValues": 2, + "PFNWGLGETPIXELFORMATATTRIBIVARBPROC": 2, + "*piValues": 2, + "wglChoosePixelFormatARB": 1, + "__wglewChoosePixelFormatARB": 2, + "wglGetPixelFormatAttribfvARB": 1, + "__wglewGetPixelFormatAttribfvARB": 2, + "wglGetPixelFormatAttribivARB": 1, + "__wglewGetPixelFormatAttribivARB": 2, + "WGLEW_ARB_pixel_format": 1, + "__WGLEW_ARB_pixel_format": 2, + "WGL_ARB_pixel_format_float": 2, + "WGL_TYPE_RGBA_FLOAT_ARB": 1, + "A0": 3, + "WGLEW_ARB_pixel_format_float": 1, + "__WGLEW_ARB_pixel_format_float": 2, + "WGL_ARB_render_texture": 2, + "WGL_BIND_TO_TEXTURE_RGB_ARB": 1, + "WGL_BIND_TO_TEXTURE_RGBA_ARB": 1, + "WGL_TEXTURE_FORMAT_ARB": 1, + "WGL_TEXTURE_TARGET_ARB": 1, + "WGL_MIPMAP_TEXTURE_ARB": 1, + "WGL_TEXTURE_RGB_ARB": 1, + "WGL_TEXTURE_RGBA_ARB": 1, + "WGL_NO_TEXTURE_ARB": 2, + "WGL_TEXTURE_CUBE_MAP_ARB": 1, + "WGL_TEXTURE_1D_ARB": 1, + "WGL_TEXTURE_2D_ARB": 1, + "WGL_MIPMAP_LEVEL_ARB": 1, + "WGL_CUBE_MAP_FACE_ARB": 1, + "WGL_TEXTURE_CUBE_MAP_POSITIVE_X_ARB": 1, + "WGL_TEXTURE_CUBE_MAP_NEGATIVE_X_ARB": 1, + "WGL_TEXTURE_CUBE_MAP_POSITIVE_Y_ARB": 1, + "WGL_TEXTURE_CUBE_MAP_NEGATIVE_Y_ARB": 1, + "WGL_TEXTURE_CUBE_MAP_POSITIVE_Z_ARB": 1, + "WGL_TEXTURE_CUBE_MAP_NEGATIVE_Z_ARB": 1, + "WGL_FRONT_LEFT_ARB": 1, + "WGL_FRONT_RIGHT_ARB": 1, + "WGL_BACK_LEFT_ARB": 1, + "WGL_BACK_RIGHT_ARB": 1, + "WGL_AUX0_ARB": 1, + "WGL_AUX1_ARB": 1, + "WGL_AUX2_ARB": 1, + "WGL_AUX3_ARB": 1, + "WGL_AUX4_ARB": 1, + "WGL_AUX5_ARB": 1, + "WGL_AUX6_ARB": 1, + "WGL_AUX7_ARB": 1, + "WGL_AUX8_ARB": 1, + "WGL_AUX9_ARB": 1, + "PFNWGLBINDTEXIMAGEARBPROC": 2, + "iBuffer": 2, + "PFNWGLRELEASETEXIMAGEARBPROC": 2, + "PFNWGLSETPBUFFERATTRIBARBPROC": 2, + "wglBindTexImageARB": 1, + "__wglewBindTexImageARB": 2, + "wglReleaseTexImageARB": 1, + "__wglewReleaseTexImageARB": 2, + "wglSetPbufferAttribARB": 1, + "__wglewSetPbufferAttribARB": 2, + "WGLEW_ARB_render_texture": 1, + "__WGLEW_ARB_render_texture": 2, + "WGL_ATI_pixel_format_float": 2, + "WGL_TYPE_RGBA_FLOAT_ATI": 1, + "GL_RGBA_FLOAT_MODE_ATI": 1, + "GL_COLOR_CLEAR_UNCLAMPED_VALUE_ATI": 1, + "WGLEW_ATI_pixel_format_float": 1, + "__WGLEW_ATI_pixel_format_float": 2, + "WGL_ATI_render_texture_rectangle": 2, + "WGL_TEXTURE_RECTANGLE_ATI": 1, + "WGLEW_ATI_render_texture_rectangle": 1, + "__WGLEW_ATI_render_texture_rectangle": 2, + "WGL_EXT_create_context_es2_profile": 2, + "WGL_CONTEXT_ES2_PROFILE_BIT_EXT": 1, + "WGLEW_EXT_create_context_es2_profile": 1, + "__WGLEW_EXT_create_context_es2_profile": 2, + "WGL_EXT_depth_float": 2, + "WGL_DEPTH_FLOAT_EXT": 1, + "WGLEW_EXT_depth_float": 1, + "__WGLEW_EXT_depth_float": 2, + "WGL_EXT_display_color_table": 2, + "GLboolean": 53, + "PFNWGLBINDDISPLAYCOLORTABLEEXTPROC": 2, + "GLushort": 3, + "PFNWGLCREATEDISPLAYCOLORTABLEEXTPROC": 2, + "PFNWGLDESTROYDISPLAYCOLORTABLEEXTPROC": 2, + "PFNWGLLOADDISPLAYCOLORTABLEEXTPROC": 2, + "GLushort*": 1, + "table": 1, + "GLuint": 9, + "wglBindDisplayColorTableEXT": 1, + "__wglewBindDisplayColorTableEXT": 2, + "wglCreateDisplayColorTableEXT": 1, + "__wglewCreateDisplayColorTableEXT": 2, + "wglDestroyDisplayColorTableEXT": 1, + "__wglewDestroyDisplayColorTableEXT": 2, + "wglLoadDisplayColorTableEXT": 1, + "__wglewLoadDisplayColorTableEXT": 2, + "WGLEW_EXT_display_color_table": 1, + "__WGLEW_EXT_display_color_table": 2, + "WGL_EXT_extensions_string": 2, + "PFNWGLGETEXTENSIONSSTRINGEXTPROC": 2, + "wglGetExtensionsStringEXT": 1, + "__wglewGetExtensionsStringEXT": 2, + "WGLEW_EXT_extensions_string": 1, + "__WGLEW_EXT_extensions_string": 2, + "WGL_EXT_framebuffer_sRGB": 2, + "WGL_FRAMEBUFFER_SRGB_CAPABLE_EXT": 1, + "WGLEW_EXT_framebuffer_sRGB": 1, + "__WGLEW_EXT_framebuffer_sRGB": 2, + "WGL_EXT_make_current_read": 2, + "ERROR_INVALID_PIXEL_TYPE_EXT": 1, + "PFNWGLGETCURRENTREADDCEXTPROC": 2, + "PFNWGLMAKECONTEXTCURRENTEXTPROC": 2, + "wglGetCurrentReadDCEXT": 1, + "__wglewGetCurrentReadDCEXT": 2, + "wglMakeContextCurrentEXT": 1, + "__wglewMakeContextCurrentEXT": 2, + "WGLEW_EXT_make_current_read": 1, + "__WGLEW_EXT_make_current_read": 2, + "WGL_EXT_multisample": 2, + "WGL_SAMPLE_BUFFERS_EXT": 1, + "WGL_SAMPLES_EXT": 1, + "WGLEW_EXT_multisample": 1, + "__WGLEW_EXT_multisample": 2, + "WGL_EXT_pbuffer": 2, + "WGL_DRAW_TO_PBUFFER_EXT": 1, + "WGL_MAX_PBUFFER_PIXELS_EXT": 1, + "WGL_MAX_PBUFFER_WIDTH_EXT": 1, + "WGL_MAX_PBUFFER_HEIGHT_EXT": 1, + "WGL_OPTIMAL_PBUFFER_WIDTH_EXT": 1, + "WGL_OPTIMAL_PBUFFER_HEIGHT_EXT": 1, + "WGL_PBUFFER_LARGEST_EXT": 1, + "WGL_PBUFFER_WIDTH_EXT": 1, + "WGL_PBUFFER_HEIGHT_EXT": 1, + "HPBUFFEREXT": 6, + "PFNWGLCREATEPBUFFEREXTPROC": 2, + "PFNWGLDESTROYPBUFFEREXTPROC": 2, + "PFNWGLGETPBUFFERDCEXTPROC": 2, + "PFNWGLQUERYPBUFFEREXTPROC": 2, + "PFNWGLRELEASEPBUFFERDCEXTPROC": 2, + "wglCreatePbufferEXT": 1, + "__wglewCreatePbufferEXT": 2, + "wglDestroyPbufferEXT": 1, + "__wglewDestroyPbufferEXT": 2, + "wglGetPbufferDCEXT": 1, + "__wglewGetPbufferDCEXT": 2, + "wglQueryPbufferEXT": 1, + "__wglewQueryPbufferEXT": 2, + "wglReleasePbufferDCEXT": 1, + "__wglewReleasePbufferDCEXT": 2, + "WGLEW_EXT_pbuffer": 1, + "__WGLEW_EXT_pbuffer": 2, + "WGL_EXT_pixel_format": 2, + "WGL_NUMBER_PIXEL_FORMATS_EXT": 1, + "WGL_DRAW_TO_WINDOW_EXT": 1, + "WGL_DRAW_TO_BITMAP_EXT": 1, + "WGL_ACCELERATION_EXT": 1, + "WGL_NEED_PALETTE_EXT": 1, + "WGL_NEED_SYSTEM_PALETTE_EXT": 1, + "WGL_SWAP_LAYER_BUFFERS_EXT": 1, + "WGL_SWAP_METHOD_EXT": 1, + "WGL_NUMBER_OVERLAYS_EXT": 1, + "WGL_NUMBER_UNDERLAYS_EXT": 1, + "WGL_TRANSPARENT_EXT": 1, + "WGL_TRANSPARENT_VALUE_EXT": 1, + "WGL_SHARE_DEPTH_EXT": 1, + "WGL_SHARE_STENCIL_EXT": 1, + "WGL_SHARE_ACCUM_EXT": 1, + "WGL_SUPPORT_GDI_EXT": 1, + "WGL_SUPPORT_OPENGL_EXT": 1, + "WGL_DOUBLE_BUFFER_EXT": 1, + "WGL_STEREO_EXT": 1, + "WGL_PIXEL_TYPE_EXT": 1, + "WGL_COLOR_BITS_EXT": 1, + "WGL_RED_BITS_EXT": 1, + "WGL_RED_SHIFT_EXT": 1, + "WGL_GREEN_BITS_EXT": 1, + "WGL_GREEN_SHIFT_EXT": 1, + "WGL_BLUE_BITS_EXT": 1, + "WGL_BLUE_SHIFT_EXT": 1, + "WGL_ALPHA_BITS_EXT": 1, + "WGL_ALPHA_SHIFT_EXT": 1, + "WGL_ACCUM_BITS_EXT": 1, + "WGL_ACCUM_RED_BITS_EXT": 1, + "WGL_ACCUM_GREEN_BITS_EXT": 1, + "WGL_ACCUM_BLUE_BITS_EXT": 1, + "WGL_ACCUM_ALPHA_BITS_EXT": 1, + "WGL_DEPTH_BITS_EXT": 1, + "WGL_STENCIL_BITS_EXT": 1, + "WGL_AUX_BUFFERS_EXT": 1, + "WGL_NO_ACCELERATION_EXT": 1, + "WGL_GENERIC_ACCELERATION_EXT": 1, + "WGL_FULL_ACCELERATION_EXT": 1, + "WGL_SWAP_EXCHANGE_EXT": 1, + "WGL_SWAP_COPY_EXT": 1, + "WGL_SWAP_UNDEFINED_EXT": 1, + "WGL_TYPE_RGBA_EXT": 1, + "WGL_TYPE_COLORINDEX_EXT": 1, + "PFNWGLCHOOSEPIXELFORMATEXTPROC": 2, + "PFNWGLGETPIXELFORMATATTRIBFVEXTPROC": 2, + "PFNWGLGETPIXELFORMATATTRIBIVEXTPROC": 2, + "wglChoosePixelFormatEXT": 1, + "__wglewChoosePixelFormatEXT": 2, + "wglGetPixelFormatAttribfvEXT": 1, + "__wglewGetPixelFormatAttribfvEXT": 2, + "wglGetPixelFormatAttribivEXT": 1, + "__wglewGetPixelFormatAttribivEXT": 2, + "WGLEW_EXT_pixel_format": 1, + "__WGLEW_EXT_pixel_format": 2, + "WGL_EXT_pixel_format_packed_float": 2, + "WGL_TYPE_RGBA_UNSIGNED_FLOAT_EXT": 1, + "WGLEW_EXT_pixel_format_packed_float": 1, + "__WGLEW_EXT_pixel_format_packed_float": 2, + "WGL_EXT_swap_control": 2, + "PFNWGLGETSWAPINTERVALEXTPROC": 2, + "PFNWGLSWAPINTERVALEXTPROC": 2, + "interval": 1, + "wglGetSwapIntervalEXT": 1, + "__wglewGetSwapIntervalEXT": 2, + "wglSwapIntervalEXT": 1, + "__wglewSwapIntervalEXT": 2, + "WGLEW_EXT_swap_control": 1, + "__WGLEW_EXT_swap_control": 2, + "WGL_I3D_digital_video_control": 2, + "WGL_DIGITAL_VIDEO_CURSOR_ALPHA_FRAMEBUFFER_I3D": 1, + "WGL_DIGITAL_VIDEO_CURSOR_ALPHA_VALUE_I3D": 1, + "WGL_DIGITAL_VIDEO_CURSOR_INCLUDED_I3D": 1, + "WGL_DIGITAL_VIDEO_GAMMA_CORRECTED_I3D": 1, + "PFNWGLGETDIGITALVIDEOPARAMETERSI3DPROC": 2, + "PFNWGLSETDIGITALVIDEOPARAMETERSI3DPROC": 2, + "wglGetDigitalVideoParametersI3D": 1, + "__wglewGetDigitalVideoParametersI3D": 2, + "wglSetDigitalVideoParametersI3D": 1, + "__wglewSetDigitalVideoParametersI3D": 2, + "WGLEW_I3D_digital_video_control": 1, + "__WGLEW_I3D_digital_video_control": 2, + "WGL_I3D_gamma": 2, + "WGL_GAMMA_TABLE_SIZE_I3D": 1, + "WGL_GAMMA_EXCLUDE_DESKTOP_I3D": 1, + "PFNWGLGETGAMMATABLEI3DPROC": 2, + "iEntries": 2, + "USHORT*": 2, + "puRed": 2, + "USHORT": 4, + "*puGreen": 2, + "*puBlue": 2, + "PFNWGLGETGAMMATABLEPARAMETERSI3DPROC": 2, + "PFNWGLSETGAMMATABLEI3DPROC": 2, + "PFNWGLSETGAMMATABLEPARAMETERSI3DPROC": 2, + "wglGetGammaTableI3D": 1, + "__wglewGetGammaTableI3D": 2, + "wglGetGammaTableParametersI3D": 1, + "__wglewGetGammaTableParametersI3D": 2, + "wglSetGammaTableI3D": 1, + "__wglewSetGammaTableI3D": 2, + "wglSetGammaTableParametersI3D": 1, + "__wglewSetGammaTableParametersI3D": 2, + "WGLEW_I3D_gamma": 1, + "__WGLEW_I3D_gamma": 2, + "WGL_I3D_genlock": 2, + "WGL_GENLOCK_SOURCE_MULTIVIEW_I3D": 1, + "WGL_GENLOCK_SOURCE_EXTERNAL_SYNC_I3D": 1, + "WGL_GENLOCK_SOURCE_EXTERNAL_FIELD_I3D": 1, + "WGL_GENLOCK_SOURCE_EXTERNAL_TTL_I3D": 1, + "WGL_GENLOCK_SOURCE_DIGITAL_SYNC_I3D": 1, + "WGL_GENLOCK_SOURCE_DIGITAL_FIELD_I3D": 1, + "WGL_GENLOCK_SOURCE_EDGE_FALLING_I3D": 1, + "WGL_GENLOCK_SOURCE_EDGE_RISING_I3D": 1, + "WGL_GENLOCK_SOURCE_EDGE_BOTH_I3D": 1, + "PFNWGLDISABLEGENLOCKI3DPROC": 2, + "PFNWGLENABLEGENLOCKI3DPROC": 2, + "PFNWGLGENLOCKSAMPLERATEI3DPROC": 2, + "uRate": 2, + "PFNWGLGENLOCKSOURCEDELAYI3DPROC": 2, + "uDelay": 2, + "PFNWGLGENLOCKSOURCEEDGEI3DPROC": 2, + "uEdge": 2, + "PFNWGLGENLOCKSOURCEI3DPROC": 2, + "uSource": 2, + "PFNWGLGETGENLOCKSAMPLERATEI3DPROC": 2, + "PFNWGLGETGENLOCKSOURCEDELAYI3DPROC": 2, + "PFNWGLGETGENLOCKSOURCEEDGEI3DPROC": 2, + "PFNWGLGETGENLOCKSOURCEI3DPROC": 2, + "PFNWGLISENABLEDGENLOCKI3DPROC": 2, + "BOOL*": 3, + "pFlag": 3, + "PFNWGLQUERYGENLOCKMAXSOURCEDELAYI3DPROC": 2, + "uMaxLineDelay": 1, + "*uMaxPixelDelay": 1, + "wglDisableGenlockI3D": 1, + "__wglewDisableGenlockI3D": 2, + "wglEnableGenlockI3D": 1, + "__wglewEnableGenlockI3D": 2, + "wglGenlockSampleRateI3D": 1, + "__wglewGenlockSampleRateI3D": 2, + "wglGenlockSourceDelayI3D": 1, + "__wglewGenlockSourceDelayI3D": 2, + "wglGenlockSourceEdgeI3D": 1, + "__wglewGenlockSourceEdgeI3D": 2, + "wglGenlockSourceI3D": 1, + "__wglewGenlockSourceI3D": 2, + "wglGetGenlockSampleRateI3D": 1, + "__wglewGetGenlockSampleRateI3D": 2, + "wglGetGenlockSourceDelayI3D": 1, + "__wglewGetGenlockSourceDelayI3D": 2, + "wglGetGenlockSourceEdgeI3D": 1, + "__wglewGetGenlockSourceEdgeI3D": 2, + "wglGetGenlockSourceI3D": 1, + "__wglewGetGenlockSourceI3D": 2, + "wglIsEnabledGenlockI3D": 1, + "__wglewIsEnabledGenlockI3D": 2, + "wglQueryGenlockMaxSourceDelayI3D": 1, + "__wglewQueryGenlockMaxSourceDelayI3D": 2, + "WGLEW_I3D_genlock": 1, + "__WGLEW_I3D_genlock": 2, + "WGL_I3D_image_buffer": 2, + "WGL_IMAGE_BUFFER_MIN_ACCESS_I3D": 1, + "WGL_IMAGE_BUFFER_LOCK_I3D": 1, + "PFNWGLASSOCIATEIMAGEBUFFEREVENTSI3DPROC": 2, + "HANDLE*": 3, + "pEvent": 1, + "LPVOID": 3, + "*pAddress": 1, + "DWORD": 5, + "*pSize": 1, + "PFNWGLCREATEIMAGEBUFFERI3DPROC": 2, + "dwSize": 1, + "uFlags": 1, + "PFNWGLDESTROYIMAGEBUFFERI3DPROC": 2, + "pAddress": 2, + "PFNWGLRELEASEIMAGEBUFFEREVENTSI3DPROC": 2, + "LPVOID*": 1, + "wglAssociateImageBufferEventsI3D": 1, + "__wglewAssociateImageBufferEventsI3D": 2, + "wglCreateImageBufferI3D": 1, + "__wglewCreateImageBufferI3D": 2, + "wglDestroyImageBufferI3D": 1, + "__wglewDestroyImageBufferI3D": 2, + "wglReleaseImageBufferEventsI3D": 1, + "__wglewReleaseImageBufferEventsI3D": 2, + "WGLEW_I3D_image_buffer": 1, + "__WGLEW_I3D_image_buffer": 2, + "WGL_I3D_swap_frame_lock": 2, + "PFNWGLDISABLEFRAMELOCKI3DPROC": 2, + "PFNWGLENABLEFRAMELOCKI3DPROC": 2, + "PFNWGLISENABLEDFRAMELOCKI3DPROC": 2, + "PFNWGLQUERYFRAMELOCKMASTERI3DPROC": 2, + "wglDisableFrameLockI3D": 1, + "__wglewDisableFrameLockI3D": 2, + "wglEnableFrameLockI3D": 1, + "__wglewEnableFrameLockI3D": 2, + "wglIsEnabledFrameLockI3D": 1, + "__wglewIsEnabledFrameLockI3D": 2, + "wglQueryFrameLockMasterI3D": 1, + "__wglewQueryFrameLockMasterI3D": 2, + "WGLEW_I3D_swap_frame_lock": 1, + "__WGLEW_I3D_swap_frame_lock": 2, + "WGL_I3D_swap_frame_usage": 2, + "PFNWGLBEGINFRAMETRACKINGI3DPROC": 2, + "PFNWGLENDFRAMETRACKINGI3DPROC": 2, + "PFNWGLGETFRAMEUSAGEI3DPROC": 2, + "float*": 1, + "pUsage": 1, + "PFNWGLQUERYFRAMETRACKINGI3DPROC": 2, + "DWORD*": 1, + "pFrameCount": 1, + "*pMissedFrames": 1, + "*pLastMissedUsage": 1, + "wglBeginFrameTrackingI3D": 1, + "__wglewBeginFrameTrackingI3D": 2, + "wglEndFrameTrackingI3D": 1, + "__wglewEndFrameTrackingI3D": 2, + "wglGetFrameUsageI3D": 1, + "__wglewGetFrameUsageI3D": 2, + "wglQueryFrameTrackingI3D": 1, + "__wglewQueryFrameTrackingI3D": 2, + "WGLEW_I3D_swap_frame_usage": 1, + "__WGLEW_I3D_swap_frame_usage": 2, + "WGL_NV_DX_interop": 2, + "WGL_ACCESS_READ_ONLY_NV": 1, + "WGL_ACCESS_READ_WRITE_NV": 1, + "WGL_ACCESS_WRITE_DISCARD_NV": 1, + "PFNWGLDXCLOSEDEVICENVPROC": 2, + "hDevice": 9, + "PFNWGLDXLOCKOBJECTSNVPROC": 2, + "hObjects": 2, + "PFNWGLDXOBJECTACCESSNVPROC": 2, + "hObject": 2, + "access": 2, + "PFNWGLDXOPENDEVICENVPROC": 2, + "dxDevice": 1, + "PFNWGLDXREGISTEROBJECTNVPROC": 2, + "dxObject": 2, + "PFNWGLDXSETRESOURCESHAREHANDLENVPROC": 2, + "shareHandle": 1, + "PFNWGLDXUNLOCKOBJECTSNVPROC": 2, + "PFNWGLDXUNREGISTEROBJECTNVPROC": 2, + "wglDXCloseDeviceNV": 1, + "__wglewDXCloseDeviceNV": 2, + "wglDXLockObjectsNV": 1, + "__wglewDXLockObjectsNV": 2, + "wglDXObjectAccessNV": 1, + "__wglewDXObjectAccessNV": 2, + "wglDXOpenDeviceNV": 1, + "__wglewDXOpenDeviceNV": 2, + "wglDXRegisterObjectNV": 1, + "__wglewDXRegisterObjectNV": 2, + "wglDXSetResourceShareHandleNV": 1, + "__wglewDXSetResourceShareHandleNV": 2, + "wglDXUnlockObjectsNV": 1, + "__wglewDXUnlockObjectsNV": 2, + "wglDXUnregisterObjectNV": 1, + "__wglewDXUnregisterObjectNV": 2, + "WGLEW_NV_DX_interop": 1, + "__WGLEW_NV_DX_interop": 2, + "WGL_NV_copy_image": 2, + "PFNWGLCOPYIMAGESUBDATANVPROC": 2, + "hSrcRC": 1, + "srcName": 1, + "srcTarget": 1, + "srcLevel": 1, + "srcX": 1, + "srcY": 1, + "srcZ": 1, + "hDstRC": 1, + "dstName": 1, + "dstTarget": 1, + "dstLevel": 1, + "dstX": 1, + "dstY": 1, + "dstZ": 1, + "GLsizei": 4, + "wglCopyImageSubDataNV": 1, + "__wglewCopyImageSubDataNV": 2, + "WGLEW_NV_copy_image": 1, + "__WGLEW_NV_copy_image": 2, + "WGL_NV_float_buffer": 2, + "WGL_FLOAT_COMPONENTS_NV": 1, + "B0": 1, + "WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_R_NV": 1, + "B1": 1, + "WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_RG_NV": 1, + "B2": 1, + "WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_RGB_NV": 1, + "B3": 1, + "WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_RGBA_NV": 1, + "B4": 1, + "WGL_TEXTURE_FLOAT_R_NV": 1, + "B5": 1, + "WGL_TEXTURE_FLOAT_RG_NV": 1, + "B6": 1, + "WGL_TEXTURE_FLOAT_RGB_NV": 1, + "B7": 1, + "WGL_TEXTURE_FLOAT_RGBA_NV": 1, + "B8": 1, + "WGLEW_NV_float_buffer": 1, + "__WGLEW_NV_float_buffer": 2, + "WGL_NV_gpu_affinity": 2, + "WGL_ERROR_INCOMPATIBLE_AFFINITY_MASKS_NV": 1, + "D0": 1, + "WGL_ERROR_MISSING_AFFINITY_MASK_NV": 1, + "D1": 1, + "HGPUNV": 5, + "_GPU_DEVICE": 1, + "cb": 1, + "CHAR": 2, + "DeviceName": 1, + "DeviceString": 1, + "Flags": 1, + "RECT": 1, + "rcVirtualScreen": 1, + "GPU_DEVICE": 1, + "*PGPU_DEVICE": 1, + "PFNWGLCREATEAFFINITYDCNVPROC": 2, + "*phGpuList": 1, + "PFNWGLDELETEDCNVPROC": 2, + "PFNWGLENUMGPUDEVICESNVPROC": 2, + "hGpu": 1, + "iDeviceIndex": 1, + "PGPU_DEVICE": 1, + "lpGpuDevice": 1, + "PFNWGLENUMGPUSFROMAFFINITYDCNVPROC": 2, + "hAffinityDC": 1, + "iGpuIndex": 2, + "*hGpu": 1, + "PFNWGLENUMGPUSNVPROC": 2, + "*phGpu": 1, + "wglCreateAffinityDCNV": 1, + "__wglewCreateAffinityDCNV": 2, + "wglDeleteDCNV": 1, + "__wglewDeleteDCNV": 2, + "wglEnumGpuDevicesNV": 1, + "__wglewEnumGpuDevicesNV": 2, + "wglEnumGpusFromAffinityDCNV": 1, + "__wglewEnumGpusFromAffinityDCNV": 2, + "wglEnumGpusNV": 1, + "__wglewEnumGpusNV": 2, + "WGLEW_NV_gpu_affinity": 1, + "__WGLEW_NV_gpu_affinity": 2, + "WGL_NV_multisample_coverage": 2, + "WGL_COVERAGE_SAMPLES_NV": 1, + "WGL_COLOR_SAMPLES_NV": 1, + "B9": 1, + "WGLEW_NV_multisample_coverage": 1, + "__WGLEW_NV_multisample_coverage": 2, + "WGL_NV_present_video": 2, + "WGL_NUM_VIDEO_SLOTS_NV": 1, + "F0": 1, + "HVIDEOOUTPUTDEVICENV": 2, + "PFNWGLBINDVIDEODEVICENVPROC": 2, + "hDc": 6, + "uVideoSlot": 2, + "hVideoDevice": 4, + "PFNWGLENUMERATEVIDEODEVICESNVPROC": 2, + "HVIDEOOUTPUTDEVICENV*": 1, + "phDeviceList": 2, + "PFNWGLQUERYCURRENTCONTEXTNVPROC": 2, + "wglBindVideoDeviceNV": 1, + "__wglewBindVideoDeviceNV": 2, + "wglEnumerateVideoDevicesNV": 1, + "__wglewEnumerateVideoDevicesNV": 2, + "wglQueryCurrentContextNV": 1, + "__wglewQueryCurrentContextNV": 2, + "WGLEW_NV_present_video": 1, + "__WGLEW_NV_present_video": 2, + "WGL_NV_render_depth_texture": 2, + "WGL_BIND_TO_TEXTURE_DEPTH_NV": 1, + "WGL_BIND_TO_TEXTURE_RECTANGLE_DEPTH_NV": 1, + "WGL_DEPTH_TEXTURE_FORMAT_NV": 1, + "WGL_TEXTURE_DEPTH_COMPONENT_NV": 1, + "WGL_DEPTH_COMPONENT_NV": 1, + "WGLEW_NV_render_depth_texture": 1, + "__WGLEW_NV_render_depth_texture": 2, + "WGL_NV_render_texture_rectangle": 2, + "WGL_BIND_TO_TEXTURE_RECTANGLE_RGB_NV": 1, + "WGL_BIND_TO_TEXTURE_RECTANGLE_RGBA_NV": 1, + "A1": 1, + "WGL_TEXTURE_RECTANGLE_NV": 1, + "WGLEW_NV_render_texture_rectangle": 1, + "__WGLEW_NV_render_texture_rectangle": 2, + "WGL_NV_swap_group": 2, + "PFNWGLBINDSWAPBARRIERNVPROC": 2, + "group": 3, + "barrier": 1, + "PFNWGLJOINSWAPGROUPNVPROC": 2, + "PFNWGLQUERYFRAMECOUNTNVPROC": 2, + "GLuint*": 3, + "PFNWGLQUERYMAXSWAPGROUPSNVPROC": 2, + "maxGroups": 1, + "*maxBarriers": 1, + "PFNWGLQUERYSWAPGROUPNVPROC": 2, + "*barrier": 1, + "PFNWGLRESETFRAMECOUNTNVPROC": 2, + "wglBindSwapBarrierNV": 1, + "__wglewBindSwapBarrierNV": 2, + "wglJoinSwapGroupNV": 1, + "__wglewJoinSwapGroupNV": 2, + "wglQueryFrameCountNV": 1, + "__wglewQueryFrameCountNV": 2, + "wglQueryMaxSwapGroupsNV": 1, + "__wglewQueryMaxSwapGroupsNV": 2, + "wglQuerySwapGroupNV": 1, + "__wglewQuerySwapGroupNV": 2, + "wglResetFrameCountNV": 1, + "__wglewResetFrameCountNV": 2, + "WGLEW_NV_swap_group": 1, + "__WGLEW_NV_swap_group": 2, + "WGL_NV_vertex_array_range": 2, + "PFNWGLALLOCATEMEMORYNVPROC": 2, + "GLfloat": 3, + "readFrequency": 1, + "writeFrequency": 1, + "priority": 1, + "PFNWGLFREEMEMORYNVPROC": 2, + "*pointer": 1, + "wglAllocateMemoryNV": 1, + "__wglewAllocateMemoryNV": 2, + "wglFreeMemoryNV": 1, + "__wglewFreeMemoryNV": 2, + "WGLEW_NV_vertex_array_range": 1, + "__WGLEW_NV_vertex_array_range": 2, + "WGL_NV_video_capture": 2, + "WGL_UNIQUE_ID_NV": 1, + "CE": 1, + "WGL_NUM_VIDEO_CAPTURE_SLOTS_NV": 1, + "CF": 1, + "HVIDEOINPUTDEVICENV": 5, + "PFNWGLBINDVIDEOCAPTUREDEVICENVPROC": 2, + "PFNWGLENUMERATEVIDEOCAPTUREDEVICESNVPROC": 2, + "HVIDEOINPUTDEVICENV*": 1, + "PFNWGLLOCKVIDEOCAPTUREDEVICENVPROC": 2, + "PFNWGLQUERYVIDEOCAPTUREDEVICENVPROC": 2, + "PFNWGLRELEASEVIDEOCAPTUREDEVICENVPROC": 2, + "wglBindVideoCaptureDeviceNV": 1, + "__wglewBindVideoCaptureDeviceNV": 2, + "wglEnumerateVideoCaptureDevicesNV": 1, + "__wglewEnumerateVideoCaptureDevicesNV": 2, + "wglLockVideoCaptureDeviceNV": 1, + "__wglewLockVideoCaptureDeviceNV": 2, + "wglQueryVideoCaptureDeviceNV": 1, + "__wglewQueryVideoCaptureDeviceNV": 2, + "wglReleaseVideoCaptureDeviceNV": 1, + "__wglewReleaseVideoCaptureDeviceNV": 2, + "WGLEW_NV_video_capture": 1, + "__WGLEW_NV_video_capture": 2, + "WGL_NV_video_output": 2, + "WGL_BIND_TO_VIDEO_RGB_NV": 1, + "WGL_BIND_TO_VIDEO_RGBA_NV": 1, + "C1": 1, + "WGL_BIND_TO_VIDEO_RGB_AND_DEPTH_NV": 1, + "C2": 1, + "WGL_VIDEO_OUT_COLOR_NV": 1, + "C3": 1, + "WGL_VIDEO_OUT_ALPHA_NV": 1, + "C4": 1, + "WGL_VIDEO_OUT_DEPTH_NV": 1, + "C5": 1, + "WGL_VIDEO_OUT_COLOR_AND_ALPHA_NV": 1, + "C6": 1, + "WGL_VIDEO_OUT_COLOR_AND_DEPTH_NV": 1, + "C7": 1, + "WGL_VIDEO_OUT_FRAME": 1, + "C8": 1, + "WGL_VIDEO_OUT_FIELD_1": 1, + "C9": 1, + "WGL_VIDEO_OUT_FIELD_2": 1, + "CA": 1, + "WGL_VIDEO_OUT_STACKED_FIELDS_1_2": 1, + "CB": 1, + "WGL_VIDEO_OUT_STACKED_FIELDS_2_1": 1, + "CC": 1, + "HPVIDEODEV": 4, + "PFNWGLBINDVIDEOIMAGENVPROC": 2, + "iVideoBuffer": 2, + "PFNWGLGETVIDEODEVICENVPROC": 2, + "numDevices": 1, + "HPVIDEODEV*": 1, + "PFNWGLGETVIDEOINFONVPROC": 2, + "hpVideoDevice": 1, + "long*": 2, + "pulCounterOutputPbuffer": 1, + "*pulCounterOutputVideo": 1, + "PFNWGLRELEASEVIDEODEVICENVPROC": 2, + "PFNWGLRELEASEVIDEOIMAGENVPROC": 2, + "PFNWGLSENDPBUFFERTOVIDEONVPROC": 2, + "iBufferType": 1, + "pulCounterPbuffer": 1, + "bBlock": 1, + "wglBindVideoImageNV": 1, + "__wglewBindVideoImageNV": 2, + "wglGetVideoDeviceNV": 1, + "__wglewGetVideoDeviceNV": 2, + "wglGetVideoInfoNV": 1, + "__wglewGetVideoInfoNV": 2, + "wglReleaseVideoDeviceNV": 1, + "__wglewReleaseVideoDeviceNV": 2, + "wglReleaseVideoImageNV": 1, + "__wglewReleaseVideoImageNV": 2, + "wglSendPbufferToVideoNV": 1, + "__wglewSendPbufferToVideoNV": 2, + "WGLEW_NV_video_output": 1, + "__WGLEW_NV_video_output": 2, + "WGL_OML_sync_control": 2, + "PFNWGLGETMSCRATEOMLPROC": 2, + "INT32*": 1, + "numerator": 1, + "INT32": 1, + "*denominator": 1, + "PFNWGLGETSYNCVALUESOMLPROC": 2, + "INT64*": 3, + "INT64": 18, + "*msc": 3, + "*sbc": 3, + "PFNWGLSWAPBUFFERSMSCOMLPROC": 2, + "target_msc": 3, + "divisor": 3, + "remainder": 3, + "PFNWGLSWAPLAYERBUFFERSMSCOMLPROC": 2, + "fuPlanes": 1, + "PFNWGLWAITFORMSCOMLPROC": 2, + "PFNWGLWAITFORSBCOMLPROC": 2, + "target_sbc": 1, + "wglGetMscRateOML": 1, + "__wglewGetMscRateOML": 2, + "wglGetSyncValuesOML": 1, + "__wglewGetSyncValuesOML": 2, + "wglSwapBuffersMscOML": 1, + "__wglewSwapBuffersMscOML": 2, + "wglSwapLayerBuffersMscOML": 1, + "__wglewSwapLayerBuffersMscOML": 2, + "wglWaitForMscOML": 1, + "__wglewWaitForMscOML": 2, + "wglWaitForSbcOML": 1, + "__wglewWaitForSbcOML": 2, + "WGLEW_OML_sync_control": 1, + "__WGLEW_OML_sync_control": 2, + "GLEW_MX": 4, + "WGLEW_EXPORT": 167, + "GLEWAPI": 6, + "WGLEWContextStruct": 2, + "WGLEWContext": 1, + "wglewContextInit": 2, + "WGLEWContext*": 2, + "wglewContextIsSupported": 2, + "wglewInit": 1, + "wglewGetContext": 4, + "wglewIsSupported": 2, + "wglewGetExtension": 1, + "yajl_status_to_string": 1, + "yajl_status": 4, + "statStr": 6, + "yajl_status_ok": 1, + "yajl_status_client_canceled": 1, + "yajl_status_insufficient_data": 1, + "yajl_status_error": 1, + "yajl_handle": 10, + "yajl_alloc": 1, + "yajl_callbacks": 1, + "callbacks": 3, + "yajl_parser_config": 1, + "config": 4, + "yajl_alloc_funcs": 3, + "afs": 8, + "allowComments": 4, + "validateUTF8": 3, + "hand": 28, + "afsBuffer": 3, + "realloc": 1, + "yajl_set_default_alloc_funcs": 1, + "YA_MALLOC": 1, + "yajl_handle_t": 1, + "alloc": 6, + "checkUTF8": 1, + "lexer": 4, + "yajl_lex_alloc": 1, + "bytesConsumed": 2, + "decodeBuf": 2, + "yajl_buf_alloc": 1, + "yajl_bs_init": 1, + "stateStack": 3, + "yajl_bs_push": 1, + "yajl_state_start": 1, + "yajl_reset_parser": 1, + "yajl_lex_realloc": 1, + "yajl_free": 1, + "yajl_bs_free": 1, + "yajl_buf_free": 1, + "yajl_lex_free": 1, + "YA_FREE": 2, + "yajl_parse": 2, + "jsonText": 4, + "jsonTextLen": 4, + "yajl_do_parse": 1, + "yajl_parse_complete": 1, + "yajl_get_error": 1, + "verbose": 2, + "yajl_render_error_string": 1, + "yajl_get_bytes_consumed": 1, + "yajl_free_error": 1 + }, + "C++": { + "class": 34, + "Bar": 2, + "{": 553, + "protected": 4, + "char": 122, + "*name": 6, + ";": 2308, + "public": 27, + "void": 152, + "hello": 2, + "(": 2438, + ")": 2440, + "}": 552, + "foo": 2, + "cudaArray*": 1, + "cu_array": 4, + "texture": 1, + "": 1, + "2": 1, + "cudaReadModeElementType": 1, + "tex": 4, + "cudaChannelFormatDesc": 1, + "description": 5, + "cudaCreateChannelDesc": 1, + "": 1, + "cudaMallocArray": 1, + "&": 148, + "width": 5, + "height": 5, + "cudaMemcpyToArray": 1, + "image": 1, + "width*height*sizeof": 1, + "float": 9, + "cudaMemcpyHostToDevice": 1, + "tex.addressMode": 2, + "[": 204, + "]": 204, + "cudaAddressModeClamp": 2, + "tex.filterMode": 1, + "cudaFilterModePoint": 1, + "tex.normalized": 1, + "false": 43, + "//": 239, + "do": 5, + "not": 2, + "normalize": 1, + "coordinates": 1, + "cudaBindTextureToArray": 1, + "dim3": 2, + "blockDim": 2, + "gridDim": 2, + "+": 55, + "blockDim.x": 2, + "-": 227, + "/": 15, + "blockDim.y": 2, + "kernel": 2, + "<<": 19, + "<": 56, + "d_data": 1, + "cudaUnbindTexture": 1, + "//end": 1, + "__global__": 1, + "float*": 1, + "odata": 2, + "int": 148, + "unsigned": 22, + "x": 48, + "blockIdx.x*blockDim.x": 1, + "threadIdx.x": 1, + "y": 16, + "blockIdx.y*blockDim.y": 1, + "threadIdx.y": 1, + "if": 296, + "&&": 24, + "c": 52, + "tex2D": 1, + "y*width": 1, + "#include": 106, + "": 1, + "": 1, + "": 2, + "static": 260, + "Env": 13, + "*env_instance": 1, + "*": 159, + "NULL": 108, + "*Env": 1, + "instance": 4, + "env_instance": 3, + "new": 9, + "return": 147, + "QObject": 2, + "QCoreApplication": 1, + "parse": 3, + "const": 166, + "**envp": 1, + "**env": 1, + "**": 2, + "QString": 20, + "envvar": 2, + "name": 21, + "value": 18, + "indexOfEquals": 5, + "for": 18, + "env": 3, + "envp": 4, + "*env": 1, + "envvar.indexOf": 1, + "continue": 2, + "envvar.left": 1, + "envvar.mid": 1, + "m_map.insert": 1, + "QVariantMap": 3, + "asVariantMap": 2, + "m_map": 2, + "#ifndef": 23, + "ENV_H": 3, + "#define": 190, + "": 1, + "Q_OBJECT": 1, + "*instance": 1, + "private": 12, + "#endif": 82, + "GDSDBREADER_H": 3, + "": 1, + "GDS_DIR": 1, + "enum": 6, + "level": 1, + "LEVEL_ONE": 1, + "LEVEL_TWO": 1, + "LEVEL_THREE": 1, + "dbDataStructure": 2, + "label": 1, + "quint32": 3, + "depth": 1, + "userIndex": 1, + "QByteArray": 1, + "data": 2, + "This": 6, + "is": 35, + "COMPRESSED": 1, + "optimize": 1, + "ram": 1, + "and": 14, + "disk": 1, + "space": 2, + "decompressed": 1, + "quint64": 1, + "uniqueID": 1, + "QVector": 2, + "": 1, + "nextItems": 1, + "": 1, + "nextItemsIndices": 1, + "dbDataStructure*": 1, + "father": 1, + "fatherIndex": 1, + "bool": 99, + "noFatherRoot": 1, + "Used": 1, + "to": 75, + "tell": 1, + "this": 22, + "node": 1, + "the": 178, + "root": 1, + "so": 1, + "hasn": 1, + "t": 13, + "in": 9, + "argument": 1, + "list": 2, + "of": 48, + "an": 3, + "operator": 10, + "overload.": 1, + "A": 1, + "friend": 10, + "stream": 5, + "myclass.label": 2, + "myclass.depth": 2, + "myclass.userIndex": 2, + "qCompress": 2, + "myclass.data": 4, + "myclass.uniqueID": 2, + "myclass.nextItemsIndices": 2, + "myclass.fatherIndex": 2, + "myclass.noFatherRoot": 2, + "myclass.fileName": 2, + "myclass.firstLineData": 4, + "myclass.linesNumbers": 2, + "QDataStream": 2, + "myclass": 1, + "//Don": 1, + "read": 1, + "it": 2, + "either": 1, + "qUncompress": 2, + "": 1, + "using": 1, + "namespace": 26, + "std": 49, + "main": 2, + "cout": 1, + "endl": 1, + "": 1, + "": 1, + "": 1, + "EC_KEY_regenerate_key": 1, + "EC_KEY": 3, + "*eckey": 2, + "BIGNUM": 9, + "*priv_key": 1, + "ok": 3, + "BN_CTX": 2, + "*ctx": 2, + "EC_POINT": 4, + "*pub_key": 1, + "eckey": 7, + "EC_GROUP": 2, + "*group": 2, + "EC_KEY_get0_group": 2, + "ctx": 26, + "BN_CTX_new": 2, + "goto": 156, + "err": 26, + "pub_key": 6, + "EC_POINT_new": 4, + "group": 12, + "EC_POINT_mul": 3, + "priv_key": 2, + "EC_KEY_set_private_key": 1, + "EC_KEY_set_public_key": 2, + "EC_POINT_free": 4, + "BN_CTX_free": 2, + "ECDSA_SIG_recover_key_GFp": 3, + "ECDSA_SIG": 3, + "*ecsig": 1, + "*msg": 2, + "msglen": 2, + "recid": 3, + "check": 2, + "ret": 24, + "*x": 1, + "*e": 1, + "*order": 1, + "*sor": 1, + "*eor": 1, + "*field": 1, + "*R": 1, + "*O": 1, + "*Q": 1, + "*rr": 1, + "*zero": 1, + "n": 28, + "i": 47, + "BN_CTX_start": 1, + "order": 8, + "BN_CTX_get": 8, + "EC_GROUP_get_order": 1, + "BN_copy": 1, + "BN_mul_word": 1, + "BN_add": 1, + "ecsig": 3, + "r": 36, + "field": 3, + "EC_GROUP_get_curve_GFp": 1, + "BN_cmp": 1, + "R": 6, + "EC_POINT_set_compressed_coordinates_GFp": 1, + "%": 4, + "O": 5, + "EC_POINT_is_at_infinity": 1, + "Q": 5, + "EC_GROUP_get_degree": 1, + "e": 14, + "BN_bin2bn": 3, + "msg": 1, + "*msglen": 1, + "BN_rshift": 1, + "zero": 3, + "BN_zero": 1, + "BN_mod_sub": 1, + "rr": 4, + "BN_mod_inverse": 1, + "sor": 3, + "BN_mod_mul": 2, + "s": 9, + "eor": 3, + "BN_CTX_end": 1, + "CKey": 26, + "SetCompressedPubKey": 4, + "EC_KEY_set_conv_form": 1, + "pkey": 14, + "POINT_CONVERSION_COMPRESSED": 1, + "fCompressedPubKey": 5, + "true": 39, + "Reset": 5, + "EC_KEY_new_by_curve_name": 2, + "NID_secp256k1": 2, + "throw": 4, + "key_error": 6, + "fSet": 7, + "b": 57, + "EC_KEY_dup": 1, + "b.pkey": 2, + "b.fSet": 2, + "EC_KEY_copy": 1, + "hash": 20, + "sizeof": 14, + "vchSig": 18, + "nSize": 2, + "vchSig.clear": 2, + "vchSig.resize": 2, + "Shrink": 1, + "fit": 1, + "actual": 1, + "size": 9, + "SignCompact": 2, + "uint256": 10, + "vector": 14, + "": 19, + "fOk": 3, + "*sig": 2, + "ECDSA_do_sign": 1, + "char*": 14, + "sig": 11, + "nBitsR": 3, + "BN_num_bits": 2, + "nBitsS": 3, + "nRecId": 4, + "<4;>": 1, + "keyRec": 5, + "1": 2, + "GetPubKey": 5, + "break": 34, + "BN_bn2bin": 2, + "/8": 2, + "ECDSA_SIG_free": 2, + "SetCompactSignature": 2, + "vchSig.size": 2, + "nV": 6, + "<27>": 1, + "ECDSA_SIG_new": 1, + "EC_KEY_free": 1, + "Verify": 2, + "ECDSA_verify": 1, + "VerifyCompact": 2, + "key": 23, + "key.SetCompactSignature": 1, + "key.GetPubKey": 1, + "IsValid": 4, + "fCompr": 3, + "CSecret": 4, + "secret": 2, + "GetSecret": 2, + "key2": 1, + "key2.SetSecret": 1, + "key2.GetPubKey": 1, + "BITCOIN_KEY_H": 2, + "": 1, + "": 2, + "": 1, + "definition": 1, + "runtime_error": 2, + "explicit": 3, + "string": 10, + "str": 2, + "CKeyID": 5, + "uint160": 8, + "CScriptID": 3, + "CPubKey": 11, + "vchPubKey": 6, + "vchPubKeyIn": 2, + "a": 84, + "a.vchPubKey": 3, + "b.vchPubKey": 3, + "IMPLEMENT_SERIALIZE": 1, + "READWRITE": 1, + "GetID": 1, + "Hash160": 1, + "GetHash": 1, + "Hash": 1, + "vchPubKey.begin": 1, + "vchPubKey.end": 1, + "vchPubKey.size": 3, + "||": 17, + "IsCompressed": 2, + "Raw": 1, + "typedef": 38, + "secure_allocator": 2, + "CPrivKey": 3, + "EC_KEY*": 1, + "IsNull": 1, + "MakeNewKey": 1, + "fCompressed": 3, + "SetPrivKey": 1, + "vchPrivKey": 1, + "SetSecret": 1, + "vchSecret": 1, + "GetPrivKey": 1, + "SetPubKey": 1, + "Sign": 1, + "#ifdef": 16, + "Q_OS_LINUX": 2, + "": 1, + "#if": 44, + "QT_VERSION": 1, + "QT_VERSION_CHECK": 1, + "#error": 9, + "Something": 1, + "wrong": 1, + "with": 6, + "setup.": 1, + "Please": 3, + "report": 2, + "mailing": 1, + "argc": 2, + "char**": 2, + "argv": 2, + "google_breakpad": 1, + "ExceptionHandler": 1, + "eh": 1, + "Utils": 4, + "exceptionHandler": 2, + "qInstallMsgHandler": 1, + "messageHandler": 2, + "QApplication": 1, + "app": 1, + "STATIC_BUILD": 1, + "Q_INIT_RESOURCE": 2, + "WebKit": 1, + "InspectorBackendStub": 1, + "app.setWindowIcon": 1, + "QIcon": 1, + "app.setApplicationName": 1, + "app.setOrganizationName": 1, + "app.setOrganizationDomain": 1, + "app.setApplicationVersion": 1, + "PHANTOMJS_VERSION_STRING": 1, + "Phantom": 1, + "phantom": 1, + "phantom.execute": 1, + "app.exec": 1, + "phantom.returnValue": 1, + "INTERNAL_SUPPRESS_PROTOBUF_FIELD_DEPRECATION": 1, + "": 1, + "": 2, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "persons": 4, + "google": 72, + "protobuf": 72, + "Descriptor*": 3, + "Person_descriptor_": 6, + "internal": 46, + "GeneratedMessageReflection*": 1, + "Person_reflection_": 4, + "protobuf_AssignDesc_protocol_2dbuffer_2eproto": 4, + "protobuf_AddDesc_protocol_2dbuffer_2eproto": 6, + "FileDescriptor*": 1, + "file": 6, + "DescriptorPool": 3, + "generated_pool": 2, + "FindFileByName": 1, + "GOOGLE_CHECK": 1, + "message_type": 1, + "Person_offsets_": 2, + "GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET": 3, + "Person": 65, + "name_": 30, + "GeneratedMessageReflection": 1, + "default_instance_": 8, + "_has_bits_": 14, + "_unknown_fields_": 5, + "MessageFactory": 3, + "generated_factory": 1, + "GOOGLE_PROTOBUF_DECLARE_ONCE": 1, + "protobuf_AssignDescriptors_once_": 2, + "inline": 39, + "protobuf_AssignDescriptorsOnce": 4, + "GoogleOnceInit": 1, + "protobuf_RegisterTypes": 2, + "InternalRegisterGeneratedMessage": 1, + "default_instance": 3, + "protobuf_ShutdownFile_protocol_2dbuffer_2eproto": 4, + "delete": 6, + "already_here": 3, + "GOOGLE_PROTOBUF_VERIFY_VERSION": 1, + "InternalAddGeneratedFile": 1, + "InternalRegisterGeneratedFile": 1, + "InitAsDefaultInstance": 3, + "OnShutdown": 1, + "struct": 8, + "StaticDescriptorInitializer_protocol_2dbuffer_2eproto": 2, + "static_descriptor_initializer_protocol_2dbuffer_2eproto_": 1, + "_MSC_VER": 3, + "kNameFieldNumber": 2, + "Message": 7, + "SharedCtor": 4, + "from": 25, + "MergeFrom": 9, + "_cached_size_": 7, + "const_cast": 3, + "string*": 11, + "kEmptyString": 12, + "memset": 2, + "SharedDtor": 3, + "SetCachedSize": 2, + "GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN": 2, + "GOOGLE_SAFE_CONCURRENT_WRITES_END": 2, + "descriptor": 2, + "*default_instance_": 1, + "Person*": 7, + "New": 4, + "Clear": 5, + "xffu": 3, + "has_name": 6, + "clear": 2, + "mutable_unknown_fields": 4, + "MergePartialFromCodedStream": 2, + "io": 4, + "CodedInputStream*": 2, + "input": 6, + "DO_": 4, + "EXPRESSION": 2, + "uint32": 2, + "tag": 6, + "while": 11, + "ReadTag": 1, + "switch": 3, + "WireFormatLite": 9, + "GetTagFieldNumber": 1, + "case": 33, + "GetTagWireType": 2, + "WIRETYPE_LENGTH_DELIMITED": 1, + "ReadString": 1, + "mutable_name": 3, + "WireFormat": 10, + "VerifyUTF8String": 3, + ".data": 3, + ".length": 3, + "PARSE": 1, + "else": 46, + "handle_uninterpreted": 2, + "ExpectAtEnd": 1, + "default": 4, + "WIRETYPE_END_GROUP": 1, + "SkipField": 1, + "#undef": 3, + "SerializeWithCachedSizes": 2, + "CodedOutputStream*": 2, + "output": 5, + "SERIALIZE": 2, + "WriteString": 1, + "unknown_fields": 7, + ".empty": 3, + "SerializeUnknownFields": 1, + "uint8*": 4, + "SerializeWithCachedSizesToArray": 2, + "target": 6, + "WriteStringToArray": 1, + "SerializeUnknownFieldsToArray": 1, + "ByteSize": 2, + "total_size": 5, + "StringSize": 1, + "ComputeUnknownFieldsSize": 1, + "GOOGLE_CHECK_NE": 2, + "source": 9, + "dynamic_cast_if_available": 1, + "": 12, + "ReflectionOps": 1, + "Merge": 1, + "from._has_bits_": 1, + "from.has_name": 1, + "set_name": 7, + "from.name": 1, + "from.unknown_fields": 1, + "CopyFrom": 5, + "IsInitialized": 3, + "Swap": 2, + "other": 7, + "swap": 3, + "_unknown_fields_.Swap": 1, + "Metadata": 3, + "GetMetadata": 2, + "metadata": 2, + "metadata.descriptor": 1, + "metadata.reflection": 1, + "PROTOBUF_protocol_2dbuffer_2eproto__INCLUDED": 3, + "": 1, + "GOOGLE_PROTOBUF_VERSION": 1, + "was": 3, + "generated": 2, + "by": 5, + "newer": 2, + "version": 4, + "protoc": 2, + "which": 2, + "incompatible": 2, + "your": 3, + "Protocol": 2, + "Buffer": 2, + "headers.": 3, + "update": 1, + "GOOGLE_PROTOBUF_MIN_PROTOC_VERSION": 1, + "older": 1, + "regenerate": 1, + "protoc.": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "virtual": 10, + "*this": 1, + "UnknownFieldSet": 2, + "UnknownFieldSet*": 1, + "GetCachedSize": 1, + "clear_name": 2, + "size_t": 5, + "release_name": 2, + "set_allocated_name": 2, + "set_has_name": 7, + "clear_has_name": 5, + "mutable": 1, + "u": 9, + "|": 8, + "*name_": 1, + "assign": 3, + "reinterpret_cast": 7, + "temp": 2, + "SWIG": 2, + "QSCICOMMAND_H": 2, + "__APPLE__": 4, + "extern": 4, + "": 1, + "": 2, + "": 1, + "QsciScintilla": 7, + "brief": 2, + "The": 8, + "QsciCommand": 7, + "represents": 1, + "editor": 1, + "command": 9, + "that": 7, + "may": 2, + "have": 1, + "one": 42, + "or": 10, + "two": 1, + "keys": 3, + "bound": 4, + "it.": 2, + "Methods": 1, + "are": 3, + "provided": 1, + "change": 1, + "remove": 1, + "binding.": 1, + "Each": 1, + "has": 2, + "user": 2, + "friendly": 2, + "use": 1, + "mapping": 1, + "dialogs.": 1, + "QSCINTILLA_EXPORT": 2, + "defines": 1, + "different": 1, + "commands": 1, + "can": 3, + "be": 9, + "assigned": 1, + "key.": 1, + "Command": 4, + "Move": 26, + "down": 12, + "line.": 33, + "LineDown": 1, + "QsciScintillaBase": 100, + "SCI_LINEDOWN": 1, + "Extend": 33, + "selection": 39, + "LineDownExtend": 1, + "SCI_LINEDOWNEXTEND": 1, + "rectangular": 9, + "LineDownRectExtend": 1, + "SCI_LINEDOWNRECTEXTEND": 1, + "Scroll": 5, + "view": 2, + "LineScrollDown": 1, + "SCI_LINESCROLLDOWN": 1, + "up": 13, + "LineUp": 1, + "SCI_LINEUP": 1, + "LineUpExtend": 1, + "SCI_LINEUPEXTEND": 1, + "LineUpRectExtend": 1, + "SCI_LINEUPRECTEXTEND": 1, + "LineScrollUp": 1, + "SCI_LINESCROLLUP": 1, + "start": 11, + "document.": 8, + "ScrollToStart": 1, + "SCI_SCROLLTOSTART": 1, + "end": 18, + "ScrollToEnd": 1, + "SCI_SCROLLTOEND": 1, + "vertically": 1, + "centre": 1, + "current": 9, + "VerticalCentreCaret": 1, + "SCI_VERTICALCENTRECARET": 1, + "paragraph.": 4, + "ParaDown": 1, + "SCI_PARADOWN": 1, + "ParaDownExtend": 1, + "SCI_PARADOWNEXTEND": 1, + "ParaUp": 1, + "SCI_PARAUP": 1, + "ParaUpExtend": 1, + "SCI_PARAUPEXTEND": 1, + "left": 7, + "character.": 9, + "CharLeft": 1, + "SCI_CHARLEFT": 1, + "CharLeftExtend": 1, + "SCI_CHARLEFTEXTEND": 1, + "CharLeftRectExtend": 1, + "SCI_CHARLEFTRECTEXTEND": 1, + "right": 8, + "CharRight": 1, + "SCI_CHARRIGHT": 1, + "CharRightExtend": 1, + "SCI_CHARRIGHTEXTEND": 1, + "CharRightRectExtend": 1, + "SCI_CHARRIGHTRECTEXTEND": 1, + "word.": 9, + "WordLeft": 1, + "SCI_WORDLEFT": 1, + "WordLeftExtend": 1, + "SCI_WORDLEFTEXTEND": 1, + "WordRight": 1, + "SCI_WORDRIGHT": 1, + "WordRightExtend": 1, + "SCI_WORDRIGHTEXTEND": 1, + "previous": 5, + "WordLeftEnd": 1, + "SCI_WORDLEFTEND": 1, + "WordLeftEndExtend": 1, + "SCI_WORDLEFTENDEXTEND": 1, + "next": 6, + "WordRightEnd": 1, + "SCI_WORDRIGHTEND": 1, + "WordRightEndExtend": 1, + "SCI_WORDRIGHTENDEXTEND": 1, + "word": 6, + "part.": 4, + "WordPartLeft": 1, + "SCI_WORDPARTLEFT": 1, + "WordPartLeftExtend": 1, + "SCI_WORDPARTLEFTEXTEND": 1, + "WordPartRight": 1, + "SCI_WORDPARTRIGHT": 1, + "WordPartRightExtend": 1, + "SCI_WORDPARTRIGHTEXTEND": 1, + "document": 16, + "Home": 1, + "SCI_HOME": 1, + "HomeExtend": 1, + "SCI_HOMEEXTEND": 1, + "HomeRectExtend": 1, + "SCI_HOMERECTEXTEND": 1, + "displayed": 10, + "HomeDisplay": 1, + "SCI_HOMEDISPLAY": 1, + "HomeDisplayExtend": 1, + "SCI_HOMEDISPLAYEXTEND": 1, + "HomeWrap": 1, + "SCI_HOMEWRAP": 1, + "HomeWrapExtend": 1, + "SCI_HOMEWRAPEXTEND": 1, + "first": 8, + "visible": 6, + "character": 8, + "VCHome": 1, + "SCI_VCHOME": 1, + "VCHomeExtend": 1, + "SCI_VCHOMEEXTEND": 1, + "VCHomeRectExtend": 1, + "SCI_VCHOMERECTEXTEND": 1, + "VCHomeWrap": 1, + "SCI_VCHOMEWRAP": 1, + "VCHomeWrapExtend": 1, + "SCI_VCHOMEWRAPEXTEND": 1, + "LineEnd": 1, + "SCI_LINEEND": 1, + "LineEndExtend": 1, + "SCI_LINEENDEXTEND": 1, + "LineEndRectExtend": 1, + "SCI_LINEENDRECTEXTEND": 1, + "LineEndDisplay": 1, + "SCI_LINEENDDISPLAY": 1, + "LineEndDisplayExtend": 1, + "SCI_LINEENDDISPLAYEXTEND": 1, + "LineEndWrap": 1, + "SCI_LINEENDWRAP": 1, + "LineEndWrapExtend": 1, + "SCI_LINEENDWRAPEXTEND": 1, + "DocumentStart": 1, + "SCI_DOCUMENTSTART": 1, + "DocumentStartExtend": 1, + "SCI_DOCUMENTSTARTEXTEND": 1, + "DocumentEnd": 1, + "SCI_DOCUMENTEND": 1, + "DocumentEndExtend": 1, + "SCI_DOCUMENTENDEXTEND": 1, + "page.": 13, + "PageUp": 1, + "SCI_PAGEUP": 1, + "PageUpExtend": 1, + "SCI_PAGEUPEXTEND": 1, + "PageUpRectExtend": 1, + "SCI_PAGEUPRECTEXTEND": 1, + "PageDown": 1, + "SCI_PAGEDOWN": 1, + "PageDownExtend": 1, + "SCI_PAGEDOWNEXTEND": 1, + "PageDownRectExtend": 1, + "SCI_PAGEDOWNRECTEXTEND": 1, + "Stuttered": 4, + "move": 2, + "StutteredPageUp": 1, + "SCI_STUTTEREDPAGEUP": 1, + "extend": 2, + "StutteredPageUpExtend": 1, + "SCI_STUTTEREDPAGEUPEXTEND": 1, + "StutteredPageDown": 1, + "SCI_STUTTEREDPAGEDOWN": 1, + "StutteredPageDownExtend": 1, + "SCI_STUTTEREDPAGEDOWNEXTEND": 1, + "Delete": 10, + "SCI_CLEAR": 1, + "DeleteBack": 1, + "SCI_DELETEBACK": 1, + "at": 4, + "DeleteBackNotLine": 1, + "SCI_DELETEBACKNOTLINE": 1, + "left.": 2, + "DeleteWordLeft": 1, + "SCI_DELWORDLEFT": 1, + "right.": 2, + "DeleteWordRight": 1, + "SCI_DELWORDRIGHT": 1, + "DeleteWordRightEnd": 1, + "SCI_DELWORDRIGHTEND": 1, + "line": 10, + "DeleteLineLeft": 1, + "SCI_DELLINELEFT": 1, + "DeleteLineRight": 1, + "SCI_DELLINERIGHT": 1, + "LineDelete": 1, + "SCI_LINEDELETE": 1, + "Cut": 2, + "clipboard.": 5, + "LineCut": 1, + "SCI_LINECUT": 1, + "Copy": 2, + "LineCopy": 1, + "SCI_LINECOPY": 1, + "Transpose": 1, + "lines.": 1, + "LineTranspose": 1, + "SCI_LINETRANSPOSE": 1, + "Duplicate": 2, + "LineDuplicate": 1, + "SCI_LINEDUPLICATE": 1, + "Select": 33, + "whole": 2, + "SelectAll": 1, + "SCI_SELECTALL": 1, + "selected": 2, + "lines": 3, + "MoveSelectedLinesUp": 1, + "SCI_MOVESELECTEDLINESUP": 1, + "MoveSelectedLinesDown": 1, + "SCI_MOVESELECTEDLINESDOWN": 1, + "selection.": 1, + "SelectionDuplicate": 1, + "SCI_SELECTIONDUPLICATE": 1, + "Convert": 2, + "lower": 1, + "case.": 2, + "SelectionLowerCase": 1, + "SCI_LOWERCASE": 1, + "upper": 1, + "SelectionUpperCase": 1, + "SCI_UPPERCASE": 1, + "SelectionCut": 1, + "SCI_CUT": 1, + "SelectionCopy": 1, + "SCI_COPY": 1, + "Paste": 2, + "SCI_PASTE": 1, + "Toggle": 1, + "insert/overtype.": 1, + "EditToggleOvertype": 1, + "SCI_EDITTOGGLEOVERTYPE": 1, + "Insert": 2, + "platform": 1, + "dependent": 1, + "newline.": 1, + "Newline": 1, + "SCI_NEWLINE": 1, + "formfeed.": 1, + "Formfeed": 1, + "SCI_FORMFEED": 1, + "Indent": 1, + "level.": 2, + "Tab": 1, + "SCI_TAB": 1, + "De": 1, + "indent": 1, + "Backtab": 1, + "SCI_BACKTAB": 1, + "Cancel": 2, + "any": 5, + "operation.": 1, + "SCI_CANCEL": 1, + "Undo": 2, + "last": 4, + "command.": 5, + "SCI_UNDO": 1, + "Redo": 2, + "SCI_REDO": 1, + "Zoom": 2, + "in.": 1, + "ZoomIn": 1, + "SCI_ZOOMIN": 1, + "out.": 1, + "ZoomOut": 1, + "SCI_ZOOMOUT": 1, + "Return": 3, + "will": 2, + "executed": 1, + "instance.": 2, + "scicmd": 2, + "Execute": 1, + "execute": 1, + "Binds": 2, + "If": 4, + "then": 6, + "binding": 3, + "removed.": 2, + "invalid": 5, + "unchanged.": 1, + "Valid": 1, + "control": 1, + "Key_Down": 1, + "Key_Up": 1, + "Key_Left": 1, + "Key_Right": 1, + "Key_Home": 1, + "Key_End": 1, + "Key_PageUp": 1, + "Key_PageDown": 1, + "Key_Delete": 1, + "Key_Insert": 1, + "Key_Escape": 1, + "Key_Backspace": 1, + "Key_Tab": 1, + "Key_Return.": 1, + "Keys": 1, + "modified": 2, + "combination": 1, + "SHIFT": 1, + "CTRL": 1, + "ALT": 1, + "META.": 1, + "sa": 8, + "setAlternateKey": 3, + "validKey": 3, + "setKey": 3, + "alternate": 3, + "altkey": 3, + "alternateKey": 3, + "currently": 2, + "returned.": 4, + "qkey": 2, + "qaltkey": 2, + "valid": 2, + "QsciCommandSet": 1, + "*qs": 1, + "cmd": 1, + "*desc": 1, + "bindKey": 1, + "qk": 1, + "scik": 1, + "*qsCmd": 1, + "scikey": 1, + "scialtkey": 1, + "*descCmd": 1, + "QSCIPRINTER_H": 2, + "": 1, + "": 1, + "QT_BEGIN_NAMESPACE": 1, + "QRect": 2, + "QPainter": 2, + "QT_END_NAMESPACE": 1, + "QsciPrinter": 9, + "sub": 2, + "Qt": 1, + "QPrinter": 3, + "able": 1, + "print": 4, + "text": 5, + "Scintilla": 2, + "further": 1, + "classed": 1, + "alter": 1, + "layout": 1, + "adding": 2, + "headers": 3, + "footers": 2, + "example.": 1, + "Constructs": 1, + "printer": 1, + "paint": 1, + "device": 1, + "mode": 4, + "mode.": 1, + "PrinterMode": 1, + "ScreenResolution": 1, + "Destroys": 1, + "Format": 1, + "page": 4, + "example": 1, + "before": 1, + "drawn": 2, + "on": 1, + "painter": 4, + "used": 4, + "add": 3, + "customised": 2, + "graphics.": 2, + "drawing": 4, + "actually": 1, + "being": 2, + "rather": 1, + "than": 1, + "sized.": 1, + "methods": 1, + "must": 1, + "only": 1, + "called": 1, + "when": 5, + "true.": 1, + "area": 5, + "draw": 1, + "text.": 3, + "should": 1, + "necessary": 1, + "reserve": 1, + "By": 1, + "relative": 1, + "printable": 1, + "Use": 1, + "setFullPage": 1, + "because": 2, + "calling": 1, + "printRange": 2, + "you": 1, + "want": 2, + "try": 1, + "over": 1, + "pagenr": 2, + "number": 3, + "numbered": 1, + "formatPage": 1, + "points": 2, + "each": 2, + "font": 2, + "printing.": 2, + "setMagnification": 2, + "magnification": 3, + "mag": 2, + "Sets": 2, + "printing": 2, + "magnification.": 1, + "Print": 1, + "range": 1, + "qsb.": 1, + "negative": 2, + "signifies": 2, + "returned": 2, + "there": 1, + "no": 1, + "error.": 1, + "*qsb": 1, + "wrap": 4, + "WrapWord.": 1, + "setWrapMode": 2, + "WrapMode": 3, + "wrapMode": 2, + "wmode.": 1, + "wmode": 1, + "v8": 9, + "Scanner": 16, + "UnicodeCache*": 4, + "unicode_cache": 3, + "unicode_cache_": 10, + "octal_pos_": 5, + "Location": 14, + "harmony_scoping_": 4, + "harmony_modules_": 4, + "Initialize": 4, + "Utf16CharacterStream*": 3, + "source_": 7, + "Init": 3, + "has_line_terminator_before_next_": 9, + "SkipWhiteSpace": 4, + "Scan": 5, + "uc32": 19, + "ScanHexNumber": 2, + "expected_length": 4, + "ASSERT": 17, + "prevent": 1, + "overflow": 1, + "digits": 3, + "c0_": 64, + "d": 8, + "HexValue": 2, + "j": 4, + "PushBack": 8, + "Advance": 44, + "STATIC_ASSERT": 5, + "Token": 212, + "NUM_TOKENS": 1, + "byte": 1, + "one_char_tokens": 2, + "ILLEGAL": 120, + "LPAREN": 2, + "RPAREN": 2, + "COMMA": 2, + "COLON": 2, + "SEMICOLON": 2, + "CONDITIONAL": 2, + "f": 5, + "LBRACK": 2, + "RBRACK": 2, + "LBRACE": 2, + "RBRACE": 2, + "BIT_NOT": 2, + "Value": 23, + "Next": 3, + "current_": 2, + "next_": 2, + "has_multiline_comment_before_next_": 5, + "static_cast": 7, + "token": 64, + "": 1, + "pos": 12, + "source_pos": 10, + "next_.token": 3, + "next_.location.beg_pos": 3, + "next_.location.end_pos": 4, + "current_.token": 4, + "IsByteOrderMark": 2, + "xFEFF": 1, + "xFFFE": 1, + "start_position": 2, + "IsWhiteSpace": 2, + "IsLineTerminator": 6, + "SkipSingleLineComment": 6, + "undo": 4, + "WHITESPACE": 6, + "SkipMultiLineComment": 3, + "ch": 5, + "ScanHtmlComment": 3, + "LT": 2, + "next_.literal_chars": 13, + "ScanString": 3, + "LTE": 1, + "ASSIGN_SHL": 1, + "SHL": 1, + "GTE": 1, + "ASSIGN_SAR": 1, + "ASSIGN_SHR": 1, + "SHR": 1, + "SAR": 1, + "GT": 1, + "EQ_STRICT": 1, + "EQ": 1, + "ASSIGN": 1, + "NE_STRICT": 1, + "NE": 1, + "NOT": 1, + "INC": 1, + "ASSIGN_ADD": 1, + "ADD": 1, + "DEC": 1, + "ASSIGN_SUB": 1, + "SUB": 1, + "ASSIGN_MUL": 1, + "MUL": 1, + "ASSIGN_MOD": 1, + "MOD": 1, + "ASSIGN_DIV": 1, + "DIV": 1, + "AND": 1, + "ASSIGN_BIT_AND": 1, + "BIT_AND": 1, + "OR": 1, + "ASSIGN_BIT_OR": 1, + "BIT_OR": 1, + "ASSIGN_BIT_XOR": 1, + "BIT_XOR": 1, + "IsDecimalDigit": 2, + "ScanNumber": 3, + "PERIOD": 1, + "IsIdentifierStart": 2, + "ScanIdentifierOrKeyword": 2, + "EOS": 1, + "SeekForward": 4, + "current_pos": 4, + "ASSERT_EQ": 1, + "ScanEscape": 2, + "IsCarriageReturn": 2, + "IsLineFeed": 2, + "fall": 2, + "through": 2, + "v": 3, + "xx": 1, + "xxx": 1, + "error": 1, + "immediately": 1, + "octal": 1, + "escape": 1, + "quote": 3, + "consume": 2, + "LiteralScope": 4, + "literal": 2, + ".": 2, + "X": 2, + "E": 3, + "l": 1, + "p": 5, + "w": 1, + "keyword": 1, + "Unescaped": 1, + "in_character_class": 2, + "AddLiteralCharAdvance": 3, + "literal.Complete": 2, + "ScanLiteralUnicodeEscape": 3, + "V8_SCANNER_H_": 3, + "ParsingFlags": 1, + "kNoParsingFlags": 1, + "kLanguageModeMask": 4, + "kAllowLazy": 1, + "kAllowNativesSyntax": 1, + "kAllowModules": 1, + "CLASSIC_MODE": 2, + "STRICT_MODE": 2, + "EXTENDED_MODE": 2, + "detect": 1, + "x16": 1, + "x36.": 1, + "Utf16CharacterStream": 3, + "pos_": 6, + "buffer_cursor_": 5, + "buffer_end_": 3, + "ReadBlock": 2, + "": 1, + "kEndOfInput": 2, + "code_unit_count": 7, + "buffered_chars": 2, + "SlowSeekForward": 2, + "int32_t": 1, + "code_unit": 6, + "uc16*": 3, + "UnicodeCache": 3, + "unibrow": 11, + "Utf8InputBuffer": 2, + "<1024>": 2, + "Utf8Decoder": 2, + "StaticResource": 2, + "": 2, + "utf8_decoder": 1, + "utf8_decoder_": 2, + "uchar": 4, + "kIsIdentifierStart.get": 1, + "IsIdentifierPart": 1, + "kIsIdentifierPart.get": 1, + "kIsLineTerminator.get": 1, + "kIsWhiteSpace.get": 1, + "Predicate": 4, + "": 1, + "128": 4, + "kIsIdentifierStart": 1, + "": 1, + "kIsIdentifierPart": 1, + "": 1, + "kIsLineTerminator": 1, + "": 1, + "kIsWhiteSpace": 1, + "DISALLOW_COPY_AND_ASSIGN": 2, + "LiteralBuffer": 6, + "is_ascii_": 10, + "position_": 17, + "backing_store_": 7, + "backing_store_.length": 4, + "backing_store_.Dispose": 3, + "INLINE": 2, + "AddChar": 2, + "uint32_t": 8, + "ExpandBuffer": 2, + "kMaxAsciiCharCodeU": 1, + "": 6, + "kASCIISize": 1, + "ConvertToUtf16": 2, + "*reinterpret_cast": 1, + "": 2, + "kUC16Size": 2, + "is_ascii": 3, + "Vector": 13, + "uc16": 5, + "utf16_literal": 3, + "backing_store_.start": 5, + "ascii_literal": 3, + "length": 8, + "kInitialCapacity": 2, + "kGrowthFactory": 2, + "kMinConversionSlack": 1, + "kMaxGrowth": 2, + "MB": 1, + "NewCapacity": 3, + "min_capacity": 2, + "capacity": 3, + "Max": 1, + "new_capacity": 2, + "Min": 1, + "new_store": 6, + "memcpy": 1, + "new_store.start": 3, + "new_content_size": 4, + "src": 2, + "": 1, + "dst": 2, + "Scanner*": 2, + "self": 5, + "scanner_": 5, + "complete_": 4, + "StartLiteral": 2, + "DropLiteral": 2, + "Complete": 1, + "TerminateLiteral": 2, + "beg_pos": 5, + "end_pos": 4, + "kNoOctalLocation": 1, + "scanner_contants": 1, + "current_token": 1, + "location": 4, + "current_.location": 2, + "literal_ascii_string": 1, + "ASSERT_NOT_NULL": 9, + "current_.literal_chars": 11, + "literal_utf16_string": 1, + "is_literal_ascii": 1, + "literal_length": 1, + "literal_contains_escapes": 1, + "source_length": 3, + "location.end_pos": 1, + "location.beg_pos": 1, + "STRING": 1, + "peek": 1, + "peek_location": 1, + "next_.location": 1, + "next_literal_ascii_string": 1, + "next_literal_utf16_string": 1, + "is_next_literal_ascii": 1, + "next_literal_length": 1, + "kCharacterLookaheadBufferSize": 3, + "ScanOctalEscape": 1, + "octal_position": 1, + "clear_octal_position": 1, + "HarmonyScoping": 1, + "SetHarmonyScoping": 1, + "scoping": 2, + "HarmonyModules": 1, + "SetHarmonyModules": 1, + "modules": 2, + "HasAnyLineTerminatorBeforeNext": 1, + "ScanRegExpPattern": 1, + "seen_equal": 1, + "ScanRegExpFlags": 1, + "IsIdentifier": 1, + "CharacterStream*": 1, + "buffer": 1, + "TokenDesc": 3, + "LiteralBuffer*": 2, + "literal_chars": 1, + "free_buffer": 3, + "literal_buffer1_": 3, + "literal_buffer2_": 2, + "AddLiteralChar": 2, + "tok": 2, + "else_": 2, + "ScanDecimalDigits": 1, + "seen_period": 1, + "ScanIdentifierSuffix": 1, + "LiteralScope*": 1, + "ScanIdentifierUnicodeEscape": 1, + "desc": 2, + "as": 1, + "look": 1, + "ahead": 1, + "UTILS_H": 3, + "": 1, + "": 1, + "": 1, + "QTemporaryFile": 1, + "showUsage": 1, + "QtMsgType": 1, + "type": 6, + "dump_path": 1, + "minidump_id": 1, + "void*": 1, + "context": 8, + "succeeded": 1, + "QVariant": 1, + "coffee2js": 1, "script": 1, - "on": 6, - "SectionGroup": 2, - "Page": 4, - "doesn": 2, - "Uninstall": 2, - "failed": 1, - "write": 2, - "NSIS": 3, - "ReadRegStr": 1, - "FFFFFF": 1, - "SMPROGRAMS": 2, - "running": 1, - "CSCTest": 1, - "INSTDIR": 15, - "exehead.": 1, - "_": 1, - "continue.": 1, - "_t": 2, - "System32": 1, - "x64.": 1, - "RequestExecutionLevel": 1, - "create": 1, - "hidden": 1, - "Icons": 1, - "nsis1": 1, - "WriteINIStr": 5, - "hotkey": 1, - "HKLM": 9, - "(": 5, - "SYSDIR": 1, - "SetDatablockOptimize": 1, - "MB_ICONQUESTION": 1, - "/COMPONENTSONLYONCUSTOM": 1, - "MyProjectFamily": 2, - "NoError": 2, - "BeginTestSection": 1, - "/NOCUSTOM": 1, - "Value1": 1, - "uninstall.ico": 1, - "attempts": 1, - "IDOK": 1, + "injectJsInFrame": 2, + "jsFilePath": 5, + "libraryPath": 5, + "QWebFrame": 4, + "*targetFrame": 4, + "startingScript": 2, + "Encoding": 3, + "jsFileEnc": 2, + "readResourceFileUtf8": 1, + "resourceFilePath": 1, + "loadJSForDebug": 2, + "autorun": 2, + "cleanupFromDebug": 1, + "findScript": 1, + "jsFromScriptFile": 1, + "scriptPath": 1, + "enc": 1, + "shouldn": 1, + "instantiated": 1, + "QTemporaryFile*": 2, + "m_tempHarness": 1, + "We": 1, + "make": 1, + "sure": 1, + "clean": 1, + "after": 1, + "ourselves": 1, + "m_tempWrapper": 1, + "V8_DECLARE_ONCE": 1, + "init_once": 2, + "V8": 21, + "is_running_": 6, + "has_been_set_up_": 4, + "has_been_disposed_": 6, + "has_fatal_error_": 5, + "use_crankshaft_": 6, + "List": 3, + "": 3, + "call_completed_callbacks_": 16, + "LazyMutex": 1, + "entropy_mutex": 1, + "LAZY_MUTEX_INITIALIZER": 1, + "EntropySource": 3, + "entropy_source": 4, + "Deserializer*": 2, + "des": 3, + "FlagList": 1, + "EnforceFlagImplications": 1, + "InitializeOncePerProcess": 4, + "Isolate": 9, + "CurrentPerIsolateThreadData": 4, + "EnterDefaultIsolate": 1, + "thread_id": 1, + ".Equals": 1, + "ThreadId": 1, + "Current": 5, + "isolate": 15, + "IsDead": 2, + "Isolate*": 6, + "SetFatalError": 2, + "TearDown": 5, + "IsDefaultIsolate": 1, + "ElementsAccessor": 2, + "LOperand": 2, + "TearDownCaches": 1, + "RegisteredExtension": 1, + "UnregisterAll": 1, + "OS": 3, + "seed_random": 2, + "uint32_t*": 2, + "state": 15, + "FLAG_random_seed": 2, + "val": 3, + "ScopedLock": 1, + "lock": 1, + "entropy_mutex.Pointer": 1, + "random": 1, + "random_base": 3, + "xFFFF": 2, + "FFFF": 1, + "SetEntropySource": 2, + "SetReturnAddressLocationResolver": 3, + "ReturnAddressLocationResolver": 2, + "resolver": 3, + "StackFrame": 1, + "Random": 3, + "Context*": 4, + "IsGlobalContext": 1, + "ByteArray*": 1, + "seed": 2, + "random_seed": 1, + "": 1, + "GetDataStartAddress": 1, + "RandomPrivate": 2, + "private_random_seed": 1, + "IdleNotification": 3, + "hint": 3, + "FLAG_use_idle_notification": 1, + "HEAP": 1, + "AddCallCompletedCallback": 2, + "CallCompletedCallback": 4, + "callback": 7, + "Lazy": 1, + "init.": 1, + "Add": 1, + "RemoveCallCompletedCallback": 2, + "Remove": 1, + "FireCallCompletedCallback": 2, + "HandleScopeImplementer*": 1, + "handle_scope_implementer": 5, + "CallDepthIsZero": 1, + "IncrementCallDepth": 1, + "DecrementCallDepth": 1, + "union": 1, + "double": 23, + "double_value": 1, + "uint64_t": 2, + "uint64_t_value": 1, + "double_int_union": 2, + "Object*": 4, + "FillHeapNumberWithRandom": 2, + "heap_number": 4, + "random_bits": 2, + "binary_million": 3, + "r.double_value": 3, + "r.uint64_t_value": 1, + "HeapNumber": 1, + "cast": 1, + "set_value": 1, + "InitializeOncePerProcessImpl": 3, + "SetUp": 4, + "FLAG_crankshaft": 1, + "Serializer": 1, + "enabled": 1, + "CPU": 2, + "SupportsCrankshaft": 1, + "PostSetUp": 1, + "RuntimeProfiler": 1, + "GlobalSetUp": 1, + "FLAG_stress_compaction": 1, + "FLAG_force_marking_deque_overflows": 1, + "FLAG_gc_global": 1, + "FLAG_max_new_space_size": 1, + "kPageSizeBits": 1, + "SetUpCaches": 1, + "SetUpJSCallerSavedCodeData": 1, + "SamplerRegistry": 1, + "ExternalReference": 1, + "CallOnce": 1, + "V8_V8_H_": 3, + "defined": 21, + "GOOGLE3": 2, + "DEBUG": 3, + "NDEBUG": 4, + "both": 1, + "set": 1, + "Deserializer": 1, + "AllStatic": 1, + "IsRunning": 1, + "UseCrankshaft": 1, + "FatalProcessOutOfMemory": 1, + "take_snapshot": 1, + "NilValue": 1, + "kNullValue": 1, + "kUndefinedValue": 1, + "EqualityKind": 1, + "kStrictEquality": 1, + "kNonStrictEquality": 1, + "PY_SSIZE_T_CLEAN": 1, + "Py_PYTHON_H": 1, + "Python": 1, + "needed": 1, + "compile": 1, + "C": 1, + "extensions": 1, + "please": 1, + "install": 1, + "development": 1, + "Python.": 1, + "#else": 24, + "": 1, + "offsetof": 2, + "member": 2, + "type*": 1, + "WIN32": 2, + "MS_WINDOWS": 2, + "__stdcall": 2, + "__cdecl": 2, + "__fastcall": 2, + "DL_IMPORT": 2, + "DL_EXPORT": 2, + "PY_LONG_LONG": 5, + "LONG_LONG": 1, + "PY_VERSION_HEX": 9, + "METH_COEXIST": 1, + "PyDict_CheckExact": 1, + "op": 6, + "Py_TYPE": 4, + "PyDict_Type": 1, + "PyDict_Contains": 1, + "o": 20, + "PySequence_Contains": 1, + "Py_ssize_t": 17, + "PY_SSIZE_T_MAX": 1, + "INT_MAX": 1, + "PY_SSIZE_T_MIN": 1, + "INT_MIN": 1, + "PY_FORMAT_SIZE_T": 1, + "PyInt_FromSsize_t": 2, + "z": 46, + "PyInt_FromLong": 13, + "PyInt_AsSsize_t": 2, + "PyInt_AsLong": 2, + "PyNumber_Index": 1, + "PyNumber_Int": 1, + "PyIndex_Check": 1, + "PyNumber_Check": 1, + "PyErr_WarnEx": 1, + "category": 2, + "message": 2, + "stacklevel": 1, + "PyErr_Warn": 1, + "Py_REFCNT": 1, + "ob": 6, + "PyObject*": 16, + "ob_refcnt": 1, + "ob_type": 7, + "Py_SIZE": 1, + "PyVarObject*": 1, + "ob_size": 1, + "PyVarObject_HEAD_INIT": 1, + "PyObject_HEAD_INIT": 1, + "PyType_Modified": 1, + "*buf": 1, + "PyObject": 221, + "*obj": 2, + "len": 1, + "itemsize": 2, + "readonly": 2, + "ndim": 2, + "*format": 1, + "*shape": 1, + "*strides": 1, + "*suboffsets": 1, + "*internal": 1, + "Py_buffer": 5, + "PyBUF_SIMPLE": 1, + "PyBUF_WRITABLE": 1, + "PyBUF_FORMAT": 1, + "PyBUF_ND": 2, + "PyBUF_STRIDES": 5, + "PyBUF_C_CONTIGUOUS": 3, + "PyBUF_F_CONTIGUOUS": 3, + "PyBUF_ANY_CONTIGUOUS": 1, + "PyBUF_INDIRECT": 1, + "PY_MAJOR_VERSION": 10, + "__Pyx_BUILTIN_MODULE_NAME": 2, + "Py_TPFLAGS_CHECKTYPES": 1, + "Py_TPFLAGS_HAVE_INDEX": 1, + "Py_TPFLAGS_HAVE_NEWBUFFER": 1, + "PyBaseString_Type": 1, + "PyUnicode_Type": 2, + "PyStringObject": 2, + "PyUnicodeObject": 1, + "PyString_Type": 2, + "PyString_Check": 2, + "PyUnicode_Check": 1, + "PyString_CheckExact": 2, + "PyUnicode_CheckExact": 1, + "PyBytesObject": 1, + "PyBytes_Type": 1, + "PyBytes_Check": 1, + "PyBytes_CheckExact": 1, + "PyBytes_FromString": 2, + "PyString_FromString": 1, + "PyBytes_FromStringAndSize": 1, + "PyString_FromStringAndSize": 1, + "PyBytes_FromFormat": 1, + "PyString_FromFormat": 1, + "PyBytes_DecodeEscape": 1, + "PyString_DecodeEscape": 1, + "PyBytes_AsString": 2, + "PyString_AsString": 1, + "PyBytes_AsStringAndSize": 1, + "PyString_AsStringAndSize": 1, + "PyBytes_Size": 1, + "PyString_Size": 1, + "PyBytes_AS_STRING": 1, + "PyString_AS_STRING": 1, + "PyBytes_GET_SIZE": 1, + "PyString_GET_SIZE": 1, + "PyBytes_Repr": 1, + "PyString_Repr": 1, + "PyBytes_Concat": 1, + "PyString_Concat": 1, + "PyBytes_ConcatAndDel": 1, + "PyString_ConcatAndDel": 1, + "PySet_Check": 1, + "obj": 42, + "PyObject_TypeCheck": 3, + "PySet_Type": 2, + "PyFrozenSet_Check": 1, + "PyFrozenSet_Type": 1, + "PySet_CheckExact": 2, + "__Pyx_TypeCheck": 1, + "PyTypeObject": 2, + "PyIntObject": 1, + "PyLongObject": 2, + "PyInt_Type": 1, + "PyLong_Type": 1, + "PyInt_Check": 1, + "PyLong_Check": 1, + "PyInt_CheckExact": 1, + "PyLong_CheckExact": 1, + "PyInt_FromString": 1, + "PyLong_FromString": 1, + "PyInt_FromUnicode": 1, + "PyLong_FromUnicode": 1, + "PyLong_FromLong": 1, + "PyInt_FromSize_t": 1, + "PyLong_FromSize_t": 1, + "PyLong_FromSsize_t": 1, + "PyLong_AsLong": 1, + "PyInt_AS_LONG": 1, + "PyLong_AS_LONG": 1, + "PyLong_AsSsize_t": 1, + "PyInt_AsUnsignedLongMask": 1, + "PyLong_AsUnsignedLongMask": 1, + "PyInt_AsUnsignedLongLongMask": 1, + "PyLong_AsUnsignedLongLongMask": 1, + "PyBoolObject": 1, + "__Pyx_PyNumber_Divide": 2, + "PyNumber_TrueDivide": 1, + "__Pyx_PyNumber_InPlaceDivide": 2, + "PyNumber_InPlaceTrueDivide": 1, + "PyNumber_Divide": 1, + "PyNumber_InPlaceDivide": 1, + "__Pyx_PySequence_GetSlice": 2, + "PySequence_GetSlice": 2, + "__Pyx_PySequence_SetSlice": 2, + "PySequence_SetSlice": 2, + "__Pyx_PySequence_DelSlice": 2, + "PySequence_DelSlice": 2, + "unlikely": 69, + "PyErr_SetString": 4, + "PyExc_SystemError": 3, + "likely": 15, + "tp_as_mapping": 3, + "PyErr_Format": 4, + "PyExc_TypeError": 5, + "tp_name": 4, + "PyMethod_New": 2, + "func": 3, + "klass": 1, + "PyInstanceMethod_New": 1, + "__Pyx_GetAttrString": 2, + "PyObject_GetAttrString": 3, + "__Pyx_SetAttrString": 2, + "PyObject_SetAttrString": 2, + "__Pyx_DelAttrString": 2, + "PyObject_DelAttrString": 2, + "__Pyx_NAMESTR": 3, + "__Pyx_DOCSTR": 3, + "__cplusplus": 10, + "__PYX_EXTERN_C": 2, + "_USE_MATH_DEFINES": 1, + "": 1, + "__PYX_HAVE_API__wrapper_inner": 1, + "PYREX_WITHOUT_ASSERTIONS": 1, + "CYTHON_WITHOUT_ASSERTIONS": 1, + "CYTHON_INLINE": 68, + "__GNUC__": 5, + "__inline__": 1, + "#elif": 3, + "__inline": 1, + "__STDC_VERSION__": 2, + "L": 1, + "CYTHON_UNUSED": 7, + "**p": 1, + "*s": 1, + "long": 5, + "encoding": 1, + "is_unicode": 1, + "is_str": 1, + "intern": 1, + "__Pyx_StringTabEntry": 1, + "__Pyx_PyBytes_FromUString": 1, + "__Pyx_PyBytes_AsUString": 1, + "__Pyx_PyBool_FromLong": 1, + "Py_INCREF": 3, + "Py_True": 2, + "Py_False": 2, + "__Pyx_PyObject_IsTrue": 8, + "__Pyx_PyNumber_Int": 1, + "__Pyx_PyIndex_AsSsize_t": 1, + "__Pyx_PyInt_FromSize_t": 1, + "__Pyx_PyInt_AsSize_t": 1, + "__pyx_PyFloat_AsDouble": 3, + "PyFloat_CheckExact": 1, + "PyFloat_AS_DOUBLE": 1, + "PyFloat_AsDouble": 1, + "__GNUC_MINOR__": 1, + "__builtin_expect": 2, + "*__pyx_m": 1, + "*__pyx_b": 1, + "*__pyx_empty_tuple": 1, + "*__pyx_empty_bytes": 1, + "__pyx_lineno": 80, + "__pyx_clineno": 80, + "__pyx_cfilenm": 1, + "__FILE__": 2, + "*__pyx_filename": 1, + "CYTHON_CCOMPLEX": 12, + "_Complex_I": 3, + "": 1, + "": 1, + "__sun__": 1, + "fj": 1, + "*__pyx_f": 1, + "npy_int8": 1, + "__pyx_t_5numpy_int8_t": 1, + "npy_int16": 1, + "__pyx_t_5numpy_int16_t": 1, + "npy_int32": 1, + "__pyx_t_5numpy_int32_t": 1, + "npy_int64": 1, + "__pyx_t_5numpy_int64_t": 1, + "npy_uint8": 1, + "__pyx_t_5numpy_uint8_t": 1, + "npy_uint16": 1, + "__pyx_t_5numpy_uint16_t": 1, + "npy_uint32": 1, + "__pyx_t_5numpy_uint32_t": 1, + "npy_uint64": 1, + "__pyx_t_5numpy_uint64_t": 1, + "npy_float32": 1, + "__pyx_t_5numpy_float32_t": 1, + "npy_float64": 1, + "__pyx_t_5numpy_float64_t": 1, + "npy_long": 1, + "__pyx_t_5numpy_int_t": 1, + "npy_longlong": 1, + "__pyx_t_5numpy_long_t": 1, + "npy_intp": 10, + "__pyx_t_5numpy_intp_t": 1, + "npy_uintp": 1, + "__pyx_t_5numpy_uintp_t": 1, + "npy_ulong": 1, + "__pyx_t_5numpy_uint_t": 1, + "npy_ulonglong": 1, + "__pyx_t_5numpy_ulong_t": 1, + "npy_double": 2, + "__pyx_t_5numpy_float_t": 1, + "__pyx_t_5numpy_double_t": 1, + "npy_longdouble": 1, + "__pyx_t_5numpy_longdouble_t": 1, + "complex": 2, + "__pyx_t_float_complex": 27, + "_Complex": 2, + "real": 2, + "imag": 2, + "__pyx_t_double_complex": 27, + "npy_cfloat": 1, + "__pyx_t_5numpy_cfloat_t": 1, + "npy_cdouble": 2, + "__pyx_t_5numpy_cdouble_t": 1, + "npy_clongdouble": 1, + "__pyx_t_5numpy_clongdouble_t": 1, + "__pyx_t_5numpy_complex_t": 1, + "CYTHON_REFNANNY": 3, + "__Pyx_RefNannyAPIStruct": 4, + "*__Pyx_RefNanny": 1, + "__Pyx_RefNannyImportAPI": 1, + "*modname": 1, + "*m": 1, + "*p": 1, + "*r": 1, + "m": 4, + "PyImport_ImportModule": 1, + "modname": 1, + "PyLong_AsVoidPtr": 1, + "Py_XDECREF": 3, + "__Pyx_RefNannySetupContext": 13, + "*__pyx_refnanny": 1, + "__Pyx_RefNanny": 6, + "SetupContext": 1, + "__LINE__": 84, + "__Pyx_RefNannyFinishContext": 12, + "FinishContext": 1, + "__pyx_refnanny": 5, + "__Pyx_INCREF": 36, + "INCREF": 1, + "__Pyx_DECREF": 66, + "DECREF": 1, + "__Pyx_GOTREF": 60, + "GOTREF": 1, + "__Pyx_GIVEREF": 10, + "GIVEREF": 1, + "__Pyx_XDECREF": 26, + "Py_DECREF": 1, + "__Pyx_XGIVEREF": 7, + "__Pyx_XGOTREF": 1, + "__Pyx_TypeTest": 4, + "*type": 3, + "*__Pyx_GetName": 1, + "*dict": 1, + "__Pyx_ErrRestore": 1, + "*value": 2, + "*tb": 2, + "__Pyx_ErrFetch": 1, + "**type": 1, + "**value": 1, + "**tb": 1, + "__Pyx_Raise": 8, + "__Pyx_RaiseNoneNotIterableError": 1, + "__Pyx_RaiseNeedMoreValuesError": 1, + "index": 2, + "__Pyx_RaiseTooManyValuesError": 1, + "expected": 1, + "__Pyx_UnpackTupleError": 2, + "*__Pyx_Import": 1, + "*from_list": 1, + "__Pyx_Print": 1, + "__pyx_print": 1, + "__pyx_print_kwargs": 1, + "__Pyx_PrintOne": 4, + "*o": 1, + "*__Pyx_PyInt_to_py_Py_intptr_t": 1, + "Py_intptr_t": 1, + "__Pyx_CREAL": 4, + ".real": 3, + "__Pyx_CIMAG": 4, + ".imag": 3, + "__real__": 1, + "__imag__": 1, + "_WIN32": 1, + "__Pyx_SET_CREAL": 2, + "__Pyx_SET_CIMAG": 2, + "__pyx_t_float_complex_from_parts": 1, + "__Pyx_c_eqf": 2, + "__Pyx_c_sumf": 2, + "__Pyx_c_difff": 2, + "__Pyx_c_prodf": 2, + "__Pyx_c_quotf": 2, + "__Pyx_c_negf": 2, + "__Pyx_c_is_zerof": 3, + "__Pyx_c_conjf": 3, + "conj": 3, + "__Pyx_c_absf": 3, + "abs": 2, + "__Pyx_c_powf": 3, + "pow": 2, + "conjf": 1, + "cabsf": 1, + "cpowf": 1, + "__pyx_t_double_complex_from_parts": 1, + "__Pyx_c_eq": 2, + "__Pyx_c_sum": 2, + "__Pyx_c_diff": 2, + "__Pyx_c_prod": 2, + "__Pyx_c_quot": 2, + "__Pyx_c_neg": 2, + "__Pyx_c_is_zero": 3, + "__Pyx_c_conj": 3, + "__Pyx_c_abs": 3, + "__Pyx_c_pow": 3, + "cabs": 1, + "cpow": 1, + "__Pyx_PyInt_AsUnsignedChar": 1, + "short": 3, + "__Pyx_PyInt_AsUnsignedShort": 1, + "__Pyx_PyInt_AsUnsignedInt": 1, + "__Pyx_PyInt_AsChar": 1, + "__Pyx_PyInt_AsShort": 1, + "__Pyx_PyInt_AsInt": 1, + "signed": 5, + "__Pyx_PyInt_AsSignedChar": 1, + "__Pyx_PyInt_AsSignedShort": 1, + "__Pyx_PyInt_AsSignedInt": 1, + "__Pyx_PyInt_AsLongDouble": 1, + "__Pyx_PyInt_AsUnsignedLong": 1, + "__Pyx_PyInt_AsUnsignedLongLong": 1, + "__Pyx_PyInt_AsLong": 1, + "__Pyx_PyInt_AsLongLong": 1, + "__Pyx_PyInt_AsSignedLong": 1, + "__Pyx_PyInt_AsSignedLongLong": 1, + "__Pyx_WriteUnraisable": 3, + "__Pyx_ExportFunction": 1, + "*__pyx_f_5numpy_PyArray_MultiIterNew2": 2, + "*__pyx_f_5numpy_PyArray_MultiIterNew3": 2, + "*__pyx_f_5numpy_PyArray_MultiIterNew4": 2, + "*__pyx_f_5numpy_PyArray_MultiIterNew5": 2, + "*__pyx_f_5numpy__util_dtypestring": 2, + "PyArray_Descr": 6, + "__pyx_f_5numpy_set_array_base": 1, + "PyArrayObject": 19, + "*__pyx_f_5numpy_get_array_base": 1, + "inner_work_1d": 2, + "inner_work_2d": 2, + "__Pyx_MODULE_NAME": 1, + "__pyx_module_is_main_wrapper_inner": 1, + "*__pyx_builtin_ValueError": 1, + "*__pyx_builtin_range": 1, + "*__pyx_builtin_RuntimeError": 1, + "__pyx_k_1": 1, + "__pyx_k_2": 1, + "__pyx_k_3": 1, + "__pyx_k_5": 1, + "__pyx_k_7": 1, + "__pyx_k_9": 1, + "__pyx_k_11": 1, + "__pyx_k_12": 1, + "__pyx_k_15": 1, + "__pyx_k__B": 2, + "__pyx_k__H": 2, + "__pyx_k__I": 2, + "__pyx_k__L": 2, + "__pyx_k__O": 2, + "__pyx_k__Q": 2, + "__pyx_k__b": 2, + "__pyx_k__d": 2, + "__pyx_k__f": 2, + "__pyx_k__g": 2, + "__pyx_k__h": 2, + "__pyx_k__i": 2, + "__pyx_k__l": 2, + "__pyx_k__q": 2, + "__pyx_k__Zd": 2, + "__pyx_k__Zf": 2, + "__pyx_k__Zg": 2, + "__pyx_k__np": 1, + "__pyx_k__buf": 1, + "__pyx_k__obj": 1, + "__pyx_k__base": 1, + "__pyx_k__ndim": 1, + "__pyx_k__ones": 1, + "__pyx_k__descr": 1, + "__pyx_k__names": 1, + "__pyx_k__numpy": 1, + "__pyx_k__range": 1, + "__pyx_k__shape": 1, + "__pyx_k__fields": 1, + "__pyx_k__format": 1, + "__pyx_k__strides": 1, + "__pyx_k____main__": 1, + "__pyx_k____test__": 1, + "__pyx_k__itemsize": 1, + "__pyx_k__readonly": 1, + "__pyx_k__type_num": 1, + "__pyx_k__byteorder": 1, + "__pyx_k__ValueError": 1, + "__pyx_k__suboffsets": 1, + "__pyx_k__work_module": 1, + "__pyx_k__RuntimeError": 1, + "__pyx_k__pure_py_test": 1, + "__pyx_k__wrapper_inner": 1, + "__pyx_k__do_awesome_work": 1, + "*__pyx_kp_s_1": 1, + "*__pyx_kp_u_11": 1, + "*__pyx_kp_u_12": 1, + "*__pyx_kp_u_15": 1, + "*__pyx_kp_s_2": 1, + "*__pyx_kp_s_3": 1, + "*__pyx_kp_u_5": 1, + "*__pyx_kp_u_7": 1, + "*__pyx_kp_u_9": 1, + "*__pyx_n_s__RuntimeError": 1, + "*__pyx_n_s__ValueError": 1, + "*__pyx_n_s____main__": 1, + "*__pyx_n_s____test__": 1, + "*__pyx_n_s__base": 1, + "*__pyx_n_s__buf": 1, + "*__pyx_n_s__byteorder": 1, + "*__pyx_n_s__descr": 1, + "*__pyx_n_s__do_awesome_work": 1, + "*__pyx_n_s__fields": 1, + "*__pyx_n_s__format": 1, + "*__pyx_n_s__itemsize": 1, + "*__pyx_n_s__names": 1, + "*__pyx_n_s__ndim": 1, + "*__pyx_n_s__np": 1, + "*__pyx_n_s__numpy": 1, + "*__pyx_n_s__obj": 1, + "*__pyx_n_s__ones": 1, + "*__pyx_n_s__pure_py_test": 1, + "*__pyx_n_s__range": 1, + "*__pyx_n_s__readonly": 1, + "*__pyx_n_s__shape": 1, + "*__pyx_n_s__strides": 1, + "*__pyx_n_s__suboffsets": 1, + "*__pyx_n_s__type_num": 1, + "*__pyx_n_s__work_module": 1, + "*__pyx_n_s__wrapper_inner": 1, + "*__pyx_int_5": 1, + "*__pyx_int_15": 1, + "*__pyx_k_tuple_4": 1, + "*__pyx_k_tuple_6": 1, + "*__pyx_k_tuple_8": 1, + "*__pyx_k_tuple_10": 1, + "*__pyx_k_tuple_13": 1, + "*__pyx_k_tuple_14": 1, + "*__pyx_k_tuple_16": 1, + "__pyx_v_num_x": 4, + "*__pyx_v_data_ptr": 2, + "*__pyx_v_answer_ptr": 2, + "__pyx_v_nd": 6, + "*__pyx_v_dims": 2, + "__pyx_v_typenum": 6, + "*__pyx_v_data_np": 2, + "__pyx_v_sum": 6, + "__pyx_t_1": 154, + "*__pyx_t_2": 4, + "*__pyx_t_3": 4, + "*__pyx_t_4": 3, + "__pyx_t_5": 75, + "__pyx_kp_s_1": 1, + "__pyx_filename": 79, + "__pyx_f": 79, + "__pyx_L1_error": 88, + "__pyx_v_dims": 4, + "NPY_DOUBLE": 3, + "__pyx_t_2": 120, + "PyArray_SimpleNewFromData": 2, + "__pyx_v_data_ptr": 2, + "Py_None": 38, + "__pyx_ptype_5numpy_ndarray": 2, + "__pyx_v_data_np": 10, + "__Pyx_GetName": 4, + "__pyx_m": 4, + "__pyx_n_s__work_module": 3, + "__pyx_t_3": 113, + "PyObject_GetAttr": 4, + "__pyx_n_s__do_awesome_work": 3, + "PyTuple_New": 4, + "PyTuple_SET_ITEM": 4, + "__pyx_t_4": 35, + "PyObject_Call": 11, + "PyErr_Occurred": 2, + "__pyx_v_answer_ptr": 2, + "__pyx_L0": 24, + "__pyx_v_num_y": 2, + "__pyx_kp_s_2": 1, + "*__pyx_pf_13wrapper_inner_pure_py_test": 2, + "*__pyx_self": 2, + "*unused": 2, + "PyMethodDef": 1, + "__pyx_mdef_13wrapper_inner_pure_py_test": 1, + "PyCFunction": 1, + "__pyx_pf_13wrapper_inner_pure_py_test": 1, + "METH_NOARGS": 1, + "*__pyx_v_data": 1, + "*__pyx_r": 7, + "*__pyx_t_1": 8, + "__pyx_self": 2, + "__pyx_v_data": 7, + "__pyx_kp_s_3": 1, + "__pyx_n_s__np": 1, + "__pyx_n_s__ones": 1, + "__pyx_k_tuple_4": 1, + "__pyx_r": 39, + "__Pyx_AddTraceback": 7, + "__pyx_pf_5numpy_7ndarray___getbuffer__": 2, + "*__pyx_v_self": 4, + "*__pyx_v_info": 4, + "__pyx_v_flags": 4, + "__pyx_v_copy_shape": 5, + "__pyx_v_i": 6, + "__pyx_v_ndim": 6, + "__pyx_v_endian_detector": 6, + "__pyx_v_little_endian": 8, + "__pyx_v_t": 29, + "*__pyx_v_f": 2, + "*__pyx_v_descr": 2, + "__pyx_v_offset": 9, + "__pyx_v_hasfields": 4, + "__pyx_t_6": 40, + "__pyx_t_7": 9, + "*__pyx_t_8": 1, + "*__pyx_t_9": 1, + "__pyx_v_info": 33, + "__pyx_v_self": 16, + "PyArray_NDIM": 1, + "__pyx_L5": 6, + "PyArray_CHKFLAGS": 2, + "NPY_C_CONTIGUOUS": 1, + "__pyx_builtin_ValueError": 5, + "__pyx_k_tuple_6": 1, + "__pyx_L6": 6, + "NPY_F_CONTIGUOUS": 1, + "__pyx_k_tuple_8": 1, + "__pyx_L7": 2, + "buf": 1, + "PyArray_DATA": 1, + "strides": 5, + "malloc": 2, + "shape": 3, + "PyArray_STRIDES": 2, + "PyArray_DIMS": 2, + "__pyx_L8": 2, + "suboffsets": 1, + "PyArray_ITEMSIZE": 1, + "PyArray_ISWRITEABLE": 1, + "__pyx_v_f": 31, + "descr": 2, + "__pyx_v_descr": 10, + "PyDataType_HASFIELDS": 2, + "__pyx_L11": 7, + "type_num": 2, + "byteorder": 4, + "__pyx_k_tuple_10": 1, + "__pyx_L13": 2, + "NPY_BYTE": 2, + "__pyx_L14": 18, + "NPY_UBYTE": 2, + "NPY_SHORT": 2, + "NPY_USHORT": 2, + "NPY_INT": 2, + "NPY_UINT": 2, + "NPY_LONG": 1, + "NPY_ULONG": 1, + "NPY_LONGLONG": 1, + "NPY_ULONGLONG": 1, + "NPY_FLOAT": 1, + "NPY_LONGDOUBLE": 1, + "NPY_CFLOAT": 1, + "NPY_CDOUBLE": 1, + "NPY_CLONGDOUBLE": 1, + "NPY_OBJECT": 1, + "__pyx_t_8": 16, + "PyNumber_Remainder": 1, + "__pyx_kp_u_11": 1, + "format": 6, + "__pyx_L12": 2, + "__pyx_t_9": 7, + "__pyx_f_5numpy__util_dtypestring": 1, + "__pyx_L2": 2, + "__pyx_pf_5numpy_7ndarray_1__releasebuffer__": 2, + "PyArray_HASFIELDS": 1, + "free": 2, + "*__pyx_f_5numpy_PyArray_MultiIterNew1": 1, + "*__pyx_v_a": 5, + "PyArray_MultiIterNew": 5, + "__pyx_v_a": 5, + "*__pyx_v_b": 4, + "__pyx_v_b": 4, + "*__pyx_v_c": 3, + "__pyx_v_c": 3, + "*__pyx_v_d": 2, + "__pyx_v_d": 2, + "*__pyx_v_e": 1, + "__pyx_v_e": 1, + "*__pyx_v_end": 1, + "*__pyx_v_offset": 1, + "*__pyx_v_child": 1, + "*__pyx_v_fields": 1, + "*__pyx_v_childname": 1, + "*__pyx_v_new_offset": 1, + "*__pyx_v_t": 1, + "*__pyx_t_5": 1, + "__pyx_t_10": 7, + "*__pyx_t_11": 1, + "__pyx_v_child": 8, + "__pyx_v_fields": 7, + "__pyx_v_childname": 4, + "__pyx_v_new_offset": 5, + "names": 2, + "PyTuple_GET_SIZE": 2, + "PyTuple_GET_ITEM": 3, + "PyObject_GetItem": 1, + "fields": 1, + "PyTuple_CheckExact": 1, + "tuple": 3, + "__pyx_ptype_5numpy_dtype": 1, + "__pyx_v_end": 2, + "PyNumber_Subtract": 2, + "PyObject_RichCompare": 8, + "__pyx_int_15": 1, + "Py_LT": 2, + "__pyx_builtin_RuntimeError": 2, + "__pyx_k_tuple_13": 1, + "__pyx_k_tuple_14": 1, + "elsize": 1, + "__pyx_k_tuple_16": 1, + "__pyx_L10": 2, + "Py_EQ": 6 + }, + "Ceylon": { + "doc": 2, + "by": 1, + "shared": 5, + "void": 1, + "test": 1, + "(": 4, + ")": 4, + "{": 3, + "print": 1, + ";": 4, + "}": 3, + "class": 1, + "Test": 2, + "name": 4, + "satisfies": 1, + "Comparable": 1, + "": 1, + "String": 2, + "actual": 2, "string": 1, - "SetOutPath": 3 + "Comparison": 1, + "compare": 1, + "other": 1, + "return": 1, + "<=>": 1, + "other.name": 1 + }, + "COBOL": { + "program": 1, + "-": 19, + "id.": 1, + "hello.": 3, + "procedure": 1, + "division.": 1, + "display": 1, + ".": 3, + "stop": 1, + "run.": 1, + "IDENTIFICATION": 2, + "DIVISION.": 4, + "PROGRAM": 2, + "ID.": 2, + "PROCEDURE": 2, + "DISPLAY": 2, + "STOP": 2, + "RUN.": 2, + "COBOL": 7, + "TEST": 2, + "RECORD.": 1, + "USAGES.": 1, + "COMP": 5, + "PIC": 5, + "S9": 4, + "(": 5, + ")": 5, + "COMP.": 3, + "COMP2": 2 + }, + "CoffeeScript": { + "CoffeeScript": 1, + "require": 21, + "CoffeeScript.require": 1, + "CoffeeScript.eval": 1, + "(": 193, + "code": 20, + "options": 16, + "{": 31, + "}": 34, + ")": 196, + "-": 107, + "options.bare": 2, + "on": 3, + "eval": 2, + "CoffeeScript.compile": 2, + "CoffeeScript.run": 3, + "Function": 1, + "return": 29, + "unless": 19, + "window": 1, + "CoffeeScript.load": 2, + "url": 2, + "callback": 35, + "xhr": 2, + "new": 12, + "window.ActiveXObject": 1, + "or": 22, + "XMLHttpRequest": 1, + "xhr.open": 1, + "true": 8, + "xhr.overrideMimeType": 1, + "if": 102, + "of": 7, + "xhr.onreadystatechange": 1, + "xhr.readyState": 1, + "is": 36, + "xhr.status": 1, + "in": 32, + "[": 134, + "]": 134, + "xhr.responseText": 1, + "else": 53, + "throw": 3, + "Error": 1, + "xhr.send": 1, + "null": 15, + "runScripts": 3, + "scripts": 2, + "document.getElementsByTagName": 1, + "coffees": 2, + "s": 10, + "for": 14, + "when": 16, + "s.type": 1, + "index": 4, + "length": 4, + "coffees.length": 1, + "do": 2, + "execute": 3, + "script": 7, + "+": 31, + ".type": 1, + "script.src": 2, + "script.innerHTML": 1, + "window.addEventListener": 1, + "addEventListener": 1, + "no": 3, + "attachEvent": 1, + "class": 11, + "Animal": 3, + "constructor": 6, + "@name": 2, + "move": 3, + "meters": 2, + "alert": 4, + "Snake": 2, + "extends": 6, + "super": 4, + "Horse": 2, + "sam": 1, + "tom": 1, + "sam.move": 1, + "tom.move": 1, + "#": 35, + "fs": 2, + "path": 3, + "Lexer": 3, + "RESERVED": 3, + "parser": 1, + "vm": 1, + "require.extensions": 3, + "module": 1, + "filename": 6, + "content": 4, + "compile": 5, + "fs.readFileSync": 1, + "module._compile": 1, + "require.registerExtension": 2, + "exports.VERSION": 1, + "exports.RESERVED": 1, + "exports.helpers": 2, + "exports.compile": 1, + "merge": 1, + "try": 3, + "js": 5, + "parser.parse": 3, + "lexer.tokenize": 3, + ".compile": 1, + "options.header": 1, + "catch": 2, + "err": 20, + "err.message": 2, + "options.filename": 5, + "header": 1, + "exports.tokens": 1, + "exports.nodes": 1, + "source": 5, + "typeof": 2, + "exports.run": 1, + "mainModule": 1, + "require.main": 1, + "mainModule.filename": 4, + "process.argv": 1, + "then": 24, + "fs.realpathSync": 2, + "mainModule.moduleCache": 1, + "and": 20, + "mainModule.paths": 1, + "._nodeModulePaths": 1, + "path.dirname": 2, + "path.extname": 1, + "isnt": 7, + "mainModule._compile": 2, + "exports.eval": 1, + "code.trim": 1, + "Script": 2, + "vm.Script": 1, + "options.sandbox": 4, + "instanceof": 2, + "Script.createContext": 2, + ".constructor": 1, + "sandbox": 8, + "k": 4, + "v": 4, + "own": 2, + "sandbox.global": 1, + "sandbox.root": 1, + "sandbox.GLOBAL": 1, + "global": 3, + "sandbox.__filename": 3, + "||": 3, + "sandbox.__dirname": 1, + "sandbox.module": 2, + "sandbox.require": 2, + "Module": 2, + "_module": 3, + "options.modulename": 1, + "_require": 2, + "Module._load": 1, + "_module.filename": 1, + "r": 4, + "Object.getOwnPropertyNames": 1, + "_require.paths": 1, + "_module.paths": 1, + "Module._nodeModulePaths": 1, + "process.cwd": 1, + "_require.resolve": 1, + "request": 2, + "Module._resolveFilename": 1, + "o": 4, + "o.bare": 1, + "ensure": 1, + "value": 25, + "vm.runInThisContext": 1, + "vm.runInContext": 1, + "lexer": 1, + "parser.lexer": 1, + "lex": 1, + "tag": 33, + "@yytext": 1, + "@yylineno": 1, + "@tokens": 7, + "@pos": 2, + "setInput": 1, + "upcomingInput": 1, + "parser.yy": 1, + "console.log": 1, + "number": 13, + "opposite": 2, + "square": 4, + "x": 6, + "*": 21, + "list": 2, + "math": 1, + "root": 1, + "Math.sqrt": 1, + "cube": 1, + "race": 1, + "winner": 2, + "runners...": 1, + "print": 1, + "runners": 1, + "elvis": 1, + "cubes": 1, + "math.cube": 1, + "num": 2, + "Rewriter": 2, + "INVERSES": 2, + "count": 5, + "starts": 1, + "compact": 1, + "last": 3, + "exports.Lexer": 1, + "tokenize": 1, + "opts": 1, + "WHITESPACE.test": 1, + "code.replace": 1, + "/": 44, + "r/g": 1, + ".replace": 3, + "TRAILING_SPACES": 2, + "@code": 1, + "The": 7, + "remainder": 1, + "the": 4, + "code.": 1, + "@line": 4, + "opts.line": 1, + "current": 5, + "line.": 1, + "@indent": 3, + "indentation": 3, + "level.": 3, + "@indebt": 1, + "over": 1, + "at": 2, + "@outdebt": 1, + "under": 1, + "outdentation": 1, + "@indents": 1, + "stack": 4, + "all": 1, + "levels.": 1, + "@ends": 1, + "pairing": 1, + "up": 1, + "tokens.": 1, + "Stream": 1, + "parsed": 1, + "tokens": 5, + "form": 1, + "line": 6, + ".": 13, + "i": 8, + "while": 4, + "@chunk": 9, + "i..": 1, + "@identifierToken": 1, + "@commentToken": 1, + "@whitespaceToken": 1, + "@lineToken": 1, + "@heredocToken": 1, + "@stringToken": 1, + "@numberToken": 1, + "@regexToken": 1, + "@jsToken": 1, + "@literalToken": 1, + "@closeIndentation": 1, + "@error": 10, + "@ends.pop": 1, + "opts.rewrite": 1, + "off": 1, + ".rewrite": 1, + "identifierToken": 1, + "match": 23, + "IDENTIFIER.exec": 1, + "input": 1, + "id": 16, + "colon": 3, + "@tag": 3, + "@token": 12, + "id.length": 1, + "forcedIdentifier": 4, + "prev": 17, + "not": 4, + "prev.spaced": 3, + "JS_KEYWORDS": 1, + "COFFEE_KEYWORDS": 1, + "id.toUpperCase": 1, + "LINE_BREAK": 2, + "@seenFor": 4, + "yes": 5, + "UNARY": 4, + "RELATION": 3, + "@value": 1, + "@tokens.pop": 1, + "JS_FORBIDDEN": 1, + "String": 1, + "id.reserved": 1, + "COFFEE_ALIAS_MAP": 1, + "COFFEE_ALIASES": 1, + "switch": 7, + "input.length": 1, + "numberToken": 1, + "NUMBER.exec": 1, + "BOX": 1, + "/.test": 4, + "/E/.test": 1, + "x/.test": 1, + "d*": 1, + "d": 2, + "lexedLength": 2, + "number.length": 1, + "octalLiteral": 2, + "/.exec": 2, + "parseInt": 5, + ".toString": 3, + "binaryLiteral": 2, + "b": 1, + "stringToken": 1, + "@chunk.charAt": 3, + "SIMPLESTR.exec": 1, + "string": 9, + "MULTILINER": 2, + "@balancedString": 1, + "<": 6, + "string.indexOf": 1, + "@interpolateString": 2, + "@escapeLines": 1, + "octalEsc": 1, + "|": 21, + "string.length": 1, + "heredocToken": 1, + "HEREDOC.exec": 1, + "heredoc": 4, + "quote": 5, + "heredoc.charAt": 1, + "doc": 11, + "@sanitizeHeredoc": 2, + "indent": 7, + "<=>": 1, + "indexOf": 1, + "interpolateString": 1, + "token": 1, + "STRING": 2, + "makeString": 1, + "n": 16, + "Matches": 1, + "consumes": 1, + "comments": 1, + "commentToken": 1, + "@chunk.match": 1, + "COMMENT": 2, + "comment": 2, + "here": 3, + "herecomment": 4, + "Array": 1, + ".join": 2, + "comment.length": 1, + "jsToken": 1, + "JSTOKEN.exec": 1, + "script.length": 1, + "regexToken": 1, + "HEREGEX.exec": 1, + "@heregexToken": 1, + "NOT_REGEX": 2, + "NOT_SPACED_REGEX": 2, + "REGEX.exec": 1, + "regex": 5, + "flags": 2, + "..1": 1, + "match.length": 1, + "heregexToken": 1, + "heregex": 1, + "body": 2, + "body.indexOf": 1, + "re": 1, + "body.replace": 1, + "HEREGEX_OMIT": 3, + "//g": 1, + "re.match": 1, + "*/": 2, + "heregex.length": 1, + "@tokens.push": 1, + "tokens.push": 1, + "value...": 1, + "continue": 3, + "value.replace": 2, + "/g": 3, + "spaced": 1, + "reserved": 1, + "word": 1, + "value.length": 2, + "MATH": 3, + "COMPARE": 3, + "COMPOUND_ASSIGN": 2, + "SHIFT": 3, + "LOGIC": 3, + ".spaced": 1, + "CALLABLE": 2, + "INDEXABLE": 2, + "@ends.push": 1, + "@pair": 1, + "sanitizeHeredoc": 1, + "HEREDOC_ILLEGAL.test": 1, + "doc.indexOf": 1, + "HEREDOC_INDENT.exec": 1, + "attempt": 2, + "attempt.length": 1, + "indent.length": 1, + "doc.replace": 2, + "///": 12, + "///g": 1, + "n/": 1, + "tagParameters": 1, + "this": 6, + "tokens.length": 1, + "tok": 5, + "stack.push": 1, + "stack.length": 1, + "stack.pop": 2, + "closeIndentation": 1, + "@outdentToken": 1, + "balancedString": 1, + "str": 1, + "end": 2, + "continueCount": 3, + "str.length": 1, + "letter": 1, + "str.charAt": 1, + "missing": 1, + "starting": 1, + "Hello": 1, + "name.capitalize": 1, + "OUTDENT": 1, + "THROW": 1, + "EXTENDS": 1, + "&": 4, + "false": 4, + "delete": 1, + "break": 1, + "debugger": 1, + "finally": 2, + "undefined": 1, + "until": 1, + "loop": 1, + "by": 1, + "&&": 1, + "case": 1, + "default": 1, + "function": 2, + "var": 1, + "void": 1, + "with": 1, + "const": 1, + "let": 2, + "enum": 1, + "export": 1, + "import": 1, + "native": 1, + "__hasProp": 1, + "__extends": 1, + "__slice": 1, + "__bind": 1, + "__indexOf": 1, + "implements": 1, + "interface": 1, + "package": 1, + "private": 1, + "protected": 1, + "public": 1, + "static": 1, + "yield": 1, + "arguments": 1, + "S": 10, + "OPERATOR": 1, + "%": 1, + "compound": 1, + "assign": 1, + "compare": 1, + "zero": 1, + "fill": 1, + "right": 1, + "shift": 2, + "doubles": 1, + "logic": 1, + "soak": 1, + "access": 1, + "range": 1, + "splat": 1, + "WHITESPACE": 1, + "###": 3, + "s*#": 1, + "##": 1, + ".*": 1, + "CODE": 1, + "MULTI_DENT": 1, + "SIMPLESTR": 1, + "JSTOKEN": 1, + "REGEX": 1, + "disallow": 1, + "leading": 1, + "whitespace": 1, + "equals": 1, + "signs": 1, + "every": 1, + "other": 1, + "thing": 1, + "anything": 1, + "escaped": 1, + "character": 1, + "imgy": 2, + "w": 2, + "HEREGEX": 1, + "#.*": 1, + "n/g": 1, + "HEREDOC_INDENT": 1, + "HEREDOC_ILLEGAL": 1, + "//": 1, + "LINE_CONTINUER": 1, + "s*": 1, + "BOOL": 1, + "NOT_REGEX.concat": 1, + "CALLABLE.concat": 1, + "async": 1, + "nack": 1, + "bufferLines": 3, + "pause": 2, + "sourceScriptEnv": 3, + "join": 8, + "exists": 5, + "basename": 2, + "resolve": 2, + "module.exports": 1, + "RackApplication": 1, + "@configuration": 1, + "@root": 8, + "@firstHost": 1, + "@logger": 1, + "@configuration.getLogger": 1, + "@readyCallbacks": 3, + "@quitCallbacks": 3, + "@statCallbacks": 3, + "ready": 1, + "@state": 11, + "@readyCallbacks.push": 1, + "@initialize": 2, + "quit": 1, + "@quitCallbacks.push": 1, + "@terminate": 2, + "queryRestartFile": 1, + "fs.stat": 1, + "stats": 1, + "@mtime": 5, + "lastMtime": 2, + "stats.mtime.getTime": 1, + "setPoolRunOnceFlag": 1, + "@statCallbacks.length": 1, + "alwaysRestart": 2, + "@pool.runOnce": 1, + "statCallback": 2, + "@statCallbacks.push": 1, + "loadScriptEnvironment": 1, + "env": 18, + "async.reduce": 1, + "scriptExists": 2, + "loadRvmEnvironment": 1, + "rvmrcExists": 2, + "rvm": 1, + "@configuration.rvmPath": 1, + "rvmExists": 2, + "libexecPath": 1, + "before": 2, + ".trim": 1, + "loadEnvironment": 1, + "@queryRestartFile": 2, + "@loadScriptEnvironment": 1, + "@configuration.env": 1, + "@loadRvmEnvironment": 1, + "initialize": 1, + "@quit": 3, + "@loadEnvironment": 1, + "@logger.error": 3, + "@pool": 2, + "nack.createPool": 1, + "size": 1, + ".POW_WORKERS": 1, + "@configuration.workers": 1, + "idle": 1, + ".POW_TIMEOUT": 1, + "@configuration.timeout": 1, + "@pool.stdout": 1, + "@logger.info": 1, + "@pool.stderr": 1, + "@logger.warning": 1, + "@pool.on": 2, + "process": 2, + "@logger.debug": 2, + "readyCallback": 2, + "terminate": 1, + "@ready": 3, + "@pool.quit": 1, + "quitCallback": 2, + "handle": 1, + "req": 4, + "res": 3, + "next": 3, + "resume": 2, + "@setPoolRunOnceFlag": 1, + "@restartIfNecessary": 1, + "req.proxyMetaVariables": 1, + "SERVER_PORT": 1, + "@configuration.dstPort.toString": 1, + "@pool.proxy": 1, + "restart": 1, + "restartIfNecessary": 1, + "mtimeChanged": 2, + "@restart": 1, + "writeRvmBoilerplate": 1, + "powrc": 3, + "boilerplate": 2, + "@constructor.rvmBoilerplate": 1, + "fs.readFile": 1, + "contents": 2, + "contents.indexOf": 1, + "fs.writeFile": 1, + "@rvmBoilerplate": 1, + "dnsserver": 1, + "exports.Server": 1, + "Server": 2, + "dnsserver.Server": 1, + "NS_T_A": 3, + "NS_T_NS": 2, + "NS_T_CNAME": 1, + "NS_T_SOA": 2, + "NS_C_IN": 5, + "NS_RCODE_NXDOMAIN": 2, + "domain": 6, + "@rootAddress": 2, + "@domain": 3, + "domain.toLowerCase": 1, + "@soa": 2, + "createSOA": 2, + "@on": 1, + "@handleRequest": 1, + "handleRequest": 1, + "question": 5, + "req.question": 1, + "subdomain": 10, + "@extractSubdomain": 1, + "question.name": 3, + "isARequest": 2, + "res.addRR": 2, + "subdomain.getAddress": 1, + ".isEmpty": 1, + "isNSRequest": 2, + "res.header.rcode": 1, + "res.send": 1, + "extractSubdomain": 1, + "name": 5, + "Subdomain.extract": 1, + "question.type": 2, + "question.class": 2, + "mname": 2, + "rname": 2, + "serial": 2, + "Date": 1, + ".getTime": 1, + "refresh": 2, + "retry": 2, + "expire": 2, + "minimum": 2, + "dnsserver.createSOA": 1, + "exports.createServer": 1, + "address": 4, + "exports.Subdomain": 1, + "Subdomain": 4, + "@extract": 1, + "name.toLowerCase": 1, + "offset": 4, + "name.length": 1, + "domain.length": 1, + "name.slice": 2, + "@for": 2, + "IPAddressSubdomain.pattern.test": 1, + "IPAddressSubdomain": 2, + "EncodedSubdomain.pattern.test": 1, + "EncodedSubdomain": 2, + "@subdomain": 1, + "@address": 2, + "@labels": 2, + ".split": 1, + "@length": 3, + "@labels.length": 1, + "isEmpty": 1, + "getAddress": 3, + "@pattern": 2, + "@labels.slice": 1, + "a": 2, + "z0": 2, + "decode": 2, + "exports.encode": 1, + "encode": 1, + "ip": 2, + "byte": 2, + "ip.split": 1, + "<<": 1, + "PATTERN": 1, + "exports.decode": 1, + "PATTERN.test": 1, + "ip.push": 1, + "xFF": 1, + "ip.join": 1 + }, + "Coq": { + "Inductive": 41, + "day": 9, + "Type": 86, + "|": 457, + "monday": 5, + "tuesday": 3, + "wednesday": 3, + "thursday": 3, + "friday": 3, + "saturday": 3, + "sunday": 2, + "day.": 1, + "Definition": 46, + "next_weekday": 3, + "(": 1248, + "d": 6, + ")": 1249, + "match": 70, + "with": 223, + "end.": 52, + "Example": 37, + "test_next_weekday": 1, + "tuesday.": 1, + "Proof.": 208, + "simpl.": 70, + "reflexivity.": 199, + "Qed.": 194, + "bool": 38, + "true": 68, + "false": 48, + "bool.": 1, + "negb": 10, + "b": 89, + "andb": 8, + "b1": 35, + "b2": 23, + "orb": 8, + "test_orb1": 1, + "true.": 16, + "test_orb2": 1, + "false.": 12, + "test_orb3": 1, + "test_orb4": 1, + "nandb": 5, + "end": 16, + "test_nandb1": 1, + "test_nandb2": 1, + "test_nandb3": 1, + "test_nandb4": 1, + "andb3": 5, + "b3": 2, + "test_andb31": 1, + "test_andb32": 1, + "test_andb33": 1, + "test_andb34": 1, + "Module": 11, + "Playground1.": 5, + "nat": 108, + "O": 98, + "S": 186, + "-": 508, + "nat.": 4, + "pred": 3, + "n": 369, + "minustwo": 1, + "Fixpoint": 36, + "evenb": 5, + "oddb": 5, + ".": 433, + "test_oddb1": 1, + "test_oddb2": 1, + "plus": 10, + "m": 201, + "mult": 3, + "minus": 3, + "_": 67, + "exp": 2, + "base": 3, + "power": 2, + "p": 81, + "factorial": 2, + "test_factorial1": 1, + "Notation": 39, + "x": 266, + "y": 116, + "at": 17, + "level": 11, + "left": 6, + "associativity": 7, + "nat_scope.": 3, + "beq_nat": 24, + "forall": 248, + "+": 227, + "n.": 44, + "Theorem": 115, + "plus_O_n": 1, + "intros": 258, + "plus_1_1": 1, + "mult_0_1": 1, + "*": 59, + "O.": 5, + "plus_id_example": 1, + "m.": 21, + "H.": 100, + "rewrite": 241, + "plus_id_exercise": 1, + "o": 25, + "o.": 4, + "H": 76, + "mult_0_plus": 1, + "plus_O_n.": 1, + "mult_1_plus": 1, + "plus_1_1.": 1, + "mult_1": 1, + "induction": 81, + "as": 77, + "[": 170, + "plus_1_neq_0": 1, + "destruct": 94, + "]": 173, + "Case": 51, + "IHn": 12, + "plus_comm": 3, + "plus_distr.": 1, + "beq_nat_refl": 3, + "plus_rearrange": 1, + "q": 15, + "q.": 2, + "assert": 68, + "plus_comm.": 3, + "plus_swap": 2, + "p.": 9, + "plus_assoc.": 4, + "H2": 12, + "H2.": 20, + "plus_swap.": 2, + "<->": 31, + "IHm": 2, + "reflexivity": 16, + "Qed": 23, + "mult_comm": 2, + "Proof": 12, + "0": 5, + "simpl": 116, + "mult_0_r.": 4, + "mult_distr": 1, + "mult_1_distr.": 1, + "mult_1.": 1, + "bad": 1, + "zero_nbeq_S": 1, + "andb_false_r": 1, + "plus_ble_compat_1": 1, + "ble_nat": 6, + "IHp.": 2, + "S_nbeq_0": 1, + "mult_1_1": 1, + "plus_0_r.": 1, + "all3_spec": 1, + "c": 70, + "c.": 5, + "b.": 14, + "Lemma": 51, + "mult_plus_1": 1, + "IHm.": 1, + "mult_mult": 1, + "IHn.": 3, + "mult_plus_1.": 1, + "mult_plus_distr_r": 1, + "mult_mult.": 3, + "H1": 18, + "plus_assoc": 1, + "H1.": 31, + "H3": 4, + "H3.": 5, + "mult_assoc": 1, + "mult_plus_distr_r.": 1, + "bin": 9, + "BO": 4, + "D": 9, + "M": 4, + "bin.": 1, + "incbin": 2, + "bin2un": 3, + "bin_comm": 1, + "End": 15, + "Require": 17, + "Import": 11, + "List": 2, + "Multiset": 2, + "PermutSetoid": 1, + "Relations": 2, + "Sorting.": 1, + "Section": 4, + "defs.": 2, + "Variable": 7, + "A": 113, + "Type.": 3, + "leA": 25, + "relation": 19, + "A.": 6, + "eqA": 29, + "Let": 8, + "gtA": 1, + "y.": 15, + "Hypothesis": 7, + "leA_dec": 4, + "{": 39, + "}": 35, + "eqA_dec": 26, + "leA_refl": 1, + "leA_trans": 2, + "z": 14, + "z.": 6, + "leA_antisym": 1, + "Hint": 9, + "Resolve": 5, + "leA_refl.": 1, + "Immediate": 1, + "leA_antisym.": 1, + "emptyBag": 4, + "EmptyBag": 2, + "singletonBag": 10, + "SingletonBag": 2, + "eqA_dec.": 2, + "Tree": 24, + "Tree_Leaf": 9, + "Tree_Node": 11, + "Tree.": 1, + "leA_Tree": 16, + "a": 207, + "t": 93, + "True": 1, + "T1": 25, + "T2": 20, + "leA_Tree_Leaf": 5, + "Tree_Leaf.": 1, + ";": 375, + "auto": 73, + "datatypes.": 47, + "leA_Tree_Node": 1, + "G": 6, + "is_heap": 18, + "Prop": 17, + "nil_is_heap": 5, + "node_is_heap": 7, + "invert_heap": 3, + "/": 41, + "T2.": 1, + "inversion": 104, + "is_heap_rect": 1, + "P": 32, + "T": 49, + "T.": 9, + "simple": 7, + "PG": 2, + "PD": 2, + "PN.": 2, + "elim": 21, + "H4": 7, + "intros.": 27, + "apply": 340, + "X0": 2, + "is_heap_rec": 1, + "Set": 4, + "X": 191, + "low_trans": 3, + "merge_lem": 3, + "l1": 89, + "l2": 73, + "list": 78, + "merge_exist": 5, + "l": 379, + "Sorted": 5, + "meq": 15, + "list_contents": 30, + "munion": 18, + "HdRel": 4, + "l2.": 8, + "Morphisms.": 2, + "Instance": 7, + "Equivalence": 2, + "@meq": 4, + "constructor": 6, + "red.": 1, + "meq_trans.": 1, + "Defined.": 1, + "Proper": 5, + "@munion": 1, + "now": 24, + "meq_congr.": 1, + "merge": 5, + "fix": 2, + "l1.": 5, + "rename": 2, + "into": 2, + "l.": 26, + "revert": 5, + "H0.": 24, + "a0": 15, + "l0": 7, + "Sorted_inv": 2, + "in": 221, + "H0": 16, + "clear": 7, + "merge0.": 2, + "using": 18, + "cons_sort": 2, + "cons_leA": 2, + "munion_ass.": 2, + "cons_leA.": 2, + "@HdRel_inv": 2, + "trivial": 15, + "merge0": 1, + "setoid_rewrite": 2, + "munion_ass": 1, + "munion_comm.": 2, + "repeat": 11, + "munion_comm": 1, + "contents": 12, + "multiset": 2, + "t1": 48, + "t2": 51, + "equiv_Tree": 1, + "insert_spec": 3, + "insert_exist": 4, + "insert": 2, + "unfold": 58, + "T0": 2, + "treesort_twist1": 1, + "T3": 2, + "HeapT3": 1, + "ConT3": 1, + "LeA.": 1, + "LeA": 1, + "treesort_twist2": 1, + "build_heap": 3, + "heap_exist": 3, + "list_to_heap": 2, + "nil": 46, + "exact": 4, + "nil_is_heap.": 1, + "i": 11, + "meq_trans": 10, + "meq_right": 2, + "meq_sym": 2, + "flat_spec": 3, + "flat_exist": 3, + "heap_to_list": 2, + "h": 14, + "s1": 20, + "i1": 15, + "m1": 1, + "s2": 2, + "i2": 10, + "m2.": 1, + "meq_congr": 1, + "munion_rotate.": 1, + "treesort": 1, + "&": 21, + "permutation": 43, + "intro": 27, + "permutation.": 1, + "exists": 60, + "Export": 10, + "SfLib.": 2, + "AExp.": 2, + "aexp": 30, + "ANum": 18, + "APlus": 14, + "AMinus": 9, + "AMult": 9, + "aexp.": 1, + "bexp": 22, + "BTrue": 10, + "BFalse": 11, + "BEq": 9, + "BLe": 9, + "BNot": 9, + "BAnd": 10, + "bexp.": 1, + "aeval": 46, + "e": 53, + "a1": 56, + "a2": 62, + "test_aeval1": 1, + "beval": 16, + "optimize_0plus": 15, + "e2": 54, + "e1": 58, + "test_optimize_0plus": 1, + "optimize_0plus_sound": 4, + "e.": 15, + "e1.": 1, + "SCase": 24, + "SSCase": 3, + "IHe2.": 10, + "IHe1.": 11, + "aexp_cases": 3, + "try": 17, + "IHe1": 6, + "IHe2": 6, + "optimize_0plus_all": 2, + "Tactic": 9, + "tactic": 9, + "first": 18, + "ident": 9, + "Case_aux": 38, + "optimize_0plus_all_sound": 1, + "bexp_cases": 4, + "optimize_and": 5, + "optimize_and_sound": 1, + "IHe": 2, + "aevalR_first_try.": 2, + "aevalR": 18, + "E_Anum": 1, + "E_APlus": 2, + "n1": 45, + "n2": 41, + "E_AMinus": 2, + "E_AMult": 2, + "Reserved": 4, + "E_ANum": 1, + "where": 6, + "bevalR": 11, + "E_BTrue": 1, + "E_BFalse": 1, + "E_BEq": 1, + "E_BLe": 1, + "E_BNot": 1, + "E_BAnd": 1, + "aeval_iff_aevalR": 9, + "split.": 17, + "subst": 7, + "generalize": 13, + "dependent": 6, + "IHa1": 1, + "IHa2": 1, + "beval_iff_bevalR": 1, + "*.": 110, + "subst.": 43, + "IHbevalR": 1, + "IHbevalR1": 1, + "IHbevalR2": 1, + "a.": 6, + "constructor.": 16, + "<": 76, + "remember": 12, + "IHa.": 1, + "IHa1.": 1, + "IHa2.": 1, + "silly_presburger_formula": 1, + "<=>": 12, + "3": 2, + "omega": 7, + "Id": 7, + "id": 7, + "id.": 1, + "beq_id": 14, + "id1": 2, + "id2": 2, + "beq_id_refl": 1, + "i.": 2, + "beq_nat_refl.": 1, + "beq_id_eq": 4, + "i2.": 8, + "i1.": 3, + "beq_nat_eq": 2, + "beq_id_false_not_eq": 1, + "C.": 3, + "n0": 5, + "beq_false_not_eq": 1, + "not_eq_beq_id_false": 1, + "not_eq_beq_false.": 1, + "beq_nat_sym": 2, + "AId": 4, + "com_cases": 1, + "SKIP": 5, + "IFB": 4, + "WHILE": 5, + "c1": 14, + "c2": 9, + "e3": 1, + "cl": 1, + "st": 113, + "E_IfTrue": 2, + "THEN": 3, + "ELSE": 3, + "FI": 3, + "E_WhileEnd": 2, + "DO": 4, + "END": 4, + "E_WhileLoop": 2, + "ceval_cases": 1, + "E_Skip": 1, + "E_Ass": 1, + "E_Seq": 1, + "E_IfFalse": 1, + "assignment": 1, + "command": 2, + "if": 10, + "st1": 2, + "IHi1": 3, + "Heqst1": 1, + "Hceval.": 4, + "Hceval": 2, + "assumption.": 61, + "bval": 2, + "ceval_step": 3, + "Some": 21, + "ceval_step_more": 7, + "x1.": 3, + "omega.": 7, + "x2.": 2, + "IHHce.": 2, + "%": 3, + "IHHce1.": 1, + "IHHce2.": 1, + "x0": 14, + "plus2": 1, + "nx": 3, + "Y": 38, + "ny": 2, + "XtimesYinZ": 1, + "Z": 11, + "ny.": 1, + "loop": 2, + "contra.": 19, + "loopdef.": 1, + "Heqloopdef.": 8, + "contra1.": 1, + "IHcontra2.": 1, + "no_whiles": 15, + "com": 5, + "ct": 2, + "cf": 2, + "no_Whiles": 10, + "noWhilesSKIP": 1, + "noWhilesAss": 1, + "noWhilesSeq": 1, + "noWhilesIf": 1, + "no_whiles_eqv": 1, + "noWhilesSKIP.": 1, + "noWhilesAss.": 1, + "noWhilesSeq.": 1, + "IHc1.": 2, + "auto.": 47, + "eauto": 10, + "andb_true_elim1": 4, + "IHc2.": 2, + "andb_true_elim2": 4, + "noWhilesIf.": 1, + "andb_true_intro.": 2, + "no_whiles_terminate": 1, + "state": 6, + "st.": 7, + "update": 2, + "IHc1": 2, + "IHc2": 2, + "H5.": 1, + "x1": 11, + "r": 11, + "r.": 3, + "symmetry": 4, + "Heqr.": 1, + "H4.": 2, + "s": 13, + "Heqr": 3, + "H8.": 1, + "H10": 1, + "assumption": 10, + "beval_short_circuit": 5, + "beval_short_circuit_eqv": 1, + "sinstr": 8, + "SPush": 8, + "SLoad": 6, + "SPlus": 10, + "SMinus": 11, + "SMult": 11, + "sinstr.": 1, + "s_execute": 21, + "stack": 7, + "prog": 2, + "cons": 26, + "al": 3, + "bl": 3, + "s_execute1": 1, + "empty_state": 2, + "s_execute2": 1, + "s_compile": 36, + "v": 28, + "s_compile1": 1, + "execute_theorem": 1, + "other": 20, + "other.": 4, + "app_ass.": 6, + "s_compile_correct": 1, + "app_nil_end.": 1, + "execute_theorem.": 1, + "Eqdep_dec.": 1, + "Arith.": 2, + "eq_rect_eq_nat": 2, + "Q": 3, + "eq_rect": 3, + "h.": 1, + "K_dec_set": 1, + "eq_nat_dec.": 1, + "Scheme": 1, + "le_ind": 1, + "replace": 4, + "le_n": 4, + "fun": 17, + "refl_equal": 4, + "pattern": 2, + "case": 2, + "trivial.": 14, + "contradiction": 8, + "le_Sn_n": 5, + "le_S": 6, + "Heq": 8, + "m0": 1, + "HeqS": 3, + "injection": 4, + "HeqS.": 2, + "eq_rect_eq_nat.": 1, + "IHp": 2, + "dep_pair_intro": 2, + "Hx": 20, + "Hy": 14, + "<=n),>": 1, + "x=": 1, + "exist": 7, + "Hy.": 3, + "Heq.": 6, + "le_uniqueness_proof": 1, + "Hy0": 1, + "card": 2, + "f": 108, + "card_interval": 1, + "<=n}>": 1, + "proj1_sig": 1, + "proj2_sig": 1, + "Hp": 5, + "Hq": 3, + "Hpq.": 1, + "Hmn.": 1, + "Hmn": 1, + "interval_dec": 1, + "left.": 3, + "dep_pair_intro.": 3, + "right.": 9, + "discriminate": 3, + "le_Sn_le": 2, + "eq_S.": 1, + "Hneq.": 2, + "card_inj_aux": 1, + "g": 6, + "False.": 1, + "Hfbound": 1, + "Hfinj": 1, + "Hgsurj.": 1, + "Hgsurj": 3, + "Hfx": 2, + "le_n_O_eq.": 2, + "Hfbound.": 2, + "Hx.": 5, + "le_lt_dec": 9, + "xSn": 21, + "then": 9, + "else": 9, + "is": 4, + "bounded": 1, + "injective": 6, + "Hlefx": 1, + "Hgefx": 1, + "Hlefy": 1, + "Hgefy": 1, + "Hfinj.": 3, + "sym_not_eq.": 2, + "Heqf.": 2, + "Hneqy.": 2, + "le_lt_trans": 2, + "le_O_n.": 2, + "le_neq_lt": 2, + "Hneqx.": 2, + "pred_inj.": 1, + "lt_O_neq": 2, + "neq_dep_intro": 2, + "inj_restrict": 1, + "Heqf": 1, + "surjective": 1, + "Hlep.": 3, + "Hle": 1, + "Hlt": 3, + "Hfsurj": 2, + "le_n_S": 1, + "Hlep": 4, + "Hneq": 7, + "Heqx.": 2, + "Heqx": 4, + "Hle.": 1, + "le_not_lt": 1, + "lt_trans": 4, + "lt_n_Sn.": 1, + "Hlt.": 1, + "lt_irrefl": 2, + "lt_le_trans": 1, + "pose": 2, + "let": 3, + "Hneqx": 1, + "Hneqy": 1, + "Heqg": 1, + "Hdec": 3, + "Heqy": 1, + "Hginj": 1, + "HSnx.": 1, + "HSnx": 1, + "interval_discr": 1, + "<=m}>": 1, + "card_inj": 1, + "interval_dec.": 1, + "card_interval.": 2, + "Basics.": 2, + "NatList.": 2, + "natprod": 5, + "pair": 7, + "natprod.": 1, + "fst": 3, + "snd": 3, + "swap_pair": 1, + "surjective_pairing": 1, + "count": 7, + "remove_one": 3, + "test_remove_one1": 1, + "remove_all": 2, + "bag": 3, + "app_ass": 1, + "l3": 12, + "natlist": 7, + "l3.": 1, + "remove_decreases_count": 1, + "s.": 4, + "ble_n_Sn.": 1, + "IHs.": 2, + "natoption": 5, + "None": 9, + "natoption.": 1, + "index": 3, + "option_elim": 2, + "hd_opt": 8, + "test_hd_opt1": 2, + "None.": 2, + "test_hd_opt2": 2, + "option_elim_hd": 1, + "head": 1, + "beq_natlist": 5, + "v1": 7, + "r1": 2, + "v2": 2, + "r2": 2, + "test_beq_natlist1": 1, + "test_beq_natlist2": 1, + "beq_natlist_refl": 1, + "IHl.": 7, + "silly1": 1, + "eq1": 6, + "eq2.": 9, + "eq2": 1, + "silly2a": 1, + "eq1.": 5, + "silly_ex": 1, + "silly3": 1, + "symmetry.": 2, + "rev_exercise": 1, + "rev_involutive.": 1, + "Setoid": 1, + "Compare_dec": 1, + "ListNotations.": 1, + "Implicit": 15, + "Arguments.": 2, + "Permutation.": 2, + "Permutation": 38, + "perm_nil": 1, + "perm_skip": 1, + "Local": 7, + "Constructors": 3, + "Permutation_nil": 2, + "HF.": 3, + "@nil": 1, + "HF": 2, + "||": 1, + "Permutation_nil_cons": 1, + "discriminate.": 2, + "Permutation_refl": 1, + "Permutation_sym": 1, + "Hperm": 7, + "perm_trans": 1, + "Permutation_trans": 4, + "Logic.eq": 2, + "@Permutation": 5, + "iff": 1, + "@In": 1, + "red": 6, + "Permutation_in.": 2, + "Permutation_app_tail": 2, + "tl": 8, + "eapply": 8, + "Permutation_app_head": 2, + "app_comm_cons": 5, + "Permutation_app": 3, + "Hpermmm": 1, + "idtac": 1, + "Global": 5, + "@app": 1, + "Permutation_app.": 1, + "Permutation_add_inside": 1, + "Permutation_cons_append": 1, + "IHl": 8, + "Permutation_cons_append.": 3, + "Permutation_app_comm": 3, + "app_nil_r": 1, + "app_assoc": 2, + "Permutation_cons_app": 3, + "Permutation_middle": 2, + "Permutation_rev": 3, + "rev": 7, + "1": 1, + "@rev": 1, + "2": 1, + "Permutation_length": 2, + "length": 21, + "transitivity": 4, + "@length": 1, + "Permutation_length.": 1, + "Permutation_ind_bis": 2, + "Hnil": 1, + "Hskip": 3, + "Hswap": 2, + "Htrans.": 1, + "Htrans": 1, + "eauto.": 7, + "Ltac": 1, + "break_list": 5, + "Permutation_nil_app_cons": 1, + "l4": 3, + "P.": 5, + "IH": 3, + "Permutation_middle.": 3, + "perm_swap.": 2, + "perm_swap": 1, + "eq_refl": 2, + "In_split": 1, + "Permutation_app_inv": 1, + "NoDup": 4, + "incl": 3, + "N.": 1, + "E": 7, + "Ha": 6, + "In": 6, + "N": 1, + "Hal": 1, + "Hl": 1, + "exfalso.": 1, + "NoDup_Permutation_bis": 2, + "inversion_clear": 6, + "intuition.": 2, + "Permutation_NoDup": 1, + "Permutation_map": 1, + "Hf": 15, + "injective_bounded_surjective": 1, + "set": 1, + "seq": 2, + "map": 4, + "x.": 3, + "in_map_iff.": 2, + "in_seq": 4, + "arith": 4, + "NoDup_cardinal_incl": 1, + "injective_map_NoDup": 2, + "seq_NoDup": 1, + "map_length": 1, + "by": 7, + "in_map_iff": 1, + "split": 14, + "nat_bijection_Permutation": 1, + "BD.": 1, + "seq_NoDup.": 1, + "map_length.": 1, + "Injection": 1, + "Permutation_alt": 1, + "Alternative": 1, + "characterization": 1, + "of": 4, + "via": 1, + "nth_error": 7, + "and": 1, + "nth": 2, + "adapt": 4, + "adapt_injective": 1, + "adapt.": 2, + "EQ.": 2, + "LE": 11, + "LT": 14, + "eq_add_S": 2, + "Hf.": 1, + "Lt.le_lt_or_eq": 3, + "LE.": 3, + "EQ": 8, + "lt": 3, + "LT.": 5, + "Lt.S_pred": 3, + "Lt.lt_not_le": 2, + "adapt_ok": 2, + "nth_error_app1": 1, + "nth_error_app2": 1, + "arith.": 8, + "Minus.minus_Sn_m": 1, + "Permutation_nth_error": 2, + "IHP": 2, + "IHP2": 1, + "Hg": 2, + "E.": 2, + "L12": 2, + "app_length.": 2, + "plus_n_Sm.": 1, + "adapt_injective.": 1, + "nth_error_None": 4, + "Hn": 1, + "Hf2": 1, + "Hf3": 2, + "Lt.le_or_lt": 1, + "Lt.lt_irrefl": 2, + "Lt.lt_le_trans": 2, + "Hf1": 1, + "do": 4, + "congruence.": 1, + "Permutation_alt.": 1, + "Permutation_app_swap": 1, + "only": 3, + "parsing": 3, + "Omega": 1, + "SetoidList.": 1, + "nil.": 2, + "..": 4, + "Permut.": 1, + "eqA_equiv": 1, + "eqA.": 1, + "list_contents_app": 5, + "permut_refl": 1, + "permut_sym": 4, + "permut_trans": 5, + "permut_cons_eq": 3, + "meq_left": 1, + "meq_singleton": 1, + "permut_cons": 5, + "permut_app": 1, + "specialize": 6, + "a0.": 1, + "decide": 1, + "permut_add_inside_eq": 1, + "permut_add_cons_inside": 3, + "permut_add_inside": 1, + "permut_middle": 1, + "permut_refl.": 5, + "permut_sym_app": 1, + "permut_rev": 1, + "permut_add_cons_inside.": 1, + "app_nil_end": 1, + "results": 1, + "permut_conv_inv": 1, + "plus_reg_l.": 1, + "permut_app_inv1": 1, + "list_contents_app.": 1, + "plus_reg_l": 1, + "multiplicity": 6, + "Fact": 3, + "if_eqA_then": 1, + "B": 6, + "if_eqA_refl": 3, + "decide_left": 1, + "if_eqA": 1, + "contradict": 3, + "A1": 2, + "if_eqA_rewrite_r": 1, + "A2": 4, + "Hxx": 1, + "multiplicity_InA": 4, + "InA": 8, + "multiplicity_InA_O": 2, + "multiplicity_InA_S": 1, + "multiplicity_NoDupA": 1, + "NoDupA": 3, + "NEQ": 1, + "compatible": 1, + "permut_InA_InA": 3, + "multiplicity_InA.": 1, + "meq.": 2, + "permut_cons_InA": 3, + "permut_nil": 3, + "Abs": 2, + "permut_length_1": 1, + "permut_length_2": 1, + "permut_length_1.": 2, + "@if_eqA_rewrite_l": 2, + "permut_length": 1, + "InA_split": 1, + "h2": 1, + "plus_n_Sm": 1, + "f_equal.": 1, + "app_length": 1, + "IHl1": 1, + "permut_remove_hd": 1, + "f_equal": 1, + "if_eqA_rewrite_l": 1, + "NoDupA_equivlistA_permut": 1, + "Equivalence_Reflexive.": 1, + "change": 1, + "Equivalence_Reflexive": 1, + "Forall2": 2, + "permutation_Permutation": 1, + "Forall2.": 1, + "proof": 1, + "IHA": 2, + "Forall2_app_inv_r": 1, + "Hl1": 1, + "Hl2": 1, + "Forall2_app": 1, + "Forall2_cons": 1, + "Permutation_impl_permutation": 1, + "permut_eqA": 1, + "Permut_permut.": 1, + "permut_right": 1, + "permut_tran": 1, + "Lists.": 1, + "X.": 4, + "app": 5, + "snoc": 9, + "Arguments": 11, + "list123": 1, + "right": 2, + "test_repeat1": 1, + "nil_app": 1, + "rev_snoc": 1, + "snoc_with_append": 1, + "v.": 1, + "IHl1.": 1, + "prod": 3, + "Y.": 1, + "type_scope.": 1, + "combine": 3, + "lx": 4, + "ly": 4, + "tx": 2, + "ty": 7, + "tp": 2, + "option": 6, + "xs": 7, + "plus3": 2, + "prod_curry": 3, + "prod_uncurry": 3, + "uncurry_uncurry": 1, + "curry_uncurry": 1, + "filter": 3, + "test": 4, + "countoddmembers": 1, + "k": 7, + "fmostlytrue": 5, + "override": 5, + "ftrue": 1, + "override_example1": 1, + "override_example2": 1, + "override_example3": 1, + "override_example4": 1, + "override_example": 1, + "constfun": 1, + "unfold_example_bad": 1, + "plus3.": 1, + "override_eq": 1, + "f.": 1, + "override.": 2, + "override_neq": 1, + "x2": 3, + "k1": 5, + "k2": 4, + "eq.": 11, + "silly4": 1, + "silly5": 1, + "sillyex1": 1, + "j": 6, + "j.": 1, + "silly6": 1, + "silly7": 1, + "sillyex2": 1, + "assertion": 3, + "Hl.": 1, + "eq": 4, + "beq_nat_O_l": 1, + "beq_nat_O_r": 1, + "double_injective": 1, + "double": 2, + "fold_map": 2, + "fold": 1, + "total": 2, + "fold_map_correct": 1, + "fold_map.": 1, + "forallb": 4, + "existsb": 3, + "existsb2": 2, + "existsb_correct": 1, + "existsb2.": 1, + "index_okx": 1, + "mumble": 5, + "mumble.": 1, + "grumble": 3, + "Logic.": 1, + "Prop.": 1, + "partial_function": 6, + "R": 54, + "y1": 6, + "y2": 5, + "y2.": 3, + "next_nat_partial_function": 1, + "next_nat.": 1, + "partial_function.": 5, + "Q.": 2, + "le_not_a_partial_function": 1, + "le": 1, + "not.": 3, + "Nonsense.": 4, + "le_n.": 6, + "le_S.": 4, + "total_relation_not_partial_function": 1, + "total_relation": 1, + "total_relation1.": 2, + "empty_relation_not_partial_funcion": 1, + "empty_relation.": 1, + "reflexive": 5, + "le_reflexive": 1, + "le.": 4, + "reflexive.": 1, + "transitive": 8, + "le_trans": 4, + "Hnm": 3, + "Hmo.": 4, + "Hnm.": 3, + "IHHmo.": 1, + "lt.": 2, + "transitive.": 1, + "Hm": 1, + "le_S_n": 2, + "Sn_le_Sm__n_le_m.": 1, + "not": 1, + "TODO": 1, + "Hmo": 1, + "symmetric": 2, + "antisymmetric": 3, + "le_antisymmetric": 1, + "Sn_le_Sm__n_le_m": 2, + "IHb": 1, + "equivalence": 1, + "order": 2, + "preorder": 1, + "le_order": 1, + "order.": 1, + "le_reflexive.": 1, + "le_antisymmetric.": 1, + "le_trans.": 1, + "clos_refl_trans": 8, + "rt_step": 1, + "rt_refl": 1, + "rt_trans": 3, + "next_nat_closure_is_le": 1, + "next_nat": 1, + "rt_refl.": 2, + "IHle.": 1, + "rt_step.": 2, + "nn.": 1, + "IHclos_refl_trans1.": 2, + "IHclos_refl_trans2.": 2, + "refl_step_closure": 11, + "rsc_refl": 1, + "rsc_step": 4, + "rsc_R": 2, + "rsc_refl.": 4, + "rsc_trans": 4, + "IHrefl_step_closure": 1, + "rtc_rsc_coincide": 1, + "IHrefl_step_closure.": 1, + "Imp.": 1, + "Relations.": 1, + "tm": 43, + "tm_const": 45, + "tm_plus": 30, + "tm.": 3, + "SimpleArith0.": 2, + "eval": 8, + "SimpleArith1.": 2, + "E_Const": 2, + "E_Plus": 2, + "test_step_1": 1, + "ST_Plus1.": 2, + "ST_PlusConstConst.": 3, + "test_step_2": 1, + "ST_Plus2.": 2, + "step_deterministic": 1, + "step.": 3, + "Hy1": 2, + "Hy2.": 2, + "step_cases": 4, + "Hy2": 3, + "SCase.": 3, + "Hy1.": 5, + "IHHy1": 2, + "SimpleArith2.": 1, + "value": 25, + "v_const": 4, + "step": 9, + "ST_PlusConstConst": 3, + "ST_Plus1": 2, + "strong_progress": 2, + "value_not_same_as_normal_form": 2, + "normal_form": 3, + "t.": 4, + "normal_form.": 2, + "v_funny.": 1, + "Temp1.": 1, + "Temp2.": 1, + "ST_Funny": 1, + "Temp3.": 1, + "Temp4.": 2, + "tm_true": 8, + "tm_false": 5, + "tm_if": 10, + "v_true": 1, + "v_false": 1, + "tm_false.": 3, + "ST_IfTrue": 1, + "ST_IfFalse": 1, + "ST_If": 1, + "t3": 6, + "bool_step_prop4": 1, + "bool_step_prop4_holds": 1, + "bool_step_prop4.": 2, + "ST_ShortCut.": 1, + "IHt1.": 1, + "t2.": 4, + "t3.": 2, + "ST_If.": 2, + "Temp5.": 1, + "stepmany": 4, + "normalizing": 1, + "IHt2": 3, + "H11": 2, + "H12": 2, + "H21": 3, + "H22": 2, + "nf_same_as_value": 3, + "H12.": 1, + "H22.": 1, + "H11.": 1, + "stepmany_congr_1": 1, + "stepmany_congr2": 1, + "eval__value": 1, + "HE.": 1, + "eval_cases": 1, + "HE": 1, + "v_const.": 1, + "Sorted.": 1, + "Mergesort.": 1, + "STLC.": 1, + "ty_Bool": 10, + "ty_arrow": 7, + "ty.": 2, + "tm_var": 6, + "tm_app": 7, + "tm_abs": 9, + "idB": 2, + "idBB": 2, + "idBBBB": 2, + "v_abs": 1, + "t_true": 1, + "t_false": 1, + "value.": 1, + "ST_App2": 1, + "step_example3": 1, + "idB.": 1, + "rsc_step.": 2, + "ST_App1.": 2, + "ST_AppAbs.": 3, + "v_abs.": 2, + "context": 1, + "partial_map": 4, + "Context.": 1, + "empty": 3, + "extend": 1, + "Gamma": 10, + "has_type": 4, + "appears_free_in": 1, + "S.": 1, + "HT": 1, + "T_Var.": 1, + "extend_neq": 1, + "Heqe.": 3, + "T_Abs.": 1, + "context_invariance...": 2, + "Hafi.": 2, + "extend.": 2, + "IHt.": 1, + "Coiso1.": 2, + "Coiso2.": 3, + "HeqCoiso1.": 1, + "HeqCoiso2.": 1, + "beq_id_false_not_eq.": 1, + "ex_falso_quodlibet.": 1, + "preservation": 1, + "HT.": 1, + "substitution_preserves_typing": 1, + "T11.": 4, + "HT1.": 1, + "T_App": 2, + "IHHT1.": 1, + "IHHT2.": 1, + "tm_cases": 1, + "Ht": 1, + "Ht.": 3, + "IHt1": 2, + "T11": 2, + "ST_App2.": 1, + "ty_Bool.": 1, + "IHt3": 1, + "ST_IfTrue.": 1, + "ST_IfFalse.": 1, + "types_unique": 1, + "T12": 2, + "IHhas_type.": 1, + "IHhas_type1.": 1, + "IHhas_type2.": 1 + }, + "Creole": { + "Creole": 6, + "is": 3, + "a": 2, + "-": 5, + "to": 2, + "HTML": 1, + "converter": 2, + "for": 1, + "the": 5, + "lightweight": 1, + "markup": 1, + "language": 1, + "(": 5, + "http": 4, + "//wikicreole.org/": 1, + ")": 5, + ".": 1, + "Github": 1, + "uses": 1, + "this": 1, + "render": 1, + "*.creole": 1, + "files.": 1, + "Project": 1, + "page": 1, + "on": 2, + "github": 1, + "*": 5, + "//github.com/minad/creole": 1, + "Travis": 1, + "CI": 1, + "https": 1, + "//travis": 1, + "ci.org/minad/creole": 1, + "RDOC": 1, + "//rdoc.info/projects/minad/creole": 1, + "INSTALLATION": 1, + "{": 6, + "gem": 1, + "install": 1, + "creole": 1, + "}": 6, + "SYNOPSIS": 1, + "require": 1, + "html": 1, + "Creole.creolize": 1, + "BUGS": 1, + "If": 1, + "you": 1, + "found": 1, + "bug": 1, + "please": 1, + "report": 1, + "it": 1, + "at": 1, + "project": 1, + "s": 1, + "tracker": 1, + "GitHub": 1, + "//github.com/minad/creole/issues": 1, + "AUTHORS": 1, + "Lars": 2, + "Christensen": 2, + "larsch": 1, + "Daniel": 2, + "Mendler": 1, + "minad": 1, + "LICENSE": 1, + "Copyright": 1, + "c": 1, + "Mendler.": 1, + "It": 1, + "free": 1, + "software": 1, + "and": 1, + "may": 1, + "be": 1, + "redistributed": 1, + "under": 1, + "terms": 1, + "specified": 1, + "in": 1, + "README": 1, + "file": 1, + "of": 1, + "Ruby": 1, + "distribution.": 1 + }, + "CSS": { + ".clearfix": 8, + "{": 1661, + "*zoom": 48, + ";": 4219, + "}": 1705, + "before": 48, + "after": 96, + "display": 135, + "table": 44, + "content": 66, + "line": 97, + "-": 8839, + "height": 141, + "clear": 32, + "both": 30, + ".hide": 12, + "text": 129, + "font": 142, + "/0": 2, + "a": 268, + "color": 711, + "transparent": 148, + "shadow": 254, + "none": 128, + "background": 770, + "border": 912, + ".input": 216, + "block": 133, + "level": 2, + "width": 215, + "%": 366, + "min": 14, + "px": 2535, + "webkit": 364, + "box": 264, + "sizing": 27, + "moz": 316, + "article": 2, + "aside": 2, + "details": 2, + "figcaption": 2, + "figure": 2, + "footer": 2, + "header": 12, + "hgroup": 2, + "nav": 2, + "section": 2, + "audio": 4, + "canvas": 2, + "video": 4, + "inline": 116, + "*display": 20, + "not": 6, + "(": 748, + "[": 384, + "controls": 2, + "]": 384, + ")": 748, + "html": 4, + "size": 104, + "adjust": 6, + "ms": 13, + "focus": 232, + "outline": 30, + "thin": 8, + "dotted": 10, + "#333": 6, + "auto": 50, + "ring": 6, + "offset": 6, + "hover": 144, + "active": 46, + "sub": 4, + "sup": 4, + "position": 342, + "relative": 18, + "vertical": 56, + "align": 72, + "baseline": 4, + "top": 376, + "em": 6, + "bottom": 309, + "img": 14, + "max": 18, + "middle": 20, + "interpolation": 2, + "mode": 2, + "bicubic": 2, + "#map_canvas": 2, + ".google": 2, + "maps": 2, + "button": 18, + "input": 336, + "select": 90, + "textarea": 76, + "margin": 424, + "*overflow": 3, + "visible": 8, + "normal": 18, + "inner": 37, + "padding": 174, + "type": 174, + "appearance": 6, + "cursor": 30, + "pointer": 12, + "label": 20, + "textfield": 2, + "search": 66, + "decoration": 33, + "cancel": 2, + "overflow": 21, + "@media": 2, + "print": 4, + "*": 2, + "important": 18, + "#000": 2, + "visited": 2, + "underline": 6, + "href": 28, + "attr": 4, + "abbr": 6, + "title": 10, + ".ir": 2, + "pre": 16, + "blockquote": 14, + "solid": 93, + "#999": 6, + "page": 6, + "break": 12, + "inside": 4, + "avoid": 6, + "thead": 38, + "group": 120, + "tr": 92, + "@page": 2, + "cm": 2, + "p": 14, + "h2": 14, + "h3": 14, + "orphans": 2, + "widows": 2, + "body": 3, + "family": 10, + "Helvetica": 6, + "Arial": 6, + "sans": 6, + "serif": 6, + "#333333": 26, + "#ffffff": 136, + "#0088cc": 24, + "#005580": 8, + ".img": 6, + "rounded": 2, + "radius": 534, + "polaroid": 2, + "#fff": 10, + "#ccc": 13, + "rgba": 409, + "circle": 18, + ".row": 126, + "left": 489, + "class*": 100, + "float": 84, + ".container": 32, + ".navbar": 332, + "static": 14, + "fixed": 36, + ".span12": 4, + ".span11": 4, + ".span10": 4, + ".span9": 4, + ".span8": 4, + ".span7": 4, + ".span6": 4, + ".span5": 4, + ".span4": 4, + ".span3": 4, + ".span2": 4, + ".span1": 4, + ".offset12": 6, + ".offset11": 6, + ".offset10": 6, + ".offset9": 6, + ".offset8": 6, + ".offset7": 6, + ".offset6": 6, + ".offset5": 6, + ".offset4": 6, + ".offset3": 6, + ".offset2": 6, + ".offset1": 6, + "fluid": 126, + "*margin": 70, + "first": 179, + "child": 301, + ".controls": 28, + "row": 20, + "+": 105, + "*width": 26, + ".pull": 16, + "right": 258, + ".lead": 2, + "weight": 28, + "small": 66, + "strong": 2, + "bold": 14, + "style": 21, + "italic": 4, + "cite": 2, + ".muted": 2, + "#999999": 50, + "a.muted": 4, + "#808080": 2, + ".text": 14, + "warning": 33, + "#c09853": 14, + "a.text": 16, + "#a47e3c": 4, + "error": 10, + "#b94a48": 20, + "#953b39": 6, + "info": 37, + "#3a87ad": 18, + "#2d6987": 6, + "success": 35, + "#468847": 18, + "#356635": 6, + "center": 17, + "h1": 11, + "h4": 20, + "h5": 6, + "h6": 6, + "inherit": 8, + "rendering": 2, + "optimizelegibility": 2, + ".page": 2, + "#eeeeee": 31, + "ul": 84, + "ol": 10, + "li": 205, + "ul.unstyled": 2, + "ol.unstyled": 2, + "list": 44, + "ul.inline": 4, + "ol.inline": 4, + "dl": 2, + "dt": 6, + "dd": 6, + ".dl": 12, + "horizontal": 60, + "hidden": 9, + "ellipsis": 2, + "white": 25, + "space": 23, + "nowrap": 14, + "hr": 2, + "data": 2, + "original": 2, + "help": 2, + "abbr.initialism": 2, + "transform": 4, + "uppercase": 4, + "blockquote.pull": 10, + "q": 4, + "address": 2, + "code": 6, + "Monaco": 2, + "Menlo": 2, + "Consolas": 2, + "monospace": 2, + "#d14": 2, + "#f7f7f9": 2, + "#e1e1e8": 2, + "word": 6, + "all": 10, + "wrap": 6, + "#f5f5f5": 26, + "pre.prettyprint": 2, + ".pre": 2, + "scrollable": 2, + "y": 2, + "scroll": 2, + ".label": 30, + ".badge": 30, + "empty": 7, + "a.label": 4, + "a.badge": 4, + "#f89406": 27, + "#c67605": 4, + "inverse": 110, + "#1a1a1a": 2, + ".btn": 506, + "mini": 34, + "collapse": 12, + "spacing": 3, + ".table": 180, + "th": 70, + "td": 66, + "#dddddd": 16, + "caption": 18, + "colgroup": 18, + "tbody": 68, + "condensed": 4, + "bordered": 76, + "separate": 4, + "*border": 8, + "topleft": 16, + "last": 118, + "topright": 16, + "tfoot": 12, + "bottomleft": 16, + "bottomright": 16, + "striped": 13, + "nth": 4, + "odd": 4, + "#f9f9f9": 12, + "cell": 2, + "td.span1": 2, + "th.span1": 2, + "td.span2": 2, + "th.span2": 2, + "td.span3": 2, + "th.span3": 2, + "td.span4": 2, + "th.span4": 2, + "td.span5": 2, + "th.span5": 2, + "td.span6": 2, + "th.span6": 2, + "td.span7": 2, + "th.span7": 2, + "td.span8": 2, + "th.span8": 2, + "td.span9": 2, + "th.span9": 2, + "td.span10": 2, + "th.span10": 2, + "td.span11": 2, + "th.span11": 2, + "td.span12": 2, + "th.span12": 2, + "tr.success": 4, + "#dff0d8": 6, + "tr.error": 4, + "#f2dede": 6, + "tr.warning": 4, + "#fcf8e3": 6, + "tr.info": 4, + "#d9edf7": 6, + "#d0e9c6": 2, + "#ebcccc": 2, + "#faf2cc": 2, + "#c4e3f3": 2, + "form": 38, + "fieldset": 2, + "legend": 6, + "#e5e5e5": 28, + ".uneditable": 80, + "#555555": 18, + "#cccccc": 18, + "inset": 132, + "transition": 36, + "linear": 204, + ".2s": 16, + "o": 48, + ".075": 12, + ".6": 6, + "multiple": 2, + "#fcfcfc": 2, + "allowed": 4, + "placeholder": 18, + ".radio": 26, + ".checkbox": 26, + ".radio.inline": 6, + ".checkbox.inline": 6, + "medium": 2, + "large": 40, + "xlarge": 2, + "xxlarge": 2, + "append": 120, + "prepend": 82, + "input.span12": 4, + "textarea.span12": 2, + "input.span11": 4, + "textarea.span11": 2, + "input.span10": 4, + "textarea.span10": 2, + "input.span9": 4, + "textarea.span9": 2, + "input.span8": 4, + "textarea.span8": 2, + "input.span7": 4, + "textarea.span7": 2, + "input.span6": 4, + "textarea.span6": 2, + "input.span5": 4, + "textarea.span5": 2, + "input.span4": 4, + "textarea.span4": 2, + "input.span3": 4, + "textarea.span3": 2, + "input.span2": 4, + "textarea.span2": 2, + "input.span1": 4, + "textarea.span1": 2, + "disabled": 36, + "readonly": 10, + ".control": 150, + "group.warning": 32, + ".help": 44, + "#dbc59e": 6, + ".add": 36, + "on": 36, + "group.error": 32, + "#d59392": 6, + "group.success": 32, + "#7aba7b": 6, + "group.info": 32, + "#7ab5d3": 6, + "invalid": 12, + "#ee5f5b": 18, + "#e9322d": 2, + "#f8b9b7": 6, + ".form": 132, + "actions": 10, + "#595959": 2, + ".dropdown": 126, + "menu": 42, + ".popover": 14, + "z": 12, + "index": 14, + "toggle": 84, + ".active": 86, + "#a9dba9": 2, + "#46a546": 2, + "prepend.input": 22, + "input.search": 2, + "query": 22, + ".search": 22, + "*padding": 36, + "image": 187, + "gradient": 175, + "#e6e6e6": 20, + "from": 40, + "to": 75, + "repeat": 66, + "x": 30, + "filter": 57, + "progid": 48, + "DXImageTransform.Microsoft.gradient": 48, + "startColorstr": 30, + "endColorstr": 30, + "GradientType": 30, + "#bfbfbf": 4, + "*background": 36, + "enabled": 18, + "false": 18, + "#b3b3b3": 2, + ".3em": 6, + ".2": 12, + ".05": 24, + ".btn.active": 8, + ".btn.disabled": 4, + "#d9d9d9": 4, + "s": 25, + ".15": 24, + "default": 12, + "opacity": 15, + "alpha": 7, + "class": 26, + "primary.active": 6, + "warning.active": 6, + "danger.active": 6, + "success.active": 6, + "info.active": 6, + "inverse.active": 6, + "primary": 14, + "#006dcc": 2, + "#0044cc": 20, + "#002a80": 2, + "primary.disabled": 2, + "#003bb3": 2, + "#003399": 2, + "#faa732": 3, + "#fbb450": 16, + "#ad6704": 2, + "warning.disabled": 2, + "#df8505": 2, + "danger": 21, + "#da4f49": 2, + "#bd362f": 20, + "#802420": 2, + "danger.disabled": 2, + "#a9302a": 2, + "#942a25": 2, + "#5bb75b": 2, + "#62c462": 16, + "#51a351": 20, + "#387038": 2, + "success.disabled": 2, + "#499249": 2, + "#408140": 2, + "#49afcd": 2, + "#5bc0de": 16, + "#2f96b4": 20, + "#1f6377": 2, + "info.disabled": 2, + "#2a85a0": 2, + "#24748c": 2, + "#363636": 2, + "#444444": 10, + "#222222": 32, + "#000000": 14, + "inverse.disabled": 2, + "#151515": 12, + "#080808": 2, + "button.btn": 4, + "button.btn.btn": 6, + ".btn.btn": 6, + "link": 28, + "url": 4, + "no": 2, + ".icon": 288, + ".nav": 308, + "pills": 28, + "submenu": 8, + "glass": 2, + "music": 2, + "envelope": 2, + "heart": 2, + "star": 4, + "user": 2, + "film": 2, + "ok": 6, + "remove": 6, + "zoom": 5, + "in": 10, + "out": 10, + "off": 4, + "signal": 2, + "cog": 2, + "trash": 2, + "home": 2, + "file": 2, + "time": 2, + "road": 2, + "download": 4, + "alt": 6, + "upload": 2, + "inbox": 2, + "play": 4, + "refresh": 2, + "lock": 2, + "flag": 2, + "headphones": 2, + "volume": 6, + "down": 12, + "up": 12, + "qrcode": 2, + "barcode": 2, + "tag": 2, + "tags": 2, + "book": 2, + "bookmark": 2, + "camera": 2, + "justify": 2, + "indent": 4, + "facetime": 2, + "picture": 2, + "pencil": 2, + "map": 2, + "marker": 2, + "tint": 2, + "edit": 2, + "share": 4, + "check": 2, + "move": 2, + "step": 4, + "backward": 6, + "fast": 4, + "pause": 2, + "stop": 32, + "forward": 6, + "eject": 2, + "chevron": 8, + "plus": 4, + "sign": 16, + "minus": 4, + "question": 2, + "screenshot": 2, + "ban": 2, + "arrow": 21, + "resize": 8, + "full": 2, + "asterisk": 2, + "exclamation": 2, + "gift": 2, + "leaf": 2, + "fire": 2, + "eye": 4, + "open": 4, + "close": 4, + "plane": 2, + "calendar": 2, + "random": 2, + "comment": 2, + "magnet": 2, + "retweet": 2, + "shopping": 2, + "cart": 2, + "folder": 4, + "hdd": 2, + "bullhorn": 2, + "bell": 2, + "certificate": 2, + "thumbs": 4, + "hand": 8, + "globe": 2, + "wrench": 2, + "tasks": 2, + "briefcase": 2, + "fullscreen": 2, + "toolbar": 8, + ".btn.large": 4, + ".large.dropdown": 2, + "group.open": 18, + ".125": 6, + ".btn.dropdown": 2, + "primary.dropdown": 2, + "warning.dropdown": 2, + "danger.dropdown": 2, + "success.dropdown": 2, + "info.dropdown": 2, + "inverse.dropdown": 2, + ".caret": 70, + ".dropup": 2, + ".divider": 8, + "tabs": 94, + "#ddd": 38, + "stacked": 24, + "tabs.nav": 12, + "pills.nav": 4, + ".dropdown.active": 4, + ".open": 8, + "li.dropdown.open.active": 14, + "li.dropdown.open": 14, + ".tabs": 62, + ".tabbable": 8, + ".tab": 8, + "below": 18, + "pane": 4, + ".pill": 6, + ".disabled": 22, + "*position": 2, + "*z": 2, + "#fafafa": 2, + "#f2f2f2": 22, + "#d4d4d4": 2, + "collapse.collapse": 2, + ".brand": 14, + "#777777": 12, + ".1": 24, + ".nav.pull": 2, + "navbar": 28, + "#ededed": 2, + "navbar.active": 8, + "navbar.disabled": 4, + "bar": 21, + "absolute": 8, + "li.dropdown": 12, + "li.dropdown.active": 8, + "menu.pull": 8, + "#1b1b1b": 2, + "#111111": 18, + "#252525": 2, + "#515151": 2, + "query.focused": 2, + "#0e0e0e": 2, + "#040404": 18, + ".breadcrumb": 8, + ".pagination": 78, + "span": 38, + "centered": 2, + ".pager": 34, + ".next": 4, + ".previous": 4, + ".thumbnails": 12, + ".thumbnail": 6, + "ease": 12, + "a.thumbnail": 4, + ".caption": 2, + ".alert": 34, + "#fbeed5": 2, + ".close": 2, + "#d6e9c6": 2, + "#eed3d7": 2, + "#bce8f1": 2, + "@": 8, + "keyframes": 8, + "progress": 15, + "stripes": 15, + "@keyframes": 2, + ".progress": 22, + "#f7f7f7": 3, + ".bar": 22, + "#0e90d2": 2, + "#149bdf": 11, + "#0480be": 10, + "deg": 20, + ".progress.active": 1, + "animation": 5, + "infinite": 5, + "#dd514c": 1, + "#c43c35": 5, + "danger.progress": 1, + "#5eb95e": 1, + "#57a957": 5, + "success.progress": 1, + "#4bb1cf": 1, + "#339bb9": 5, + "info.progress": 1, + "warning.progress": 1, + ".hero": 3, + "unit": 3, + "letter": 1, + ".media": 11, + "object": 1, + "heading": 1, + ".tooltip": 7, + "visibility": 1, + ".tooltip.in": 1, + ".tooltip.top": 2, + ".tooltip.right": 2, + ".tooltip.bottom": 2, + ".tooltip.left": 2, + "clip": 3, + ".popover.top": 3, + ".popover.right": 3, + ".popover.bottom": 3, + ".popover.left": 3, + "#ebebeb": 1, + ".arrow": 12, + ".modal": 5, + "backdrop": 2, + "backdrop.fade": 1, + "backdrop.fade.in": 1 + }, + "Dart": { + "class": 1, + "Point": 7, + "{": 3, + "(": 7, + "this.x": 1, + "this.y": 1, + ")": 7, + ";": 8, + "distanceTo": 1, + "other": 1, + "var": 3, + "dx": 3, + "x": 2, + "-": 2, + "other.x": 1, + "dy": 3, + "y": 2, + "other.y": 1, + "return": 1, + "Math.sqrt": 1, + "*": 2, + "+": 1, + "}": 3, + "main": 1, + "p": 1, + "new": 2, + "q": 1, + "print": 1 + }, + "Diff": { + "diff": 1, + "-": 5, + "git": 1, + "a/lib/linguist.rb": 2, + "b/lib/linguist.rb": 2, + "index": 1, + "d472341..8ad9ffb": 1, + "+": 3 + }, + "Ecl": { + "#option": 1, + "(": 32, + "true": 1, + ")": 32, + ";": 23, + "namesRecord": 4, + "RECORD": 1, + "string20": 1, + "surname": 1, + "string10": 2, + "forename": 1, + "integer2": 5, + "age": 2, + "dadAge": 1, + "mumAge": 1, + "END": 1, + "namesRecord2": 3, + "record": 1, + "extra": 1, + "end": 1, + "namesTable": 11, + "dataset": 2, + "FLAT": 2, + "namesTable2": 9, + "aveAgeL": 3, + "l": 1, + "l.dadAge": 1, + "+": 16, + "l.mumAge": 1, + "/2": 2, + "aveAgeR": 4, + "r": 1, + "r.dadAge": 1, + "r.mumAge": 1, + "output": 9, + "join": 11, + "left": 2, + "right": 3, + "//Several": 1, + "simple": 1, + "examples": 1, + "of": 1, + "sliding": 2, + "syntax": 1, + "left.age": 8, + "right.age": 12, + "-": 5, + "and": 10, + "<": 1, + "between": 7, + "//Same": 1, + "but": 1, + "on": 1, + "strings.": 1, + "Also": 1, + "includes": 1, + "to": 1, + "ensure": 1, + "sort": 1, + "is": 1, + "done": 1, + "by": 1, + "non": 1, + "before": 1, + "sliding.": 1, + "left.surname": 2, + "right.surname": 4, + "[": 4, + "]": 4, + "all": 1, + "//This": 1, + "should": 1, + "not": 1, + "generate": 1, + "a": 1, + "self": 1 + }, + "edn": { + "[": 24, + "{": 22, + "db/id": 22, + "#db/id": 22, + "db.part/db": 6, + "]": 24, + "db/ident": 3, + "object/name": 18, + "db/doc": 4, + "db/valueType": 3, + "db.type/string": 2, + "db/index": 3, + "true": 3, + "db/cardinality": 3, + "db.cardinality/one": 3, + "db.install/_attribute": 3, + "}": 22, + "object/meanRadius": 18, + "db.type/double": 1, + "data/source": 2, + "db.part/tx": 2, + "db.part/user": 17 + }, + "Elm": { + "import": 3, + "List": 1, + "(": 119, + "intercalate": 2, + "intersperse": 3, + ")": 116, + "Website.Skeleton": 1, + "Website.ColorScheme": 1, + "addFolder": 4, + "folder": 2, + "lst": 6, + "let": 2, + "add": 2, + "x": 13, + "y": 7, + "+": 14, + "in": 2, + "f": 8, + "n": 2, + "xs": 9, + "map": 11, + "elements": 2, + "[": 31, + "]": 31, + "functional": 2, + "reactive": 2, + "-": 11, + "example": 3, + "name": 6, + "loc": 2, + "Text.link": 1, + "toText": 6, + "toLinks": 2, + "title": 2, + "links": 2, + "flow": 4, + "right": 8, + "width": 3, + "text": 4, + "italic": 1, + "bold": 2, + ".": 9, + "Text.color": 1, + "accent4": 1, + "insertSpace": 2, + "case": 5, + "of": 7, + "{": 1, + "spacer": 2, + ";": 1, + "}": 1, + "subsection": 2, + "w": 7, + "info": 2, + "down": 3, + "words": 2, + "markdown": 1, + "|": 3, + "###": 1, + "Basic": 1, + "Examples": 1, + "Each": 1, + "listed": 1, + "below": 1, + "focuses": 1, + "on": 1, + "a": 5, + "single": 1, + "function": 1, + "or": 1, + "concept.": 1, + "These": 1, + "examples": 1, + "demonstrate": 1, + "all": 1, + "the": 1, + "basic": 1, + "building": 1, + "blocks": 1, + "Elm.": 1, + "content": 2, + "exampleSets": 2, + "plainText": 1, + "main": 3, + "lift": 1, + "skeleton": 1, + "Window.width": 1, + "asText": 1, + "qsort": 4, + "filter": 2, + "<)x)>": 1, + "data": 1, + "Tree": 3, + "Node": 8, + "Empty": 8, + "empty": 2, + "singleton": 2, + "v": 8, + "insert": 4, + "tree": 7, + "left": 7, + "if": 2, + "then": 2, + "else": 2, + "<": 1, + "fromList": 3, + "foldl": 1, + "depth": 5, + "max": 1, + "t1": 2, + "t2": 3, + "display": 4, + "monospace": 1, + "concat": 1, + "show": 2 + }, + "Emacs Lisp": { + "(": 156, + "print": 1, + ")": 144, + ";": 333, + "ess": 48, + "-": 294, + "julia.el": 2, + "ESS": 5, + "julia": 39, + "mode": 12, + "and": 3, + "inferior": 13, + "interaction": 1, + "Copyright": 1, + "C": 2, + "Vitalie": 3, + "Spinu.": 1, + "Filename": 1, + "Author": 1, + "Spinu": 2, + "based": 1, + "on": 2, + "mode.el": 1, + "from": 3, + "lang": 1, + "project": 1, + "Maintainer": 1, + "Created": 1, + "Keywords": 1, + "This": 4, + "file": 10, + "is": 5, + "*NOT*": 1, + "part": 2, + "of": 8, + "GNU": 4, + "Emacs.": 1, + "program": 6, + "free": 1, + "software": 1, + "you": 1, + "can": 1, + "redistribute": 1, + "it": 3, + "and/or": 1, + "modify": 5, + "under": 1, + "the": 10, + "terms": 1, + "General": 3, + "Public": 3, + "License": 3, + "as": 1, + "published": 1, + "by": 1, + "Free": 2, + "Software": 2, + "Foundation": 2, + "either": 1, + "version": 2, + "any": 1, + "later": 1, + "version.": 1, + "distributed": 1, + "in": 3, + "hope": 1, + "that": 2, + "will": 1, + "be": 2, + "useful": 1, + "but": 2, + "WITHOUT": 1, + "ANY": 1, + "WARRANTY": 1, + "without": 1, + "even": 1, + "implied": 1, + "warranty": 1, + "MERCHANTABILITY": 1, + "or": 3, + "FITNESS": 1, + "FOR": 1, + "A": 1, + "PARTICULAR": 1, + "PURPOSE.": 1, + "See": 1, + "for": 8, + "more": 1, + "details.": 1, + "You": 1, + "should": 2, + "have": 1, + "received": 1, + "a": 4, + "copy": 2, + "along": 1, + "with": 4, + "this": 1, + "see": 2, + "COPYING.": 1, + "If": 1, + "not": 1, + "write": 2, + "to": 4, + "Inc.": 1, + "Franklin": 1, + "Street": 1, + "Fifth": 1, + "Floor": 1, + "Boston": 1, + "MA": 1, + "USA.": 1, + "Commentary": 1, + "customise": 1, + "name": 8, + "point": 6, + "your": 1, + "release": 1, + "basic": 1, + "start": 13, + "M": 2, + "x": 2, + "julia.": 2, + "require": 2, + "auto": 1, + "alist": 9, + "table": 9, + "character": 1, + "quote": 2, + "transpose": 1, + "syntax": 7, + "entry": 4, + ".": 40, + "Syntax": 3, + "inside": 1, + "char": 6, + "defvar": 5, + "let": 3, + "make": 4, + "defconst": 5, + "regex": 5, + "unquote": 1, + "forloop": 1, + "subset": 2, + "regexp": 6, + "font": 6, + "lock": 6, + "defaults": 2, + "list": 3, + "identity": 1, + "keyword": 2, + "face": 4, + "constant": 1, + "cons": 1, + "function": 7, + "keep": 2, + "string": 8, + "paragraph": 3, + "concat": 7, + "page": 2, + "delimiter": 2, + "separate": 1, + "ignore": 2, + "fill": 1, + "prefix": 2, + "t": 6, + "final": 1, + "newline": 1, + "comment": 6, + "add": 4, + "skip": 1, + "column": 1, + "indent": 8, + "S": 2, + "line": 5, + "calculate": 1, + "parse": 1, + "sexp": 1, + "comments": 1, + "style": 2, + "default": 1, + "ignored": 1, + "local": 6, + "process": 5, + "nil": 12, + "dump": 2, + "files": 1, + "_": 1, + "autoload": 1, + "defun": 5, + "send": 3, + "visibly": 1, + "temporary": 1, + "directory": 2, + "temp": 2, + "insert": 1, + "format": 3, + "load": 1, + "command": 5, + "get": 3, + "help": 3, + "topics": 1, + "&": 3, + "optional": 3, + "proc": 3, + "words": 1, + "vector": 1, + "com": 1, + "error": 6, + "s": 5, + "*in": 1, + "[": 3, + "n": 1, + "]": 3, + "*": 1, + "at": 5, + ".*": 2, + "+": 5, + "w*": 1, + "http": 1, + "//docs.julialang.org/en/latest/search/": 1, + "q": 1, + "%": 1, + "include": 1, + "funargs": 1, + "re": 2, + "args": 10, + "language": 1, + "STERM": 1, + "editor": 2, + "R": 2, + "pager": 2, + "versions": 1, + "Julia": 1, + "made": 1, + "available.": 1, + "String": 1, + "arguments": 2, + "used": 1, + "when": 2, + "starting": 1, + "group": 1, + "###autoload": 2, + "interactive": 2, + "setq": 2, + "customize": 5, + "emacs": 1, + "<": 1, + "hook": 4, + "complete": 1, + "object": 2, + "completion": 4, + "functions": 2, + "first": 1, + "if": 4, + "fboundp": 1, + "end": 1, + "workaround": 1, + "set": 3, + "variable": 3, + "post": 1, + "run": 2, + "settings": 1, + "notably": 1, + "null": 1, + "dribble": 1, + "buffer": 3, + "debugging": 1, + "only": 1, + "dialect": 1, + "current": 2, + "arg": 1, + "let*": 2, + "jl": 2, + "space": 1, + "just": 1, + "case": 1, + "read": 1, + "..": 3, + "multi": 1, + "...": 1, + "tb": 1, + "logo": 1, + "goto": 2, + "min": 1, + "while": 1, + "search": 1, + "forward": 1, + "replace": 1, + "match": 1, + "max": 1, + "inject": 1, + "code": 1, + "etc": 1, + "hooks": 1, + "busy": 1, + "funname": 5, + "eldoc": 1, + "show": 1, + "symbol": 2, + "aggressive": 1, + "car": 1, + "funname.start": 1, + "sequence": 1, + "nth": 1, + "W": 1, + "window": 2, + "width": 1, + "minibuffer": 1, + "length": 1, + "doc": 1, + "propertize": 1, + "use": 1, + "classes": 1, + "screws": 1, + "egrep": 1 + }, + "Erlang": { + "SHEBANG#!escript": 3, + "%": 134, + "-": 262, + "*": 9, + "erlang": 5, + "smp": 1, + "enable": 1, + "sname": 1, + "factorial": 1, + "mnesia": 1, + "debug": 1, + "verbose": 1, + "main": 4, + "(": 236, + "[": 66, + "String": 2, + "]": 61, + ")": 230, + "try": 2, + "N": 6, + "list_to_integer": 1, + "F": 16, + "fac": 4, + "io": 5, + "format": 7, + "catch": 2, + "_": 52, + "usage": 3, + "end": 3, + ";": 56, + ".": 37, + "halt": 2, + "export": 2, + "main/1": 1, + "For": 1, + "each": 1, + "header": 1, + "file": 6, + "it": 2, + "scans": 1, + "thru": 1, + "all": 1, + "records": 1, + "and": 8, + "create": 1, + "helper": 1, + "functions": 2, + "Helper": 1, + "are": 3, + "setters": 1, + "getters": 1, + "fields": 4, + "fields_atom": 4, + "type": 6, + "module": 2, + "record_helper": 1, + "make/1": 1, + "make/2": 1, + "make": 3, + "HeaderFiles": 5, + "atom_to_list": 18, + "X": 12, + "||": 6, + "<->": 5, + "hrl": 1, + "relative": 1, + "to": 2, + "current": 1, + "dir": 1, + "OutDir": 4, + "ModuleName": 3, + "HeaderComment": 2, + "ModuleDeclaration": 2, + "+": 214, + "<": 1, + "Src": 10, + "format_src": 8, + "lists": 11, + "sort": 1, + "flatten": 6, + "read": 2, + "generate_type_default_function": 2, + "write_file": 1, + "erl": 1, + "list_to_binary": 1, + "HeaderFile": 4, + "epp": 1, + "parse_file": 1, + "of": 9, + "{": 109, + "ok": 34, + "Tree": 4, + "}": 109, + "parse": 2, + "error": 4, + "Error": 4, + "catched_error": 1, + "end.": 3, + "|": 25, + "T": 24, + "when": 29, + "length": 6, + "Type": 3, + "A": 5, + "B": 4, + "NSrc": 4, + "_Type": 1, + "Type1": 2, + "parse_record": 3, + "attribute": 1, + "record": 4, + "RecordInfo": 2, + "RecordName": 41, + "RecordFields": 10, + "if": 1, + "generate_setter_getter_function": 5, + "generate_type_function": 3, + "true": 3, + "generate_fields_function": 2, + "generate_fields_atom_function": 2, + "parse_field_name": 5, + "record_field": 9, + "atom": 9, + "FieldName": 26, + "field": 4, + "_FieldName": 2, + "ParentRecordName": 8, + "parent_field": 2, + "parse_field_name_atom": 5, + "concat": 5, + "_S": 3, + "S": 6, + "concat_ext": 4, + "parse_field": 6, + "AccFields": 6, + "AccParentFields": 6, + "case": 3, + "Field": 2, + "PField": 2, + "parse_field_atom": 4, + "zzz": 1, + "Fields": 4, + "field_atom": 1, + "to_setter_getter_function": 5, + "setter": 2, + "getter": 2, + "This": 2, + "is": 1, + "auto": 1, + "generated": 1, + "file.": 1, + "Please": 1, + "don": 1, + "t": 1, + "edit": 1, + "record_utils": 1, + "compile": 2, + "export_all": 1, + "include": 1, + "abstract_message": 21, + "async_message": 12, + "clientId": 5, + "destination": 5, + "messageId": 5, + "timestamp": 5, + "timeToLive": 5, + "headers": 5, + "body": 5, + "correlationId": 5, + "correlationIdBytes": 5, + "get": 12, + "Obj": 49, + "is_record": 25, + "Obj#abstract_message.body": 1, + "Obj#abstract_message.clientId": 1, + "Obj#abstract_message.destination": 1, + "Obj#abstract_message.headers": 1, + "Obj#abstract_message.messageId": 1, + "Obj#abstract_message.timeToLive": 1, + "Obj#abstract_message.timestamp": 1, + "Obj#async_message.correlationId": 1, + "Obj#async_message.correlationIdBytes": 1, + "parent": 5, + "Obj#async_message.parent": 3, + "ParentProperty": 6, + "is_atom": 2, + "set": 13, + "Value": 35, + "NewObj": 20, + "Obj#abstract_message": 7, + "Obj#async_message": 3, + "NewParentObject": 2, + "undefined.": 1, + "Mode": 1, + "coding": 1, + "utf": 1, + "tab": 1, + "width": 1, + "c": 2, + "basic": 1, + "offset": 1, + "indent": 1, + "tabs": 1, + "mode": 2, + "BSD": 1, + "LICENSE": 1, + "Copyright": 1, + "Michael": 2, + "Truog": 2, + "": 1, + "at": 1, + "gmail": 1, + "dot": 1, + "com": 1, + "All": 2, + "rights": 1, + "reserved.": 1, + "Redistribution": 1, + "use": 2, + "in": 3, + "source": 2, + "binary": 2, + "forms": 1, + "with": 2, + "or": 3, + "without": 2, + "modification": 1, + "permitted": 1, + "provided": 2, + "that": 1, + "the": 9, + "following": 4, + "conditions": 3, + "met": 1, + "Redistributions": 2, + "code": 2, + "must": 3, + "retain": 1, + "above": 2, + "copyright": 2, + "notice": 2, + "this": 4, + "list": 2, + "disclaimer.": 1, + "form": 1, + "reproduce": 1, + "disclaimer": 1, + "documentation": 1, + "and/or": 1, + "other": 1, + "materials": 2, + "distribution.": 1, + "advertising": 1, + "mentioning": 1, + "features": 1, + "software": 3, + "display": 1, + "acknowledgment": 1, + "product": 1, + "includes": 1, + "developed": 1, + "by": 1, + "The": 1, + "name": 1, + "author": 2, + "may": 1, + "not": 1, + "be": 1, + "used": 1, + "endorse": 1, + "promote": 1, + "products": 1, + "derived": 1, + "from": 1, + "specific": 1, + "prior": 1, + "written": 1, + "permission": 1, + "THIS": 2, + "SOFTWARE": 2, + "IS": 1, + "PROVIDED": 1, + "BY": 1, + "THE": 5, + "COPYRIGHT": 2, + "HOLDERS": 1, + "AND": 4, + "CONTRIBUTORS": 2, + "ANY": 4, + "EXPRESS": 1, + "OR": 8, + "IMPLIED": 2, + "WARRANTIES": 2, + "INCLUDING": 3, + "BUT": 2, + "NOT": 2, + "LIMITED": 2, + "TO": 2, + "OF": 8, + "MERCHANTABILITY": 1, + "FITNESS": 1, + "FOR": 2, + "PARTICULAR": 1, + "PURPOSE": 1, + "ARE": 1, + "DISCLAIMED.": 1, + "IN": 3, + "NO": 1, + "EVENT": 1, + "SHALL": 1, + "OWNER": 1, + "BE": 1, + "LIABLE": 1, + "DIRECT": 1, + "INDIRECT": 1, + "INCIDENTAL": 1, + "SPECIAL": 1, + "EXEMPLARY": 1, + "CONSEQUENTIAL": 1, + "DAMAGES": 1, + "PROCUREMENT": 1, + "SUBSTITUTE": 1, + "GOODS": 1, + "SERVICES": 1, + "LOSS": 1, + "USE": 2, + "DATA": 1, + "PROFITS": 1, + "BUSINESS": 1, + "INTERRUPTION": 1, + "HOWEVER": 1, + "CAUSED": 1, + "ON": 1, + "THEORY": 1, + "LIABILITY": 2, + "WHETHER": 1, + "CONTRACT": 1, + "STRICT": 1, + "TORT": 1, + "NEGLIGENCE": 1, + "OTHERWISE": 1, + "ARISING": 1, + "WAY": 1, + "OUT": 1, + "EVEN": 1, + "IF": 1, + "ADVISED": 1, + "POSSIBILITY": 1, + "SUCH": 1, + "DAMAGE.": 1, + "sys": 2, + "RelToolConfig": 5, + "target_dir": 2, + "TargetDir": 14, + "overlay": 2, + "OverlayConfig": 4, + "consult": 1, + "Spec": 2, + "reltool": 2, + "get_target_spec": 1, + "make_dir": 1, + "eexist": 1, + "exit_code": 3, + "eval_target_spec": 1, + "root_dir": 1, + "process_overlay": 2, + "shell": 3, + "Command": 3, + "Arguments": 3, + "CommandSuffix": 2, + "reverse": 4, + "os": 1, + "cmd": 1, + "io_lib": 2, + "boot_rel_vsn": 2, + "Config": 2, + "_RelToolConfig": 1, + "rel": 2, + "_Name": 1, + "Ver": 1, + "proplists": 1, + "lookup": 1, + "Ver.": 1, + "minimal": 2, + "parsing": 1, + "for": 1, + "handling": 1, + "mustache": 11, + "syntax": 1, + "Body": 2, + "Context": 11, + "Result": 10, + "_Context": 1, + "KeyStr": 6, + "mustache_key": 4, + "C": 4, + "Rest": 10, + "Key": 2, + "list_to_existing_atom": 1, + "dict": 2, + "find": 1, + "support": 1, + "based": 1, + "on": 1, + "rebar": 1, + "overlays": 1, + "BootRelVsn": 2, + "OverlayVars": 2, + "from_list": 1, + "erts_vsn": 1, + "system_info": 1, + "version": 1, + "rel_vsn": 1, + "hostname": 1, + "net_adm": 1, + "localhost": 1, + "BaseDir": 7, + "get_cwd": 1, + "execute_overlay": 6, + "_Vars": 1, + "_BaseDir": 1, + "_TargetDir": 1, + "mkdir": 1, + "Out": 4, + "Vars": 7, + "filename": 3, + "join": 3, + "copy": 1, + "In": 2, + "InFile": 3, + "OutFile": 2, + "filelib": 1, + "is_file": 1, + "ExitCode": 2, + "flush": 1 + }, + "fish": { + "#": 18, + "set": 49, + "-": 102, + "g": 1, + "IFS": 4, + "n": 5, + "t": 2, + "l": 15, + "configdir": 2, + "/.config": 1, + "if": 21, + "q": 9, + "XDG_CONFIG_HOME": 2, + "end": 33, + "not": 8, + "fish_function_path": 4, + "configdir/fish/functions": 1, + "__fish_sysconfdir/functions": 1, + "__fish_datadir/functions": 3, + "contains": 4, + "[": 13, + "]": 13, + "fish_complete_path": 4, + "configdir/fish/completions": 1, + "__fish_sysconfdir/completions": 1, + "__fish_datadir/completions": 3, + "test": 7, + "d": 3, + "/usr/xpg4/bin": 3, + "PATH": 6, + "path_list": 4, + "/bin": 1, + "/usr/bin": 1, + "/usr/X11R6/bin": 1, + "/usr/local/bin": 1, + "__fish_bin_dir": 1, + "switch": 3, + "USER": 1, + "case": 9, + "root": 1, + "/sbin": 1, + "/usr/sbin": 1, + "/usr/local/sbin": 1, + "for": 1, + "i": 5, + "in": 2, + "function": 6, + "fish_sigtrap_handler": 1, + "on": 2, + "signal": 1, + "TRAP": 1, + "no": 2, + "scope": 1, + "shadowing": 1, + "description": 2, + "breakpoint": 1, + "__fish_on_interactive": 2, + "event": 1, + "fish_prompt": 1, + "__fish_config_interactive": 1, + "functions": 5, + "e": 6, + "eval": 5, + "S": 1, + "If": 2, + "we": 2, + "are": 1, + "an": 1, + "interactive": 8, + "shell": 1, + "should": 2, + "enable": 1, + "full": 4, + "job": 5, + "control": 5, + "since": 1, + "it": 1, + "behave": 1, + "like": 2, + "the": 1, + "real": 1, + "code": 1, + "was": 1, + "executed.": 1, + "don": 1, + "do": 1, + "this": 1, + "commands": 1, + "that": 1, + "expect": 1, + "to": 1, + "be": 1, + "used": 1, + "interactively": 1, + "less": 1, + "wont": 1, + "work": 1, + "using": 1, + "eval.": 1, + "mode": 5, + "status": 7, + "is": 3, + "else": 3, + "none": 1, + "echo": 3, + "|": 3, + ".": 2, + "<": 1, + "&": 1, + "res": 2, + "return": 6, + "funced": 3, + "editor": 7, + "EDITOR": 1, + "funcname": 14, + "while": 2, + "argv": 9, + "h": 1, + "help": 1, + "__fish_print_help": 1, + "set_color": 4, + "red": 2, + "printf": 3, + "(": 7, + "_": 3, + ")": 7, + "normal": 2, + "begin": 2, + ";": 7, + "or": 3, + "init": 5, + "nend": 2, + "editor_cmd": 2, + "type": 1, + "f": 3, + "/dev/null": 2, + "fish": 3, + "z": 1, + "fish_indent": 2, + "indent": 1, + "prompt": 2, + "read": 1, + "p": 1, + "c": 1, + "s": 1, + "cmd": 2, + "TMPDIR": 2, + "/tmp": 1, + "tmpname": 8, + "%": 2, + "self": 2, + "random": 2, + "stat": 2, + "rm": 1 + }, + "Forth": { + "(": 88, + "Block": 2, + "words.": 6, + ")": 87, + "variable": 3, + "blk": 3, + "current": 5, + "-": 473, + "block": 8, + "n": 22, + "addr": 11, + ";": 61, + "buffer": 2, + "evaluate": 1, + "extended": 3, + "semantics": 3, + "flush": 1, + "load": 2, + "...": 4, + "dup": 10, + "save": 2, + "input": 2, + "in": 4, + "@": 13, + "source": 5, + "#source": 2, + "interpret": 1, + "restore": 1, + "buffers": 2, + "update": 1, + "extension": 4, + "empty": 2, + "scr": 2, + "list": 1, + "bounds": 1, + "do": 2, + "i": 5, + "emit": 2, + "loop": 4, + "refill": 2, + "thru": 1, + "x": 10, + "y": 5, + "+": 17, + "swap": 12, + "*": 9, + "forth": 2, + "Copyright": 3, + "Lars": 3, + "Brinkhoff": 3, + "Kernel": 4, + "#tib": 2, + "TODO": 12, + ".r": 1, + ".": 5, + "[": 16, + "char": 10, + "]": 15, + "parse": 5, + "type": 3, + "immediate": 19, + "<": 14, + "flag": 4, + "r": 18, + "x1": 5, + "x2": 5, + "R": 13, + "rot": 2, + "r@": 2, + "noname": 1, + "align": 2, + "here": 9, + "c": 3, + "allot": 2, + "lastxt": 4, + "SP": 1, + "query": 1, + "tib": 1, + "body": 1, + "true": 1, + "tuck": 2, + "over": 5, + "u.r": 1, + "u": 3, + "if": 9, + "drop": 4, + "false": 1, + "else": 6, + "then": 5, + "unused": 1, + "value": 1, + "create": 2, + "does": 5, + "within": 1, + "compile": 2, + "Forth2012": 2, + "core": 1, + "action": 1, + "of": 3, + "defer": 2, + "name": 1, + "s": 4, + "c@": 2, + "negate": 1, + "nip": 2, + "bl": 4, + "word": 9, + "ahead": 2, + "resolve": 4, + "literal": 4, + "postpone": 14, + "nonimmediate": 1, + "caddr": 1, + "C": 9, + "find": 2, + "cells": 1, + "postponers": 1, + "execute": 1, + "unresolved": 4, + "orig": 5, + "chars": 1, + "n1": 2, + "n2": 2, + "orig1": 1, + "orig2": 1, + "branch": 5, + "dodoes_code": 1, + "code": 3, + "begin": 2, + "dest": 5, + "while": 2, + "repeat": 2, + "until": 1, + "recurse": 1, + "pad": 3, + "If": 1, + "necessary": 1, + "and": 3, + "keep": 1, + "parsing.": 1, + "string": 3, + "cmove": 1, + "state": 2, + "cr": 3, + "abort": 3, + "": 1, + "Undefined": 1, + "ok": 1, + "HELLO": 4, + "KataDiversion": 1, + "Forth": 1, + "utils": 1, + "the": 7, + "stack": 3, + "EMPTY": 1, + "DEPTH": 2, + "IF": 10, + "BEGIN": 3, + "DROP": 5, + "UNTIL": 3, + "THEN": 10, + "power": 2, + "**": 2, + "n1_pow_n2": 1, + "SWAP": 8, + "DUP": 14, + "DO": 2, + "OVER": 2, + "LOOP": 2, + "NIP": 4, + "compute": 1, + "highest": 1, + "below": 1, + "N.": 1, + "e.g.": 2, + "MAXPOW2": 2, + "log2_n": 1, + "ABORT": 1, + "ELSE": 7, + "|": 4, + "I": 5, + "i*2": 1, + "/": 3, + "kata": 1, + "test": 1, + "given": 3, + "N": 6, + "has": 1, + "two": 2, + "adjacent": 2, + "bits": 3, + "NOT": 3, + "TWO": 3, + "ADJACENT": 3, + "BITS": 3, + "bool": 1, + "uses": 1, + "following": 1, + "algorithm": 1, + "return": 5, + "A": 5, + "X": 5, + "LOG2": 1, + "end": 1, + "OR": 1, + "INVERT": 1, + "maximum": 1, + "number": 4, + "which": 3, + "can": 2, + "be": 2, + "made": 2, + "with": 2, + "MAX": 2, + "NB": 3, + "m": 2, + "**n": 1, + "numbers": 1, + "or": 1, + "less": 1, + "have": 1, + "not": 1, + "bits.": 1, + "see": 1, + "http": 1, + "//www.codekata.com/2007/01/code_kata_fifte.html": 1, + "HOW": 1, + "MANY": 1, + "Tools": 2, + ".s": 1, + "depth": 1, + "traverse": 1, + "dictionary": 1, + "assembler": 1, + "kernel": 1, + "bye": 1, + "cs": 2, + "pick": 1, + "roll": 1, + "editor": 1, + "forget": 1, + "reveal": 1, + "tools": 1, + "nr": 1, + "synonym": 1, + "undefined": 2, + "defined": 1, + "invert": 1, + "/cell": 2, + "cell": 2 + }, + "GAS": { + ".cstring": 1, + "LC0": 2, + ".ascii": 2, + ".text": 1, + ".globl": 2, + "_main": 2, + "LFB3": 4, + "pushq": 1, + "%": 6, + "rbp": 2, + "LCFI0": 3, + "movq": 1, + "rsp": 1, + "LCFI1": 2, + "leaq": 1, + "(": 1, + "rip": 1, + ")": 1, + "rdi": 1, + "call": 1, + "_puts": 1, + "movl": 1, + "eax": 1, + "leave": 1, + "ret": 1, + "LFE3": 2, + ".section": 1, + "__TEXT": 1, + "__eh_frame": 1, + "coalesced": 1, + "no_toc": 1, + "+": 2, + "strip_static_syms": 1, + "live_support": 1, + "EH_frame1": 2, + ".set": 5, + "L": 10, + "set": 10, + "LECIE1": 2, + "-": 7, + "LSCIE1": 2, + ".long": 6, + ".byte": 20, + "xc": 1, + ".align": 2, + "_main.eh": 2, + "LSFDE1": 1, + "LEFDE1": 2, + "LASFDE1": 3, + ".quad": 2, + ".": 1, + "xe": 1, + "xd": 1, + ".subsections_via_symbols": 1 + }, + "GLSL": { + "////": 4, + "High": 1, + "quality": 2, + "(": 386, + "Some": 1, + "browsers": 1, + "may": 1, + "freeze": 1, + "or": 1, + "crash": 1, + ")": 386, + "//#define": 10, + "HIGHQUALITY": 2, + "Medium": 1, + "Should": 1, + "be": 1, + "fine": 1, + "on": 3, + "all": 1, + "systems": 1, + "works": 1, + "Intel": 1, + "HD2000": 1, + "Win7": 1, + "but": 1, + "quite": 1, + "slow": 1, + "MEDIUMQUALITY": 2, + "Defaults": 1, + "REFLECTIONS": 3, + "#define": 13, + "SHADOWS": 5, + "GRASS": 3, + "SMALL_WAVES": 4, + "RAGGED_LEAVES": 5, + "DETAILED_NOISE": 3, + "LIGHT_AA": 3, + "//": 36, + "sample": 2, + "SSAA": 2, + "HEAVY_AA": 2, + "x2": 5, + "RG": 1, + "TONEMAP": 5, + "Configurations": 1, + "#ifdef": 14, + "#endif": 14, + "const": 18, + "float": 103, + "eps": 5, + "e": 4, + "-": 108, + ";": 353, + "PI": 3, + "vec3": 165, + "sunDir": 5, + "skyCol": 4, + "sandCol": 2, + "treeCol": 2, + "grassCol": 2, + "leavesCol": 4, + "leavesPos": 4, + "sunCol": 5, + "#else": 5, + "exposure": 1, + "Only": 1, + "used": 1, + "when": 1, + "tonemapping": 1, + "mod289": 4, + "x": 11, + "{": 61, + "return": 47, + "floor": 8, + "*": 115, + "/": 24, + "}": 61, + "vec4": 72, + "permute": 4, + "x*34.0": 1, + "+": 108, + "*x": 3, + "taylorInvSqrt": 2, + "r": 14, + "snoise": 7, + "v": 8, + "vec2": 26, + "C": 1, + "/6.0": 1, + "/3.0": 1, + "D": 1, + "i": 38, + "dot": 30, + "C.yyy": 2, + "x0": 7, + "C.xxx": 2, + "g": 2, + "step": 2, + "x0.yzx": 1, + "x0.xyz": 1, + "l": 1, + "i1": 2, + "min": 11, + "g.xyz": 2, + "l.zxy": 2, + "i2": 2, + "max": 9, + "x1": 4, + "*C.x": 2, + "/3": 1, + "C.y": 1, + "x3": 4, + "D.yyy": 1, + "D.y": 1, + "p": 26, + "i.z": 1, + "i1.z": 1, + "i2.z": 1, + "i.y": 1, + "i1.y": 1, + "i2.y": 1, + "i.x": 1, + "i1.x": 1, + "i2.x": 1, + "n_": 2, + "/7.0": 1, + "ns": 4, + "D.wyz": 1, + "D.xzx": 1, + "j": 4, + "ns.z": 3, + "mod": 2, + "*7": 1, + "x_": 3, + "y_": 2, + "N": 1, + "*ns.x": 2, + "ns.yyyy": 2, + "y": 2, + "h": 21, + "abs": 2, + "b0": 3, + "x.xy": 1, + "y.xy": 1, + "b1": 3, + "x.zw": 1, + "y.zw": 1, + "//vec4": 3, + "s0": 2, + "lessThan": 2, + "*2.0": 4, + "s1": 2, + "sh": 1, + "a0": 1, + "b0.xzyw": 1, + "s0.xzyw*sh.xxyy": 1, + "a1": 1, + "b1.xzyw": 1, + "s1.xzyw*sh.zzww": 1, + "p0": 5, + "a0.xy": 1, + "h.x": 1, + "p1": 5, + "a0.zw": 1, + "h.y": 1, + "p2": 5, + "a1.xy": 1, + "h.z": 1, + "p3": 5, + "a1.zw": 1, + "h.w": 1, + "//Normalise": 1, + "gradients": 1, + "norm": 1, + "norm.x": 1, + "norm.y": 1, + "norm.z": 1, + "norm.w": 1, + "m": 8, + "m*m": 1, + "fbm": 2, + "final": 5, + "waterHeight": 4, + "d": 10, + "length": 7, + "p.xz": 2, + "sin": 8, + "iGlobalTime": 7, + "Island": 1, + "waves": 3, + "p*0.5": 1, + "Other": 1, + "bump": 2, + "pos": 42, + "rayDir": 43, + "s": 23, + "Fade": 1, + "out": 1, + "to": 1, + "reduce": 1, + "aliasing": 1, + "dist": 7, + "<": 23, + "sqrt": 6, + "Calculate": 1, + "normal": 7, + "from": 2, + "heightmap": 1, + "pos.x": 1, + "iGlobalTime*0.5": 1, + "pos.z": 2, + "*0.7": 1, + "*s": 4, + "normalize": 14, + "e.xyy": 1, + "e.yxy": 1, + "intersectSphere": 2, + "rpos": 5, + "rdir": 3, + "rad": 2, + "op": 5, + "b": 5, + "det": 11, + "b*b": 2, + "rad*rad": 2, + "if": 29, + "t": 44, + "rdir*t": 1, + "intersectCylinder": 1, + "rdir2": 2, + "rdir.yz": 1, + "op.yz": 3, + "rpos.yz": 2, + "rdir2*t": 2, + "pos.yz": 2, + "intersectPlane": 3, + "rayPos": 38, + "n": 18, + "sign": 1, + "rotate": 5, + "theta": 6, + "c": 6, + "cos": 4, + "p.x": 2, + "p.z": 2, + "p.y": 1, + "impulse": 2, + "k": 8, + "by": 1, + "iq": 2, + "k*x": 1, + "exp": 2, + "grass": 2, + "Optimization": 1, + "Avoid": 1, + "noise": 1, + "too": 1, + "far": 1, + "away": 1, + "pos.y": 8, + "tree": 2, + "pos.y*0.03": 2, + "mat2": 2, + "m*pos.xy": 1, + "width": 2, + "clamp": 4, + "scene": 7, + "vtree": 4, + "vgrass": 2, + ".x": 4, + "eps.xyy": 1, + "eps.yxy": 1, + "eps.yyx": 1, + "plantsShadow": 2, + "Soft": 1, + "shadow": 4, + "taken": 1, + "for": 7, + "int": 7, + "rayDir*t": 2, + "res": 6, + "res.x": 3, + "k*res.x/t": 1, + "s*s*": 1, + "intersectWater": 2, + "rayPos.y": 1, + "rayDir.y": 1, + "intersectSand": 3, + "intersectTreasure": 2, + "intersectLeaf": 2, + "openAmount": 4, + "dir": 2, + "offset": 5, + "rayDir*res.w": 1, + "pos*0.8": 2, + "||": 3, + "res.w": 6, + "res2": 2, + "dir.xy": 1, + "dir.z": 1, + "rayDir*res2.w": 1, + "res2.w": 3, + "&&": 10, + "leaves": 7, + "e20": 3, + "sway": 5, + "fract": 1, + "upDownSway": 2, + "angleOffset": 3, + "Left": 1, + "right": 1, + "alpha": 3, + "Up": 1, + "down": 1, + "k*10.0": 1, + "p.xzy": 1, + ".xzy": 2, + "d.xzy": 1, + "Shift": 1, + "Intersect": 11, + "individual": 1, + "leaf": 1, + "res.xyz": 1, + "sand": 2, + "resSand": 2, + "//if": 1, + "resSand.w": 4, + "plants": 6, + "resLeaves": 3, + "resLeaves.w": 10, + "e7": 3, + "light": 5, + "sunDir*0.01": 2, + "col": 32, + "n.y": 3, + "lightLeaves": 3, + "ao": 5, + "sky": 5, + "res.y": 2, + "uvFact": 2, + "uv": 12, + "n.x": 1, + "tex": 6, + "texture2D": 6, + "iChannel0": 3, + ".rgb": 2, + "e8": 1, + "traceReflection": 2, + "resPlants": 2, + "resPlants.w": 6, + "resPlants.xyz": 2, + "pos.xz": 2, + "leavesPos.xz": 2, + ".r": 3, + "resLeaves.xyz": 2, + "trace": 2, + "resSand.xyz": 1, + "treasure": 1, + "chest": 1, + "resTreasure": 1, + "resTreasure.w": 4, + "resTreasure.xyz": 1, + "water": 1, + "resWater": 1, + "resWater.w": 4, + "ct": 2, + "fresnel": 2, + "pow": 3, + "trans": 2, + "reflDir": 3, + "reflect": 1, + "refl": 3, + "resWater.t": 1, + "mix": 2, + "camera": 8, + "px": 4, + "rd": 1, + "iResolution.yy": 1, + "iResolution.x/iResolution.y*0.5": 1, + "rd.x": 1, + "rd.y": 1, + "void": 5, + "main": 3, + "gl_FragCoord.xy": 7, + "*0.25": 4, + "*0.5": 1, + "Optimized": 1, + "Haarm": 1, + "Peter": 1, + "Duiker": 1, + "curve": 1, + "col*exposure": 1, + "x*": 2, + ".5": 1, + "gl_FragColor": 2, + "NUM_LIGHTS": 4, + "AMBIENT": 2, + "MAX_DIST": 3, + "MAX_DIST_SQUARED": 3, + "uniform": 7, + "lightColor": 3, + "[": 29, + "]": 29, + "varying": 3, + "fragmentNormal": 2, + "cameraVector": 2, + "lightVector": 4, + "initialize": 1, + "diffuse/specular": 1, + "lighting": 1, + "diffuse": 4, + "specular": 4, + "the": 1, + "fragment": 1, + "and": 2, + "direction": 1, + "cameraDir": 2, + "loop": 1, + "through": 1, + "each": 1, + "calculate": 1, + "distance": 1, + "between": 1, + "distFactor": 3, + "lightDir": 3, + "diffuseDot": 2, + "halfAngle": 2, + "specularColor": 2, + "specularDot": 2, + "sample.rgb": 1, + "sample.a": 1, + "#version": 1, + "kCoeff": 2, + "kCube": 2, + "uShift": 3, + "vShift": 3, + "chroma_red": 2, + "chroma_green": 2, + "chroma_blue": 2, + "bool": 1, + "apply_disto": 4, + "sampler2D": 1, + "input1": 4, + "adsk_input1_w": 4, + "adsk_input1_h": 3, + "adsk_input1_aspect": 1, + "adsk_input1_frameratio": 5, + "adsk_result_w": 3, + "adsk_result_h": 2, + "distortion_f": 3, + "f": 17, + "r*r": 1, + "inverse_f": 2, + "lut": 9, + "max_r": 2, + "incr": 2, + "lut_r": 5, + ".z": 5, + ".y": 2, + "aberrate": 4, + "chroma": 2, + "chromaticize_and_invert": 2, + "rgb_f": 5, + "px.x": 2, + "px.y": 2, + "uv.x": 11, + "uv.y": 7, + "*2": 2, + "uv.x*uv.x": 1, + "uv.y*uv.y": 1, + "else": 1, + "rgb_uvs": 12, + "rgb_f.rr": 1, + "rgb_f.gg": 1, + "rgb_f.bb": 1, + "sampled": 1, + "sampled.r": 1, + "sampled.g": 1, + ".g": 1, + "sampled.b": 1, + ".b": 1, + "gl_FragColor.rgba": 1, + "sampled.rgb": 1 + }, + "Gosu": { + "print": 4, + "(": 54, + ")": 55, + "<%!-->": 1, + "defined": 1, + "in": 3, + "Hello": 2, + "gst": 1, + "<": 1, + "%": 2, + "@": 1, + "params": 1, + "users": 2, + "Collection": 1, + "": 1, + "<%>": 2, + "for": 2, + "user": 1, + "{": 28, + "user.LastName": 1, + "}": 28, + "user.FirstName": 1, + "user.Department": 1, + "package": 2, + "example": 2, + "enhancement": 1, + "String": 6, + "function": 11, + "toPerson": 1, + "Person": 7, + "var": 10, + "vals": 4, + "this.split": 1, + "return": 4, + "new": 6, + "[": 4, + "]": 4, + "as": 3, + "int": 2, + "Relationship.valueOf": 2, + "hello": 1, + "uses": 2, + "java.util.*": 1, + "java.io.File": 1, + "class": 1, + "extends": 1, + "Contact": 1, + "implements": 1, + "IEmailable": 2, + "_name": 4, + "_age": 3, + "Integer": 3, + "Age": 1, + "_relationship": 2, + "Relationship": 3, + "readonly": 1, + "RelationshipOfPerson": 1, + "delegate": 1, + "_emailHelper": 2, + "represents": 1, + "enum": 1, + "FRIEND": 1, + "FAMILY": 1, + "BUSINESS_CONTACT": 1, + "static": 7, + "ALL_PEOPLE": 2, + "HashMap": 1, + "": 1, + "construct": 1, + "name": 4, + "age": 4, + "relationship": 2, + "EmailHelper": 1, + "this": 1, + "property": 2, + "get": 1, + "Name": 3, + "set": 1, + "override": 1, + "getEmailName": 1, + "incrementAge": 1, + "+": 2, + "@Deprecated": 1, + "printPersonInfo": 1, + "addPerson": 4, + "p": 5, + "if": 4, + "ALL_PEOPLE.containsKey": 2, + ".Name": 1, + "throw": 1, + "IllegalArgumentException": 1, + "p.Name": 2, + "addAllPeople": 1, + "contacts": 2, + "List": 1, + "": 1, + "contact": 3, + "typeis": 1, + "and": 1, + "not": 1, + "contact.Name": 1, + "getAllPeopleOlderThanNOrderedByName": 1, + "allPeople": 1, + "ALL_PEOPLE.Values": 3, + "allPeople.where": 1, + "-": 3, + "p.Age": 1, + ".orderBy": 1, + "loadPersonFromDB": 1, + "id": 1, + "using": 2, + "conn": 1, + "DBConnectionManager.getConnection": 1, + "stmt": 1, + "conn.prepareStatement": 1, + "stmt.setInt": 1, + "result": 1, + "stmt.executeQuery": 1, + "result.next": 1, + "result.getString": 2, + "result.getInt": 1, + "loadFromFile": 1, + "file": 3, + "File": 2, + "file.eachLine": 1, + "line": 1, + "line.HasContent": 1, + "line.toPerson": 1, + "saveToFile": 1, + "writer": 2, + "FileWriter": 1, + "PersonCSVTemplate.renderToString": 1, + "PersonCSVTemplate.render": 1 + }, + "Groovy": { + "task": 1, + "echoDirListViaAntBuilder": 1, + "(": 7, + ")": 7, + "{": 3, + "description": 1, + "//Docs": 1, + "http": 1, + "//ant.apache.org/manual/Types/fileset.html": 1, + "//Echo": 1, + "the": 3, + "Gradle": 1, + "project": 1, + "name": 1, + "via": 1, + "ant": 1, + "echo": 1, + "plugin": 1, + "ant.echo": 3, + "message": 1, + "project.name": 1, + "path": 2, + "//Gather": 1, + "list": 1, + "of": 1, + "files": 1, + "in": 1, + "a": 1, + "subdirectory": 1, + "ant.fileScanner": 1, + "fileset": 1, + "dir": 1, + "}": 3, + ".each": 1, + "//Print": 1, + "each": 1, + "file": 1, + "to": 1, + "screen": 1, + "with": 1, + "CWD": 1, + "projectDir": 1, + "removed.": 1, + "println": 2, + "it.toString": 1, + "-": 1, + "SHEBANG#!groovy": 1 + }, + "Groovy Server Pages": { + "": 4, + "": 4, + "": 4, + "http": 3, + "equiv=": 3, + "content=": 4, + "": 4, + "Testing": 3, + "with": 3, + "SiteMesh": 2, + "and": 2, + "Resources": 2, + "": 4, + "name=": 1, + "": 2, + "module=": 2, + "": 4, + "": 4, + "": 4, + "": 4, + "<%@>": 1, + "page": 2, + "contentType=": 1, + "Using": 1, + "directive": 1, + "tag": 1, + "": 2, + "Print": 1, + "{": 1, + "example": 1, + "}": 1 + }, + "Haml": { + "%": 1, + "p": 1, + "Hello": 1, + "World": 1 + }, + "Handlebars": { + "
": 5, + "class=": 5, + "

": 3, + "{": 16, + "title": 1, + "}": 16, + "

": 3, + "body": 3, + "
": 5, + "By": 2, + "fullName": 2, + "author": 2, + "Comments": 1, + "#each": 1, + "comments": 1, + "

": 1, + "

": 1, + "/each": 1 }, "INI": { - "indent_size": 1, - "true": 3, - "josh@github.com": 1, - "Peek": 1, - "user": 1, - "space": 1, - "indent_style": 1, - "charset": 1, - "email": 1, - "insert_final_newline": 1, - "-": 1, - "]": 2, - "*": 1, - "[": 2, ";": 1, - "trim_trailing_whitespace": 1, - "lf": 1, - "name": 1, "editorconfig.org": 1, - "utf": 1, - "end_of_line": 1, "root": 1, - "Josh": 1 + "true": 3, + "[": 2, + "*": 1, + "]": 2, + "indent_style": 1, + "space": 1, + "indent_size": 1, + "end_of_line": 1, + "lf": 1, + "charset": 1, + "utf": 1, + "-": 1, + "trim_trailing_whitespace": 1, + "insert_final_newline": 1, + "user": 1, + "name": 1, + "Josh": 1, + "Peek": 1, + "email": 1, + "josh@github.com": 1 + }, + "Ioke": { + "SHEBANG#!ioke": 1, + "println": 1 + }, + "Java": { + "package": 6, + "clojure.asm": 1, + ";": 891, + "import": 66, + "java.lang.reflect.Constructor": 1, + "java.lang.reflect.Method": 1, + "public": 214, + "class": 12, + "Type": 42, + "{": 434, + "final": 78, + "static": 141, + "int": 62, + "VOID": 5, + "BOOLEAN": 6, + "CHAR": 6, + "BYTE": 6, + "SHORT": 6, + "INT": 6, + "FLOAT": 6, + "LONG": 7, + "DOUBLE": 7, + "ARRAY": 6, + "OBJECT": 7, + "VOID_TYPE": 3, + "new": 131, + "(": 1097, + ")": 1097, + "BOOLEAN_TYPE": 3, + "CHAR_TYPE": 3, + "BYTE_TYPE": 3, + "SHORT_TYPE": 3, + "INT_TYPE": 3, + "FLOAT_TYPE": 3, + "LONG_TYPE": 3, + "DOUBLE_TYPE": 3, + "private": 77, + "sort": 18, + "char": 13, + "[": 54, + "]": 54, + "buf": 43, + "off": 25, + "len": 24, + "this.sort": 2, + "this.len": 2, + "}": 434, + "this.buf": 2, + "this.off": 1, + "getType": 10, + "String": 33, + "typeDescriptor": 1, + "return": 267, + "typeDescriptor.toCharArray": 1, + "Class": 10, + "c": 21, + "if": 116, + "c.isPrimitive": 2, + "Integer.TYPE": 2, + "else": 33, + "Void.TYPE": 3, + "Boolean.TYPE": 2, + "Byte.TYPE": 2, + "Character.TYPE": 2, + "Short.TYPE": 2, + "Double.TYPE": 2, + "Float.TYPE": 2, + "getDescriptor": 15, + "getObjectType": 1, + "name": 10, + "l": 5, + "name.length": 2, + "+": 83, + "name.getChars": 1, + "getArgumentTypes": 2, + "methodDescriptor": 2, + "methodDescriptor.toCharArray": 2, + "size": 16, + "while": 10, + "true": 21, + "car": 18, + "break": 4, + "args": 6, + ".len": 1, + "Method": 3, + "method": 2, + "classes": 2, + "method.getParameterTypes": 1, + "types": 3, + "classes.length": 2, + "for": 16, + "i": 54, + "-": 15, + "getReturnType": 2, + "methodDescriptor.indexOf": 1, + "method.getReturnType": 1, + "switch": 6, + "case": 56, + "//": 16, + "default": 6, + "getSort": 1, + "getDimensions": 3, + "getElementType": 2, + "getClassName": 1, + "StringBuffer": 14, + "b": 7, + ".getClassName": 1, + "b.append": 1, + "b.toString": 1, + ".replace": 2, + "getInternalName": 2, + "buf.toString": 4, + "getMethodDescriptor": 2, + "returnType": 1, + "argumentTypes": 2, + "buf.append": 21, + "<": 13, + "argumentTypes.length": 1, + ".getDescriptor": 1, + "returnType.getDescriptor": 1, + "void": 25, + "c.getName": 1, + "getConstructorDescriptor": 1, + "Constructor": 1, + "parameters": 4, + "c.getParameterTypes": 1, + "parameters.length": 2, + ".toString": 1, + "m": 1, + "m.getParameterTypes": 1, + "m.getReturnType": 1, + "d": 10, + "d.isPrimitive": 1, + "d.isArray": 1, + "d.getComponentType": 1, + "d.getName": 1, + "name.charAt": 1, + "getSize": 1, + "||": 8, + "getOpcode": 1, + "opcode": 17, + "Opcodes.IALOAD": 1, + "Opcodes.IASTORE": 1, + "boolean": 36, + "equals": 2, + "Object": 31, + "o": 12, + "this": 16, + "instanceof": 19, + "false": 12, + "t": 6, + "t.sort": 1, + "Type.OBJECT": 2, + "Type.ARRAY": 2, + "t.len": 1, + "j": 9, + "t.off": 1, + "end": 4, + "t.buf": 1, + "hashCode": 1, + "hc": 4, + "*": 2, + "toString": 1, + "clojure.lang": 1, + "java.lang.ref.Reference": 1, + "java.math.BigInteger": 1, + "java.util.Map": 3, + "java.util.concurrent.ConcurrentHashMap": 1, + "java.lang.ref.SoftReference": 1, + "java.lang.ref.ReferenceQueue": 1, + "Util": 1, + "equiv": 17, + "k1": 40, + "k2": 38, + "null": 80, + "Number": 9, + "&&": 6, + "Numbers.equal": 1, + "IPersistentCollection": 5, + "pcequiv": 2, + "k1.equals": 2, + "long": 5, + "double": 4, + "c1": 2, + "c2": 2, + ".equiv": 2, + "identical": 1, + "classOf": 1, + "x": 8, + "x.getClass": 1, + "compare": 1, + "Numbers.compare": 1, + "Comparable": 1, + ".compareTo": 1, + "hash": 3, + "o.hashCode": 2, + "hasheq": 1, + "Numbers.hasheq": 1, + "IHashEq": 2, + ".hasheq": 1, + "hashCombine": 1, + "seed": 5, + "//a": 1, + "la": 1, + "boost": 1, + "e3779b9": 1, + "<<": 1, + "isPrimitive": 1, + "isInteger": 1, + "Integer": 2, + "Long": 1, + "BigInt": 1, + "BigInteger": 1, + "ret1": 2, + "ret": 4, + "nil": 2, + "ISeq": 2, + "": 1, + "clearCache": 1, + "ReferenceQueue": 1, + "rq": 1, + "ConcurrentHashMap": 1, + "K": 2, + "Reference": 3, + "": 3, + "cache": 1, + "//cleanup": 1, + "any": 1, + "dead": 1, + "entries": 1, + "rq.poll": 2, + "Map.Entry": 1, + "e": 31, + "cache.entrySet": 1, + "val": 3, + "e.getValue": 1, + "val.get": 1, + "cache.remove": 1, + "e.getKey": 1, + "RuntimeException": 5, + "runtimeException": 2, + "s": 10, + "Throwable": 4, + "sneakyThrow": 1, + "throw": 9, + "NullPointerException": 3, + "Util.": 1, + "": 1, + "sneakyThrow0": 2, + "@SuppressWarnings": 1, + "": 1, + "extends": 10, + "throws": 26, + "T": 2, + "nokogiri.internals": 1, + "nokogiri.internals.NokogiriHelpers.getNokogiriClass": 1, + "nokogiri.internals.NokogiriHelpers.isNamespace": 1, + "nokogiri.internals.NokogiriHelpers.stringOrNil": 1, + "nokogiri.HtmlDocument": 1, + "nokogiri.NokogiriService": 1, + "nokogiri.XmlDocument": 1, + "org.apache.xerces.parsers.DOMParser": 1, + "org.apache.xerces.xni.Augmentations": 1, + "org.apache.xerces.xni.QName": 1, + "org.apache.xerces.xni.XMLAttributes": 1, + "org.apache.xerces.xni.XNIException": 1, + "org.apache.xerces.xni.parser.XMLDocumentFilter": 1, + "org.apache.xerces.xni.parser.XMLParserConfiguration": 1, + "org.cyberneko.html.HTMLConfiguration": 1, + "org.cyberneko.html.filters.DefaultFilter": 1, + "org.jruby.Ruby": 2, + "org.jruby.RubyClass": 2, + "org.jruby.runtime.ThreadContext": 1, + "org.jruby.runtime.builtin.IRubyObject": 2, + "org.w3c.dom.Document": 1, + "org.w3c.dom.NamedNodeMap": 1, + "org.w3c.dom.NodeList": 1, + "HtmlDomParserContext": 3, + "XmlDomParserContext": 1, + "Ruby": 43, + "runtime": 88, + "IRubyObject": 35, + "options": 4, + "super": 7, + "encoding": 2, + "@Override": 6, + "protected": 8, + "initErrorHandler": 1, + "options.strict": 1, + "errorHandler": 6, + "NokogiriStrictErrorHandler": 1, + "options.noError": 2, + "options.noWarning": 2, + "NokogiriNonStrictErrorHandler4NekoHtml": 1, + "initParser": 1, + "XMLParserConfiguration": 1, + "config": 2, + "HTMLConfiguration": 1, + "XMLDocumentFilter": 3, + "removeNSAttrsFilter": 2, + "RemoveNSAttrsFilter": 2, + "elementValidityCheckFilter": 3, + "ElementValidityCheckFilter": 3, + "//XMLDocumentFilter": 1, + "filters": 3, + "config.setErrorHandler": 1, + "this.errorHandler": 2, + "parser": 1, + "DOMParser": 1, + "setProperty": 4, + "java_encoding": 2, + "setFeature": 4, + "enableDocumentFragment": 1, + "XmlDocument": 8, + "getNewEmptyDocument": 1, + "ThreadContext": 2, + "context": 8, + "XmlDocument.rbNew": 1, + "getNokogiriClass": 1, + "context.getRuntime": 3, + "wrapDocument": 1, + "RubyClass": 92, + "klazz": 107, + "Document": 2, + "document": 5, + "HtmlDocument": 7, + "htmlDocument": 6, + "NokogiriService.HTML_DOCUMENT_ALLOCATOR.allocate": 1, + "htmlDocument.setDocumentNode": 1, + "ruby_encoding.isNil": 1, + "detected_encoding": 2, + "detected_encoding.isNil": 1, + "ruby_encoding": 3, + "charset": 2, + "tryGetCharsetFromHtml5MetaTag": 2, + "stringOrNil": 1, + "htmlDocument.setEncoding": 1, + "htmlDocument.setParsedEncoding": 1, + ".equalsIgnoreCase": 5, + "document.getDocumentElement": 2, + ".getNodeName": 4, + "NodeList": 2, + "list": 1, + ".getChildNodes": 2, + "list.getLength": 1, + "list.item": 2, + "headers": 1, + "headers.getLength": 1, + "headers.item": 2, + "NamedNodeMap": 1, + "nodeMap": 1, + ".getAttributes": 1, + "k": 5, + "nodeMap.getLength": 1, + "nodeMap.item": 2, + ".getNodeValue": 1, + "DefaultFilter": 2, + "startElement": 2, + "QName": 2, + "element": 3, + "XMLAttributes": 2, + "attrs": 4, + "Augmentations": 2, + "augs": 4, + "XNIException": 2, + "attrs.getLength": 1, + "isNamespace": 1, + "attrs.getQName": 1, + "attrs.removeAttributeAt": 1, + "element.uri": 1, + "super.startElement": 2, + "NokogiriErrorHandler": 2, + "element_names": 3, + "g": 1, + "r": 1, + "w": 1, + "y": 1, + "z": 1, + "isValid": 2, + "testee": 1, + "testee.toCharArray": 1, + "index": 4, + ".length": 1, + "testee.equals": 1, + "name.rawname": 2, + "errorHandler.getErrors": 1, + ".add": 1, + "Exception": 1, + "hudson.model": 1, + "hudson.ExtensionListView": 1, + "hudson.Functions": 1, + "hudson.Platform": 1, + "hudson.PluginManager": 1, + "hudson.cli.declarative.CLIResolver": 1, + "hudson.model.listeners.ItemListener": 1, + "hudson.slaves.ComputerListener": 1, + "hudson.util.CopyOnWriteList": 1, + "hudson.util.FormValidation": 1, + "jenkins.model.Jenkins": 1, + "org.jvnet.hudson.reactor.ReactorException": 1, + "org.kohsuke.stapler.QueryParameter": 1, + "org.kohsuke.stapler.Stapler": 1, + "org.kohsuke.stapler.StaplerRequest": 1, + "org.kohsuke.stapler.StaplerResponse": 1, + "javax.servlet.ServletContext": 1, + "javax.servlet.ServletException": 1, + "java.io.File": 1, + "java.io.IOException": 10, + "java.text.NumberFormat": 1, + "java.text.ParseException": 1, + "java.util.Collections": 2, + "java.util.List": 1, + "hudson.Util.fixEmpty": 1, + "Hudson": 5, + "Jenkins": 2, + "transient": 2, + "CopyOnWriteList": 4, + "": 2, + "itemListeners": 2, + "ExtensionListView.createCopyOnWriteList": 2, + "ItemListener.class": 1, + "": 2, + "computerListeners": 2, + "ComputerListener.class": 1, + "@CLIResolver": 1, + "getInstance": 2, + "Jenkins.getInstance": 2, + "File": 2, + "root": 6, + "ServletContext": 2, + "IOException": 8, + "InterruptedException": 2, + "ReactorException": 2, + "PluginManager": 1, + "pluginManager": 2, + "getJobListeners": 1, + "getComputerListeners": 1, + "Slave": 3, + "getSlave": 1, + "Node": 1, + "n": 3, + "getNode": 1, + "List": 3, + "": 2, + "getSlaves": 1, + "slaves": 3, + "setSlaves": 1, + "setNodes": 1, + "TopLevelItem": 3, + "getJob": 1, + "getItem": 1, + "getJobCaseInsensitive": 1, + "match": 2, + "Functions.toEmailSafeString": 2, + "item": 2, + "getItems": 1, + "item.getName": 1, + "synchronized": 1, + "doQuietDown": 2, + "StaplerResponse": 4, + "rsp": 6, + "ServletException": 3, + ".generateResponse": 2, + "doLogRss": 1, + "StaplerRequest": 4, + "req": 6, + "qs": 3, + "req.getQueryString": 1, + "rsp.sendRedirect2": 1, + "doFieldCheck": 3, + "fixEmpty": 8, + "req.getParameter": 4, + "FormValidation": 2, + "@QueryParameter": 4, + "value": 11, + "type": 3, + "errorText": 3, + "warningText": 3, + "FormValidation.error": 4, + "FormValidation.warning": 1, + "try": 26, + "type.equalsIgnoreCase": 2, + "NumberFormat.getInstance": 2, + ".parse": 2, + ".floatValue": 1, + "<=>": 1, + "0": 1, + "error": 1, + "Messages": 1, + "Hudson_NotAPositiveNumber": 1, + "equalsIgnoreCase": 1, + "number": 1, + "negative": 1, + "NumberFormat": 1, + "parse": 1, + "floatValue": 1, + "Messages.Hudson_NotANegativeNumber": 1, + "catch": 27, + "ParseException": 1, + "Messages.Hudson_NotANumber": 1, + "FormValidation.ok": 1, + "isWindows": 1, + "File.pathSeparatorChar": 1, + "isDarwin": 1, + "Platform.isDarwin": 1, + "adminCheck": 3, + "Stapler.getCurrentRequest": 1, + "Stapler.getCurrentResponse": 1, + "isAdmin": 4, + "rsp.sendError": 1, + "StaplerResponse.SC_FORBIDDEN": 1, + ".getACL": 1, + ".hasPermission": 1, + "ADMINISTER": 1, + "XSTREAM.alias": 1, + "Hudson.class": 1, + "MasterComputer": 1, + "Jenkins.MasterComputer": 1, + "CloudList": 3, + "Jenkins.CloudList": 1, + "h": 2, + "needed": 1, + "XStream": 1, + "deserialization": 1, + "nokogiri": 6, + "java.util.HashMap": 1, + "org.jruby.RubyArray": 1, + "org.jruby.RubyFixnum": 1, + "org.jruby.RubyModule": 1, + "org.jruby.runtime.ObjectAllocator": 1, + "org.jruby.runtime.load.BasicLibraryService": 1, + "NokogiriService": 1, + "implements": 3, + "BasicLibraryService": 1, + "nokogiriClassCacheGvarName": 1, + "Map": 1, + "": 2, + "nokogiriClassCache": 2, + "basicLoad": 1, + "ruby": 25, + "init": 2, + "createNokogiriClassCahce": 2, + "Collections.synchronizedMap": 1, + "HashMap": 1, + "nokogiriClassCache.put": 26, + "ruby.getClassFromPath": 26, + "RubyModule": 18, + "ruby.defineModule": 1, + "xmlModule": 7, + "nokogiri.defineModuleUnder": 3, + "xmlSaxModule": 3, + "xmlModule.defineModuleUnder": 1, + "htmlModule": 5, + "htmlSaxModule": 3, + "htmlModule.defineModuleUnder": 1, + "xsltModule": 3, + "createNokogiriModule": 2, + "createSyntaxErrors": 2, + "xmlNode": 5, + "createXmlModule": 2, + "createHtmlModule": 2, + "createDocuments": 2, + "createSaxModule": 2, + "createXsltModule": 2, + "encHandler": 1, + "nokogiri.defineClassUnder": 2, + "ruby.getObject": 13, + "ENCODING_HANDLER_ALLOCATOR": 2, + "encHandler.defineAnnotatedMethods": 1, + "EncodingHandler.class": 1, + "syntaxError": 2, + "ruby.getStandardError": 2, + ".getAllocator": 1, + "xmlSyntaxError": 4, + "xmlModule.defineClassUnder": 23, + "XML_SYNTAXERROR_ALLOCATOR": 2, + "xmlSyntaxError.defineAnnotatedMethods": 1, + "XmlSyntaxError.class": 1, + "node": 14, + "XML_NODE_ALLOCATOR": 2, + "node.defineAnnotatedMethods": 1, + "XmlNode.class": 1, + "attr": 1, + "XML_ATTR_ALLOCATOR": 2, + "attr.defineAnnotatedMethods": 1, + "XmlAttr.class": 1, + "attrDecl": 1, + "XML_ATTRIBUTE_DECL_ALLOCATOR": 2, + "attrDecl.defineAnnotatedMethods": 1, + "XmlAttributeDecl.class": 1, + "characterData": 3, + "comment": 1, + "XML_COMMENT_ALLOCATOR": 2, + "comment.defineAnnotatedMethods": 1, + "XmlComment.class": 1, + "text": 2, + "XML_TEXT_ALLOCATOR": 2, + "text.defineAnnotatedMethods": 1, + "XmlText.class": 1, + "cdata": 1, + "XML_CDATA_ALLOCATOR": 2, + "cdata.defineAnnotatedMethods": 1, + "XmlCdata.class": 1, + "dtd": 1, + "XML_DTD_ALLOCATOR": 2, + "dtd.defineAnnotatedMethods": 1, + "XmlDtd.class": 1, + "documentFragment": 1, + "XML_DOCUMENT_FRAGMENT_ALLOCATOR": 2, + "documentFragment.defineAnnotatedMethods": 1, + "XmlDocumentFragment.class": 1, + "XML_ELEMENT_ALLOCATOR": 2, + "element.defineAnnotatedMethods": 1, + "XmlElement.class": 1, + "elementContent": 1, + "XML_ELEMENT_CONTENT_ALLOCATOR": 2, + "elementContent.defineAnnotatedMethods": 1, + "XmlElementContent.class": 1, + "elementDecl": 1, + "XML_ELEMENT_DECL_ALLOCATOR": 2, + "elementDecl.defineAnnotatedMethods": 1, + "XmlElementDecl.class": 1, + "entityDecl": 1, + "XML_ENTITY_DECL_ALLOCATOR": 2, + "entityDecl.defineAnnotatedMethods": 1, + "XmlEntityDecl.class": 1, + "entityDecl.defineConstant": 6, + "RubyFixnum.newFixnum": 6, + "XmlEntityDecl.INTERNAL_GENERAL": 1, + "XmlEntityDecl.EXTERNAL_GENERAL_PARSED": 1, + "XmlEntityDecl.EXTERNAL_GENERAL_UNPARSED": 1, + "XmlEntityDecl.INTERNAL_PARAMETER": 1, + "XmlEntityDecl.EXTERNAL_PARAMETER": 1, + "XmlEntityDecl.INTERNAL_PREDEFINED": 1, + "entref": 1, + "XML_ENTITY_REFERENCE_ALLOCATOR": 2, + "entref.defineAnnotatedMethods": 1, + "XmlEntityReference.class": 1, + "namespace": 1, + "XML_NAMESPACE_ALLOCATOR": 2, + "namespace.defineAnnotatedMethods": 1, + "XmlNamespace.class": 1, + "nodeSet": 1, + "XML_NODESET_ALLOCATOR": 2, + "nodeSet.defineAnnotatedMethods": 1, + "XmlNodeSet.class": 1, + "pi": 1, + "XML_PROCESSING_INSTRUCTION_ALLOCATOR": 2, + "pi.defineAnnotatedMethods": 1, + "XmlProcessingInstruction.class": 1, + "reader": 1, + "XML_READER_ALLOCATOR": 2, + "reader.defineAnnotatedMethods": 1, + "XmlReader.class": 1, + "schema": 2, + "XML_SCHEMA_ALLOCATOR": 2, + "schema.defineAnnotatedMethods": 1, + "XmlSchema.class": 1, + "relaxng": 1, + "XML_RELAXNG_ALLOCATOR": 2, + "relaxng.defineAnnotatedMethods": 1, + "XmlRelaxng.class": 1, + "xpathContext": 1, + "XML_XPATHCONTEXT_ALLOCATOR": 2, + "xpathContext.defineAnnotatedMethods": 1, + "XmlXpathContext.class": 1, + "htmlElemDesc": 1, + "htmlModule.defineClassUnder": 3, + "HTML_ELEMENT_DESCRIPTION_ALLOCATOR": 2, + "htmlElemDesc.defineAnnotatedMethods": 1, + "HtmlElementDescription.class": 1, + "htmlEntityLookup": 1, + "HTML_ENTITY_LOOKUP_ALLOCATOR": 2, + "htmlEntityLookup.defineAnnotatedMethods": 1, + "HtmlEntityLookup.class": 1, + "xmlDocument": 5, + "XML_DOCUMENT_ALLOCATOR": 2, + "xmlDocument.defineAnnotatedMethods": 1, + "XmlDocument.class": 1, + "//RubyModule": 1, + "htmlDoc": 1, + "html.defineOrGetClassUnder": 1, + "HTML_DOCUMENT_ALLOCATOR": 2, + "htmlDocument.defineAnnotatedMethods": 1, + "HtmlDocument.class": 1, + "xmlSaxParserContext": 5, + "xmlSaxModule.defineClassUnder": 2, + "XML_SAXPARSER_CONTEXT_ALLOCATOR": 2, + "xmlSaxParserContext.defineAnnotatedMethods": 1, + "XmlSaxParserContext.class": 1, + "xmlSaxPushParser": 1, + "XML_SAXPUSHPARSER_ALLOCATOR": 2, + "xmlSaxPushParser.defineAnnotatedMethods": 1, + "XmlSaxPushParser.class": 1, + "htmlSaxParserContext": 4, + "htmlSaxModule.defineClassUnder": 1, + "HTML_SAXPARSER_CONTEXT_ALLOCATOR": 2, + "htmlSaxParserContext.defineAnnotatedMethods": 1, + "HtmlSaxParserContext.class": 1, + "stylesheet": 1, + "xsltModule.defineClassUnder": 1, + "XSLT_STYLESHEET_ALLOCATOR": 2, + "stylesheet.defineAnnotatedMethods": 1, + "XsltStylesheet.class": 2, + "xsltModule.defineAnnotatedMethod": 1, + "ObjectAllocator": 60, + "allocate": 30, + "EncodingHandler": 1, + "clone": 47, + "htmlDocument.clone": 1, + "clone.setMetaClass": 23, + "CloneNotSupportedException": 23, + "HtmlSaxParserContext": 5, + "htmlSaxParserContext.clone": 1, + "HtmlElementDescription": 1, + "HtmlEntityLookup": 1, + "XmlAttr": 5, + "xmlAttr": 3, + "xmlAttr.clone": 1, + "XmlCdata": 5, + "xmlCdata": 3, + "xmlCdata.clone": 1, + "XmlComment": 5, + "xmlComment": 3, + "xmlComment.clone": 1, + "xmlDocument.clone": 1, + "XmlDocumentFragment": 5, + "xmlDocumentFragment": 3, + "xmlDocumentFragment.clone": 1, + "XmlDtd": 5, + "xmlDtd": 3, + "xmlDtd.clone": 1, + "XmlElement": 5, + "xmlElement": 3, + "xmlElement.clone": 1, + "XmlElementDecl": 5, + "xmlElementDecl": 3, + "xmlElementDecl.clone": 1, + "XmlEntityReference": 5, + "xmlEntityRef": 3, + "xmlEntityRef.clone": 1, + "XmlNamespace": 5, + "xmlNamespace": 3, + "xmlNamespace.clone": 1, + "XmlNode": 5, + "xmlNode.clone": 1, + "XmlNodeSet": 5, + "xmlNodeSet": 5, + "xmlNodeSet.clone": 1, + "xmlNodeSet.setNodes": 1, + "RubyArray.newEmptyArray": 1, + "XmlProcessingInstruction": 5, + "xmlProcessingInstruction": 3, + "xmlProcessingInstruction.clone": 1, + "XmlReader": 5, + "xmlReader": 5, + "xmlReader.clone": 1, + "XmlAttributeDecl": 1, + "XmlEntityDecl": 1, + "runtime.newNotImplementedError": 1, + "XmlRelaxng": 5, + "xmlRelaxng": 3, + "xmlRelaxng.clone": 1, + "XmlSaxParserContext": 5, + "xmlSaxParserContext.clone": 1, + "XmlSaxPushParser": 1, + "XmlSchema": 5, + "xmlSchema": 3, + "xmlSchema.clone": 1, + "XmlSyntaxError": 5, + "xmlSyntaxError.clone": 1, + "XmlText": 6, + "xmlText": 3, + "xmlText.clone": 1, + "XmlXpathContext": 5, + "xmlXpathContext": 3, + "xmlXpathContext.clone": 1, + "XsltStylesheet": 4, + "xsltStylesheet": 3, + "xsltStylesheet.clone": 1, + "persons": 1, + "ProtocolBuffer": 2, + "registerAllExtensions": 1, + "com.google.protobuf.ExtensionRegistry": 2, + "registry": 1, + "interface": 1, + "PersonOrBuilder": 2, + "com.google.protobuf.MessageOrBuilder": 1, + "hasName": 5, + "java.lang.String": 15, + "getName": 3, + "com.google.protobuf.ByteString": 13, + "getNameBytes": 5, + "Person": 10, + "com.google.protobuf.GeneratedMessage": 1, + "com.google.protobuf.GeneratedMessage.Builder": 2, + "": 1, + "builder": 4, + "this.unknownFields": 4, + "builder.getUnknownFields": 1, + "noInit": 1, + "com.google.protobuf.UnknownFieldSet.getDefaultInstance": 1, + "defaultInstance": 4, + "getDefaultInstance": 2, + "getDefaultInstanceForType": 2, + "com.google.protobuf.UnknownFieldSet": 2, + "unknownFields": 3, + "@java.lang.Override": 4, + "getUnknownFields": 3, + "com.google.protobuf.CodedInputStream": 5, + "input": 18, + "com.google.protobuf.ExtensionRegistryLite": 8, + "extensionRegistry": 16, + "com.google.protobuf.InvalidProtocolBufferException": 9, + "initFields": 2, + "mutable_bitField0_": 1, + "com.google.protobuf.UnknownFieldSet.Builder": 1, + "com.google.protobuf.UnknownFieldSet.newBuilder": 1, + "done": 4, + "tag": 3, + "input.readTag": 1, + "parseUnknownField": 1, + "bitField0_": 15, + "|": 5, + "name_": 18, + "input.readBytes": 1, + "e.setUnfinishedMessage": 1, + "e.getMessage": 1, + ".setUnfinishedMessage": 1, + "finally": 2, + "unknownFields.build": 1, + "makeExtensionsImmutable": 1, + "com.google.protobuf.Descriptors.Descriptor": 4, + "persons.ProtocolBuffer.internal_static_persons_Person_descriptor": 3, + "com.google.protobuf.GeneratedMessage.FieldAccessorTable": 4, + "internalGetFieldAccessorTable": 2, + "persons.ProtocolBuffer.internal_static_persons_Person_fieldAccessorTable": 2, + ".ensureFieldAccessorsInitialized": 2, + "persons.ProtocolBuffer.Person.class": 2, + "persons.ProtocolBuffer.Person.Builder.class": 2, + "com.google.protobuf.Parser": 2, + "": 3, + "PARSER": 2, + "com.google.protobuf.AbstractParser": 1, + "parsePartialFrom": 1, + "getParserForType": 1, + "NAME_FIELD_NUMBER": 1, + "java.lang.Object": 7, + "&": 7, + "ref": 16, + "bs": 1, + "bs.toStringUtf8": 1, + "bs.isValidUtf8": 1, + "com.google.protobuf.ByteString.copyFromUtf8": 2, + "byte": 4, + "memoizedIsInitialized": 4, + "isInitialized": 5, + "writeTo": 1, + "com.google.protobuf.CodedOutputStream": 2, + "output": 2, + "getSerializedSize": 2, + "output.writeBytes": 1, + ".writeTo": 1, + "memoizedSerializedSize": 3, + ".computeBytesSize": 1, + ".getSerializedSize": 1, + "serialVersionUID": 1, + "L": 1, + "writeReplace": 1, + "java.io.ObjectStreamException": 1, + "super.writeReplace": 1, + "persons.ProtocolBuffer.Person": 22, + "parseFrom": 8, + "data": 8, + "PARSER.parseFrom": 8, + "java.io.InputStream": 4, + "parseDelimitedFrom": 2, + "PARSER.parseDelimitedFrom": 2, + "Builder": 20, + "newBuilder": 5, + "Builder.create": 1, + "newBuilderForType": 2, + "prototype": 2, + ".mergeFrom": 2, + "toBuilder": 1, + "com.google.protobuf.GeneratedMessage.BuilderParent": 2, + "parent": 4, + "": 1, + "persons.ProtocolBuffer.PersonOrBuilder": 1, + "maybeForceBuilderInitialization": 3, + "com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders": 1, + "create": 2, + "clear": 1, + "super.clear": 1, + "buildPartial": 3, + "getDescriptorForType": 1, + "persons.ProtocolBuffer.Person.getDefaultInstance": 2, + "build": 1, + "result": 5, + "result.isInitialized": 1, + "newUninitializedMessageException": 1, + "from_bitField0_": 2, + "to_bitField0_": 3, + "result.name_": 1, + "result.bitField0_": 1, + "onBuilt": 1, + "mergeFrom": 5, + "com.google.protobuf.Message": 1, + "other": 6, + "super.mergeFrom": 1, + "other.hasName": 1, + "other.name_": 1, + "onChanged": 4, + "this.mergeUnknownFields": 1, + "other.getUnknownFields": 1, + "parsedMessage": 5, + "PARSER.parsePartialFrom": 1, + "e.getUnfinishedMessage": 1, + ".toStringUtf8": 1, + "setName": 1, + "clearName": 1, + ".getName": 1, + "setNameBytes": 1, + "defaultInstance.initFields": 1, + "internal_static_persons_Person_descriptor": 3, + "internal_static_persons_Person_fieldAccessorTable": 2, + "com.google.protobuf.Descriptors.FileDescriptor": 5, + "descriptor": 3, + "descriptorData": 2, + "com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner": 2, + "assigner": 2, + "assignDescriptors": 1, + ".getMessageTypes": 1, + ".get": 1, + ".internalBuildGeneratedFileFrom": 1 + }, + "JavaScript": { + "function": 1210, + "(": 8513, + ")": 8521, + "{": 2736, + ";": 4052, + "//": 410, + "jshint": 1, + "_": 9, + "var": 910, + "Modal": 2, + "content": 5, + "options": 56, + "this.options": 6, + "this.": 2, + "element": 19, + ".delegate": 2, + ".proxy": 1, + "this.hide": 1, + "this": 577, + "}": 2712, + "Modal.prototype": 1, + "constructor": 8, + "toggle": 10, + "return": 944, + "[": 1459, + "this.isShown": 3, + "]": 1456, + "show": 10, + "that": 33, + "e": 663, + ".Event": 1, + "element.trigger": 1, + "if": 1230, + "||": 648, + "e.isDefaultPrevented": 2, + ".addClass": 1, + "true": 147, + "escape.call": 1, + "backdrop.call": 1, + "transition": 1, + ".support.transition": 1, + "&&": 1017, + "that.": 3, + "element.hasClass": 1, + "element.parent": 1, + ".length": 24, + "element.appendTo": 1, + "document.body": 8, + "//don": 1, + "in": 170, + "shown": 2, + "hide": 8, + "body": 22, + "modal": 4, + "-": 705, + "open": 2, + "fade": 4, + "hidden": 12, + "
": 4, + "class=": 5, + "static": 2, + "keyup.dismiss.modal": 2, + "object": 59, + "string": 41, + "click.modal.data": 1, + "api": 1, + "data": 145, + "target": 44, + "href": 9, + ".extend": 1, + "target.data": 1, + "this.data": 5, + "e.preventDefault": 1, + "target.modal": 1, + "option": 12, + "window.jQuery": 7, + "Animal": 12, + "Horse": 12, + "Snake": 12, + "sam": 4, + "tom": 4, + "__hasProp": 2, + "Object.prototype.hasOwnProperty": 6, + "__extends": 6, + "child": 17, + "parent": 15, + "for": 262, + "key": 85, + "__hasProp.call": 2, + "ctor": 6, + "this.constructor": 5, + "ctor.prototype": 3, + "parent.prototype": 6, + "child.prototype": 4, + "new": 86, + "child.__super__": 3, + "name": 161, + "this.name": 7, + "Animal.prototype.move": 2, + "meters": 4, + "alert": 11, + "+": 1135, + "Snake.__super__.constructor.apply": 2, + "arguments": 83, + "Snake.prototype.move": 2, + "Snake.__super__.move.call": 2, + "Horse.__super__.constructor.apply": 2, + "Horse.prototype.move": 2, + "Horse.__super__.move.call": 2, + "sam.move": 2, + "tom.move": 2, + ".call": 10, + ".hasOwnProperty": 2, + "Animal.name": 1, + "_super": 4, + "Snake.name": 1, + "Horse.name": 1, + "console.log": 3, + "util": 1, + "require": 9, + "net": 1, + "stream": 1, + "url": 23, + "EventEmitter": 3, + ".EventEmitter": 1, + "FreeList": 2, + ".FreeList": 1, + "HTTPParser": 2, + "process.binding": 1, + ".HTTPParser": 1, + "assert": 8, + ".ok": 1, + "END_OF_FILE": 3, + "debug": 15, + "process.env.NODE_DEBUG": 2, + "/http/.test": 1, + "x": 33, + "console.error": 3, + "else": 307, + "parserOnHeaders": 2, + "headers": 41, + "this.maxHeaderPairs": 2, + "<": 209, + "this._headers.length": 1, + "this._headers": 13, + "this._headers.concat": 1, + "this._url": 1, + "parserOnHeadersComplete": 2, + "info": 2, + "parser": 27, + "info.headers": 1, + "info.url": 1, + "parser._headers": 6, + "parser._url": 4, + "parser.incoming": 9, + "IncomingMessage": 4, + "parser.socket": 4, + "parser.incoming.httpVersionMajor": 1, + "info.versionMajor": 2, + "parser.incoming.httpVersionMinor": 1, + "info.versionMinor": 2, + "parser.incoming.httpVersion": 1, + "parser.incoming.url": 1, + "n": 874, + "headers.length": 2, + "parser.maxHeaderPairs": 4, + "Math.min": 5, + "i": 853, + "k": 302, + "v": 135, + "parser.incoming._addHeaderLine": 2, + "info.method": 2, + "parser.incoming.method": 1, + "parser.incoming.statusCode": 2, + "info.statusCode": 1, + "parser.incoming.upgrade": 4, + "info.upgrade": 2, + "skipBody": 3, + "false": 142, + "response": 3, + "to": 92, + "HEAD": 3, + "or": 38, + "CONNECT": 1, + "parser.onIncoming": 3, + "info.shouldKeepAlive": 1, + "parserOnBody": 2, + "b": 961, + "start": 20, + "len": 11, + "slice": 10, + "b.slice": 1, + "parser.incoming._paused": 2, + "parser.incoming._pendings.length": 2, + "parser.incoming._pendings.push": 2, + "parser.incoming._emitData": 1, + "parserOnMessageComplete": 2, + "parser.incoming.complete": 2, + "parser.incoming.readable": 1, + "parser.incoming._emitEnd": 1, + "parser.socket.readable": 1, + "parser.socket.resume": 1, + "parsers": 2, + "HTTPParser.REQUEST": 2, + "parser.onHeaders": 1, + "parser.onHeadersComplete": 1, + "parser.onBody": 1, + "parser.onMessageComplete": 1, + "exports.parsers": 1, + "CRLF": 13, + "STATUS_CODES": 2, + "exports.STATUS_CODES": 1, + "RFC": 16, + "obsoleted": 1, + "by": 12, + "connectionExpression": 1, + "/Connection/i": 1, + "transferEncodingExpression": 1, + "/Transfer": 1, + "Encoding/i": 1, + "closeExpression": 1, + "/close/i": 1, + "chunkExpression": 1, + "/chunk/i": 1, + "contentLengthExpression": 1, + "/Content": 1, + "Length/i": 1, + "dateExpression": 1, + "/Date/i": 1, + "expectExpression": 1, + "/Expect/i": 1, + "continueExpression": 1, + "/100": 2, + "continue/i": 1, + "dateCache": 5, + "utcDate": 2, + "d": 771, + "Date": 4, + "d.toUTCString": 1, + "setTimeout": 19, + "undefined": 328, + "d.getMilliseconds": 1, + "socket": 26, + "stream.Stream.call": 2, + "this.socket": 10, + "this.connection": 8, + "this.httpVersion": 1, + "null": 427, + "this.complete": 2, + "this.headers": 2, + "this.trailers": 2, + "this.readable": 1, + "this._paused": 3, + "this._pendings": 1, + "this._endEmitted": 3, + "this.url": 1, + "this.method": 2, + "this.statusCode": 3, + "this.client": 1, + "util.inherits": 7, + "stream.Stream": 2, + "exports.IncomingMessage": 1, + "IncomingMessage.prototype.destroy": 1, + "error": 20, + "this.socket.destroy": 3, + "IncomingMessage.prototype.setEncoding": 1, + "encoding": 26, + "StringDecoder": 2, + ".StringDecoder": 1, + "lazy": 1, + "load": 5, + "this._decoder": 2, + "IncomingMessage.prototype.pause": 1, + "this.socket.pause": 1, + "IncomingMessage.prototype.resume": 1, + "this.socket.resume": 1, + "this._emitPending": 1, + "IncomingMessage.prototype._emitPending": 1, + "callback": 23, + "this._pendings.length": 1, + "self": 17, + "process.nextTick": 1, + "while": 53, + "self._paused": 1, + "self._pendings.length": 2, + "chunk": 14, + "self._pendings.shift": 1, + "Buffer.isBuffer": 2, + "self._emitData": 1, + "self.readable": 1, + "self._emitEnd": 1, + "IncomingMessage.prototype._emitData": 1, + "this._decoder.write": 1, + "string.length": 1, + "this.emit": 5, + "IncomingMessage.prototype._emitEnd": 1, + "IncomingMessage.prototype._addHeaderLine": 1, + "field": 36, + "value": 98, + "dest": 12, + "field.toLowerCase": 1, + "switch": 30, + "case": 136, + ".push": 3, + "break": 111, + "default": 21, + "field.slice": 1, + "OutgoingMessage": 5, + "this.output": 3, + "this.outputEncodings": 2, + "this.writable": 1, + "this._last": 3, + "this.chunkedEncoding": 6, + "this.shouldKeepAlive": 4, + "this.useChunkedEncodingByDefault": 4, + "this.sendDate": 3, + "this._hasBody": 6, + "this._trailer": 5, + "this.finished": 4, + "exports.OutgoingMessage": 1, + "OutgoingMessage.prototype.destroy": 1, + "OutgoingMessage.prototype._send": 1, + "this._headerSent": 5, + "typeof": 132, + "this._header": 10, + "this.output.unshift": 1, + "this.outputEncodings.unshift": 1, + "this._writeRaw": 2, + "OutgoingMessage.prototype._writeRaw": 1, + "data.length": 3, + "this.connection._httpMessage": 3, + "this.connection.writable": 3, + "this.output.length": 5, + "this._buffer": 2, + "c": 775, + "this.output.shift": 2, + "this.outputEncodings.shift": 2, + "this.connection.write": 4, + "OutgoingMessage.prototype._buffer": 1, + "length": 48, + "this.output.push": 2, + "this.outputEncodings.push": 2, + "lastEncoding": 2, + "lastData": 2, + "data.constructor": 1, + "lastData.constructor": 1, + "OutgoingMessage.prototype._storeHeader": 1, + "firstLine": 2, + "sentConnectionHeader": 3, + "sentContentLengthHeader": 4, + "sentTransferEncodingHeader": 3, + "sentDateHeader": 3, + "sentExpect": 3, + "messageHeader": 7, + "store": 3, + "connectionExpression.test": 1, + "closeExpression.test": 1, + "self._last": 4, + "self.shouldKeepAlive": 4, + "transferEncodingExpression.test": 1, + "chunkExpression.test": 1, + "self.chunkedEncoding": 1, + "contentLengthExpression.test": 1, + "dateExpression.test": 1, + "expectExpression.test": 1, + "keys": 11, + "Object.keys": 5, + "isArray": 10, + "Array.isArray": 7, + "l": 312, + "keys.length": 5, + "j": 265, + "value.length": 1, + "shouldSendKeepAlive": 2, + "this.agent": 2, + "this._send": 8, + "OutgoingMessage.prototype.setHeader": 1, + "arguments.length": 18, + "throw": 27, + "Error": 16, + "name.toLowerCase": 6, + "this._headerNames": 5, + "OutgoingMessage.prototype.getHeader": 1, + "OutgoingMessage.prototype.removeHeader": 1, + "delete": 39, + "OutgoingMessage.prototype._renderHeaders": 1, + "OutgoingMessage.prototype.write": 1, + "this._implicitHeader": 2, + "TypeError": 2, + "chunk.length": 2, + "ret": 62, + "Buffer.byteLength": 2, + "len.toString": 2, + "OutgoingMessage.prototype.addTrailers": 1, + "OutgoingMessage.prototype.end": 1, + "hot": 3, + ".toString": 3, + "this.write": 1, + "Last": 2, + "chunk.": 1, + "this._finish": 2, + "OutgoingMessage.prototype._finish": 1, + "instanceof": 19, + "ServerResponse": 5, + "DTRACE_HTTP_SERVER_RESPONSE": 1, + "ClientRequest": 6, + "DTRACE_HTTP_CLIENT_REQUEST": 1, + "OutgoingMessage.prototype._flush": 1, + "this.socket.writable": 2, + "XXX": 1, + "Necessary": 1, + "this.socket.write": 1, + "req": 32, + "OutgoingMessage.call": 2, + "req.method": 5, + "req.httpVersionMajor": 2, + "req.httpVersionMinor": 2, + "exports.ServerResponse": 1, + "ServerResponse.prototype.statusCode": 1, + "onServerResponseClose": 3, + "this._httpMessage.emit": 2, + "ServerResponse.prototype.assignSocket": 1, + "socket._httpMessage": 9, + "socket.on": 2, + "this._flush": 1, + "ServerResponse.prototype.detachSocket": 1, + "socket.removeListener": 5, + "ServerResponse.prototype.writeContinue": 1, + "this._sent100": 2, + "ServerResponse.prototype._implicitHeader": 1, + "this.writeHead": 1, + "ServerResponse.prototype.writeHead": 1, + "statusCode": 7, + "reasonPhrase": 4, + "headerIndex": 4, + "obj": 40, + "this._renderHeaders": 3, + "obj.length": 1, + "obj.push": 1, + "statusLine": 2, + "statusCode.toString": 1, + "this._expect_continue": 1, + "this._storeHeader": 2, + "ServerResponse.prototype.writeHeader": 1, + "this.writeHead.apply": 1, + "Agent": 5, + "self.options": 2, + "self.requests": 6, + "self.sockets": 3, + "self.maxSockets": 1, + "self.options.maxSockets": 1, + "Agent.defaultMaxSockets": 2, + "self.on": 1, + "host": 29, + "port": 29, + "localAddress": 15, + ".shift": 1, + ".onSocket": 1, + "socket.destroy": 10, + "self.createConnection": 2, + "net.createConnection": 3, + "exports.Agent": 1, + "Agent.prototype.defaultPort": 1, + "Agent.prototype.addRequest": 1, + "this.sockets": 9, + "this.maxSockets": 1, + "req.onSocket": 1, + "this.createSocket": 2, + "this.requests": 5, + "Agent.prototype.createSocket": 1, + "util._extend": 1, + "options.port": 4, + "options.host": 4, + "options.localAddress": 3, + "s": 290, + "onFree": 3, + "self.emit": 9, + "s.on": 4, + "onClose": 3, + "err": 5, + "self.removeSocket": 2, + "onRemove": 3, + "s.removeListener": 3, + "Agent.prototype.removeSocket": 1, + "index": 5, + ".indexOf": 2, + ".splice": 5, + ".emit": 1, + "globalAgent": 3, + "exports.globalAgent": 1, + "cb": 16, + "self.agent": 3, + "options.agent": 3, + "defaultPort": 3, + "options.defaultPort": 1, + "options.hostname": 1, + "options.setHost": 1, + "setHost": 2, + "self.socketPath": 4, + "options.socketPath": 1, + "method": 30, + "self.method": 3, + "options.method": 2, + ".toUpperCase": 3, + "self.path": 3, + "options.path": 2, + "self.once": 2, + "options.headers": 7, + "self.setHeader": 1, + "this.getHeader": 2, + "hostHeader": 3, + "this.setHeader": 2, + "options.auth": 2, + "//basic": 1, + "auth": 1, + "Buffer": 1, + "self.useChunkedEncodingByDefault": 2, + "self._storeHeader": 2, + "self.getHeader": 1, + "self._renderHeaders": 1, + "options.createConnection": 4, + "self.onSocket": 3, + "self.agent.addRequest": 1, + "conn": 3, + "self._deferToConnect": 1, + "self._flush": 1, + "exports.ClientRequest": 1, + "ClientRequest.prototype._implicitHeader": 1, + "this.path": 1, + "ClientRequest.prototype.abort": 1, + "this._deferToConnect": 3, + "createHangUpError": 3, + "error.code": 1, + "freeParser": 9, + "parser.socket.onend": 1, + "parser.socket.ondata": 1, + "parser.socket.parser": 1, + "parsers.free": 1, + "req.parser": 1, + "socketCloseListener": 2, + "socket.parser": 3, + "req.emit": 8, + "req.res": 8, + "req.res.readable": 1, + "req.res.emit": 1, + "res": 14, + "req.res._emitPending": 1, + "res._emitEnd": 1, + "res.emit": 1, + "req._hadError": 3, + "parser.finish": 6, + "socketErrorListener": 2, + "err.message": 1, + "err.stack": 1, + "socketOnEnd": 1, + "this._httpMessage": 3, + "this.parser": 2, + "socketOnData": 1, + "end": 14, + "parser.execute": 2, + "bytesParsed": 4, + "socket.ondata": 3, + "socket.onend": 3, + "bodyHead": 4, + "d.slice": 2, + "eventName": 21, + "req.listeners": 1, + "req.upgradeOrConnect": 1, + "socket.emit": 1, + "parserOnIncomingClient": 1, + "shouldKeepAlive": 4, + "res.upgrade": 1, + "skip": 5, + "isHeadResponse": 2, + "res.statusCode": 1, + "Clear": 1, + "so": 8, + "we": 25, + "don": 5, + "continue": 18, + "ve": 3, + "been": 5, + "upgraded": 1, + "via": 2, + "WebSockets": 1, + "also": 5, + "shouldn": 2, + "AGENT": 2, + "socket.destroySoon": 2, + "keep": 1, + "alive": 1, + "close": 2, + "free": 1, + "number": 13, + "an": 12, + "important": 1, + "promisy": 1, + "thing": 2, + "all": 16, + "the": 107, + "onSocket": 3, + "self.socket.writable": 1, + "self.socket": 5, + ".apply": 7, + "arguments_": 2, + "self.socket.once": 1, + "ClientRequest.prototype.setTimeout": 1, + "msecs": 4, + "this.once": 2, + "emitTimeout": 4, + "this.socket.setTimeout": 1, + "this.socket.once": 1, + "this.setTimeout": 3, + "sock": 1, + "ClientRequest.prototype.setNoDelay": 1, + "ClientRequest.prototype.setSocketKeepAlive": 1, + "ClientRequest.prototype.clearTimeout": 1, + "exports.request": 2, + "url.parse": 1, + "options.protocol": 3, + "exports.get": 1, + "req.end": 1, + "ondrain": 3, + "httpSocketSetup": 2, + "Server": 6, + "requestListener": 6, + "net.Server.call": 1, + "allowHalfOpen": 1, + "this.addListener": 2, + "this.httpAllowHalfOpen": 1, + "connectionListener": 3, + "net.Server": 1, + "exports.Server": 1, + "exports.createServer": 1, + "outgoing": 2, + "incoming": 2, + "abortIncoming": 3, + "incoming.length": 2, + "incoming.shift": 2, + "serverSocketCloseListener": 3, + "socket.setTimeout": 1, + "*": 70, + "minute": 1, + "timeout": 2, + "socket.once": 1, + "parsers.alloc": 1, + "parser.reinitialize": 1, + "this.maxHeadersCount": 2, + "<<": 4, + "socket.addListener": 2, + "self.listeners": 2, + "req.socket": 1, + "self.httpAllowHalfOpen": 1, + "socket.writable": 2, + "socket.end": 2, + "outgoing.length": 2, + "._last": 1, + "socket._httpMessage._last": 1, + "incoming.push": 1, + "res.shouldKeepAlive": 1, + "DTRACE_HTTP_SERVER_REQUEST": 1, + "outgoing.push": 1, + "res.assignSocket": 1, + "res.on": 1, + "res.detachSocket": 1, + "res._last": 1, + "m": 76, + "outgoing.shift": 1, + "m.assignSocket": 1, + "req.headers": 2, + "continueExpression.test": 1, + "res._expect_continue": 1, + "res.writeContinue": 1, + "Not": 4, + "a": 1489, + "response.": 1, + "even": 3, + "exports._connectionListener": 1, + "Client": 6, + "this.host": 1, + "this.port": 1, + "maxSockets": 1, + "Client.prototype.request": 1, + "path": 5, + "self.host": 1, + "self.port": 1, + "c.on": 2, + "exports.Client": 1, + "module.deprecate": 2, + "exports.createClient": 1, + "cubes": 4, + "list": 21, + "math": 4, + "num": 23, + "opposite": 6, + "race": 4, + "square": 10, + "__slice": 2, + "Array.prototype.slice": 6, + "root": 5, + "Math.sqrt": 2, + "cube": 2, + "runners": 6, + "winner": 6, + "__slice.call": 2, + "print": 2, + "elvis": 4, + "_i": 10, + "_len": 6, + "_results": 6, + "list.length": 5, + "_results.push": 2, + "math.cube": 2, + ".slice": 6, + "A": 24, + "w": 110, + "ma": 3, + "c.isReady": 4, + "try": 44, + "s.documentElement.doScroll": 2, + "catch": 38, + "c.ready": 7, + "Qa": 1, + "b.src": 4, + "c.ajax": 1, + "async": 5, + "dataType": 6, + "c.globalEval": 1, + "b.text": 3, + "b.textContent": 2, + "b.innerHTML": 3, + "b.parentNode": 4, + "b.parentNode.removeChild": 2, + "X": 6, + "f": 666, + "a.length": 23, + "o": 322, + "c.isFunction": 9, + "d.call": 3, + "J": 5, + ".getTime": 3, + "Y": 3, + "Z": 6, + "na": 1, + ".type": 2, + "c.event.handle.apply": 1, + "oa": 1, + "r": 261, + "c.data": 12, + "a.liveFired": 4, + "i.live": 1, + "a.button": 2, + "a.type": 14, + "u": 304, + "i.live.slice": 1, + "u.length": 3, + "i.origType.replace": 1, + "O": 6, + "f.push": 5, + "i.selector": 3, + "u.splice": 1, + "a.target": 5, + ".closest": 4, + "a.currentTarget": 4, + "j.length": 2, + ".selector": 1, + ".elem": 1, + "i.preType": 2, + "a.relatedTarget": 2, + "d.push": 1, + "elem": 101, + "handleObj": 2, + "d.length": 8, + "j.elem": 2, + "a.data": 2, + "j.handleObj.data": 1, + "a.handleObj": 2, + "j.handleObj": 1, + "j.handleObj.origHandler.apply": 1, + "pa": 1, + "b.replace": 3, + "/": 290, + "./g": 2, + ".replace": 38, + "/g": 37, + "qa": 1, + "a.parentNode": 6, + "a.parentNode.nodeType": 2, + "ra": 1, + "b.each": 1, + "this.nodeName": 4, + ".nodeName": 2, + "f.events": 1, + "e.handle": 2, + "e.events": 2, + "c.event.add": 1, + ".data": 3, + "sa": 2, + ".ownerDocument": 5, + "ta.test": 1, + "c.support.checkClone": 2, + "ua.test": 1, + "c.fragments": 2, + "b.createDocumentFragment": 1, + "c.clean": 1, + "fragment": 27, + "cacheable": 2, + "K": 4, + "c.each": 2, + "va.concat.apply": 1, + "va.slice": 1, + "wa": 1, + "a.document": 3, + "a.nodeType": 27, + "a.defaultView": 2, + "a.parentWindow": 2, + "c.fn.init": 1, + "Ra": 2, + "A.jQuery": 3, + "Sa": 2, + "A.": 3, + "A.document": 1, + "T": 4, + "Ta": 1, + "<[\\w\\W]+>": 4, + "|": 206, + "#": 13, + "Ua": 1, + ".": 91, + "Va": 1, + "S/": 4, + "Wa": 2, + "u00A0": 2, + "Xa": 1, + "<(\\w+)\\s*\\/?>": 4, + "<\\/\\1>": 4, + "P": 4, + "navigator.userAgent": 3, + "xa": 3, + "Q": 6, + "L": 10, + "Object.prototype.toString": 7, + "aa": 1, + "ba": 3, + "Array.prototype.push": 4, + "R": 2, + "ya": 2, + "Array.prototype.indexOf": 4, + "c.fn": 2, + "c.prototype": 1, + "init": 7, + "this.context": 17, + "this.length": 40, + "s.body": 2, + "this.selector": 16, + "Ta.exec": 1, + "b.ownerDocument": 6, + "Xa.exec": 1, + "c.isPlainObject": 3, + "s.createElement": 10, + "c.fn.attr.call": 1, + "f.createElement": 1, + "a.cacheable": 1, + "a.fragment.cloneNode": 1, + "a.fragment": 1, + ".childNodes": 2, + "c.merge": 4, + "s.getElementById": 1, + "b.id": 1, + "T.find": 1, + "/.test": 19, + "s.getElementsByTagName": 2, + "b.jquery": 1, + ".find": 5, + "T.ready": 1, + "a.selector": 4, + "a.context": 2, + "c.makeArray": 3, + "selector": 40, + "jquery": 3, + "size": 6, + "toArray": 2, + "R.call": 2, + "get": 24, + "this.toArray": 3, + "this.slice": 5, + "pushStack": 4, + "c.isArray": 5, + "ba.apply": 1, + "f.prevObject": 1, + "f.context": 1, + "f.selector": 2, + "each": 17, + "ready": 31, + "c.bindReady": 1, + "a.call": 17, + "Q.push": 1, + "eq": 2, + "first": 10, + "this.eq": 4, + "last": 6, + "this.pushStack": 12, + "R.apply": 1, + ".join": 14, + "map": 7, + "c.map": 1, + "this.prevObject": 3, + "push": 11, + "sort": 4, + ".sort": 9, + "splice": 5, + "c.fn.init.prototype": 1, + "c.extend": 7, + "c.fn.extend": 4, + "noConflict": 4, + "isReady": 5, + "c.fn.triggerHandler": 1, + ".triggerHandler": 1, + "bindReady": 5, + "s.readyState": 2, + "s.addEventListener": 3, + "A.addEventListener": 1, + "s.attachEvent": 3, + "A.attachEvent": 1, + "A.frameElement": 1, + "isFunction": 12, + "isPlainObject": 4, + "a.setInterval": 2, + "a.constructor": 2, + "aa.call": 3, + "a.constructor.prototype": 2, + "isEmptyObject": 7, + "parseJSON": 4, + "c.trim": 3, + "a.replace": 7, + "@": 1, + "d*": 8, + "eE": 4, + "s*": 15, + "A.JSON": 1, + "A.JSON.parse": 2, + "Function": 3, + "c.error": 2, + "noop": 3, + "globalEval": 2, + "Va.test": 1, + "s.documentElement": 2, + "d.type": 2, + "c.support.scriptEval": 2, + "d.appendChild": 3, + "s.createTextNode": 2, + "d.text": 1, + "b.insertBefore": 3, + "b.firstChild": 5, + "b.removeChild": 3, + "nodeName": 20, + "a.nodeName": 12, + "a.nodeName.toUpperCase": 2, + "b.toUpperCase": 3, + "b.apply": 2, + "b.call": 4, + "trim": 5, + "makeArray": 3, + "ba.call": 1, + "inArray": 5, + "b.indexOf": 2, + "b.length": 12, + "merge": 2, + "grep": 6, + "f.length": 5, + "f.concat.apply": 1, + "guid": 5, + "proxy": 4, + "a.apply": 2, + "b.guid": 2, + "a.guid": 7, + "c.guid": 1, + "uaMatch": 3, + "a.toLowerCase": 4, + "webkit": 6, + "w.": 17, + "/.exec": 4, + "opera": 4, + ".*version": 4, + "msie": 4, + "/compatible/.test": 1, + "mozilla": 4, + ".*": 20, + "rv": 4, + "browser": 11, + "version": 10, + "c.uaMatch": 1, + "P.browser": 2, + "c.browser": 1, + "c.browser.version": 1, + "P.version": 1, + "c.browser.webkit": 1, + "c.browser.safari": 1, + "c.inArray": 2, + "ya.call": 1, + "s.removeEventListener": 1, + "s.detachEvent": 1, + "c.support": 2, + "d.style.display": 5, + "d.innerHTML": 2, + "d.getElementsByTagName": 6, + "e.length": 9, + "leadingWhitespace": 3, + "d.firstChild.nodeType": 1, + "tbody": 7, + "htmlSerialize": 3, + "style": 30, + "/red/.test": 1, + "j.getAttribute": 2, + "hrefNormalized": 3, + "opacity": 13, + "j.style.opacity": 1, + "cssFloat": 4, + "j.style.cssFloat": 1, + "checkOn": 4, + ".value": 1, + "optSelected": 3, + ".appendChild": 1, + ".selected": 1, + "parentNode": 10, + "d.removeChild": 1, + ".parentNode": 7, + "deleteExpando": 3, + "checkClone": 1, + "scriptEval": 1, + "noCloneEvent": 3, + "boxModel": 1, + "b.type": 4, + "b.appendChild": 1, + "a.insertBefore": 2, + "a.firstChild": 6, + "b.test": 1, + "c.support.deleteExpando": 2, + "a.removeChild": 2, + "d.attachEvent": 2, + "d.fireEvent": 1, + "c.support.noCloneEvent": 1, + "d.detachEvent": 1, + "d.cloneNode": 1, + ".fireEvent": 3, + "s.createDocumentFragment": 1, + "a.appendChild": 3, + "d.firstChild": 2, + "a.cloneNode": 3, + ".cloneNode": 4, + ".lastChild.checked": 2, + "k.style.width": 1, + "k.style.paddingLeft": 1, + "s.body.appendChild": 1, + "c.boxModel": 1, + "c.support.boxModel": 1, + "k.offsetWidth": 1, + "s.body.removeChild": 1, + ".style.display": 5, + "n.setAttribute": 1, + "c.support.submitBubbles": 1, + "c.support.changeBubbles": 1, + "c.props": 2, + "readonly": 3, + "maxlength": 2, + "cellspacing": 2, + "rowspan": 2, + "colspan": 2, + "tabindex": 4, + "usemap": 2, + "frameborder": 2, + "G": 11, + "Ya": 2, + "za": 3, + "cache": 45, + "expando": 14, + "noData": 3, + "embed": 3, + "applet": 2, + "c.noData": 2, + "a.nodeName.toLowerCase": 3, + "c.cache": 2, + "removeData": 8, + "c.isEmptyObject": 1, + "c.removeData": 2, + "c.expando": 2, + "a.removeAttribute": 3, + "this.each": 42, + "a.split": 4, + "this.triggerHandler": 6, + "this.trigger": 2, + ".each": 3, + "queue": 7, + "dequeue": 6, + "c.queue": 3, + "d.shift": 2, + "d.unshift": 2, + "f.call": 1, + "c.dequeue": 4, + "delay": 4, + "c.fx": 1, + "c.fx.speeds": 1, + "this.queue": 4, + "clearQueue": 2, + "Aa": 3, + "t": 436, + "ca": 6, + "Za": 2, + "r/g": 2, + "/href": 1, + "src": 7, + "style/": 1, + "ab": 1, + "button": 24, + "input": 25, + "/i": 22, + "bb": 2, + "select": 20, + "textarea": 8, + "area": 2, + "Ba": 3, + "/radio": 1, + "checkbox/": 1, + "attr": 13, + "c.attr": 4, + "removeAttr": 5, + "this.nodeType": 4, + "this.removeAttribute": 1, + "addClass": 2, + "r.addClass": 1, + "r.attr": 1, + ".split": 19, + "e.nodeType": 7, + "e.className": 14, + "j.indexOf": 1, + "removeClass": 2, + "n.removeClass": 1, + "n.attr": 1, + "j.replace": 2, + "toggleClass": 2, + "j.toggleClass": 1, + "j.attr": 1, + "i.hasClass": 1, + "this.className": 10, + "hasClass": 2, + "": 1, + "className": 4, + "replace": 8, + "indexOf": 5, + "val": 13, + "c.nodeName": 4, + "b.attributes.value": 1, + ".specified": 1, + "b.value": 4, + "b.selectedIndex": 2, + "b.options": 1, + "": 1, + "i=": 31, + "selected": 5, + "a=": 23, + "test": 21, + "type": 49, + "support": 13, + "getAttribute": 3, + "on": 37, + "o=": 13, + "n=": 10, + "r=": 18, + "nodeType=": 6, + "call": 9, + "checked=": 1, + "this.selected": 1, + ".val": 5, + "this.selectedIndex": 1, + "this.value": 4, + "attrFn": 2, + "css": 7, + "html": 10, + "text": 14, + "width": 32, + "height": 25, + "offset": 21, + "c.attrFn": 1, + "c.isXMLDoc": 1, + "a.test": 2, + "ab.test": 1, + "a.getAttributeNode": 7, + ".nodeValue": 1, + "b.specified": 2, + "bb.test": 2, + "cb.test": 1, + "a.href": 2, + "c.support.style": 1, + "a.style.cssText": 3, + "a.setAttribute": 7, + "c.support.hrefNormalized": 1, + "a.getAttribute": 11, + "c.style": 1, + "db": 1, + "handle": 15, + "click": 11, + "events": 18, + "altKey": 4, + "attrChange": 4, + "attrName": 4, + "bubbles": 4, + "cancelable": 4, + "charCode": 7, + "clientX": 6, + "clientY": 5, + "ctrlKey": 6, + "currentTarget": 4, + "detail": 3, + "eventPhase": 4, + "fromElement": 6, + "handler": 14, + "keyCode": 6, + "layerX": 3, + "layerY": 3, + "metaKey": 5, + "newValue": 3, + "offsetX": 4, + "offsetY": 4, + "originalTarget": 1, + "pageX": 4, + "pageY": 4, + "prevValue": 3, + "relatedNode": 4, + "relatedTarget": 6, + "screenX": 4, + "screenY": 4, + "shiftKey": 4, + "srcElement": 5, + "toElement": 5, + "view": 4, + "wheelDelta": 3, + "which": 8, + "mouseover": 12, + "mouseout": 12, + "form": 12, + "click.specialSubmit": 2, + "submit": 14, + "image": 5, + "keypress.specialSubmit": 2, + "password": 5, + ".specialSubmit": 2, + "radio": 17, + "checkbox": 14, + "multiple": 7, + "_change_data": 6, + "focusout": 11, + "change": 16, + "file": 5, + ".specialChange": 4, + "focusin": 9, + "bind": 3, + "one": 15, + "unload": 5, + "live": 8, + "lastToggle": 4, + "die": 3, + "hover": 3, + "mouseenter": 9, + "mouseleave": 9, + "focus": 7, + "blur": 8, + "resize": 3, + "scroll": 6, + "dblclick": 3, + "mousedown": 3, + "mouseup": 3, + "mousemove": 3, + "keydown": 4, + "keypress": 4, + "keyup": 3, + "onunload": 1, + "g": 441, + "h": 499, + "q": 34, + "h.nodeType": 4, + "p": 110, + "y": 101, + "S": 8, + "H": 8, + "M": 9, + "I": 7, + "f.exec": 2, + "p.push": 2, + "p.length": 10, + "r.exec": 1, + "n.relative": 5, + "ga": 2, + "p.shift": 4, + "n.match.ID.test": 2, + "k.find": 6, + "v.expr": 4, + "k.filter": 5, + "v.set": 5, + "expr": 2, + "p.pop": 4, + "set": 22, + "z": 21, + "h.parentNode": 3, + "D": 9, + "k.error": 2, + "j.call": 2, + ".nodeType": 9, + "E": 11, + "l.push": 2, + "l.push.apply": 1, + "k.uniqueSort": 5, + "B": 5, + "g.sort": 1, + "g.length": 2, + "g.splice": 2, + "k.matches": 1, + "n.order.length": 1, + "n.order": 1, + "n.leftMatch": 1, + ".exec": 2, + "q.splice": 1, + "y.substr": 1, + "y.length": 1, + "Syntax": 3, + "unrecognized": 3, + "expression": 4, + "ID": 8, + "NAME": 2, + "TAG": 2, + "u00c0": 2, + "uFFFF": 2, + "leftMatch": 2, + "attrMap": 2, + "attrHandle": 2, + "g.getAttribute": 1, + "relative": 4, + "W/.test": 1, + "h.toLowerCase": 2, + "": 1, + "previousSibling": 5, + "nth": 5, + "odd": 2, + "not": 26, + "reset": 2, + "contains": 8, + "only": 10, + "id": 38, + "class": 5, + "Array": 3, + "sourceIndex": 1, + "div": 28, + "script": 7, + "": 4, + "name=": 2, + "href=": 2, + "": 2, + "

": 2, + "

": 2, + ".TEST": 2, + "
": 3, + "CLASS": 1, + "HTML": 9, + "find": 7, + "filter": 10, + "nextSibling": 3, + "iframe": 3, + "": 1, + "": 1, + "
": 1, + "
": 1, + "": 4, + "
": 5, + "": 3, + "": 3, + "": 2, + "": 2, + "": 1, + "": 1, + "": 1, + "": 1, + "before": 8, + "after": 7, + "position": 7, + "absolute": 2, + "top": 12, + "left": 14, + "margin": 8, + "border": 7, + "px": 31, + "solid": 2, + "#000": 2, + "padding": 4, + "": 1, + "": 1, + "fixed": 1, + "marginTop": 3, + "marginLeft": 2, + "using": 5, + "borderTopWidth": 1, + "borderLeftWidth": 1, + "Left": 1, + "Top": 1, + "pageXOffset": 2, + "pageYOffset": 1, + "Height": 1, + "Width": 1, + "inner": 2, + "outer": 2, + "scrollTo": 1, + "CSS1Compat": 1, + "client": 3, + "window": 16, + "document": 26, + "window.document": 2, + "navigator": 3, + "window.navigator": 2, + "location": 2, + "window.location": 5, + "jQuery": 48, + "context": 48, + "The": 9, + "is": 67, + "actually": 2, + "just": 2, + "jQuery.fn.init": 2, + "rootjQuery": 8, + "Map": 4, + "over": 7, + "of": 28, + "overwrite": 4, + "_jQuery": 4, + "window.": 6, + "central": 2, + "reference": 5, + "simple": 3, + "way": 2, + "check": 8, + "strings": 8, + "both": 2, + "optimize": 3, + "quickExpr": 2, + "Check": 10, + "has": 9, + "non": 8, + "whitespace": 7, + "character": 3, + "it": 112, + "rnotwhite": 2, + "Used": 3, + "trimming": 2, + "trimLeft": 4, + "trimRight": 4, + "digits": 3, + "rdigit": 1, + "d/": 3, + "Match": 3, + "standalone": 2, + "tag": 2, + "rsingleTag": 2, + "JSON": 5, + "RegExp": 12, + "rvalidchars": 2, + "rvalidescape": 2, + "rvalidbraces": 2, + "Useragent": 2, + "rwebkit": 2, + "ropera": 2, + "rmsie": 2, + "rmozilla": 2, + "Keep": 2, + "UserAgent": 2, + "use": 10, + "with": 18, + "jQuery.browser": 4, + "userAgent": 3, + "For": 5, + "matching": 3, + "engine": 2, + "and": 42, + "browserMatch": 3, + "deferred": 25, + "used": 13, + "DOM": 21, + "readyList": 6, + "event": 31, + "DOMContentLoaded": 14, + "Save": 2, + "some": 2, + "core": 2, + "methods": 8, + "toString": 4, + "hasOwn": 2, + "String.prototype.trim": 3, + "Class": 2, + "pairs": 2, + "class2type": 3, + "jQuery.fn": 4, + "jQuery.prototype": 2, + "match": 30, + "doc": 4, + "Handle": 14, + "DOMElement": 2, + "selector.nodeType": 2, + "exists": 9, + "once": 4, + "finding": 2, + "Are": 2, + "dealing": 2, + "selector.charAt": 4, + "selector.length": 4, + "Assume": 2, + "are": 18, + "regex": 3, + "quickExpr.exec": 2, + "Verify": 3, + "no": 19, + "was": 6, + "specified": 4, + "#id": 3, + "HANDLE": 2, + "array": 7, + "context.ownerDocument": 2, + "If": 21, + "single": 2, + "passed": 5, + "clean": 3, + "like": 5, + "method.": 3, + "jQuery.fn.init.prototype": 2, + "jQuery.extend": 11, + "jQuery.fn.extend": 4, + "copy": 16, + "copyIsArray": 2, + "clone": 5, + "deep": 12, + "situation": 2, + "boolean": 8, + "when": 20, + "something": 3, + "possible": 3, + "jQuery.isFunction": 6, + "extend": 13, + "itself": 4, + "argument": 2, + "Only": 5, + "deal": 2, + "null/undefined": 2, + "values": 10, + "Extend": 2, + "base": 2, + "Prevent": 2, + "never": 2, + "ending": 2, + "loop": 7, + "Recurse": 2, + "bring": 2, + "Return": 2, + "modified": 3, + "Is": 2, + "be": 12, + "Set": 4, + "occurs.": 2, + "counter": 2, + "track": 2, + "how": 2, + "many": 3, + "items": 2, + "wait": 12, + "fires.": 2, + "See": 9, + "#6781": 2, + "readyWait": 6, + "Hold": 2, + "release": 2, + "holdReady": 3, + "hold": 6, + "jQuery.readyWait": 6, + "jQuery.ready": 16, + "Either": 2, + "released": 2, + "DOMready/load": 2, + "yet": 2, + "jQuery.isReady": 6, + "Make": 17, + "sure": 18, + "at": 58, + "least": 4, + "IE": 28, + "gets": 6, + "little": 4, + "overzealous": 4, + "ticket": 4, + "#5443": 4, + "Remember": 2, + "normal": 2, + "Ready": 2, + "fired": 12, + "decrement": 2, + "need": 10, + "there": 6, + "functions": 6, + "bound": 8, + "execute": 4, + "readyList.resolveWith": 1, + "Trigger": 2, + "any": 12, + "jQuery.fn.trigger": 2, + ".trigger": 3, + ".unbind": 4, + "jQuery._Deferred": 3, + "Catch": 2, + "cases": 4, + "where": 2, + ".ready": 2, + "called": 2, + "already": 6, + "occurred.": 2, + "document.readyState": 4, + "asynchronously": 2, + "allow": 6, + "scripts": 2, + "opportunity": 2, + "Mozilla": 2, + "Opera": 2, + "nightlies": 3, + "currently": 4, + "document.addEventListener": 6, + "Use": 7, + "handy": 2, + "fallback": 4, + "window.onload": 4, + "will": 7, + "always": 6, + "work": 6, + "window.addEventListener": 2, + "model": 14, + "document.attachEvent": 6, + "ensure": 2, + "firing": 16, + "onload": 2, + "maybe": 2, + "late": 2, + "but": 4, + "safe": 3, + "iframes": 2, + "window.attachEvent": 2, + "frame": 23, + "continually": 2, + "see": 6, + "toplevel": 7, + "window.frameElement": 2, + "document.documentElement.doScroll": 4, + "doScrollCheck": 6, + "test/unit/core.js": 2, + "details": 3, + "concerning": 2, + "isFunction.": 2, + "Since": 3, + "aren": 5, + "pass": 7, + "through": 3, + "as": 11, + "well": 2, + "jQuery.type": 4, + "obj.nodeType": 2, + "jQuery.isWindow": 2, + "own": 4, + "property": 15, + "must": 4, + "Object": 4, + "obj.constructor": 2, + "hasOwn.call": 6, + "obj.constructor.prototype": 2, + "Own": 2, + "properties": 7, + "enumerated": 2, + "firstly": 2, + "speed": 4, + "up": 4, + "then": 8, + "own.": 2, + "msg": 4, + "leading/trailing": 2, + "removed": 3, + "can": 10, + "breaking": 1, + "spaces": 3, + "rnotwhite.test": 2, + "xA0": 7, + "document.removeEventListener": 2, + "document.detachEvent": 2, + "trick": 2, + "Diego": 2, + "Perini": 2, + "http": 6, + "//javascript.nwbox.com/IEContentLoaded/": 2, + "waiting": 2, + "Promise": 1, + "promiseMethods": 3, + "Static": 1, + "sliceDeferred": 1, + "Create": 1, + "callbacks": 10, + "_Deferred": 4, + "stored": 4, + "args": 31, + "avoid": 5, + "doing": 3, + "flag": 1, + "know": 3, + "cancelled": 5, + "done": 10, + "f1": 1, + "f2": 1, + "...": 1, + "_fired": 5, + "args.length": 3, + "deferred.done.apply": 2, + "callbacks.push": 1, + "deferred.resolveWith": 5, + "resolve": 7, + "given": 3, + "resolveWith": 4, + "make": 2, + "available": 1, + "#8421": 1, + "callbacks.shift": 1, + "finally": 3, + "Has": 1, + "resolved": 1, + "isResolved": 3, + "Cancel": 1, + "cancel": 6, + "Full": 1, + "fledged": 1, + "two": 1, + "Deferred": 5, + "func": 3, + "failDeferred": 1, + "promise": 14, + "Add": 4, + "errorDeferred": 1, + "doneCallbacks": 2, + "failCallbacks": 2, + "deferred.done": 2, + ".fail": 2, + ".fail.apply": 1, + "fail": 10, + "failDeferred.done": 1, + "rejectWith": 2, + "failDeferred.resolveWith": 1, + "reject": 4, + "failDeferred.resolve": 1, + "isRejected": 2, + "failDeferred.isResolved": 1, + "pipe": 2, + "fnDone": 2, + "fnFail": 2, + "jQuery.Deferred": 1, + "newDefer": 3, + "jQuery.each": 2, + "fn": 14, + "action": 3, + "returned": 4, + "fn.apply": 1, + "returned.promise": 2, + ".then": 3, + "newDefer.resolve": 1, + "newDefer.reject": 1, + ".promise": 5, + "Get": 4, + "provided": 1, + "aspect": 1, + "added": 1, + "promiseMethods.length": 1, + "failDeferred.cancel": 1, + "deferred.cancel": 2, + "Unexpose": 1, + "Call": 1, + "func.call": 1, + "helper": 1, + "firstParam": 6, + "count": 4, + "<=>": 1, + "1": 97, + "resolveFunc": 2, + "sliceDeferred.call": 2, + "Strange": 1, + "bug": 3, + "FF4": 1, + "Values": 1, + "changed": 3, + "onto": 2, + "sometimes": 1, + "outside": 2, + ".when": 1, + "Cloning": 2, + "into": 2, + "fresh": 1, + "solves": 1, + "issue": 1, + "deferred.reject": 1, + "deferred.promise": 1, + "jQuery.support": 1, + "document.createElement": 26, + "documentElement": 2, + "document.documentElement": 2, + "opt": 2, + "marginDiv": 5, + "bodyStyle": 1, + "tds": 6, + "isSupported": 7, + "Preliminary": 1, + "tests": 48, + "div.setAttribute": 1, + "div.innerHTML": 7, + "div.getElementsByTagName": 6, + "Can": 2, + "automatically": 2, + "inserted": 1, + "insert": 1, + "them": 3, + "empty": 3, + "tables": 1, + "link": 2, + "elements": 9, + "serialized": 3, + "correctly": 1, + "innerHTML": 1, + "This": 3, + "requires": 1, + "wrapper": 1, + "information": 5, + "from": 7, + "uses": 3, + ".cssText": 2, + "instead": 6, + "/top/.test": 2, + "URLs": 1, + "optgroup": 5, + "opt.selected": 1, + "Test": 3, + "setAttribute": 1, + "camelCase": 3, + "class.": 1, + "works": 1, + "attrFixes": 1, + "get/setAttribute": 1, + "ie6/7": 1, + "getSetAttribute": 3, + "div.className": 1, + "Will": 2, + "defined": 3, + "later": 1, + "submitBubbles": 3, + "changeBubbles": 3, + "focusinBubbles": 2, + "inlineBlockNeedsLayout": 3, + "shrinkWrapBlocks": 2, + "reliableMarginRight": 2, + "checked": 4, + "status": 3, + "properly": 2, + "cloned": 1, + "input.checked": 1, + "support.noCloneChecked": 1, + "input.cloneNode": 1, + ".checked": 2, + "inside": 3, + "disabled": 11, + "selects": 1, + "Fails": 2, + "Internet": 1, + "Explorer": 1, + "div.test": 1, + "support.deleteExpando": 1, + "div.addEventListener": 1, + "div.attachEvent": 2, + "div.fireEvent": 1, + "node": 23, + "being": 2, + "appended": 2, + "input.value": 5, + "input.setAttribute": 5, + "support.radioValue": 2, + "div.appendChild": 4, + "document.createDocumentFragment": 3, + "fragment.appendChild": 2, + "div.firstChild": 3, + "WebKit": 9, + "doesn": 2, + "inline": 3, + "display": 7, + "none": 4, + "GC": 2, + "references": 1, + "across": 1, + "JS": 7, + "boundary": 1, + "isNode": 11, + "elem.nodeType": 8, + "nodes": 14, + "global": 5, + "attached": 1, + "directly": 2, + "occur": 1, + "jQuery.cache": 3, + "defining": 1, + "objects": 7, + "its": 2, + "allows": 1, + "code": 2, + "shortcut": 1, + "same": 1, + "jQuery.expando": 12, + "Avoid": 1, + "more": 6, + "than": 3, + "trying": 1, + "pvt": 8, + "internalKey": 12, + "getByName": 3, + "unique": 2, + "since": 1, + "their": 3, + "ends": 1, + "jQuery.uuid": 1, + "TODO": 2, + "hack": 2, + "ONLY.": 2, + "Avoids": 2, + "exposing": 2, + "metadata": 2, + "plain": 2, + "JSON.stringify": 4, + ".toJSON": 4, + "jQuery.noop": 2, + "An": 1, + "jQuery.data": 15, + "key/value": 1, + "pair": 1, + "shallow": 1, + "copied": 1, + "existing": 1, + "thisCache": 15, + "Internal": 1, + "separate": 1, + "destroy": 1, + "unless": 2, + "internal": 8, + "had": 1, + "isEmptyDataObject": 3, + "internalCache": 3, + "Browsers": 1, + "deletion": 1, + "refuse": 1, + "expandos": 2, + "other": 3, + "browsers": 2, + "faster": 1, + "iterating": 1, + "persist": 1, + "existed": 1, + "Otherwise": 2, + "eliminate": 2, + "lookups": 2, + "entries": 2, + "longer": 2, + "exist": 2, + "does": 9, + "us": 2, + "nor": 2, + "have": 6, + "removeAttribute": 3, + "Document": 2, + "these": 2, + "jQuery.support.deleteExpando": 3, + "elem.removeAttribute": 6, + "only.": 2, + "_data": 3, + "determining": 3, + "acceptData": 3, + "elem.nodeName": 2, + "jQuery.noData": 2, + "elem.nodeName.toLowerCase": 2, + "elem.getAttribute": 7, + ".attributes": 2, + "attr.length": 2, + ".name": 3, + "name.indexOf": 2, + "jQuery.camelCase": 6, + "name.substring": 2, + "dataAttr": 6, + "parts": 28, + "key.split": 2, + "Try": 4, + "fetch": 4, + "internally": 5, + "jQuery.removeData": 2, + "nothing": 2, + "found": 10, + "HTML5": 3, + "attribute": 5, + "key.replace": 2, + "rmultiDash": 3, + ".toLowerCase": 7, + "jQuery.isNaN": 1, + "parseFloat": 30, + "rbrace.test": 2, + "jQuery.parseJSON": 2, + "isn": 2, + "option.selected": 2, + "jQuery.support.optDisabled": 2, + "option.disabled": 2, + "option.getAttribute": 2, + "option.parentNode.disabled": 2, + "jQuery.nodeName": 3, + "option.parentNode": 2, + "specific": 2, + "We": 6, + "get/set": 2, + "attributes": 14, + "comment": 3, + "nType": 8, + "jQuery.attrFn": 2, + "Fallback": 2, + "prop": 24, + "supported": 2, + "jQuery.prop": 2, + "hooks": 14, + "notxml": 8, + "jQuery.isXMLDoc": 2, + "Normalize": 1, + "needed": 2, + "jQuery.attrFix": 2, + "jQuery.attrHooks": 2, + "boolHook": 3, + "rboolean.test": 4, + "value.toLowerCase": 2, + "formHook": 3, + "forms": 1, + "certain": 2, + "characters": 6, + "rinvalidChar.test": 1, + "jQuery.removeAttr": 2, + "hooks.set": 2, + "elem.setAttribute": 2, + "hooks.get": 2, + "Non": 3, + "existent": 2, + "normalize": 2, + "propName": 8, + "jQuery.support.getSetAttribute": 1, + "jQuery.attr": 2, + "elem.removeAttributeNode": 1, + "elem.getAttributeNode": 1, + "corresponding": 2, + "jQuery.propFix": 2, + "attrHooks": 3, + "tabIndex": 4, + "readOnly": 2, + "htmlFor": 2, + "maxLength": 2, + "cellSpacing": 2, + "cellPadding": 2, + "rowSpan": 2, + "colSpan": 2, + "useMap": 2, + "frameBorder": 2, + "contentEditable": 2, + "auto": 3, + "&": 13, + "getData": 3, + "setData": 3, + "changeData": 3, + "bubbling": 1, + "live.": 2, + "hasDuplicate": 1, + "baseHasDuplicate": 2, + "rBackslash": 1, + "rNonWord": 1, + "W/": 2, + "Sizzle": 1, + "results": 4, + "seed": 1, + "origContext": 1, + "context.nodeType": 2, + "checkSet": 1, + "extra": 1, + "cur": 6, + "pop": 1, + "prune": 1, + "contextXML": 1, + "Sizzle.isXML": 1, + "soFar": 1, + "Reset": 1, + "cy": 4, + "f.isWindow": 2, + "cv": 2, + "cj": 4, + ".appendTo": 2, + "b.css": 1, + "b.remove": 1, + "ck": 5, + "c.createElement": 12, + "ck.frameBorder": 1, + "ck.width": 1, + "ck.height": 1, + "c.body.appendChild": 1, + "cl": 3, + "ck.createElement": 1, + "ck.contentWindow": 1, + "ck.contentDocument": 1, + ".document": 1, + "cl.write": 1, + "cl.createElement": 1, + "cl.body.appendChild": 1, + "f.css": 24, + "c.body.removeChild": 1, + "cu": 18, + "f.each": 21, + "cp.concat.apply": 1, + "cp.slice": 1, + "ct": 34, + "cq": 3, + "cs": 3, + "f.now": 2, + "ci": 29, + "a.ActiveXObject": 3, + "ch": 58, + "a.XMLHttpRequest": 1, + "a.dataFilter": 2, + "a.dataType": 1, + "a.dataTypes": 2, + "a.converters": 3, + "o.split": 1, + "f.error": 4, + "m.replace": 1, + "a.contents": 1, + "a.responseFields": 1, + "f.shift": 1, + "a.mimeType": 1, + "c.getResponseHeader": 1, + ".test": 1, + "f.unshift": 2, + "b_": 4, + "f.isArray": 8, + "bF.test": 1, + "c.dataTypes": 1, + "h.length": 3, + "bU": 4, + "c.dataTypes.unshift": 1, + "bZ": 3, + "f.isFunction": 21, + "b.toLowerCase": 3, + "bQ": 3, + "h.substr": 1, + "bD": 3, + "bx": 2, + "a.offsetWidth": 6, + "a.offsetHeight": 2, + "bn": 2, + "f.ajax": 3, + "f.globalEval": 2, + "bf": 6, + "bm": 3, + "f.nodeName": 16, + "bl": 3, + "a.getElementsByTagName": 9, + "f.grep": 3, + "a.defaultChecked": 1, + "a.checked": 4, + "bk": 5, + "a.querySelectorAll": 1, + "bj": 3, + "b.nodeType": 6, + "b.clearAttributes": 2, + "b.mergeAttributes": 2, + "b.nodeName.toLowerCase": 1, + "b.outerHTML": 1, + "a.outerHTML": 1, + "b.selected": 1, + "a.defaultSelected": 1, + "b.defaultValue": 1, + "a.defaultValue": 1, + "b.defaultChecked": 1, + "b.checked": 1, + "a.value": 8, + "b.removeAttribute": 3, + "f.expando": 23, + "bi": 27, + "f.hasData": 2, + "f.data": 25, + "d.events": 1, + "f.extend": 23, + "": 1, + "bh": 1, + "table": 6, + "getElementsByTagName": 1, + "0": 220, + "appendChild": 1, + "ownerDocument": 9, + "createElement": 3, + "b=": 25, + "e=": 21, + "nodeType": 1, + "d=": 15, + "W": 3, + "N": 2, + "f._data": 15, + "r.live": 1, + "a.target.disabled": 1, + "a.namespace": 1, + "a.namespace.split": 1, + "r.live.slice": 1, + "s.length": 2, + "g.origType.replace": 1, + "q.push": 1, + "g.selector": 3, + "s.splice": 1, + "m.selector": 1, + "n.test": 2, + "g.namespace": 1, + "m.elem.disabled": 1, + "m.elem": 1, + "g.preType": 3, + "f.contains": 5, + "level": 3, + "m.level": 1, + "": 1, + "e.elem": 2, + "e.handleObj.data": 1, + "e.handleObj": 1, + "e.handleObj.origHandler.apply": 1, + "a.isPropagationStopped": 1, + "e.level": 1, + "a.isImmediatePropagationStopped": 1, + "e.type": 6, + "e.originalEvent": 1, + "e.liveFired": 1, + "f.event.handle.call": 1, + ".preventDefault": 1, + "F": 8, + "f.removeData": 4, + "i.resolve": 1, + "c.replace": 4, + "f.isNaN": 3, + "i.test": 1, + "f.parseJSON": 2, + "a.navigator": 1, + "a.location": 1, + "e.isReady": 1, + "c.documentElement.doScroll": 2, + "e.ready": 6, + "e.fn.init": 1, + "a.jQuery": 2, + "a.": 2, + "d.userAgent": 1, + "C": 4, + "e.fn": 2, + "e.prototype": 1, + "c.body": 4, + "a.charAt": 2, + "i.exec": 1, + "d.ownerDocument": 1, + "n.exec": 1, + "e.isPlainObject": 1, + "e.fn.attr.call": 1, + "k.createElement": 1, + "e.buildFragment": 1, + "j.cacheable": 1, + "e.clone": 1, + "j.fragment": 2, + "e.merge": 3, + "c.getElementById": 1, + "h.id": 1, + "f.find": 2, + "d.jquery": 1, + "e.isFunction": 5, + "f.ready": 1, + "e.makeArray": 1, + "D.call": 4, + "e.isArray": 2, + "C.apply": 1, + "d.prevObject": 1, + "d.context": 2, + "d.selector": 2, + "e.each": 2, + "e.bindReady": 1, + "y.done": 1, + "D.apply": 1, + "e.map": 1, + "e.fn.init.prototype": 1, + "e.extend": 2, + "e.fn.extend": 1, + "": 1, + "f=": 13, + "g=": 15, + "h=": 19, + "jQuery=": 2, + "isReady=": 1, + "y.resolveWith": 1, + "e.fn.trigger": 1, + "e._Deferred": 1, + "c.readyState": 2, + "c.addEventListener": 4, + "a.addEventListener": 4, + "c.attachEvent": 3, + "a.attachEvent": 6, + "a.frameElement": 1, + "isWindow": 2, + "isNaN": 6, + "m.test": 1, + "String": 2, + "A.call": 1, + "e.isWindow": 2, + "B.call": 3, + "e.trim": 1, + "a.JSON": 1, + "a.JSON.parse": 2, + "o.test": 1, + "e.error": 2, + "parseXML": 1, + "a.DOMParser": 1, + "DOMParser": 1, + "d.parseFromString": 1, + "ActiveXObject": 1, + "c.async": 4, + "c.loadXML": 1, + "c.documentElement": 4, + "d.nodeName": 4, + "j.test": 3, + "a.execScript": 1, + "a.eval.call": 1, + "c.apply": 2, + "c.call": 3, + "E.call": 1, + "C.call": 1, + "F.call": 1, + "c.length": 8, + "": 1, + "j=": 14, + "k=": 11, + "h.concat.apply": 1, + "f.concat": 1, + "g.guid": 3, + "e.guid": 3, + "access": 2, + "e.access": 1, + "now": 5, + "s.exec": 1, + "t.exec": 1, + "u.exec": 1, + "a.indexOf": 2, + "v.exec": 1, + "sub": 4, + "a.fn.init": 2, + "a.superclass": 1, + "a.fn": 2, + "a.prototype": 1, + "a.fn.constructor": 1, + "a.sub": 1, + "this.sub": 2, + "e.fn.init.call": 1, + "a.fn.init.prototype": 1, + "e.uaMatch": 1, + "x.browser": 2, + "e.browser": 1, + "e.browser.version": 1, + "x.version": 1, + "e.browser.webkit": 1, + "e.browser.safari": 1, + "c.removeEventListener": 2, + "c.detachEvent": 1, + "": 1, + "c=": 24, + "shift": 1, + "apply": 8, + "h.call": 2, + "g.resolveWith": 3, + "<=1&&a&&f.isFunction(a.promise)?a:f.Deferred();if(d>": 1, + "g.reject": 1, + "g.promise": 1, + "f.support": 2, + "a.innerHTML": 7, + "f.appendChild": 1, + "a.firstChild.nodeType": 2, + "e.getAttribute": 2, + "e.style.opacity": 1, + "e.style.cssFloat": 1, + "h.value": 3, + "g.selected": 1, + "a.className": 1, + "h.checked": 2, + "j.noCloneChecked": 1, + "h.cloneNode": 1, + "f.disabled": 1, + "j.optDisabled": 1, + "g.disabled": 1, + "j.deleteExpando": 1, + "a.fireEvent": 1, + "j.noCloneEvent": 1, + "a.detachEvent": 1, + "h.setAttribute": 2, + "j.radioValue": 1, + "c.createDocumentFragment": 1, + "k.appendChild": 1, + "j.checkClone": 1, + "k.cloneNode": 1, + "a.style.width": 1, + "a.style.paddingLeft": 1, + "visibility": 3, + "background": 56, + "l.style": 1, + "l.appendChild": 1, + "j.appendChecked": 1, + "j.boxModel": 1, + "a.style": 8, + "a.style.display": 3, + "a.style.zoom": 1, + "j.inlineBlockNeedsLayout": 1, + "j.shrinkWrapBlocks": 1, + ".offsetHeight": 4, + "j.reliableHiddenOffsets": 1, + "c.defaultView": 2, + "c.defaultView.getComputedStyle": 3, + "i.style.width": 1, + "i.style.marginRight": 1, + "j.reliableMarginRight": 1, + "parseInt": 12, + "marginRight": 2, + ".marginRight": 2, + "l.innerHTML": 1, + "f.boxModel": 1, + "f.support.boxModel": 4, + "uuid": 2, + "f.fn.jquery": 1, + "Math.random": 2, + "D/g": 2, + "hasData": 2, + "f.cache": 5, + "f.acceptData": 4, + "f.uuid": 1, + "f.noop": 4, + "f.camelCase": 5, + ".events": 1, + "f.support.deleteExpando": 3, + "f.noData": 2, + "f.fn.extend": 9, + "g.indexOf": 2, + "g.substring": 1, + "b.triggerHandler": 2, + "_mark": 2, + "_unmark": 3, + "f.makeArray": 5, + "e.push": 3, + "f.queue": 3, + "c.shift": 2, + "c.unshift": 1, + "f.dequeue": 4, + "f.fx": 2, + "f.fx.speeds": 1, + "d.resolveWith": 1, + "f.Deferred": 2, + "f._Deferred": 2, + "l.done": 1, + "d.promise": 1, + "rea": 1, + "autofocus": 1, + "autoplay": 1, + "controls": 1, + "defer": 1, + "required": 1, + "scoped": 1, + "f.access": 3, + "f.attr": 2, + "f.removeAttr": 3, + "f.prop": 2, + "removeProp": 1, + "f.propFix": 6, + "c.addClass": 1, + "f.trim": 2, + "c.removeClass": 1, + "g.nodeType": 6, + "g.className": 4, + "h.replace": 2, + "d.toggleClass": 1, + "d.attr": 1, + "h.hasClass": 1, + "": 1, + "f.valHooks": 7, + "e.nodeName.toLowerCase": 1, + "c.get": 1, + "e.value": 1, + "e.val": 1, + "f.map": 5, + "this.nodeName.toLowerCase": 1, + "this.type": 3, + "c.set": 1, + "valHooks": 1, + "a.attributes.value": 1, + "a.text": 1, + "a.selectedIndex": 3, + "a.options": 2, + "": 3, + "optDisabled": 1, + "selected=": 1, + "attrFix": 1, + "f.attrFn": 3, + "f.isXMLDoc": 4, + "f.attrFix": 3, + "f.attrHooks": 5, + "t.test": 2, + "d.toLowerCase": 1, + "c.toLowerCase": 4, + "u.test": 1, + "i.set": 1, + "i.get": 1, + "f.support.getSetAttribute": 2, + "a.removeAttributeNode": 1, + "q.test": 1, + "f.support.radioValue": 1, + "c.specified": 1, + "c.value": 1, + "r.test": 1, + "s.test": 1, + "propFix": 1, + "cellpadding": 1, + "contenteditable": 1, + "f.propHooks": 1, + "h.set": 1, + "h.get": 1, + "propHooks": 1, + "f.attrHooks.value": 1, + "v.get": 1, + "f.attrHooks.name": 1, + "f.valHooks.button": 1, + "d.nodeValue": 3, + "f.support.hrefNormalized": 1, + "f.support.style": 1, + "f.attrHooks.style": 1, + "a.style.cssText.toLowerCase": 1, + "f.support.optSelected": 1, + "f.propHooks.selected": 2, + "b.parentNode.selectedIndex": 1, + "f.support.checkOn": 1, + "f.inArray": 4, + "s.": 1, + "f.event": 2, + "add": 15, + "d.handler": 1, + "g.handler": 1, + "d.guid": 4, + "f.guid": 3, + "i.events": 2, + "i.handle": 2, + "f.event.triggered": 3, + "f.event.handle.apply": 1, + "k.elem": 2, + "c.split": 2, + "l.indexOf": 1, + "l.split": 1, + "n.shift": 1, + "h.namespace": 2, + "n.slice": 1, + "h.type": 1, + "h.guid": 2, + "f.event.special": 5, + "p.setup": 1, + "p.setup.call": 1, + "p.add": 1, + "p.add.call": 1, + "h.handler.guid": 2, + "o.push": 1, + "f.event.global": 2, + "remove": 9, + "s.events": 1, + "c.type": 9, + "c.handler": 1, + "c.charAt": 1, + "f.event.remove": 5, + "h.indexOf": 3, + "h.split": 2, + "m.shift": 1, + "m.slice": 1, + "q.namespace": 1, + "q.handler": 1, + "p.splice": 1, + "": 1, + "u=": 12, + "elem=": 4, + "customEvent": 1, + "trigger": 4, + "h.slice": 1, + "i.shift": 1, + "i.sort": 1, + "f.event.customEvent": 1, + "f.Event": 2, + "c.exclusive": 2, + "c.namespace": 2, + "i.join": 2, + "c.namespace_re": 1, + "c.preventDefault": 3, + "c.stopPropagation": 1, + "b.events": 4, + "f.event.trigger": 6, + "b.handle.elem": 2, + "c.result": 3, + "c.target": 3, + "do": 15, + "c.currentTarget": 2, + "m.apply": 1, + "k.parentNode": 1, + "k.ownerDocument": 1, + "c.target.ownerDocument": 1, + "c.isPropagationStopped": 1, + "c.isDefaultPrevented": 2, + "o._default": 1, + "o._default.call": 1, + "e.ownerDocument": 1, + "f.event.fix": 2, + "a.event": 1, + "Array.prototype.slice.call": 1, + "namespace_re": 1, + "namespace": 1, + "handler=": 1, + "data=": 2, + "handleObj=": 1, + "result=": 1, + "preventDefault": 4, + "stopPropagation": 5, + "isImmediatePropagationStopped": 2, + "result": 9, + "props": 21, + "split": 4, + "fix": 1, + "Event": 3, + "target=": 2, + "relatedTarget=": 1, + "fromElement=": 1, + "pageX=": 2, + "scrollLeft": 2, + "clientLeft": 2, + "pageY=": 1, + "scrollTop": 2, + "clientTop": 2, + "which=": 3, + "metaKey=": 1, + "2": 66, + "3": 13, + "4": 4, + "1e8": 1, + "special": 3, + "setup": 5, + "teardown": 6, + "origType": 2, + "beforeunload": 1, + "onbeforeunload=": 3, + "removeEvent=": 1, + "removeEventListener": 3, + "detachEvent": 2, + "Event=": 1, + "originalEvent=": 1, + "type=": 5, + "isDefaultPrevented=": 2, + "defaultPrevented": 1, + "returnValue=": 2, + "getPreventDefault": 2, + "timeStamp=": 1, + "prototype=": 2, + "originalEvent": 2, + "isPropagationStopped=": 1, + "cancelBubble=": 1, + "stopImmediatePropagation": 1, + "isImmediatePropagationStopped=": 1, + "isDefaultPrevented": 1, + "isPropagationStopped": 1, + "G=": 1, + "H=": 1, + "submit=": 1, + "specialSubmit": 3, + "closest": 3, + "keyCode=": 1, + "J=": 1, + "selectedIndex": 1, + "a.selected": 1, + "z.test": 3, + "d.readOnly": 1, + "c.liveFired": 1, + "f.event.special.change": 1, + "filters": 1, + "beforedeactivate": 1, + "K.call": 2, + "a.keyCode": 2, + "beforeactivate": 1, + "f.event.add": 2, + "f.event.special.change.filters": 1, + "I.focus": 1, + "I.beforeactivate": 1, + "f.support.focusinBubbles": 1, + "c.originalEvent": 1, + "a.preventDefault": 3, + "f.fn": 9, + "e.apply": 1, + "this.one": 1, + "unbind": 2, + "this.unbind": 2, + "delegate": 1, + "this.live": 1, + "undelegate": 1, + "this.die": 1, + "triggerHandler": 1, + "%": 26, + ".guid": 1, + "this.click": 1, + "this.mouseenter": 1, + ".mouseleave": 1, + "g.charAt": 1, + "n.unbind": 1, + "y.exec": 1, + "a.push": 2, + "n.length": 1, + "": 1, + "this.bind": 2, + "": 2, + "sizcache=": 4, + "sizset": 2, + "sizset=": 2, + "toLowerCase": 3, + "d.nodeType": 5, + "k.isXML": 4, + "a.exec": 2, + "x.push": 1, + "x.length": 8, + "m.exec": 1, + "l.relative": 6, + "x.shift": 4, + "l.match.ID.test": 2, + "q.expr": 4, + "q.set": 4, + "x.pop": 4, + "d.parentNode": 4, + "e.call": 1, + "f.push.apply": 1, + "k.contains": 5, + "a.sort": 1, + "": 1, + "matches=": 1, + "matchesSelector=": 1, + "l.order.length": 1, + "l.order": 1, + "l.leftMatch": 1, + "j.substr": 1, + "": 1, + "__sizzle__": 1, + "sizzle": 1, + "l.match.PSEUDO.test": 1, + "a.document.nodeType": 1, + "a.getElementsByClassName": 3, + "a.lastChild.className": 1, + "l.order.splice": 1, + "l.find.CLASS": 1, + "b.getElementsByClassName": 2, + "c.documentElement.contains": 1, + "a.contains": 2, + "c.documentElement.compareDocumentPosition": 1, + "a.compareDocumentPosition": 1, + "a.ownerDocument": 1, + ".documentElement": 1, + "b.nodeName": 2, + "l.match.PSEUDO.exec": 1, + "l.match.PSEUDO": 1, + "f.expr": 4, + "k.selectors": 1, + "f.expr.filters": 3, + "f.unique": 4, + "f.text": 2, + "k.getText": 1, + "/Until": 1, + "parents": 2, + "prevUntil": 2, + "prevAll": 2, + "U": 1, + "f.expr.match.POS": 1, + "V": 2, + "children": 3, + "contents": 4, + "next": 9, + "prev": 2, + ".filter": 2, + "": 1, + "e.splice": 1, + "this.filter": 2, + "": 1, + "": 1, + ".is": 2, + "c.push": 3, + "g.parentNode": 2, + "U.test": 1, + "": 1, + "f.find.matchesSelector": 2, + "g.ownerDocument": 1, + "this.parent": 2, + ".children": 1, + "a.jquery": 2, + "f.merge": 2, + "this.get": 1, + "andSelf": 1, + "this.add": 1, + "f.dir": 6, + "parentsUntil": 1, + "f.nth": 2, + "nextAll": 1, + "nextUntil": 1, + "siblings": 1, + "f.sibling": 2, + "a.parentNode.firstChild": 1, + "a.contentDocument": 1, + "a.contentWindow.document": 1, + "a.childNodes": 1, + "T.call": 1, + "P.test": 1, + "f.filter": 2, + "R.test": 1, + "Q.test": 1, + "e.reverse": 1, + "g.join": 1, + "f.find.matches": 1, + "dir": 1, + "sibling": 1, + "a.nextSibling": 1, + "<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\\w:]+)[^>": 1, + "/ig": 3, + "tbody/i": 1, + "bc": 1, + "bd": 1, + "/checked": 1, + "s*.checked.": 1, + "java": 1, + "ecma": 1, + "script/i": 1, + "CDATA": 1, + "bg": 3, + "legend": 1, + "thead": 2, + "tr": 23, + "td": 3, + "col": 7, + "_default": 5, + "bg.optgroup": 1, + "bg.option": 1, + "bg.tbody": 1, + "bg.tfoot": 1, + "bg.colgroup": 1, + "bg.caption": 1, + "bg.thead": 1, + "bg.th": 1, + "bg.td": 1, + "f.support.htmlSerialize": 1, + "bg._default": 2, + "c.text": 2, + "this.empty": 3, + ".append": 6, + ".createTextNode": 1, + "wrapAll": 1, + ".wrapAll": 2, + ".eq": 1, + ".clone": 1, + "b.map": 1, + "wrapInner": 1, + ".wrapInner": 1, + "b.contents": 1, + "c.wrapAll": 1, + "b.append": 1, + "wrap": 2, + "unwrap": 1, + ".replaceWith": 1, + "this.childNodes": 1, + ".end": 1, + "append": 1, + "this.domManip": 4, + "this.appendChild": 1, + "prepend": 1, + "this.insertBefore": 1, + "this.firstChild": 1, + "this.parentNode.insertBefore": 2, + "a.push.apply": 2, + "this.nextSibling": 2, + ".toArray": 1, + "f.cleanData": 4, + "d.parentNode.removeChild": 1, + "b.getElementsByTagName": 1, + "this.map": 3, + "f.clone": 2, + ".innerHTML.replace": 1, + "bc.test": 2, + "f.support.leadingWhitespace": 2, + "Z.test": 2, + "_.exec": 2, + ".getElementsByTagName": 2, + ".innerHTML": 3, + "c.html": 3, + "replaceWith": 1, + "c.replaceWith": 1, + ".detach": 1, + "this.parentNode": 1, + ".remove": 2, + ".before": 1, + "detach": 1, + "this.remove": 1, + "domManip": 1, + "f.support.checkClone": 2, + "bd.test": 2, + ".domManip": 1, + "g.html": 1, + "g.domManip": 1, + "j.parentNode": 1, + "f.support.parentNode": 1, + "i.nodeType": 1, + "i.childNodes.length": 1, + "f.buildFragment": 2, + "e.fragment": 1, + "h.childNodes.length": 1, + "h.firstChild": 2, + "": 1, + "k.length": 2, + ".charAt": 1, + "f.fragments": 3, + "i.createDocumentFragment": 1, + "f.clean": 1, + "appendTo": 1, + "prependTo": 1, + "insertBefore": 1, + "insertAfter": 1, + "replaceAll": 1, + "g.childNodes.length": 1, + "this.clone": 1, + ".get": 3, + "d.concat": 1, + "e.selector": 1, + "f.support.noCloneEvent": 1, + "f.support.noCloneChecked": 1, + "b.createElement": 2, + "b.createTextNode": 2, + "k.replace": 2, + "o.innerHTML": 1, + "o.lastChild": 1, + "f.support.tbody": 1, + "ba.test": 1, + "o.firstChild": 2, + "o.firstChild.childNodes": 1, + "o.childNodes": 2, + "q.length": 1, + ".childNodes.length": 1, + ".parentNode.removeChild": 2, + "o.insertBefore": 1, + "Z.exec": 1, + "f.support.appendChecked": 1, + "k.nodeType": 1, + "h.push": 1, + "be.test": 1, + ".type.toLowerCase": 1, + "h.splice.apply": 1, + ".concat": 3, + "cleanData": 1, + "j.nodeName": 1, + "j.nodeName.toLowerCase": 1, + "f.removeEvent": 1, + "b.handle": 2, + "j.removeAttribute": 2, + "bo": 2, + "/alpha": 1, + "bp": 1, + "/opacity": 1, + "bq": 2, + "br": 19, + "ms": 2, + "bs": 2, + "bt": 42, + "bu": 11, + "bv": 2, + "de": 1, + "bw": 2, + "bz": 7, + "bA": 3, + "bB": 5, + "bC": 2, + "f.fn.css": 1, + "f.style": 4, + "cssHooks": 1, + "a.style.opacity": 2, + "cssNumber": 3, + "zIndex": 1, + "fontWeight": 1, + "zoom": 1, + "lineHeight": 1, + "widows": 1, + "orphans": 1, + "cssProps": 1, + "f.support.cssFloat": 1, + "f.cssHooks": 3, + "f.cssProps": 2, + "k.get": 1, + "bu.test": 1, + "d.replace": 1, + "f.cssNumber": 1, + "k.set": 1, + "g.get": 1, + "swap": 1, + "f.curCSS": 1, + "f.swap": 2, + "<0||e==null){e=a.style[b];return>": 1, + "0px": 1, + "f.support.opacity": 1, + "f.cssHooks.opacity": 1, + "bp.test": 1, + "a.currentStyle": 4, + "a.currentStyle.filter": 1, + "a.style.filter": 1, + "RegExp.": 1, + "c.zoom": 1, + "b*100": 1, + "d.filter": 1, + "c.filter": 2, + "bo.test": 1, + "g.replace": 1, + "f.support.reliableMarginRight": 1, + "f.cssHooks.marginRight": 1, + "a.style.marginRight": 1, + "a.ownerDocument.defaultView": 1, + "e.getComputedStyle": 1, + "g.getPropertyValue": 1, + "a.ownerDocument.documentElement": 1, + "c.documentElement.currentStyle": 1, + "a.runtimeStyle": 2, + "bs.test": 1, + "bt.test": 1, + "f.left": 3, + "a.runtimeStyle.left": 2, + "a.currentStyle.left": 1, + "f.pixelLeft": 1, + "f.expr.filters.hidden": 2, + "f.support.reliableHiddenOffsets": 1, + "f.expr.filters.visible": 1, + "bE": 2, + "bF": 1, + "bG": 3, + "n/g": 1, + "bH": 2, + "/#.*": 1, + "bI": 1, + "/mg": 1, + "bJ": 1, + "color": 4, + "date": 1, + "datetime": 1, + "email": 2, + "month": 1, + "range": 2, + "search": 5, + "tel": 2, + "time": 1, + "week": 1, + "bK": 1, + "about": 1, + "app": 2, + "storage": 1, + "extension": 1, + "widget": 1, + "bL": 1, + "GET": 1, + "bM": 2, + "bN": 2, + "bO": 2, + "<\\/script>": 2, + "/gi": 2, + "bP": 1, + "bR": 2, + "*/": 2, + "bS": 1, + "bT": 2, + "f.fn.load": 1, + "bV": 3, + "bW": 5, + "bX": 8, + "e.href": 1, + "bY": 1, + "bW.href": 2, + "bS.exec": 1, + "bW.toLowerCase": 1, + "bT.apply": 1, + "a.slice": 2, + "f.param": 2, + "f.ajaxSettings.traditional": 2, + "complete": 6, + "a.responseText": 1, + "a.isResolved": 1, + "a.done": 1, + "i.html": 1, + "i.each": 1, + "serialize": 1, + "this.serializeArray": 1, + "serializeArray": 1, + "this.elements": 2, + "this.disabled": 1, + "this.checked": 1, + "bP.test": 1, + "bJ.test": 1, + ".map": 1, + "b.name": 2, + "success": 2, + "getScript": 1, + "f.get": 2, + "getJSON": 1, + "ajaxSetup": 1, + "f.ajaxSettings": 4, + "ajaxSettings": 1, + "isLocal": 1, + "bK.test": 1, + "contentType": 4, + "processData": 3, + "accepts": 5, + "xml": 3, + "json": 2, + "/xml/": 1, + "/html/": 1, + "/json/": 1, + "responseFields": 1, + "converters": 2, + "a.String": 1, + "f.parseXML": 1, + "ajaxPrefilter": 1, + "ajaxTransport": 1, + "ajax": 2, + "clearTimeout": 2, + "v.readyState": 1, + "d.ifModified": 1, + "v.getResponseHeader": 2, + "f.lastModified": 1, + "f.etag": 1, + "v.status": 1, + "v.statusText": 1, + "h.resolveWith": 1, + "h.rejectWith": 1, + "v.statusCode": 2, + "g.trigger": 2, + "i.resolveWith": 1, + "f.active": 1, + "f.ajaxSetup": 3, + "d.statusCode": 1, + "readyState": 1, + "setRequestHeader": 6, + "getAllResponseHeaders": 1, + "getResponseHeader": 1, + "bI.exec": 1, + "overrideMimeType": 1, + "d.mimeType": 1, + "abort": 4, + "p.abort": 1, + "h.promise": 1, + "v.success": 1, + "v.done": 1, + "v.error": 1, + "v.fail": 1, + "v.complete": 1, + "i.done": 1, + "<2)for(b>": 1, + "url=": 1, + "dataTypes=": 1, + "crossDomain=": 2, + "exec": 8, + "80": 2, + "443": 2, + "param": 3, + "traditional": 1, + "s=": 12, + "t=": 19, + "toUpperCase": 1, + "hasContent=": 1, + "active": 2, + "ajaxStart": 1, + "hasContent": 2, + "cache=": 1, + "x=": 1, + "y=": 5, + "1_=": 1, + "_=": 1, + "Content": 1, + "Type": 1, + "ifModified": 1, + "lastModified": 3, + "Modified": 1, + "etag": 3, + "None": 1, + "Accept": 1, + "dataTypes": 4, + "q=": 1, + "01": 1, + "beforeSend": 2, + "p=": 5, + "No": 1, + "Transport": 1, + "readyState=": 1, + "ajaxSend": 1, + "v.abort": 1, + "d.timeout": 1, + "p.send": 1, + "encodeURIComponent": 2, + "f.isPlainObject": 1, + "d.join": 1, + "cc": 2, + "cd": 3, + "jsonp": 1, + "jsonpCallback": 1, + "f.ajaxPrefilter": 2, + "b.contentType": 1, + "b.data": 5, + "b.dataTypes": 2, + "b.jsonp": 3, + "cd.test": 2, + "b.url": 4, + "b.jsonpCallback": 4, + "d.always": 1, + "b.converters": 1, + "/javascript": 1, + "ecmascript/": 1, + "a.cache": 2, + "a.crossDomain": 2, + "a.global": 1, + "f.ajaxTransport": 2, + "c.head": 1, + "c.getElementsByTagName": 1, + "send": 2, + "d.async": 1, + "a.scriptCharset": 2, + "d.charset": 1, + "d.src": 1, + "a.url": 1, + "d.onload": 3, + "d.onreadystatechange": 2, + "d.readyState": 2, + "/loaded": 1, + "complete/.test": 1, + "e.removeChild": 1, + "e.insertBefore": 1, + "e.firstChild": 1, + "ce": 6, + "cg": 7, + "cf": 7, + "f.ajaxSettings.xhr": 2, + "this.isLocal": 1, + "cors": 1, + "f.support.ajax": 1, + "c.crossDomain": 3, + "f.support.cors": 1, + "c.xhr": 1, + "c.username": 2, + "h.open": 2, + "c.url": 2, + "c.password": 1, + "c.xhrFields": 3, + "c.mimeType": 2, + "h.overrideMimeType": 2, + "h.setRequestHeader": 1, + "h.send": 1, + "c.hasContent": 1, + "h.readyState": 3, + "h.onreadystatechange": 2, + "h.abort": 1, + "h.status": 1, + "h.getAllResponseHeaders": 1, + "h.responseXML": 1, + "n.documentElement": 1, + "m.xml": 1, + "m.text": 2, + "h.responseText": 1, + "h.statusText": 1, + "c.isLocal": 1, + ".unload": 1, + "cm": 2, + "cn": 1, + "co": 5, + "cp": 1, + "cr": 20, + "a.webkitRequestAnimationFrame": 1, + "a.mozRequestAnimationFrame": 1, + "a.oRequestAnimationFrame": 1, + "this.animate": 2, + "d.style": 3, + ".style": 1, + "": 1, + "_toggle": 2, + "animate": 4, + "fadeTo": 1, + "queue=": 2, + "animatedProperties=": 1, + "animatedProperties": 2, + "specialEasing": 2, + "easing": 3, + "swing": 2, + "overflow=": 2, + "overflow": 2, + "overflowX": 1, + "overflowY": 1, + "float": 3, + "display=": 3, + "zoom=": 1, + "fx": 10, + "l=": 10, + "m=": 2, + "custom": 5, + "stop": 7, + "timers": 3, + "slideDown": 1, + "slideUp": 1, + "slideToggle": 1, + "fadeIn": 1, + "fadeOut": 1, + "fadeToggle": 1, + "duration": 4, + "duration=": 2, + "off": 1, + "speeds": 4, + "old=": 1, + "complete=": 1, + "old": 2, + "linear": 1, + "Math": 51, + "cos": 1, + "PI": 54, + "5": 23, + "options=": 1, + "prop=": 3, + "orig=": 1, + "orig": 3, + "step": 7, + "startTime=": 1, + "start=": 1, + "end=": 1, + "unit=": 1, + "unit": 1, + "now=": 1, + "pos=": 1, + "state=": 1, + "co=": 2, + "tick": 3, + "interval": 3, + "show=": 1, + "hide=": 1, + "e.duration": 3, + "this.startTime": 2, + "this.now": 3, + "this.end": 2, + "this.pos": 4, + "this.state": 3, + "this.update": 2, + "e.animatedProperties": 5, + "this.prop": 2, + "e.overflow": 2, + "f.support.shrinkWrapBlocks": 1, + "e.hide": 2, + ".hide": 2, + "e.show": 1, + "e.orig": 1, + "e.complete.call": 1, + "Infinity": 1, + "h/e.duration": 1, + "f.easing": 1, + "this.start": 2, + "*this.pos": 1, + "f.timers": 2, + "a.splice": 1, + "f.fx.stop": 1, + "clearInterval": 6, + "slow": 1, + "fast": 1, + "a.elem": 2, + "a.now": 4, + "a.elem.style": 3, + "a.prop": 5, + "Math.max": 10, + "a.unit": 1, + "f.expr.filters.animated": 1, + "b.elem": 1, + "cw": 1, + "able": 1, + "cx": 2, + "f.fn.offset": 2, + "f.offset.setOffset": 2, + "b.ownerDocument.body": 2, + "f.offset.bodyOffset": 2, + "b.getBoundingClientRect": 1, + "e.documentElement": 4, + "c.top": 4, + "c.left": 4, + "e.body": 3, + "g.clientTop": 1, + "h.clientTop": 1, + "g.clientLeft": 1, + "h.clientLeft": 1, + "i.pageYOffset": 1, + "g.scrollTop": 1, + "h.scrollTop": 2, + "i.pageXOffset": 1, + "g.scrollLeft": 1, + "h.scrollLeft": 2, + "f.offset.initialize": 3, + "b.offsetParent": 2, + "g.documentElement": 1, + "g.body": 1, + "g.defaultView": 1, + "j.getComputedStyle": 2, + "b.currentStyle": 2, + "b.offsetTop": 2, + "b.offsetLeft": 2, + "f.offset.supportsFixedPosition": 2, + "k.position": 4, + "b.scrollTop": 1, + "b.scrollLeft": 1, + "f.offset.doesNotAddBorder": 1, + "f.offset.doesAddBorderForTableAndCells": 1, + "cw.test": 1, + "c.borderTopWidth": 2, + "c.borderLeftWidth": 2, + "f.offset.subtractsBorderForOverflowNotVisible": 1, + "c.overflow": 1, + "i.offsetTop": 1, + "i.offsetLeft": 1, + "i.scrollTop": 1, + "i.scrollLeft": 1, + "f.offset": 1, + "initialize": 3, + "b.style": 1, + "d.nextSibling.firstChild.firstChild": 1, + "this.doesNotAddBorder": 1, + "e.offsetTop": 4, + "this.doesAddBorderForTableAndCells": 1, + "h.offsetTop": 1, + "e.style.position": 2, + "e.style.top": 2, + "this.supportsFixedPosition": 1, + "d.style.overflow": 1, + "d.style.position": 1, + "this.subtractsBorderForOverflowNotVisible": 1, + "this.doesNotIncludeMarginInBodyOffset": 1, + "a.offsetTop": 2, + "bodyOffset": 1, + "a.offsetLeft": 1, + "f.offset.doesNotIncludeMarginInBodyOffset": 1, + "setOffset": 1, + "a.style.position": 1, + "e.offset": 1, + "e.position": 1, + "l.top": 1, + "l.left": 1, + "b.top": 2, + "k.top": 1, + "g.top": 1, + "b.left": 2, + "k.left": 1, + "g.left": 1, + "b.using.call": 1, + "e.css": 1, + "this.offsetParent": 2, + "this.offset": 2, + "cx.test": 2, + "b.offset": 1, + "d.top": 2, + "d.left": 2, + "offsetParent": 1, + "a.offsetParent": 1, + "g.document.documentElement": 1, + "g.document.body": 1, + "g.scrollTo": 1, + ".scrollLeft": 1, + ".scrollTop": 1, + "e.document.documentElement": 1, + "e.document.compatMode": 1, + "e.document.body": 1, + "this.css": 1, + "Prioritize": 1, + "": 1, + "XSS": 1, + "location.hash": 1, + "#9521": 1, + "Matches": 1, + "dashed": 1, + "camelizing": 1, + "rdashAlpha": 1, + "rmsPrefix": 1, + "fcamelCase": 1, + "letter": 3, + "readyList.fireWith": 1, + ".off": 1, + "jQuery.Callbacks": 2, + "IE8": 2, + "exceptions": 2, + "#9897": 1, + "elems": 9, + "chainable": 4, + "emptyGet": 3, + "bulk": 3, + "elems.length": 1, + "Sets": 3, + "jQuery.access": 2, + "Optionally": 1, + "executed": 1, + "Bulk": 1, + "operations": 1, + "iterate": 1, + "executing": 1, + "exec.call": 1, + "they": 2, + "run": 1, + "against": 1, + "entire": 1, + "fn.call": 2, + "value.call": 1, + "Gets": 2, + "frowned": 1, + "upon.": 1, + "More": 1, + "//docs.jquery.com/Utilities/jQuery.browser": 1, + "ua": 6, + "ua.toLowerCase": 1, + "rwebkit.exec": 1, + "ropera.exec": 1, + "rmsie.exec": 1, + "ua.indexOf": 1, + "rmozilla.exec": 1, + "jQuerySub": 7, + "jQuerySub.fn.init": 2, + "jQuerySub.superclass": 1, + "jQuerySub.fn": 2, + "jQuerySub.prototype": 1, + "jQuerySub.fn.constructor": 1, + "jQuerySub.sub": 1, + "jQuery.fn.init.call": 1, + "rootjQuerySub": 2, + "jQuerySub.fn.init.prototype": 1, + "jQuery.uaMatch": 1, + "browserMatch.browser": 2, + "jQuery.browser.version": 1, + "browserMatch.version": 1, + "jQuery.browser.webkit": 1, + "jQuery.browser.safari": 1, + "flagsCache": 3, + "createFlags": 2, + "flags": 13, + "flags.split": 1, + "flags.length": 1, + "Convert": 1, + "formatted": 2, + "Actual": 2, + "Stack": 1, + "fire": 4, + "calls": 1, + "repeatable": 1, + "lists": 2, + "stack": 2, + "forgettable": 1, + "memory": 8, + "Flag": 2, + "First": 3, + "fireWith": 1, + "firingStart": 3, + "End": 1, + "firingLength": 4, + "Index": 1, + "firingIndex": 5, + "several": 1, + "actual": 1, + "Inspect": 1, + "recursively": 1, + "mode": 1, + "flags.unique": 1, + "self.has": 1, + "list.push": 1, + "Fire": 1, + "flags.memory": 1, + "flags.stopOnFalse": 1, + "Mark": 1, + "halted": 1, + "flags.once": 1, + "stack.length": 1, + "stack.shift": 1, + "self.fireWith": 1, + "self.disable": 1, + "Callbacks": 1, + "collection": 3, + "Do": 2, + "current": 7, + "batch": 2, + "With": 1, + "/a": 1, + ".55": 1, + "basic": 1, + "all.length": 1, + "supports": 2, + "select.appendChild": 1, + "strips": 1, + "leading": 1, + "div.firstChild.nodeType": 1, + "manipulated": 1, + "normalizes": 1, + "around": 1, + "issue.": 1, + "#5145": 1, + "existence": 1, + "styleFloat": 1, + "a.style.cssFloat": 1, + "defaults": 3, + "working": 1, + "property.": 1, + "too": 1, + "marked": 1, + "marks": 1, + "select.disabled": 1, + "support.optDisabled": 1, + "opt.disabled": 1, + "handlers": 1, + "support.noCloneEvent": 1, + "div.cloneNode": 1, + "maintains": 1, + "#11217": 1, + "loses": 1, + "div.lastChild": 1, + "conMarginTop": 3, + "paddingMarginBorder": 5, + "positionTopLeftWidthHeight": 3, + "paddingMarginBorderVisibility": 3, + "container": 4, + "container.style.cssText": 1, + "body.insertBefore": 1, + "body.firstChild": 1, + "Construct": 1, + "container.appendChild": 1, + "cells": 3, + "still": 4, + "offsetWidth/Height": 3, + "visible": 1, + "row": 1, + "reliable": 1, + "offsets": 1, + "safety": 1, + "goggles": 1, + "#4512": 1, + "fails": 2, + "support.reliableHiddenOffsets": 1, + "explicit": 1, + "right": 3, + "incorrectly": 1, + "computed": 1, + "based": 1, + "container.": 1, + "#3333": 1, + "Feb": 1, + "Bug": 1, + "getComputedStyle": 3, + "returns": 1, + "wrong": 1, + "window.getComputedStyle": 6, + "marginDiv.style.width": 1, + "marginDiv.style.marginRight": 1, + "div.style.width": 2, + "support.reliableMarginRight": 1, + "div.style.zoom": 2, + "natively": 1, + "block": 4, + "act": 1, + "setting": 2, + "giving": 1, + "layout": 2, + "div.style.padding": 1, + "div.style.border": 1, + "div.style.overflow": 2, + "div.style.display": 2, + "support.inlineBlockNeedsLayout": 1, + "div.offsetWidth": 2, + "shrink": 1, + "support.shrinkWrapBlocks": 1, + "div.style.cssText": 1, + "outer.firstChild": 1, + "outer.nextSibling.firstChild.firstChild": 1, + "offsetSupport": 2, + "doesNotAddBorder": 1, + "inner.offsetTop": 4, + "doesAddBorderForTableAndCells": 1, + "td.offsetTop": 1, + "inner.style.position": 2, + "inner.style.top": 2, + "safari": 1, + "subtracts": 1, + "here": 1, + "offsetSupport.fixedPosition": 1, + "outer.style.overflow": 1, + "outer.style.position": 1, + "offsetSupport.subtractsBorderForOverflowNotVisible": 1, + "offsetSupport.doesNotIncludeMarginInBodyOffset": 1, + "body.offsetTop": 1, + "div.style.marginTop": 1, + "support.pixelMargin": 1, + ".marginTop": 1, + "container.style.zoom": 2, + "body.removeChild": 1, + "rbrace": 1, + "Please": 1, + "caution": 1, + "Unique": 1, + "page": 1, + "rinlinejQuery": 1, + "jQuery.fn.jquery": 1, + "following": 1, + "uncatchable": 1, + "you": 1, + "attempt": 2, + "them.": 1, + "Ban": 1, + "except": 1, + "Flash": 1, + "jQuery.acceptData": 2, + "privateCache": 1, + "differently": 1, + "because": 1, + "IE6": 1, + "order": 1, + "collisions": 1, + "between": 1, + "user": 1, + "data.": 1, + "thisCache.data": 3, + "Users": 1, + "should": 1, + "inspect": 1, + "undocumented": 1, + "subject": 1, + "change.": 1, + "But": 1, + "anyone": 1, + "listen": 1, + "No.": 1, + "isEvents": 1, + "privateCache.events": 1, + "converted": 2, + "camel": 2, + "names": 2, + "camelCased": 1, + "Reference": 1, + "entry": 1, + "purpose": 1, + "continuing": 1, + "Support": 1, + "space": 1, + "separated": 1, + "jQuery.isArray": 1, + "manipulation": 1, + "cased": 1, + "name.split": 1, + "name.length": 1, + "want": 1, + "let": 1, + "destroyed": 2, + "jQuery.isEmptyObject": 1, + "Don": 1, + "care": 1, + "Ensure": 1, + "#10080": 1, + "cache.setInterval": 1, + "part": 8, + "jQuery._data": 2, + "elem.attributes": 1, + "self.triggerHandler": 2, + "jQuery.isNumeric": 1, + "All": 1, + "lowercase": 1, + "Grab": 1, + "necessary": 1, + "hook": 1, + "nodeHook": 1, + "attrNames": 3, + "isBool": 4, + "rspace": 1, + "attrNames.length": 1, + "#9699": 1, + "explanation": 1, + "approach": 1, + "removal": 1, + "#10870": 1, + "**": 1, + "timeStamp": 1, + "char": 2, + "buttons": 1, + "SHEBANG#!node": 2, + "http.createServer": 1, + "res.writeHead": 1, + "res.end": 1, + ".listen": 1, + "Date.prototype.toJSON": 2, + "isFinite": 1, + "this.valueOf": 2, + "this.getUTCFullYear": 1, + "this.getUTCMonth": 1, + "this.getUTCDate": 1, + "this.getUTCHours": 1, + "this.getUTCMinutes": 1, + "this.getUTCSeconds": 1, + "String.prototype.toJSON": 1, + "Number.prototype.toJSON": 1, + "Boolean.prototype.toJSON": 1, + "u0000": 1, + "u00ad": 1, + "u0600": 1, + "u0604": 1, + "u070f": 1, + "u17b4": 1, + "u17b5": 1, + "u200c": 1, + "u200f": 1, + "u2028": 3, + "u202f": 1, + "u2060": 1, + "u206f": 1, + "ufeff": 1, + "ufff0": 1, + "uffff": 1, + "escapable": 1, + "/bfnrt": 1, + "fA": 2, + "JSON.parse": 1, + "PUT": 1, + "DELETE": 1, + "_id": 1, + "ties": 1, + "collection.": 1, + "_removeReference": 1, + "model.collection": 2, + "model.unbind": 1, + "this._onModelEvent": 1, + "_onModelEvent": 1, + "ev": 5, + "this._remove": 1, + "model.idAttribute": 2, + "this._byId": 2, + "model.previous": 1, + "model.id": 1, + "this.trigger.apply": 2, + "_.each": 1, + "Backbone.Collection.prototype": 1, + "this.models": 1, + "_.toArray": 1, + "Backbone.Router": 1, + "options.routes": 2, + "this.routes": 4, + "this._bindRoutes": 1, + "this.initialize.apply": 2, + "namedParam": 2, + "splatParam": 2, + "escapeRegExp": 2, + "_.extend": 9, + "Backbone.Router.prototype": 1, + "Backbone.Events": 2, + "route": 18, + "Backbone.history": 2, + "Backbone.History": 2, + "_.isRegExp": 1, + "this._routeToRegExp": 1, + "Backbone.history.route": 1, + "_.bind": 2, + "this._extractParameters": 1, + "callback.apply": 1, + "navigate": 2, + "triggerRoute": 4, + "Backbone.history.navigate": 1, + "_bindRoutes": 1, + "routes": 4, + "routes.unshift": 1, + "routes.length": 1, + "this.route": 1, + "_routeToRegExp": 1, + "route.replace": 1, + "_extractParameters": 1, + "route.exec": 1, + "this.handlers": 2, + "_.bindAll": 1, + "hashStrip": 4, + "#*": 1, + "isExplorer": 1, + "/msie": 1, + "historyStarted": 3, + "Backbone.History.prototype": 1, + "getFragment": 1, + "forcePushState": 2, + "this._hasPushState": 6, + "window.location.pathname": 1, + "window.location.search": 1, + "fragment.indexOf": 1, + "this.options.root": 6, + "fragment.substr": 1, + "this.options.root.length": 1, + "window.location.hash": 3, + "fragment.replace": 1, + "this._wantsPushState": 3, + "this.options.pushState": 2, + "window.history": 2, + "window.history.pushState": 2, + "this.getFragment": 6, + "docMode": 3, + "document.documentMode": 3, + "oldIE": 3, + "isExplorer.exec": 1, + "navigator.userAgent.toLowerCase": 1, + "this.iframe": 4, + ".contentWindow": 1, + "this.navigate": 2, + ".bind": 3, + "this.checkUrl": 3, + "setInterval": 6, + "this.interval": 1, + "this.fragment": 13, + "loc": 2, + "atRoot": 3, + "loc.pathname": 1, + "loc.hash": 1, + "loc.hash.replace": 1, + "window.history.replaceState": 1, + "document.title": 2, + "loc.protocol": 2, + "loc.host": 2, + "this.loadUrl": 4, + "this.handlers.unshift": 1, + "checkUrl": 1, + "this.iframe.location.hash": 3, + "decodeURIComponent": 2, + "loadUrl": 1, + "fragmentOverride": 2, + "matched": 2, + "_.any": 1, + "handler.route.test": 1, + "handler.callback": 1, + "frag": 13, + "frag.indexOf": 1, + "this.iframe.document.open": 1, + ".close": 1, + "Backbone.View": 1, + "this.cid": 3, + "_.uniqueId": 1, + "this._configure": 1, + "this._ensureElement": 1, + "this.delegateEvents": 1, + "selectorDelegate": 2, + "this.el": 10, + "eventSplitter": 2, + "viewOptions": 2, + "Backbone.View.prototype": 1, + "tagName": 3, + "render": 1, + "el": 4, + ".attr": 1, + ".html": 1, + "delegateEvents": 1, + "this.events": 1, + "key.match": 1, + "_configure": 1, + "viewOptions.length": 1, + "_ensureElement": 1, + "attrs": 6, + "this.attributes": 1, + "this.id": 2, + "attrs.id": 1, + "this.make": 1, + "this.tagName": 1, + "_.isString": 1, + "protoProps": 6, + "classProps": 2, + "inherits": 2, + "child.extend": 1, + "this.extend": 1, + "Backbone.Model.extend": 1, + "Backbone.Collection.extend": 1, + "Backbone.Router.extend": 1, + "Backbone.View.extend": 1, + "methodMap": 2, + "Backbone.sync": 1, + "params": 2, + "params.url": 2, + "getUrl": 2, + "urlError": 2, + "params.data": 5, + "params.contentType": 2, + "model.toJSON": 1, + "Backbone.emulateJSON": 2, + "params.processData": 1, + "Backbone.emulateHTTP": 1, + "params.data._method": 1, + "params.type": 1, + "params.beforeSend": 1, + "xhr": 1, + "xhr.setRequestHeader": 1, + ".ajax": 1, + "staticProps": 3, + "protoProps.hasOwnProperty": 1, + "protoProps.constructor": 1, + "parent.apply": 1, + "child.prototype.constructor": 1, + "object.url": 4, + "_.isFunction": 1, + "wrapError": 1, + "onError": 3, + "resp": 3, + "model.trigger": 1, + "escapeHTML": 1, + "string.replace": 1, + "#x": 1, + "da": 1, + "": 1, + "lt": 55, + "#x27": 1, + "#x2F": 1, + "window.Modernizr": 1, + "Modernizr": 12, + "enableClasses": 3, + "docElement": 1, + "mod": 12, + "modElem": 2, + "mStyle": 2, + "modElem.style": 1, + "inputElem": 6, + "smile": 4, + "prefixes": 2, + "omPrefixes": 1, + "cssomPrefixes": 2, + "omPrefixes.split": 1, + "domPrefixes": 3, + "omPrefixes.toLowerCase": 1, + "ns": 1, + "inputs": 3, + "classes": 1, + "classes.slice": 1, + "featureName": 5, + "testing": 1, + "injectElementWithStyles": 9, + "rule": 5, + "testnames": 3, + "fakeBody": 4, + "node.id": 1, + "div.id": 1, + "fakeBody.appendChild": 1, + "//avoid": 1, + "crashing": 1, + "fakeBody.style.background": 1, + "docElement.appendChild": 2, + "fakeBody.parentNode.removeChild": 1, + "div.parentNode.removeChild": 1, + "testMediaQuery": 2, + "mq": 3, + "matchMedia": 3, + "window.matchMedia": 1, + "window.msMatchMedia": 1, + ".matches": 1, + "bool": 30, + "node.currentStyle": 2, + "isEventSupported": 5, + "TAGNAMES": 2, + "element.setAttribute": 3, + "element.removeAttribute": 2, + "_hasOwnProperty": 2, + "hasOwnProperty": 5, + "_hasOwnProperty.call": 2, + "object.constructor.prototype": 1, + "Function.prototype.bind": 2, + "slice.call": 3, + "F.prototype": 1, + "target.prototype": 1, + "target.apply": 2, + "args.concat": 2, + "setCss": 7, + "str": 4, + "mStyle.cssText": 1, + "setCssAll": 2, + "str1": 6, + "str2": 4, + "prefixes.join": 3, + "substr": 2, + "testProps": 3, + "prefixed": 7, + "testDOMProps": 2, + "item": 4, + "item.bind": 1, + "testPropsAll": 17, + "ucProp": 5, + "prop.charAt": 1, + "prop.substr": 1, + "cssomPrefixes.join": 1, + "elem.getContext": 2, + ".getContext": 8, + ".fillText": 1, + "window.WebGLRenderingContext": 1, + "window.DocumentTouch": 1, + "DocumentTouch": 1, + "node.offsetTop": 1, + "window.postMessage": 1, + "window.openDatabase": 1, + "history.pushState": 1, + "mStyle.backgroundColor": 3, + "mStyle.background": 1, + ".style.textShadow": 1, + "mStyle.opacity": 1, + "str3": 2, + "str1.length": 1, + "mStyle.backgroundImage": 1, + "docElement.style": 1, + "node.offsetLeft": 1, + "node.offsetHeight": 2, + "document.styleSheets": 1, + "document.styleSheets.length": 1, + "cssText": 4, + "style.cssRules": 3, + "style.cssText": 1, + "/src/i.test": 1, + "cssText.indexOf": 1, + "rule.split": 1, + "elem.canPlayType": 10, + "Boolean": 2, + "bool.ogg": 2, + "bool.h264": 1, + "bool.webm": 1, + "bool.mp3": 1, + "bool.wav": 1, + "bool.m4a": 1, + "localStorage.setItem": 1, + "localStorage.removeItem": 1, + "sessionStorage.setItem": 1, + "sessionStorage.removeItem": 1, + "window.Worker": 1, + "window.applicationCache": 1, + "document.createElementNS": 6, + "ns.svg": 4, + ".createSVGRect": 1, + "div.firstChild.namespaceURI": 1, + "/SVGAnimate/.test": 1, + "toString.call": 2, + "/SVGClipPath/.test": 1, + "webforms": 2, + "props.length": 2, + "attrs.list": 2, + "window.HTMLDataListElement": 1, + "inputElemType": 5, + "defaultView": 2, + "inputElem.setAttribute": 1, + "inputElem.type": 1, + "inputElem.value": 2, + "inputElem.style.cssText": 1, + "inputElem.style.WebkitAppearance": 1, + "document.defaultView": 1, + "defaultView.getComputedStyle": 2, + ".WebkitAppearance": 1, + "inputElem.offsetHeight": 1, + "docElement.removeChild": 1, + "inputElem.checkValidity": 2, + "feature": 12, + "feature.toLowerCase": 2, + "classes.push": 1, + "Modernizr.input": 1, + "Modernizr.addTest": 2, + "docElement.className": 2, + "chaining.": 1, + "window.html5": 2, + "reSkip": 1, + "saveClones": 1, + "fieldset": 1, + "h1": 5, + "h2": 5, + "h3": 3, + "h4": 3, + "h5": 1, + "h6": 1, + "img": 1, + "label": 2, + "li": 19, + "ol": 1, + "span": 1, + "strong": 1, + "tfoot": 1, + "th": 1, + "ul": 1, + "supportsHtml5Styles": 5, + "supportsUnknownElements": 3, + "//if": 2, + "implemented": 1, + "assume": 1, + "Styles": 1, + "Chrome": 2, + "additional": 1, + "solve": 1, + "node.hidden": 1, + ".display": 1, + "a.childNodes.length": 1, + "frag.cloneNode": 1, + "frag.createDocumentFragment": 1, + "frag.createElement": 2, + "addStyleSheet": 2, + "ownerDocument.createElement": 3, + "ownerDocument.getElementsByTagName": 1, + "ownerDocument.documentElement": 1, + "p.innerHTML": 1, + "parent.insertBefore": 1, + "p.lastChild": 1, + "parent.firstChild": 1, + "getElements": 2, + "html5.elements": 1, + "elements.split": 1, + "shivMethods": 2, + "docCreateElement": 5, + "docCreateFragment": 2, + "ownerDocument.createDocumentFragment": 2, + "//abort": 1, + "shiv": 1, + "html5.shivMethods": 1, + "saveClones.test": 1, + "node.canHaveChildren": 1, + "reSkip.test": 1, + "frag.appendChild": 1, + "html5": 3, + "shivDocument": 3, + "shived": 5, + "ownerDocument.documentShived": 2, + "html5.shivCSS": 1, + "options.elements": 1, + "options.shivCSS": 1, + "options.shivMethods": 1, + "Modernizr._version": 1, + "Modernizr._prefixes": 1, + "Modernizr._domPrefixes": 1, + "Modernizr._cssomPrefixes": 1, + "Modernizr.mq": 1, + "Modernizr.hasEvent": 1, + "Modernizr.testProp": 1, + "Modernizr.testAllProps": 1, + "Modernizr.testStyles": 1, + "Modernizr.prefixed": 1, + "docElement.className.replace": 1, + "js": 1, + "classes.join": 1, + "this.document": 1, + "PEG.parser": 1, + "quote": 3, + "result0": 264, + "result1": 81, + "result2": 77, + "parse_singleQuotedCharacter": 3, + "result1.push": 3, + "input.charCodeAt": 18, + "pos": 197, + "reportFailures": 64, + "matchFailed": 40, + "pos1": 63, + "chars": 1, + "chars.join": 1, + "pos0": 51, + "parse_simpleSingleQuotedCharacter": 2, + "parse_simpleEscapeSequence": 3, + "parse_zeroEscapeSequence": 3, + "parse_hexEscapeSequence": 3, + "parse_unicodeEscapeSequence": 3, + "parse_eolEscapeSequence": 3, + "pos2": 22, + "parse_eolChar": 6, + "input.length": 9, + "input.charAt": 21, + "char_": 9, + "parse_class": 1, + "result3": 35, + "result4": 12, + "result5": 4, + "parse_classCharacterRange": 3, + "parse_classCharacter": 5, + "result2.push": 1, + "parse___": 2, + "inverted": 4, + "partsConverted": 2, + "part.data": 1, + "rawText": 5, + "part.rawText": 1, + "ignoreCase": 1, + "begin": 1, + "begin.data.charCodeAt": 1, + "end.data.charCodeAt": 1, + "this.SyntaxError": 2, + "begin.rawText": 2, + "end.rawText": 2, + "begin.data": 1, + "end.data": 1, + "parse_bracketDelimitedCharacter": 2, + "quoteForRegexpClass": 1, + "parse_simpleBracketDelimitedCharacter": 2, + "parse_digit": 3, + "recognize": 1, + "input.substr": 9, + "parse_hexDigit": 7, + "String.fromCharCode": 4, + "parse_eol": 4, + "eol": 2, + "parse_letter": 1, + "parse_lowerCaseLetter": 2, + "parse_upperCaseLetter": 2, + "parse_whitespace": 3, + "parse_comment": 3, + "result0.push": 1, + "parse_singleLineComment": 2, + "parse_multiLineComment": 2, + "u2029": 2, + "x0B": 1, + "uFEFF": 1, + "u1680": 1, + "u180E": 1, + "u2000": 1, + "u200A": 1, + "u202F": 1, + "u205F": 1, + "u3000": 1, + "cleanupExpected": 2, + "expected": 12, + "expected.sort": 1, + "lastExpected": 3, + "cleanExpected": 2, + "expected.length": 4, + "cleanExpected.push": 1, + "computeErrorPosition": 2, + "line": 14, + "column": 8, + "seenCR": 5, + "rightmostFailuresPos": 2, + "parseFunctions": 1, + "startRule": 1, + "errorPosition": 1, + "rightmostFailuresExpected": 1, + "errorPosition.line": 1, + "errorPosition.column": 1, + "toSource": 1, + "this._source": 1, + "result.SyntaxError": 1, + "buildMessage": 2, + "expectedHumanized": 5, + "foundHumanized": 3, + "expected.slice": 1, + "this.expected": 1, + "this.found": 1, + "this.message": 3, + "this.line": 3, + "this.column": 1, + "result.SyntaxError.prototype": 1, + "Error.prototype": 1, + "steelseries": 10, + "n.charAt": 1, + "n.substring": 1, + "i.substring": 3, + "this.color": 1, + "ui": 31, + "/255": 1, + "t.getRed": 4, + "t.getGreen": 4, + "t.getBlue": 4, + "t.getAlpha": 4, + "i.getRed": 1, + "i.getGreen": 1, + "i.getBlue": 1, + "i.getAlpha": 1, + "*f": 2, + "w/r": 1, + "p/r": 1, + "s/r": 1, + "o/r": 1, + "e*u": 1, + ".toFixed": 3, + "l*u": 1, + "c*u": 1, + "h*u": 1, + "vr": 20, + "Math.floor": 26, + "Math.log10": 1, + "n/Math.pow": 1, + "": 1, + "beginPath": 12, + "moveTo": 10, + "lineTo": 22, + "quadraticCurveTo": 4, + "closePath": 8, + "stroke": 7, + "canvas": 22, + "width=": 17, + "height=": 17, + "ii": 29, + "getContext": 26, + "2d": 26, + "ft": 70, + "fillStyle=": 13, + "rect": 3, + "fill": 10, + "getImageData": 1, + "wt": 26, + "32": 1, + "62": 1, + "84": 1, + "94": 1, + "ar": 20, + "255": 3, + "max": 1, + "min": 2, + ".5": 7, + "u/": 3, + "/u": 3, + "f/": 1, + "vt": 50, + "n*6": 2, + "i*": 3, + "h*t": 1, + "*t": 3, + "f*255": 1, + "u*255": 1, + "r*255": 1, + "st": 59, + "n/255": 1, + "t/255": 1, + "i/255": 1, + "f/r": 1, + "/f": 3, + "<0?0:n>": 1, + "si": 23, + "ti": 39, + "Math.round": 7, + "/r": 1, + "u*r": 1, + "ni": 30, + "tt": 53, + "ei": 26, + "ot": 43, + "i.gaugeType": 6, + "steelseries.GaugeType.TYPE4": 2, + "i.size": 6, + "i.minValue": 10, + "i.maxValue": 10, + "i.niceScale": 10, + "i.threshold": 10, + "/2": 25, + "i.section": 8, + "i.area": 4, + "lu": 10, + "i.titleString": 10, + "au": 10, + "i.unitString": 10, + "hu": 11, + "i.frameDesign": 10, + "steelseries.FrameDesign.METAL": 7, + "wu": 9, + "i.frameVisible": 10, + "i.backgroundColor": 10, + "steelseries.BackgroundColor.DARK_GRAY": 7, + "i.backgroundVisible": 10, + "pt": 48, + "i.pointerType": 4, + "steelseries.PointerType.TYPE1": 3, + "i.pointerColor": 4, + "steelseries.ColorDef.RED": 7, + "ee": 2, + "i.knobType": 4, + "steelseries.KnobType.STANDARD_KNOB": 14, + "fi": 26, + "i.knobStyle": 4, + "steelseries.KnobStyle.SILVER": 4, + "i.lcdColor": 8, + "steelseries.LcdColor.STANDARD": 9, + "i.lcdVisible": 8, + "eu": 13, + "i.lcdDecimals": 8, + "ye": 2, + "i.digitalFont": 8, + "pe": 2, + "i.fractionalScaleDecimals": 4, + "i.ledColor": 10, + "steelseries.LedColor.RED_LED": 7, + "ru": 14, + "i.ledVisible": 10, + "vf": 5, + "i.thresholdVisible": 8, + "kr": 17, + "i.minMeasuredValueVisible": 8, + "dr": 16, + "i.maxMeasuredValueVisible": 8, + "i.foregroundType": 6, + "steelseries.ForegroundType.TYPE1": 5, + "af": 5, + "i.foregroundVisible": 10, + "oe": 2, + "i.labelNumberFormat": 10, + "steelseries.LabelNumberFormat.STANDARD": 5, + "yr": 17, + "i.playAlarm": 10, + "uf": 5, + "i.alarmSound": 10, + "fe": 2, + "i.customLayer": 4, + "le": 1, + "i.tickLabelOrientation": 4, + "steelseries.GaugeType.TYPE1": 4, + "steelseries.TickLabelOrientation.TANGENT": 2, + "steelseries.TickLabelOrientation.NORMAL": 2, + "wr": 18, + "i.trendVisible": 4, + "hr": 17, + "i.trendColors": 4, + "steelseries.LedColor.GREEN_LED": 2, + "steelseries.LedColor.CYAN_LED": 2, + "sr": 21, + "i.useOdometer": 2, + "i.odometerParams": 2, + "wf": 4, + "i.odometerUseValue": 2, + "ki": 21, + "r.createElement": 11, + "ki.setAttribute": 2, + "yf": 3, + "ri": 24, + "ht": 34, + "ef": 5, + "steelseries.TrendState.OFF": 4, + "lr": 19, + "f*.06": 1, + "f*.29": 19, + "er": 19, + "f*.36": 4, + "et": 45, + "gi": 26, + "rr": 21, + "*lt": 9, + "r.getElementById": 7, + "u.save": 7, + "u.clearRect": 5, + "u.canvas.width": 7, + "u.canvas.height": 7, + "s/2": 2, + "k/2": 1, + "pf": 4, + ".6*s": 1, + "ne": 2, + ".4*k": 1, + "pr": 16, + "s/10": 1, + "ae": 2, + "hf": 4, + "k*.13": 2, + "s*.4": 1, + "sf": 5, + "rf": 5, + "k*.57": 1, + "tf": 5, + "k*.61": 1, + "Math.PI/2": 40, + "ue": 1, + "Math.PI/180": 5, + "ff": 5, + "ir": 23, + "nr": 22, + "ai": 21, + "yt": 32, + "fr": 21, + "oi": 23, + "lf": 5, + "re": 2, + "ai/": 2, + "h/vt": 1, + "*vt": 4, + "Math.ceil": 63, + "b/vt": 1, + "vt/": 3, + "ot.type": 10, + "Math.PI": 13, + "at/yt": 4, + "*Math.PI": 10, + "*ue": 1, + "ci/2": 1, + "wi": 24, + "nf": 7, + "wi.getContext": 2, + "di": 22, + "ut": 59, + "di.getContext": 2, + "fu": 13, + "hi": 15, + "f*.093457": 10, + "uu": 13, + "hi.getContext": 6, + "gt": 32, + "nu": 11, + "gt.getContext": 3, + "iu": 14, + "f*.028037": 6, + "se": 1, + "iu.getContext": 1, + "gr": 12, + "he": 1, + "gr.getContext": 1, + "vi": 16, + "tu": 13, + "vi.getContext": 2, + "yi": 17, + "ou": 13, + "yi.getContext": 2, + "pi": 24, + "kt": 24, + "pi.getContext": 2, + "pu": 9, + "li.getContext": 6, + "gu": 9, + "du": 10, + "ku": 9, + "yu": 10, + "su": 12, + "tr.getContext": 1, + "kf": 3, + "u.textAlign": 2, + "u.strokeStyle": 2, + "ei.textColor": 2, + "u.fillStyle": 2, + "steelseries.LcdColor.STANDARD_GREEN": 4, + "u.shadowColor": 2, + "u.shadowOffsetX": 2, + "s*.007": 3, + "u.shadowOffsetY": 2, + "u.shadowBlur": 2, + "u.font": 2, + "u.fillText": 2, + "n.toFixed": 2, + "bi*.05": 1, + "hf*.5": 1, + "pr*.38": 1, + "bi*.9": 1, + "u.restore": 6, + "te": 2, + "n.save": 35, + "n.drawImage": 14, + "k*.037383": 11, + "s*.523364": 2, + "k*.130841": 1, + "s*.130841": 1, + "k*.514018": 2, + "s*.831775": 1, + "k*.831775": 1, + "s*.336448": 1, + "k*.803738": 2, + "s*.626168": 1, + "n.restore": 35, + "ie": 2, + "t.width": 2, + "f*.046728": 1, + "t.height": 2, + "t.width*.9": 4, + "t.getContext": 2, + "n.createLinearGradient": 17, + ".1": 18, + "t.height*.9": 6, + "i.addColorStop": 27, + ".3": 8, + ".59": 4, + "n.fillStyle": 36, + "n.beginPath": 39, + "n.moveTo": 37, + "t.width*.5": 4, + "n.lineTo": 33, + "t.width*.1": 2, + "n.closePath": 34, + "n.fill": 17, + "n.strokeStyle": 27, + "n.stroke": 31, + "vu": 10, + "": 1, + "": 1, + "n.lineWidth": 30, + "s*.035": 2, + "at/yt*t": 1, + "at/yt*h": 1, + "yt/at": 1, + "n.translate": 93, + "n.rotate": 53, + "n.arc": 6, + "s*.365": 2, + "n.lineWidth/2": 2, + "df": 3, + "bt.labelColor.setAlpha": 1, + "n.textAlign": 12, + "n.textBaseline": 10, + "s*.04": 1, + "n.font": 34, + "bt.labelColor.getRgbaColor": 2, + "lt*fr": 1, + "s*.38": 2, + "s*.35": 1, + "s*.355": 1, + "s*.36": 1, + "s*.3": 1, + "s*.1": 1, + "oi/2": 2, + "b.toFixed": 1, + "c.toFixed": 2, + "le.type": 1, + "t.format": 7, + "n.fillText": 54, + "e.toFixed": 2, + "e.toPrecision": 1, + "n.frame": 22, + "n.background": 22, + "n.led": 20, + "n.pointer": 10, + "n.foreground": 22, + "n.trend": 4, + "n.odo": 2, + "rt": 45, + "uu.drawImage": 1, + "nu.drawImage": 3, + "se.drawImage": 1, + "steelseries.ColorDef.BLUE.dark.getRgbaColor": 6, + "he.drawImage": 1, + "steelseries.ColorDef.RED.medium.getRgbaColor": 6, + "ii.length": 2, + ".start": 12, + ".stop": 11, + ".color": 13, + "ui.length": 2, + "ut.save": 1, + "ut.translate": 3, + "ut.rotate": 1, + "ut.drawImage": 2, + "s*.475": 1, + "ut.restore": 1, + "steelseries.Odometer": 1, + "_context": 1, + "f*.075": 1, + "decimals": 1, + "wt.decimals": 1, + "wt.digits": 2, + "valueForeColor": 1, + "wt.valueForeColor": 1, + "valueBackColor": 1, + "wt.valueBackColor": 1, + "decimalForeColor": 1, + "wt.decimalForeColor": 1, + "decimalBackColor": 1, + "wt.decimalBackColor": 1, + "font": 1, + "wt.font": 1, + "tr.width": 1, + "nt": 75, + "bt.labelColor": 2, + "pt.type": 6, + "steelseries.TrendState.UP": 2, + "steelseries.TrendState.STEADY": 2, + "steelseries.TrendState.DOWN": 2, + "dt": 30, + "wi.width": 1, + "wi.height": 1, + "di.width": 1, + "di.height": 1, + "hi.width": 3, + "hi.height": 3, + "gt.width": 2, + "gt.height": 1, + "vi.width": 1, + "vi.height": 1, + "yi.width": 1, + "yi.height": 1, + "pi.width": 1, + "pi.height": 1, + "li.width": 3, + "li.height": 3, + "gf": 2, + "yf.repaint": 1, + "ur": 20, + "e3": 5, + "this.setValue": 7, + "": 5, + "ki.pause": 1, + "ki.play": 1, + "this.repaint": 126, + "this.getValue": 7, + "this.setOdoValue": 1, + "this.getOdoValue": 1, + "this.setValueAnimated": 7, + "t.playing": 1, + "t.stop": 1, + "Tween": 11, + "Tween.regularEaseInOut": 6, + "t.onMotionChanged": 1, + "n.target._pos": 7, + "": 1, + "i.repaint": 1, + "t.start": 1, + "this.resetMinMeasuredValue": 4, + "this.resetMaxMeasuredValue": 4, + "this.setMinMeasuredValueVisible": 4, + "this.setMaxMeasuredValueVisible": 4, + "this.setMaxMeasuredValue": 3, + "this.setMinMeasuredValue": 3, + "this.setTitleString": 4, + "this.setUnitString": 4, + "this.setMinValue": 4, + "this.getMinValue": 3, + "this.setMaxValue": 3, + "this.getMaxValue": 4, + "this.setThreshold": 4, + "this.setArea": 1, + "foreground": 30, + "this.setSection": 4, + "this.setThresholdVisible": 4, + "this.setLcdDecimals": 3, + "this.setFrameDesign": 7, + "this.setBackgroundColor": 7, + "pointer": 28, + "this.setForegroundType": 5, + "this.setPointerType": 3, + "this.setPointerColor": 4, + "this.setLedColor": 5, + "led": 18, + "this.setLcdColor": 5, + "this.setTrend": 2, + "this.setTrendVisible": 2, + "trend": 2, + "odo": 1, + "u.drawImage": 22, + "cu.setValue": 1, + "of.state": 1, + "u.translate": 8, + "u.rotate": 4, + "u.canvas.width*.4865": 2, + "u.canvas.height*.105": 2, + "s*.006": 1, + "kt.clearRect": 1, + "kt.save": 1, + "kt.translate": 2, + "kt.rotate": 1, + "kt.drawImage": 1, + "kt.restore": 1, + "i.useSectionColors": 4, + "i.valueColor": 6, + "i.valueGradient": 4, + "i.useValueGradient": 4, + "yi.setAttribute": 2, + "e/2": 2, + "ut/2": 4, + "e/10": 3, + "ut*.13": 1, + "e*.4": 1, + "or/2": 1, + "e*.116822": 3, + "e*.485981": 3, + "s*.093457": 5, + "e*.53": 1, + "ut*.61": 1, + "s*.06": 1, + "s*.57": 1, + "dt.type": 4, + "l/Math.PI*180": 4, + "l/et": 8, + "Math.PI/3": 1, + "ft/2": 2, + "Math.PI/": 1, + "ai.getContext": 2, + "s*.060747": 2, + "s*.023364": 2, + "ri.getContext": 6, + "yt.getContext": 5, + "si.getContext": 4, + "ci/": 2, + "f/ht": 1, + "*ht": 8, + "h/ht": 1, + "ht/": 2, + "*kt": 5, + "angle": 1, + "*st": 1, + "n.value": 4, + "tu.drawImage": 1, + "gr.drawImage": 3, + "at.getImageData": 1, + "at.drawImage": 1, + "bt.length": 4, + "ii.push": 1, + "Math.abs": 19, + "ai.width": 1, + "ai.height": 1, + "ri.width": 3, + "ri.height": 3, + "yt.width": 2, + "yt.height": 2, + "si.width": 2, + "si.height": 2, + "s*.085": 1, + "e*.35514": 2, + ".107476*ut": 1, + ".897195*ut": 1, + "t.addColorStop": 6, + ".22": 1, + ".76": 1, + "s*.075": 1, + ".112149*ut": 1, + ".892523*ut": 1, + "r.addColorStop": 6, + "e*.060747": 2, + "e*.023364": 2, + "n.createRadialGradient": 4, + ".030373*e": 1, + "u.addColorStop": 14, + "i*kt": 1, + "n.rect": 4, + "n.canvas.width": 3, + "n.canvas.height": 3, + "n.canvas.width/2": 6, + "n.canvas.height/2": 4, + "u.createRadialGradient": 1, + "t.light.getRgbaColor": 2, + "t.dark.getRgbaColor": 2, + "ni.textColor": 2, + "e*.007": 5, + "oi*.05": 1, + "or*.5": 1, + "cr*.38": 1, + "oi*.9": 1, + "ei.labelColor.setAlpha": 1, + "e*.04": 1, + "ei.labelColor.getRgbaColor": 2, + "st*di": 1, + "e*.28": 1, + "e*.1": 1, + "e*.0375": 1, + "h.toFixed": 3, + "df.type": 1, + "u.toFixed": 2, + "u.toPrecision": 1, + "kf.repaint": 1, + "": 3, + "yi.pause": 1, + "yi.play": 1, + "ti.playing": 1, + "ti.stop": 1, + "ti.onMotionChanged": 1, + "t.repaint": 4, + "ti.start": 1, + "this.setValueColor": 3, + "this.setSectionActive": 2, + "this.setGradient": 2, + "this.setGradientActive": 2, + "useGradient": 2, + "n/lt*": 1, + "vi.getEnd": 1, + "vi.getStart": 1, + "s/c": 1, + "vi.getColorAt": 1, + ".getRgbaColor": 3, + "": 1, + "e.medium.getHexColor": 1, + "i.medium.getHexColor": 1, + "n*kt": 1, + "pu.state": 1, + "i.orientation": 2, + "steelseries.Orientation.NORTH": 2, + "hi.setAttribute": 2, + "steelseries.GaugeType.TYPE5": 1, + "kt/at": 2, + "f.clearRect": 2, + "f.canvas.width": 3, + "f.canvas.height": 3, + "h/2": 1, + "k*.733644": 1, + ".455*h": 1, + ".51*k": 1, + "bi/": 2, + "l/ot": 1, + "*ot": 2, + "d/ot": 1, + "ot/": 1, + "ui.getContext": 4, + "u*.093457": 10, + "ii.getContext": 5, + "st.getContext": 2, + "u*.028037": 6, + "hr.getContext": 1, + "er.getContext": 1, + "fi.getContext": 4, + "kr.type": 1, + "ft.type": 1, + "h*.44": 3, + "k*.8": 1, + "k*.16": 1, + "h*.2": 2, + "k*.446666": 2, + "h*.8": 1, + "u*.046728": 1, + "h*.035": 1, + "kt/at*t": 1, + "kt/at*l": 1, + "at/kt": 1, + "h*.365": 2, + "it.labelColor.getRgbaColor": 4, + "vertical": 1, + ".046728*h": 1, + "n.measureText": 2, + ".width": 2, + "k*.4": 1, + "h*.3": 1, + "k*.47": 1, + "it.labelColor.setAlpha": 1, + "steelseries.Orientation.WEST": 6, + "h*.04": 1, + "ht*yi": 1, + "h*.41": 1, + "h*.415": 1, + "h*.42": 1, + "h*.48": 1, + "h*.0375": 1, + "d.toFixed": 1, + "f.toFixed": 1, + "i.toFixed": 2, + "i.toPrecision": 1, + "u/2": 5, + "cr.drawImage": 3, + "ar.drawImage": 1, + "or.drawImage": 1, + "or.restore": 1, + "rr.drawImage": 1, + "rr.restore": 1, + "gt.length": 2, + "p.save": 2, + "p.translate": 8, + "p.rotate": 4, + "p.restore": 3, + "ni.length": 2, + "p.drawImage": 1, + "h*.475": 1, + "k*.32": 1, + "h*1.17": 2, + "it.labelColor": 2, + "ut.type": 6, + "ui.width": 2, + "ui.height": 2, + "ii.width": 2, + "ii.height": 2, + "st.width": 1, + "st.height": 1, + "fi.width": 2, + "fi.height": 2, + "wu.repaint": 1, + "": 2, + "hi.pause": 1, + "hi.play": 1, + "dt.playing": 2, + "dt.stop": 2, + "dt.onMotionChanged": 2, + "": 1, + "dt.start": 2, + "f.save": 5, + "f.drawImage": 9, + "f.translate": 10, + "f.rotate": 5, + "f.canvas.width*.4865": 2, + "f.canvas.height*.27": 2, + "f.restore": 5, + "h*.006": 1, + "h*1.17/2": 1, + "et.clearRect": 1, + "et.save": 1, + "et.translate": 2, + "et.rotate": 1, + "et.drawImage": 1, + "et.restore": 1, + "i.width": 6, + "i.height": 6, + "fi.setAttribute": 2, + "l.type": 26, + "y.clearRect": 2, + "y.canvas.width": 3, + "y.canvas.height": 3, + "*.05": 4, + "f/2": 13, + "it/2": 2, + ".053": 1, + ".038": 1, + "*u": 1, + "u/22": 2, + ".89*f": 2, + "u/10": 2, + "ei/": 1, + "e/ut": 1, + "*ut": 2, + "s/ut": 1, + "ut/": 1, + "kt.getContext": 2, + "rt.getContext": 2, + "dt.getContext": 1, + "ni.getContext": 4, + "lt.textColor": 2, + "n.shadowColor": 2, + "n.shadowOffsetX": 4, + "u*.003": 2, + "n.shadowOffsetY": 4, + "n.shadowBlur": 4, + "u*.004": 1, + "u*.007": 2, + "u*.009": 1, + "f*.571428": 8, + "u*.88": 2, + "u*.055": 2, + "f*.7": 2, + "f*.695": 4, + "f*.18": 4, + "u*.22": 3, + "u*.15": 2, + "t.toFixed": 2, + "i.getContext": 2, + "t.save": 2, + "t.createLinearGradient": 2, + "i.height*.9": 6, + "t.fillStyle": 2, + "t.beginPath": 4, + "t.moveTo": 4, + "i.height*.5": 2, + "t.lineTo": 8, + "i.width*.9": 6, + "t.closePath": 4, + "i.width*.5": 2, + "t.fill": 2, + "t.strokeStyle": 2, + "t.stroke": 2, + "t.restore": 2, + "w.labelColor.setAlpha": 1, + "f*.1": 5, + "w.labelColor.getRgbaColor": 2, + ".34*f": 2, + ".36*f": 6, + ".33*f": 2, + ".32*f": 2, + "u*.12864": 3, + "u*.856796": 1, + "u*.7475": 1, + "c/": 2, + ".65*u": 1, + ".63*u": 3, + ".66*u": 1, + ".67*u": 1, + "f*.142857": 4, + "f*.871012": 2, + "f*.19857": 1, + "f*.82": 1, + "v/": 1, + "tickCounter": 4, + "currentPos": 20, + "tickCounter*a": 2, + "r.toFixed": 8, + "f*.28": 6, + "r.toPrecision": 4, + "u*.73": 3, + "ui/2": 1, + "vi.drawImage": 2, + "yi.drawImage": 2, + "hr.drawImage": 2, + "k.save": 1, + ".856796": 2, + ".7475": 2, + ".12864": 2, + "u*i": 1, + "u*r*": 1, + "bt/": 1, + "k.translate": 2, + "f*.365": 2, + "nt/2": 2, + ".871012": 3, + ".82": 2, + ".142857": 5, + ".19857": 6, + "f*r*bt/": 1, + "f*": 5, + "u*.58": 1, + "k.drawImage": 3, + "k.restore": 1, + "kt.width": 1, + "b*.093457": 2, + "kt.height": 1, + "d*.093457": 2, + "rt.width": 1, + "rt.height": 1, + "ni.width": 2, + "ni.height": 2, + "hu.repaint": 1, + "w.labelColor": 1, + "i*.12864": 2, + "i*.856796": 2, + "i*.7475": 1, + "t*.871012": 1, + "t*.142857": 8, + "t*.82": 1, + "t*.19857": 1, + "steelseries.BackgroundColor.CARBON": 2, + "steelseries.BackgroundColor.PUNCHED_SHEET": 2, + "steelseries.BackgroundColor.STAINLESS": 2, + "steelseries.BackgroundColor.BRUSHED_STAINLESS": 2, + "steelseries.BackgroundColor.TURNED": 2, + "r.setAlpha": 8, + ".05": 2, + "p.addColorStop": 4, + "r.getRgbaColor": 8, + ".15": 2, + ".48": 7, + ".49": 4, + "n.fillRect": 16, + "t*.435714": 4, + "i*.435714": 4, + "i*.142857": 1, + "b.addColorStop": 4, + ".69": 1, + ".7": 1, + ".4": 2, + "t*.007142": 4, + "t*.571428": 2, + "i*.007142": 4, + "i*.571428": 2, + "t*.45": 4, + "t*.114285": 1, + "t/2": 1, + "i*.0486/2": 1, + "i*.053": 1, + "i*.45": 4, + "i*.114285": 1, + "i/2": 1, + "t*.025": 1, + "t*.053": 1, + "ut.addColorStop": 2, + "wt.medium.getRgbaColor": 3, + "wt.light.getRgbaColor": 2, + "i*.05": 2, + "t*.05": 2, + "ot.addColorStop": 2, + ".98": 1, + "Math.PI*.5": 2, + "f*.05": 2, + ".049*t": 8, + ".825*t": 9, + "n.bezierCurveTo": 42, + ".7975*t": 2, + ".0264*t": 4, + ".775*t": 3, + ".0013*t": 12, + ".85*t": 2, + ".8725*t": 3, + ".0365*t": 9, + ".8075*t": 4, + ".7925*t": 3, + ".0214*t": 13, + ".7875*t": 4, + ".7825*t": 5, + ".0189*t": 4, + ".785*t": 1, + ".8175*t": 2, + ".815*t": 1, + ".8125*t": 2, + ".8*t": 2, + ".0377*t": 2, + ".86*t": 4, + ".0415*t": 2, + ".845*t": 1, + ".0465*t": 2, + ".805*t": 2, + ".0113*t": 10, + ".0163*t": 7, + ".8025*t": 1, + ".8225*t": 3, + ".8425*t": 1, + ".03*t": 2, + ".115*t": 5, + ".1075*t": 2, + ".1025*t": 8, + ".0038*t": 2, + ".76*t": 4, + ".7675*t": 2, + ".7725*t": 6, + ".34": 1, + ".0516*t": 7, + ".8525*t": 2, + ".0289*t": 8, + ".875*t": 3, + ".044*t": 1, + ".0314*t": 5, + ".12*t": 4, + ".0875*t": 3, + ".79*t": 1, + "": 5, + "fi.pause": 1, + "fi.play": 1, + "yt.playing": 1, + "yt.stop": 1, + "yt.onMotionChanged": 1, + "t.setValue": 1, + "yt.start": 1, + "mminMeasuredValue": 1, + "": 1, + "setMaxValue=": 1, + "y.drawImage": 6, + "u*n": 2, + "u*i*": 2, + "at/": 1, + "f*.34": 3, + "gt.height/2": 2, + "f*i*at/": 1, + "u*.65": 2, + "ft/": 1, + "dt.width": 1, + "dt.height/2": 2, + ".8": 1, + ".14857": 1, + "f*i*ft/": 1, + "y.save": 1, + "y.restore": 1, + "oi.setAttribute": 2, + "v.clearRect": 2, + "v.canvas.width": 4, + "v.canvas.height": 4, + ".053*e": 1, + "e/22": 2, + "e/1.95": 1, + "u/vt": 1, + "s/vt": 1, + "g.width": 4, + "f*.121428": 2, + "g.height": 4, + "e*.012135": 2, + "f*.012135": 2, + "e*.121428": 2, + "g.getContext": 2, + "d.width": 4, + "d.height": 4, + "d.getContext": 2, + "pt.getContext": 2, + "ci.getContext": 1, + "kt.textColor": 2, + "f*.007": 2, + "f*.009": 1, + "e*.009": 1, + "e*.88": 2, + "e*.055": 2, + "e*.22": 3, + "e*.15": 2, + "k.labelColor.setAlpha": 1, + "k.labelColor.getRgbaColor": 5, + "e*.12864": 3, + "e*.856796": 3, + ".65*e": 1, + ".63*e": 3, + ".66*e": 1, + ".67*e": 1, + "g/": 1, + "tickCounter*h": 2, + "e*.73": 3, + "ti/2": 1, + "n.bargraphled": 4, + "nr.drawImage": 2, + "tr.drawImage": 2, + "nt.save": 1, + "e*.728155*": 1, + "st/": 1, + "nt.translate": 2, + "rt/2": 2, + "f*.856796": 2, + "f*.12864": 2, + "*st/": 1, + "e*.58": 1, + "nt.drawImage": 3, + "nt.restore": 1, + "f*.012135/2": 1, + "ft.push": 1, + "*c": 2, + "y*.121428": 2, + "w*.012135": 2, + "y*.012135": 2, + "w*.121428": 2, + "y*.093457": 2, + "w*.093457": 2, + "pt.width": 1, + "pt.height": 1, + "ku.repaint": 1, + "k.labelColor": 1, + "r*": 2, + "r*1.014": 5, + "t*.856796": 1, + "t*.12864": 1, + "t*.13": 3, + "r*1.035": 4, + "f.setAlpha": 8, + ".047058": 2, + "rt.addColorStop": 4, + "f.getRgbaColor": 8, + ".145098": 1, + ".149019": 1, + "t*.15": 1, + "i*.152857": 1, + ".298039": 1, + "it.addColorStop": 4, + ".686274": 1, + ".698039": 1, + "i*.851941": 1, + "t*.121428": 1, + "i*.012135": 1, + "t*.012135": 1, + "i*.121428": 1, + "*r": 4, + "o/r*": 1, + "yt.getEnd": 2, + "yt.getStart": 2, + "lt/ct": 2, + "yt.getColorAt": 2, + "": 1, + "st.medium.getHexColor": 2, + "a.medium.getHexColor": 2, + "b/2": 2, + "e/r*": 1, + "": 1, + "v.createRadialGradient": 2, + "": 5, + "oi.pause": 1, + "oi.play": 1, + "": 1, + "bargraphled": 3, + "v.drawImage": 2, + "": 1, + "856796": 4, + "728155": 2, + "34": 2, + "12864": 2, + "142857": 2, + "65": 2, + "drawImage": 12, + "save": 27, + "restore": 14, + "repaint": 23, + "dr=": 1, + "128": 2, + "48": 1, + "w=": 4, + "lcdColor": 4, + "LcdColor": 4, + "STANDARD": 3, + "pt=": 5, + "lcdDecimals": 4, + "lt=": 4, + "unitString": 4, + "at=": 3, + "unitStringVisible": 4, + "ht=": 6, + "digitalFont": 4, + "bt=": 3, + "valuesNumeric": 4, + "ct=": 5, + "autoScroll": 2, + "section": 2, + "wt=": 3, + "getElementById": 4, + "clearRect": 8, + "v=": 5, + "floor": 13, + "ot=": 4, + "sans": 12, + "serif": 13, + "it=": 7, + "nt=": 5, + "et=": 6, + "kt=": 4, + "textAlign=": 7, + "strokeStyle=": 8, + "clip": 1, + "font=": 28, + "measureText": 4, + "toFixed": 3, + "fillText": 23, + "38": 5, + "o*.2": 1, + "<=o-4&&(e=0,c=!1),u.fillText(n,o-2-e,h*.5+v*.38)),u.restore()},dt=function(n,i,r,u){var>": 1, + "rt=": 3, + "095": 1, + "createLinearGradient": 6, + "addColorStop": 25, + "4c4c4c": 1, + "08": 1, + "666666": 2, + "92": 1, + "e6e6e6": 1, + "gradientStartColor": 1, + "tt=": 3, + "gradientFraction1Color": 1, + "gradientFraction2Color": 1, + "gradientFraction3Color": 1, + "gradientStopColor": 1, + "yt=": 4, + "31": 26, + "ut=": 6, + "rgb": 6, + "03": 1, + "49": 1, + "57": 1, + "83": 1, + "wt.repaint": 1, + "resetBuffers": 1, + "this.setScrolling": 1, + "w.textColor": 1, + "": 1, + "<=f[n].stop){t=et[n],i=ut[n];break}u.drawImage(t,0,0),kt(a,i)},this.repaint(),this},wr=function(n,t){t=t||{};var>": 1, + "64": 1, + "875": 2, + "textBaseline=": 4, + "textColor": 2, + "STANDARD_GREEN": 1, + "shadowColor=": 1, + "shadowOffsetX=": 1, + "05": 2, + "shadowOffsetY=": 1, + "shadowBlur=": 1, + "06": 1, + "46": 1, + "8": 2, + "setValue=": 2, + "setLcdColor=": 2, + "repaint=": 2, + "br=": 1, + "200": 2, + "st=": 3, + "decimalsVisible": 2, + "gt=": 1, + "textOrientationFixed": 2, + "frameDesign": 4, + "FrameDesign": 2, + "METAL": 2, + "frameVisible": 4, + "backgroundColor": 2, + "BackgroundColor": 1, + "DARK_GRAY": 1, + "vt=": 2, + "backgroundVisible": 2, + "pointerColor": 4, + "ColorDef": 2, + "RED": 1, + "foregroundType": 4, + "ForegroundType": 2, + "TYPE1": 2, + "foregroundVisible": 4, + "180": 26, + "ni=": 1, + "labelColor": 6, + "getRgbaColor": 21, + "translate": 38, + "360": 15, + "p.labelColor.getRgbaColor": 4, + "f*.38": 7, + "f*.37": 3, + "": 1, + "rotate": 31, + "u00b0": 8, + "41": 3, + "45": 5, + "25": 9, + "085": 4, + "100": 4, + "90": 3, + "21": 2, + "u221e": 2, + "135": 1, + "225": 1, + "75": 3, + "270": 1, + "315": 1, + "ti=": 2, + "200934": 2, + "434579": 4, + "163551": 5, + "560747": 4, + "lineWidth=": 6, + "lineCap=": 5, + "lineJoin=": 5, + "471962": 4, + "205607": 1, + "523364": 5, + "799065": 2, + "836448": 5, + "794392": 1, + "ii=": 2, + "350467": 5, + "130841": 1, + "476635": 2, + "bezierCurveTo": 6, + "490654": 3, + "345794": 3, + "509345": 1, + "154205": 1, + "350466": 1, + "dark": 2, + "light": 5, + "setAlpha": 8, + "70588": 4, + "59": 3, + "dt=": 2, + "285046": 5, + "514018": 6, + "21028": 1, + "481308": 4, + "280373": 3, + "495327": 2, + "504672": 2, + "224299": 1, + "289719": 1, + "714953": 5, + "789719": 1, + "719626": 3, + "7757": 1, + "71028": 1, + "ft=": 3, + "*10": 2, + "": 2, + "": 2, + "": 2, + "": 2, + "<-90&&e>": 2, + "<-180&&e>": 2, + "<-270&&e>": 2, + "d.playing": 2, + "d.stop": 2, + "d.onMotionChanged": 2, + "d.start": 2, + "s.save": 4, + "s.clearRect": 3, + "s.canvas.width": 4, + "s.canvas.height": 4, + "s.drawImage": 8, + "e*kt": 1, + "s.translate": 6, + "s.rotate": 3, + "s.fillStyle": 1, + "s.textAlign": 1, + "s.textBaseline": 1, + "s.restore": 6, + "s.font": 2, + "f*.15": 2, + "s.fillText": 2, + "f*.35": 26, + "f*.2": 1, + "k*Math.PI/180": 1, + "u.size": 4, + "u.frameDesign": 4, + "u.frameVisible": 4, + "u.backgroundColor": 4, + "u.backgroundVisible": 4, + "u.pointerType": 2, + "steelseries.PointerType.TYPE2": 1, + "u.pointerColor": 4, + "u.knobType": 4, + "u.knobStyle": 4, + "u.foregroundType": 4, + "u.foregroundVisible": 4, + "u.pointSymbols": 4, + "u.customLayer": 4, + "u.degreeScale": 4, + "u.roseVisible": 4, + "ft.getContext": 2, + "ut.getContext": 2, + "it.getContext": 2, + "ot.getContext": 3, + "et.getContext": 2, + "tt.labelColor.getRgbaColor": 2, + ".08*f": 1, + "f*.033": 1, + "st*10": 2, + ".substring": 2, + ".12*f": 2, + ".06*f": 2, + "tt.symbolColor.getRgbaColor": 1, + "st*2.5": 1, + "bt.type": 1, + "f*.53271": 6, + "e*.453271": 5, + "f*.5": 17, + "e*.149532": 8, + "f*.467289": 6, + "f*.453271": 2, + "e*.462616": 2, + "f*.443925": 9, + "e*.481308": 2, + "e*.5": 10, + "f*.556074": 9, + "f*.546728": 2, + ".471962*f": 5, + ".528036*f": 5, + "o.addColorStop": 4, + "h.light.getRgbaColor": 6, + ".46": 3, + ".47": 3, + "h.medium.getRgbaColor": 6, + "h.dark.getRgbaColor": 3, + "n.lineCap": 5, + "n.lineJoin": 5, + "e*.546728": 5, + "e*.850467": 4, + "e*.537383": 2, + "e*.518691": 2, + "s.addColorStop": 4, + "e*.490654": 2, + "e*.53271": 2, + "e*.556074": 3, + "e*.495327": 4, + "f*.528037": 2, + "f*.471962": 2, + "e*.504672": 4, + ".480099": 1, + "f*.006": 2, + "ft.width": 1, + "ft.height": 1, + "ut.width": 1, + "ut.height": 1, + "it.width": 1, + "it.height": 1, + "ot.width": 1, + "ot.height": 1, + "et.width": 1, + "et.height": 1, + "Tween.elasticEaseOut": 1, + "r.repaint": 1, + "this.setPointSymbols": 1, + "p*st": 1, + "b.clearRect": 1, + "b.save": 1, + "b.translate": 2, + "b.rotate": 1, + "b.drawImage": 1, + "b.restore": 1, + "u.pointerTypeLatest": 2, + "u.pointerTypeAverage": 2, + "steelseries.PointerType.TYPE8": 1, + "u.pointerColorAverage": 2, + "steelseries.ColorDef.BLUE": 1, + "u.lcdColor": 2, + "u.lcdVisible": 2, + "u.digitalFont": 2, + "u.section": 2, + "u.area": 2, + "u.lcdTitleStrings": 2, + "u.titleString": 2, + "u.useColorLabels": 2, + "this.valueLatest": 1, + "this.valueAverage": 1, + "Math.PI*2": 1, + "e.save": 2, + "e.clearRect": 1, + "e.canvas.width": 2, + "e.canvas.height": 2, + "f/10": 1, + "f*.3": 4, + "s*.12": 1, + "s*.32": 1, + "s*.565": 1, + "bt.getContext": 1, + "at.getContext": 1, + "vt.getContext": 1, + "lt.getContext": 1, + "wt.getContext": 1, + "e.textAlign": 1, + "e.strokeStyle": 1, + "ht.textColor": 2, + "e.fillStyle": 1, + "<0&&(n+=360),n=\"00\"+Math.round(n),n=n.substring(n.length,n.length-3),(ht===steelseries.LcdColor.STANDARD||ht===steelseries.LcdColor.STANDARD_GREEN)&&(e.shadowColor=\"gray\",e.shadowOffsetX=f*.007,e.shadowOffsetY=f*.007,e.shadowBlur=f*.007),e.font=pr?gr:br,e.fillText(n+\"\\u00b0\",f/2+gt*.05,(t?or:cr)+er*.5+ui*.38,gt*.9),e.restore()},wi=function(n,t,i,r,u){n.save(),n.strokeStyle=r,n.fillStyle=r,n.lineWidth=f*.035;var>": 1, + "arc": 2, + "365": 2, + "lineWidth": 1, + "lr=": 1, + "35": 1, + "355": 1, + "36": 2, + "bold": 1, + "04": 2, + "ct*5": 1, + "k.symbolColor.getRgbaColor": 1, + "ct*2.5": 1, + "ti.length": 1, + "kt.medium.getRgbaColor": 1, + ".04*f": 1, + "s*.29": 1, + "ii.medium.getRgbaColor": 1, + "s*.71": 1, + "rr.length": 1, + ".0467*f": 1, + "s*.5": 1, + "et.length": 2, + "ft.length": 2, + "": 1, + "ci=": 1, + "li=": 1, + "ai=": 1, + "ki=": 1, + "yi=": 1, + "setValueLatest=": 1, + "getValueLatest=": 1, + "setValueAverage=": 1, + "getValueAverage=": 1, + "setValueAnimatedLatest=": 1, + "playing": 2, + "regularEaseInOut": 2, + "onMotionChanged=": 2, + "_pos": 2, + "onMotionFinished=": 2, + "setValueAnimatedAverage=": 1, + "setArea=": 1, + "setSection=": 1, + "setFrameDesign=": 1, + "pi=": 1, + "setBackgroundColor=": 1, + "setForegroundType=": 1, + "si=": 1, + "setPointerColor=": 1, + "setPointerColorAverage=": 1, + "setPointerType=": 1, + "setPointerTypeAverage=": 1, + "ri=": 1, + "setPointSymbols=": 1, + "setLcdTitleStrings=": 1, + "fi=": 1, + "006": 1, + "ei=": 1, + "ru=": 1, + "WHITE": 1, + "037383": 1, + "056074": 1, + "7fd5f0": 2, + "3c4439": 2, + "72": 1, + "KEYWORDS": 2, + "array_to_hash": 11, + "RESERVED_WORDS": 2, + "KEYWORDS_BEFORE_EXPRESSION": 2, + "KEYWORDS_ATOM": 2, + "OPERATOR_CHARS": 1, + "RE_HEX_NUMBER": 1, + "RE_OCT_NUMBER": 1, + "RE_DEC_NUMBER": 1, + "OPERATORS": 2, + "WHITESPACE_CHARS": 2, + "PUNC_BEFORE_EXPRESSION": 2, + "PUNC_CHARS": 1, + "REGEXP_MODIFIERS": 1, + "UNICODE": 1, + "non_spacing_mark": 1, + "space_combining_mark": 1, + "connector_punctuation": 1, + "is_letter": 3, + "UNICODE.letter.test": 1, + "is_digit": 3, + "ch.charCodeAt": 1, + "//XXX": 1, + "out": 1, + "means": 1, + "is_alphanumeric_char": 3, + "is_unicode_combining_mark": 2, + "UNICODE.non_spacing_mark.test": 1, + "UNICODE.space_combining_mark.test": 1, + "is_unicode_connector_punctuation": 2, + "UNICODE.connector_punctuation.test": 1, + "is_identifier_start": 2, + "is_identifier_char": 1, + "zero": 2, + "joiner": 2, + "": 1, + "": 1, + "my": 1, + "ECMA": 1, + "PDF": 1, + "parse_js_number": 2, + "RE_HEX_NUMBER.test": 1, + "num.substr": 2, + "RE_OCT_NUMBER.test": 1, + "RE_DEC_NUMBER.test": 1, + "JS_Parse_Error": 2, + "message": 5, + "this.col": 2, + "ex": 3, + "ex.name": 1, + "this.stack": 2, + "ex.stack": 1, + "JS_Parse_Error.prototype.toString": 1, + "js_error": 2, + "is_token": 1, + "token": 5, + "token.type": 1, + "token.value": 1, + "EX_EOF": 3, + "tokenizer": 2, + "TEXT": 1, + "TEXT.replace": 1, + "uFEFF/": 1, + "tokpos": 1, + "tokline": 1, + "tokcol": 1, + "newline_before": 1, + "regex_allowed": 1, + "comments_before": 1, + "peek": 5, + "S.text.charAt": 2, + "S.pos": 4, + "signal_eof": 4, + "S.newline_before": 3, + "S.line": 2, + "S.col": 3, + "eof": 6, + "S.peek": 1, + "what": 2, + "S.text.indexOf": 1, + "start_token": 1, + "S.tokline": 3, + "S.tokcol": 3, + "S.tokpos": 3, + "is_comment": 2, + "S.regex_allowed": 1, + "HOP": 5, + "UNARY_POSTFIX": 1, + "nlb": 1, + "ret.comments_before": 1, + "S.comments_before": 2, + "skip_whitespace": 1, + "read_while": 2, + "pred": 2, + "parse_error": 3, + "read_num": 1, + "prefix": 6, + "has_e": 3, + "after_e": 5, + "has_x": 5, + "has_dot": 3, + "valid": 4, + "read_escaped_char": 1, + "hex_bytes": 3, + "digit": 3, + "read_string": 1, + "with_eof_error": 1, + "comment1": 1, + "Unterminated": 2, + "multiline": 1, + "comment2": 1, + "WARNING": 1, + "***": 1, + "Found": 1, + "warn": 3, + "tok": 1, + "read_name": 1, + "backslash": 2, + "Expecting": 1, + "UnicodeEscapeSequence": 1, + "uXXXX": 1, + "Unicode": 1, + "identifier": 1, + "regular": 1, + "regexp": 5, + "operator": 14, + "punc": 27, + "atom": 5, + "keyword": 11, + "Unexpected": 3, + "void": 1, + "<\",>": 1, + "<=\",>": 1, + "debugger": 2, + "const": 2, + "stat": 1, + "Label": 1, + "without": 1, + "statement": 1, + "defun": 1, + "Name": 1, + "Missing": 1, + "catch/finally": 1, + "blocks": 1, + "unary": 2, + "dot": 2, + "postfix": 1, + "Invalid": 2, + "binary": 1, + "conditional": 1, + "assign": 1, + "assignment": 1, + "seq": 1, + "member": 2, + "array.length": 1, + "Object.prototype.hasOwnProperty.call": 1, + "exports.tokenizer": 1, + "exports.parse": 1, + "parse": 1, + "exports.slice": 1, + "exports.curry": 1, + "curry": 1, + "exports.member": 1, + "exports.array_to_hash": 1, + "exports.PRECEDENCE": 1, + "PRECEDENCE": 1, + "exports.KEYWORDS_ATOM": 1, + "exports.RESERVED_WORDS": 1, + "exports.KEYWORDS": 1, + "exports.ATOMIC_START_TOKEN": 1, + "ATOMIC_START_TOKEN": 1, + "exports.OPERATORS": 1, + "exports.is_alphanumeric_char": 1, + "exports.set_logger": 1, + "logger": 2 + }, + "JSON": { + "{": 143, + "}": 143, + "[": 165, + "]": 165, + "true": 3 + }, + "Julia": { + "##": 5, + "Test": 1, + "case": 1, + "from": 1, + "Issue": 1, + "#445": 1, + "#STOCKCORR": 1, + "-": 11, + "The": 1, + "original": 1, + "unoptimised": 1, + "code": 1, + "that": 1, + "simulates": 1, + "two": 2, + "correlated": 1, + "assets": 1, + "function": 1, + "stockcorr": 1, + "(": 13, + ")": 13, + "Correlated": 1, + "asset": 1, + "information": 1, + "CurrentPrice": 3, + "[": 20, + "]": 20, + "#": 11, + "Initial": 1, + "Prices": 1, + "of": 6, + "the": 2, + "stocks": 1, + "Corr": 2, + ";": 1, + "Correlation": 1, + "Matrix": 2, + "T": 5, + "Number": 2, + "days": 3, + "to": 1, + "simulate": 1, + "years": 1, + "n": 4, + "simulations": 1, + "dt": 3, + "/250": 1, + "Time": 1, + "step": 1, + "year": 1, + "Div": 3, + "Dividend": 1, + "Vol": 5, + "Volatility": 1, + "Market": 1, + "Information": 1, + "r": 3, + "Risk": 1, + "free": 1, + "rate": 1, + "Define": 1, + "storages": 1, + "SimulPriceA": 5, + "zeros": 2, + "Simulated": 2, + "Price": 2, + "Asset": 2, + "A": 1, + "SimulPriceB": 5, + "B": 1, + "Generating": 1, + "paths": 1, + "stock": 1, + "prices": 1, + "by": 2, + "Geometric": 1, + "Brownian": 1, + "Motion": 1, + "UpperTriangle": 2, + "chol": 1, + "Cholesky": 1, + "decomposition": 1, + "for": 2, + "i": 5, + "Wiener": 1, + "randn": 1, + "CorrWiener": 1, + "Wiener*UpperTriangle": 1, + "j": 7, + "*exp": 2, + "/2": 2, + "*dt": 2, + "+": 2, + "*sqrt": 2, + "*CorrWiener": 2, + "end": 3, + "return": 1 + }, + "Kotlin": { + "package": 1, + "addressbook": 1, + "class": 5, + "Contact": 1, + "(": 15, + "val": 16, + "name": 2, + "String": 7, + "emails": 1, + "List": 3, + "": 1, + "addresses": 1, + "": 1, + "phonenums": 1, + "": 1, + ")": 15, + "EmailAddress": 1, + "user": 1, + "host": 1, + "PostalAddress": 1, + "streetAddress": 1, + "city": 1, + "zip": 1, + "state": 2, + "USState": 1, + "country": 3, + "Country": 7, + "{": 6, + "assert": 1, + "null": 3, + "xor": 1, + "Countries": 2, + "[": 3, + "]": 3, + "}": 6, + "PhoneNumber": 1, + "areaCode": 1, + "Int": 1, + "number": 1, + "Long": 1, + "object": 1, + "fun": 1, + "get": 2, + "id": 2, + "CountryID": 1, + "countryTable": 2, + "private": 2, + "var": 1, + "table": 5, + "Map": 2, + "": 2, + "if": 1, + "HashMap": 1, + "for": 1, + "line": 3, + "in": 1, + "TextFile": 1, + ".lines": 1, + "stripWhiteSpace": 1, + "true": 1, + "return": 1 + }, + "Lasso": { + "<": 7, + "LassoScript": 1, + "//": 169, + "JSON": 2, + "Encoding": 1, + "and": 52, + "Decoding": 1, + "Copyright": 1, + "-": 2248, + "LassoSoft": 1, + "Inc.": 1, + "": 1, + "": 1, + "": 1, + "This": 5, + "tag": 11, + "is": 35, + "now": 23, + "incorporated": 1, + "in": 46, + "Lasso": 15, + "If": 4, + "(": 640, + "Lasso_TagExists": 1, + ")": 639, + "False": 1, + ";": 573, + "Define_Tag": 1, + "Namespace": 1, + "Required": 1, + "Optional": 1, + "Local": 7, + "Map": 3, + "r": 8, + "n": 30, + "t": 8, + "f": 2, + "b": 2, + "output": 30, + "newoptions": 1, + "options": 2, + "array": 20, + "set": 10, + "list": 4, + "queue": 2, + "priorityqueue": 2, + "stack": 2, + "pair": 1, + "map": 23, + "[": 22, + "]": 23, + "literal": 3, + "string": 59, + "integer": 30, + "decimal": 5, + "boolean": 4, + "null": 26, + "date": 23, + "temp": 12, + "object": 7, + "{": 18, + "}": 18, + "client_ip": 1, + "client_address": 1, + "__jsonclass__": 6, + "deserialize": 2, + "": 3, + "": 3, + "Decode_JSON": 2, + "Decode_": 1, + "value": 14, + "consume_string": 1, + "ibytes": 9, + "unescapes": 1, + "u": 1, + "UTF": 4, + "%": 14, + "QT": 4, + "TZ": 2, + "T": 3, + "consume_token": 1, + "obytes": 3, + "delimit": 7, + "true": 12, + "false": 8, + ".": 5, + "consume_array": 1, + "consume_object": 1, + "key": 3, + "val": 1, + "native": 2, + "comment": 2, + "http": 6, + "//www.lassosoft.com/json": 1, + "start": 5, + "Literal": 2, + "String": 1, + "Object": 2, + "JSON_RPCCall": 1, + "RPCCall": 1, + "JSON_": 1, + "method": 7, + "params": 11, + "id": 7, + "host": 6, + "//localhost/lassoapps.8/rpc/rpc.lasso": 1, + "request": 2, + "result": 6, + "JSON_Records": 3, + "KeyField": 1, + "ReturnField": 1, + "ExcludeField": 1, + "Fields": 1, + "_fields": 1, + "fields": 2, + "No": 1, + "found": 5, + "for": 65, + "_keyfield": 4, + "keyfield": 4, + "ID": 1, + "_index": 1, + "_return": 1, + "returnfield": 1, + "_exclude": 1, + "excludefield": 1, + "_records": 1, + "_record": 1, + "_temp": 1, + "_field": 1, + "_output": 1, + "error_msg": 15, + "error_code": 11, + "found_count": 11, + "rows": 1, + "#_records": 1, + "Return": 7, + "@#_output": 1, + "/Define_Tag": 1, + "/If": 3, + "define": 20, + "trait_json_serialize": 2, + "trait": 1, + "require": 1, + "asString": 3, + "json_serialize": 18, + "e": 13, + "bytes": 8, + "+": 146, + "#e": 13, + "Replace": 19, + "&": 21, + "json_literal": 1, + "asstring": 4, + "format": 7, + "gmt": 1, + "|": 13, + "trait_forEach": 1, + "local": 116, + "foreach": 1, + "#output": 50, + "#delimit": 7, + "#1": 3, + "return": 75, + "with": 25, + "pr": 1, + "eachPair": 1, + "select": 1, + "#pr": 2, + "first": 12, + "second": 8, + "join": 5, + "json_object": 2, + "foreachpair": 1, + "any": 14, + "serialize": 1, + "json_consume_string": 3, + "while": 9, + "#temp": 19, + "#ibytes": 17, + "export8bits": 6, + "#obytes": 5, + "import8bits": 4, + "Escape": 1, + "/while": 7, + "unescape": 1, + "//Replace": 1, + "if": 76, + "BeginsWith": 1, + "&&": 30, + "EndsWith": 1, + "Protect": 1, + "serialization_reader": 1, + "xml": 1, + "read": 1, + "/Protect": 1, + "else": 32, + "size": 24, + "or": 6, + "regexp": 1, + "d": 2, + "Z": 1, + "matches": 1, + "Format": 1, + "yyyyMMdd": 2, + "HHmmssZ": 1, + "HHmmss": 1, + "/if": 53, + "json_consume_token": 2, + "marker": 4, + "Is": 1, + "also": 5, + "end": 2, + "of": 24, + "token": 1, + "//............................................................................": 2, + "string_IsNumeric": 1, + "json_consume_array": 3, + "While": 1, + "Discard": 1, + "whitespace": 3, + "Else": 7, + "insert": 18, + "#key": 12, + "json_consume_object": 2, + "Loop_Abort": 1, + "/While": 1, + "Find": 3, + "isa": 25, + "First": 4, + "find": 57, + "Second": 1, + "json_deserialize": 1, + "removeLeading": 1, + "bom_utf8": 1, + "Reset": 1, + "on": 1, + "provided": 1, + "**/": 1, + "type": 63, + "parent": 5, + "public": 1, + "onCreate": 1, + "...": 3, + "..onCreate": 1, + "#rest": 1, + "json_rpccall": 1, + "#id": 2, + "#host": 4, + "Lasso_UniqueID": 1, + "Include_URL": 1, + "PostParams": 1, + "Encode_JSON": 1, + "#method": 1, + "#params": 5, + "": 6, + "2009": 14, + "09": 10, + "04": 8, + "JS": 126, + "Added": 40, + "content_body": 14, + "compatibility": 4, + "pre": 4, + "8": 6, + "5": 4, + "05": 4, + "07": 6, + "timestamp": 4, + "to": 98, + "knop_cachestore": 4, + "maxage": 2, + "parameter": 8, + "knop_cachefetch": 4, + "Corrected": 8, + "construction": 2, + "cache_name": 2, + "internally": 2, + "the": 86, + "knop_cache": 2, + "tags": 14, + "so": 16, + "it": 20, + "will": 12, + "work": 6, + "correctly": 2, + "at": 10, + "site": 4, + "root": 2, + "2008": 6, + "11": 8, + "dummy": 2, + "knop_debug": 4, + "ctype": 2, + "be": 38, + "able": 14, + "transparently": 2, + "without": 4, + "L": 2, + "Debug": 2, + "24": 2, + "knop_stripbackticks": 2, + "01": 4, + "28": 2, + "Cache": 2, + "name": 32, + "used": 12, + "when": 10, + "using": 8, + "session": 4, + "storage": 8, + "2007": 6, + "12": 8, + "knop_cachedelete": 2, + "Created": 4, + "03": 2, + "knop_foundrows": 2, + "condition": 4, + "returning": 2, + "normal": 2, + "For": 2, + "lasso_tagexists": 4, + "define_tag": 48, + "namespace=": 12, + "__html_reply__": 4, + "define_type": 14, + "debug": 2, + "_unknowntag": 6, + "onconvert": 2, + "stripbackticks": 2, + "description=": 2, + "priority=": 2, + "required=": 2, + "input": 2, + "split": 2, + "@#output": 2, + "/define_tag": 36, + "description": 34, + "namespace": 16, + "priority": 8, + "Johan": 2, + "S": 2, + "lve": 2, + "#charlist": 6, + "current": 10, + "time": 8, + "a": 52, + "mixed": 2, + "up": 4, + "as": 26, + "seed": 6, + "#seed": 36, + "convert": 4, + "this": 14, + "base": 6, + "conversion": 4, + "get": 12, + "#base": 8, + "/": 6, + "over": 2, + "new": 14, + "chunk": 2, + "millisecond": 2, + "math_random": 2, + "lower": 2, + "upper": 2, + "__lassoservice_ip__": 2, + "response_localpath": 8, + "removetrailing": 8, + "response_filepath": 8, + "//tagswap.net/found_rows": 2, + "action_statement": 2, + "string_findregexp": 8, + "#sql": 42, + "ignorecase": 12, + "||": 8, + "maxrecords_value": 2, + "inaccurate": 2, + "must": 4, + "accurate": 2, + "Default": 2, + "usually": 2, + "fastest.": 2, + "Can": 2, + "not": 10, + "GROUP": 4, + "BY": 6, + "example.": 2, + "normalize": 4, + "around": 2, + "FROM": 2, + "expression": 6, + "string_replaceregexp": 8, + "replace": 8, + "ReplaceOnlyOne": 2, + "substring": 6, + "remove": 6, + "ORDER": 2, + "statement": 4, + "since": 4, + "causes": 4, + "problems": 2, + "field": 26, + "aliases": 2, + "we": 2, + "can": 14, + "simple": 2, + "later": 2, + "query": 4, + "contains": 2, + "use": 10, + "SQL_CALC_FOUND_ROWS": 2, + "which": 2, + "much": 2, + "slower": 2, + "see": 16, + "//bugs.mysql.com/bug.php": 2, + "removeleading": 2, + "inline": 4, + "sql": 2, + "exit": 2, + "here": 2, + "normally": 2, + "/inline": 2, + "fallback": 4, + "required": 10, + "optional": 36, + "local_defined": 26, + "knop_seed": 2, + "#RandChars": 4, + "Get": 2, + "Math_Random": 2, + "Min": 2, + "Max": 2, + "Size": 2, + "#value": 14, + "#numericValue": 4, + "length": 8, + "#cryptvalue": 10, + "#anyChar": 2, + "Encrypt_Blowfish": 2, + "decrypt_blowfish": 2, + "String_Remove": 2, + "StartPosition": 2, + "EndPosition": 2, + "Seed": 2, + "String_IsAlphaNumeric": 2, + "self": 72, + "_date_msec": 4, + "/define_type": 4, + "seconds": 4, + "default": 4, + "store": 4, + "all": 6, + "page": 14, + "vars": 8, + "specified": 8, + "iterate": 12, + "keys": 6, + "var": 38, + "#item": 10, + "#type": 26, + "#data": 14, + "/iterate": 12, + "//fail_if": 6, + "session_id": 6, + "#session": 10, + "session_addvar": 4, + "#cache_name": 72, + "duration": 4, + "#expires": 4, + "server_name": 6, + "initiate": 10, + "thread": 6, + "RW": 6, + "lock": 24, + "global": 40, + "Thread_RWLock": 6, + "create": 6, + "reference": 10, + "@": 8, + "writing": 6, + "#lock": 12, + "writelock": 4, + "check": 6, + "cache": 4, + "unlock": 6, + "writeunlock": 4, + "#maxage": 4, + "cached": 8, + "data": 12, + "too": 4, + "old": 4, + "reading": 2, + "readlock": 2, + "readunlock": 2, + "ignored": 2, + "//##################################################################": 4, + "knoptype": 2, + "All": 4, + "Knop": 6, + "custom": 8, + "types": 10, + "should": 4, + "have": 6, + "identify": 2, + "registered": 2, + "knop": 6, + "isknoptype": 2, + "knop_knoptype": 2, + "prototype": 4, + "version": 4, + "14": 4, + "Base": 2, + "framework": 2, + "Contains": 2, + "common": 4, + "member": 10, + "Used": 2, + "boilerplate": 2, + "creating": 4, + "other": 4, + "instance": 8, + "variables": 2, + "are": 4, + "available": 2, + "well": 2, + "CHANGE": 4, + "NOTES": 4, + "Syntax": 4, + "adjustments": 4, + "9": 2, + "Changed": 6, + "error": 22, + "numbers": 2, + "added": 10, + "even": 2, + "language": 10, + "already": 2, + "exists.": 2, + "improved": 4, + "reporting": 2, + "messages": 6, + "such": 2, + "from": 6, + "bad": 2, + "database": 14, + "queries": 2, + "error_lang": 2, + "provide": 2, + "knop_lang": 8, + "add": 12, + "localized": 2, + "except": 2, + "knop_base": 8, + "html": 4, + "xhtml": 28, + "help": 10, + "nicely": 2, + "formatted": 2, + "output.": 2, + "Centralized": 2, + "knop_base.": 2, + "Moved": 6, + "codes": 2, + "improve": 2, + "documentation.": 2, + "It": 2, + "always": 2, + "an": 8, + "parameter.": 2, + "trace": 2, + "tagtime": 4, + "was": 6, + "nav": 4, + "earlier": 2, + "varname": 4, + "retreive": 2, + "variable": 8, + "that": 18, + "stored": 2, + "in.": 2, + "automatically": 2, + "sense": 2, + "doctype": 6, + "exists": 2, + "buffer.": 2, + "The": 6, + "performance.": 2, + "internal": 2, + "html.": 2, + "Introduced": 2, + "_knop_data": 10, + "general": 2, + "level": 2, + "caching": 2, + "between": 2, + "different": 2, + "objects.": 2, + "TODO": 2, + "option": 2, + "Google": 2, + "Code": 2, + "Wiki": 2, + "working": 2, + "properly": 4, + "run": 2, + "by": 12, + "atbegin": 2, + "handler": 2, + "explicitly": 2, + "*/": 2, + "entire": 4, + "ms": 2, + "defined": 4, + "each": 8, + "instead": 4, + "avoid": 2, + "recursion": 2, + "properties": 4, + "#endslash": 10, + "#tags": 2, + "#t": 2, + "doesn": 4, + "p": 2, + "Parameters": 4, + "nParameters": 2, + "Internal.": 2, + "Finds": 2, + "out": 2, + "used.": 2, + "Looks": 2, + "unless": 2, + "array.": 2, + "variable.": 2, + "Looking": 2, + "#xhtmlparam": 4, + "plain": 2, + "#doctype": 4, + "copy": 4, + "standard": 2, + "code": 2, + "errors": 12, + "error_data": 12, + "form": 2, + "grid": 2, + "lang": 2, + "user": 4, + "#error_lang": 12, + "addlanguage": 4, + "strings": 6, + "@#errorcodes": 2, + "#error_lang_custom": 2, + "#custom_language": 10, + "once": 4, + "one": 2, + "#custom_string": 4, + "#errorcodes": 4, + "#error_code": 10, + "message": 6, + "getstring": 2, + "test": 2, + "known": 2, + "lasso": 2, + "knop_timer": 2, + "knop_unique": 2, + "look": 2, + "#varname": 6, + "loop_abort": 2, + "tag_name": 2, + "#timer": 2, + "#trace": 4, + "merge": 2, + "#eol": 8, + "2010": 4, + "23": 4, + "Custom": 2, + "interact": 2, + "databases": 2, + "Supports": 4, + "both": 2, + "MySQL": 2, + "FileMaker": 2, + "datasources": 2, + "2012": 4, + "06": 2, + "10": 2, + "SP": 4, + "Fix": 2, + "precision": 2, + "bug": 2, + "6": 2, + "0": 2, + "1": 2, + "renderfooter": 2, + "15": 2, + "Add": 2, + "support": 6, + "Thanks": 2, + "Ric": 2, + "Lewis": 2, + "settable": 4, + "removed": 2, + "table": 6, + "nextrecord": 12, + "deprecation": 2, + "warning": 2, + "corrected": 2, + "verification": 2, + "index": 4, + "before": 4, + "calling": 2, + "resultset_count": 6, + "break": 2, + "versions": 2, + "fixed": 4, + "incorrect": 2, + "debug_trace": 2, + "addrecord": 4, + "how": 2, + "keyvalue": 10, + "returned": 6, + "adding": 2, + "records": 4, + "inserting": 2, + "generated": 2, + "suppressed": 2, + "specifying": 2, + "saverecord": 8, + "deleterecord": 4, + "case.": 2, + "recorddata": 6, + "no": 2, + "longer": 2, + "touch": 2, + "current_record": 2, + "zero": 2, + "access": 2, + "occurrence": 2, + "same": 4, + "returns": 4, + "knop_databaserows": 2, + "inlinename.": 4, + "next.": 2, + "remains": 2, + "supported": 2, + "backwards": 2, + "compatibility.": 2, + "resets": 2, + "record": 20, + "pointer": 8, + "reaching": 2, + "last": 4, + "honors": 2, + "incremented": 2, + "recordindex": 4, + "specific": 2, + "found.": 2, + "getrecord": 8, + "REALLY": 2, + "works": 4, + "keyvalues": 4, + "double": 2, + "oops": 4, + "I": 4, + "thought": 2, + "but": 2, + "misplaced": 2, + "paren...": 2, + "corresponding": 2, + "resultset": 2, + "/resultset": 2, + "through": 2, + "handling": 2, + "better": 2, + "knop_user": 4, + "keeplock": 4, + "updates": 2, + "datatype": 2, + "knop_databaserow": 2, + "iterated.": 2, + "When": 2, + "iterating": 2, + "row": 2, + "values.": 2, + "Addedd": 2, + "increments": 2, + "recordpointer": 2, + "called": 2, + "until": 2, + "reached.": 2, + "Returns": 2, + "long": 2, + "there": 2, + "more": 2, + "records.": 2, + "Useful": 2, + "loop": 2, + "example": 2, + "below": 2, + "Implemented": 2, + "reset": 2, + "query.": 2, + "shortcut": 2, + "Removed": 2, + "onassign": 2, + "touble": 2, + "Extended": 2, + "field_names": 2, + "names": 4, + "db": 2, + "objects": 2, + "never": 2, + "been": 2, + "optionally": 2, + "supports": 2, + "sql.": 2, + "Make": 2, + "sure": 2, + "SQL": 2, + "includes": 2, + "relevant": 2, + "lockfield": 2, + "locking": 4, + "capturesearchvars": 2, + "mysteriously": 2, + "after": 2, + "operations": 2, + "caused": 2, + "errors.": 2, + "flag": 2, + "save": 2, + "locked": 2, + "releasing": 2, + "Adding": 2, + "progress.": 2, + "Done": 2, + "oncreate": 2, + "getrecord.": 2, + "documentation": 2, + "most": 2, + "existing": 2, + "it.": 2, + "Faster": 2, + "than": 2, + "scratch.": 2, + "shown_first": 2, + "again": 2, + "hoping": 2, + "s": 2, + "only": 2, + "captured": 2, + "update": 2, + "uselimit": 2, + "querys": 2, + "LIMIT": 2, + "still": 2, + "gets": 2, + "proper": 2, + "searchresult": 2, + "separate": 2, + "COUNT": 2 + }, + "Less": { + "@blue": 4, + "#3bbfce": 1, + ";": 7, + "@margin": 3, + "px": 1, + ".content": 1, + "-": 3, + "navigation": 1, + "{": 2, + "border": 2, + "color": 3, + "darken": 1, + "(": 1, + "%": 1, + ")": 1, + "}": 2, + ".border": 1, + "padding": 1, + "/": 2, + "margin": 1 + }, + "LFE": { + ";": 213, + "Copyright": 4, + "(": 217, + "c": 4, + ")": 231, + "Duncan": 4, + "McGreggor": 4, + "": 2, + "Licensed": 3, + "under": 9, + "the": 36, + "Apache": 3, + "License": 12, + "Version": 3, + "you": 3, + "may": 6, + "not": 5, + "use": 6, + "this": 3, + "file": 6, + "except": 3, + "in": 10, + "compliance": 3, + "with": 8, + "License.": 6, + "You": 3, + "obtain": 3, + "a": 8, + "copy": 3, + "of": 10, + "at": 4, + "http": 4, + "//www.apache.org/licenses/LICENSE": 3, + "-": 98, + "Unless": 3, + "required": 3, + "by": 4, + "applicable": 3, + "law": 3, + "or": 6, + "agreed": 3, + "to": 10, + "writing": 3, + "software": 3, + "distributed": 6, + "is": 5, + "on": 4, + "an": 5, + "BASIS": 3, + "WITHOUT": 3, + "WARRANTIES": 3, + "OR": 3, + "CONDITIONS": 3, + "OF": 3, + "ANY": 3, + "KIND": 3, + "either": 3, + "express": 3, + "implied.": 3, + "See": 3, + "for": 5, + "specific": 3, + "language": 3, + "governing": 3, + "permissions": 3, + "and": 7, + "limitations": 3, + "File": 4, + "church.lfe": 1, + "Author": 3, + "Purpose": 3, + "Demonstrating": 2, + "church": 20, + "numerals": 1, + "from": 2, + "lambda": 18, + "calculus": 1, + "The": 4, + "code": 2, + "below": 3, + "was": 1, + "used": 1, + "create": 4, + "section": 1, + "user": 1, + "guide": 1, + "here": 1, + "//lfe.github.io/user": 1, + "guide/recursion/5.html": 1, + "Here": 1, + "some": 2, + "example": 2, + "usage": 1, + "slurp": 2, + "five/0": 2, + "int2": 1, + "get": 21, + "defmodule": 2, + "export": 2, + "all": 1, + "defun": 20, + "zero": 2, + "s": 19, + "x": 12, + "one": 1, + "funcall": 23, + "two": 1, + "three": 1, + "four": 1, + "five": 1, + "int": 2, + "successor": 3, + "n": 4, + "+": 2, + "int1": 1, + "numeral": 8, + "#": 3, + "successor/1": 1, + "count": 7, + "limit": 4, + "cond": 1, + "/": 1, + "integer": 2, + "*": 6, + "Mode": 1, + "LFE": 4, + "Code": 1, + "Paradigms": 1, + "Artificial": 1, + "Intelligence": 1, + "Programming": 1, + "Peter": 1, + "Norvig": 1, + "gps1.lisp": 1, + "First": 1, + "version": 1, + "GPS": 1, + "General": 1, + "Problem": 1, + "Solver": 1, + "Converted": 1, + "Robert": 3, + "Virding": 3, + "Define": 1, + "macros": 1, + "global": 2, + "variable": 2, + "access.": 1, + "This": 2, + "hack": 1, + "very": 1, + "naughty": 1, + "defsyntax": 2, + "defvar": 2, + "[": 3, + "name": 8, + "val": 2, + "]": 3, + "let": 6, + "v": 3, + "put": 1, + "getvar": 3, + "solved": 1, + "gps": 1, + "state": 4, + "goals": 2, + "Set": 1, + "variables": 1, + "but": 1, + "existing": 1, + "*ops*": 1, + "*state*": 5, + "current": 1, + "list": 13, + "conditions.": 1, + "if": 1, + "every": 1, + "fun": 1, + "achieve": 1, + "op": 8, + "action": 3, + "setvar": 2, + "set": 1, + "difference": 1, + "del": 5, + "union": 1, + "add": 3, + "drive": 1, + "son": 2, + "school": 2, + "preconds": 4, + "shop": 6, + "installs": 1, + "battery": 1, + "car": 1, + "works": 1, + "make": 2, + "communication": 2, + "telephone": 1, + "have": 3, + "phone": 1, + "book": 1, + "give": 1, + "money": 3, + "has": 1, + "mnesia_demo.lfe": 1, + "A": 1, + "simple": 4, + "Mnesia": 2, + "demo": 2, + "LFE.": 1, + "contains": 1, + "using": 1, + "access": 1, + "tables.": 1, + "It": 1, + "shows": 2, + "how": 2, + "emp": 1, + "XXXX": 1, + "macro": 1, + "ETS": 1, + "match": 5, + "pattern": 1, + "together": 1, + "mnesia": 8, + "match_object": 1, + "specifications": 1, + "select": 1, + "Query": 2, + "List": 2, + "Comprehensions.": 1, + "mnesia_demo": 1, + "new": 2, + "by_place": 1, + "by_place_ms": 1, + "by_place_qlc": 2, + "defrecord": 1, + "person": 8, + "place": 7, + "job": 3, + "Start": 1, + "table": 2, + "we": 1, + "will": 1, + "memory": 1, + "only": 1, + "schema.": 1, + "start": 1, + "create_table": 1, + "attributes": 1, + "Initialise": 1, + "table.": 1, + "people": 1, + "spec": 1, + "p": 2, + "j": 2, + "when": 1, + "tuple": 1, + "transaction": 2, + "f": 3, + "Use": 1, + "Comprehensions": 1, + "records": 1, + "q": 2, + "qlc": 2, + "lc": 1, + "<": 1, + "e": 1, + "object.lfe": 1, + "OOP": 1, + "closures": 1, + "object": 16, + "system": 1, + "demonstrated": 1, + "do": 2, + "following": 2, + "objects": 2, + "call": 2, + "methods": 5, + "those": 1, + "which": 1, + "can": 1, + "other": 1, + "update": 1, + "instance": 2, + "Note": 1, + "however": 1, + "that": 1, + "his": 1, + "does": 1, + "demonstrate": 1, + "inheritance.": 1, + "To": 1, + "cd": 1, + "examples": 1, + "../bin/lfe": 1, + "pa": 1, + "../ebin": 1, + "Load": 1, + "fish": 6, + "class": 3, + "#Fun": 1, + "": 1, + "Execute": 1, + "basic": 1, + "species": 7, + "mommy": 3, + "move": 4, + "Carp": 1, + "swam": 1, + "feet": 1, + "ok": 1, + "id": 9, + "Now": 1, + "strictly": 1, + "necessary.": 1, + "When": 1, + "isn": 1, + "children": 10, + "formatted": 1, + "verb": 2, + "self": 6, + "distance": 2, + "erlang": 1, + "length": 1, + "method": 7, + "define": 1, + "info": 1, + "reproduce": 1 + }, + "Literate CoffeeScript": { + "The": 2, + "**Scope**": 2, + "class": 2, + "regulates": 1, + "lexical": 1, + "scoping": 1, + "within": 2, + "CoffeeScript.": 1, + "As": 1, + "you": 2, + "generate": 1, + "code": 1, + "create": 1, + "a": 8, + "tree": 1, + "of": 4, + "scopes": 1, + "in": 2, + "the": 12, + "same": 1, + "shape": 1, + "as": 3, + "nested": 1, + "function": 2, + "bodies.": 1, + "Each": 1, + "scope": 2, + "knows": 1, + "about": 1, + "variables": 3, + "declared": 2, + "it": 4, + "and": 5, + "has": 1, + "reference": 3, + "to": 8, + "its": 3, + "parent": 2, + "enclosing": 1, + "scope.": 2, + "In": 1, + "this": 3, + "way": 1, + "we": 4, + "know": 1, + "which": 3, + "are": 3, + "new": 2, + "need": 2, + "be": 2, + "with": 3, + "var": 4, + "shared": 1, + "external": 1, + "scopes.": 1, + "Import": 1, + "helpers": 1, + "plan": 1, + "use.": 1, + "{": 4, + "extend": 1, + "last": 1, + "}": 4, + "require": 1, + "exports.Scope": 1, + "Scope": 1, + "root": 1, + "is": 3, + "top": 2, + "-": 5, + "level": 1, + "object": 1, + "for": 3, + "given": 1, + "file.": 1, + "@root": 1, + "null": 1, + "Initialize": 1, + "lookups": 1, + "up": 1, + "chain": 1, + "well": 1, + "**Block**": 1, + "node": 1, + "belongs": 2, + "where": 1, + "should": 1, + "declare": 1, + "that": 2, + "to.": 1, + "constructor": 1, + "(": 5, + "@parent": 2, + "@expressions": 1, + "@method": 1, + ")": 6, + "@variables": 3, + "[": 4, + "name": 8, + "type": 5, + "]": 4, + "@positions": 4, + "Scope.root": 1, + "unless": 1, + "Adds": 1, + "variable": 1, + "or": 1, + "overrides": 1, + "an": 1, + "existing": 1, + "one.": 1, + "add": 1, + "immediate": 3, + "return": 1, + "@parent.add": 1, + "if": 2, + "@shared": 1, + "not": 1, + "Object": 1, + "hasOwnProperty.call": 1, + ".type": 1, + "else": 2, + "@variables.push": 1, + "When": 1, + "super": 1, + "called": 1, + "find": 1, + "current": 1, + "method": 1, + "param": 1, + "_": 3, + "then": 1, + "tempVars": 1, + "realVars": 1, + ".push": 1, + "v.name": 1, + "realVars.sort": 1, + ".concat": 1, + "tempVars.sort": 1, + "Return": 1, + "list": 1, + "assignments": 1, + "supposed": 1, + "made": 1, + "at": 1, + "assignedVariables": 1, + "v": 1, + "when": 1, + "v.type.assigned": 1 + }, + "LiveScript": { + "a": 8, + "-": 25, + "const": 1, + "b": 3, + "var": 1, + "c": 3, + "d": 3, + "_000_000km": 1, + "*": 1, + "ms": 1, + "e": 2, + "(": 9, + ")": 10, + "dashes": 1, + "identifiers": 1, + "underscores_i": 1, + "/regexp1/": 1, + "and": 3, + "//regexp2//g": 1, + "strings": 1, + "[": 2, + "til": 1, + "]": 2, + "or": 2, + "to": 2, + "|": 3, + "map": 1, + "filter": 1, + "fold": 1, + "+": 1, + "class": 1, + "Class": 1, + "extends": 1, + "Anc": 1, + "est": 1, + "args": 1, + "copy": 1, + "from": 1, + "callback": 4, + "error": 6, + "data": 2, + "<": 1, + "read": 1, + "file": 2, + "return": 2, + "if": 2, + "<~>": 1, + "write": 1 + }, + "Logos": { + "%": 15, + "hook": 2, + "ABC": 2, + "-": 3, + "(": 8, + "id": 2, + ")": 8, + "a": 1, + "B": 1, + "b": 1, + "{": 4, + "log": 1, + ";": 8, + "return": 2, + "orig": 2, + "nil": 2, + "}": 4, + "end": 4, + "subclass": 1, + "DEF": 1, + "NSObject": 1, + "init": 3, + "[": 2, + "c": 1, + "RuntimeAccessibleClass": 1, + "alloc": 1, + "]": 2, + "group": 1, + "OptionalHooks": 2, + "void": 1, + "release": 1, + "self": 1, + "retain": 1, + "ctor": 1, + "if": 1, + "OptionalCondition": 1 + }, + "Logtalk": { + "-": 3, + "object": 2, + "(": 4, + "hello_world": 1, + ")": 4, + ".": 2, + "%": 2, + "the": 2, + "initialization/1": 1, + "directive": 1, + "argument": 1, + "is": 2, + "automatically": 1, + "executed": 1, + "when": 1, + "loaded": 1, + "into": 1, + "memory": 1, + "initialization": 1, + "nl": 2, + "write": 1, + "end_object.": 1 + }, + "Lua": { + "-": 60, + "A": 1, + "simple": 1, + "counting": 1, + "object": 1, + "that": 1, + "increments": 1, + "an": 1, + "internal": 1, + "counter": 1, + "whenever": 1, + "it": 2, + "receives": 2, + "a": 5, + "bang": 3, + "at": 2, + "its": 2, + "first": 1, + "inlet": 2, + "or": 2, + "changes": 1, + "to": 8, + "whatever": 1, + "number": 3, + "second": 1, + "inlet.": 1, + "local": 11, + "HelloCounter": 4, + "pd.Class": 3, + "new": 3, + "(": 56, + ")": 56, + "register": 3, + "function": 16, + "initialize": 3, + "sel": 3, + "atoms": 3, + "self.inlets": 3, + "self.outlets": 3, + "self.num": 5, + "return": 3, + "true": 3, + "end": 26, + "in_1_bang": 2, + "self": 10, + "outlet": 10, + "{": 16, + "}": 16, + "+": 3, + "in_2_float": 2, + "f": 12, + "FileListParser": 5, + "Base": 1, + "filename": 2, + "File": 2, + "extension": 2, + "Number": 4, + "of": 9, + "files": 1, + "in": 7, + "batch": 2, + "To": 3, + "[": 17, + "list": 1, + "trim": 1, + "]": 17, + "binfile": 3, + "vidya": 1, + "file": 8, + "modder": 1, + "s": 5, + "mechanisms": 1, + "self.extension": 3, + "the": 7, + "last": 1, + "self.batchlimit": 3, + "in_1_symbol": 1, + "for": 9, + "i": 10, + "do": 8, + "..": 7, + "in_2_list": 1, + "d": 9, + "in_3_float": 1, + "FileModder": 10, + "Object": 1, + "triggering": 1, + "Incoming": 1, + "single": 1, + "data": 2, + "bytes": 3, + "from": 3, + "Total": 1, + "route": 1, + "buflength": 1, + "Glitch": 3, + "type": 2, + "point": 2, + "times": 2, + "glitch": 2, + "Toggle": 1, + "randomized": 1, + "glitches": 3, + "within": 2, + "bounds": 2, + "Active": 1, + "get": 1, + "next": 1, + "byte": 2, + "clear": 2, + "buffer": 2, + "FLOAT": 1, + "write": 3, + "Currently": 1, + "active": 2, + "namedata": 1, + "self.filedata": 4, + "pattern": 1, + "random": 3, + "splice": 1, + "self.glitchtype": 5, + "Minimum": 1, + "image": 1, + "self.glitchpoint": 6, + "repeat": 1, + "on": 1, + "given": 1, + "self.randrepeat": 5, + "Toggles": 1, + "whether": 1, + "repeating": 1, + "should": 1, + "be": 1, + "self.randtoggle": 3, + "Hold": 1, + "all": 1, + "which": 1, + "are": 1, + "converted": 1, + "ints": 1, + "range": 1, + "self.bytebuffer": 8, + "Buffer": 1, + "length": 1, + "currently": 1, + "self.buflength": 7, + "if": 2, + "then": 4, + "plen": 2, + "math.random": 8, + "patbuffer": 3, + "table.insert": 4, + "%": 1, + "#patbuffer": 1, + "elseif": 2, + "randlimit": 4, + "else": 1, + "sloc": 3, + "schunksize": 2, + "splicebuffer": 3, + "table.remove": 1, + "insertpoint": 2, + "#self.bytebuffer": 1, + "_": 2, + "v": 4, + "ipairs": 2, + "outname": 3, + "pd.post": 1, + "in_3_list": 1, + "Shift": 1, + "indexed": 2, + "in_4_list": 1, + "in_5_float": 1, + "in_6_float": 1, + "in_7_list": 1, + "in_8_list": 1 + }, + "M": { + "%": 203, + "zewdAPI": 52, + ";": 1275, + "Enterprise": 5, + "Web": 5, + "Developer": 5, + "run": 2, + "-": 1604, + "time": 9, + "functions": 4, + "and": 56, + "user": 27, + "APIs": 1, + "Product": 2, + "(": 2142, + "Build": 6, + ")": 2150, + "Date": 2, + "Fri": 1, + "Nov": 1, + "|": 170, + "for": 77, + "GT.M": 30, + "m_apache": 3, + "Copyright": 12, + "c": 113, + "M/Gateway": 4, + "Developments": 4, + "Ltd": 4, + "Reigate": 4, + "Surrey": 4, + "UK.": 4, + "All": 4, + "rights": 4, + "reserved.": 4, + "http": 13, + "//www.mgateway.com": 4, + "Email": 4, + "rtweed@mgateway.com": 4, + "This": 26, + "program": 19, + "is": 81, + "free": 15, + "software": 12, + "you": 16, + "can": 15, + "redistribute": 11, + "it": 44, + "and/or": 11, + "modify": 11, + "under": 14, + "the": 217, + "terms": 11, + "of": 80, + "GNU": 33, + "Affero": 33, + "General": 33, + "Public": 33, + "License": 48, + "as": 22, + "published": 11, + "by": 33, + "Free": 11, + "Software": 11, + "Foundation": 11, + "either": 13, + "version": 16, + "or": 46, + "at": 21, + "your": 16, + "option": 12, + "any": 15, + "later": 11, + "version.": 11, + "distributed": 13, + "in": 78, + "hope": 11, + "that": 17, + "will": 23, + "be": 32, + "useful": 11, + "but": 17, + "WITHOUT": 12, + "ANY": 12, + "WARRANTY": 11, + "without": 11, + "even": 11, + "implied": 11, + "warranty": 11, + "MERCHANTABILITY": 11, + "FITNESS": 11, + "FOR": 15, + "A": 12, + "PARTICULAR": 11, + "PURPOSE.": 11, + "See": 15, + "more": 13, + "details.": 12, + "You": 13, + "should": 16, + "have": 17, + "received": 11, + "a": 112, + "copy": 13, + "along": 11, + "with": 43, + "this": 38, + "program.": 9, + "If": 14, + "not": 37, + "see": 25, + "": 11, + ".": 814, + "QUIT": 249, + "_": 126, + "getVersion": 1, + "zewdCompiler": 6, + "date": 1, + "getDate": 1, + "compilePage": 2, + "app": 13, + "page": 12, + "mode": 12, + "technology": 9, + "outputPath": 4, + "multilingual": 4, + "maxLines": 4, + "d": 381, + "g": 228, + "compileAll": 2, + "templatePageName": 2, + "autoTranslate": 2, + "language": 6, + "verbose": 2, + "zewdMgr": 1, + "startSession": 2, + "requestArray": 2, + "serverArray": 1, + "sessionArray": 5, + "filesArray": 1, + "zewdPHP": 8, + ".requestArray": 2, + ".serverArray": 1, + ".sessionArray": 3, + ".filesArray": 1, + "closeSession": 2, + "saveSession": 2, + "endOfPage": 2, + "prePageScript": 2, + "sessid": 146, + "releaseLock": 2, + "tokeniseURL": 2, + "url": 2, + "zewdCompiler16": 5, + "getSessid": 1, + "token": 21, + "i": 465, + "isTokenExpired": 2, + "p": 84, + "zewdSession": 39, + "initialiseSession": 1, + "k": 122, + "deleteSession": 2, + "changeApp": 1, + "appName": 4, + "setSessionValue": 6, + "setRedirect": 1, + "toPage": 1, + "e": 210, + "n": 197, + "path": 4, + "s": 775, + "getRootURL": 1, + "l": 84, + "zewd": 17, + "trace": 24, + "_sessid_": 3, + "_token_": 1, + "_nextPage": 1, + "zcvt": 11, + "nextPage": 1, + "isNextPageTokenValid": 2, + "zewdCompiler13": 10, + "isCSP": 1, + "normaliseTextValue": 1, + "text": 6, + "replaceAll": 11, + "writeLine": 2, + "line": 9, + "CacheTempBuffer": 2, + "j": 67, + "increment": 11, + "w": 127, + "displayOptions": 2, + "fieldName": 5, + "listName": 6, + "escape": 7, + "codeValue": 7, + "name": 121, + "nnvp": 1, + "nvp": 1, + "pos": 33, + "textValue": 6, + "value": 72, + "getSessionValue": 3, + "tr": 13, + "+": 188, + "f": 93, + "o": 51, + "q": 244, + "codeValueEsc": 7, + "textValueEsc": 7, + "htmlOutputEncode": 2, + "zewdAPI2": 5, + "_codeValueEsc_": 1, + "selected": 4, + "translationMode": 1, + "_appName": 1, + "typex": 1, + "type": 2, + "avoid": 1, + "Cache": 3, + "bug": 1, + "getPhraseIndex": 1, + "zewdCompiler5": 1, + "licensed": 1, + "setWarning": 2, + "isTemp": 11, + "setWLDSymbol": 1, + "Duplicate": 1, + "performance": 1, + "also": 4, + "wldAppName": 1, + "wldName": 1, + "wldSessid": 1, + "zzname": 1, + "zv": 6, + "[": 53, + "extcErr": 1, + "mess": 3, + "namespace": 1, + "zt": 20, + "valueErr": 1, + "exportCustomTags": 2, + "tagList": 1, + "filepath": 10, + ".tagList": 1, + "exportAllCustomTags": 2, + "importCustomTags": 2, + "filePath": 2, + "zewdForm": 1, + "stripSpaces": 6, + "np": 17, + "obj": 6, + "prop": 6, + "setSessionObject": 3, + "allowJSONAccess": 1, + "sessionName": 30, + "access": 21, + "disallowJSONAccess": 1, + "JSONAccess": 1, + "existsInSession": 2, + "existsInSessionArray": 2, + "p1": 5, + "p2": 10, + "p3": 3, + "p4": 2, + "p5": 2, + "p6": 2, + "p7": 2, + "p8": 2, + "p9": 2, + "p10": 2, + "p11": 2, + "clearSessionArray": 1, + "arrayName": 35, + "setSessionArray": 1, + "itemName": 16, + "itemValue": 7, + "getSessionArray": 1, + "array": 22, + "clearArray": 2, + "set": 98, + "m": 37, + "getSessionArrayErr": 1, + "Come": 1, + "here": 4, + "if": 44, + "error": 62, + "occurred": 2, + "addToSession": 2, + "@name": 4, + "mergeToSession": 1, + "mergeGlobalToSession": 2, + "globalName": 7, + "mergeGlobalFromSession": 2, + "mergeArrayToSession": 1, + "mergeArrayToSessionObject": 2, + ".array": 1, + "mergeArrayFromSession": 1, + "mergeFromSession": 1, + "deleteFromSession": 1, + "deleteFromSessionObject": 1, + "sessionNameExists": 1, + "getSessionArrayValue": 2, + "subscript": 7, + "exists": 6, + ".exists": 1, + "sessionArrayValueExists": 2, + "deleteSessionArrayValue": 2, + "Objects": 1, + "objectName": 13, + "propertyName": 3, + "propertyValue": 5, + "comma": 3, + "x": 96, + "replace": 27, + "objectName_": 2, + "_propertyName": 2, + "_propertyName_": 2, + "_propertyValue_": 1, + "_p": 1, + "quoted": 1, + "string": 50, + "FromStr": 6, + "S": 99, + "ToStr": 4, + "InText": 4, + "old": 3, + "new": 15, + "ok": 14, + "removeDocument": 1, + "zewdDOM": 3, + "instanceName": 2, + "clearXMLIndex": 1, + "zewdSchemaForm": 1, + "closeDOM": 1, + "makeTokenString": 1, + "length": 7, + "token_": 1, + "r": 88, + "makeString": 3, + "char": 9, + "len": 8, + "create": 6, + "characters": 4, + "str": 15, + "convertDateToSeconds": 1, + "hdate": 7, + "Q": 58, + "hdate*86400": 1, + "convertSecondsToDate": 1, + "secs": 2, + "secs#86400": 1, + "getTokenExpiry": 2, + "h*86400": 1, + "h": 39, + "randChar": 1, + "R": 2, + "lowerCase": 2, + "stripLeadingSpaces": 2, + "stripTrailingSpaces": 2, + "d1": 7, + "zd": 1, + "yy": 19, + "dd": 4, + "I": 43, + "<10>": 1, + "dd=": 2, + "mm=": 3, + "1": 74, + "d1=": 1, + "2": 14, + "p1=": 1, + "mm": 7, + "p2=": 1, + "yy=": 1, + "3": 6, + "dd_": 1, + "mm_": 1, + "inetTime": 1, + "Decode": 1, + "Internet": 1, + "Format": 1, + "Time": 1, + "from": 16, + "H": 1, + "format": 2, + "Offset": 1, + "relative": 1, + "to": 73, + "GMT": 1, + "eg": 3, + "hh": 4, + "ss": 4, + "<": 19, + "_hh": 1, + "time#3600": 1, + "_mm": 1, + "time#60": 1, + "_ss": 2, + "hh_": 1, + "_mm_": 1, + "openNewFile": 2, + "openFile": 2, + "openDOM": 2, + "&": 27, + "#39": 1, + "<\",\"<\")>": 1, + "string=": 1, + "gt": 1, + "amp": 1, + "HTML": 1, + "quot": 2, + "stop": 20, + "no": 53, + "no2": 1, + "p1_c_p2": 1, + "getIP": 2, + "Get": 2, + "own": 2, + "IP": 1, + "address": 1, + "ajaxErrorRedirect": 2, + "classExport": 2, + "className": 2, + "methods": 2, + ".methods": 1, + "strx": 2, + "disableEwdMgr": 1, + "enableEwdMgr": 1, + "enableWLDAccess": 1, + "disableWLDAccess": 1, + "isSSOValid": 2, + "sso": 2, + "username": 8, + "password": 8, + "zewdMgrAjax2": 1, + "uniqueId": 1, + "nodeOID": 2, + "filename": 2, + "linkToParentSession": 2, + "zewdCompiler20": 1, + "exportToGTM": 1, + "routine": 4, + "zewdDemo": 1, + "Tutorial": 1, + "Wed": 1, + "Apr": 1, + "getLanguage": 1, + "getRequestValue": 1, + "login": 1, + "getTextValue": 4, + "getPasswordValue": 2, + "_username_": 1, + "_password": 1, + "logine": 1, + "message": 8, + "textid": 1, + "errorMessage": 1, + "ewdDemo": 8, + "clearList": 2, + "appendToList": 4, + "addUsername": 1, + "newUsername": 5, + "newUsername_": 1, + "setTextValue": 4, + "testValue": 1, + "pass": 24, + "getSelectValue": 3, + "_user": 1, + "getPassword": 1, + "setPassword": 1, + "getObjDetails": 1, + "data": 43, + "_user_": 1, + "_data": 2, + "setRadioOn": 2, + "initialiseCheckbox": 2, + "setCheckboxOn": 3, + "createLanguageList": 1, + "setMultipleSelectOn": 2, + "clearTextArea": 2, + "textarea": 2, + "createTextArea": 1, + ".textarea": 1, + "userType": 4, + "setMultipleSelectValues": 1, + ".selected": 1, + "testField3": 3, + ".value": 1, + "testField2": 1, + "field3": 1, + "must": 7, + "null": 6, + "dateTime": 1, + "start": 24, + "student": 14, + "zwrite": 1, + "write": 59, + "order": 11, + "do": 15, + "quit": 30, + "file": 10, + "part": 3, + "DataBallet.": 4, + "C": 9, + "Laurent": 2, + "Parenteau": 2, + "": 2, + "DataBallet": 4, + "encode": 1, + "Return": 1, + "base64": 6, + "URL": 2, + "Filename": 1, + "safe": 3, + "alphabet": 2, + "RFC": 1, + "todrop": 2, + "Populate": 1, + "values": 4, + "on": 15, + "first": 10, + "use": 5, + "only.": 1, + "zextract": 3, + "zlength": 3, + "Digest": 2, + "Extension": 9, + "Piotr": 7, + "Koper": 7, + "": 7, + "trademark": 2, + "Fidelity": 2, + "Information": 2, + "Services": 2, + "Inc.": 2, + "//sourceforge.net/projects/fis": 2, + "gtm/": 2, + "simple": 2, + "OpenSSL": 3, + "based": 1, + "digest": 19, + "extension": 3, + "rewrite": 1, + "EVP_DigestInit": 1, + "usage": 3, + "example": 5, + "additional": 5, + "M": 24, + "wrapper.": 1, + "//www.openssl.org/docs/crypto/EVP_DigestInit.html": 1, + "The": 11, + "return": 7, + "digest.init": 3, + "usually": 1, + "when": 11, + "an": 11, + "invalid": 4, + "algorithm": 1, + "was": 5, + "specification.": 1, + "Anyway": 1, + "properly": 1, + "used": 6, + "never": 4, + "fail.": 1, + "Please": 2, + "feel": 2, + "contact": 2, + "me": 2, + "questions": 2, + "comments": 4, + "returns": 7, + "ASCII": 1, + "HEX": 1, + "all": 8, + "one": 5, + "digest.update": 2, + ".c": 2, + ".m": 11, + "digest.final": 2, + ".d": 1, + "init": 6, + "alg": 3, + "context": 1, + "handler": 9, + "try": 1, + "etc": 1, + "returned": 1, + "occurs": 1, + "e.g.": 2, + "unknown": 1, + "update": 1, + "ctx": 4, + "msg": 6, + "updates": 1, + ".ctx": 2, + ".msg": 1, + "final": 1, + "hex": 1, + "encoded": 8, + "frees": 1, + "memory": 1, + "allocated": 1, + ".digest": 1, + "algorithms": 1, + "availability": 1, + "depends": 1, + "libcrypto": 1, + "configuration": 1, + "md4": 1, + "md5": 2, + "sha": 1, + "sha1": 1, + "sha224": 1, + "sha256": 1, + "sha512": 1, + "dss1": 1, + "ripemd160": 1, + "These": 2, + "two": 2, + "routines": 6, + "illustrate": 1, + "dynamic": 1, + "scope": 1, + "variables": 2, + "triangle1": 1, + "sum": 15, + "main2": 1, + "y": 33, + "triangle2": 1, + "compute": 2, + "Fibonacci": 1, + "series": 1, + "b": 64, + "term": 10, + "start1": 2, + "entry": 5, + "label": 4, + "start2": 1, + "function": 6, + "computes": 1, + "factorial": 3, + "f*n": 1, + "main": 1, + "GMRGPNB0": 1, + "CISC/JH/RM": 1, + "NARRATIVE": 1, + "BUILDER": 1, + "TEXT": 5, + "GENERATOR": 1, + "cont.": 1, + "/20/91": 1, + "Text": 1, + "Generator": 1, + "Jan": 1, + "ENTRY": 2, + "WITH": 1, + "GMRGA": 1, + "SET": 3, + "TO": 6, + "POINT": 1, + "AT": 1, + "WHICH": 1, + "WANT": 1, + "START": 1, + "BUILDING": 1, + "GMRGE0": 11, + "GMRGADD": 4, + "D": 64, + "GMR": 6, + "GMRGA0": 11, + "GMRGPDA": 9, + "GMRGCSW": 2, + "NOW": 1, + "DTC": 1, + "GMRGB0": 9, + "O": 24, + "GMRGST": 6, + "GMRGPDT": 2, + "STAT": 8, + "GMRGRUT0": 3, + "GMRGF0": 3, + "GMRGSTAT": 8, + "P": 68, + "_GMRGB0_": 2, + "GMRD": 6, + "GMRGSSW": 3, + "SNT": 1, + "GMRGPNB1": 1, + "GMRGNAR": 8, + "GMRGPAR_": 2, + "_GMRGSPC_": 3, + "_GMRGRM": 2, + "_GMRGE0": 1, + "STORETXT": 1, + "GMRGRUT1": 1, + "GMRGSPC": 3, + "F": 10, + "GMRGD0": 7, + "ALIST": 1, + "G": 40, + "TMP": 26, + "J": 38, + "GMRGPLVL": 6, + "GMRGA0_": 1, + "_GMRGD0_": 1, + "_GMRGSSW_": 1, + "_GMRGADD": 1, + "GMRGI0": 6, + "label1": 1, + "if1": 2, + "statement": 3, + "if2": 2, + "statements": 1, + "contrasted": 1, + "": 3, + "variable": 8, + "a=": 3, + "smaller": 3, + "than": 4, + "b=": 4, + "if3": 1, + "else": 7, + "clause": 2, + "if4": 1, + "bodies": 1, + "exercise": 1, + "car": 14, + "@": 8, + "MD5": 6, + "Implementation": 1, + "It": 2, + "works": 1, + "ZCHSET": 2, + "please": 1, + "don": 1, + "only": 9, + "joke.": 1, + "Serves": 1, + "well": 2, + "reverse": 1, + "engineering": 1, + "obtaining": 1, + "boolean": 2, + "integer": 1, + "addition": 1, + "modulo": 1, + "division.": 1, + "//en.wikipedia.org/wiki/MD5": 1, + "t": 11, + "#64": 1, + "msg_": 1, + "_m_": 1, + "n64": 2, + "*8": 2, + "read": 2, + ".p": 1, + "..": 28, + "...": 6, + "*i": 3, + "#16": 3, + "xor": 4, + "rotate": 5, + "#4294967296": 6, + "n32h": 5, + "bit": 5, + "#2": 1, + "*2147483648": 2, + "a#2": 1, + "b#2": 1, + ".a": 1, + ".b": 1, + "rol": 1, + "a*": 1, + "**n": 1, + "c#4294967296": 1, + "*n": 1, + "n#256": 1, + "n#16": 2, + "MDB": 60, + "M/DB": 2, + "Mumps": 1, + "Emulation": 1, + "Amazon": 1, + "SimpleDB": 1, + "buildDate": 1, + "indexLength": 10, + "Note": 2, + "keyId": 108, + "been": 4, + "tested": 1, + "valid": 1, + "these": 1, + "are": 11, + "called": 8, + "To": 2, + "Initialise": 2, + "service": 1, + "//192.168.1.xxx/mdb/test.mgwsi": 1, + "Action": 2, + "addUser": 2, + "userKeyId": 6, + "userSecretKey": 6, + "requestId": 17, + "boxUsage": 11, + "startTime": 21, + ".startTime": 5, + "MDBUAF": 2, + "end": 33, + ".boxUsage": 22, + "createDomain": 1, + "domainName": 38, + "dn": 4, + "dnx": 3, + "id": 33, + "noOfDomains": 12, + "MDBConfig": 1, + "getDomainId": 3, + "found": 7, + "namex": 8, + "buildItemNameIndex": 2, + "domainId": 53, + "itemId": 41, + "itemValuex": 3, + "countDomains": 2, + "key": 22, + "deleteDomain": 2, + "listDomains": 1, + "maxNoOfDomains": 2, + "nextToken": 7, + "domainList": 3, + "fullName": 3, + "decodeBase64": 1, + "encodeBase64": 1, + "itemExists": 1, + "getItemId": 2, + "getAttributeValueId": 3, + "attribId": 36, + "valuex": 13, + "putAttributes": 2, + "attributes": 32, + "valueId": 16, + "xvalue": 4, + "add": 5, + "Item": 1, + "Domain": 1, + "itemNamex": 4, + "parseJSON": 1, + "zmwire": 53, + "attributesJSON": 1, + ".attributes": 5, + "attribute": 14, + "getAttributeId": 2, + "domain": 1, + "Not": 1, + "allowed": 17, + "same": 2, + "remove": 6, + "existing": 2, + "now": 1, + "name/value": 2, + "pair": 1, + "getAttributes": 2, + "suppressBoxUsage": 1, + "attrNo": 9, + "valueNo": 6, + "delete": 2, + "item": 2, + "associated": 1, + "queryIndex": 1, + "records": 2, + "specified": 4, + "pairs": 2, + "vno": 2, + "left": 5, + "completely": 3, + "references": 1, + "maxNoOfItems": 3, + "itemList": 12, + "session": 1, + "identifier": 1, + "stored": 1, + "queryExpression": 16, + "relink": 1, + "zewdGTMRuntime": 1, + "CGIEVAR": 1, + "cgi": 1, + "unescName": 5, + "urlDecode": 2, + "KEY": 36, + "response": 29, + "WebLink": 1, + "point": 2, + "action": 15, + "AWSAcessKeyId": 1, + "db": 9, + "hash": 1, + "itemsAndAttrs": 2, + "secretKey": 1, + "signatureMethod": 2, + "signatureVersion": 3, + "stringToSign": 2, + "rltKey": 2, + "_action_": 2, + "h_": 3, + "mdbKey": 2, + "errorResponse": 9, + "initialise": 3, + ".requestId": 7, + "createResponse": 4, + "installMDBM": 1, + "authenticate": 1, + "MDBSession": 1, + "createResponseStringToSign": 1, + "Security": 1, + "OK": 6, + "_db": 1, + "MDBAPI": 1, + "lineNo": 19, + "CacheTempEWD": 16, + "_db_": 1, + "db_": 1, + "_action": 1, + "resp": 5, + "metaData": 1, + "domainMetadata": 1, + ".metaData": 1, + "paramName": 8, + "paramValue": 5, + "_i_": 5, + "Query": 1, + "DomainName": 2, + "QueryExpression": 2, + "MaxNumberOfItems": 2, + "NextToken": 3, + "QueryWithAttributes": 1, + "AttributeName.": 2, + "Select": 2, + "SelectExpression": 1, + "entering": 1, + "runSelect.": 1, + "selectExpression": 3, + "finished": 1, + "runSelect": 3, + "count": 18, + "select": 3, + "*": 5, + "where": 6, + "limit": 14, + "asc": 1, + "inValue": 6, + "expr": 18, + "rel": 2, + "itemStack": 3, + "between": 2, + "<=\">": 1, + "lastWord=": 7, + "inAttr=": 5, + "expr=": 10, + "thisWord=": 7, + "inAttr": 2, + "c=": 28, + "queryExpression=": 4, + "_queryExpression": 2, + "4": 5, + "isNull": 1, + "5": 1, + "8": 1, + "isNotNull": 1, + "9": 1, + "offset": 6, + "prevName": 1, + "np=": 1, + "diffNames": 6, + "_term": 3, + "expr_": 1, + "_orderBy": 1, + "runQuery": 2, + ".itemList": 4, + "escVals": 1, + "str_c": 2, + "_x_": 1, + "query": 4, + "orderBy": 1, + "_query": 1, + "parseSelect": 1, + ".domainName": 2, + ".queryExpression": 1, + ".orderBy": 1, + ".limit": 1, + "executeSelect": 1, + ".itemStack": 1, + "***": 2, + "listCopy": 3, + "numeric": 6, + "N.N": 12, + "N.N1": 4, + "externalSelect": 2, + "json": 9, + "_keyId_": 1, + "_selectExpression": 1, + "spaces": 3, + "string_spaces": 1, + "test": 6, + "miles": 4, + "gallons": 4, + "miles/gallons": 1, + "computepesimist": 1, + "miles/": 1, + "computeoptimist": 1, + "/gallons": 1, + "Mumtris": 3, + "tetris": 1, + "game": 1, + "MUMPS": 1, + "fun.": 1, + "Resize": 1, + "terminal": 2, + "maximize": 1, + "PuTTY": 1, + "window": 1, + "restart": 3, + "so": 4, + "report": 1, + "true": 2, + "size": 3, + "mumtris.": 1, + "Try": 2, + "setting": 3, + "ansi": 2, + "compatible": 1, + "cursor": 1, + "positioning.": 1, + "NOTICE": 1, + "uses": 1, + "making": 1, + "delays": 1, + "lower": 1, + "s.": 1, + "That": 1, + "means": 2, + "CPU": 1, + "fall": 5, + "lock": 2, + "clear": 6, + "change": 6, + "preview": 3, + "over": 2, + "exit": 3, + "short": 1, + "circuit": 1, + "redraw": 3, + "timeout": 1, + "harddrop": 1, + "other": 1, + "ex": 5, + "hd": 3, + "*c": 1, + "<0&'d>": 1, + "i=": 14, + "st": 6, + "t10m": 1, + "0": 23, + "<0>": 2, + "q=": 6, + "d=": 1, + "zb": 2, + "right": 3, + "fl=": 1, + "gr=": 1, + "hl": 2, + "help": 2, + "drop": 2, + "hd=": 1, + "matrix": 2, + "stack": 8, + "draw": 3, + "ticks": 2, + "h=": 2, + "1000000000": 1, + "e=": 1, + "t10m=": 1, + "100": 2, + "n=": 1, + "ne=": 1, + "x=": 5, + "y=": 3, + "r=": 3, + "collision": 6, + "score": 5, + "k=": 1, + "j=": 4, + "<1))))>": 1, + "800": 1, + "200": 1, + "lv": 5, + "lc=": 1, + "10": 1, + "lc": 3, + "mt_": 2, + "cls": 6, + ".s": 5, + "dh/2": 6, + "dw/2": 6, + "*s": 4, + "u": 6, + "echo": 1, + "intro": 1, + "workaround": 1, + "ANSI": 1, + "driver": 1, + "NL": 1, + "some": 1, + "place": 9, + "clearscreen": 1, + "N": 19, + "h/2": 3, + "*w/2": 3, + "fill": 3, + "fl": 2, + "*x": 1, + "mx": 4, + "my": 5, + "step": 8, + "**lv*sb": 1, + "*lv": 1, + "sc": 3, + "ne": 2, + "gr": 1, + "w*3": 1, + "dev": 1, + "zsh": 1, + "dw": 1, + "dh": 1, + "elements": 3, + "elemId": 3, + "rotateVersions": 1, + "rotateVersion": 2, + "bottom": 1, + "coordinate": 1, + "____": 1, + "__": 2, + "||": 1, + "ax": 2, + "bx": 2, + "cx": 2, + "ay": 2, + "cy": 2, + "sumx": 3, + "sqrx": 3, + "sumxy": 5, + "x*x": 1, + "x*y": 1, + "PCRE": 23, + "tries": 1, + "deliver": 1, + "best": 2, + "possible": 5, + "interface": 1, + "world": 4, + "providing": 1, + "support": 3, + "arrays": 1, + "stringified": 2, + "parameter": 1, + "names": 3, + "simplified": 1, + "API": 7, + "locales": 2, + "exceptions": 1, + "Perl5": 1, + "Global": 8, + "Match.": 1, + "pcreexamples.m": 2, + "comprehensive": 1, + "examples": 4, + "pcre": 59, + "beginner": 1, + "level": 5, + "tips": 1, + "match": 41, + "limits": 6, + "exception": 12, + "handling": 2, + "UTF": 17, + "GT.M.": 1, + "out": 2, + "known": 2, + "book": 1, + "regular": 1, + "expressions": 1, + "//regex.info/": 1, + "For": 3, + "information": 1, + "//pcre.org/": 1, + "Initial": 2, + "release": 2, + "pkoper": 2, + "pcre.version": 1, + "config": 3, + "case": 7, + "insensitive": 7, + "protect": 11, + "erropt": 6, + "isstring": 5, + "code": 28, + "pcre.config": 1, + ".name": 1, + ".erropt": 3, + ".isstring": 1, + ".n": 20, + "ec": 10, + "compile": 14, + "pattern": 21, + "options": 45, + "locale": 24, + "mlimit": 20, + "reclimit": 19, + "optional": 16, + "joined": 3, + "Unix": 1, + "pcre_maketables": 2, + "cases": 1, + "undefined": 1, + "environment": 7, + "defined": 2, + "LANG": 4, + "LC_*": 1, + "output": 49, + "command": 9, + "Debian": 2, + "tip": 1, + "dpkg": 1, + "reconfigure": 1, + "enable": 1, + "system": 1, + "wide": 1, + "number": 5, + "internal": 3, + "matching": 4, + "calls": 1, + "pcre_exec": 4, + "execution": 2, + "manual": 2, + "details": 5, + "depth": 1, + "recursion": 1, + "calling": 2, + "ref": 41, + "err": 4, + "erroffset": 3, + "pcre.compile": 1, + ".pattern": 3, + ".ref": 13, + ".err": 1, + ".erroffset": 1, + "exec": 4, + "subject": 24, + "startoffset": 3, + "octets": 2, + "starts": 1, + "like": 4, + "chars": 3, + "pcre.exec": 2, + ".subject": 3, + "zl": 7, + "ec=": 7, + "ovector": 25, + "element": 1, + "code=": 4, + "ovecsize": 5, + "fullinfo": 3, + "OPTIONS": 2, + "SIZE": 1, + "CAPTURECOUNT": 1, + "BACKREFMAX": 1, + "FIRSTBYTE": 1, + "FIRSTTABLE": 1, + "LASTLITERAL": 1, + "NAMEENTRYSIZE": 1, + "NAMECOUNT": 1, + "STUDYSIZE": 1, + "OKPARTIAL": 1, + "JCHANGED": 1, + "HASCRORLF": 1, + "MINLENGTH": 1, + "JIT": 1, + "JITSIZE": 1, + "NAME": 3, + "nametable": 4, + "index": 1, + "indexed": 4, + "substring": 1, + "begin": 18, + "begin=": 3, + "end=": 4, + "contains": 2, + "octet": 4, + "UNICODE": 1, + "ze": 8, + "begin_": 1, + "_end": 1, + "store": 6, + "above": 2, + "stores": 1, + "captured": 6, + "key=": 2, + "gstore": 3, + "round": 12, + "byref": 5, + "global": 26, + "ref=": 3, + "l=": 2, + "capture": 10, + "indexes": 1, + "extended": 1, + "NAMED_ONLY": 2, + "named": 12, + "groups": 5, + "OVECTOR": 2, + "namedonly": 9, + "options=": 4, + "o=": 12, + "namedonly=": 2, + "ovector=": 2, + "NO_AUTO_CAPTURE": 2, + "_capture_": 2, + "matches": 10, + "s=": 4, + "_s_": 1, + "GROUPED": 1, + "group": 4, + "result": 3, + "patterns": 3, + "pcredemo": 1, + "pcreccp": 1, + "cc": 1, + "procedure": 2, + "Perl": 1, + "utf8": 2, + "crlf": 6, + "empty": 7, + "skip": 6, + "determine": 1, + "them": 1, + "before": 2, + "byref=": 2, + "check": 2, + "UTF8": 2, + "double": 1, + "utf8=": 1, + "crlf=": 3, + "NL_CRLF": 1, + "NL_ANY": 1, + "NL_ANYCRLF": 1, + "none": 1, + "build": 2, + "NEWLINE": 1, + ".start": 1, + "unwind": 1, + "call": 1, + "optimize": 1, + "leave": 1, + "advance": 1, + "LF": 1, + "CR": 1, + "CRLF": 1, + "middle": 1, + ".i": 2, + ".match": 2, + ".round": 2, + ".byref": 2, + ".ovector": 2, + "subst": 3, + "last": 4, + "occurrences": 1, + "matched": 1, + "back": 4, + "th": 3, + "{": 4, + "}": 4, + "replaced": 1, + "substitution": 2, + "begins": 1, + "substituted": 2, + "defaults": 3, + "ends": 1, + "backref": 1, + "boffset": 1, + "prepare": 1, + "reference": 2, + ".subst": 1, + ".backref": 1, + "silently": 1, + "zco": 1, + "": 1, + "s/": 6, + "b*": 7, + "/Xy/g": 6, + "print": 8, + "aa": 9, + "et": 4, + "direct": 3, + "take": 1, + "default": 6, + "setup": 3, + "trap": 10, + "source": 3, + "location": 5, + "argument": 1, + "@ref": 2, + "E": 12, + "COMPILE": 2, + "has": 6, + "meaning": 1, + "zs": 2, + "re": 2, + "raise": 3, + "XC": 1, + "specific": 3, + "U16384": 1, + "U16385": 1, + "U16386": 1, + "U16387": 1, + "U16388": 2, + "U16389": 1, + "U16390": 1, + "U16391": 1, + "U16392": 2, + "U16393": 1, + "NOTES": 1, + "U16401": 2, + "raised": 2, + "i.e.": 3, + "NOMATCH": 2, + "ever": 1, + "uncommon": 1, + "situation": 1, + "too": 1, + "small": 1, + "considering": 1, + "controlled": 1, + "U16402": 1, + "U16403": 1, + "U16404": 1, + "U16405": 1, + "U16406": 1, + "U16407": 1, + "U16408": 1, + "U16409": 1, + "U16410": 1, + "U16411": 1, + "U16412": 1, + "U16414": 1, + "U16415": 1, + "U16416": 1, + "U16417": 1, + "U16418": 1, + "U16419": 1, + "U16420": 1, + "U16421": 1, + "U16423": 1, + "U16424": 1, + "U16425": 1, + "U16426": 1, + "U16427": 1, + "Examples": 4, + "pcre.m": 1, + "parameters": 1, + "pcreexamples": 32, + "shining": 1, + "Test": 1, + "Simple": 2, + "zwr": 17, + "Match": 4, + "grouped": 2, + "Just": 1, + "Change": 2, + "word": 3, + "Escape": 1, + "sequence": 1, + "More": 1, + "Low": 1, + "api": 1, + "Setup": 1, + "myexception2": 2, + "st_": 1, + "zl_": 2, + "Compile": 2, + ".options": 1, + "Run": 1, + ".offset": 1, + "used.": 2, + "always": 1, + "strings": 1, + "submitted": 1, + "exact": 1, + "usable": 1, + "integers": 1, + "way": 1, + "i*2": 3, + "what": 2, + "while": 3, + "/": 2, + "/mg": 2, + "aaa": 1, + "nbb": 1, + ".*": 1, + "discover": 1, + "stackusage": 3, + "Locale": 5, + "Support": 1, + "Polish": 1, + "I18N": 2, + "PCRE.": 1, + "Polish.": 1, + "second": 1, + "letter": 1, + "": 1, + "which": 4, + "ISO8859": 1, + "//en.wikipedia.org/wiki/Polish_code_pages": 1, + "complete": 1, + "listing": 1, + "CHAR": 1, + "different": 3, + "character": 2, + "modes": 1, + "In": 1, + "probably": 1, + "expected": 1, + "working": 1, + "single": 2, + "ISO": 3, + "chars.": 1, + "Use": 1, + "zch": 7, + "prepared": 1, + "GTM": 8, + "BADCHAR": 1, + "errors.": 1, + "Also": 1, + "others": 1, + "might": 1, + "expected.": 1, + "POSIX": 1, + "localization": 1, + "nolocale": 2, + "zchset": 2, + "isolocale": 2, + "utflocale": 2, + "LC_CTYPE": 1, + "Set": 2, + "obtain": 2, + "results.": 1, + "envlocale": 2, + "ztrnlnm": 2, + "Notes": 1, + "Enabling": 1, + "native": 1, + "requires": 1, + "libicu": 2, + "gtm_chset": 1, + "gtm_icu_version": 1, + "recompiled": 1, + "object": 4, + "files": 4, + "Instructions": 1, + "Install": 1, + "libicu48": 2, + "apt": 1, + "get": 2, + "install": 1, + "append": 1, + "chown": 1, + "gtm": 1, + "/opt/gtm": 1, + "Startup": 1, + "errors": 6, + "INVOBJ": 1, + "Cannot": 1, + "ZLINK": 1, + "due": 1, + "unexpected": 1, + "Object": 1, + "compiled": 1, + "CHSET": 1, + "written": 3, + "startup": 1, + "correct": 1, + "above.": 1, + "Limits": 1, + "built": 1, + "recursion.": 1, + "Those": 1, + "prevent": 1, + "engine": 1, + "very": 2, + "long": 2, + "runs": 2, + "especially": 1, + "there": 2, + "would": 1, + "paths": 2, + "tree": 1, + "checked.": 1, + "Functions": 1, + "using": 4, + "itself": 1, + "allows": 1, + "MATCH_LIMIT": 1, + "MATCH_LIMIT_RECURSION": 1, + "arguments": 1, + "library": 1, + "compilation": 2, + "Example": 1, + "longrun": 3, + "Equal": 1, + "corrected": 1, + "shortrun": 2, + "Enforced": 1, + "enforcedlimit": 2, + "Exception": 2, + "Handling": 1, + "Error": 1, + "conditions": 1, + "handled": 1, + "zc": 1, + "codes": 1, + "labels": 1, + "file.": 1, + "When": 2, + "neither": 1, + "nor": 1, + "within": 1, + "mechanism.": 1, + "depending": 1, + "caller": 1, + "exception.": 1, + "lead": 1, + "writing": 4, + "prompt": 1, + "terminating": 1, + "image.": 1, + "define": 2, + "handlers.": 1, + "Handler": 1, + "No": 17, + "nohandler": 4, + "Pattern": 1, + "failed": 1, + "unmatched": 1, + "parentheses": 1, + "<-->": 1, + "HERE": 1, + "RTSLOC": 2, + "At": 2, + "SETECODE": 1, + "Non": 1, + "assigned": 1, + "ECODE": 1, + "32": 1, + "GT": 1, + "image": 1, + "terminated": 1, + "myexception1": 3, + "zt=": 1, + "mytrap1": 2, + "zg": 2, + "mytrap3": 1, + "DETAILS": 1, + "executed": 1, + "frame": 1, + "called.": 1, + "deeper": 1, + "frames": 1, + "already": 1, + "dropped": 1, + "local": 1, + "available": 1, + "context.": 1, + "Thats": 1, + "why": 1, + "doesn": 1, + "unless": 1, + "cleared.": 1, + "Always": 1, + "done.": 2, + "Execute": 1, + "p5global": 1, + "p5replace": 1, + "p5lf": 1, + "p5nl": 1, + "newline": 1, + "utf8support": 1, + "myexception3": 1, + "contrasting": 1, + "postconditionals": 1, + "IF": 9, + "commands": 1, + "post1": 1, + "postconditional": 3, + "purposely": 4, + "TEST": 16, + "false": 5, + "post2": 1, + "special": 2, + "after": 2, + "post": 1, + "condition": 1, + "PRCAAPR": 1, + "WASH": 1, + "ISC@ALTOONA": 1, + "PA/RGY": 1, + "PATIENT": 5, + "ACCOUNT": 1, + "PROFILE": 1, + "CONT": 1, + "/9/94": 1, + "AM": 1, + "V": 2, + "Accounts": 1, + "Receivable": 1, + "**198": 1, + "**": 2, + "Mar": 1, + "Per": 1, + "VHA": 1, + "Directive": 1, + "modified.": 1, + "EN": 2, + "PRCATY": 2, + "NEW": 3, + "DIC": 6, + "X": 18, + "Y": 26, + "DEBT": 10, + "PRCADB": 5, + "DA": 4, + "PRCA": 14, + "COUNT": 2, + "OUT": 2, + "SEL": 1, + "BILL": 11, + "BAT": 8, + "TRAN": 5, + "DR": 4, + "DXS": 1, + "DTOUT": 2, + "DIROUT": 1, + "DIRUT": 1, + "DUOUT": 1, + "ASK": 3, + "DPTNOFZY": 2, + "DPTNOFZK": 2, + "K": 5, + "DTIME": 1, + "UPPER": 1, + "VALM1": 1, + "RCD": 1, + "DISV": 2, + "DUZ": 3, + "NAM": 1, + "RCFN01": 1, + "COMP": 2, + "EN1": 1, + "PRCAATR": 1, + "Y_": 3, + "PRCADB_": 1, + "HDR": 1, + "PRCAAPR1": 3, + "HDR2": 1, + "DIS": 1, + "STAT1": 2, + "_PRCATY_": 1, + "COMP1": 2, + "RCY": 5, + "]": 14, + "COMP2": 2, + "_STAT_": 1, + "_STAT": 1, + "payments": 1, + "_TRAN": 1, + "Keith": 1, + "Lynch": 1, + "p#f": 1, + "PXAI": 1, + "ISL/JVS": 1, + "ISA/KWP": 1, + "ESW": 1, + "PCE": 2, + "DRIVING": 1, + "RTN": 1, + "/20/03": 1, + "am": 1, + "CARE": 1, + "ENCOUNTER": 2, + "**15": 1, + "Aug": 1, + "DATA2PCE": 1, + "PXADATA": 7, + "PXAPKG": 9, + "PXASOURC": 10, + "PXAVISIT": 8, + "PXAUSER": 6, + "PXANOT": 3, + "ERRRET": 2, + "PXAPREDT": 2, + "PXAPROB": 15, + "PXACCNT": 2, + "add/edit/delete": 1, + "PCE.": 1, + "required": 4, + "pointer": 4, + "visit": 3, + "related.": 1, + "then": 2, + "nodes": 1, + "needed": 1, + "lookup/create": 1, + "visit.": 1, + "adding": 1, + "data.": 1, + "displayed": 1, + "screen": 1, + "debugging": 1, + "initial": 1, + "code.": 1, + "passed": 4, + "reference.": 2, + "present": 1, + "PXKERROR": 2, + "caller.": 1, + "want": 1, + "edit": 1, + "Primary": 3, + "Provider": 1, + "moment": 1, + "editing": 2, + "being": 1, + "dangerous": 1, + "dotted": 1, + "name.": 1, + "warnings": 1, + "occur": 1, + "They": 1, + "form": 1, + "general": 1, + "description": 1, + "problem.": 1, + "ERROR1": 1, + "GENERAL": 2, + "ERRORS": 4, + "SUBSCRIPT": 5, + "PASSED": 4, + "IN": 4, + "FIELD": 2, + "FROM": 5, + "WARNING2": 1, + "WARNINGS": 2, + "WARNING3": 1, + "SERVICE": 1, + "CONNECTION": 1, + "REASON": 9, + "ERROR4": 1, + "PROBLEM": 1, + "LIST": 1, + "Returns": 2, + "PFSS": 2, + "Account": 2, + "Reference": 2, + "known.": 1, + "Returned": 1, + "located": 1, + "Order": 1, + "#100": 1, + "process": 3, + "processed": 1, + "could": 1, + "incorrectly": 1, + "VARIABLES": 1, + "NOVSIT": 1, + "PXAK": 20, + "DFN": 1, + "PXAERRF": 3, + "PXADEC": 1, + "PXELAP": 1, + "PXASUB": 2, + "VALQUIET": 2, + "PRIMFND": 7, + "PXAERROR": 1, + "PXAERR": 7, + "PRVDR": 1, + "needs": 1, + "look": 1, + "up": 1, + "passed.": 1, + "@PXADATA@": 8, + "SOR": 1, + "SOURCE": 2, + "PKG2IEN": 1, + "VSIT": 1, + "PXAPIUTL": 2, + "TMPSOURC": 1, + "SAVES": 1, + "CREATES": 1, + "VST": 2, + "VISIT": 3, + "KILL": 1, + "VPTR": 1, + "PXAIVSTV": 1, + "ERR": 2, + "PXAIVST": 1, + "PRV": 1, + "PROVIDER": 1, + "AUPNVSIT": 1, + ".I": 4, + "..S": 7, + "status": 2, + "Secondary": 2, + ".S": 6, + "..I": 2, + "PXADI": 4, + "NODE": 5, + "SCREEN": 2, + "VA": 1, + "EXTERNAL": 2, + "INTERNAL": 2, + "ARRAY": 2, + "PXAICPTV": 1, + "SEND": 1, + "W": 4, + "BLD": 2, + "DIALOG": 4, + ".PXAERR": 3, + "MSG": 2, + "GLOBAL": 1, + "NA": 1, + "PROVDRST": 1, + "Check": 1, + "provider": 1, + "PRVIEN": 14, + "DETS": 7, + "DIQ": 3, + "PRI": 3, + "PRVPRIM": 2, + "AUPNVPRV": 2, + "U": 14, + ".04": 1, + "DIQ1": 1, + "POVPRM": 1, + "POVARR": 1, + "STOP": 1, + "LPXAK": 4, + "ORDX": 14, + "NDX": 7, + "ORDXP": 3, + "DX": 2, + "ICD9": 2, + "AUPNVPOV": 2, + "@POVARR@": 6, + "force": 1, + "originally": 1, + "primary": 1, + "diagnosis": 1, + "flag": 1, + ".F": 2, + "..E": 1, + "...S": 5, + "decode": 1, + "val": 5, + "Decoded": 1, + "Encoded": 1, + "decoded": 3, + "decoded_": 1, + "safechar": 3, + "zchar": 1, + "encoded_c": 1, + "encoded_": 2, + "FUNC": 1, + "DH": 1, + "zascii": 1, + "WVBRNOT": 1, + "HCIOFO/FT": 1, + "JR": 1, + "IHS/ANMC/MWR": 1, + "BROWSE": 1, + "NOTIFICATIONS": 1, + "/30/98": 1, + "WOMEN": 1, + "WVDATE": 8, + "WVENDDT1": 2, + "WVIEN": 13, + "..F": 2, + "WV": 8, + "WVXREF": 1, + "WVDFN": 6, + "SELECTING": 1, + "ONE": 2, + "CASE": 1, + "MANAGER": 1, + "AND": 3, + "THIS": 3, + "DOESN": 1, + "WVE": 2, + "": 2, + "STORE": 3, + "WVA": 2, + "WVBEGDT1": 1, + "NOTIFICATION": 1, + "IS": 3, + "NOT": 1, + "QUEUED.": 1, + "WVB": 4, + "OR": 2, + "OPEN": 1, + "ONLY": 1, + "CLOSED.": 1, + ".Q": 1, + "EP": 4, + "ALREADY": 1, + "LL": 1, + "SORT": 3, + "ABOVE.": 1, + "DATE": 1, + "WVCHRT": 1, + "SSN": 1, + "WVUTL1": 2, + "SSN#": 1, + "WVNAME": 4, + "WVACC": 4, + "ACCESSION#": 1, + "WVSTAT": 1, + "STATUS": 2, + "WVUTL4": 1, + "WVPRIO": 5, + "PRIORITY": 1, + "WVCHRT_U_WVNAME_U_WVDATE_U_WVACC_U_WVSTAT_U_WVPRIO_U_WVIEN": 1, + "WVC": 4, + "COPYGBL": 3, + "COPY": 1, + "MAKE": 1, + "IT": 1, + "FLAT.": 1, + "...F": 1, + "....S": 1, + "DEQUEUE": 1, + "TASKMAN": 1, + "QUEUE": 1, + "OF": 2, + "PRINTOUT.": 1, + "SETVARS": 2, + "WVUTL5": 2, + "WVBRNOT1": 2, + "EXIT": 1, + "FOLLOW": 1, + "CALLED": 1, + "PROCEDURE": 1, + "FOLLOWUP": 1, + "MENU.": 1, + "WVBEGDT": 1, + "DT": 2, + "WVENDDT": 1, + "DEVICE": 1, + "WVBRNOT2": 1, + "WVPOP": 1, + "WVLOOP": 1, + "ZDIOUT1": 1, + "Experimental": 1, + "FileMan": 1, + "host": 2, + "Open": 1, + "Source": 1, + "Electronic": 1, + "Health": 1, + "Record": 1, + "Agent": 1, + "Licensed": 1, + "Apache": 1, + "Version": 1, + "may": 3, + "except": 1, + "compliance": 1, + "License.": 2, + "//www.apache.org/licenses/LICENSE": 1, + "Unless": 1, + "applicable": 1, + "law": 1, + "agreed": 1, + "BASIS": 1, + "WARRANTIES": 1, + "CONDITIONS": 1, + "KIND": 1, + "express": 1, + "implied.": 1, + "governing": 1, + "permissions": 2, + "limitations": 1, + "ASKFILE": 1, + "FILE": 5, + "ASKDIR": 1, + "DIR": 3, + "SAVEFILE": 2, + "Save": 1, + "given": 1, + "directory": 1, + "CHECK": 1, + "FGR": 4, + "_FILE": 1, + "IO": 4, + "DIR_": 1, + "L": 1, + "FILENAME": 1, + "_IO_": 1, + "_P_": 1, + "NM": 1, + "non": 1, + "printing": 1, + "escaped": 1, + "evaluation": 1, + "RHS": 1, + "SET.": 1, + "TODO": 1, + "Caller": 1, + "indentation": 1, + "comment": 1, + "tab": 1, + "space.": 1, + "M/Wire": 4, + "Protocol": 2, + "Systems": 1, + "By": 1, + "server": 1, + "port": 4, + "systems": 3, + "invoked": 2, + "via": 2, + "xinetd": 2, + "Edit": 1, + "/etc/services": 1, + "mwire": 2, + "/tcp": 1, + "#": 1, + "Service": 1, + "Copy": 2, + "/etc/xinetd.d/mwire": 1, + "/usr/local/gtm/zmwire": 1, + "its": 1, + "executable": 1, + "edited": 1, + "Restart": 1, + "sudo": 1, + "/etc/init.d/xinetd": 1, + "On": 1, + "installed": 1, + "MGWSI": 1, + "provide": 1, + "hashing": 1, + "passwords": 1, + "Alternatively": 1, + "substitute": 1, + "callout": 1, + "choice": 1, + "Daemon": 2, + "running": 1, + "jobbed": 1, + "job": 1, + "zmwireDaemon": 2, + "simply": 1, + "Stop": 1, + "RESJOB": 1, + "it.": 1, + "mwireVersion": 4, + "mwireDate": 2, + "July": 1, + "_crlf": 22, + "_response_": 4, + "_crlf_response_crlf": 4, + "authNeeded": 6, + "input": 41, + "cleardown": 2, + "zint": 1, + "role": 3, + "loop": 7, + "log": 1, + "halt": 3, + "auth": 2, + "ignore": 12, + "pid": 36, + "monitor": 1, + "input_crlf": 1, + "zsy": 2, + "_pid_": 1, + "_pid": 1, + "monitoroutput": 1, + "logger": 17, + "tot": 2, + "mwireLogger": 3, + "info": 1, + "response_": 1, + "_count": 1, + "setpassword": 1, + "SETPASSWORD": 2, + "secret": 2, + "": 1, + "role=": 1, + "admin": 1, + "newrole": 4, + "getGloRef": 3, + "gloName": 1, + "gloRef": 15, + "nb": 2, + "subs": 8, + "nsp": 1, + "subs_": 2, + "_data_": 3, + "subscripts": 8, + "_value_": 1, + "_error_": 1, + "kill": 3, + "xx": 16, + "method": 2, + "Missing": 5, + "JSON": 7, + "transaction": 6, + "document": 6, + "setJSON": 4, + "GlobalName": 3, + "setGlobal": 1, + "zmwire_null_value": 1, + "Invalid": 1, + "props": 1, + "arr": 2, + "getJSON": 2, + "incr": 1, + "incrbr": 1, + "class": 1, + "##": 2, + "decr": 1, + "decrby": 1, + "direction": 1, + "subscriptValue": 1, + "dataStatus": 1, + "dataValue": 1, + "nextsubscript": 2, + "reverseorder": 1, + "*2": 1, + "queryget": 1, + "xxyy": 2, + "zz": 2, + "getallsubscripts": 1, + "orderall": 1, + "": 3, + "note": 2, + "escaping": 1, + "foo": 2, + "_gloRef": 1, + "@x": 4, + "_crlf_": 1, + "j_": 1, + "params": 10, + "_crlf_resp_crlf": 2, + "_crlf_data_crlf": 2, + "mergeto": 1, + "dataLength": 4, + "keyLength": 6, + "noOfRecs": 6, + "MERGETO": 1, + "myglobal": 1, + "*6": 1, + "hello": 1, + "": 2, + "put": 1, + "top": 1, + "noOfRecs#2": 1, + "noOfRecs/2": 1, + "gloRef1": 2, + "gloRef1_": 2, + "_gloRef1_key_": 1, + "sub": 2, + "literal": 2, + "valquot_value_valquot": 1, + "json_value_": 1, + "subscripts1": 2, + "subx": 3, + "subNo": 1, + "numsub": 1, + "json_": 2, + "removeControlChars": 2, + "zobj1": 1, + "buff": 10, + "parseJSONObject": 2, + ".buff": 2, + "subs2": 6, + "_name_": 1, + "subs2_": 2, + "value_c": 1, + "newString": 4, + "newString_c": 1, + "utfConvert": 1, + "Unescape": 1, + "buf": 4, + "c1": 4, + "buf_c1_": 1 + }, + "Makefile": { + "all": 1, + "hello": 4, + "main.o": 3, + "factorial.o": 3, + "hello.o": 3, + "g": 4, + "+": 8, + "-": 6, + "o": 1, + "main.cpp": 2, + "c": 3, + "factorial.cpp": 2, + "hello.cpp": 2, + "clean": 1, + "rm": 1, + "rf": 1, + "*o": 1, + "SHEBANG#!make": 1, + "%": 1, + "ls": 1, + "l": 1 }, "Markdown": { "Tender": 1 }, - "VHDL": { - "begin": 1, - "use": 1, - "entity": 2, - "<": 1, - ")": 1, - "out": 1, - "b": 2, - "a": 2, - "(": 1, - ";": 7, - "-": 2, - "library": 1, - "in": 1, - "is": 2, - "architecture": 2, - "std_logic": 2, - "port": 1, - "file": 1, - "VHDL": 1, - "ieee": 1, - "rtl": 1, - "inverter": 2, - "ieee.std_logic_1164.all": 1, - "not": 1, - "of": 1, - "end": 2, - "example": 1 - }, - "TypeScript": { - "super": 2, - "meters": 2, - "Horse": 2, - "super.move": 2, - ";": 7, - "+": 3, - "}": 9, - ")": 17, - "(": 17, - "{": 9, - "Animal": 4, - "tom.move": 1, - "Snake": 2, - "move": 3, - "sam.move": 1, - "new": 2, - "class": 3, - "public": 1, - "constructor": 3, - "console.log": 1, - "extends": 2, - "name": 5, - "alert": 3, - "sam": 1, - "this.name": 1, - "tom": 1, - "var": 2 - }, - "TeX": { - "AtEndDocument": 1, - "SN": 3, - "nouppercase": 2, - "@latex@warning@no@line": 3, - "bibname": 2, - "makebox": 6, - "hrulefill": 5, - "@pdfoutput": 1, - "above": 1, - "vskip": 4, - "@schapter": 1, - ")": 3, - "advisor": 1, - "major": 1, - "@author": 1, - "@empty": 1, - "thing": 1, - "@advisor": 3, - "RO": 1, - "@altadvisorfalse": 1, - "setlength": 10, - "If": 1, - "titlepage": 2, - "special": 2, - "rightskip": 1, - "one": 1, - "m@ne": 2, - "@plus": 1, - "/01/27": 1, - "caps.": 2, - "footnote": 1, - "pdfinfo": 1, - "center": 7, - "oldthebibliography": 2, - "endtheindex": 1, - "of": 8, - "leftskip": 2, - "@highpenalty": 2, - "parfillskip": 1, - "would": 1, - "indexname": 1, - "addpenalty": 1, - "so": 1, - "right": 1, - "your": 1, - "RE": 2, - "@chapter": 2, - "@undefined": 1, - "When": 1, - "addtocontents": 2, - "or": 1, - "Table": 1, - "A": 1, - "CurrentOption": 1, - "fancyhead": 5, - "thechapter": 1, - "LO": 2, - "pagestyle": 2, - "just": 1, - "Abstract": 2, - "mkern": 2, - "to": 8, - "else": 7, - "ProvidesClass": 1, - "choose": 1, - "LEFT": 2, - "c": 5, - "page": 3, - "@topnewpage": 1, - "oddsidemargin": 2, - "if@restonecol": 1, - "With": 1, - "end": 5, - "space": 4, - "@title": 1, - "scshape": 2, - "evensidemargin": 2, - "Bachelor": 1, - "Presented": 1, - "Degree": 2, - "This": 2, - "LaTeX2e": 1, - "italic": 1, - "Contents": 1, - "PassOptionsToClass": 1, - "reedthesis": 1, - "LE": 1, - "And": 1, - "you": 1, - "lof": 1, - "hss": 1, - "thispagestyle": 3, - "theindex": 2, - "fi": 13, - "LaTeX": 3, - "if@mainmatter": 1, - "RToldcleardoublepage": 1, - "parindent": 1, - "side": 2, - "RToldchapter": 1, - "advance": 1, - "hb@xt@": 1, - "z@": 2, - "out": 1, - "and": 2, - "@department": 3, - "sure": 1, - "Class": 4, - "@dotsep": 2, - "{": 180, - "l@chapter": 1, - "-": 2, - "hskip": 1, - "LoadClass": 1, - "fancyhf": 1, - "lineskip": 1, - "Requirements": 2, - "@restonecoltrue": 1, - "fancyhdr": 1, - "lowercase": 1, - "if@twocolumn": 3, - "pt": 1, - "addtolength": 8, - "vfil": 8, - "Capitals": 1, - "if@openright": 1, - "addvspace": 2, - "DeclareOption*": 1, - "advisor#1": 1, - "@altadvisor": 3, - "addcontentsline": 5, - "ifx": 1, - "begin": 4, - "book": 2, - "does": 1, - "small": 2, - "@topnum": 1, - ".": 1, - "if@altadvisor": 3, - "@afterindentfalse": 1, - "both": 1, - "chaptermark": 1, - "cm": 2, - "headsep": 3, - "not": 1, - "[": 22, - "The": 4, - "empty": 4, - "wd0": 7, - "endgroup": 1, - "@approvedforthe": 3, - "for": 5, - "majors": 1, - "approvedforthe#1": 1, - "will": 2, - "lot": 1, - "bfseries": 3, - "renewenvironment": 2, - "}": 185, - "ifnum": 2, - "Approved": 2, - "Arts": 1, - "division": 2, - "Fulfillment": 1, - "/Creator": 1, - "leaders": 1, - "ProcessOptions": 1, - "relax": 2, - "the": 14, - "symbol": 1, - "same": 1, - "College": 5, - "NeedsTeXFormat": 1, - "headheight": 4, - "altadvisor#1": 1, - "fancy": 1, - "selectfont": 6, - "nobreak": 2, - "department#1": 1, - "thedivisionof#1": 1, - "Specified.": 1, - "em": 3, - "chapter": 9, - "slshape": 2, - ".75em": 1, - "Reed": 5, - "like": 1, - "noexpand": 3, - "oldtheindex": 2, - "thanks": 1, - "@percentchar": 1, - "fontsize": 7, - "penalty": 1, - "leavevmode": 1, - "%": 59, - "textheight": 4, - "No": 3, - "global": 2, - "rawpostscript": 1, - "par": 6, - "RTcleardoublepage": 3, - "]": 22, - "rightmark": 2, - "Division": 2, - "@tempdima": 2, - "thepage": 1, - "tabular": 2, - "abstract": 1, - "m@th": 1, - "@makechapterhead": 2, - "newpage": 3, - "renewcommand": 6, - ".6in": 1, - "RTpercent": 3, - "c@tocdepth": 1, - "be": 3, - "pages": 2, - "use": 1, - "department": 1, - "@date": 1, - "newenvironment": 1, - ".5in": 3, - "refstepcounter": 1, - "typeout": 1, - "endoldthebibliography": 2, - "t": 1, - "baselineskip": 2, - "clearpage": 3, - "secdef": 1, - "p@": 3, - "setcounter": 1, - "twocolumn": 1, - "given": 3, - "remove": 1, - "division#1": 1, - "RIGHT": 2, - "In": 1, - "different": 1, - "endthebibliography": 1, - "topmargin": 6, - "newif": 1, - "makes": 2, - "if@twoside": 1, - "thebibliography": 2, - "left": 1, - "#1": 12, - "footnoterule": 1, - "footnotesize": 1, - "mu": 2, - "textwidth": 2, - "on": 1, - "sign": 1, - "thechapter.": 1, - "toc": 5, - "space#1": 1, - "leftmark": 2, - "comment": 1, - "maketitle": 1, - "AtBeginDvi": 2, - "@restonecolfalse": 1, - "cleardoublepage": 4, - "@chapapp": 2, - "/12/04": 3, - "#2": 4, - "things": 1, - "newcommand": 2, - "@thedivisionof": 3, - "bigskip": 2, - "c@page": 1, - "headers": 6, - "gdef": 6, - "@division": 3, - "null": 3, - "hfill": 1, - "def": 12, - "@pnumwidth": 3, - "psych": 1, - "options": 1, - "from": 1, - "hbox": 15, - "Partial": 1, - "setbox0": 2, - "protect": 2, - "References": 1, - "contentsname": 1, - "AtBeginDocument": 1, - "copy0": 1, - "centerline": 8, - "in": 10, - "(": 3, - "all": 1, - "let": 10, - "ifodd": 1, - "begingroup": 1, - "below": 2, - "endoldtheindex": 2, - "following": 1, - "@altadvisortrue": 1, - "approved": 1, - "onecolumn": 1, - "normalfont": 1, - "Thesis": 5, - "RequirePackage": 1, - "@afterheading": 1, - "c@secnumdepth": 1 - }, - "Rust": { - "child_no": 3, - "opts": 21, - "inverse": 1, - "handle": 3, - "control": 1, - "FIXME": 1, - "deriving_eq": 3, - "fin_ch.send": 1, - "replace": 8, - "distributed": 2, - "awake": 1, - "default_task_opts": 4, - "None": 23, - "If": 1, - "ch.f.swap_unwrap": 4, - "Failure": 6, - "rust_sched_current_nonlazy_threads": 2, - "fr_task_builder": 1, - "hidden": 1, - "test_avoid_copying_the_body_task_spawn": 1, - "rt": 29, - "self.t": 4, - "rust_task_inhibit_kill": 3, - "-": 33, - "function": 1, - "rekillable": 1, - "||": 11, - "fixed": 1, - "unlinked": 1, - ".spawn": 9, - "as": 7, - "self.consume": 7, - "linked": 15, - "": 1, - "po.recv": 10, - "_allow_failure": 2, - "atomically": 3, - "test_add_wrapper": 1, - "Fake": 1, - "opts.supervised": 2, - "doc": 1, - "+": 4, - "setup_ch": 1, - "transmute": 2, - "move": 1, - "extern": 1, - "@fn": 2, - "its": 1, - ")": 434, - "spawn": 15, - "T": 2, - "parent_po": 2, - "notify_chan": 24, - "self": 15, - "mechanisms": 1, - "The": 1, - "test_future_result": 1, - "TaskBuilder": 21, - "custom": 1, - "test_spawn_sched_childs_on_default_sched": 1, - "chan.send": 2, - "blk": 2, - "test_atomically_nested": 1, - "unkillable.": 1, - "}": 210, - "default": 1, - "chan2": 1, - "rust_dbg_lock_create": 2, - "mode": 9, - "_ch": 1, - "val": 4, - "sched_id": 2, - "unkillable": 5, - "task_id": 2, - "get_scheduler": 1, - "reported_threads": 2, - "self.opts.supervised": 5, - "failed": 1, - "Wrapper": 5, - ".supervised": 2, - "{": 213, - "#": 61, - "test_spawn_sched_no_threads": 1, - "supervised": 11, - "port.recv": 2, - "We": 1, - "match": 4, - "nested": 1, - "same": 1, - "addr_of": 2, - "Only": 1, - "runs": 1, - "cmp": 1, - "self.opts.notify_chan": 7, - "sched_mode": 1, - "ever": 1, - "child_po": 2, - "tasks": 1, - "SharedChan": 4, - "..": 8, - "Ok": 3, - "CurrentScheduler": 2, - "u": 2, - "default_id": 2, - "setup_ch.send": 1, - "comm": 5, - "mut": 16, - "can_not_copy": 11, - "test_spawn_linked_sup_fail_down": 1, - "child_ch.send": 1, - "self.gen_body": 2, - "consumed": 4, - "x_in_child": 4, - "local_data": 1, - "ThreadPerCore": 2, - "failure": 1, - "s": 1, - "test_avoid_copying_the_body_unlinked": 1, - "ch.clone": 2, - "": 3, - "child.": 1, - "else": 1, - "max_threads": 2, - "ne": 1, - "propagate": 1, - "TaskHandle": 2, - "spawn_unlinked": 6, - "used": 1, - "test_back_to_the_future_result": 1, - "ch.send": 11, - "should_fail": 11, - "sched": 10, - "on": 5, - "": 3, - "": 2, - "available": 1, - "this": 1, - "testrt": 9, - "priv": 1, - "x.opts.supervised": 1, - "Option": 4, - "": 2, - "get": 1, - "&&": 1, - "//": 20, - ".sched_mode": 2, - "DisallowFailure": 5, - "b0.add_wrapper": 1, - "generations": 2, - "specific": 1, - "while": 2, - "GenericChan": 1, - "Cell": 2, - "wrong": 1, - "test_avoid_copying_the_body_try": 1, - "DefaultScheduler": 2, - "Yield": 1, - "start_po": 1, - "Scheduler": 4, - "let": 84, - "test_spawn_sched_blocking": 1, - "ignore": 16, - "port2": 1, - "run": 1, - "self.opts.notify_chan.is_some": 1, - "x_in_parent": 2, - "port2.recv": 1, - "test_avoid_copying_the_body_spawn": 1, - ".future_result": 4, - "i": 3, - "test_spawn_failure_propagate_secondborn": 1, - "first": 1, - "spawn_supervised": 5, - "of": 3, - "po": 11, - "TaskResult": 4, - "<": 3, - "ManualThreads": 3, - "_p": 1, - "setup_po": 1, - "rust_get_task": 5, - "rust_num_threads": 1, - "fr_task_builder.spawn": 1, - "rust_dbg_lock_unlock": 3, - "GenericPort": 1, - "enum": 4, - "Tasks": 2, - "self.future_result": 1, - "x.opts.linked": 1, - "impl": 3, - "<()>": 6, - "hangs.": 1, - "consume": 1, - "task": 39, - "thread": 2, - "for": 10, - "rust_task_allow_kill": 3, - "rust_task_yield": 1, - "has": 1, - "Err": 2, - "child": 3, - "task_": 2, - "b1": 3, - "rust_dbg_lock_destroy": 2, - "self.opts.linked": 4, - "rust_dbg_lock_wait": 2, - "local_data_priv": 1, - "previous": 1, - "CPUs": 1, - "test_cant_dup_task_builder": 1, - "///": 13, - "PlatformThread": 2, - ".try": 1, - "self.opts.sched": 6, - "a": 9, - "punted": 1, - "pub": 26, - "Runs": 1, - ".unlinked": 3, - "AllowFailure": 5, - ".recv": 3, - "_": 4, - "fail": 17, - "": 2, - "notify_pipe_ch": 2, - "test_spawn_linked_sup_fail_up": 1, - "test_spawn_linked_sup_propagate_sibling": 1, - "Get": 1, - "test_sched_thread_per_core": 1, - "task.": 1, - "self.consumed": 2, - "uint": 7, - "OS": 3, - "future_result": 1, - "get_task": 1, - "call": 1, - "rust_sched_threads": 2, - "Each": 1, - "Shouldn": 1, - "]": 61, - "fails": 4, - "body": 6, - "test_platform_thread": 1, - "in": 3, - "stream": 21, - "unsafe": 31, - "test_try_fail": 1, - "pure": 2, - "[": 61, - "cfg": 16, - "test_spawn_thread_on_demand": 1, - "cell": 1, - "eq": 1, - "test_unkillable": 1, - "fin_ch": 1, - "scheduler": 6, - "Run": 3, - ".": 1, - "loop": 5, - "*libc": 6, - "own": 1, - "unwrap": 3, - "#3538": 1, - "SchedulerHandle": 2, - "one": 1, - "child_sched_id": 5, - "rust_task_inhibit_yield": 1, - "grandparent": 1, - "test_spawn_failure_propagate_nephew_or_niece": 1, - "pingpong": 3, - "running_threads": 2, - "foreign_stack_size": 3, - "Port": 3, - "*": 1, - "return": 1, - "U": 6, - "parent": 2, - "iter": 8, - "drop": 3, - "if": 7, - "Success": 6, - "(": 429, - "Some": 8, - "by": 1, - "": 2, - "&": 30, - "killed": 3, - "assert": 10, - "should": 2, - "around.": 1, - "TaskOpts": 12, - "util": 4, - "SchedMode": 4, - "been": 1, - "|": 20, - "mod": 5, - "modes": 1, - "fin_po.recv": 1, - "": 1, - "True": 1, - "add_wrapper": 1, - "Chan": 4, - "fn": 89, - "cast": 2, - "ptr": 2, - "SingleThreaded": 4, - "ThreadPerTask": 1, - "test_run_basic": 1, - "x": 7, - "_interrupts": 1, - "result": 18, - "option": 4, - "nolink": 1, - "setup_po.recv": 1, - "current": 1, - "Task": 2, - "sends": 1, - "self.spawn": 1, - "v": 6, - "b1.spawn": 3, - "*both*": 1, - "gen_body": 4, - "threads": 1, - "x.opts.sched": 1, - "failing": 2, - "Configure": 1, - "t": 24, - "other": 4, - "rust_task": 1, - "rust_task_allow_yield": 1, - "wrapper": 2, - "ownership": 1, - "use": 10, - "r": 6, - "prev_gen_body": 2, - "grandchild": 1, - ".eq": 1, - "Here": 1, - "rust_dbg_lock_lock": 3, - "port": 3, - "x.gen_body": 1, - "p": 3, - "spawnfn": 2, - "*uint": 1, - "notify_pipe_po": 2, - "among": 2, - "All": 1, - "parent_ch": 2, - "test_try_success": 1, - "try": 5, - "const": 1, - "c_void": 6, - "opts.linked": 2, - "Result": 3, - "struct": 7, - "int": 5, - "bool": 6, - "spawn_raw": 1, - "lock": 13, - "to": 6, - "A": 6, - "arg": 5, - "be": 2, - "start_po.recv": 1, - "leave": 1, - "are": 2, - "get_task_id": 1, - "ExistingScheduler": 1, - "start_ch.send": 1, - "cores": 2, - "test_child_doesnt_ref_parent": 1, - "test": 31, - "SchedOpts": 4, - "test_spawn_unlinked_unsup_no_fail_down": 1, - "chan2.send": 1, - "argument": 1, - "hanging": 1, - "pp": 2, - "chan": 2, - "true": 9, - ".spawn_with": 1, - "start_ch": 1, - "transfering": 1, - "didn": 1, - "rust_get_sched_id": 6, - "windows": 14, - "fin_po": 1, - ";": 218, - "spawn_with": 2, - "running_threads2": 2, - "have": 1, - "f": 38, - "child_ch": 4, - "spawn_sched": 8, - "repeat": 8, - "ch": 26, - "rust_task_is_unwinding": 1, - "the": 10, - "test_unkillable_nested": 1, - "Eq": 2, - "test_spawn_sched": 1, - "": 2, - "b0": 5, - "do": 49, - "*rust_task": 6, - "b": 2, - "across": 1, - "parent_sched_id": 4, - "p.recv": 1, - "would": 1, - "b.spawn": 2, - "running": 2, - "gap": 1, - "rust_dbg_lock_signal": 2, - "yield": 16, - "number": 1, - "false": 7, - "avoid_copying_the_body": 5, - "prelude": 1, - "Identity": 1, - "DeferInterrupts": 5, - "arg.take": 1 - }, - "Coq": { - "eauto.": 7, - "beq_id_false_not_eq": 1, - "Temp1.": 1, - "step": 9, - "rsc_R": 2, - "ly": 4, - "now": 24, - "mult_1.": 1, - "lt_O_neq": 2, - "tm_var": 6, - "meq_left": 1, - "mult_1_distr.": 1, - "munion_ass.": 2, - "Heq.": 6, - "Heqx.": 2, - "fmostlytrue": 5, - "E_IfFalse": 1, - "with": 223, - "%": 3, - "SimpleArith1.": 2, - "override_example": 1, - "Hg": 2, - "cons_sort": 2, - "Notation": 39, - "remove_decreases_count": 1, - "Hmo.": 4, - "elim": 21, - "Tactic": 9, - "IHrefl_step_closure.": 1, - "x2": 3, - "override": 5, - "rev_involutive.": 1, - "head": 1, - "Heqx": 4, - "total_relation_not_partial_function": 1, - "Prop": 17, - "mult_1": 1, - "id": 7, - "H1": 18, - "plus_distr.": 1, - "o": 25, - "assignment": 1, - "ty": 7, - "of": 4, - "Hneqx.": 2, - "all3_spec": 1, - "Hfsurj": 2, - "Arguments": 11, - "nil.": 2, - "map": 4, - "andb_true_elim1": 4, - "ELSE": 3, - "T": 49, - "insert": 2, - "IHe2": 6, - "bexp.": 1, - "test_orb3": 1, - "leA_antisym": 1, - "end.": 52, - "ty_arrow": 7, - "v_true": 1, - "Set": 4, - "i.": 2, - "IHe1.": 11, - "rt_refl.": 2, - "stack": 7, - "leA_trans": 2, - "clear": 7, - "rsc_step.": 2, - "nth_error_app2": 1, - "id1": 2, - "b1": 35, - "natprod.": 1, - "mult_mult.": 3, - "IHt1.": 1, - "permut_refl.": 5, - "EQ.": 2, - "red": 6, - "m1": 1, - "hd_opt": 8, - "step_deterministic": 1, - "transitive.": 1, - "E_BEq": 1, - "eqA_dec": 26, - "plus_0_r.": 1, - "Hlefy": 1, - "dep_pair_intro.": 3, - "proj2_sig": 1, - "pattern": 2, - "HE": 1, - "Hf2": 1, - "plus_swap.": 2, - "andb3": 5, - "Heqloopdef.": 8, - "S_nbeq_0": 1, - "IHa.": 1, - "partial_function.": 5, - "permut_length_1.": 2, - "Lt.lt_irrefl": 2, - "test_nandb1": 1, - "l3.": 1, - "e1.": 1, - "h": 14, - "ConT3": 1, - "H10": 1, - "test_remove_one1": 1, - "Permutation_rev": 3, - "q.": 2, - "Imp.": 1, - "M": 4, - "next_nat.": 1, - "noWhilesSKIP": 1, - "existsb2.": 1, - "in_map_iff": 1, - "2": 1, - "ident": 9, - "Ht": 1, - "HE.": 1, - "mumble.": 1, - "fold_map": 2, - "h2": 1, - "day.": 1, - "IHt1": 2, - "evenb": 5, - "bval": 2, - "IHhas_type.": 1, - "stepmany_congr_1": 1, - "Hy1.": 5, - "Hy2": 3, - "Permutation_app_swap": 1, - "H3.": 5, - "ST_ShortCut.": 1, - "Temp4.": 2, - "IHHmo.": 1, - "silly5": 1, - "|": 457, - "PN.": 2, - "dependent": 6, - "Permutation_alt.": 1, - "a": 207, - "T_App": 2, - "v_const.": 1, - "rsc_trans": 4, - "existsb2": 2, - "sillyex2": 1, - "st.": 7, - "IHc1.": 2, - "appears_free_in": 1, - "Permutation_middle.": 3, - "X0": 2, - "Reserved": 4, - "forallb": 4, - "curry_uncurry": 1, - "permutation_Permutation": 1, - "interval_discr": 1, - "DO": 4, - "sinstr": 8, - "mult_0_r.": 4, - "+": 227, - "Hm": 1, - "if_eqA": 1, - "natoption": 5, - "swap_pair": 1, - "H22.": 1, - "andb_true_intro.": 2, - "Hneqy": 1, - "aeval": 46, - "eval__value": 1, - "unfold_example_bad": 1, - "a.": 6, - "plus_ble_compat_1": 1, - "H22": 2, - "bool_step_prop4_holds": 1, - "le_antisymmetric.": 1, - "l.": 26, - "Permutation_nil_app_cons": 1, - "SMinus": 11, - "O.": 5, - "Permutation_nil": 2, - "pred_inj.": 1, - "e1": 58, - "le_n_O_eq.": 2, - "ceval_step": 3, - "plus_reg_l": 1, - "permut_add_cons_inside": 3, - "eqA.": 1, - "set": 1, - "test_beq_natlist1": 1, - "exists": 60, - "Z": 11, - "adapt.": 2, - "IHn": 12, - "HeqCoiso1.": 1, - "IHclos_refl_trans2.": 2, - "TODO": 1, - "ftrue": 1, - "lx": 4, - "app_ass.": 6, - "Inductive": 41, - "End": 15, - "HdRel": 4, - "Eqdep_dec.": 1, - "update": 2, - "clos_refl_trans": 8, - "mumble": 5, - "Hskip": 3, - "option_elim_hd": 1, - "t.": 4, - "Hf": 15, - "noWhilesAss.": 1, - "reflexivity.": 199, - "silly_presburger_formula": 1, - "using": 18, - "IHhas_type1.": 1, - "nth": 2, - "Permutation_map": 1, - "test_hd_opt2": 2, - "merge0": 1, - "beq_nat_sym": 2, - "m2.": 1, - "extend_neq": 1, - "Permutation_app_head": 2, - "exact": 4, - "constructor.": 16, - "ST_PlusConstConst.": 3, - "x1": 11, - "equiv_Tree": 1, - "emptyBag": 4, - "Resolve": 5, - "card": 2, - "IHa1.": 1, - "k2": 4, - "list123": 1, - "n": 369, - "Defined.": 1, - "beval": 16, - "H0": 16, - "tx": 2, - "map_length.": 1, - "cons": 26, - "no_whiles_eqv": 1, - "minus": 3, - "heap_to_list": 2, - "IHl.": 7, - "Lemma": 51, - "S": 186, - "contradict": 3, - "decide": 1, - "EQ": 8, - "test_orb2": 1, - "Hdec": 3, - "IHe1": 6, - "match": 70, - "Hal": 1, - "prog": 2, - "parsing": 3, - "red.": 1, - "AMinus": 9, - "SLoad": 6, - "Permut.": 1, - "nth_error_app1": 1, - "Permutation.": 2, - "m0": 1, - "trivial": 15, - "where": 6, - "app_ass": 1, - "Coiso2.": 3, - "IHbevalR": 1, - "Setoid": 1, - "s2": 2, - "Hlefx": 1, - "eq1.": 5, - "T_Abs.": 1, - "refl_step_closure": 11, - "multiplicity": 6, - "Hf1": 1, - "plus_n_Sm.": 1, - "injective_bounded_surjective": 1, - "perm_swap.": 2, - "Compare_dec": 1, - "simple": 7, - "E_Seq": 1, - "plus_O_n": 1, - "override_neq": 1, - "nat.": 4, - "test_factorial1": 1, - "Hnm": 3, - "total_relation": 1, - "InA": 8, - "T3": 2, - "Export": 10, - "g": 6, - "Hperm": 7, - "permut_add_cons_inside.": 1, - "build_heap": 3, - "Tree.": 1, - "IHrefl_step_closure": 1, - "app_nil_end": 1, - "no_whiles": 15, - "left.": 3, - "not_eq_beq_id_false": 1, - "exp": 2, - "nil_is_heap": 5, - "1": 1, - "munion_comm": 1, - "mult_comm": 2, - "t_false": 1, - "fold_map.": 1, - "SSCase": 3, - "bag": 3, - "command": 2, - "index": 3, - "PD": 2, - "test_andb34": 1, - "Hy1": 2, - "ST_Plus1.": 2, - "order": 2, - "state": 6, - "plus_1_1": 1, - "wednesday": 3, - "assumption": 10, - "silly4": 1, - "Hl2": 1, - "l4": 3, - "@HdRel_inv": 2, - "beq_id": 14, - "Abs": 2, - "permut_app_inv1": 1, - "{": 39, - "mult_1_plus": 1, - "override_example4": 1, - "type_scope.": 1, - "plus_n_Sm": 1, - "end": 16, - "perm_nil": 1, - "intros": 258, - "beval_short_circuit_eqv": 1, - "optimize_0plus": 15, - "sym_not_eq.": 2, - "sillyex1": 1, - "multiplicity_InA": 4, - "plus_reg_l.": 1, - "map_length": 1, - "AId": 4, - "Hneq.": 2, - "le.": 4, - "E": 7, - "aeval_iff_aevalR": 9, - "ceval_cases": 1, - "is_heap_rect": 1, - "Permutation_nth_error": 2, - "sinstr.": 1, - "c2": 9, - "le_antisymmetric": 1, - "*": 59, - "munion": 18, - "Hl": 1, - "mult": 3, - "IHHce2.": 1, - "other": 20, - "Scheme": 1, - "Hneqx": 1, - "rewrite": 241, - "beval_iff_bevalR": 1, - "H21": 3, - "fst": 3, - "sunday": 2, - "meq_congr": 1, - "multiset": 2, - "Fixpoint": 36, - "bin2un": 3, - "Qed.": 194, - "t": 93, - "LT": 14, - "extend.": 2, - "Hpq.": 1, - "inj_restrict": 1, - "beq_nat_eq": 2, - "Y": 38, - "nandb": 5, - "bl": 3, - "E_WhileLoop": 2, - "H11.": 1, - "ST_IfFalse": 1, - "total_relation1.": 2, - "constfun": 1, - "permut_sym": 4, - "i2.": 8, - "mult_1_1": 1, - "E_AMult": 2, - "IHm": 2, - "v2": 2, - "<=m}>": 1, - "le_not_a_partial_function": 1, - "com_cases": 1, - "oddb": 5, - "le_trans.": 1, - "reflexive.": 1, - "@In": 1, - "Local": 7, - "neq_dep_intro": 2, - "base": 3, - "x2.": 2, - "IHc2": 2, - "plus_swap": 2, - "IHl1.": 1, - "singletonBag": 10, - "merge_lem": 3, - "test_hd_opt1": 2, - "surjective_pairing": 1, - "antisymmetric": 3, - "specialize": 6, - "le_uniqueness_proof": 1, - "execute_theorem.": 1, - "x0": 14, - "E_ANum": 1, - "Hx.": 5, - "empty_relation.": 1, - "k1": 5, - "surjective": 1, - "Import": 11, - "m": 201, - "next_nat_closure_is_le": 1, - "le_n.": 6, - "app": 5, - "in_seq": 4, - "lt_n_Sn.": 1, - "inversion": 104, - "meq_sym": 2, - "eval_cases": 1, - "R": 54, - "A2": 4, - "E_BNot": 1, - "grumble": 3, - "in_map_iff.": 2, - "Hpermmm": 1, - "empty_state": 2, - "test_orb1": 1, - "l1.": 5, - "T2.": 1, - "contents": 12, - "Hxx": 1, - "In": 6, - "None.": 2, - "meq_right": 2, - "LeA": 1, - "BEq": 9, - "Heqf.": 2, - "partial_function": 6, - "Hy": 14, - "incbin": 2, - "SPlus": 10, - "o.": 4, - "com": 5, - "friday": 3, - "z.": 6, - "ListNotations.": 1, - "Heq": 8, - "Type": 86, - "Implicit": 15, - "s1": 20, - "bool": 38, - "beq_id_eq": 4, - "Gamma": 10, - "partial_map": 4, - "IHle.": 1, - "eq.": 11, - "Sorted_inv": 2, - "Some": 21, - "loopdef.": 1, - "nat_bijection_Permutation": 1, - "repeat": 11, - "Heqst1": 1, - "treesort_twist2": 1, - "beq_id_false_not_eq.": 1, - "by": 7, - "f": 108, - "plus_comm.": 3, - "H1.": 31, - "T2": 20, - "plus_1_1.": 1, - "bexp": 22, - "Temp2.": 1, - "plus3.": 1, - "tp": 2, - "intuition.": 2, - "NoDup_Permutation_bis": 2, - "mult_assoc": 1, - "node_is_heap": 7, - "auto.": 47, - "Hlt.": 1, - "Fact": 3, - "simpl.": 70, - "natlist": 7, - "next_weekday": 3, - "T12": 2, - "SimpleArith2.": 1, - "xs": 7, - "meq_congr.": 1, - "xSn": 21, - "0": 5, - "unfold": 58, - "Theorem": 115, - "ST_App2": 1, - "fold_map_correct": 1, - "E.": 2, - "and": 1, - "rev": 7, - "le_S.": 4, - "option": 6, - "adapt_injective.": 1, - "injection": 4, - "test_andb33": 1, - "forall": 248, - "execute_theorem": 1, - "n2": 41, - "E_BLe": 1, - "andb": 8, - "replace": 4, - "y2": 5, - "bin.": 1, - "Hy0": 1, - "relation": 19, - "case": 2, - "Morphisms.": 2, - "tm_app": 7, - "fold": 1, - "Hl1": 1, - "multiplicity_InA_S": 1, - "x=": 1, - "l3": 12, - "BO": 4, - "refl_equal": 4, - "THEN": 3, - "silly3": 1, - "v_abs": 1, - "ty.": 2, - "Hint": 9, - "z": 14, - "mult_plus_distr_r": 1, - "defs.": 2, - "Hneqy.": 2, - "Arguments.": 2, - "override_example3": 1, - "Permutation_length.": 1, - "right.": 9, - "next_nat": 1, - "Permutation_app.": 1, - "Permutation_app_tail": 2, - "_": 67, - "munion_rotate.": 1, - "j.": 1, - "IHe2.": 10, - "bevalR": 11, - "tm_abs": 9, - "Lt.lt_le_trans": 2, - "s_execute2": 1, - "st": 113, - "IHcontra2.": 1, - "D": 9, - "tm_if": 10, - "X.": 4, - "eq_nat_dec.": 1, - "c1": 14, - "ST_App1.": 2, - "permut_tran": 1, - "Ltac": 1, - "constructor": 6, - "E_Skip": 1, - ")": 1249, - "t3": 6, - "T_Var.": 1, - "destruct": 94, - "Section": 4, - "E_BTrue": 1, - "E_Anum": 1, - "le_n_S": 1, - "change": 1, - "plus_comm": 3, - "pair": 7, - "tm_false.": 3, - "order.": 1, - "r.": 3, - "s": 13, - "t2.": 4, - "test_repeat1": 1, - "meq.": 2, - "Permutation_cons_append": 1, - "subst.": 43, - "leA": 25, - "optimize_0plus_all_sound": 1, - "X": 191, - "bool_step_prop4": 1, - "IHl": 8, - "v1": 7, - "s_compile": 36, - "eq_S.": 1, - "empty": 3, - "not": 1, - "HF.": 3, - "Hlt": 3, - "aevalR_first_try.": 2, - "E_APlus": 2, - "i2": 10, - "ST_IfTrue.": 1, - "bool_step_prop4.": 2, - "reflexive": 5, - "Nonsense.": 4, - "SetoidList.": 1, - "@Permutation": 5, - "nil": 46, - "contradiction": 8, - "SPush": 8, - "is_heap": 18, - "aevalR": 18, - "Hy2.": 2, - "Minus.minus_Sn_m": 1, - "Lt.le_lt_or_eq": 3, - "remove_one": 3, - "H4.": 2, - "revert": 5, - "Temp5.": 1, - "IHc1": 2, - "Permutation_app": 3, - "Equivalence": 2, - "first": 18, - "contra1.": 1, - "transitivity": 4, - "assumption.": 61, - "le_ind": 1, - "IHa2": 1, - "beq_nat_O_l": 1, - "app_comm_cons": 5, - "ct": 2, - "nn.": 1, - "Forall2_app": 1, - "only": 3, - "adapt": 4, - "length": 21, - "l": 379, - "IHc2.": 2, - "H.": 100, - "Logic.": 1, - "A1": 2, - "Permutation_ind_bis": 2, - "WHILE": 5, - "Q": 3, - "bounded": 1, - "IHHy1": 2, - "eval": 8, - "Qed": 23, - "leA_dec": 4, - "IHe": 2, - "idBBBB": 2, - "permut_add_inside_eq": 1, - "Hfbound.": 2, - "tuesday.": 1, - "SCase.": 3, - "split.": 17, - "Hx": 20, - "le_trans": 4, - "permut_length_2": 1, - "b.": 14, - "app_nil_end.": 1, - "id.": 1, - "day": 9, - "omega": 7, - "Permutation_cons_append.": 3, - "||": 1, - "optimize_and_sound": 1, - "m.": 21, - "card_inj": 1, - "ST_AppAbs.": 3, - "P.": 5, - "zero_nbeq_S": 1, - "heap_exist": 3, - "treesort_twist1": 1, - "silly2a": 1, - "Case_aux": 38, - "Forall2.": 1, - "T1": 25, - "loop": 2, - "e": 53, - "natprod": 5, - "HeqCoiso2.": 1, - "congruence.": 1, - "LE": 11, - "IHHce.": 2, - "HeqS": 3, - "plus_1_neq_0": 1, - "associativity": 7, - "next_nat_partial_function": 1, - "index_okx": 1, - "HSnx": 1, - "factorial": 2, - "contra.": 19, - "simpl": 116, - "T11": 2, - "idB": 2, - "tm_plus": 30, - "Permutation_NoDup": 1, - "left": 6, - "omega.": 7, - "/": 41, - "IHhas_type2.": 1, - "combine": 3, - "LT.": 5, - "Hq": 3, - "symmetry": 4, - "merge0.": 2, - "IHt.": 1, - "permut_trans": 5, - "discriminate.": 2, - "n1": 45, - "dep_pair_intro": 2, - "eq_rect_eq_nat.": 1, - "test_andb32": 1, - "y1": 6, - "filter": 3, - "IHa2.": 1, - "eqA": 29, - "Module": 11, - "merge": 5, - "noWhilesSeq.": 1, - "a2": 62, - "eqA_dec.": 2, - "compatible": 1, - "if_eqA_refl": 3, - "results": 1, - "@app": 1, - "AMult": 9, - "noWhilesAss": 1, - "leA_Tree": 16, - "l2": 73, - "STLC.": 1, - "Hfinj.": 3, - "IHm.": 1, - "in": 221, - "le_Sn_le": 2, - "y": 116, - "override_example2": 1, - "permut_length": 1, - "cf": 2, - "bin": 9, - "Heqg": 1, - "normal_form.": 2, - "mult_distr": 1, - "ST_Plus1": 2, - "Hmo": 1, - "rt_refl": 1, - "s_execute1": 1, - "silly_ex": 1, - "ST_If": 1, - "rsc_refl.": 4, - "not_eq_beq_false.": 1, - "characterization": 1, - "discriminate": 3, - "(": 1248, - "Case": 51, - "tm_cases": 1, - "tm_false": 5, - "permut_remove_hd": 1, - "..": 4, - "list": 78, - "eq2.": 9, - "t2": 51, - "insert_exist": 4, - "BTrue": 10, - "meq_trans.": 1, - "leA_refl.": 1, - "ST_Funny": 1, - "do": 4, - "Permutation_middle": 2, - "ty_Bool.": 1, - "value.": 1, - "value_not_same_as_normal_form": 2, - "beq_nat_O_r": 1, - "permut_sym_app": 1, - "arith": 4, - "None": 9, - "IHHT1.": 1, - "E_Const": 2, - "Permutation_impl_permutation": 1, - "Lt.lt_not_le": 2, - "remember": 12, - "H4": 7, - "r": 11, - "e.": 15, - "seq": 2, - "Hypothesis": 7, - "S.": 1, - "perm_swap": 1, - "@rev": 1, - "Permutation_sym": 1, - "ny.": 1, - "if_eqA_then": 1, - "Alternative": 1, - "i1": 15, - "<": 76, - "test_aeval1": 1, - "List": 2, - "snoc_with_append": 1, - "IHP": 2, - "try": 17, - "plus_id_exercise": 1, - "APlus": 14, - "ST_Plus2.": 2, - "Prop.": 1, - "Arith.": 2, - "card_interval.": 2, - "level": 11, - "stepmany": 4, - "countoddmembers": 1, - "permut_right": 1, - "permutation": 43, - "plus_id_example": 1, - "IHa1": 1, - "Sorted.": 1, - "normalizing": 1, - "Forall2_cons": 1, - "x.": 3, - "In_split": 1, - "eapply": 8, - "le_neq_lt": 2, - "test_nandb4": 1, - "ST_IfTrue": 1, - "k": 7, - "strong_progress": 2, - "v_const": 4, - "total": 2, - "plus3": 2, - "app_assoc": 2, - "P": 32, - "v_abs.": 2, - "aexp_cases": 3, - "Permutation": 38, - "negb": 10, - "le_Sn_n": 5, - "E_AMinus": 2, - "prod": 3, - "beval_short_circuit": 5, - "IHp.": 2, - "munion_ass": 1, - "L12": 2, - "Playground1.": 5, - "setoid_rewrite": 2, - "no_Whiles": 10, - "has_type": 4, - "Sn_le_Sm__n_le_m": 2, - "eq": 4, - "permut_length_1": 1, - "le_O_n.": 2, - "IHi1": 3, - "Definition": 46, - "existsb_correct": 1, - "SimpleArith0.": 2, - "rev_exercise": 1, - "HT1.": 1, - "Hf.": 1, - "Hmn.": 1, - "C.": 3, - "permut_rev": 1, - "meq_singleton": 1, - "split": 14, - "cl": 1, - "tactic": 9, - "beq_id_refl": 1, - "pose": 2, - "HT.": 1, - "H12.": 1, - "override.": 2, - "d": 6, - "T0": 2, - "subst": 7, - "double": 2, - "permut_middle": 1, - "permut_cons_eq": 3, - "Permutation_trans": 4, - "@nil": 1, - "st1": 2, - "apply": 340, - "Sorted": 5, - "eqA_equiv": 1, - "Permutation_app_inv": 1, - "BLe": 9, - "test_oddb2": 1, - "T11.": 4, - "SingletonBag": 2, - "Hfx": 2, - "multiplicity_NoDupA": 1, - "monday": 5, - "other.": 4, - ".": 433, - "Hle": 1, - "h.": 1, - "IHbevalR2": 1, - "orb": 8, - "Hp": 5, - "bad": 1, - "eq_rect": 3, - "test_andb31": 1, - "gtA": 1, - "n0": 5, - "a1": 56, - "Hy.": 3, - "mult_plus_distr_r.": 1, - "permut_refl": 1, - "adapt_injective": 1, - "Hfinj": 1, - "l1": 89, - "generalize": 13, - "silly1": 1, - "rsc_refl": 1, - "rt_step": 1, - "break_list": 5, - "x": 266, - "plus_assoc": 1, - "s_compile1": 1, - "override_example1": 1, - "test": 4, - "NEQ": 1, - "app_length.": 2, - "NoDup_cardinal_incl": 1, - "END": 4, - "Heqf": 1, - "Hceval.": 4, - "le_not_lt": 1, - "]": 173, - "card_interval": 1, - "l2.": 8, - "HeapT3": 1, - "Permutation_app_comm": 3, - "test_next_weekday": 1, - "Hmn": 1, - "B": 6, - "Injection": 1, - "remove_all": 2, - "p.": 9, - "Heqr.": 1, - "plus_O_n.": 1, - "symmetric": 2, - "Permutation_nil_cons": 1, - "injective": 6, - "no_whiles_terminate": 1, - "SMult": 11, - "invert_heap": 3, - "BAnd": 10, - "E_Ass": 1, - "a0.": 1, - "plus_assoc.": 4, - "list_to_heap": 2, - "noWhilesSeq": 1, - "into": 2, - "optimize_and": 5, - "f_equal": 1, - "Type.": 3, - "t1": 48, - "<=n),>": 1, - "ble_nat": 6, - "card_inj_aux": 1, - "true.": 16, - "ty_Bool": 10, - "rtc_rsc_coincide": 1, - "permut_app": 1, - "true": 68, - "interval_dec": 1, - "beq_natlist": 5, - "Hceval": 2, - "Sorting.": 1, - "Instance": 7, - "@munion": 1, - "IHs.": 2, - "H2.": 20, - "Temp3.": 1, - "inversion_clear": 6, - "beq_false_not_eq": 1, - "if": 10, - "H3": 4, - "E_BFalse": 1, - "q": 15, - "test_step_2": 1, - "IHl1": 1, - "Lt.S_pred": 3, - "flat_exist": 3, - "trivial.": 14, - "FI": 3, - "Equivalence_Reflexive.": 1, - "at": 17, - "reflexivity": 16, - "Equivalence_Reflexive": 1, - "InA_split": 1, - "lt": 3, - ";": 375, - "existsb": 3, - "Htrans": 1, - "<=>": 12, - "permutation.": 1, - "bin_comm": 1, - "empty_relation_not_partial_funcion": 1, - "not.": 3, - "injective_map_NoDup": 2, - "Tree_Leaf.": 1, - "eq_rect_eq_nat": 2, - "b3": 2, - "datatypes.": 47, - "Hnm.": 3, - "eq_add_S": 2, - "v_false": 1, - "le_reflexive": 1, - "eq2": 1, - "prod_uncurry": 3, - "Forall2": 2, - "idtac": 1, - "noWhilesIf": 1, - "test_nandb3": 1, - "Hgefy": 1, - "<=n}>": 1, - "H12": 2, - "Relations.": 1, - "j": 6, - "override_eq": 1, - "permut_InA_InA": 3, - "Let": 8, - "step_cases": 4, - "transitive": 8, - "y2.": 3, - "N.": 1, - "E_IfTrue": 2, - "BNot": 9, - "Constructors": 3, - "Hginj": 1, - "Example": 37, - "context_invariance...": 2, - "Y.": 1, - "O": 98, - "then": 9, - "Require": 17, - "plus2": 1, - "ST_App2.": 1, - "step_example3": 1, - "nth_error": 7, - "meq": 15, - "Hneq": 7, - "intros.": 27, - "tm_true": 8, - "IHclos_refl_trans1.": 2, - "False.": 1, - "leA_Tree_Leaf": 5, - "noWhilesIf.": 1, - "IHt3": 1, - "Mergesort.": 1, - "normal_form": 3, - "if_eqA_rewrite_l": 1, - "AExp.": 2, - "Hle.": 1, - "s_execute": 21, - "IHHce1.": 1, - "PG": 2, - "@if_eqA_rewrite_l": 2, - "Global": 5, - "Tree_Node": 11, - "snd": 3, - "is_heap_rec": 1, - "stepmany_congr2": 1, - "silly7": 1, - "seq_NoDup.": 1, - "count": 7, - "s.": 4, - "t3.": 2, - "le_S_n": 2, - "is": 4, - "mult_plus_1": 1, - "interval_dec.": 1, - "low_trans": 3, - "merge_exist": 5, - "SfLib.": 2, - "rev_snoc": 1, - "<->": 31, - "andb_false_r": 1, - "c": 70, - "tm": 43, - "Htrans.": 1, - "perm_trans": 1, - "mult_0_plus": 1, - "beq_nat_refl": 3, - "idB.": 1, - "step.": 3, - "thursday": 3, - "H": 76, - "Basics.": 2, - "test_oddb1": 1, - "leA_refl": 1, - "Hgsurj": 3, - "leA_antisym.": 1, - "H5.": 1, - "equivalence": 1, - "via": 1, - "aexp": 30, - "-": 508, - "Id": 7, - "plus_rearrange": 1, - "rsc_step": 4, - "IHA": 2, - "Permutation_in.": 2, - "E_BAnd": 1, - "PermutSetoid": 1, - "SCase": 24, - "IHbevalR1": 1, - "Hlep.": 3, - "right": 2, - "mult_0_1": 1, - "E_WhileEnd": 2, - "HT": 1, - "nil_is_heap.": 1, - "a0": 15, - "lt.": 2, - "Hl.": 1, - "Omega": 1, - "IHP2": 1, - "l0": 7, - "Coiso1.": 2, - "f_equal.": 1, - "app_nil_r": 1, - "Permutation_add_inside": 1, - "r2": 2, - "aexp.": 1, - "mult_mult": 1, - "symmetry.": 2, - "permut_nil": 3, - "false.": 12, - "else": 9, - "e3": 1, - "idBB": 2, - "double_injective": 1, - "permut_add_inside": 1, - "exist": 7, - "ny": 2, - "exfalso.": 1, - "IHp": 2, - "Immediate": 1, - "Hgsurj.": 1, - "types_unique": 1, - "Permut_permut.": 1, - "incl": 3, - "Hswap": 2, - "A": 113, - "bexp_cases": 4, - "rt_step.": 2, - "NoDup": 4, - "K_dec_set": 1, - "c.": 5, - "preservation": 1, - "value": 25, - "&": 21, - "bool.": 1, - "Ht.": 3, - "Q.": 2, - "prod_curry": 3, - "lt_le_trans": 1, - "ST_IfFalse.": 1, - "le_n": 4, - "context": 1, - "let": 3, - "ST_PlusConstConst": 3, - "assertion": 3, - "Heqy": 1, - "minustwo": 1, - "le_S": 6, - "natoption.": 1, - "Permutation_cons_app": 3, - "p": 81, - "insert_spec": 3, - "H2": 12, - "test_step_1": 1, - "app_length": 1, - "permut_cons": 5, - "H0.": 24, - "snoc": 9, - "flat_spec": 3, - "beq_natlist_refl": 1, - "saturday": 3, - "andb_true_elim2": 4, - "meq_trans": 10, - "tm_const": 45, - "v.": 1, - "false": 48, - "test_orb4": 1, - "as": 77, - "option_elim": 2, - "intro": 27, - "noWhilesSKIP.": 1, - "cons_leA": 2, - "eauto": 10, - "Sn_le_Sm__n_le_m.": 1, - "adapt_ok": 2, - "True": 1, - "perm_skip": 1, - "if_eqA_rewrite_r": 1, - "b2": 23, - "id2": 2, - "fun": 17, - "Ha": 6, - "NatList.": 2, - "proj1_sig": 1, - "plus": 10, - "Hafi.": 2, - "list_contents_app": 5, - "IHn.": 3, - "BFalse": 11, - "ex_falso_quodlibet.": 1, - "tm.": 3, - "le_reflexive.": 1, - "Forall2_app_inv_r": 1, - "Hf3": 2, - "iff": 1, - "HF": 2, - "eq1": 6, - "H8.": 1, - "mult_plus_1.": 1, - "list_contents": 30, - "ANum": 18, - "nat": 108, - "Relations": 2, - "Heqr": 3, - "test_nandb2": 1, - "Hgefx": 1, - "induction": 81, - "nf_same_as_value": 3, - "H11": 2, - "multiplicity_InA.": 1, - "nth_error_None": 4, - "BD.": 1, - "tuesday": 3, - "leA_Tree_Node": 1, - "rename": 2, - "LeA.": 1, - "i": 11, - "preorder": 1, - "Logic.eq": 2, - "munion_comm.": 2, - "lt_trans": 4, - "NoDupA_equivlistA_permut": 1, - "seq_NoDup": 1, - "N": 1, - "A.": 6, - "ST_If.": 2, - "IHb": 1, - "Proof": 12, - "al": 3, - "permut_eqA": 1, - "NoDupA": 3, - "Lt.le_or_lt": 1, - "fix": 2, - "treesort": 1, - "i1.": 3, - "3": 2, - "Permutation_refl": 1, - "optimize_0plus_sound": 4, - "extend": 1, - "IHt2": 3, - "@length": 1, - "s_compile_correct": 1, - "Multiset": 2, - "Context.": 1, - "x1.": 3, - "Variable": 7, - "IHHT2.": 1, - "silly6": 1, - "uncurry_uncurry": 1, - "E_Plus": 2, - "f.": 1, - "proof": 1, - "Permutation_length": 2, - "}": 35, - "IFB": 4, - "optimize_0plus_all": 2, - "nil_app": 1, - "Lists.": 1, - "LE.": 3, - "lt_irrefl": 2, - "substitution_preserves_typing": 1, - "b": 89, - "Proof.": 208, - "Tree": 24, - "T.": 9, - "rt_trans": 3, - "permut_cons_InA": 3, - "decide_left": 1, - "eq_refl": 2, - "tl": 8, - "HSnx.": 1, - "G": 6, - "v_funny.": 1, - "ceval_step_more": 7, - "le": 1, - "Permutation_alt": 1, - "ble_n_Sn.": 1, - "power": 2, - "XtimesYinZ": 1, - "Proper": 5, - "Heqe.": 3, - "Hn": 1, - "assert": 68, - "Hfbound": 1, - "arith.": 8, - "IH": 3, - "n.": 44, - "le_lt_trans": 2, - "le_order": 1, - "Hnil": 1, - "HeqS.": 2, - "cons_leA.": 2, - "y.": 15, - "multiplicity_InA_O": 2, - "beq_nat": 24, - "EmptyBag": 2, - "nat_scope.": 3, - "t_true": 1, - "list_contents_app.": 1, - "SKIP": 5, - "v": 28, - "r1": 2, - "e2": 54, - "test_optimize_0plus": 1, - "auto": 73, - "Tree_Leaf": 9, - "permut_conv_inv": 1, - "le_lt_dec": 9, - "@meq": 4, - "*.": 110, - "beq_nat_refl.": 1, - "nx": 3, - "[": 170, - "Hlep": 4, - "pred": 3, - "test_beq_natlist2": 1 - }, - "Nemerle": { - "module": 1, - "}": 2, - ")": 2, - "(": 2, - "{": 2, - ";": 2, - "System.Console": 1, - "using": 1, - "WriteLine": 1, - "void": 1, - "Main": 1, - "Program": 1 - }, "Matlab": { - "te": 2, - "raise": 19, - "kP2": 3, - "pzplot": 1, - "line.": 2, - "twentyPercent.": 2, - "closedBode": 3, - "...": 162, - "@": 1, - "mandatory": 2, - "lane.": 1, - "for": 77, - "arrays": 1, - "deps2c": 3, - "arrayfun": 2, - "with": 2, - "y_max": 3, - "%": 552, - "bops.FreqUnits": 1, - ".handlingMetric.num": 1, - "data.system.D": 1, - "meaningless": 2, - "str": 2, - "py_T": 4, - "Metric": 2, - "classdef": 1, - "holder": 2, - "vx_0_min": 8, - "Double": 1, - "openBode": 3, - "vx_0.": 2, - "x2": 1, - "den": 15, - "path_plots": 1, - "ticks": 4, - "h/2": 2, - "k3": 3, - "minLine": 4, - "analytic": 3, - "choose_plant": 4, - "colors": 13, - "compute": 2, - "openLoops.Psi.den": 1, - "of": 35, - "vy0": 2, - "gains.Yellowrev.Fast": 1, - "dphi": 12, - "depends": 1, - "Ys.num": 1, - "loc": 3, - "path": 3, - "T": 22, - "transfer": 1, - "per": 5, - "args.sampleTime": 1, - "settings.inputs": 1, - "nome": 2, - "deltaNum": 2, - "coords": 2, - "clear": 13, - "/abs": 3, - "XColor": 1, - "which": 2, - "Position": 6, - "RK4": 3, - "red": 1, - "/length": 1, - "bodeoptions": 1, - "mine": 1, - "portrait": 3, - "@fH": 1, - "through": 1, - "fileparts": 1, - "grid_min": 3, - "data.forceTF.PhiDot.num": 1, - "mass": 2, - "Path": 1, - "store": 4, - "parfor": 5, - "de": 4, - "args.detrend": 1, - "sense": 2, - "save": 2, - "h": 19, - "e_0": 7, - "data.bicycle.inputs": 1, - "data.Browser": 1, - "convert_variable": 1, - "y_T": 17, - "lane_change": 1, - "removeStates": 1, - "fieldnames": 5, - "mai": 1, - "xLab": 8, - "aux": 3, - "zeros": 60, - "numeric.C": 1, - "h2": 5, - "handling_all_bikes": 1, - "grid_x": 3, - "advected": 2, - "setoptions": 2, - "options": 14, - "closedLoops.PhiDot.den": 1, - "dy": 5, - "width": 3, - "goodness": 1, - "free": 1, - "interesting": 4, - "gains.Fisher.Fast": 1, - "gains.Browserins.Fast": 1, - "Check": 6, - "|": 2, - "ci": 9, - "x_0_max": 8, - "Compute_FILE_gpu": 1, - "a": 17, - "largest": 1, - "closedLoops.Delta.den": 1, - "opts.PhaseMatchingValue": 2, - "analytic.B": 1, - "aux.m": 3, - "final": 2, - "data.Benchmark.Medium": 2, - "c3": 3, - "openLoops.Psi.num": 1, - "guess.": 2, - "colorbar": 1, - "*Omega": 5, - "xn": 4, - "+": 169, - "sum": 2, - "*vx_0": 1, - "Bode": 1, - "filesep": 14, - "k1*h/2": 1, - "*ds_vx": 2, - "value1": 4, - "advected_x": 12, - "load_data": 4, - "u": 3, - "y_a": 10, - "par": 7, - "yl3": 8, - "gains.Browser.Medium": 1, - "they": 2, - "set": 43, - "Kinetic": 2, - "self": 2, - "conditions": 3, - "kP1": 4, - "ax": 15, - "vx_f": 3, - "back": 1, - "x_r": 6, - "spiegarsi": 1, - "TODO": 1, - "black": 1, - "delta_e": 3, - "StateName": 1, - "ismember": 15, - "sameSpeedIndices": 5, - "data.system.C": 1, - "vx_0": 37, - "task": 1, - ".*": 2, - "k2*h/2": 1, - "overrideNames": 2, - "Color": 13, - "rollData.path": 1, - "tempo": 4, - "lambda_max": 2, - "Distance": 1, - "matrice": 1, - "pu": 1, - "resultPlantTwo.fit": 1, - "VAF": 2, - "semicolon": 2, - "blue": 1, - "type": 4, - "n": 102, - "closedLoops.PhiDot.num": 1, - "bicycle_state_space": 1, - "k2": 3, - "tf2ss": 1, - "shading": 3, - "v_y": 3, - "overwrite_settings": 2, - "np": 8, - "S": 5, - "textX": 3, - "decide": 1, - "position": 2, - "getState": 1, - "calcolare": 2, - "t_integr": 1, - "bikeData.modelPar.": 1, - "Lagrangian": 3, - "gains.Pista.Slow": 1, - "how": 1, - "phiDotDen": 2, - "h_a": 5, - "bicycle.InputName": 2, - "data.modelPar.D": 1, - "idnlgrey": 1, - "speedsInFile": 5, - "notGiven": 5, - "memory": 1, - "speeds": 21, - "vOut": 2, - "w_a": 7, - "cleaning": 1, - "RelTol": 2, - "error": 14, - "g": 5, - "field": 2, - "Deviation": 1, - "E_L1": 4, - "pad": 10, - "display": 10, - "openLoops.Y.den": 1, - "eye": 9, - "obj": 2, - "userSettings": 3, - "numeric.B": 1, - "1": 1, - "closeLeg": 2, - "integration": 9, - "command": 2, - "index": 6, - "h1": 5, - "x_min": 3, - "order": 11, + "function": 32, + "[": 309, "dx": 6, - "_e": 1, - "laneLength": 4, - "plantNum": 1, - "y_0.": 2, - "Loop": 1, - "box": 4, - "@RKF45_FILE_gpu": 1, - "{": 157, - "@f": 6, - "end": 147, - "inputParser": 1, - "sigma": 6, - "Short": 1, - "CURRENT_DIRECTORY": 2, - "spostamento": 1, - "analytic.A": 3, - "E": 8, - "round": 1, - "minStates": 2, - "c2": 5, - "filtro_1": 12, - ".2f": 5, - "plots/": 1, - "*": 46, - "setxor": 1, - "mu./": 1, - "randomGuess": 1, - "identified": 1, - "guessPlantOne": 4, - "deltaDen": 2, - "data.Ts": 6, - "AbsTol": 2, - "whichLines": 3, - "start": 4, + "y": 22, + "]": 309, + "adapting_structural_model": 2, + "(": 1357, "t": 32, - "vy_T": 12, - "ok": 2, - "C_star": 1, - "phiDotNum": 2, - "yl2": 8, - "Y": 19, - "dArrow2": 2, - "Frequency": 2, - "properties": 1, - "statefcn": 2, - "get_variables": 2, - "gains": 12, - "strcmp": 24, - "rollData": 8, - "gainSlopeOffset": 6, - "resultPlantTwo.fit.par": 1, - "speed": 20, - "xlim": 8, - "loopNames": 4, - "data.system.B": 1, - "openLoops.Y.num": 1, - "gains.Yellow.Medium": 1, - "phisically": 2, - "Y_0": 4, - "maxLine": 7, - "freq": 12, - "validation": 2, - "gainsInFile": 3, - "gains.Browserins.Medium": 1, - "xLimits": 6, - "gains.Yellow.Slow": 1, - "Compute": 3, - "Energy": 4, - "x0": 4, - "k1": 4, - "Back": 1, - "rollTorque": 4, - "m": 44, - "Linewidth": 7, - "opts": 4, - "wnm": 11, - "eigenValues": 1, - "R": 1, - "xData": 3, - "xySource": 7, - "openLoops": 1, - "*grid_width/": 4, - "integrare": 2, - "speedNames": 12, - "eigenvalue": 2, - "grid_width": 1, - "contents": 1, - "system_state_space": 2, - "h*k3": 1, - "raw": 1, - "keepOutputs": 2, - "legLines": 1, - "gpuArray": 4, - "sg": 1, - "In": 1, - "/2": 3, - "non": 2, - "FTLE": 14, - "conservation": 2, - "strtrim": 2, - "obj.R": 2, - ".vaf": 1, - "metricLine": 1, - "enumeration": 1, - "abs": 12, - "aux.plantSecond": 2, - "Lagr": 6, - "unit": 1, - "data.modelPar.C": 1, - "gains.Pista.Fast": 1, - "many": 1, - "EastOutside": 1, - "OutputName": 1, - "mod": 3, - "gain": 1, - "gains.Fisher.Medium": 1, - "LineStyle": 2, - "open_loop_all_bikes": 1, - "axis": 5, - "VY_T": 3, - "*T": 3, - "number": 2, - "La": 1, - "oneSpeed.time": 2, - "w_r/2": 4, - "equations": 2, - "py_0": 2, - "gains.Browser.Fast": 1, - "f": 13, - "pathToParFile": 2, - "phase_portraits": 2, - "Offset": 2, - "methods": 1, - "mag": 4, - "warning": 1, - "input": 14, - "green": 1, - "waitbar": 6, - "uses": 1, - "Fontsize": 4, - "yh": 2, - "Earth": 2, - "numeric.A": 2, - "xl5": 8, - "maxEvals": 4, - "curPos2": 4, - "Linestyle": 6, - "aux.pars": 3, - "teoricamente": 1, - "allSpeeds": 4, - "and": 7, - "f_x_t": 2, - "gains.Fisher.Slow": 1, - "Computation": 9, - "wc": 14, - "arg": 2, - "raw.theta": 1, - "linspace": 14, - "numbers": 2, - "ecc": 2, - "solutions": 2, - "z": 3, - "units": 3, - "PaperPosition": 3, - "db2": 2, - ".file": 1, - "io": 7, - "RK4_par": 1, - "x_max": 3, - "y_f": 3, - "gains.Benchmark.Slow": 1, - "_": 2, - "plantOneSlopeOffset": 3, - "none": 1, - "resides": 2, - "varargin_to_structure": 2, - "data.bicycle.outputs": 1, - "point": 14, - "D": 7, - "contents.colheaders": 1, - "endOfSlope": 1, - "roots": 3, - "wShift": 5, - "y_0": 29, - "defaultSettings.outputs": 1, - "c1": 5, - "PaperUnits": 3, - "visualize": 2, - "generate_data": 5, + "x": 42, + "u": 3, + "varargin": 25, ")": 1358, - "@getState": 1, - "./": 1, + "%": 552, + "size": 8, + "aux": 3, + "{": 157, + "end": 147, + "}": 157, + ";": 891, + "m": 44, + "zeros": 60, + "b": 12, + "for": 77, + "i": 334, + "if": 52, + "+": 169, + "elseif": 14, + "else": 23, + "display": 10, + "aux.pars": 3, + ".*": 2, + "Yp": 2, + "human": 1, + "aux.timeDelay": 2, + "c1": 5, + "aux.m": 3, + "*": 46, + "aux.b": 3, + "e": 14, + "-": 672, + "c2": 5, + "Yc": 5, + "parallel": 2, + "plant": 4, + "aux.plantFirst": 2, + "aux.plantSecond": 2, + "Ys": 1, + "feedback": 1, + "A": 11, + "B": 9, + "C": 13, + "D": 7, + "tf2ss": 1, + "Ys.num": 1, + "Ys.den": 1, + "average": 1, + "n": 102, + "|": 2, + "&": 4, + "error": 14, + "sum": 2, + "/length": 1, + "bicycle": 7, + "bicycle_state_space": 1, + "speed": 20, + "S": 5, + "dbstack": 1, + "CURRENT_DIRECTORY": 2, + "fileparts": 1, + ".file": 1, + "par": 7, + "par_text_to_struct": 4, + "filesep": 14, + "...": 162, + "whipple_pull_force_abcd": 2, + "states": 7, + "outputs": 10, + "inputs": 14, + "defaultSettings.states": 1, + "defaultSettings.inputs": 1, + "defaultSettings.outputs": 1, + "userSettings": 3, + "varargin_to_structure": 2, + "struct": 1, + "settings": 3, + "overwrite_settings": 2, + "defaultSettings": 3, + "minStates": 2, + "ismember": 15, + "settings.states": 3, + "<": 9, + "keepStates": 2, + "find": 24, + "removeStates": 1, + "row": 6, + "abs": 12, + "col": 5, + "s": 13, + "sprintf": 11, + "removeInputs": 2, + "settings.inputs": 1, + "keepOutputs": 2, + "settings.outputs": 1, + "It": 1, + "is": 7, + "not": 3, + "possible": 1, + "to": 9, + "keep": 1, + "output": 7, + "because": 1, + "it": 1, + "depends": 1, + "on": 13, + "input": 14, + "StateName": 1, + "OutputName": 1, + "InputName": 1, + "x_0": 45, + "linspace": 14, + "vx_0": 37, + "z": 3, + "j": 242, + "*vx_0": 1, + "figure": 17, + "pcolor": 2, + "shading": 3, + "flat": 3, + "name": 4, + "order": 11, + "convert_variable": 1, + "variable": 10, + "coordinates": 6, + "speeds": 21, + "get_variables": 2, + "columns": 4, + "create_ieee_paper_plots": 2, + "data": 27, + "rollData": 8, + "global": 6, + "goldenRatio": 12, + "sqrt": 14, + "/": 59, + "exist": 1, + "mkdir": 1, + "linestyles": 15, + "colors": 13, + "loop_shape_example": 3, + "data.Benchmark.Medium": 2, + "plot_io_roll": 3, + "open_loop_all_bikes": 1, + "handling_all_bikes": 1, + "path_plots": 1, + "var": 3, + "io": 7, + "typ": 3, + "length": 49, + "plot_io": 1, + "phase_portraits": 2, + "eigenvalues": 2, + "bikeData": 2, + "figWidth": 24, + "figHeight": 19, + "set": 43, + "gcf": 17, + "freq": 12, + "hold": 23, + "all": 15, + "closedLoops": 1, + "bikeData.closedLoops": 1, + "bops": 7, + "bodeoptions": 1, + "bops.FreqUnits": 1, + "strcmp": 24, + "gray": 7, + "deltaNum": 2, + "closedLoops.Delta.num": 1, + "deltaDen": 2, + "closedLoops.Delta.den": 1, + "bodeplot": 6, + "tf": 18, + "neuroNum": 2, + "neuroDen": 2, + "whichLines": 3, + "phiDotNum": 2, + "closedLoops.PhiDot.num": 1, + "phiDotDen": 2, + "closedLoops.PhiDot.den": 1, + "closedBode": 3, + "off": 10, + "opts": 4, + "getoptions": 2, + "opts.YLim": 3, + "opts.PhaseMatching": 2, + "opts.PhaseMatchingValue": 2, + "opts.Title.String": 2, + "setoptions": 2, + "lines": 17, + "findobj": 5, + "raise": 19, + "plotAxes": 22, + "curPos1": 4, + "get": 11, + "curPos2": 4, + "xLab": 8, + "legWords": 3, + "closeLeg": 2, + "legend": 7, + "axes": 9, + "db1": 4, + "text": 11, + "db2": 2, + "dArrow1": 2, + "annotation": 13, + "dArrow2": 2, + "dArrow": 2, + "filename": 21, + "pathToFile": 11, + "print": 6, + "fix_ps_linestyle": 6, + "openLoops": 1, + "bikeData.openLoops": 1, + "num": 24, + "openLoops.Phi.num": 1, + "den": 15, + "openLoops.Phi.den": 1, + "openLoops.Psi.num": 1, + "openLoops.Psi.den": 1, + "openLoops.Y.num": 1, + "openLoops.Y.den": 1, + "openBode": 3, + "line": 15, + "wc": 14, + "wShift": 5, + "num2str": 10, + "bikeData.handlingMetric.num": 1, + "bikeData.handlingMetric.den": 1, + "w": 3, + "mag": 4, + "phase": 2, + "bode": 5, + "metricLine": 1, + "plot": 26, + "k": 75, + "Linewidth": 7, + "Color": 13, + "Linestyle": 6, + "Handling": 2, + "Quality": 2, + "Metric": 2, + "Frequency": 2, + "rad/s": 4, + "Level": 6, + "benchmark": 1, + "Handling.eps": 1, + "plots": 4, + "deps2": 1, + "loose": 4, + "PaperOrientation": 3, + "portrait": 3, + "PaperUnits": 3, + "inches": 3, + "PaperPositionMode": 3, + "manual": 3, + "PaperPosition": 3, + "PaperSize": 3, + "rad/sec": 1, + "phi": 13, + "Open": 1, + "Loop": 1, + "Bode": 1, + "Diagrams": 1, + "at": 3, + "m/s": 6, + "Latex": 1, + "type": 4, + "LineStyle": 2, + "LineWidth": 2, + "Location": 2, + "Southwest": 1, + "Fontsize": 4, + "YColor": 2, + "XColor": 1, + "Position": 6, + "Xlabel": 1, + "Units": 1, + "normalized": 1, + "openBode.eps": 1, + "deps2c": 3, + "maxMag": 2, + "max": 9, + "magnitudes": 1, + "area": 1, + "fillColors": 1, + "gca": 8, + "speedNames": 12, + "metricLines": 2, + "bikes": 24, + "data.": 6, + ".": 13, + ".handlingMetric.num": 1, + ".handlingMetric.den": 1, + "chil": 2, + "legLines": 1, + "Hands": 1, + "free": 1, + "@": 1, + "handling.eps": 1, + "f": 13, + "YTick": 1, + "YTickLabel": 1, + "Path": 1, + "Southeast": 1, + "Distance": 1, + "Lateral": 1, + "Deviation": 1, + "paths.eps": 1, + "d": 3, + "like": 1, + "plot.": 1, + "names": 6, + "prettyNames": 3, + "units": 3, + "index": 6, + "fieldnames": 5, + "data.Browser": 1, + "maxValue": 4, + "oneSpeed": 3, + "history": 7, + "oneSpeed.": 3, + "round": 1, + "pad": 10, + "yShift": 16, + "xShift": 3, + "time": 21, + "oneSpeed.time": 2, + "oneSpeed.speed": 2, + "distance": 6, + "xAxis": 12, + "xData": 3, + "textX": 3, + "ylim": 2, + "ticks": 4, + "xlabel": 8, + "xLimits": 6, + "xlim": 8, + "loc": 3, + "l1": 2, + "l2": 2, + "first": 3, + "ylabel": 4, + "box": 4, + "&&": 13, + "x_r": 6, + "y_r": 6, + "w_r": 5, + "h_r": 5, + "rectangle": 2, + "w_r/2": 4, + "h_r/2": 4, + "x_a": 10, + "y_a": 10, + "w_a": 7, + "h_a": 5, + "ax": 15, + "axis": 5, + "rollData.speed": 1, + "rollData.time": 1, + "path": 3, + "rollData.path": 1, + "frontWheel": 3, + "rollData.outputs": 3, + "rollAngle": 4, + "steerAngle": 4, + "rollTorque": 4, + "rollData.inputs": 1, + "subplot": 3, + "h1": 5, + "h2": 5, + "plotyy": 3, + "inset": 3, + "gainChanges": 2, + "loopNames": 4, + "xy": 7, + "xySource": 7, + "xlabels": 2, + "ylabels": 2, + "legends": 3, + "floatSpec": 3, + "twentyPercent": 1, + "generate_data": 5, + "nominalData": 1, + "nominalData.": 2, + "bikeData.": 2, + "twentyPercent.": 2, + "equal": 2, + "leg1": 2, + "bikeData.modelPar.": 1, + "leg2": 2, + "twentyPercent.modelPar.": 1, + "eVals": 5, + "pathToParFile": 2, + "str": 2, + "eigenValues": 1, + "eig": 6, + "real": 3, + "zeroIndices": 3, + "ones": 6, + "maxEvals": 4, + "maxLine": 7, + "minLine": 4, + "min": 1, + "speedInd": 12, + "value": 2, + "isterminal": 2, + "direction": 2, + "mu": 73, + "FIXME": 1, + "from": 2, + "the": 14, + "largest": 1, + "primary": 1, + "clear": 13, + "tic": 7, + "T": 22, + "x_min": 3, + "x_max": 3, + "y_min": 3, + "y_max": 3, + "how": 1, + "many": 1, + "points": 11, + "per": 5, + "one": 3, + "measure": 1, + "unit": 1, + "both": 1, + "in": 8, + "and": 7, + "ds": 1, + "x_res": 7, + "*n": 2, + "y_res": 7, + "grid_x": 3, + "grid_y": 3, + "advected_x": 12, + "advected_y": 12, + "parfor": 5, + "X": 6, + "ode45": 6, + "@dg": 1, + "store": 4, + "advected": 2, + "positions": 2, + "as": 4, + "they": 2, + "would": 2, + "appear": 2, + "coords": 2, + "Compute": 3, + "FTLE": 14, + "sigma": 6, + "compute": 2, + "Jacobian": 3, + "*ds": 4, + "eigenvalue": 2, + "of": 35, + "*phi": 2, + "log": 2, + "lambda_max": 2, + "/abs": 3, + "*T": 3, + "toc": 5, + "field": 2, + "contourf": 2, + "location": 1, + "EastOutside": 1, + "f_x_t": 2, + "inline": 1, + "grid_min": 3, + "grid_max": 3, + "grid_width": 1, + "grid_spacing": 5, + "grid_width/": 1, + "*grid_width/": 4, + "colorbar": 1, + "load_data": 4, + "t0": 6, + "t1": 6, + "t2": 6, "t3": 1, "dataPlantOne": 3, - "handling.eps": 1, - "cyan": 1, - "also": 1, - "initial": 5, - "goldenRatio": 12, - "bikeData.closedLoops": 1, - "annotation": 13, - "YTickLabel": 1, - "contents.data": 2, - "Conditions": 1, - "change": 1, - "find": 24, - "Manual": 2, - "eigenvalues": 2, - "global": 6, - "useful": 9, - "positions": 2, - "s": 13, - "rad/sec": 1, - "inline": 1, - "yl1": 12, - "nu": 2, - "dArrow1": 2, - "like": 1, - "denominatore": 1, - "log": 2, - "X": 6, - "makeFilter": 1, - "negative": 1, - "oneSpeed.": 3, - "Handling": 2, - "arguments": 7, - "It": 1, - "not": 3, - "removeInputs": 2, - "opts.YLim": 3, - "@cr3bp_jac": 1, - "zeroIndices": 3, - "magenta": 1, - "raw.theta_c": 1, - "plot": 26, - "keepStates": 2, - "data.system.A": 1, - "downSlope": 3, - "settings.outputs": 1, - "normalized": 1, - "orbit": 1, - "first": 3, - "Runge": 1, - "phi": 13, - "all": 15, - "plotyy": 3, - "Saving": 4, - "only": 7, - "l": 64, - "length": 49, - "bikeData.openLoops": 1, - "nominalData": 1, - "gains.Yellow.Fast": 1, - "deps2": 1, - "resultPlantOne": 1, - "distance": 6, - "*e_0": 3, - "Y0": 6, - "data.bicycle.states": 1, - "fopen": 2, - "Southeast": 1, - "yn": 2, - "average": 1, - "defaultSettings.": 1, - "xy": 7, - "ds_x": 1, - "plotAxes": 22, - "defaultSettings": 3, - "vals": 2, - "col": 5, - "data.modelPar.B": 1, - "parser": 1, - "*n": 2, - "x_0_min": 8, - "||": 3, - "par_text_to_struct": 4, - "name": 4, - "Xlabel": 1, - "X_T": 4, - "Range": 1, - "yShift": 16, - "allGains": 4, - "whipple_pull_force_ABCD": 1, - "bicycle.StateName": 2, - "tspan": 7, - "struct": 1, - "aux.plantFirst": 2, - "Selection": 1, - "loop": 1, - "bikes": 24, - "e": 14, - "positive": 2, - "gather": 4, - "metricLines": 2, - "to": 9, - "rectangle": 2, - "energy_tol": 6, - "compare": 3, - "possible": 1, - "importdata": 1, - "bikeData.handlingMetric.den": 1, - "nvx": 32, - "twentyPercent.modelPar.": 1, - "Open": 1, - "YColor": 2, - "Moon": 2, - "magnitudes": 1, - "velocity": 2, - "fit": 6, - "u.": 1, - "wfs": 1, - "xl4": 10, - "range": 2, - "curPos1": 4, - "/": 59, - "single": 1, - "YTick": 1, - "line": 15, - "inputs": 14, - "load_bikes": 2, - "get": 11, - "Ys": 1, - "filter": 14, - "numeric": 2, - "gains.Pista.Medium": 1, - "results": 1, - "l2": 2, - "_H": 1, - "db1": 4, - "nominalData.": 2, - "*E_L1": 1, - "in": 8, - "y_res": 7, - "y": 22, - "parser.parse": 1, - "px_T": 4, - "guesses": 1, - "@cross_y": 1, - "speedInd": 12, - "floatSpec": 3, - "th": 1, - "gains.Benchmark.Fast": 1, - "y_gpu": 3, - "ss": 3, - "C": 13, - "Points": 2, - ".png": 1, - "dello": 1, - "(": 1357, - "tau": 1, - "bicycle": 7, - "la": 2, - "t2": 6, - "steps": 2, - "xAxis": 12, - "data": 27, - "ftle": 10, - "r": 2, - "*E": 2, - "h_r/2": 4, - "E_cin": 4, - "plantTwoSlopeOffset": 3, - "Hands": 1, - "C/2": 1, - "direction": 2, - "tic": 7, - "odeset": 4, - "i/n": 1, - "iirFilter": 1, - "C_L1": 3, - "Setting": 1, - "legend": 7, - "oneSpeed.speed": 2, - "PaperSize": 3, - "<": 9, - "h/6*": 1, - "typ": 3, - "closed": 1, - "xShift": 3, - "defaultNames": 2, - "i/nx": 2, - "oneSpeed": 3, - "x_T": 25, - "bikeData.handlingMetric.num": 1, - "secData.": 1, - "time": 21, - "Data": 2, - "xlabel": 8, - "this": 2, - "opts.Title.String": 2, - "flat": 3, - "aux.timeDelay": 2, - "t_integrazione": 3, - "vy_f": 3, - "numeric.InputName": 1, - "arg1": 1, - "y_r": 6, - "points": 11, - "Construction": 1, - "paths.eps": 1, - "k": 75, - "total": 6, - "vx_0_max": 8, - "E_T": 11, - "filename": 21, - "dim": 2, - "gca": 8, - "vy_0": 22, - "benchmark": 1, - "Plot": 1, - "computation": 2, - "eVals": 5, - "direzione": 1, - "prod": 3, - "sections": 13, - "outputs": 10, - "settings.": 1, - "gains.Browser.Slow": 1, - "prettyNames": 3, - "close": 4, - "write_gains": 1, - "ode113": 2, - "*mu": 6, - "figure": 17, - "Definition": 1, - "openBode.eps": 1, - "data.modelPar.A": 1, - "Lateral": 1, - "var_": 2, - "gains.": 1, - "xlabels": 2, - "parallel": 2, - "parser.addRequired": 1, - "it": 1, - "options.": 1, - "getoptions": 2, - "matrix": 3, - "rollData.inputs": 1, - "pcolor": 2, - "function": 32, - "ode45": 6, - "d": 3, - "grid_max": 3, - "ylabel": 4, - "double": 1, - "from": 2, - "*ds": 4, - "dataPlantTwo": 3, - "human": 1, - "names": 6, - "coordinates": 6, - "vx0": 2, - "matlab_function": 5, - "keep": 1, - "h_r": 5, - "x_a": 10, - ".": 13, - "*log": 2, - "xl3": 8, - "ret": 3, - "bops": 7, - "legends": 3, - "bad": 4, - "*Potential": 5, - "Diagrams": 1, - "Choice": 2, - "y0": 2, - "w_r": 5, - "min": 1, - "leg2": 2, - "plot_io_roll": 3, - "EnergyH": 1, - "parser.Results": 1, - "are": 1, - "l1": 2, - "plots": 4, - "Integrate": 6, - "figHeight": 19, - "Integration": 2, - "x": 42, - "currentGuess": 2, - "vy_gpu": 3, - "ndgrid": 2, - "]": 309, - "parameter": 2, - "guess": 1, - "size": 8, - "*phi": 2, - "sprintf": 11, - "C_L1/2": 1, - "sr": 1, - "print": 6, - "neuroDen": 2, - "B": 9, - "*k3": 1, - "ecc*cos": 1, - "into": 1, - "plot_io": 1, - "primary": 1, - "obj.B": 2, - "defaultSettings.inputs": 1, - "m/s": 6, - "steerAngle": 4, - "t1": 6, - "off": 10, - "rad/s": 4, - "Kutta": 1, - "e_T": 7, - "true": 2, - "create_ieee_paper_plots": 2, - "Jacobian": 3, - "Inf": 1, - "disp": 8, - "rollData.outputs": 3, - "@dg": 1, - "&&": 13, - "if": 52, - "figWidth": 24, - "ridotta": 1, - "Szebehely": 1, - "Initial": 3, - "Hill": 1, - "clc": 1, - "@f_reg": 1, - "integrated": 5, - "data/": 1, - "at": 3, - "integrator": 2, - "Parallel": 2, - "equal": 2, - "rollData.time": 1, - ";": 891, - "appear": 2, - "aux.b": 3, - "zetanm": 5, - "fclose": 2, - "<=>": 1, - "Location": 2, - "Latex": 1, - "Quality": 2, - "load": 1, - "openLoops.Phi.num": 1, - "bicycle.OutputName": 4, - "vy": 2, - "lines": 17, - "because": 1, - "maxValue": 4, - "findobj": 5, - "suppresses": 2, - "both": 1, - "area": 1, - "while": 1, - "j": 242, - "gainChanges": 2, - "frontWheel": 3, - "opts.PhaseMatching": 2, - "toc": 5, - "one": 3, - "approach": 1, - "pem": 1, - "result.": 2, - "tolerance": 2, - "linestyles": 15, - "gains.Yellowrev.Medium": 1, - "Consider": 1, - "plantNum.plantOne": 2, - "same": 2, - "num": 24, - "parser.addParamValue": 3, - "Dimensionless": 1, - "lane": 4, - "neuroNum": 2, - "rollData.speed": 1, - "filter_ftle": 11, - "par.": 1, - "white": 1, - "needs": 1, - "bikeData.": 2, - "is": 7, - "defaultSettings.states": 1, - "manual": 3, - "phase": 2, - "FIXME": 1, - "settings.states": 3, - "result": 5, - "isreal": 8, - "energy": 8, - "analytic.D": 1, - "stored": 1, - "results.mat": 1, - "ones": 6, - "Hamiltonian": 1, - "ne": 29, - "plant": 4, - "ye": 9, - "variable": 10, - "hold": 23, - "vx_T": 22, - "essere": 1, - "args": 1, - "inf": 1, - "xl2": 9, - "pathToFile": 11, - "-": 672, - "iddata": 1, - "The": 6, - "filtro": 15, - "ylim": 2, - "Potential": 1, - "leg1": 2, - "GPU": 3, - "inset": 3, - "l0": 1, - "output": 7, - "Handling.eps": 1, - "Omega": 7, - "r2": 3, - "From": 1, - "il": 1, - "w": 3, - "yl5": 8, - "legWords": 3, - "dvx": 3, - "guessPlantTwo": 3, - "on": 13, - "else": 23, - "startOfSlope": 3, - "max": 9, - "Level": 6, - "y_min": 3, - "exist": 1, - "guess.plantOne": 3, - "ny": 29, - "directory": 2, - "tf": 18, - "filtfcn": 2, - "A": 11, - "loop_shape_example": 3, - "*k2": 1, - "sqrt": 14, - "resultPlantOne.fit.par": 1, - "fprintf": 18, - "numeric.StateName": 1, - "yellow": 1, - "&": 4, - "value": 2, - "closedLoops.Delta.num": 1, - "motion": 2, - "t0": 6, - "pathLength": 3, - "settings": 3, - "resultPlantTwo": 1, - "definition": 2, - "bottomRow": 1, - "InputName": 1, - "row": 6, - "p": 7, - "@iirFilter": 1, - "gains.Yellowrev.Slow": 1, - "ie": 2, - "Units": 1, - "k4": 4, - "LineWidth": 2, - "bikeData": 2, - "Integrate_FTLE_Gawlick_ell": 1, - "fillColors": 1, - "gcf": 17, - "bodeplot": 6, - "slope": 3, - "isterminal": 2, - "VX_T": 4, - "dphi*dphi": 1, - "data.": 6, - "px_0": 2, - "as": 4, - "delta_E0": 1, - "whipple_pull_force_abcd": 2, - "come": 1, - "ss2tf": 2, - "fun": 5, - "fid": 7, - "detrend": 1, - "axes": 9, - "gray": 7, - "PaperOrientation": 3, - "real": 3, - "args.directory": 1, - "dbstack": 1, - "delta_E": 7, - "_n": 2, - "integrating": 1, - "vx": 2, - "history": 7, - "@f_ell": 1, - ".fit.par": 1, - "dArrow": 2, - "Yc": 5, - "plantNum.plantTwo": 2, - "subplot": 3, - "mkdir": 1, - "ischar": 1, - "grid_width/": 1, - "textscan": 1, - "i": 334, - "maxMag": 2, - "system": 2, - "location": 1, - "sort": 1, - "regexp": 1, - "gains.Benchmark.Medium": 1, - "place": 2, - "variables": 2, - ".handlingMetric.den": 1, - "ds_vx": 1, - "varargin": 25, - "N": 9, - "the": 14, - "grid": 1, - "closedLoops": 1, - "plot.": 1, - "difference": 2, - "numeric.D": 1, - "states": 7, - "x_res": 7, - "var_xvx_": 2, - "x_f": 3, - "ylabels": 2, - "grid_y": 3, - "Elements": 1, - "x_gpu": 3, - "grid_spacing": 5, - "PaperPositionMode": 3, - "ode00": 2, - "bode": 5, - "x_0": 45, - "Ys.den": 1, - "var": 3, - "gains.Browserins.Slow": 1, - "twentyPercent": 1, - "f.": 2, - "inches": 3, - "}": 157, - "str2num": 1, - "squeeze": 1, - "rollAngle": 4, - "ftle_norm": 1, - "feedback": 1, - "b": 12, - "text": 11, - "find_structural_gains": 2, - "mu": 73, + "data.Ts": 6, "dataAdapting": 3, - "analytic.C": 1, - "G": 1, - "CPU": 1, - "elseif": 14, - "contourf": 2, - "loose": 4, - "*ds_x": 2, - "E_0": 4, - "numeric.OutputName": 1, - "matlab_class": 2, - "Integrate_FILE": 1, - "columns": 4, - "Y_T": 4, - "measure": 1, - "xl1": 13, - "data.forceTF.PhiDot.den": 1, - "obj.G": 2, - "guess.plantTwo": 2, - "pints": 1, - "overrideSettings": 3, - "Call": 2, - "would": 2, - "fix_ps_linestyle": 6, - "Transforming": 1, - "ds": 1, - "Yp": 2, - "chil": 2, - "num2str": 10, - "value2": 4, - "meaningful": 6, - "Look": 2, - "setting": 4, - "eig": 6, - "advected_y": 12, - "v": 12, - "r1": 3, - "vx_gpu": 3, + "dataPlantTwo": 3, + "guessPlantOne": 4, + "resultPlantOne": 1, + "find_structural_gains": 2, + "yh": 2, + "fit": 6, + "x0": 4, + "compare": 3, "resultPlantOne.fit": 1, - "Edgecolor": 1, - "each": 2, - "openLoops.Phi.den": 1, - "yl4": 9, - "adapting_structural_model": 2, - "nx": 32, - "[": 309, - "Southwest": 1 - }, - "XC": { - "int": 2, - "return": 1, - "}": 2, - "0": 1, - "c": 3, - ";": 4, - "x": 3, - "{": 2, - ")": 1, - "(": 1, - "main": 1, - "chan": 1, - "par": 1, - "<:>": 1 - }, - "Scheme": { - "color": 2, - "degrees": 2, - "set": 19, - "key": 2, - "b": 4, - "a.vel": 1, - "record": 5, - "s42": 1, - "nanosecond": 1, - "fields": 4, - "define": 27, - "par.vel": 1, - "par.birth": 1, - "s27": 1, - "asteroids": 15, - "wrap": 4, - "glutWireCube": 1, - "lifetime": 1, - "ammo": 9, - "glutPostRedisplay": 1, - "4": 1, - "nanoseconds": 2, - "seconds": 12, - "pack": 12, - "randomize": 1, - "radius": 6, - "basic": 1, - "glutKeyboardFunc": 1, - "1": 2, - "ship.vel": 5, - "ship.theta": 10, - "glColor3f": 5, - "vel": 4, - "base": 2, - "second": 1, - "is": 8, - "newline": 2, - ".": 1, - "x": 8, - "filter": 4, - "lists": 1, - "bullet.birth": 1, - "+": 28, - "pt*n": 8, - "update": 2, - "(": 359, - "default": 1, - "width": 8, - "matrix": 5, - "sin": 1, - "a.radius": 1, - "particle": 8, - "gl": 12, - "space": 1, - "only": 1, - "#f": 5, - "i": 6, - "glutMainLoop": 1, - "f": 1, - "<=>": 3, - "buffered": 1, - "glTranslated": 1, - "mod": 2, - "cons": 1, - "c": 4, - "val": 3, - "pt": 49, - "radians": 8, - "bullet.vel": 1, - ";": 1684, - "misc": 1, - "par.pos": 2, - "rnrs": 1, - "s19": 1, - "5": 1, - "procedure": 1, - "current": 15, - "time": 24, - "size": 1, - "number": 3, - "list": 6, - "2": 1, - "angle": 6, - "comprehensions": 1, - "cos": 1, - "source": 2, - "make": 11, - "map": 4, - "args": 2, - "cond": 2, - "pack.pos": 3, - "dharmalab": 2, - "/": 7, - "y": 3, - "contact": 2, - "par.lifetime": 1, - "ship.pos": 5, - "integer": 25, - "glu": 1, - "in": 14, - "of": 3, - "height": 8, - "type": 5, - "s1": 1, - "s": 1, - "else": 2, - "utilities": 1, - "compat": 1, - ")": 373, - "bullets": 7, - "surfage": 4, - "p": 6, - "bits": 1, - "#": 6, - "case": 1, - "spaceship": 5, - "glutIdleFunc": 1, - "null": 1, - "a.pos": 2, - "background": 1, - "append": 4, - "inexact": 16, - "step": 1, - "import": 1, - "birth": 2, - "particles": 11, - "d": 1, - "begin": 1, - "glutWireSphere": 3, - "vector": 6, - "ships": 1, - "level": 5, - "reshape": 1, - "asteroid": 14, - "glamour": 2, - "<": 1, - "pack.vel": 1, - "system": 2, - "a": 19, - "math": 1, - "eager": 1, - "force": 1, - "lambda": 12, - "theta": 1, - "initialize": 1, - "10": 1, - "excursion": 5, - "milli": 1, - "ec": 6, - "bullet": 16, - "ship": 8, - "bullet.pos": 2, - "glutWireCone": 1, - "glut": 2, - "pi": 2, - "score": 5, - "100": 6, - "0": 7, - "agave": 4, - "w": 1, - "last": 3, - "par": 6, - "say": 9, - "each": 7, - "-": 188, - "when": 5, - "geometry": 1, - "for": 7, - "random": 27, - "mutable": 14, - "translate": 6, - "records": 1, - "char": 1, - "ref": 3, - "title": 1, - "n": 2, - "if": 1, - "micro": 1, - "display": 4, - "pos": 16, - "50": 4, - "distance": 3, - "glRotated": 2, - "window": 2, - "dt": 7, - "starting": 3, - "let": 2 - }, - "JSON": { - "true": 3, - "]": 165, - "[": 165, - "}": 143, - "{": 143 - }, - "Omgrofl": { - "liek": 1, - "rofl": 13, - "World": 1, - "Hello": 1, - "brb": 1, - "iz": 11, - "lmao": 1, - "stfu": 1, - "loool": 6, - "lool": 5, - "lol": 14, - "w00t": 1, - "wtf": 1 - }, - "Ragel in Ruby Host": { - "emit": 4, - "EPHEMERIS_DATA": 2, - "path": 8, - "SimpleScanner": 1, - "Tengai": 1, - "exec": 3, - "eoe": 2, - "parse_stop_time": 2, - "date": 2, - "mark": 6, - "space*": 2, - "seconds": 2, - "@path": 2, - "new": 1, - "soe": 2, - "ws": 2, - "my_ts..": 1, - "chunk.unpack": 2, - "String": 1, - "Emit": 4, - "class": 3, - "{": 19, - "EphemerisParser": 1, - "alnum": 1, - "stop_time": 4, - "private": 1, - "year": 2, - "ARGV": 2, - "+": 7, - "parser": 2, - ".freeze": 1, - "(": 33, - "..": 1, - "ts": 4, - "r": 1, - "parse_time": 3, - "parse_start_time": 2, - "%": 34, - "minutes": 2, - "MyTs": 2, - "ephemeris_parser": 1, - "stdout.puts": 2, - "data.unpack": 1, - "chunk": 2, - "f": 2, - "ephemeris": 2, - "do": 2, - "SimpleScanner.new": 1, - ";": 38, - "fhold": 1, - "data.length": 3, - "lower": 1, - "f.read": 2, - "eof": 3, - "machine": 3, - "my_ts": 6, - "]": 20, - "datetime": 3, - "end": 23, - "time": 6, - "parse_step_size": 2, - "any*": 3, - "|": 11, - "pe": 4, - "init": 3, - "while": 2, - "tz": 2, - "||": 1, - "else": 2, - "self.parse": 1, - ")": 33, - "./": 1, - "s": 4, - "action": 9, - "p": 8, - "start_time": 4, - "my_ts...my_te": 1, - "month": 2, - "#": 4, - "parser.start_time": 1, - "simple_scanner": 1, - "parser.stop_time": 1, - ".to_i": 2, - "require": 1, - "ephemeris_table": 3, - "File.open": 2, - "begin": 3, - "te": 1, - "<": 1, - "step_size": 3, - "SimpleTokenizer.new": 1, - "nil": 4, - "module": 1, - "super": 2, - "initialize": 2, - "MyTe": 2, - "s.perform": 2, - "ts..pe": 1, - "data": 15, - "upper": 1, - "adbc": 2, - "[": 20, - "SimpleTokenizer": 1, - "main": 3, - "mark..p": 4, - "attr_reader": 2, - "}": 19, - "ignored": 4, - "hours": 2, - "DateTime.parse": 1, - "def": 10, - "parse_ephemeris_table": 2, - "write": 9, - "-": 5, - "leftover": 8, - "my_te": 6, - ".pack": 6, - "t": 1, - "*": 9, - "foo": 8, - "data.is_a": 1, - "parser.step_size": 1, - "digit": 7, - "time_unit": 2, - "if": 4, - "n": 1, - "Struct.new": 1, - "perform": 2, - "ENV": 2, - "any": 4, - "simple_tokenizer": 1, - "parser.ephemeris_table": 1 - }, - "JavaScript": { - "model.unbind": 1, - "More": 1, - "p.splice": 1, - "instead": 6, - "window.": 6, - "function": 1210, - "res.on": 1, - "setSection=": 1, - "t.width*.9": 4, - "Backbone.emulateHTTP": 1, - "jQuery.attrFn": 2, - "optSelected": 3, - "WebKit": 9, - "setValue=": 2, - "Error.prototype": 1, - "ignoreCase": 1, - "f.left": 3, - "this.output.shift": 2, - "s.on": 4, - "loses": 1, - "specialEasing": 2, - "checkClone": 1, - "u.roseVisible": 4, - "fillText": 23, - "y*.093457": 2, - "page": 1, - "div.cloneNode": 1, - "recursively": 1, - "r.live.slice": 1, - "d.resolveWith": 1, - ".1075*t": 2, - "gr.drawImage": 3, - "kt.clearRect": 1, - "e.toPrecision": 1, - "n.restore": 35, - "fade": 4, - "a.contents": 1, - "document.readyState": 4, - "this.selectedIndex": 1, - "shadowBlur=": 1, - "nr": 22, - "this.sockets": 9, - "a.contentWindow.document": 1, - "across": 1, - "css": 7, - "f.cssHooks": 3, - "fnFail": 2, - "ti.stop": 1, - "n.stroke": 31, - "checkUrl": 1, - "basic": 1, - "bF": 1, - "baseHasDuplicate": 2, - "OutgoingMessage.prototype._finish": 1, - "focusin": 9, - "PDF": 1, - "e*.53271": 2, - "12864": 2, - "y.canvas.width": 3, - "ai.width": 1, - "bt.labelColor.setAlpha": 1, - "mStyle.cssText": 1, - "dateExpression.test": 1, - "handler=": 1, - "f*.53271": 6, - "kt.rotate": 1, - "n*6": 2, - "div.firstChild.namespaceURI": 1, - "div.style.cssText": 1, - "ua": 6, - "cb.test": 1, - "only": 10, - "i.join": 2, - "self.maxSockets": 1, - "comment2": 1, - "k.symbolColor.getRgbaColor": 1, - "ft.width": 1, - "u.textAlign": 2, - "ownerDocument.createElement": 3, - "this.el": 10, - "support": 13, - "c.guid": 1, - "webkit": 6, - "r*255": 1, - "char": 2, - "privateCache.events": 1, - "Recurse": 2, - "g.origType.replace": 1, - "EX_EOF": 3, - "u.foregroundType": 4, - ".7875*t": 4, - "#": 13, - "y.substr": 1, - "r=": 18, - "curry": 1, - "ui.height": 2, - "inspect": 1, - "offsetWidth/Height": 3, - "this._last": 3, - "f.rotate": 5, - "hr": 17, - "...": 1, - "quickExpr": 2, - "gf": 2, - "l": 312, - "c.loadXML": 1, - "doc": 4, - ".HTTPParser": 1, - "a.cacheable": 1, - ".76": 1, - "e.css": 1, - "CLASS": 1, - "it=": 7, - "e.animatedProperties": 5, - "old": 2, - "f.expando": 23, - "Internet": 1, - "httpSocketSetup": 2, - "a.apply": 2, - "this.getValue": 7, - "yu": 10, - "a.nextSibling": 1, - "div.lastChild": 1, - "c.preventDefault": 3, - "browsers": 2, - "38": 5, - "steelseries.ColorDef.RED.medium.getRgbaColor": 6, - "lt*fr": 1, - "l=": 10, - "h.onreadystatechange": 2, - "Verify": 3, - "headerIndex": 4, - "c.defaultView.getComputedStyle": 3, - "closeExpression": 1, - "ctor": 6, - "": 1, - "t*.82": 1, - "u*r*": 1, - "parseXML": 1, - "supportsHtml5Styles": 5, - "jQuery.browser.webkit": 1, - "yt.getEnd": 2, - "this.getUTCSeconds": 1, - "opt.disabled": 1, - "l.match.PSEUDO.exec": 1, - "m.shift": 1, - "bs": 2, - "b.getElementsByClassName": 2, - "uuid": 2, - "": 1, - "s*.006": 1, - "s*.04": 1, - "i.foregroundType": 6, - "Agent.prototype.createSocket": 1, - "while": 53, - "j.handleObj.data": 1, - "jQuery.uaMatch": 1, - "div.setAttribute": 1, - "For": 5, - "Math.PI*2": 1, - "n.measureText": 2, - "i.niceScale": 10, - "this._implicitHeader": 2, - "this.remove": 1, - "onRemove": 3, - "steelseries.TrendState.STEADY": 2, - "mStyle.opacity": 1, - "setHost": 2, - "self.emit": 9, - "t.start": 1, - "i.minValue": 10, - "rightmostFailuresExpected": 1, - "viewOptions.length": 1, - "isExplorer.exec": 1, - "g.scrollLeft": 1, - "Create": 1, - "Ua": 1, - ".cloneNode": 4, - "f.support": 2, - "P": 4, - "476635": 2, - "steelseries.BackgroundColor.CARBON": 2, - "i.minMeasuredValueVisible": 8, - "f.offset": 1, - "modal": 4, - "nothing": 2, - "CSS1Compat": 1, - "f.selector": 2, - "wrapper": 1, - "area": 2, - "./g": 2, - "same": 1, - "i.toPrecision": 1, - "Number.prototype.toJSON": 1, - "T.call": 1, - "k.restore": 1, - "ti.playing": 1, - "i.set": 1, - ".toUpperCase": 3, - "s.getElementsByTagName": 2, - "OutgoingMessage.prototype._storeHeader": 1, - "joiner": 2, - "ru=": 1, - "vi.getContext": 2, - "params.type": 1, - "this.id": 2, - "loadUrl": 1, - "_toggle": 2, - "target.data": 1, - "b.clearAttributes": 2, - "their": 3, - "keyCode": 6, - "z.test": 3, - "s.canvas.width": 4, - "gradientStopColor": 1, - "unitString": 4, - "prop": 24, - "this.write": 1, - "h.slice": 1, - "d.fireEvent": 1, - "": 2, - "loc.hash": 1, - "do": 15, - "checked=": 1, - "is_unicode_combining_mark": 2, - "gt.getContext": 3, - "setInterval": 6, - "care": 1, - "cc": 2, - "a.replace": 7, - "h.get": 1, - "f.call": 1, - "f*.546728": 2, - "testnames": 3, - "bW": 5, - "appendTo": 1, - "attrHandle": 2, - "textBaseline=": 4, - "i.height*.5": 2, - "docElement.removeChild": 1, - "OutgoingMessage.prototype.write": 1, - "jQuery.data": 15, - "this.socket.write": 1, - "ur": 20, - "c.support.changeBubbles": 1, - "atom": 5, - "tf": 5, - "a.currentTarget": 4, - "options.localAddress": 3, - "Agent.prototype.removeSocket": 1, - "loc": 2, - "g.reject": 1, - "c.prototype": 1, - "345794": 3, - "bool.mp3": 1, - "f.Deferred": 2, - "options.hostname": 1, - "4": 4, - "lcdDecimals": 4, - "this._bindRoutes": 1, - ".before": 1, - "f.support.htmlSerialize": 1, - "v.canvas.height": 4, - "fragment.replace": 1, - "DOMready/load": 2, - "res": 14, - "req.res._emitPending": 1, - "dot": 2, - "225": 1, - "": 1, - "y=": 5, - "pair": 1, - "cube": 2, - "free": 1, - "}": 2712, - "Array": 3, - "y.done": 1, - "Tween.elasticEaseOut": 1, - ".471962*f": 5, - "ot.type": 10, - "t.getBlue": 4, - "character": 3, - "n/g": 1, - "proxy": 4, - "i.getBlue": 1, - "hook": 1, - "g.scrollTop": 1, - "a.currentStyle.filter": 1, - "guid": 5, - "c.browser": 1, - "bT.apply": 1, - "empty": 3, - "jQuery.isFunction": 6, - "n.lineCap": 5, - "a.scriptCharset": 2, - "this.": 2, - "n.match.ID.test": 2, - "a.fn.init": 2, - "self.agent.addRequest": 1, - "isPropagationStopped": 1, - "CONNECT": 1, - "div.fireEvent": 1, - "q.push": 1, - "expando": 14, - "storage": 1, - "this.stack": 2, - "224299": 1, - "foreground": 30, - "a.style.cssFloat": 1, - "className": 4, - "y.clearRect": 2, - "a.currentStyle": 4, - "IncomingMessage.prototype.destroy": 1, - "i*": 3, - "html5": 3, - "injectElementWithStyles": 9, - "document.documentMode": 3, - "body.insertBefore": 1, - "fragment": 27, - "tel": 2, - "e.style.opacity": 1, - "hasOwn.call": 6, - "Do": 2, - "Fire": 1, - "attrFn": 2, - "a.style.width": 1, - "removeEvent=": 1, - "steelseries.BackgroundColor.PUNCHED_SHEET": 2, - "pi.height": 1, - "cleanExpected.push": 1, - "c.removeEventListener": 2, - "is": 67, - "JS_Parse_Error.prototype.toString": 1, - "issue": 1, - "had": 1, - "i.ledColor": 10, - "Don": 1, - "param": 3, - "counter": 2, - "a": 1489, - "h.nodeType": 4, - "WARNING": 1, - "f*.453271": 2, - ".off": 1, - "isFunction.": 2, - "thead": 2, - "this.output.unshift": 1, - "init": 7, - "st*2.5": 1, - "ui.length": 2, - "bK.test": 1, - "self.setHeader": 1, - "49": 1, - "ut/": 1, - "parse_zeroEscapeSequence": 3, - "key.split": 2, - "previousSibling": 5, - "contentLengthExpression": 1, - "req.httpVersionMinor": 2, - "jQuery.fn.init.prototype": 2, - "j.deleteExpando": 1, - "f*.467289": 6, - "Modernizr.testStyles": 1, - "complete=": 1, - "this.connection.write": 4, - ".call": 10, - "b.innerHTML": 3, - "": 3, - "null": 427, - "functions": 6, - "meters": 4, - "": 3, - "t.addColorStop": 6, - "parserOnBody": 2, - "c.fn.init.prototype": 1, - "specific": 2, - "wrapError": 1, - "e.overflow": 2, - "assert": 8, - "backdrop.call": 1, - "f.fn.extend": 9, - "q.splice": 1, - "bg.optgroup": 1, - "ct": 34, - ".149019": 1, - "ut.addColorStop": 2, - "undefined": 328, - "this._sent100": 2, - "bh": 1, - "f.support.radioValue": 1, - "serif": 13, - "*st": 1, - "g.getAttribute": 1, - "i.each": 1, - "c.documentElement.contains": 1, - "a.compareDocumentPosition": 1, - "yt=": 4, - "select.appendChild": 1, - "Encoding/i": 1, - "j.reliableHiddenOffsets": 1, - "socket.setTimeout": 1, - "S.newline_before": 3, - "n.textAlign": 12, - "String.prototype.toJSON": 1, - "frowned": 1, - "sam": 4, - "propHooks": 1, - "k.matches": 1, - "f*.5": 17, - "v.getResponseHeader": 2, - "d.context": 2, - ".type": 2, - "parseInt": 12, - "has_e": 3, - "b/2": 2, - "options.shivMethods": 1, - "mStyle.background": 1, - "Xa.exec": 1, - "deep": 12, - "String": 2, - "this.connection": 8, - "E": 11, - "g.substring": 1, - "parser.onBody": 1, - "u.lcdVisible": 2, - "e*.12864": 3, - ".8725*t": 3, - "n.bezierCurveTo": 42, - "r.addColorStop": 6, - "still": 4, - "num": 23, - ".childNodes.length": 1, - "65": 2, - "ei.labelColor.setAlpha": 1, - "parse_lowerCaseLetter": 2, - "A.JSON.parse": 2, - "parser.socket.readable": 1, - "uXXXX": 1, - "caution": 1, - "beforeSend": 2, - "e.handle": 2, - "f.isWindow": 2, - "this._storeHeader": 2, - "metaKey=": 1, - ".8225*t": 3, - "t.lineTo": 8, - "steelseries.TrendState.DOWN": 2, - "parse_eolChar": 6, - "plain": 2, - "replaceAll": 1, - "Is": 2, - "click.specialSubmit": 2, - "f.concat.apply": 1, - "u.canvas.width": 7, - "right": 3, - "this._decoder.write": 1, - "e.push": 3, - "keep": 1, - "get/setAttribute": 1, - "this.path": 1, - "inline": 3, - "err.stack": 1, - "c.call": 3, - "name=": 2, - "well": 2, - "statusLine": 2, - "u.useColorLabels": 2, - "i*kt": 1, - "slideDown": 1, - "a.crossDomain": 2, - "p.add": 1, - "bL": 1, - ".0189*t": 4, - "prop.substr": 1, - "a.style.opacity": 2, - "labelColor": 6, - "kt.height": 1, - "e*u": 1, - "triggerRoute": 4, - "addClass": 2, - "06": 1, - "n.font": 34, - "exports.Server": 1, - "clientLeft": 2, - "PUNC_BEFORE_EXPRESSION": 2, - ".298039": 1, - "this.sendDate": 3, - ".end": 1, - "Useragent": 2, - "input.cloneNode": 1, - "h.toLowerCase": 2, - "parse_eol": 4, - "getUrl": 2, - "number": 13, - "Used": 3, - "finally": 3, - "wrapInner": 1, - "static": 2, - "k.length": 2, - "Otherwise": 2, - ")": 8521, - "With": 1, - "h.send": 1, - "this._httpMessage.emit": 2, - "i.odometerParams": 2, - "recognize": 1, - "fragment.indexOf": 1, - "nextSibling": 3, - "ft.type": 1, - "k*.733644": 1, - "odo": 1, - "fcamelCase": 1, - "None": 1, - "m.exec": 1, - "r": 261, - "c.body.removeChild": 1, - "elem.removeAttribute": 6, - "steelseries.LedColor.CYAN_LED": 2, - "b.scrollTop": 1, - "parser.incoming._pendings.length": 2, - "self.shouldKeepAlive": 4, - "quickExpr.exec": 2, - "": 3, - "wt.font": 1, - "pt": 48, - "b.offsetParent": 2, - "v.fail": 1, - "readyList.resolveWith": 1, - "": 1, - "socket._httpMessage": 9, - "exports.array_to_hash": 1, - "this.route": 1, - "<2)for(b>": 1, - "f.push": 5, - "u.length": 3, - "loop": 7, - "Animal.prototype.move": 2, - "b.textContent": 2, - ".049*t": 8, - "oi*.05": 1, - "s*.060747": 2, - "socket.addListener": 2, - "warn": 3, - "i.trendVisible": 4, - "h.childNodes.length": 1, - "know": 3, - "exports.curry": 1, - "s.rotate": 3, - "70588": 4, - ".color": 13, - "result5": 4, - "bI.exec": 1, - "self.method": 3, - "how": 2, - "fetch": 4, - "focusinBubbles": 2, - "avoid": 5, - "String.prototype.trim": 3, - "eventPhase": 4, - "a.context": 2, - "this.statusCode": 3, - "TODO": 2, - "m.replace": 1, - "lineWidth=": 6, - "yt.getColorAt": 2, - "inputElem.style.WebkitAppearance": 1, - "holdReady": 3, - "by": 12, - "jQuery.cache": 3, - "hack": 2, - "this.output.push": 2, - "standalone": 2, - "u.pointerTypeLatest": 2, - "e*.5": 10, - "130841": 1, - "n.shadowBlur": 4, - "this._wantsPushState": 3, - "a.sort": 1, - "reSkip": 1, - "navigate": 2, - "ua.test": 1, - "u*.7475": 1, - "saveClones": 1, - "this.delegateEvents": 1, - "XSS": 1, - "div.appendChild": 4, - "class=": 5, - ".98": 1, - "h*.475": 1, - "shivDocument": 3, - "host": 29, - "req._hadError": 3, - "clientY": 5, - "k.style.width": 1, - "UNARY_POSTFIX": 1, - "434579": 4, - "approach": 1, - "V": 2, - "instanceof": 19, - "expectExpression": 1, - "current": 7, - "Save": 2, - "n.exec": 1, - "e*.58": 1, - ".0875*t": 3, - ".845*t": 1, - "this.setValueAnimated": 7, - "h.clientLeft": 1, - "setRequestHeader": 6, - "own": 4, - "Syntax": 3, - "d.start": 2, - "it/2": 2, - "e.isFunction": 5, - "c.get": 1, - "Math.PI/3": 1, - "this.getUTCMonth": 1, - "j.elem": 2, - "disabled": 11, - ".splice": 5, - "y.resolveWith": 1, - "href": 9, - "li=": 1, - "ni.height": 2, - "options=": 1, - "sizcache=": 4, - "f.event.fix": 2, - "Agent.prototype.defaultPort": 1, - "documentElement": 2, - "readyWait": 6, - "*c": 2, - "hu.repaint": 1, - "it.labelColor": 2, - "k*.8": 1, - "du": 10, - "Math.ceil": 63, - "Bulk": 1, - "this.port": 1, - "sam.move": 2, - "u/": 3, - "ci": 29, - "e*.462616": 2, - "c.html": 3, - "cellSpacing": 2, - "of.state": 1, - "a.lastChild.className": 1, - "jQuery.support": 1, - "k.isXML": 4, - "h*.365": 2, - "argument": 2, - "e.handleObj": 1, - "continually": 2, - "HANDLE": 2, - "track": 2, - ".lastChild.checked": 2, - "s*.336448": 1, - ".wrapAll": 2, - "va.slice": 1, - "DOMElement": 2, - "d.toggleClass": 1, - "parser.reinitialize": 1, - "c.isXMLDoc": 1, - "fi.play": 1, - "chainable": 4, - "/alpha": 1, - "form": 12, - "height": 25, - "t*.45": 4, - "n.led": 20, - "navigator.userAgent.toLowerCase": 1, - "styleFloat": 1, - "jQuery.extend": 11, - "date": 1, - "b.map": 1, - "getData": 3, - "k.replace": 2, - "alive": 1, - "e.removeChild": 1, - "c.target.ownerDocument": 1, - "added": 1, - "call": 9, - "queue": 7, - "c.style": 1, - "c.each": 2, - "i.thresholdVisible": 8, - "stack": 2, - ".push": 3, - "f.cssHooks.opacity": 1, - ".triggerHandler": 1, - "this.setValue": 7, - "ee": 2, - "unbind": 2, - "h.splice.apply": 1, - "504672": 2, - "f*.38": 7, - ".55": 1, - "b.data": 5, - "lastToggle": 4, - "n.leftMatch": 1, - "*ue": 1, - "stroke": 7, - "this._source": 1, - "input.length": 9, - "yet": 2, - "outgoing.push": 1, - "c.zoom": 1, - "this.prevObject": 3, - "through": 3, - "et.length": 2, - "i.section": 8, - "wt": 26, - "bA": 3, - "f.find": 2, - "ck.contentDocument": 1, - "d.appendChild": 3, - "angle": 1, - "gt.width": 2, - "necessary": 1, - "statusCode.toString": 1, - "toplevel": 7, - "layerX": 3, - "camelCase": 3, - "p.length": 10, - "headers.length": 2, - "875": 2, - "steelseries.ColorDef.BLUE.dark.getRgbaColor": 6, - "conMarginTop": 3, - "co=": 2, - ".promise": 5, - "": 2, - "jQuery.browser": 4, - "c.cache": 2, - "Error": 16, - ".elem": 1, - "k.appendChild": 1, - "92": 1, - "u*255": 1, - "ck.height": 1, - "a.push.apply": 2, - "req.upgradeOrConnect": 1, - "bt=": 3, - "ni.getContext": 4, - "parse_singleLineComment": 2, - "start=": 1, - "jQuery.readyWait": 6, - "this.clone": 1, - "w*.012135": 2, - "Values": 1, - "this.click": 1, - "success": 2, - "data=": 2, - "a.converters": 3, - "s.documentElement": 2, - "u/22": 2, - "setLcdColor=": 2, - "IE6": 1, - "e.isDefaultPrevented": 2, - "g": 441, - "complete": 6, - "ga": 2, - "lookups": 2, - "a.defaultSelected": 1, - "odd": 2, - "a.fragment": 1, - "ti=": 2, - "g.height": 4, - "classes.join": 1, - "offsetSupport.fixedPosition": 1, - "v.readyState": 1, - "clearTimeout": 2, - "tag": 2, - "error.code": 1, - "pi": 24, - "this.supportsFixedPosition": 1, - "o.firstChild.childNodes": 1, - "radio": 17, - "o.innerHTML": 1, - "defaultPrevented": 1, - "extra": 1, - "p.drawImage": 1, - "n.textBaseline": 10, - "begin.rawText": 2, - "d.top": 2, - "a.oRequestAnimationFrame": 1, - "style/": 1, - "allowHalfOpen": 1, - "d=": 15, - "495327": 2, - "n.shadowOffsetX": 4, - "wt.decimals": 1, - "Backbone.history": 2, - "entire": 1, - "__extends": 6, - "<[\\w\\W]+>": 4, - "7fd5f0": 2, - "window.HTMLDataListElement": 1, - "e.insertBefore": 1, - "res.statusCode": 1, - "rvalidescape": 2, - "innerHTML": 1, - "b.value": 4, - "l.split": 1, - "callbacks": 10, - "kt.medium.getRgbaColor": 1, - "e*.055": 2, - ".875*t": 3, - "*t": 3, - "lastData.constructor": 1, - "a.style": 8, - "being": 2, - "frameVisible": 4, - "kt.textColor": 2, - "n.save": 35, - "c.crossDomain": 3, - "refuse": 1, - "d.ownerDocument": 1, - "a.isImmediatePropagationStopped": 1, - "o/r": 1, - "Modernizr.prefixed": 1, - "jQuery.access": 2, - "this.agent": 2, - "bn": 2, - "JSON": 5, - "/chunk/i": 1, - "ku": 9, - "expectedHumanized": 5, - "Modernizr._cssomPrefixes": 1, - "item": 4, - "h.open": 2, - "c.documentElement": 4, - "results": 4, - "headers": 41, - "ab": 1, - "et.height": 1, - "self.options.maxSockets": 1, - "which=": 3, - "window.location.search": 1, - "b.indexOf": 2, - "u.foregroundVisible": 4, - ".12864": 2, - "v.statusCode": 2, - "ensure": 2, - "freeParser": 9, - "socket.parser": 3, - "f.boxModel": 1, - "widows": 1, - "a.fireEvent": 1, - "tt.labelColor.getRgbaColor": 2, - "st.width": 1, - "h*.035": 1, - "re": 2, - "i.pointerType": 4, - "window.Worker": 1, - "a.offsetParent": 1, - "req.res.readable": 1, - "K": 4, - "0px": 1, - "dateCache": 5, - "Expecting": 1, - "playing": 2, - "except": 1, - "ropera.exec": 1, - "a.cache": 2, - "h*1.17/2": 1, - "this.trailers": 2, - "options.auth": 2, - "l.done": 1, - "a.addEventListener": 4, - "f.support.boxModel": 4, - "ft/": 1, - "parse_digit": 3, - "a.removeAttribute": 3, - "first": 10, - "i.getContext": 2, - "steelseries.ForegroundType.TYPE1": 5, - "parent.insertBefore": 1, - "defined": 3, - "window.addEventListener": 2, - "occurs.": 2, - "html": 10, - "d.playing": 2, - "Modernizr.addTest": 2, - "ev": 5, - "cors": 1, - "f.nodeName": 16, - ".find": 5, - "this.addListener": 2, - "u*.58": 1, - "wi.width": 1, - "n/Math.pow": 1, - "undocumented": 1, - "stop": 7, - "div.className": 1, - "S.tokpos": 3, - "b.clearRect": 1, - "mq": 3, - "g.body": 1, - "d.text": 1, - "": 1, - "mouseenter": 9, - "resolveWith": 4, - "Object.keys": 5, - "d.length": 8, - "le": 1, - "protoProps.hasOwnProperty": 1, - "nType": 8, - "bR": 2, - "split": 4, - "t*.012135": 1, - "attrNames": 3, - "incorrectly": 1, - "a.nodeType": 27, - "overrideMimeType": 1, - "Snake.__super__.constructor.apply": 2, - "tt.symbolColor.getRgbaColor": 1, - "outer.firstChild": 1, - "c.fn.extend": 4, - "toggleClass": 2, - "OutgoingMessage.prototype._buffer": 1, - "gets": 6, - "h5": 1, - "omPrefixes": 1, - "msg": 4, - "yf.repaint": 1, - "Ban": 1, - "setData": 3, - "h.substr": 1, - "a.execScript": 1, - "/": 290, - "b.jquery": 1, - "#8421": 1, - "based": 1, - "strips": 1, - "q=": 1, - "d.filter": 1, - "c.isEmptyObject": 1, - "this.disabled": 1, - "this.output": 3, - "timeStamp=": 1, - "ecma": 1, - "this.complete": 2, - "t.stroke": 2, - "_context": 1, - "f.offset.doesNotAddBorder": 1, - "zoom": 1, - "h.namespace": 2, - "gr": 12, - "parsers": 2, - "x": 33, - ".06*f": 2, - "ff": 5, - "i.getAlpha": 1, - "omPrefixes.split": 1, - "part": 8, - "RegExp": 12, - "f*.012135/2": 1, - "i.medium.getHexColor": 1, - "prefixes": 2, - "keys.length": 5, - "signal_eof": 4, - "tfoot": 1, - "Backbone.Router": 1, - "resolve": 7, - "Animal.name": 1, - "on": 37, - "c.bindReady": 1, - "s*.3": 1, - "w/r": 1, - "eventSplitter": 2, - "": 1, - "LcdColor": 4, - "dt.start": 2, - "wi": 24, - "cancelled": 5, - "input.setAttribute": 5, - "originalTarget": 1, - ".eq": 1, - "it.height": 1, - "dt.playing": 2, - "div.offsetWidth": 2, - "k=": 11, - "g.domManip": 1, - "e.call": 1, - "mousedown": 3, - "exports.IncomingMessage": 1, - "n.canvas.width/2": 6, - "cp.concat.apply": 1, - "selector.nodeType": 2, - "s.createTextNode": 2, - "removeClass": 2, - "section": 2, - "p.abort": 1, - ".addClass": 1, - "f.concat": 1, - "i.valueColor": 6, - "width": 32, - "sibling": 1, - "as": 11, - "u*.15": 2, - "be.test": 1, - "rr.restore": 1, - "i.digitalFont": 8, - "lastExpected": 3, - "e.fn.extend": 1, - "Function": 3, - "sentDateHeader": 3, - "this.domManip": 4, - "in": 170, - "them": 3, - "light": 5, - ".047058": 2, - "ti.start": 1, - "this.start": 2, - ".replaceWith": 1, - ".82": 2, - "k*.446666": 2, - "i.threshold": 10, - "DocumentTouch": 1, - "rv": 4, - "parser.socket.onend": 1, - "_Deferred": 4, - "jQuery.each": 2, - "Ta": 1, - "setForegroundType=": 1, - "n.lineJoin": 5, - "ut.rotate": 1, - "frag.cloneNode": 1, - "arguments.length": 18, - "nodeType": 1, - "vi.width": 1, - "ye": 2, - "self.has": 1, - "readOnly": 2, - "Agent.prototype.addRequest": 1, - "u221e": 2, - "font=": 28, - "fill": 10, - "/html/": 1, - "a.split": 4, - "delay": 4, - ".split": 19, - "c.isArray": 5, - "Width": 1, - "rt=": 3, - "cr.drawImage": 3, - "di.getContext": 2, - ".ajax": 1, - "div.style.marginTop": 1, - "f._data": 15, - "ClientRequest.prototype.clearTimeout": 1, - "E.call": 1, - "k.contains": 5, - "t.createLinearGradient": 2, - "e.firstChild": 1, - "altKey": 4, - "HEAD": 3, - "Fallback": 2, - "": 1, - ".112149*ut": 1, - "this.events": 1, - ".html": 1, - "co": 5, - "auth": 1, - "socket.ondata": 3, - "sentConnectionHeader": 3, - "array": 7, - "d.slice": 2, - ".stop": 11, - "paddingMarginBorder": 5, - "old=": 1, - "currentTarget": 4, - "bc": 1, - "*Math.PI": 10, - "f*.06": 1, - ".hide": 2, - ".proxy": 1, - "count": 4, - "preventDefault": 4, - "b.mergeAttributes": 2, - "__hasProp": 2, - "a.appendChild": 3, - "hi.getContext": 6, - "h.getAllResponseHeaders": 1, - "d.timeout": 1, - "j.cacheable": 1, - "safe": 3, - "fledged": 1, - "et.getContext": 2, - "tr": 23, - "left": 14, - "this.repaint": 126, - "n.closePath": 34, - "sf": 5, - "prototype=": 2, - "e.ready": 6, - "f.cssHooks.marginRight": 1, - ".053*e": 1, - "i.frameDesign": 10, - ".5": 7, - "rootjQuerySub": 2, - "ropera": 2, - "Make": 17, - "@": 1, - "setLcdTitleStrings=": 1, - "e*.007": 5, - "docElement": 1, - "div.attachEvent": 2, - "speeds": 4, - "Own": 2, - "extension": 1, - "boundary": 1, - "lastData": 2, - "c.fn": 2, - "560747": 4, - "shadowOffsetY=": 1, - "f*.695": 4, - "x=": 1, - "Match": 3, - "e/r*": 1, - "at.drawImage": 1, - "ut.restore": 1, - "errorPosition.line": 1, - "chars": 1, - "model.idAttribute": 2, - "duration=": 2, - "options.socketPath": 1, - "restore": 14, - "object.constructor.prototype": 1, - "h.setRequestHeader": 1, - "u*.007": 2, - "ns": 1, - "obj.constructor.prototype": 2, - "c.attrFn": 1, - "else": 307, - "Buffer": 1, - ".substring": 2, - "entry": 1, - "optDisabled": 1, - "c.queue": 3, - "frame": 23, - "flag": 1, - "bG": 3, - "": 1, - "elems": 9, - "noCloneEvent": 3, - "sliceDeferred": 1, - "this.parser": 2, - "jQuery.Deferred": 1, - "i.lcdVisible": 8, - "ufff0": 1, - "e.selector": 1, - "Buffer.isBuffer": 2, - "steelseries.Orientation.WEST": 6, - "vt/": 3, - "Boolean": 2, - "01": 1, - "d.replace": 1, - "": 1, - "fires.": 2, - "token.type": 1, - "support.inlineBlockNeedsLayout": 1, - "this.prop": 2, - "h.statusText": 1, - "Horse": 12, - "e.isWindow": 2, - "jQuery.prototype": 2, - "read_name": 1, - "marked": 1, - "border": 7, - "va.concat.apply": 1, - "href=": 2, - "splatParam": 2, - "iterate": 1, - "c.isDefaultPrevented": 2, - "b.replace": 3, - "req.httpVersionMajor": 2, - "Either": 2, - "i.selector": 3, - "c.readyState": 2, - "substr": 2, - "p.send": 1, - "ab.test": 1, - "skip_whitespace": 1, - "ft.getContext": 2, - "following": 1, - "widget": 1, - "m": 76, - "e.nodeType": 7, - "180": 26, - "f.canvas.width": 3, - "this.resetMinMeasuredValue": 4, - "docElement.className": 2, - "routes": 4, - "": 1, - "rsingleTag": 2, - "copyIsArray": 2, - "outer": 2, - "maxSockets": 1, - "i.width": 6, - "ut/2": 4, - "n.pointer": 10, - "thisCache.data": 3, - ".then": 3, - "cellPadding": 2, - "/top/.test": 2, - "oi.play": 1, - "window.matchMedia": 1, - "converted": 2, - "shouldn": 2, - "DOM": 21, - "can": 10, - "postfix": 1, - "c.getElementsByTagName": 1, - "when": 20, - "": 2, - "autofocus": 1, - "element": 19, - "u.knobStyle": 4, - "ai/": 2, - "result0": 264, - "rule": 5, - "c.support.checkClone": 2, - "f.event.global": 2, - "K.call": 2, - "<\",>": 1, - "d.height": 4, - ".8125*t": 2, - "or.restore": 1, - "#6781": 2, - "f.support.deleteExpando": 3, - "document.createDocumentFragment": 3, - "k.labelColor": 1, - "t.fill": 2, - "ii.getContext": 5, - "too": 1, - "bt": 42, - "_jQuery": 4, - "Object.prototype.hasOwnProperty": 6, - "returned.promise": 2, - "s*.007": 3, - "Boolean.prototype.toJSON": 1, - "s.": 1, - "_results": 6, - "padding": 4, - "IncomingMessage.prototype.pause": 1, - "die": 3, - ".getElementsByTagName": 2, - "num.substr": 2, - "f.expr.filters.animated": 1, - "a.test": 2, - "Array.prototype.slice": 6, - ".domManip": 1, - "pageY=": 1, - "Horse.prototype.move": 2, - "s.body.appendChild": 1, - "off": 1, - "onClose": 3, - "this._trailer": 5, - "ei=": 1, - "u.shadowColor": 2, - "inputElem.setAttribute": 1, - "issue.": 1, - "ua.toLowerCase": 1, - "target.modal": 1, - "little": 4, - "this.once": 2, - "self.on": 1, - "c.createElement": 12, - "assign": 1, - "orphans": 1, - "Q": 6, - "e.isPlainObject": 1, - "d.guid": 4, - "charCode": 7, - "d.events": 1, - "e*.53": 1, - "e3": 5, - "docElement.style": 1, - "e.offset": 1, - "tables": 1, - "e6e6e6": 1, - "jQuerySub.prototype": 1, - "cancelBubble=": 1, - "ClientRequest.prototype.setNoDelay": 1, - ".marginTop": 1, - "#4512": 1, - "this.now": 3, - "beforedeactivate": 1, - "directly": 2, - "self.useChunkedEncodingByDefault": 2, - "f.each": 21, - "body": 22, - "*lt": 9, - "this.options.root": 6, - "i.events": 2, - "prefix": 6, - "": 1, - "s*.475": 1, - "k*.130841": 1, - "classProps": 2, - "u00ad": 1, - "tick": 3, - "Object.prototype.toString": 7, - "getSetAttribute": 3, - "GET": 1, - "steelseries.BackgroundColor.BRUSHED_STAINLESS": 2, - "f*.365": 2, - "hasOwnProperty": 5, - "params.data": 5, - "u0604": 1, - "div.style.overflow": 2, - "cd": 3, - "this.options": 6, - "bg.tbody": 1, - "image": 5, - ".0467*f": 1, - ".79*t": 1, - ".34": 1, - "colspan": 2, - "bX": 8, - "socket._httpMessage._last": 1, - "elem.removeAttributeNode": 1, - "properties": 7, - "k.style.paddingLeft": 1, - "hold": 6, - "type": 49, - "key": 85, - "s.body.removeChild": 1, - "g.guid": 3, - "arc": 2, - "bool.ogg": 2, - "this.state": 3, - "us": 2, - "messageHeader": 7, - "have": 6, - ".145098": 1, - "nt.save": 1, - "xhr": 1, - "this.setMinMeasuredValueVisible": 4, - "n.charAt": 1, - "bg.colgroup": 1, - "this.insertBefore": 1, - "g/": 1, - "k.translate": 2, - "hi.setAttribute": 2, - "5": 23, - ".*": 20, - "input": 25, - "fromElement": 6, - "o/r*": 1, - "Return": 2, - "STATUS_CODES": 2, - "self.path": 3, - "this.socket.pause": 1, - "detach": 1, - "existent": 2, - "htmlSerialize": 3, - "e*.504672": 4, - "71028": 1, - "f*.121428": 2, - "k/2": 1, - "elem.getContext": 2, - "c.charAt": 1, - "multiple": 7, - "ret": 62, - "n.lineWidth/2": 2, - "relatedNode": 4, - "stream.Stream": 2, - "b.id": 1, - "h.cloneNode": 1, - "child.__super__": 3, - ".0415*t": 2, - "s*.365": 2, - "cleanExpected": 2, - "/SVGAnimate/.test": 1, - "f.fn.jquery": 1, - "a.button": 2, - "this.trigger": 2, - "access": 2, - "nt/2": 2, - "this._byId": 2, - "cellpadding": 1, - "ot": 43, - "send": 2, - "a.outerHTML": 1, - "c.push": 3, - "socket.once": 1, - "this.attributes": 1, - "a.nodeName": 12, - "checkbox": 14, - "#000": 2, - "toString": 4, - "persist": 1, - "Test": 3, - "chunk.length": 2, - "converters": 2, - "options.createConnection": 4, - "relative": 4, - "f.event.special": 5, - "self._flush": 1, - "tr.width": 1, - "attrs.id": 1, - ".when": 1, - "l.indexOf": 1, - "required": 1, - "void": 1, - "this.getMaxValue": 4, - "td.offsetTop": 1, - "fired": 12, - "Horse.name": 1, - "cssomPrefixes": 2, - "loc.protocol": 2, - "s/vt": 1, - ".85*t": 2, - "u200f": 1, - "a.style.filter": 1, - "changeBubbles": 3, - "info.headers": 1, - "correctly": 1, - "div": 28, - "parse_whitespace": 3, - ".unbind": 4, - "jQuery.type": 4, - "shift": 1, - "read_string": 1, - "RE_DEC_NUMBER": 1, - "gradientFraction1Color": 1, - "U.test": 1, - "it": 112, - "math.cube": 2, - "S.tokcol": 3, - "d.onload": 3, - "Math.min": 5, - "f*i*at/": 1, - "implemented": 1, - "classes.push": 1, - "jQuery._data": 2, - "JS": 7, - "matches=": 1, - "b": 961, - "i.width*.9": 6, - "#x27": 1, - "all.length": 1, - "Accept": 1, - "c.attr": 4, - "shrinkWrapBlocks": 2, - "u.area": 2, - "n.bargraphled": 4, - "newDefer.reject": 1, - "y*.121428": 2, - "this.setThresholdVisible": 4, - "steelseries.TickLabelOrientation.TANGENT": 2, - "window.location.hash": 3, - "f.offset.doesAddBorderForTableAndCells": 1, - "P.browser": 2, - "parser.incoming._addHeaderLine": 2, - "a.firstChild.nodeType": 2, - "f.cleanData": 4, - "f.contains": 5, - "or*.5": 1, - "document.styleSheets.length": 1, - "route.exec": 1, - "Users": 1, - "forgettable": 1, - "f.support.noCloneEvent": 1, - "events": 18, - "parsers.alloc": 1, - "existing": 1, - "t.getRed": 4, - "fireWith": 1, - "Length/i": 1, - "entries": 2, - "race": 4, - "punc": 27, - "pi.width": 1, - "isPropagationStopped=": 1, - "this.bind": 2, - "applet": 2, - "f.cache": 5, - "focus": 7, - "cu": 18, - "rdigit": 1, - "more": 6, - "a.nodeName.toUpperCase": 2, - "exports.request": 2, - "prepend": 1, - "bi": 27, - "OutgoingMessage.prototype._renderHeaders": 1, - "options.host": 4, - "HOP": 5, - "tokpos": 1, - "": 5, - "new": 86, - "this.unbind": 2, - "fallback": 4, - ".815*t": 1, - "st.height": 1, - "end.data.charCodeAt": 1, - ".scrollTop": 1, - "Assume": 2, - "p.addColorStop": 4, - "s/2": 2, - "rule.split": 1, - "atRoot": 3, - "bubbling": 1, - "connectionListener": 3, - "this.valueAverage": 1, - "result1.push": 3, - "node.hidden": 1, - "k.get": 1, - "FF4": 1, - "div.addEventListener": 1, - "j.reliableMarginRight": 1, - "partsConverted": 2, - "paddingMarginBorderVisibility": 3, - "b.converters": 1, - "F": 8, - "s.fillStyle": 1, - "kt/at": 2, - "e*.023364": 2, - "this.cid": 3, - "u070f": 1, - "chunkExpression": 1, - "b.removeChild": 3, - "append": 1, - "S.regex_allowed": 1, - "f*.006": 2, - "f*.12864": 2, - ".89*f": 2, - "ci/2": 1, - ".matches": 1, - "listen": 1, - "g.left": 1, - "AGENT": 2, - "matchesSelector=": 1, - "error": 20, - "f.find.matchesSelector": 2, - "information": 5, - "eliminate": 2, - "ct=": 5, - "d/ot": 1, - "i.useOdometer": 2, - "outer.nextSibling.firstChild.firstChild": 1, - "a.ownerDocument": 1, - "Call": 1, - "content": 5, - "object": 59, - "chaining.": 1, - "existence": 1, - "change": 16, - "a.namespace": 1, - "n/255": 1, - "d.join": 1, - "ajaxPrefilter": 1, - "eq": 2, - "DOMContentLoaded": 14, - "decrement": 2, - "cssFloat": 4, - "s*.32": 1, - "Styles": 1, - "i.scrollTop": 1, - "b.contentType": 1, - "i.resolveWith": 1, - "de": 1, - "f.attrHooks.style": 1, - "foregroundType": 4, - "f*.28": 6, - "n.value": 4, - "steelseries.GaugeType.TYPE1": 4, - "u202F": 1, - "cache=": 1, - "a.isPropagationStopped": 1, - "changeData": 3, - "A.addEventListener": 1, - "backgroundColor": 2, - "expected.length": 4, - "isExplorer": 1, - "this.connection._httpMessage": 3, - "bM": 2, - "e*.04": 1, - "vt": 50, - "origContext": 1, - "__hasProp.call": 2, - "b.selectedIndex": 2, - "f.push.apply": 1, - "non": 8, - "ret.comments_before": 1, - "n.translate": 93, - "g.documentElement": 1, - "c.url": 2, - "c.uaMatch": 1, - "this.readable": 1, - "ut.getContext": 2, - "ti/2": 1, - "this.setMaxValue": 3, - "max": 1, - "firingIndex": 5, - "f.isNaN": 3, - "socketOnData": 1, - "p.setup": 1, - "a.getAttributeNode": 7, - "ClientRequest.prototype.abort": 1, - ".775*t": 3, - "goggles": 1, - "trimRight": 4, - "timeout": 2, - "ri.width": 3, - "trend": 2, - "_.isFunction": 1, - "c.isLocal": 1, - "Va.test": 1, - "display": 7, - "*": 70, - "__slice.call": 2, - "p/r": 1, - "jQuery.nodeName": 3, - "list.length": 5, - ".document": 1, - "JSON.parse": 1, - "jQuerySub.superclass": 1, - "push": 11, - "props": 21, - "h.firstChild": 2, - "bg.thead": 1, - "a.setAttribute": 7, - "defun": 1, - ".32*f": 2, - "cu.setValue": 1, - "Modernizr._domPrefixes": 1, - "s": 290, - "setValueAverage=": 1, - ".03*t": 2, - "i*.142857": 1, - "e*.0375": 1, - "startRule": 1, - "i.shift": 1, - "200934": 2, - "pu": 9, - "cssomPrefixes.join": 1, - "stopPropagation": 5, - "elem.setAttribute": 2, - "oi": 23, - "smile": 4, - "Please": 1, - "duration": 4, - "opacity": 13, - "res._emitEnd": 1, - "mozilla": 4, - "b.toUpperCase": 3, - "Diego": 2, - "*10": 2, - "pt.height": 1, - "this.setTrend": 2, - "jQuery.browser.version": 1, - "bg._default": 2, - "": 3, - "overwrite": 4, - "c=": 24, - "b.save": 1, - "u*i*": 2, - "marginDiv.style.width": 1, - "occur": 1, - "array_to_hash": 11, - "this.setMinMeasuredValue": 3, - "n.trend": 4, - "camel": 2, - "batch": 2, - "METAL": 2, - "ri.height": 3, - "d.src": 1, - "f.dir": 6, - "unload": 5, - "forms": 1, - "p.translate": 8, - "buttons": 1, - "this.one": 1, - "bz": 7, - "Backbone.Router.extend": 1, - "i.done": 1, - "an": 12, - "bg.td": 1, - "globalAgent": 3, - "exports.is_alphanumeric_char": 1, - "strokeStyle=": 8, - "i.preType": 2, - "at.getContext": 1, - "*st/": 1, - ".63*u": 3, - "this.setForegroundType": 5, - "ii": 29, - "val": 13, - "kt=": 4, - "valueForeColor": 1, - "u.clearRect": 5, - "l.top": 1, - "v.error": 1, - "special": 3, - "util.inherits": 7, - "ck.createElement": 1, - "

": 2, - ".map": 1, - "856796": 4, - "elem.attributes": 1, - "parser.incoming.complete": 2, - "open": 2, - "d.nodeValue": 3, - "W": 3, - "body.firstChild": 1, - "options.headers": 7, - "j.call": 2, - ".each": 3, - "d.unshift": 2, - "*.05": 4, - "yi.width": 1, - "attrs": 6, - "timeStamp": 1, - "k.position": 4, - "url=": 1, - "socket.onend": 3, - "Modal": 2, - ".createSVGRect": 1, - "Mark": 1, - "week": 1, - "prependTo": 1, - "isImmediatePropagationStopped": 2, - "Can": 2, - "support.noCloneEvent": 1, - "exec.call": 1, - "usemap": 2, - "this.sub": 2, - "pred": 2, - "addColorStop": 25, - "parser.incoming.readable": 1, - "k.cloneNode": 1, - ".onSocket": 1, - "e.handleObj.origHandler.apply": 1, - "tbody/i": 1, - "float": 3, - "selector": 40, - "cssText": 4, - "here": 1, - "attached": 1, - "cj": 4, - "kt/at*l": 1, - "uncatchable": 1, - "uaMatch": 3, - "l.find.CLASS": 1, - "expectExpression.test": 1, - ".115*t": 5, - "useGradient": 2, - "cache.setInterval": 1, - "leading": 1, - "cases": 4, - "f.prevObject": 1, - "e*.546728": 5, - "i*.05": 2, - "t.toFixed": 2, - "h*t": 1, - "c.borderTopWidth": 2, - "nodes": 14, - "i.childNodes.length": 1, - "a.parentWindow": 2, - "wrong": 1, - "Gets": 2, - "nt.drawImage": 3, - "inputElem.offsetHeight": 1, - "sa": 2, - "f.curCSS": 1, - "bg.option": 1, - "e.getComputedStyle": 1, - "S.text.indexOf": 1, - ";": 4052, - "PRECEDENCE": 1, - "ii.length": 2, - "e.position": 1, - "t.width*.5": 4, - "Convert": 1, - "p=": 5, - "An": 1, - "marginTop": 3, - "w.labelColor.setAlpha": 1, - "#9897": 1, - "find": 7, - "string": 41, - "d.promise": 1, - "vi.getStart": 1, - "tu.drawImage": 1, - "fr": 21, - "f.shift": 1, - "c.props": 2, - "gt.height/2": 2, - "ot/": 1, - "ef": 5, - "window.Modernizr": 1, - "parseJSON": 4, - "enumerated": 2, - "getValueLatest=": 1, - ".0013*t": 12, - "b.addColorStop": 4, - "XXX": 1, - "method.": 3, - "RE_DEC_NUMBER.test": 1, - "getRgbaColor": 21, - "overflow": 2, - "ma": 3, - "name": 161, - "self.options": 2, - "c.extend": 7, - "n.test": 2, - "e*.15": 2, - "i*.7475": 1, - "wu": 9, - "b.offset": 1, - "DTRACE_HTTP_SERVER_REQUEST": 1, - "l.match.ID.test": 2, - "f.expr.filters.hidden": 2, - "bB": 5, - "e*.121428": 2, - "vi": 16, - "layerY": 3, - ".checked": 2, - "hashStrip": 4, - "k.offsetWidth": 1, - "j=": 14, - "exports.parsers": 1, - "st=": 3, - "f.canvas.width*.4865": 2, - "this.trigger.apply": 2, - "getJSON": 1, - "handy": 2, - "removeAttr": 5, - "vt.getContext": 1, - "closePath": 8, - "g.document.body": 1, - "Math.max": 10, - "r.live": 1, - "given": 3, - "load": 5, - "x.version": 1, - "yt.getContext": 5, - "wt.valueBackColor": 1, - "e.documentElement": 4, - "res._last": 1, - "fi.width": 2, - "n.createRadialGradient": 4, - "they": 2, - "o.push": 1, - "a.ActiveXObject": 3, - "e.fn.init.prototype": 1, - "jQuery.fn": 4, - "t.moveTo": 4, - "fi.setAttribute": 2, - "i.tickLabelOrientation": 4, - "o.childNodes": 2, - "objects": 7, - "deletion": 1, - "/i": 22, - "parse_error": 3, - "b.nodeType": 6, - "B.call": 3, - "h": 499, - ".0113*t": 10, - "wt.digits": 2, - "getFragment": 1, - "f.event.special.change.filters": 1, - "submit": 14, - "insertBefore": 1, - "n.slice": 1, - "bo.test": 1, - "Sa": 2, - "d.getElementsByTagName": 6, - "7757": 1, - "res.upgrade": 1, - "_unmark": 3, - "l.appendChild": 1, - "n.shadowOffsetY": 4, - "Math.floor": 26, - "mStyle.backgroundColor": 3, - "b.createElement": 2, - "class2type": 3, - "arguments": 83, - "a.attachEvent": 6, - "lineWidth": 1, - "34": 2, - "yi.getContext": 2, - "PEG.parser": 1, - "this.navigate": 2, - "a.style.position": 1, - "scroll": 6, - "other": 3, - "this.elements": 2, - "*u": 1, - "this.update": 2, - "k.uniqueSort": 5, - "ticket": 4, - "315": 1, - "routes.unshift": 1, - "ECMA": 1, - "t.getGreen": 4, - "this.getUTCFullYear": 1, - "bo": 2, - "c.support.boxModel": 1, - "lcdColor": 4, - "n.arc": 6, - ".guid": 1, - "ServerResponse": 5, - "lastEncoding": 2, - "least": 4, - ".14857": 1, - "runners": 6, - "g.length": 2, - "foundHumanized": 3, - "copied": 1, - "opt": 2, - "T.ready": 1, - "k*.61": 1, - "sr": 21, - "inputElem.style.cssText": 1, - "_onModelEvent": 1, - "offsetSupport.subtractsBorderForOverflowNotVisible": 1, - "getAllResponseHeaders": 1, - "setAlpha": 8, - "rf": 5, - "style.cssText": 1, - "model.id": 1, - "createFlags": 2, - "element.trigger": 1, - "this.className": 10, - "L": 10, - ".hasOwnProperty": 2, - ".ready": 2, - "J=": 1, - "wt.decimalForeColor": 1, - "Support": 1, - "eventName": 21, - "e.fn.init": 1, - "I.beforeactivate": 1, - "attribute": 5, - "za": 3, - "nth": 5, - "parts": 28, - "res.assignSocket": 1, - "identifier": 1, - "i.toFixed": 2, - "resp": 3, - "bp.test": 1, - "marginDiv": 5, - "this.nodeName": 4, - "this.setLcdDecimals": 3, - "i.addColorStop": 27, - "a.dataTypes": 2, - "internally": 5, - "bu.test": 1, - "shadowOffsetX=": 1, - "resetBuffers": 1, - "w=": 4, - "separated": 1, - "div.style.border": 1, - "act": 1, - "util": 1, - "isRejected": 2, - "only.": 2, - "used": 13, - "/compatible/.test": 1, - ".documentElement": 1, - "wt.light.getRgbaColor": 2, - "s*.38": 2, - "f.createElement": 1, - "a.childNodes.length": 1, - "Flag": 2, - "o.insertBefore": 1, - "lf": 5, - "readyState": 1, - "this.appendChild": 1, - "bS": 1, - "unitStringVisible": 4, - ".6*s": 1, - "f.isPlainObject": 1, - "socket.end": 2, - "clone": 5, - ".Event": 1, - "like": 5, - "not": 26, - "currently": 4, - "Only": 5, - "setValueLatest=": 1, - "Modernizr.testAllProps": 1, - "a.prop": 5, - "support.noCloneChecked": 1, - "errorPosition.column": 1, - "self.socketPath": 4, - "cache": 45, - "a.options": 2, - "jQuery.expando": 12, - ".1025*t": 8, - "h6": 1, - "h.status": 1, - "onunload": 1, - "handle": 15, - "bi/": 2, - "delegateEvents": 1, - "element.parent": 1, - "0": 220, - "removeProp": 1, - "value.toLowerCase": 2, - "options.setHost": 1, - "debugger": 2, - "repaint": 23, - "ut.translate": 3, - "str1.length": 1, - "dblclick": 3, - "non_spacing_mark": 1, - "Construct": 1, - "Inspect": 1, - "tokcol": 1, - "ot.height": 1, - "q.handler": 1, - "engine": 2, - "a.runtimeStyle.left": 2, - "y": 101, - "ck.frameBorder": 1, - "matching": 3, - "scripts": 2, - "u1680": 1, - "attempt": 2, - "require": 9, - "add": 15, - "these": 2, - "node": 23, - "steelseries.BackgroundColor.TURNED": 2, - "matched": 2, - "this.getFragment": 6, - "this.slice": 5, - "S.peek": 1, - "fi=": 1, - "e*.481308": 2, - ".7825*t": 5, - "et.translate": 2, - "shivMethods": 2, - "a.cloneNode": 3, - "Event": 3, - "nextAll": 1, - "exports.createClient": 1, - "class": 5, - "": 1, - "setPointerType=": 1, - "pt.width": 1, - "s*.4": 1, - "result.SyntaxError": 1, - "additional": 1, - "/Expect/i": 1, - "cssProps": 1, - "a.JSON.parse": 2, - "is_digit": 3, - "u.frameDesign": 4, - "rr.drawImage": 1, - "ki.play": 1, - "docElement.appendChild": 2, - "e.browser.version": 1, - "Za": 2, - "submitBubbles": 3, - "window.frameElement": 2, - ".892523*ut": 1, - "this.setArea": 1, - "initialize": 3, - "c.currentTarget": 2, - "Sizzle": 1, - ".children": 1, - "x.push": 1, - "Non": 3, - "o.lastChild": 1, - "u.pointerType": 2, - "passed": 5, - "v.set": 5, - "self.socket.writable": 1, - "a.guid": 7, - "yt.start": 1, - "should": 1, - "rowspan": 2, - "at": 58, - "ck.contentWindow": 1, - "values": 10, - "UNICODE.space_combining_mark.test": 1, - "n.fill": 17, - "isFinite": 1, - "this.get": 1, - "Handle": 14, - "s.createElement": 10, - "Trigger": 2, - "model.trigger": 1, - "rnotwhite.test": 2, - "pageX=": 2, - "var": 910, - "Class": 2, - ".parentNode.removeChild": 2, - "jQuery.support.optDisabled": 2, - "then": 8, - "obj.nodeType": 2, - "Modernizr._prefixes": 1, - "change.": 1, - "a.runtimeStyle": 2, - ".toArray": 1, - "a.charAt": 2, - "faster": 1, - "a.length": 23, - "***": 1, - "TEXT": 1, - "frameDesign": 4, - "fragmentOverride": 2, - "]": 1456, - "

": 2, - "ii.height": 2, - "oi/2": 2, - "options.elements": 1, - "possible": 3, - "aren": 5, - "steelseries.ColorDef.BLUE": 1, - "t*.13": 3, - "mod": 12, - "#5145": 1, - "f.attrHooks.name": 1, - "teardown": 6, - "yf": 3, - "l.order.length": 1, - "process.env.NODE_DEBUG": 2, - "45": 5, - "/msie": 1, - "n.order.length": 1, - "//javascript.nwbox.com/IEContentLoaded/": 2, - "cancelable": 4, - "work": 6, - "rt.height": 1, - "model.toJSON": 1, - "selected": 5, - "jQuery.removeAttr": 2, - "set": 22, - "b.firstChild": 5, - "*kt": 5, - "this.setFrameDesign": 7, - "SHEBANG#!node": 2, - "l.left": 1, - "reference": 5, - "repeatable": 1, - "cp": 1, - "colSpan": 2, - ".support.transition": 1, - "": 2, - "Type": 1, - "A.jQuery": 3, - "bd": 1, - "self.once": 2, - "n.drawImage": 14, - "outside": 2, - "f.filter": 2, - "helper": 1, - "c.namespace_re": 1, - "c.fx.speeds": 1, - "unique": 2, - "d.width": 4, - "p.restore": 3, - "this.setSectionActive": 2, - "u3000": 1, - "this.interval": 1, - "giving": 1, - "jQuerySub.fn": 2, - "traditional": 1, - "waiting": 2, - "f.unique": 4, - "A.document": 1, - "global": 5, - "grep": 6, - "Server": 6, - "specialSubmit": 3, - "hr.drawImage": 2, - "f*.82": 1, - "t.stop": 1, - "Modernizr": 12, - "staticProps": 3, - "later": 1, - "e*.012135": 2, - "f*.1": 5, - "body.removeChild": 1, - "f.ajaxSettings.traditional": 2, - "a.currentStyle.left": 1, - "": 1, - "": 1, - "ownerDocument.documentShived": 2, - "A": 24, - ".append": 6, - "d.parseFromString": 1, - "f/": 1, - "ba.call": 1, - "breaking": 1, - "this.nextSibling": 2, - "this.method": 2, - "ni=": 1, - ".86*t": 4, - "n.shadowColor": 2, - "lineTo": 22, - "incoming": 2, - "a.navigator": 1, - "a.insertBefore": 2, - "l.match.PSEUDO.test": 1, - "ft.length": 2, - "getImageData": 1, - "useMap": 2, - "this.httpAllowHalfOpen": 1, - "hover": 3, - "delegate": 1, - "this._pendings.length": 1, - "ties": 1, - "fx": 10, - "readyState=": 1, - "p.setup.call": 1, - ".698039": 1, - ".0516*t": 7, - "params.url": 2, - "el": 4, - "this.valueOf": 2, - "c.data": 12, - "f.support.hrefNormalized": 1, - "jQuery._Deferred": 3, - "parser.socket.ondata": 1, - "isHeadResponse": 2, - "nt": 75, - "k*.13": 2, - "v.complete": 1, - "et.drawImage": 1, - "p.rotate": 4, - "bH": 2, - "a.liveFired": 4, - "message": 5, - "h.overrideMimeType": 2, - "ready": 31, - "jQuery.isReady": 6, - "g.preType": 3, - "them.": 1, - "slow": 1, - "j.handleObj.origHandler.apply": 1, - "t.restore": 2, - "u.save": 7, - "jQuery.ready": 16, - "child": 17, - "setAttribute": 1, - "base": 2, - "exports.Client": 1, - "i*.012135": 1, - "s/ut": 1, - "t.playing": 1, - "Promise": 1, - "%": 26, - "": 1, - "u2060": 1, - "f.fx.stop": 1, - "/json/": 1, - "transferEncodingExpression": 1, - "f*.528037": 2, - "ht": 34, - "row": 1, - "destroy": 1, - "shallow": 1, - ".closest": 4, - "c.specified": 1, - "f.attr": 2, - "t.exec": 1, - "w.textColor": 1, - "matchMedia": 3, - "a.nodeName.toLowerCase": 3, - "lineHeight": 1, - "n": 874, - "t/2": 1, - "i.maxValue": 10, - "Chrome": 2, - "window.history.pushState": 2, - "b.jsonp": 3, - "comment": 3, - "contextXML": 1, - "m.apply": 1, - "": 1, - "f.inArray": 4, - "#5443": 4, - "parser.incoming.method": 1, - "frameBorder": 2, - "e.each": 2, - "lazy": 1, - "obj.constructor": 2, - "d.nodeType": 5, - "regularEaseInOut": 2, - "789719": 1, - ".7475": 2, - "f*.871012": 2, - "params.beforeSend": 1, - "dealing": 2, - "P.version": 1, - "/.exec": 4, - "c.event.handle.apply": 1, - "dt=": 2, - "result1": 81, - "HTTPParser": 2, - "u.degreeScale": 4, - "n*kt": 1, - "kt.translate": 2, - "j.attr": 1, - "mouseover": 12, - "h*.41": 1, - "bu": 11, - "url": 23, - "top": 12, - "e*.1": 1, - "s*.06": 1, - "ai": 21, - "Sets": 3, - "a.style.paddingLeft": 1, - ".name": 3, - "cw.test": 1, - "g.className": 4, - "bodyHead": 4, - ".12*f": 2, - "this.setSection": 4, - "this.resetMaxMeasuredValue": 4, - "this.tagName": 1, - "": 1, - "id": 38, - "he.drawImage": 1, - "i.pageYOffset": 1, - "srcElement": 5, - "type=": 5, - "len": 11, - "sans": 12, - "_id": 1, - "DTRACE_HTTP_SERVER_RESPONSE": 1, - "T.find": 1, - "e.length": 9, - "f.get": 2, - "R": 2, - "exports.ServerResponse": 1, - "trigger": 4, - "multiline": 1, - "n.toFixed": 2, - "/bfnrt": 1, - "k.selectors": 1, - "rinvalidChar.test": 1, - "f.pixelLeft": 1, - "determining": 3, - "c.split": 2, - "frag.appendChild": 1, - "self.removeSocket": 2, - "": 1, - "k.parentNode": 1, - "S.text.charAt": 2, - "e.complete.call": 1, - "wrap": 2, - "350466": 1, - "shadowColor=": 1, - "drawImage": 12, - "e*.060747": 2, - "k.ownerDocument": 1, - "checkSet": 1, - "s.events": 1, - "a.className": 1, - "t*.19857": 1, - "errorPosition": 1, - "f.support.cors": 1, - "the": 107, - "bW.toLowerCase": 1, - "Keep": 2, - "r.exec": 1, - "t*.142857": 8, - ".33*f": 2, - "k*.4": 1, - "span": 1, - "child.prototype.constructor": 1, - "#9699": 1, - "1e8": 1, - "g.splice": 2, - "live": 8, - "steelseries.BackgroundColor.STAINLESS": 2, - "F.prototype": 1, - "div.parentNode.removeChild": 1, - "ce": 6, - "attrHooks": 3, - "ex.name": 1, - ".856796": 2, - "f*.18": 4, - "bY": 1, - "<=1&&a&&f.isFunction(a.promise)?a:f.Deferred();if(d>": 1, - "s*.checked.": 1, - "items": 2, - "h.set": 1, - "ut": 59, - "_hasOwnProperty": 2, - "cx.test": 2, - "a.href": 2, - "h.value": 3, - "this.createSocket": 2, - "selector.charAt": 4, - "<0&&(n+=360),n=\"00\"+Math.round(n),n=n.substring(n.length,n.length-3),(ht===steelseries.LcdColor.STANDARD||ht===steelseries.LcdColor.STANDARD_GREEN)&&(e.shadowColor=\"gray\",e.shadowOffsetX=f*.007,e.shadowOffsetY=f*.007,e.shadowBlur=f*.007),e.font=pr?gr:br,e.fillText(n+\"\\u00b0\",f/2+gt*.05,(t?or:cr)+er*.5+ui*.38,gt*.9),e.restore()},wi=function(n,t,i,r,u){n.save(),n.strokeStyle=r,n.fillStyle=r,n.lineWidth=f*.035;var>": 1, - "input.substr": 9, - "th": 1, - "before": 8, - "this.serializeArray": 1, - "c.ready": 7, - "b.test": 1, - "": 2, - "ht/": 2, - "s*.831775": 1, - "defaults": 3, - "a.now": 4, - "extend": 13, - "result": 9, - ".attr": 1, - "/mg": 1, - "data": 145, - "serverSocketCloseListener": 3, - "72": 1, - "ii.push": 1, - "interval": 3, - "rejectWith": 2, - "_default": 5, - "rt.getContext": 2, - "parse___": 2, - "S/": 4, - "res.emit": 1, - "view": 4, - "sentExpect": 3, - "l/Math.PI*180": 4, - "yt/at": 1, - "this.initialize.apply": 2, - "camelizing": 1, - "now=": 1, - "jsonpCallback": 1, - "transition": 1, - "shown": 2, - "document.createElement": 26, - "err": 5, - "S.pos": 4, - "lt.getContext": 1, - "buildMessage": 2, - "d.readOnly": 1, - "js_error": 2, - "f/10": 1, - "lt=": 4, - "b/vt": 1, - "pos": 197, - "e.document.compatMode": 1, - "k.top": 1, - "attrMap": 2, - "fresh": 1, - "s.detachEvent": 1, - "f*.34": 3, - "ou": 13, - "isBool": 4, - "deferred.done.apply": 2, - "read_while": 2, - "e*.116822": 3, - "ni": 30, - "f.acceptData": 4, - "<=>": 1, - "g.handler": 1, - "ForegroundType": 2, - "yi.height": 1, - "parse_simpleBracketDelimitedCharacter": 2, - "memory": 8, - "b=": 25, - "req.end": 1, - "dataAttr": 6, - "parse_simpleSingleQuotedCharacter": 2, - "document.createElementNS": 6, - "": 1, - "Horse.__super__.move.call": 2, - "f.map": 5, - ".specialChange": 4, - "Not": 4, - "g.resolveWith": 3, - "also": 5, - "action": 3, - "mStyle": 2, - "self.disable": 1, - "f.fn.offset": 2, - "jQuery.support.getSetAttribute": 1, - "F.call": 1, - "j.boxModel": 1, - "doing": 3, - "<=o-4&&(e=0,c=!1),u.fillText(n,o-2-e,h*.5+v*.38)),u.restore()},dt=function(n,i,r,u){var>": 1, - "shived": 5, - "toUpperCase": 1, - "i.style.marginRight": 1, - ".toString": 3, - "c.borderLeftWidth": 2, - "h.promise": 1, - "lineCap=": 5, - "noConflict": 4, - ".08*f": 1, - "iu": 14, - "c.apply": 2, - "hi": 15, - "msie": 4, - "returned": 4, - "IncomingMessage": 4, - "incoming.push": 1, - "script": 7, - ".8425*t": 1, - "b.getBoundingClientRect": 1, - "FreeList": 2, - "c": 775, - "ck.width": 1, - "g.disabled": 1, - "STANDARD": 3, - "h*.2": 2, - "e.medium.getHexColor": 1, - "u.restore": 6, - "": 1, - "f.timers": 2, - "promise": 14, - "__slice": 2, - "space_combining_mark": 1, - "ft.height": 1, - "pe": 2, - "e.fragment": 1, - "Add": 4, - "Client": 6, - "c.support.noCloneEvent": 1, - "eE": 4, - "yt.width": 2, - "req.socket": 1, - "i.createDocumentFragment": 1, - "this.setMaxMeasuredValueVisible": 4, - "jQuery.browser.safari": 1, - ".StringDecoder": 1, - ".createTextNode": 1, - "even": 3, - "square": 10, - "006": 1, - "u.pointerTypeAverage": 2, - "calls": 1, - "accepts": 5, - "release": 2, - "3c4439": 2, - "u.canvas.width*.4865": 2, - "a.splice": 1, - "cv": 2, - "auto": 3, - "f.offset.doesNotIncludeMarginInBodyOffset": 1, - "a.dataFilter": 2, - "rBackslash": 1, - "b.selected": 1, - "bj": 3, - "Explorer": 1, - "b.drawImage": 1, - "i*.121428": 1, - "elements.split": 1, - "requestListener": 6, - "S.comments_before": 2, - "WHITE": 1, - "481308": 4, - "active": 2, - "document": 26, - "deferred": 25, - "ends": 1, - "this.hide": 1, - "a.prototype": 1, - "parser.maxHeaderPairs": 4, - "b.insertBefore": 3, - "screenX": 4, - "unary": 2, - ".63*e": 3, - "fi.height": 2, - "df.type": 1, - "rect": 3, - "a.webkitRequestAnimationFrame": 1, - "l.order.splice": 1, - "class.": 1, - "c.handler": 1, - "f.clean": 1, - "f*.7": 2, - "inputs": 3, - "fast": 1, - "280373": 3, - "name.length": 1, - "this.isLocal": 1, - "Date": 4, - "G": 11, - "propName": 8, - "ra": 1, - "tt=": 3, - "bargraphled": 3, - "tr.drawImage": 2, - "et.rotate": 1, - "c.toFixed": 2, - "args.length": 3, - "a.JSON": 1, - "sizzle": 1, - "exports.ATOMIC_START_TOKEN": 1, - "f*.007": 2, - "e/10": 3, - "u205F": 1, - "b.defaultChecked": 1, - "self.port": 1, - "socket.removeListener": 5, - "gradientFraction2Color": 1, - "n.fillRect": 16, - "beginPath": 12, - "slideToggle": 1, - "f.parseXML": 1, - "o=": 13, - "x.shift": 4, - "n.relative": 5, - "f.support.noCloneChecked": 1, - "e.apply": 1, - "keys": 11, - "t*.856796": 1, - "": 1, - "ct*2.5": 1, - "er": 19, - "parser.onHeaders": 1, - "Set": 4, - "_results.push": 2, - "Name": 1, - "df": 3, - "s*.035": 2, - "ownerDocument.getElementsByTagName": 1, - "crossDomain=": 2, - "released": 2, - "promiseMethods.length": 1, - "this.host": 1, - "htmlFor": 2, - "f.now": 2, - ".46": 3, - "lt/ct": 2, - "kt.drawImage": 1, - "f*.29": 19, - "offsetParent": 1, - "dest": 12, - "this.selector": 16, - "j.toggleClass": 1, - "scrollTop": 2, - "e.map": 1, - "e.canvas.height": 2, - "currentPos": 20, - "i.backgroundVisible": 10, - "jQuerySub.fn.constructor": 1, - "bN": 2, - "token": 5, - "vu": 10, - "pvt": 8, - "l.push": 2, - "Label": 1, - "i.useValueGradient": 4, - "ui": 31, - "this.socket.setTimeout": 1, - "e*.149532": 8, - "08": 1, - "": 5, - "support.shrinkWrapBlocks": 1, - "i=": 31, - "p.pop": 4, - "f.support.appendChecked": 1, - "self._pendings.length": 2, - "f*.556074": 9, - "wu.repaint": 1, - "this.message": 3, - "h1": 5, - "this.fragment": 13, - "this.doesAddBorderForTableAndCells": 1, - "this.httpVersion": 1, - "tds": 6, - "_super": 4, - "promiseMethods": 3, - "f.extend": 23, - "a.done": 1, - "f.appendChild": 1, - "83": 1, - "et.restore": 1, - "docElement.className.replace": 1, - "f.active": 1, - "+": 1135, - "nextUntil": 1, - "destroyed": 2, - "startTime=": 1, - "closeExpression.test": 1, - "navigator.userAgent": 3, - "/u": 3, - "window.html5": 2, - "container": 4, - "a.parentNode.firstChild": 1, - "name.split": 1, - "t": 436, - "setup": 5, - "this._expect_continue": 1, - "Math.sqrt": 2, - "i.lcdColor": 8, - "i.titleString": 10, - "Backbone.Router.prototype": 1, - "modified": 3, - "onMotionChanged=": 2, - "r.repaint": 1, - "s*.626168": 1, - "onServerResponseClose": 3, - "input.charCodeAt": 18, - "c.removeData": 2, - "live.": 2, - "exports._connectionListener": 1, - "insertAfter": 1, - "Ra": 2, - "out": 1, - "b.parentNode.removeChild": 2, - "a.style.display": 3, - "ownerDocument": 9, - "e*.22": 3, - "PI": 54, - "property": 15, - "we": 25, - "714953": 5, - "_ensureElement": 1, - "g.clientLeft": 1, - "<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\\w:]+)[^>": 1, - "u.shadowOffsetX": 2, - "i.gaugeType": 6, - "this._hasPushState": 6, - "container.appendChild": 1, - "tests": 48, - "rwebkit": 2, - "newDefer.resolve": 1, - "jQuery.isNaN": 1, - "this._header": 10, - "setCssAll": 2, - "/100": 2, - "doesn": 2, - "this.maxHeaderPairs": 2, - "process.nextTick": 1, - "sourceIndex": 1, - "is_identifier_start": 2, - "128": 2, - "prop.charAt": 1, - "_.bind": 2, - "jQuery.isArray": 1, - "Callbacks": 1, - "parent.prototype": 6, - "d.call": 3, - "f.expr.filters": 3, - "s.createDocumentFragment": 1, - ".toJSON": 4, - "without": 1, - ".0465*t": 2, - "rawText": 5, - "data.": 1, - "/radio": 1, - "req.listeners": 1, - "OutgoingMessage.prototype._flush": 1, - "sock": 1, - "userAgent": 3, - "e/2": 2, - ".start": 12, - "this.routes": 4, - "let": 1, - "computed": 1, - "multiple=": 1, - "expr": 2, - "has_x": 5, - "r*1.035": 4, - "rr": 21, - "testPropsAll": 17, - "window.location.pathname": 1, - "flags.unique": 1, - "createHangUpError": 3, - "last": 6, - "v.exec": 1, - "X": 6, - "RFC": 16, - "field.slice": 1, - "context": 48, - "self._emitEnd": 1, - "f.attrHooks.value": 1, - "dark": 2, - "gt.height": 1, - "bool.webm": 1, - "explicit": 1, - "a.removeChild": 2, - "a.innerHTML": 7, - "RE_HEX_NUMBER": 1, - "d.getContext": 2, - "ci/": 2, - "begin.data": 1, - "d.charset": 1, - "/javascript": 1, - "this.constructor": 5, - "ya": 2, - "xml": 3, - "e.buildFragment": 1, - "f*.856796": 2, - "yi.setAttribute": 2, - "f.cssProps": 2, - "b.rotate": 1, - "ut.width": 1, - "v=": 5, - "fadeIn": 1, - "m.test": 1, - "setValueAnimatedAverage=": 1, - "setValueAnimatedLatest=": 1, - "t*.114285": 1, - "n.removeClass": 1, - "fn.apply": 1, - "ck": 5, - "option.disabled": 2, - "end": 14, - "270": 1, - "lr": 19, - "c.overflow": 1, - "OutgoingMessage.call": 2, - ".innerHTML.replace": 1, - "b.css": 1, - "Top": 1, - "b_": 4, - ".7725*t": 6, - "kf": 3, - "e.splice": 1, - "connectionExpression": 1, - "h*u": 1, - "c.globalEval": 1, - "exists": 9, - "start": 20, - "d.toFixed": 1, - "vi.height": 1, - "h.clientTop": 1, - "We": 6, - "D.call": 4, - "jQuery.parseJSON": 2, - "UNICODE": 1, - "i.labelNumberFormat": 10, - "bug": 3, - "shiftKey": 4, - "jQuery.attr": 2, - "a.sub": 1, - ".1": 18, - ".replace": 38, - "<": 209, - "k.find": 6, - "yt.stop": 1, - "f*": 5, - "Math": 51, - "_data": 3, - "Array.prototype.slice.call": 1, - "c.attachEvent": 3, - "h*.04": 1, - ".getRgbaColor": 3, - "u.createRadialGradient": 1, - "expected.slice": 1, - "this.options.root.length": 1, - "into": 2, - "steelseries.LcdColor.STANDARD": 9, - "etag": 3, - "async": 5, - "self._renderHeaders": 1, - "rvalidbraces": 2, - "iu.getContext": 1, - "this.extend": 1, - "a.relatedTarget": 2, - "g.nodeType": 6, - "/Content": 1, - "clip": 1, - "u*.65": 2, - "inputElem": 6, - "deferred.cancel": 2, - "_.exec": 2, - "leftMatch": 2, - "The": 9, - "there": 6, - "andSelf": 1, - "net.Server.call": 1, - "b.length": 12, - "u*.003": 2, - "options.routes": 2, - "this.writeHead.apply": 1, - "no": 19, - "r.createElement": 11, - "attrs.list": 2, - "location.hash": 1, - "stopImmediatePropagation": 1, - "about": 1, - "c.isPlainObject": 3, - "bC": 2, - "f.uuid": 1, - "s.addColorStop": 4, - "k*.514018": 2, - "": 2, - "Ya": 2, - "n.background": 22, - "q.expr": 4, - "model": 14, - "b.restore": 1, - ".686274": 1, - "Modernizr._version": 1, - "Function.prototype.bind": 2, - "_extractParameters": 1, - "": 2, - "Modal.prototype": 1, - "u.pointSymbols": 4, - "94": 1, - "parent.firstChild": 1, - "this.models": 1, - "list": 21, - "c.result": 3, - "test/unit/core.js": 2, - ".TEST": 2, - "d.toLowerCase": 1, - "marginRight": 2, - "this.socket.once": 1, - "s*.565": 1, - "u.frameVisible": 4, - "e.reverse": 1, - "leading/trailing": 2, - "f.fx.speeds": 1, - "W/.test": 1, - "100": 4, - "steelseries.LedColor.RED_LED": 7, - "f.offset.setOffset": 2, - "IncomingMessage.prototype.resume": 1, - "boolHook": 3, - "steelseries.PointerType.TYPE1": 3, - "forcePushState": 2, - "flags": 13, - "d.stop": 2, - "<-270&&e>": 2, - "i*.12864": 2, - "IE8": 2, - "i": 853, - ".fail.apply": 1, - "c.removeClass": 1, - "comments_before": 1, - "PUNC_CHARS": 1, - "h*.8": 1, - "steelseries.TrendState.UP": 2, - "element.removeAttribute": 2, - "Index": 1, - "a.selector": 4, - "f.attrFn": 3, - "attrFixes": 1, - "prefixed": 7, - "e.offsetTop": 4, - "unit=": 1, - "jquery": 3, - "deferred.done": 2, - "callbacks.shift": 1, - "cp.slice": 1, - "yr": 17, - "c.target": 3, - "tabindex": 4, - "this._renderHeaders": 3, - "f.buildFragment": 2, - "h.type": 1, - "inherits": 2, - "OutgoingMessage.prototype.destroy": 1, - "35": 1, - "rotate": 31, - "fi.pause": 1, - "prev": 2, - "len.toString": 2, - "a.fn.constructor": 1, - "e/1.95": 1, - "fillStyle=": 13, - "<<": 4, - "q.length": 1, - "vertical": 1, - "copy": 16, - "firstly": 2, - "tok": 1, - "S.col": 3, - "t*.435714": 4, - "/xml/": 1, - "bp": 1, - "wt.getContext": 1, - "u*.22": 3, - "rNonWord": 1, - "s*": 15, - "Invalid": 2, - ".030373*e": 1, - "chars.join": 1, - "Modernizr.hasEvent": 1, - "feature": 12, - "No": 1, - "keydown": 4, - "e.browser.safari": 1, - "password": 5, - "col": 7, - "tokline": 1, - ".528036*f": 5, - "i.height": 6, - "u.font": 2, - "v.abort": 1, - "Left": 1, - "globalEval": 2, - "cloned": 1, - "tabIndex": 4, - "f.events": 1, - "k*.037383": 11, - "history.pushState": 1, - "ajaxSend": 1, - "c.isPropagationStopped": 1, - "newDefer": 3, - "res.detachSocket": 1, - ".listen": 1, - "M": 9, - "e.uaMatch": 1, - "t.closePath": 4, - "si.width": 2, - "Math.PI/": 1, - "jQuery.prop": 2, - "a.getElementsByClassName": 3, - "elem.getAttribute": 7, - "a.attributes.value": 1, - "c.isReady": 4, - "conditional": 1, - "t.dark.getRgbaColor": 2, - "div.style.zoom": 2, - "this.doesNotIncludeMarginInBodyOffset": 1, - "encodeURIComponent": 2, - "v.statusText": 1, - "s.readyState": 2, - "or/2": 1, - "i.trendColors": 4, - "it.getContext": 2, - "<-180&&e>": 2, - "appendChild": 1, - "i.style.width": 1, - "ex": 3, - "21028": 1, - "quoteForRegexpClass": 1, - "First": 3, - "f.sibling": 2, - "Catch": 2, - "at/": 1, - "this._emitPending": 1, - "c.browser.webkit": 1, - "f.camelCase": 5, - "keyCode=": 1, - "u/2": 5, - "u0600": 1, - "ms": 2, - "offset": 21, - "": 1, - "s*.023364": 2, - "div.id": 1, - "DELETE": 1, - "container.style.zoom": 2, - "bT": 2, - "jQuery": 48, - "f.isFunction": 21, - "f.isArray": 8, - "this": 577, - "localAddress": 15, - "this.color": 1, - "client": 3, - "res.shouldKeepAlive": 1, - "dt.stop": 2, - "serialized": 3, - "cssNumber": 3, - "debug": 15, - "i.pointerColor": 4, - "#3333": 1, - "c.xhr": 1, - "Snake": 12, - "self.createConnection": 2, - "util._extend": 1, - "where": 2, - "context.ownerDocument": 2, - "Client.prototype.request": 1, - "catch/finally": 1, - "et=": 6, - "/2": 25, - "this.parent": 2, - "u.backgroundVisible": 4, - "shiv": 1, - "prefixes.join": 3, - "str1": 6, - "because": 1, - "1": 97, - "Agent.defaultMaxSockets": 2, - "i.nodeType": 1, - "steelseries.BackgroundColor.DARK_GRAY": 7, - "this.animate": 2, - "a.type": 14, - "e._Deferred": 1, - "remove": 9, - "ServerResponse.prototype.statusCode": 1, - "o.split": 1, - "m.elem": 1, - "has_dot": 3, - "self.getHeader": 1, - "g.parentNode": 2, - "allows": 1, - "e.clearRect": 1, - "textAlign=": 7, - "this.setMinValue": 4, - "gt": 32, - "node.canHaveChildren": 1, - "d.style": 3, - "position": 7, - "z": 21, - "occurred.": 2, - "this.parentNode": 1, - "processData": 3, - "this._headers.concat": 1, - "removeAttribute": 3, - "163551": 5, - "hi.height": 3, - "slice.call": 3, - "msecs": 4, - "scrollLeft": 2, - "deferred.promise": 1, - "this.found": 1, - "protoProps": 6, - "Ready": 2, - "email": 2, - "a.text": 1, - "l.order": 1, - "i.resolve": 1, - "Z.exec": 1, - "setBackgroundColor=": 1, - "s*.5": 1, - "t*.007142": 4, - "parser.incoming._emitData": 1, - "": 4, - "this.outputEncodings.unshift": 1, - "e*.28": 1, - "inputElemType": 5, - "jQuerySub.sub": 1, - "d.left": 2, - "bytesParsed": 4, - "at/yt*h": 1, - "loc.pathname": 1, - "req.parser": 1, - "apply": 8, - "c.clean": 1, - "f.support.optSelected": 1, - "getElementsByTagName": 1, - "result=": 1, - "_.extend": 9, - "this.finished": 4, - "firstParam": 6, - "c.getElementById": 1, - "au": 10, - "pos0": 51, - "socket.destroySoon": 2, - "pageXOffset": 2, - "expandos": 2, - "textarea": 8, - "n.unbind": 1, - "jshint": 1, - "dir": 1, - "zIndex": 1, - ".34*f": 2, - "u.fillStyle": 2, - "j.nodeName": 1, - "this.connection.writable": 3, - "": 1, - "x.length": 8, - "f.context": 1, - "s*.71": 1, - "Backbone.History.prototype": 1, - "src": 7, - "j.optDisabled": 1, - "detachEvent": 2, - "failDeferred.resolveWith": 1, - "connectionExpression.test": 1, - "b.type": 4, - "escape.call": 1, - "k*.57": 1, - "res.writeContinue": 1, - "pointerColor": 4, - "i.width*.5": 2, - "1_=": 1, - ".data": 3, - "q.test": 1, - "Perini": 2, - "a.detachEvent": 1, - "actual": 1, - "f.support.ajax": 1, - "c.on": 2, - "f.event.handle.call": 1, - "this.getHeader": 2, - "explanation": 1, - "c.support.hrefNormalized": 1, - "check": 8, - "ONLY.": 2, - "jQuery.propFix": 2, - "e.trim": 1, - "HTTPParser.REQUEST": 2, - "e*.490654": 2, - "46": 1, - "/SVGClipPath/.test": 1, - "this.handlers.unshift": 1, - "/Transfer": 1, - "TAG": 2, - "color": 4, - "own.": 2, - "b.text": 3, - "triggerHandler": 1, - "i.lcdDecimals": 8, - "getElements": 2, - "feature.toLowerCase": 2, - "c.hasContent": 1, - "Sizzle.isXML": 1, - "s.textBaseline": 1, - "c.mimeType": 2, - ".cssText": 2, - "728155": 2, - ".65*u": 1, - "merge": 2, - "cq": 3, - "s*.12": 1, - "marginDiv.style.marginRight": 1, - "h.indexOf": 3, - "be": 12, - "s.splice": 1, - "chunk.": 1, - "st.medium.getHexColor": 2, - "uFEFF": 1, - "testProps": 3, - "jQuery.fn.jquery": 1, - "//docs.jquery.com/Utilities/jQuery.browser": 1, - "bg.caption": 1, - "reject": 4, - "d.userAgent": 1, - "Buffer.byteLength": 2, - "quote": 3, - "constructor": 8, - "self.onSocket": 3, - ".0314*t": 5, - "it.labelColor.setAlpha": 1, - "tt": 53, - "a.DOMParser": 1, - "pageX": 4, - "notxml": 8, - ".appendChild": 1, - "nlb": 1, - "f*.2": 1, - "end.data": 1, - "oldIE": 3, - "f.makeArray": 5, - "legend": 1, - "after": 7, - ".7": 1, - "B": 5, - "opera": 4, - ".nodeType": 9, - "f.Event": 2, - "borderLeftWidth": 1, - "e*.009": 1, - "": 5, - "this.setValueColor": 3, - "fakeBody": 4, - "viewOptions": 2, - "this.css": 1, - "a.elem.style": 3, - "C.apply": 1, - "scoped": 1, - "c.body.appendChild": 1, - "e.fn.attr.call": 1, - "slice": 10, - "m.elem.disabled": 1, - "exports.OutgoingMessage": 1, - "62": 1, - "_pos": 2, - "bt.getContext": 1, - "R.apply": 1, - "module.deprecate": 2, - "c.browser.version": 1, - "d.concat": 1, - "parser.onMessageComplete": 1, - "d.toUTCString": 1, - "onFree": 3, - "it.labelColor.getRgbaColor": 4, - "s*.355": 1, - "Date.prototype.toJSON": 2, - "f.offset.subtractsBorderForOverflowNotVisible": 1, - "easing": 3, - "f.cssNumber": 1, - "Unicode": 1, - "n.target._pos": 7, - "rspace": 1, - "a.offsetTop": 2, - "this.doesNotAddBorder": 1, - "getAttribute": 3, - "f.trim": 2, - "isReady": 5, - "g.namespace": 1, - "dateExpression": 1, - "html5.shivCSS": 1, - "da": 1, - "ATOMIC_START_TOKEN": 1, - "u*.009": 1, - "nu": 11, - "parser.onHeadersComplete": 1, - "doScrollCheck": 6, - "": 1, - "this._headerNames": 5, - "ft.push": 1, - "webforms": 2, - "xhr.setRequestHeader": 1, - "End": 1, - "a.contentDocument": 1, - "bI": 1, - "d.innerHTML": 2, - "ai.getContext": 2, - "this.requests": 5, - "must": 4, - "a=": 23, - "flagsCache": 3, - "a.superclass": 1, - "c.defaultView": 2, - "03": 1, - "h.scrollTop": 2, - "options.protocol": 3, - "e.browser.webkit": 1, - "b.events": 4, - "ServerResponse.prototype.assignSocket": 1, - "h.medium.getRgbaColor": 6, - "pu.state": 1, - "Bug": 1, - "c.namespace": 2, - "j.style.opacity": 1, - "firing": 16, - "appended": 2, - "": 1, - "": 1, - "g.selector": 3, - "&": 13, - "jQuery.attrFix": 2, - "k.nodeType": 1, - "getPreventDefault": 2, - "f.fn.css": 1, - "switch": 30, - "ki.pause": 1, - "hu": 11, - "safari": 1, - "details": 3, - "a.frameElement": 1, - "gi": 26, - "natively": 1, - "this.type": 3, - "e.browser": 1, - "this._send": 8, - "a.selected": 1, - "o": 322, - "f.error": 4, - "r.setAlpha": 8, - "moveTo": 10, - "inverted": 4, - "frag.createDocumentFragment": 1, - "g.top": 1, - "parser.incoming.httpVersionMajor": 1, - "a.dataType": 1, - "471962": 4, - "r*1.014": 5, - "i.useSectionColors": 4, - "h.scrollLeft": 2, - "this.setHeader": 2, - "d.type": 2, - "cur": 6, - "internal": 8, - "oe": 2, - "i.getGreen": 1, - "_.bindAll": 1, - "ServerResponse.prototype.writeHead": 1, - ".charAt": 1, - "u.pointerColor": 4, - "ut=": 6, - "Math.PI*.5": 2, - "i*.45": 4, - "value.call": 1, - "deferred.resolveWith": 5, - "this.die": 1, - "hostHeader": 3, - "q.set": 4, - "j.checkClone": 1, - "utcDate": 2, - "fontWeight": 1, - "steelseries.LcdColor.STANDARD_GREEN": 4, - "this.getUTCMinutes": 1, - "e.getAttribute": 2, - "setPointerTypeAverage=": 1, - "bt.length": 4, - "result2": 77, - "document.defaultView": 1, - "executing": 1, - "both": 2, - "e.style.cssFloat": 1, - "this.chunkedEncoding": 6, - "f.hasData": 2, - "inserted": 1, - "a.target": 5, - "c.error": 2, - "hot": 3, - "": 1, - "testMediaQuery": 2, - "expression": 4, - "bindReady": 5, - "getScript": 1, - "h*.42": 1, - "Internal": 1, - "b.slice": 1, - "r/g": 2, - "parser.incoming.httpVersionMinor": 1, - "bv": 2, - "u.toPrecision": 1, - "this._ensureElement": 1, - "toLowerCase": 3, - "rbrace.test": 2, - ".480099": 1, - "cr*.38": 1, - "Feb": 1, - "click": 11, - "ta.test": 1, - "process.binding": 1, - "a.preventDefault": 3, - "bt.test": 1, - "ie": 2, - "fakeBody.style.background": 1, - "namedParam": 2, - "fail": 10, - "s*.085": 1, - "parse_hexDigit": 7, - "window.DocumentTouch": 1, - "f.lastModified": 1, - "iframes": 2, - "api": 1, - "req.res.emit": 1, - "s*.523364": 2, - "this.offset": 2, - "path": 5, - "S": 8, - "b.checked": 1, - "getElementById": 4, - "part.data": 1, - "parse_hexEscapeSequence": 3, - "options.shivCSS": 1, - "fA": 2, - "Reference": 1, - "this.childNodes": 1, - "qa": 1, - "ot.addColorStop": 2, - "bool.wav": 1, - "h.responseText": 1, - "many": 3, - "i.live.slice": 1, - "57": 1, - "this._remove": 1, - "350467": 5, - "this.iframe.location.hash": 3, - "outer.style.overflow": 1, - "attrName": 4, - "ActiveXObject": 1, - "n=": 10, - "html5.shivMethods": 1, - "cells": 3, - "Stack": 1, - "try": 44, - "jQuery=": 2, - "options.method": 2, - "t.test": 2, - "token.value": 1, - "dr": 16, - "i.area": 4, - "anyone": 1, - "parser.incoming.statusCode": 2, - "trying": 1, - "callback": 23, - "elem=": 4, - "my": 1, - "cf": 7, - "/Connection/i": 1, - "isPlainObject": 4, - "isEmptyDataObject": 3, - "b.triggerHandler": 2, - ".0377*t": 2, - "se.drawImage": 1, - "elems.length": 1, - "self.socket": 5, - "bZ": 3, - "KEYWORDS": 2, - "i*.114285": 1, - "t.height*.9": 6, - "jQuery.fn.extend": 4, - ".style.display": 5, - "uu": 13, - "steelseries.FrameDesign.METAL": 7, - "canvas": 22, - ".close": 1, - "are": 18, - "f.fragments": 3, - "dt.height/2": 2, - ".0365*t": 9, - ".0264*t": 4, - "li.width": 3, - "ti": 39, - "t/255": 1, - "g.get": 1, - "Q.push": 1, - "err.message": 1, - "p.save": 2, - "dt.type": 4, - "parse_eolEscapeSequence": 3, - "f.offset.bodyOffset": 2, - "e.error": 2, - "self.agent": 3, - "h=": 19, - "floor": 13, - "handleObj=": 1, - "req.method": 5, - "br=": 1, - "fieldset": 1, - "node.offsetTop": 1, - "gt.length": 2, - "ut*.61": 1, - "t.width*.1": 2, - "x.browser": 2, - "trimming": 2, - "f.ajaxTransport": 2, - "c.dataTypes.unshift": 1, - "bring": 2, - "rt.addColorStop": 4, - "Clear": 1, - "CRLF": 13, - "fn": 14, - "reliableMarginRight": 2, - "n.canvas.height/2": 4, - "l/et": 8, - "Modernizr.testProp": 1, - "object.url": 4, - "differently": 1, - "f.easing": 1, - "parser.socket.resume": 1, - "bb.test": 2, - "isNaN": 6, - "is_token": 1, - "UNICODE.non_spacing_mark.test": 1, - "f*.35": 26, - "v.createRadialGradient": 2, - "y.drawImage": 6, - "f/2": 13, - "k.elem": 2, - "vi.drawImage": 2, - "Backbone.Model.extend": 1, - "Animal": 12, - "inArray": 5, - "time": 1, - "Qa": 1, - "StringDecoder": 2, - "b.append": 1, - "reliable": 1, - "ajaxTransport": 1, - "this.maxHeadersCount": 2, - "failDeferred.done": 1, - "d.prevObject": 1, - "info": 2, - "k.labelColor.setAlpha": 1, - "jsonp": 1, - "methods": 8, - "/gi": 2, - "ve": 3, - "c.event.add": 1, - "const": 2, - "Extend": 2, - "s.exec": 1, - "options.defaultPort": 1, - "store": 3, - "a.offsetHeight": 2, - "f.event.remove": 5, - "parser.socket": 4, - "m.level": 1, - "r.test": 1, - "docCreateElement": 5, - "Mozilla": 2, - "maintains": 1, - "parser.incoming": 9, - "R.call": 2, - "height=": 17, - "parse_unicodeEscapeSequence": 3, - "decodeURIComponent": 2, - "will": 7, - "iterating": 1, - ".107476*ut": 1, - "h.guid": 2, - "n.odo": 2, - "i.ledVisible": 10, - "mode": 1, - "d": 771, - "thisCache": 15, - "makeArray": 3, - "666666": 2, - "h*.3": 1, - "d.style.overflow": 1, - "siblings": 1, - "": 2, - "": 1, - "bgcolor=": 1, - "": 1, - "": 1, - "xsl=": 1, - "": 1, - "CD": 1, - "My": 1, - "version=": 2, - "": 1, - "": 2, + "NSIS": { + ";": 39, + "bigtest.nsi": 1, + "This": 2, + "script": 1, + "attempts": 1, + "to": 6, + "test": 1, + "most": 1, + "of": 3, + "the": 4, + "functionality": 1, + "NSIS": 3, + "exehead.": 1, + "-": 205, + "ifdef": 2, + "HAVE_UPX": 1, + "packhdr": 1, + "tmp.dat": 1, + "endif": 4, + "NOCOMPRESS": 1, + "SetCompress": 1, + "off": 1, + "Name": 1, + "Caption": 1, + "Icon": 1, + "OutFile": 1, + "SetDateSave": 1, + "on": 6, + "SetDatablockOptimize": 1, + "CRCCheck": 1, + "SilentInstall": 1, + "normal": 1, + "BGGradient": 1, + "FFFFFF": 1, + "InstallColors": 1, + "FF8080": 1, + "XPStyle": 1, + "InstallDir": 1, + "InstallDirRegKey": 1, + "HKLM": 9, + "CheckBitmap": 1, + "LicenseText": 1, + "LicenseData": 1, + "RequestExecutionLevel": 1, + "admin": 1, + "Page": 4, + "license": 1, + "components": 1, + "directory": 3, + "instfiles": 2, + "UninstPage": 2, + "uninstConfirm": 1, + "ifndef": 2, + "NOINSTTYPES": 1, + "only": 1, + "if": 4, + "not": 2, + "defined": 1, + "InstType": 6, + "/NOCUSTOM": 1, + "/COMPONENTSONLYONCUSTOM": 1, + "AutoCloseWindow": 1, + "false": 1, + "ShowInstDetails": 1, + "show": 1, + "Section": 5, + "empty": 1, + "string": 1, + "makes": 1, + "it": 3, + "hidden": 1, + "so": 1, + "would": 1, + "starting": 1, + "with": 1, + "write": 2, + "reg": 1, + "info": 1, + "StrCpy": 2, + "DetailPrint": 1, + "WriteRegStr": 4, + "SOFTWARE": 7, + "NSISTest": 7, + "BigNSISTest": 8, + "uninstall": 2, + "strings": 1, + "SetOutPath": 3, + "INSTDIR": 15, + "File": 3, + "/a": 1, + "CreateDirectory": 1, + "recursively": 1, + "create": 1, + "a": 2, + "for": 2, + "fun.": 1, + "WriteUninstaller": 1, + "Nop": 1, + "fun": 1, + "SectionEnd": 5, + "SectionIn": 4, + "Start": 2, + "MessageBox": 11, + "MB_OK": 8, + "MB_YESNO": 3, + "IDYES": 2, + "MyLabel": 2, + "SectionGroup": 2, + "/e": 1, + "SectionGroup1": 1, + "WriteRegDword": 3, + "xdeadbeef": 1, + "WriteRegBin": 1, + "WriteINIStr": 5, + "Call": 6, + "MyFunctionTest": 1, + "DeleteINIStr": 1, + "DeleteINISec": 1, + "ReadINIStr": 1, + "StrCmp": 1, + "INIDelSuccess": 2, + "ClearErrors": 1, + "ReadRegStr": 1, + "HKCR": 1, + "xyz_cc_does_not_exist": 1, + "IfErrors": 1, + "NoError": 2, + "Goto": 1, + "ErrorYay": 2, + "CSCTest": 1, + "Group2": 1, + "BeginTestSection": 1, + "IfFileExists": 1, + "BranchTest69": 1, + "|": 3, + "MB_ICONQUESTION": 1, + "IDNO": 1, + "NoOverwrite": 1, + "skipped": 2, + "file": 4, + "doesn": 2, + "s": 1, + "icon": 1, + "start": 1, + "minimized": 1, + "and": 1, + "give": 1, + "hotkey": 1, + "(": 5, + "Ctrl": 1, + "+": 2, + "Shift": 1, + "Q": 2, + ")": 5, + "CreateShortCut": 2, + "SW_SHOWMINIMIZED": 1, + "CONTROL": 1, + "SHIFT": 1, + "MyTestVar": 1, + "myfunc": 1, + "test.ini": 2, + "MySectionIni": 1, + "Value1": 1, + "failed": 1, + "TextInSection": 1, + "will": 1, + "example2.": 1, + "Hit": 1, + "next": 1, + "continue.": 1, + "{": 8, + "NSISDIR": 1, + "}": 8, + "Contrib": 1, + "Graphics": 1, + "Icons": 1, + "nsis1": 1, + "uninstall.ico": 1, + "Uninstall": 2, + "Software": 1, + "Microsoft": 1, + "Windows": 3, + "CurrentVersion": 1, + "silent.nsi": 1, + "LogicLib.nsi": 1, + "bt": 1, + "uninst.exe": 1, + "SMPROGRAMS": 2, + "Big": 1, + "Test": 2, + "*.*": 2, + "BiG": 1, + "Would": 1, + "you": 1, + "like": 1, + "remove": 1, + "cpdest": 3, + "MyProjectFamily": 2, + "MyProject": 1, + "Note": 1, + "could": 1, + "be": 1, + "removed": 1, + "IDOK": 1, + "t": 1, + "exist": 1, + "NoErrorMsg": 1, + "x64.nsh": 1, + "A": 1, + "few": 1, + "simple": 1, + "macros": 1, + "handle": 1, + "installations": 1, + "x64": 1, + "machines.": 1, + "RunningX64": 4, + "checks": 1, + "installer": 1, + "is": 2, + "running": 1, + "x64.": 1, + "If": 1, + "EndIf": 1, + "DisableX64FSRedirection": 4, + "disables": 1, + "system": 2, + "redirection.": 2, + "EnableX64FSRedirection": 4, + "enables": 1, + "SYSDIR": 1, + "some.dll": 2, + "#": 3, + "extracts": 2, + "C": 2, + "System32": 1, + "SysWOW64": 1, + "___X64__NSH___": 3, + "define": 4, + "include": 1, + "LogicLib.nsh": 1, + "macro": 3, + "_RunningX64": 1, + "_a": 1, + "_b": 1, + "_t": 2, + "_f": 2, + "insertmacro": 2, + "_LOGICLIB_TEMP": 3, + "System": 4, + "kernel32": 4, + "GetCurrentProcess": 1, + "i.s": 1, + "IsWow64Process": 1, + "*i.s": 1, + "Pop": 1, + "_": 1, + "macroend": 3, + "Wow64EnableWow64FsRedirection": 2, + "i0": 1, + "i1": 1 + }, + "Nu": { + "SHEBANG#!nush": 1, + "(": 14, + "puts": 1, + ")": 14, + ";": 22, + "main.nu": 1, + "Entry": 1, + "point": 1, + "for": 1, + "a": 1, + "Nu": 1, + "program.": 1, + "Copyright": 1, + "c": 1, + "Tim": 1, + "Burks": 1, + "Neon": 1, + "Design": 1, + "Technology": 1, + "Inc.": 1, + "load": 4, + "basics": 1, + "cocoa": 1, + "definitions": 1, + "menu": 1, + "generation": 1, + "Aaron": 1, + "Hillegass": 1, + "t": 1, + "retain": 1, + "it.": 1, + "NSApplication": 2, + "sharedApplication": 2, + "setDelegate": 1, + "set": 1, + "delegate": 1, + "ApplicationDelegate": 1, + "alloc": 1, + "init": 1, + "this": 1, + "makes": 1, + "the": 3, + "application": 1, + "window": 1, + "take": 1, + "focus": 1, + "when": 1, + "we": 1, + "ve": 1, + "started": 1, + "it": 1, + "from": 1, + "terminal": 1, + "activateIgnoringOtherApps": 1, + "YES": 1, + "run": 1, + "main": 1, + "Cocoa": 1, + "event": 1, + "loop": 1, + "NSApplicationMain": 1, + "nil": 1 + }, + "Objective-C": { + "//": 317, + "#import": 53, + "": 4, + "#if": 41, + "TARGET_OS_IPHONE": 11, + "": 1, + "__IPHONE_OS_VERSION_MAX_ALLOWED": 4, + "__IPHONE_4_0": 6, + "": 1, + "Necessary": 1, + "for": 99, + "background": 1, + "task": 1, + "support": 4, + "#endif": 59, + "": 2, + "@class": 4, + "ASIDataDecompressor": 4, + ";": 2003, + "extern": 6, + "NSString": 127, + "*ASIHTTPRequestVersion": 2, + "#ifndef": 9, + "__IPHONE_3_2": 2, + "#define": 65, + "__MAC_10_5": 2, + "__MAC_10_6": 2, + "typedef": 47, + "enum": 17, + "_ASIAuthenticationState": 1, + "{": 541, + "ASINoAuthenticationNeededYet": 3, + "ASIHTTPAuthenticationNeeded": 1, + "ASIProxyAuthenticationNeeded": 1, + "}": 532, + "ASIAuthenticationState": 5, + "_ASINetworkErrorType": 1, + "ASIConnectionFailureErrorType": 2, + "ASIRequestTimedOutErrorType": 2, + "ASIAuthenticationErrorType": 3, + "ASIRequestCancelledErrorType": 2, + "ASIUnableToCreateRequestErrorType": 2, + "ASIInternalErrorWhileBuildingRequestType": 3, + "ASIInternalErrorWhileApplyingCredentialsType": 1, + "ASIFileManagementError": 2, + "ASITooMuchRedirectionErrorType": 3, + "ASIUnhandledExceptionError": 3, + "ASICompressionError": 1, + "ASINetworkErrorType": 1, + "NSString*": 13, + "const": 28, + "NetworkRequestErrorDomain": 12, + "unsigned": 62, + "long": 71, + "ASIWWANBandwidthThrottleAmount": 2, + "NS_BLOCKS_AVAILABLE": 8, + "void": 253, + "(": 2109, + "ASIBasicBlock": 15, + ")": 2106, + "ASIHeadersBlock": 3, + "NSDictionary": 37, + "*responseHeaders": 2, + "ASISizeBlock": 5, + "size": 12, + "ASIProgressBlock": 5, + "total": 4, + "ASIDataBlock": 3, + "NSData": 28, + "*data": 2, + "@interface": 23, + "ASIHTTPRequest": 31, + "NSOperation": 1, + "": 1, + "The": 15, + "url": 24, + "this": 50, + "operation": 2, + "should": 8, + "include": 1, + "GET": 1, + "params": 1, + "in": 42, + "the": 197, + "query": 1, + "string": 9, + "where": 1, + "appropriate": 4, + "NSURL": 21, + "*url": 2, + "Will": 7, + "always": 2, + "contain": 4, + "original": 2, + "used": 16, + "making": 1, + "request": 113, + "value": 21, + "of": 34, + "can": 20, + "change": 2, + "when": 46, + "a": 78, + "is": 77, + "redirected": 2, + "*originalURL": 2, + "Temporarily": 1, + "stores": 1, + "we": 73, + "are": 15, + "about": 4, + "to": 115, + "redirect": 4, + "to.": 2, + "be": 49, + "nil": 131, + "again": 1, + "do": 5, + "*redirectURL": 2, + "delegate": 29, + "-": 595, + "will": 57, + "notified": 2, + "various": 1, + "changes": 4, + "state": 35, + "via": 5, + "ASIHTTPRequestDelegate": 1, + "protocol": 10, + "id": 170, + "": 1, + "Another": 1, + "that": 23, + "also": 1, + "status": 4, + "and": 44, + "progress": 13, + "updates": 2, + "Generally": 1, + "you": 10, + "won": 3, + "s": 35, + "more": 5, + "likely": 1, + "sessionCookies": 2, + "NSMutableArray": 31, + "*requestCookies": 2, + "populated": 1, + "with": 19, + "cookies": 5, + "NSArray": 27, + "*responseCookies": 3, + "If": 30, + "use": 26, + "useCookiePersistence": 3, + "true": 9, + "network": 4, + "requests": 21, + "present": 3, + "valid": 5, + "from": 18, + "previous": 2, + "BOOL": 137, + "useKeychainPersistence": 4, + "attempt": 3, + "read": 3, + "credentials": 35, + "keychain": 7, + "save": 3, + "them": 10, + "they": 6, + "successfully": 4, + "presented": 2, + "useSessionPersistence": 6, + "reuse": 3, + "duration": 1, + "session": 5, + "until": 2, + "clearSession": 2, + "called": 3, + "allowCompressedResponse": 3, + "inform": 1, + "server": 8, + "accept": 2, + "compressed": 2, + "data": 27, + "automatically": 2, + "decompress": 1, + "gzipped": 7, + "responses.": 1, + "Default": 10, + "true.": 1, + "shouldCompressRequestBody": 6, + "body": 8, + "gzipped.": 1, + "false.": 1, + "You": 1, + "probably": 4, + "need": 10, + "enable": 1, + "feature": 1, + "on": 26, + "your": 2, + "webserver": 1, + "make": 3, + "work.": 1, + "Tested": 1, + "apache": 1, + "only.": 1, + "When": 15, + "downloadDestinationPath": 11, + "set": 24, + "result": 4, + "downloaded": 6, + "file": 14, + "at": 10, + "location": 3, + "not": 29, + "download": 9, + "stored": 9, + "memory": 3, + "*downloadDestinationPath": 2, + "files": 5, + "Once": 2, + "complete": 12, + "decompressed": 3, + "if": 297, + "necessary": 2, + "moved": 2, + "*temporaryFileDownloadPath": 2, + "response": 17, + "shouldWaitToInflateCompressedResponses": 4, + "NO": 30, + "created": 3, + "path": 11, + "containing": 1, + "inflated": 6, + "as": 17, + "it": 28, + "comes": 3, + "*temporaryUncompressedDataDownloadPath": 2, + "Used": 13, + "writing": 2, + "NSOutputStream": 6, + "*fileDownloadOutputStream": 2, + "*inflatedFileDownloadOutputStream": 2, + "fails": 2, + "or": 18, + "completes": 6, + "finished": 3, + "cancelled": 5, + "an": 20, + "error": 75, + "occurs": 1, + "NSError": 51, + "code": 16, + "Connection": 1, + "failure": 1, + "occurred": 1, + "inspect": 1, + "[": 1227, + "userInfo": 15, + "]": 1227, + "objectForKey": 29, + "NSUnderlyingErrorKey": 3, + "information": 5, + "*error": 3, + "Username": 2, + "password": 11, + "authentication": 18, + "*username": 2, + "*password": 2, + "User": 1, + "Agent": 1, + "*userAgentString": 2, + "Domain": 2, + "NTLM": 6, + "*domain": 2, + "proxy": 11, + "*proxyUsername": 2, + "*proxyPassword": 2, + "*proxyDomain": 2, + "Delegate": 2, + "displaying": 2, + "upload": 4, + "usually": 2, + "NSProgressIndicator": 4, + "but": 5, + "supply": 2, + "different": 4, + "object": 36, + "handle": 4, + "yourself": 4, + "": 2, + "uploadProgressDelegate": 8, + "downloadProgressDelegate": 10, + "Whether": 1, + "t": 15, + "want": 5, + "hassle": 1, + "adding": 1, + "authenticating": 2, + "proxies": 3, + "their": 3, + "apps": 1, + "shouldPresentProxyAuthenticationDialog": 2, + "CFHTTPAuthenticationRef": 2, + "proxyAuthentication": 7, + "*proxyCredentials": 2, + "during": 4, + "int": 55, + "proxyAuthenticationRetryCount": 4, + "Authentication": 3, + "scheme": 5, + "Basic": 2, + "Digest": 2, + "*proxyAuthenticationScheme": 2, + "Realm": 1, + "required": 2, + "*proxyAuthenticationRealm": 3, + "HTTP": 9, + "eg": 2, + "OK": 1, + "Not": 2, + "found": 4, + "etc": 1, + "responseStatusCode": 3, + "Description": 1, + "*responseStatusMessage": 3, + "Size": 3, + "contentLength": 6, + "partially": 1, + "content": 5, + "partialDownloadSize": 8, + "POST": 2, + "payload": 1, + "postLength": 6, + "amount": 12, + "totalBytesRead": 4, + "uploaded": 2, + "totalBytesSent": 5, + "Last": 2, + "incrementing": 2, + "lastBytesRead": 3, + "sent": 6, + "lastBytesSent": 3, + "This": 7, + "lock": 19, + "prevents": 1, + "being": 4, + "inopportune": 1, + "moment": 1, + "NSRecursiveLock": 13, + "*cancelledLock": 2, + "Called": 6, + "implemented": 7, + "starts.": 1, + "requestStarted": 3, + "SEL": 19, + "didStartSelector": 2, + "receives": 3, + "headers.": 1, + "didReceiveResponseHeaders": 2, + "didReceiveResponseHeadersSelector": 2, + "Location": 1, + "header": 20, + "shouldRedirect": 3, + "YES": 62, + "then": 1, + "needed": 3, + "restart": 1, + "by": 12, + "calling": 1, + "redirectToURL": 2, + "simply": 1, + "cancel": 5, + "willRedirectSelector": 2, + "successfully.": 1, + "requestFinished": 4, + "didFinishSelector": 2, + "fails.": 1, + "requestFailed": 2, + "didFailSelector": 2, + "data.": 1, + "didReceiveData": 2, + "implement": 1, + "method": 5, + "must": 6, + "populate": 1, + "responseData": 5, + "write": 4, + "didReceiveDataSelector": 2, + "recording": 1, + "something": 1, + "last": 1, + "happened": 1, + "compare": 4, + "current": 2, + "date": 3, + "time": 9, + "out": 7, + "NSDate": 9, + "*lastActivityTime": 2, + "Number": 1, + "seconds": 2, + "wait": 1, + "before": 6, + "timing": 1, + "default": 8, + "NSTimeInterval": 10, + "timeOutSeconds": 3, + "HEAD": 10, + "length": 32, + "starts": 2, + "shouldResetUploadProgress": 3, + "shouldResetDownloadProgress": 3, + "showAccurateProgress": 7, + "preset": 2, + "*mainRequest": 2, + "only": 12, + "update": 6, + "indicator": 4, + "according": 2, + "how": 2, + "much": 2, + "has": 6, + "received": 5, + "so": 15, + "far": 2, + "Also": 1, + "see": 1, + "comments": 1, + "ASINetworkQueue.h": 1, + "ensure": 1, + "incremented": 4, + "once": 3, + "updatedProgress": 3, + "Prevents": 1, + "post": 2, + "built": 2, + "than": 9, + "largely": 1, + "subclasses": 2, + "haveBuiltPostBody": 3, + "internally": 3, + "may": 8, + "reflect": 1, + "internal": 2, + "buffer": 7, + "CFNetwork": 3, + "/": 18, + "PUT": 1, + "operations": 1, + "sizes": 1, + "greater": 1, + "uploadBufferSize": 6, + "timeout": 6, + "unless": 2, + "bytes": 8, + "have": 15, + "been": 1, + "Likely": 1, + "KB": 4, + "iPhone": 3, + "Mac": 2, + "OS": 1, + "X": 1, + "Leopard": 1, + "x": 10, + "Text": 1, + "encoding": 7, + "responses": 5, + "send": 2, + "Content": 1, + "Type": 1, + "charset": 5, + "value.": 1, + "Defaults": 2, + "NSISOLatin1StringEncoding": 2, + "NSStringEncoding": 6, + "defaultResponseEncoding": 4, + "text": 12, + "didn": 3, + "set.": 1, + "responseEncoding": 3, + "Tells": 1, + "delete": 1, + "partial": 2, + "downloads": 1, + "allows": 1, + "existing": 1, + "resume": 2, + "download.": 1, + "NO.": 1, + "allowResumeForFileDownloads": 2, + "Custom": 1, + "user": 6, + "associated": 1, + "*userInfo": 2, + "NSInteger": 56, + "tag": 2, + "Use": 6, + "rather": 4, + "defaults": 2, + "false": 3, + "useHTTPVersionOne": 3, + "get": 4, + "tell": 2, + "main": 8, + "loop": 1, + "stop": 4, + "retry": 3, + "new": 10, + "needsRedirect": 3, + "Incremented": 1, + "every": 3, + "redirects.": 1, + "reaches": 1, + "give": 2, + "up": 4, + "redirectCount": 2, + "check": 1, + "secure": 1, + "certificate": 2, + "self": 500, + "signed": 1, + "certificates": 2, + "development": 1, + "DO": 1, + "NOT": 1, + "USE": 1, + "IN": 1, + "PRODUCTION": 1, + "validatesSecureCertificate": 3, + "SecIdentityRef": 3, + "clientCertificateIdentity": 5, + "*clientCertificates": 2, + "Details": 1, + "could": 1, + "these": 3, + "best": 1, + "local": 1, + "*PACurl": 2, + "See": 5, + "values": 3, + "above.": 1, + "No": 1, + "yet": 1, + "authenticationNeeded": 3, + "ASIHTTPRequests": 1, + "store": 4, + "same": 6, + "asked": 3, + "avoids": 1, + "extra": 1, + "round": 1, + "trip": 1, + "after": 5, + "succeeded": 1, + "which": 1, + "efficient": 1, + "authenticated": 1, + "large": 1, + "bodies": 1, + "slower": 1, + "connections": 3, + "Set": 4, + "explicitly": 2, + "affects": 1, + "cache": 17, + "YES.": 1, + "Credentials": 1, + "never": 1, + "asks": 1, + "For": 2, + "using": 8, + "authenticationScheme": 4, + "*": 311, + "kCFHTTPAuthenticationSchemeBasic": 2, + "very": 2, + "first": 9, + "shouldPresentCredentialsBeforeChallenge": 4, + "hasn": 1, + "doing": 1, + "anything": 1, + "expires": 1, + "persistentConnectionTimeoutSeconds": 4, + "yes": 1, + "keep": 2, + "alive": 1, + "connectionCanBeReused": 4, + "Stores": 1, + "persistent": 5, + "connection": 17, + "currently": 4, + "use.": 1, + "It": 2, + "particular": 2, + "specify": 2, + "expire": 2, + "A": 4, + "host": 9, + "port": 17, + "connection.": 2, + "These": 1, + "determine": 1, + "whether": 1, + "reused": 2, + "subsequent": 2, + "all": 3, + "match": 1, + "An": 2, + "determining": 1, + "available": 1, + "number": 2, + "reference": 1, + "don": 2, + "ve": 7, + "opened": 3, + "one.": 1, + "stream": 13, + "closed": 1, + "+": 195, + "released": 2, + "either": 1, + "another": 1, + "timer": 5, + "fires": 1, + "NSMutableDictionary": 18, + "*connectionInfo": 2, + "automatic": 1, + "redirects": 2, + "standard": 1, + "follow": 1, + "behaviour": 2, + "most": 1, + "browsers": 1, + "shouldUseRFC2616RedirectBehaviour": 2, + "record": 1, + "downloading": 5, + "downloadComplete": 2, + "ID": 1, + "uniquely": 1, + "identifies": 1, + "primarily": 1, + "debugging": 1, + "NSNumber": 11, + "*requestID": 3, + "ASIHTTPRequestRunLoopMode": 2, + "synchronous": 1, + "NSDefaultRunLoopMode": 2, + "other": 3, + "*runLoopMode": 2, + "checks": 1, + "NSTimer": 5, + "*statusTimer": 2, + "setDefaultCache": 2, + "configure": 2, + "": 9, + "downloadCache": 5, + "policy": 7, + "ASICacheDelegate.h": 2, + "possible": 3, + "ASICachePolicy": 4, + "cachePolicy": 3, + "storage": 2, + "ASICacheStoragePolicy": 2, + "cacheStoragePolicy": 2, + "was": 4, + "pulled": 1, + "didUseCachedResponse": 3, + "secondsToCache": 3, + "custom": 2, + "interval": 1, + "expiring": 1, + "&&": 123, + "shouldContinueWhenAppEntersBackground": 3, + "UIBackgroundTaskIdentifier": 1, + "backgroundTask": 7, + "helper": 1, + "inflate": 2, + "*dataDecompressor": 2, + "Controls": 1, + "without": 1, + "responseString": 3, + "All": 2, + "no": 7, + "raw": 3, + "discarded": 1, + "rawResponseData": 4, + "temporaryFileDownloadPath": 2, + "normal": 1, + "temporaryUncompressedDataDownloadPath": 3, + "contents": 1, + "into": 1, + "Setting": 1, + "especially": 1, + "useful": 1, + "users": 1, + "conjunction": 1, + "streaming": 1, + "parser": 3, + "allow": 1, + "passed": 2, + "while": 11, + "still": 2, + "running": 4, + "behind": 1, + "scenes": 1, + "PAC": 7, + "own": 3, + "isPACFileRequest": 3, + "http": 4, + "https": 1, + "webservers": 1, + "*PACFileRequest": 2, + "asynchronously": 1, + "reading": 1, + "URLs": 2, + "NSInputStream": 7, + "*PACFileReadStream": 2, + "storing": 1, + "NSMutableData": 5, + "*PACFileData": 2, + "startSynchronous.": 1, + "Currently": 1, + "detection": 2, + "synchronously": 1, + "isSynchronous": 2, + "//block": 12, + "execute": 4, + "startedBlock": 5, + "headers": 11, + "headersReceivedBlock": 5, + "completionBlock": 5, + "failureBlock": 5, + "bytesReceivedBlock": 8, + "bytesSentBlock": 5, + "downloadSizeIncrementedBlock": 5, + "uploadSizeIncrementedBlock": 5, + "handling": 4, + "dataReceivedBlock": 5, + "authenticationNeededBlock": 5, + "proxyAuthenticationNeededBlock": 5, + "redirections": 1, + "requestRedirectedBlock": 5, + "#pragma": 44, + "mark": 42, + "init": 34, + "dealloc": 13, + "initWithURL": 4, + "newURL": 16, + "requestWithURL": 7, + "usingCache": 5, + "andCachePolicy": 3, + "setStartedBlock": 1, + "aStartedBlock": 1, + "setHeadersReceivedBlock": 1, + "aReceivedBlock": 2, + "setCompletionBlock": 1, + "aCompletionBlock": 1, + "setFailedBlock": 1, + "aFailedBlock": 1, + "setBytesReceivedBlock": 1, + "aBytesReceivedBlock": 1, + "setBytesSentBlock": 1, + "aBytesSentBlock": 1, + "setDownloadSizeIncrementedBlock": 1, + "aDownloadSizeIncrementedBlock": 1, + "setUploadSizeIncrementedBlock": 1, + "anUploadSizeIncrementedBlock": 1, + "setDataReceivedBlock": 1, + "setAuthenticationNeededBlock": 1, + "anAuthenticationBlock": 1, + "setProxyAuthenticationNeededBlock": 1, + "aProxyAuthenticationBlock": 1, + "setRequestRedirectedBlock": 1, + "aRedirectBlock": 1, + "setup": 2, + "addRequestHeader": 5, + "applyCookieHeader": 2, + "buildRequestHeaders": 3, + "applyAuthorizationHeader": 2, + "buildPostBody": 3, + "appendPostData": 3, + "appendPostDataFromFile": 3, + "isResponseCompressed": 3, + "startSynchronous": 2, + "startAsynchronous": 2, + "clearDelegatesAndCancel": 2, + "HEADRequest": 1, + "upload/download": 1, + "updateProgressIndicators": 1, + "updateUploadProgress": 3, + "updateDownloadProgress": 3, + "removeUploadProgressSoFar": 1, + "incrementDownloadSizeBy": 1, + "incrementUploadSizeBy": 3, + "updateProgressIndicator": 4, + "withProgress": 4, + "ofTotal": 4, + "performSelector": 7, + "selector": 12, + "onTarget": 7, + "target": 5, + "withObject": 10, + "callerToRetain": 7, + "caller": 1, + "talking": 1, + "delegates": 2, + "requestReceivedResponseHeaders": 1, + "newHeaders": 1, + "failWithError": 11, + "theError": 6, + "retryUsingNewConnection": 1, + "parsing": 2, + "readResponseHeaders": 2, + "parseStringEncodingFromHeaders": 2, + "parseMimeType": 2, + "**": 27, + "mimeType": 2, + "andResponseEncoding": 2, + "stringEncoding": 1, + "fromContentType": 2, + "contentType": 1, + "stuff": 1, + "applyCredentials": 1, + "newCredentials": 16, + "applyProxyCredentials": 2, + "findCredentials": 1, + "findProxyCredentials": 2, + "retryUsingSuppliedCredentials": 1, + "cancelAuthentication": 1, + "attemptToApplyCredentialsAndResume": 1, + "attemptToApplyProxyCredentialsAndResume": 1, + "showProxyAuthenticationDialog": 1, + "showAuthenticationDialog": 1, + "addBasicAuthenticationHeaderWithUsername": 2, + "theUsername": 1, + "andPassword": 2, + "thePassword": 1, + "handlers": 1, + "handleNetworkEvent": 2, + "CFStreamEventType": 2, + "type": 5, + "handleBytesAvailable": 1, + "handleStreamComplete": 1, + "handleStreamError": 1, + "cleanup": 1, + "markAsFinished": 4, + "removeTemporaryDownloadFile": 1, + "removeTemporaryUncompressedDownloadFile": 1, + "removeTemporaryUploadFile": 1, + "removeTemporaryCompressedUploadFile": 1, + "removeFileAtPath": 1, + "err": 8, + "connectionID": 1, + "expirePersistentConnections": 1, + "defaultTimeOutSeconds": 3, + "setDefaultTimeOutSeconds": 1, + "newTimeOutSeconds": 1, + "client": 1, + "setClientCertificateIdentity": 1, + "anIdentity": 1, + "sessionProxyCredentialsStore": 1, + "sessionCredentialsStore": 1, + "storeProxyAuthenticationCredentialsInSessionStore": 1, + "storeAuthenticationCredentialsInSessionStore": 2, + "removeProxyAuthenticationCredentialsFromSessionStore": 1, + "removeAuthenticationCredentialsFromSessionStore": 3, + "findSessionProxyAuthenticationCredentials": 1, + "findSessionAuthenticationCredentials": 2, + "saveCredentialsToKeychain": 3, + "saveCredentials": 4, + "NSURLCredential": 8, + "forHost": 2, + "realm": 14, + "forProxy": 2, + "savedCredentialsForHost": 1, + "savedCredentialsForProxy": 1, + "removeCredentialsForHost": 1, + "removeCredentialsForProxy": 1, + "setSessionCookies": 1, + "newSessionCookies": 1, + "addSessionCookie": 1, + "NSHTTPCookie": 1, + "newCookie": 1, + "agent": 2, + "defaultUserAgentString": 1, + "setDefaultUserAgentString": 1, + "mime": 1, + "mimeTypeForFileAtPath": 1, + "bandwidth": 3, + "measurement": 1, + "throttling": 1, + "maxBandwidthPerSecond": 2, + "setMaxBandwidthPerSecond": 1, + "averageBandwidthUsedPerSecond": 2, + "performThrottling": 2, + "isBandwidthThrottled": 2, + "incrementBandwidthUsedInLastSecond": 1, + "setShouldThrottleBandwidthForWWAN": 1, + "throttle": 1, + "throttleBandwidthForWWANUsingLimit": 1, + "limit": 1, + "reachability": 1, + "isNetworkReachableViaWWAN": 1, + "queue": 12, + "NSOperationQueue": 4, + "sharedQueue": 4, + "defaultCache": 3, + "maxUploadReadLength": 1, + "activity": 1, + "isNetworkInUse": 1, + "setShouldUpdateNetworkActivityIndicator": 1, + "shouldUpdate": 1, + "showNetworkActivityIndicator": 1, + "hideNetworkActivityIndicator": 1, + "miscellany": 1, + "base64forData": 1, + "theData": 1, + "expiryDateForRequest": 1, + "maxAge": 2, + "dateFromRFC1123String": 1, + "isMultitaskingSupported": 2, + "threading": 1, + "NSThread": 4, + "threadForRequest": 3, + "@property": 150, + "retain": 73, + "*proxyHost": 1, + "assign": 84, + "proxyPort": 2, + "*proxyType": 1, + "setter": 2, + "setURL": 3, + "nonatomic": 40, + "readonly": 19, + "*authenticationRealm": 2, + "*requestHeaders": 1, + "*requestCredentials": 1, + "*rawResponseData": 1, + "*requestMethod": 1, + "*postBody": 1, + "*postBodyFilePath": 1, + "shouldStreamPostDataFromDisk": 4, + "didCreateTemporaryPostDataFile": 1, + "*authenticationScheme": 1, + "shouldPresentAuthenticationDialog": 1, + "authenticationRetryCount": 2, + "haveBuiltRequestHeaders": 1, + "inProgress": 4, + "numberOfTimesToRetryOnTimeout": 2, + "retryCount": 3, + "shouldAttemptPersistentConnection": 2, + "@end": 37, + "": 1, + "#else": 8, + "": 1, + "@": 258, + "static": 102, + "*defaultUserAgent": 1, + "*ASIHTTPRequestRunLoopMode": 1, + "CFOptionFlags": 1, + "kNetworkEvents": 1, + "kCFStreamEventHasBytesAvailable": 1, + "|": 13, + "kCFStreamEventEndEncountered": 1, + "kCFStreamEventErrorOccurred": 1, + "*sessionCredentialsStore": 1, + "*sessionProxyCredentialsStore": 1, + "*sessionCredentialsLock": 1, + "*sessionCookies": 1, + "RedirectionLimit": 1, + "ReadStreamClientCallBack": 1, + "CFReadStreamRef": 5, + "readStream": 5, + "*clientCallBackInfo": 1, + "ASIHTTPRequest*": 1, + "clientCallBackInfo": 1, + "*progressLock": 1, + "*ASIRequestCancelledError": 1, + "*ASIRequestTimedOutError": 1, + "*ASIAuthenticationError": 1, + "*ASIUnableToCreateRequestError": 1, + "*ASITooMuchRedirectionError": 1, + "*bandwidthUsageTracker": 1, + "nextConnectionNumberToCreate": 1, + "*persistentConnectionsPool": 1, + "*connectionsLock": 1, + "nextRequestID": 1, + "bandwidthUsedInLastSecond": 1, + "*bandwidthMeasurementDate": 1, + "NSLock": 2, + "*bandwidthThrottlingLock": 1, + "shouldThrottleBandwidthForWWANOnly": 1, + "*sessionCookiesLock": 1, + "*delegateAuthenticationLock": 1, + "*throttleWakeUpTime": 1, + "runningRequestCount": 1, + "shouldUpdateNetworkActivityIndicator": 1, + "*networkThread": 1, + "*sharedQueue": 1, + "cancelLoad": 3, + "destroyReadStream": 3, + "scheduleReadStream": 1, + "unscheduleReadStream": 1, + "willAskDelegateForCredentials": 1, + "willAskDelegateForProxyCredentials": 1, + "askDelegateForProxyCredentials": 1, + "askDelegateForCredentials": 1, + "failAuthentication": 1, + "measureBandwidthUsage": 1, + "recordBandwidthUsage": 1, + "startRequest": 3, + "updateStatus": 2, + "checkRequestStatus": 2, + "reportFailure": 3, + "reportFinished": 1, + "performRedirect": 1, + "shouldTimeOut": 2, + "willRedirect": 1, + "willAskDelegateToConfirmRedirect": 1, + "performInvocation": 2, + "NSInvocation": 4, + "invocation": 4, + "releasingObject": 2, + "objectToRelease": 1, + "hideNetworkActivityIndicatorAfterDelay": 1, + "hideNetworkActivityIndicatorIfNeeeded": 1, + "runRequests": 1, + "configureProxies": 2, + "fetchPACFile": 1, + "finishedDownloadingPACFile": 1, + "theRequest": 1, + "runPACScript": 1, + "script": 1, + "timeOutPACRead": 1, + "useDataFromCache": 2, + "updatePartialDownloadSize": 1, + "registerForNetworkReachabilityNotifications": 1, + "unsubscribeFromNetworkReachabilityNotifications": 1, + "reachabilityChanged": 1, + "NSNotification": 2, + "note": 1, + "performBlockOnMainThread": 2, + "block": 18, + "releaseBlocksOnMainThread": 4, + "releaseBlocks": 3, + "blocks": 16, + "callBlock": 1, + "*postBodyWriteStream": 1, + "*postBodyReadStream": 1, + "*compressedPostBody": 1, + "*compressedPostBodyFilePath": 1, + "willRetryRequest": 1, + "*readStream": 1, + "readStreamIsScheduled": 1, + "setSynchronous": 2, + "@implementation": 13, + "initialize": 1, + "class": 30, + "persistentConnectionsPool": 3, + "alloc": 47, + "connectionsLock": 3, + "progressLock": 1, + "bandwidthThrottlingLock": 1, + "sessionCookiesLock": 1, + "sessionCredentialsLock": 1, + "delegateAuthenticationLock": 1, + "bandwidthUsageTracker": 1, + "initWithCapacity": 2, + "ASIRequestTimedOutError": 1, + "initWithDomain": 5, + "dictionaryWithObjectsAndKeys": 10, + "NSLocalizedDescriptionKey": 10, + "ASIAuthenticationError": 1, + "ASIRequestCancelledError": 2, + "ASIUnableToCreateRequestError": 3, + "ASITooMuchRedirectionError": 1, + "setMaxConcurrentOperationCount": 1, + "setRequestMethod": 3, + "setRunLoopMode": 2, + "setShouldAttemptPersistentConnection": 2, + "setPersistentConnectionTimeoutSeconds": 2, + "setShouldPresentCredentialsBeforeChallenge": 1, + "setShouldRedirect": 1, + "setShowAccurateProgress": 1, + "setShouldResetDownloadProgress": 1, + "setShouldResetUploadProgress": 1, + "setAllowCompressedResponse": 1, + "setShouldWaitToInflateCompressedResponses": 1, + "setDefaultResponseEncoding": 1, + "setShouldPresentProxyAuthenticationDialog": 1, + "setTimeOutSeconds": 1, + "setUseSessionPersistence": 1, + "setUseCookiePersistence": 1, + "setValidatesSecureCertificate": 1, + "setRequestCookies": 2, + "autorelease": 21, + "setDidStartSelector": 1, + "@selector": 28, + "setDidReceiveResponseHeadersSelector": 1, + "setWillRedirectSelector": 1, + "willRedirectToURL": 1, + "setDidFinishSelector": 1, + "setDidFailSelector": 1, + "setDidReceiveDataSelector": 1, + "setCancelledLock": 1, + "setDownloadCache": 3, + "return": 165, + "ASIUseDefaultCachePolicy": 1, + "*request": 1, + "setCachePolicy": 1, + "setAuthenticationNeeded": 2, + "requestAuthentication": 7, + "CFRelease": 19, + "redirectURL": 1, + "release": 66, + "statusTimer": 3, + "invalidate": 2, + "postBody": 11, + "compressedPostBody": 4, + "requestHeaders": 6, + "requestCookies": 1, + "fileDownloadOutputStream": 1, + "inflatedFileDownloadOutputStream": 1, + "username": 8, + "domain": 2, + "authenticationRealm": 4, + "requestCredentials": 1, + "proxyHost": 2, + "proxyType": 1, + "proxyUsername": 3, + "proxyPassword": 3, + "proxyDomain": 1, + "proxyAuthenticationRealm": 2, + "proxyAuthenticationScheme": 2, + "proxyCredentials": 1, + "originalURL": 1, + "lastActivityTime": 1, + "responseCookies": 1, + "responseHeaders": 5, + "requestMethod": 13, + "cancelledLock": 37, + "postBodyFilePath": 7, + "compressedPostBodyFilePath": 4, + "postBodyWriteStream": 7, + "postBodyReadStream": 2, + "PACurl": 1, + "clientCertificates": 2, + "responseStatusMessage": 1, + "connectionInfo": 13, + "requestID": 2, + "dataDecompressor": 1, + "userAgentString": 1, + "super": 25, + "*blocks": 1, + "array": 84, + "addObject": 16, + "performSelectorOnMainThread": 2, + "waitUntilDone": 4, + "isMainThread": 2, + "Blocks": 1, + "exits": 1, + "setRequestHeaders": 2, + "dictionaryWithCapacity": 2, + "setObject": 9, + "forKey": 9, + "Are": 1, + "submitting": 1, + "disk": 1, + "were": 5, + "close": 5, + "setPostBodyWriteStream": 2, + "*path": 1, + "setCompressedPostBodyFilePath": 1, + "NSTemporaryDirectory": 2, + "stringByAppendingPathComponent": 2, + "NSProcessInfo": 2, + "processInfo": 2, + "globallyUniqueString": 2, + "*err": 3, + "ASIDataCompressor": 2, + "compressDataFromFile": 1, + "toFile": 1, + "&": 36, + "else": 35, + "setPostLength": 3, + "NSFileManager": 1, + "attributesOfItemAtPath": 1, + "fileSize": 1, + "errorWithDomain": 6, + "stringWithFormat": 6, + "Otherwise": 2, + "*compressedBody": 1, + "compressData": 1, + "setCompressedPostBody": 1, + "compressedBody": 1, + "isEqualToString": 13, + "||": 42, + "setHaveBuiltPostBody": 1, + "setupPostBody": 3, + "setPostBodyFilePath": 1, + "setDidCreateTemporaryPostDataFile": 1, + "initToFileAtPath": 1, + "append": 1, + "open": 2, + "setPostBody": 1, + "maxLength": 3, + "appendData": 2, + "*stream": 1, + "initWithFileAtPath": 1, + "NSUInteger": 93, + "bytesRead": 5, + "hasBytesAvailable": 1, + "char": 19, + "*256": 1, + "sizeof": 13, + "break": 13, + "dataWithBytes": 1, + "*m": 1, + "unlock": 20, + "m": 1, + "newRequestMethod": 3, + "*u": 1, + "u": 4, + "isEqual": 4, + "NULL": 152, + "setRedirectURL": 2, + "d": 11, + "setDelegate": 4, + "newDelegate": 6, + "q": 2, + "setQueue": 2, + "newQueue": 3, + "cancelOnRequestThread": 2, + "DEBUG_REQUEST_STATUS": 4, + "ASI_DEBUG_LOG": 11, + "isCancelled": 6, + "setComplete": 3, + "CFRetain": 4, + "willChangeValueForKey": 1, + "didChangeValueForKey": 1, + "onThread": 2, + "Clear": 3, + "setDownloadProgressDelegate": 2, + "setUploadProgressDelegate": 2, + "initWithBytes": 1, + "*encoding": 1, + "rangeOfString": 1, + ".location": 1, + "NSNotFound": 1, + "uncompressData": 1, + "DEBUG_THROTTLING": 2, + "setInProgress": 3, + "NSRunLoop": 2, + "currentRunLoop": 2, + "runMode": 1, + "runLoopMode": 2, + "beforeDate": 1, + "distantFuture": 1, + "start": 3, + "addOperation": 1, + "concurrency": 1, + "isConcurrent": 1, + "isFinished": 1, + "isExecuting": 1, + "logic": 1, + "@try": 1, + "UIBackgroundTaskInvalid": 3, + "UIApplication": 2, + "sharedApplication": 2, + "beginBackgroundTaskWithExpirationHandler": 1, + "dispatch_async": 1, + "dispatch_get_main_queue": 1, + "endBackgroundTask": 1, + "generated": 3, + "ASINetworkQueue": 4, + "already.": 1, + "proceed.": 1, + "setDidUseCachedResponse": 1, + "Must": 1, + "call": 8, + "create": 1, + "needs": 1, + "mainRequest": 9, + "ll": 6, + "already": 4, + "CFHTTPMessageRef": 3, + "Create": 1, + "request.": 1, + "CFHTTPMessageCreateRequest": 1, + "kCFAllocatorDefault": 3, + "CFStringRef": 1, + "CFURLRef": 1, + "kCFHTTPVersion1_0": 1, + "kCFHTTPVersion1_1": 1, + "//If": 2, + "let": 8, + "generate": 1, + "its": 9, + "Even": 1, + "chance": 2, + "add": 5, + "ASIS3Request": 1, + "does": 3, + "process": 1, + "@catch": 1, + "NSException": 19, + "*exception": 1, + "*underlyingError": 1, + "exception": 3, + "name": 7, + "reason": 1, + "NSLocalizedFailureReasonErrorKey": 1, + "underlyingError": 1, + "@finally": 1, + "Do": 3, + "DEBUG_HTTP_AUTHENTICATION": 4, + "*credentials": 1, + "auth": 2, + "basic": 3, + "any": 3, + "cached": 2, + "key": 32, + "challenge": 1, + "apply": 2, + "like": 1, + "CFHTTPMessageApplyCredentialDictionary": 2, + "CFDictionaryRef": 1, + "setAuthenticationScheme": 1, + "happens": 4, + "%": 30, + "re": 9, + "retrying": 1, + "our": 6, + "measure": 1, + "throttled": 1, + "setPostBodyReadStream": 2, + "ASIInputStream": 2, + "inputStreamWithData": 2, + "setReadStream": 2, + "NSMakeCollectable": 3, + "CFReadStreamCreateForStreamedHTTPRequest": 1, + "CFReadStreamCreateForHTTPRequest": 1, + "lowercaseString": 1, + "*sslProperties": 2, + "initWithObjectsAndKeys": 1, + "numberWithBool": 3, + "kCFStreamSSLAllowsExpiredCertificates": 1, + "kCFStreamSSLAllowsAnyRoot": 1, + "kCFStreamSSLValidatesCertificateChain": 1, + "kCFNull": 1, + "kCFStreamSSLPeerName": 1, + "CFReadStreamSetProperty": 1, + "kCFStreamPropertySSLSettings": 1, + "CFTypeRef": 1, + "sslProperties": 2, + "*certificates": 1, + "arrayWithCapacity": 2, + "count": 99, + "*oldStream": 1, + "redirecting": 2, + "connecting": 2, + "intValue": 4, + "setConnectionInfo": 2, + "Check": 1, + "expired": 1, + "timeIntervalSinceNow": 1, + "<": 56, + "DEBUG_PERSISTENT_CONNECTIONS": 3, + "removeObject": 2, + "//Some": 1, + "previously": 1, + "there": 1, + "one": 1, + "We": 7, + "just": 4, + "old": 5, + "//lists.apple.com/archives/Macnetworkprog/2006/Mar/msg00119.html": 1, + "oldStream": 4, + "streamSuccessfullyOpened": 1, + "setConnectionCanBeReused": 2, + "Record": 1, + "started": 1, + "nothing": 2, + "setLastActivityTime": 1, + "setStatusTimer": 2, + "timerWithTimeInterval": 1, + "repeats": 1, + "addTimer": 1, + "forMode": 1, + "here": 2, + "safely": 1, + "***Black": 1, + "magic": 1, + "warning***": 1, + "reliable": 1, + "way": 1, + "track": 1, + "strong": 4, + "slow.": 1, + "secondsSinceLastActivity": 1, + "*1.5": 1, + "updating": 1, + "checking": 1, + "told": 1, + "us": 2, + "auto": 2, + "resuming": 1, + "Range": 1, + "take": 1, + "account": 1, + "perhaps": 1, + "setTotalBytesSent": 1, + "CFReadStreamCopyProperty": 2, + "kCFStreamPropertyHTTPRequestBytesWrittenCount": 1, + "unsignedLongLongValue": 1, + "middle": 1, + "said": 1, + "might": 4, + "MaxValue": 2, + "UIProgressView": 2, + "double": 3, + "max": 7, + "setMaxValue": 2, + "examined": 1, + "since": 1, + "authenticate": 1, + "bytesReadSoFar": 3, + "setUpdatedProgress": 1, + "didReceiveBytes": 2, + "totalSize": 2, + "setLastBytesRead": 1, + "pass": 5, + "pointer": 2, + "directly": 1, + "itself": 1, + "setArgument": 4, + "atIndex": 6, + "argumentNumber": 1, + "callback": 3, + "NSMethodSignature": 1, + "*cbSignature": 1, + "methodSignatureForSelector": 1, + "*cbInvocation": 1, + "invocationWithMethodSignature": 1, + "cbSignature": 1, + "cbInvocation": 5, + "setSelector": 1, + "setTarget": 1, + "forget": 2, + "know": 3, + "removeObjectForKey": 1, + "dateWithTimeIntervalSinceNow": 1, + "ignore": 1, + "ASIFallbackToCacheIfLoadFailsCachePolicy": 2, + "canUseCachedDataForRequest": 1, + "setError": 2, + "*failedRequest": 1, + "compatible": 1, + "fail": 1, + "failedRequest": 4, + "message": 2, + "kCFStreamPropertyHTTPResponseHeader": 1, + "Make": 1, + "sure": 1, + "tells": 1, + "keepAliveHeader": 2, + "NSScanner": 2, + "*scanner": 1, + "scannerWithString": 1, + "scanner": 5, + "scanString": 2, + "intoString": 3, + "scanInt": 2, + "scanUpToString": 1, + "what": 3, + "hard": 1, + "throw": 1, + "away.": 1, + "*userAgentHeader": 1, + "*acceptHeader": 1, + "userAgentHeader": 2, + "acceptHeader": 2, + "setHaveBuiltRequestHeaders": 1, + "Force": 2, + "rebuild": 2, + "cookie": 1, + "incase": 1, + "got": 1, + "some": 1, + "remain": 1, + "ones": 3, + "URLWithString": 1, + "valueForKey": 2, + "relativeToURL": 1, + "absoluteURL": 1, + "setNeedsRedirect": 1, + "means": 1, + "manually": 1, + "added": 5, + "those": 1, + "global": 1, + "But": 1, + "safest": 1, + "option": 1, + "responseCode": 1, + "Handle": 1, + "*mimeType": 1, + "setResponseEncoding": 2, + "saveProxyCredentialsToKeychain": 1, + "*authenticationCredentials": 2, + "credentialWithUser": 2, + "kCFHTTPAuthenticationUsername": 2, + "kCFHTTPAuthenticationPassword": 2, + "persistence": 2, + "NSURLCredentialPersistencePermanent": 2, + "authenticationCredentials": 4, + "setProxyAuthenticationRetryCount": 1, + "Apply": 1, + "whatever": 1, + "ok": 1, + "CFMutableDictionaryRef": 1, + "*sessionCredentials": 1, + "dictionary": 64, + "sessionCredentials": 6, + "setRequestCredentials": 1, + "*newCredentials": 1, + "*user": 1, + "*pass": 1, + "*theRequest": 1, + "try": 3, + "connect": 1, + "website": 1, + "kCFHTTPAuthenticationSchemeNTLM": 1, + "Ok": 1, + "extract": 1, + "NSArray*": 1, + "ntlmComponents": 1, + "componentsSeparatedByString": 1, + "AUTH": 6, + "Request": 6, + "parent": 1, + "properties": 1, + "ASIAuthenticationDialog": 2, + "had": 1, + "Foo": 2, + "NSObject": 5, + "": 2, + "FooAppDelegate": 2, + "": 1, + "@private": 2, + "NSWindow": 2, + "*window": 2, + "IBOutlet": 1, + "@synthesize": 7, + "window": 1, + "applicationDidFinishLaunching": 1, + "aNotification": 1, + "argc": 1, + "*argv": 1, + "NSLog": 4, + "#include": 18, + "": 1, + "": 2, + "": 2, + "": 1, + "": 1, + "#ifdef": 10, + "__OBJC__": 4, + "": 2, + "": 2, + "": 2, + "": 1, + "": 2, + "": 1, + "__cplusplus": 2, + "NSINTEGER_DEFINED": 3, + "defined": 16, + "__LP64__": 4, + "NS_BUILD_32_LIKE_64": 3, + "NSIntegerMin": 3, + "LONG_MIN": 3, + "NSIntegerMax": 4, + "LONG_MAX": 3, + "NSUIntegerMax": 7, + "ULONG_MAX": 3, + "INT_MIN": 3, + "INT_MAX": 2, + "UINT_MAX": 3, + "_JSONKIT_H_": 3, + "__GNUC__": 14, + "__APPLE_CC__": 2, + "JK_DEPRECATED_ATTRIBUTE": 6, + "__attribute__": 3, + "deprecated": 1, + "JSONKIT_VERSION_MAJOR": 1, + "JSONKIT_VERSION_MINOR": 1, + "JKFlags": 5, + "JKParseOptionNone": 1, + "JKParseOptionStrict": 1, + "JKParseOptionComments": 2, + "<<": 16, + "JKParseOptionUnicodeNewlines": 2, + "JKParseOptionLooseUnicode": 2, + "JKParseOptionPermitTextAfterValidJSON": 2, + "JKParseOptionValidFlags": 1, + "JKParseOptionFlags": 12, + "JKSerializeOptionNone": 3, + "JKSerializeOptionPretty": 2, + "JKSerializeOptionEscapeUnicode": 2, + "JKSerializeOptionEscapeForwardSlashes": 2, + "JKSerializeOptionValidFlags": 1, + "JKSerializeOptionFlags": 16, + "struct": 20, + "JKParseState": 18, + "Opaque": 1, + "private": 1, + "type.": 3, + "JSONDecoder": 2, + "*parseState": 16, + "decoder": 1, + "decoderWithParseOptions": 1, + "parseOptionFlags": 11, + "initWithParseOptions": 1, + "clearCache": 1, + "parseUTF8String": 2, + "size_t": 23, + "Deprecated": 4, + "JSONKit": 11, + "v1.4.": 4, + "objectWithUTF8String": 4, + "instead.": 4, + "parseJSONData": 2, + "jsonData": 6, + "objectWithData": 7, + "mutableObjectWithUTF8String": 2, + "mutableObjectWithData": 2, + "////////////": 4, + "Deserializing": 1, + "methods": 2, + "JSONKitDeserializing": 2, + "objectFromJSONString": 1, + "objectFromJSONStringWithParseOptions": 2, + "mutableObjectFromJSONString": 1, + "mutableObjectFromJSONStringWithParseOptions": 2, + "objectFromJSONData": 1, + "objectFromJSONDataWithParseOptions": 2, + "mutableObjectFromJSONData": 1, + "mutableObjectFromJSONDataWithParseOptions": 2, + "Serializing": 1, + "JSONKitSerializing": 3, + "JSONData": 3, + "Invokes": 2, + "JSONDataWithOptions": 8, + "includeQuotes": 6, + "serializeOptions": 14, + "JSONString": 3, + "JSONStringWithOptions": 8, + "serializeUnsupportedClassesUsingDelegate": 4, + "__BLOCKS__": 1, + "JSONKitSerializingBlockAdditions": 2, + "serializeUnsupportedClassesUsingBlock": 4, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "//#include": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "//#import": 1, + "": 1, + "": 1, + "": 1, + "__has_feature": 3, + "JK_ENABLE_CF_TRANSFER_OWNERSHIP_CALLBACKS": 2, + "#warning": 1, + "As": 1, + "v1.4": 1, + "longer": 2, + "required.": 1, + "option.": 1, + "__OBJC_GC__": 1, + "#error": 6, + "Objective": 2, + "C": 6, + "Garbage": 1, "Collection": 1, - "

": 1, - "match=": 1, - "

": 1, - "e*.495327": 4, - "pf": 4, - "u*r": 1, - "onbeforeunload=": 3, - "f.grep": 3, - "H=": 1, - "overflowX": 1, - ".specified": 1, - "always": 6, - "c.expando": 2, - "window.attachEvent": 2, - "f*.471962": 2, - "n.rect": 4, - "bt.labelColor.getRgbaColor": 2, - "Flash": 1, - "offsets": 1, - "xa": 3, - "cacheable": 2, - "n.setAttribute": 1, - "boolean": 8, - "g.indexOf": 2, - "o*.2": 1, - "getByName": 3, - "field": 36, - "metadata": 2, - "datetime": 1, - "e.save": 2, - "x0B": 1, - "inner.offsetTop": 4, - "s.getElementById": 1, - "json": 2, - "k.createElement": 1, - "//basic": 1, - "isNode": 11, - ".delegate": 2, - "p.innerHTML": 1, - "bool.h264": 1, - "offsetSupport.doesNotIncludeMarginInBodyOffset": 1, - "normalizes": 1, - "cw": 1, - "f.support.checkOn": 1, - "hooks.get": 2, - "u=": 12, - "154205": 1, - "c.head": 1, - "ecmascript/": 1, - "h.handler.guid": 2, - "bk": 5, - "f.event.special.change": 1, - "R.test": 1, - ".specialSubmit": 2, - "c.async": 4, - "d.push": 1, - "continue": 18, - "oi.setAttribute": 2, - "kr": 17, - "String.fromCharCode": 4, - "_configure": 1, - "e.level": 1, - "certain": 2, - "iframe": 3, - "j.getComputedStyle": 2, - "d.always": 1, - "method": 30, - "toArray": 2, - "screenY": 4, - "pt.getContext": 2, - "/src/i.test": 1, - "timers": 3, - "works": 1, - "hasClass": 2, - "defer": 1, - "et.width": 1, - "led": 18, - "t.getContext": 2, - "k*.803738": 2, - "window.openDatabase": 1, - "v.expr": 4, - "d.parentNode": 4, - "window.postMessage": 1, - "emptyGet": 3, - "H": 8, - "": 2, - "
": 1, - "": 2, - "": 1, - "": 1, - "": 1, - "": 2, - "xmlns": 1, - "": 1, - "": 1, - "": 1 + "objc_arc": 1, + "Automatic": 1, + "Reference": 1, + "Counting": 1, + "ARC": 1, + "xffffffffU": 1, + "fffffff": 1, + "ULLONG_MAX": 1, + "xffffffffffffffffULL": 1, + "LLONG_MIN": 1, + "fffffffffffffffLL": 1, + "LL": 1, + "requires": 4, + "types": 2, + "bits": 1, + "respectively.": 1, + "WORD_BIT": 1, + "LONG_BIT": 1, + "bit": 1, + "architectures.": 1, + "SIZE_MAX": 1, + "SSIZE_MAX": 1, + "JK_HASH_INIT": 1, + "UL": 138, + "JK_FAST_TRAILING_BYTES": 2, + "JK_CACHE_SLOTS_BITS": 2, + "JK_CACHE_SLOTS": 1, + "JK_CACHE_PROBES": 1, + "JK_INIT_CACHE_AGE": 1, + "JK_TOKENBUFFER_SIZE": 1, + "JK_STACK_OBJS": 1, + "JK_JSONBUFFER_SIZE": 1, + "JK_UTF8BUFFER_SIZE": 1, + "JK_ENCODE_CACHE_SLOTS": 1, + "JK_ATTRIBUTES": 15, + "attr": 3, + "...": 11, + "##__VA_ARGS__": 7, + "JK_EXPECTED": 4, + "cond": 12, + "expect": 3, + "__builtin_expect": 1, + "JK_EXPECT_T": 22, + "U": 2, + "JK_EXPECT_F": 14, + "JK_PREFETCH": 2, + "ptr": 3, + "__builtin_prefetch": 1, + "JK_STATIC_INLINE": 10, + "__inline__": 1, + "always_inline": 1, + "JK_ALIGNED": 1, + "arg": 11, + "aligned": 1, + "JK_UNUSED_ARG": 2, + "unused": 3, + "JK_WARN_UNUSED": 1, + "warn_unused_result": 9, + "JK_WARN_UNUSED_CONST": 1, + "JK_WARN_UNUSED_PURE": 1, + "pure": 2, + "JK_WARN_UNUSED_SENTINEL": 1, + "sentinel": 1, + "JK_NONNULL_ARGS": 1, + "nonnull": 6, + "JK_WARN_UNUSED_NONNULL_ARGS": 1, + "JK_WARN_UNUSED_CONST_NONNULL_ARGS": 1, + "JK_WARN_UNUSED_PURE_NONNULL_ARGS": 1, + "__GNUC_MINOR__": 3, + "JK_ALLOC_SIZE_NON_NULL_ARGS_WARN_UNUSED": 2, + "nn": 4, + "alloc_size": 1, + "JKArray": 14, + "JKDictionaryEnumerator": 4, + "JKDictionary": 22, + "JSONNumberStateStart": 1, + "JSONNumberStateFinished": 1, + "JSONNumberStateError": 1, + "JSONNumberStateWholeNumberStart": 1, + "JSONNumberStateWholeNumberMinus": 1, + "JSONNumberStateWholeNumberZero": 1, + "JSONNumberStateWholeNumber": 1, + "JSONNumberStatePeriod": 1, + "JSONNumberStateFractionalNumberStart": 1, + "JSONNumberStateFractionalNumber": 1, + "JSONNumberStateExponentStart": 1, + "JSONNumberStateExponentPlusMinus": 1, + "JSONNumberStateExponent": 1, + "JSONStringStateStart": 1, + "JSONStringStateParsing": 1, + "JSONStringStateFinished": 1, + "JSONStringStateError": 1, + "JSONStringStateEscape": 1, + "JSONStringStateEscapedUnicode1": 1, + "JSONStringStateEscapedUnicode2": 1, + "JSONStringStateEscapedUnicode3": 1, + "JSONStringStateEscapedUnicode4": 1, + "JSONStringStateEscapedUnicodeSurrogate1": 1, + "JSONStringStateEscapedUnicodeSurrogate2": 1, + "JSONStringStateEscapedUnicodeSurrogate3": 1, + "JSONStringStateEscapedUnicodeSurrogate4": 1, + "JSONStringStateEscapedNeedEscapeForSurrogate": 1, + "JSONStringStateEscapedNeedEscapedUForSurrogate": 1, + "JKParseAcceptValue": 2, + "JKParseAcceptComma": 2, + "JKParseAcceptEnd": 3, + "JKParseAcceptValueOrEnd": 1, + "JKParseAcceptCommaOrEnd": 1, + "JKClassUnknown": 1, + "JKClassString": 1, + "JKClassNumber": 1, + "JKClassArray": 1, + "JKClassDictionary": 1, + "JKClassNull": 1, + "JKManagedBufferOnStack": 1, + "JKManagedBufferOnHeap": 1, + "JKManagedBufferLocationMask": 1, + "JKManagedBufferLocationShift": 1, + "JKManagedBufferMustFree": 1, + "JKManagedBufferFlags": 1, + "JKObjectStackOnStack": 1, + "JKObjectStackOnHeap": 1, + "JKObjectStackLocationMask": 1, + "JKObjectStackLocationShift": 1, + "JKObjectStackMustFree": 1, + "JKObjectStackFlags": 1, + "JKTokenTypeInvalid": 1, + "JKTokenTypeNumber": 1, + "JKTokenTypeString": 1, + "JKTokenTypeObjectBegin": 1, + "JKTokenTypeObjectEnd": 1, + "JKTokenTypeArrayBegin": 1, + "JKTokenTypeArrayEnd": 1, + "JKTokenTypeSeparator": 1, + "JKTokenTypeComma": 1, + "JKTokenTypeTrue": 1, + "JKTokenTypeFalse": 1, + "JKTokenTypeNull": 1, + "JKTokenTypeWhiteSpace": 1, + "JKTokenType": 2, + "JKValueTypeNone": 1, + "JKValueTypeString": 1, + "JKValueTypeLongLong": 1, + "JKValueTypeUnsignedLongLong": 1, + "JKValueTypeDouble": 1, + "JKValueType": 1, + "JKEncodeOptionAsData": 1, + "JKEncodeOptionAsString": 1, + "JKEncodeOptionAsTypeMask": 1, + "JKEncodeOptionCollectionObj": 1, + "JKEncodeOptionStringObj": 1, + "JKEncodeOptionStringObjTrimQuotes": 1, + "JKEncodeOptionType": 2, + "JKHash": 4, + "JKTokenCacheItem": 2, + "JKTokenCache": 2, + "JKTokenValue": 2, + "JKParseToken": 2, + "JKPtrRange": 2, + "JKObjectStack": 5, + "JKBuffer": 2, + "JKConstBuffer": 2, + "JKConstPtrRange": 2, + "JKRange": 2, + "JKManagedBuffer": 5, + "JKFastClassLookup": 2, + "JKEncodeCache": 6, + "JKEncodeState": 11, + "JKObjCImpCache": 2, + "JKHashTableEntry": 21, + "serializeObject": 1, + "options": 6, + "optionFlags": 1, + "encodeOption": 2, + "JKSERIALIZER_BLOCKS_PROTO": 1, + "releaseState": 1, + "keyHash": 21, + "uint32_t": 1, + "UTF32": 11, + "uint16_t": 1, + "UTF16": 1, + "uint8_t": 1, + "UTF8": 2, + "conversionOK": 1, + "sourceExhausted": 1, + "targetExhausted": 1, + "sourceIllegal": 1, + "ConversionResult": 1, + "UNI_REPLACEMENT_CHAR": 1, + "FFFD": 1, + "UNI_MAX_BMP": 1, + "FFFF": 3, + "UNI_MAX_UTF16": 1, + "UNI_MAX_UTF32": 1, + "FFFFFFF": 1, + "UNI_MAX_LEGAL_UTF32": 1, + "UNI_SUR_HIGH_START": 1, + "xD800": 1, + "UNI_SUR_HIGH_END": 1, + "xDBFF": 1, + "UNI_SUR_LOW_START": 1, + "xDC00": 1, + "UNI_SUR_LOW_END": 1, + "xDFFF": 1, + "trailingBytesForUTF8": 1, + "offsetsFromUTF8": 1, + "E2080UL": 1, + "C82080UL": 1, + "xFA082080UL": 1, + "firstByteMark": 1, + "xC0": 1, + "xE0": 1, + "xF0": 1, + "xF8": 1, + "xFC": 1, + "JK_AT_STRING_PTR": 1, + "stringBuffer.bytes.ptr": 2, + "JK_END_STRING_PTR": 1, + "stringBuffer.bytes.length": 1, + "*_JKArrayCreate": 2, + "*objects": 5, + "mutableCollection": 7, + "_JKArrayInsertObjectAtIndex": 3, + "*array": 9, + "newObject": 12, + "objectIndex": 48, + "_JKArrayReplaceObjectAtIndexWithObject": 3, + "_JKArrayRemoveObjectAtIndex": 3, + "_JKDictionaryCapacityForCount": 4, + "*_JKDictionaryCreate": 2, + "*keys": 2, + "*keyHashes": 2, + "*_JKDictionaryHashEntry": 2, + "*dictionary": 13, + "_JKDictionaryCapacity": 3, + "_JKDictionaryResizeIfNeccessary": 3, + "_JKDictionaryRemoveObjectWithEntry": 3, + "*entry": 4, + "_JKDictionaryAddObject": 4, + "*_JKDictionaryHashTableEntryForKey": 2, + "aKey": 13, + "_JSONDecoderCleanup": 1, + "*decoder": 1, + "_NSStringObjectFromJSONString": 1, + "*jsonString": 1, + "**error": 1, + "jk_managedBuffer_release": 1, + "*managedBuffer": 3, + "jk_managedBuffer_setToStackBuffer": 1, + "*ptr": 2, + "*jk_managedBuffer_resize": 1, + "newSize": 1, + "jk_objectStack_release": 1, + "*objectStack": 3, + "jk_objectStack_setToStackBuffer": 1, + "**objects": 1, + "**keys": 1, + "CFHashCode": 1, + "*cfHashes": 1, + "jk_objectStack_resize": 1, + "newCount": 1, + "jk_error": 1, + "*format": 7, + "jk_parse_string": 1, + "jk_parse_number": 1, + "jk_parse_is_newline": 1, + "*atCharacterPtr": 1, + "jk_parse_skip_newline": 1, + "jk_parse_skip_whitespace": 1, + "jk_parse_next_token": 1, + "jk_error_parse_accept_or3": 1, + "*or1String": 1, + "*or2String": 1, + "*or3String": 1, + "*jk_create_dictionary": 1, + "startingObjectIndex": 1, + "*jk_parse_dictionary": 1, + "*jk_parse_array": 1, + "*jk_object_for_token": 1, + "*jk_cachedObjects": 1, + "jk_cache_age": 1, + "jk_set_parsed_token": 1, + "advanceBy": 1, + "jk_encode_error": 1, + "*encodeState": 9, + "jk_encode_printf": 1, + "*cacheSlot": 4, + "startingAtIndex": 4, + "jk_encode_write": 1, + "jk_encode_writePrettyPrintWhiteSpace": 1, + "jk_encode_write1slow": 2, + "ssize_t": 2, + "depthChange": 2, + "jk_encode_write1fast": 2, + "jk_encode_writen": 1, + "jk_encode_object_hash": 1, + "*objectPtr": 2, + "jk_encode_updateCache": 1, + "jk_encode_add_atom_to_buffer": 1, + "jk_encode_write1": 1, + "es": 3, + "dc": 3, + "f": 8, + "_jk_encode_prettyPrint": 1, + "jk_min": 1, + "b": 4, + "jk_max": 3, + "jk_calculateHash": 1, + "currentHash": 1, + "c": 7, + "Class": 3, + "_JKArrayClass": 5, + "_JKArrayInstanceSize": 4, + "_JKDictionaryClass": 5, + "_JKDictionaryInstanceSize": 4, + "_jk_NSNumberClass": 2, + "NSNumberAllocImp": 2, + "_jk_NSNumberAllocImp": 2, + "NSNumberInitWithUnsignedLongLongImp": 2, + "_jk_NSNumberInitWithUnsignedLongLongImp": 2, + "jk_collectionClassLoadTimeInitialization": 2, + "constructor": 1, + "NSAutoreleasePool": 2, + "*pool": 1, + "Though": 1, + "technically": 1, + "run": 1, + "environment": 1, + "load": 1, + "initialization": 1, + "less": 1, + "ideal.": 1, + "objc_getClass": 2, + "class_getInstanceSize": 2, + "methodForSelector": 2, + "temp_NSNumber": 4, + "initWithUnsignedLongLong": 1, + "pool": 2, + "": 2, + "NSMutableCopying": 2, + "NSFastEnumeration": 2, + "capacity": 51, + "mutations": 20, + "allocWithZone": 4, + "NSZone": 4, + "zone": 8, + "raise": 18, + "NSInvalidArgumentException": 6, + "format": 18, + "NSStringFromClass": 18, + "NSStringFromSelector": 16, + "_cmd": 16, + "NSCParameterAssert": 19, + "objects": 58, + "calloc": 5, + "Directly": 2, + "allocate": 2, + "instance": 2, + "calloc.": 2, + "isa": 2, + "malloc": 1, + "memcpy": 2, + "<=>": 15, + "*newObjects": 1, + "newObjects": 2, + "realloc": 1, + "NSMallocException": 2, + "memset": 1, + "memmove": 2, + "atObject": 12, + "free": 4, + "NSParameterAssert": 15, + "getObjects": 2, + "objectsPtr": 3, + "range": 8, + "NSRange": 1, + "NSMaxRange": 4, + "NSRangeException": 6, + "range.location": 2, + "range.length": 1, + "objectAtIndex": 8, + "countByEnumeratingWithState": 2, + "NSFastEnumerationState": 2, + "stackbuf": 8, + "len": 6, + "mutationsPtr": 2, + "itemsPtr": 2, + "enumeratedCount": 8, + "insertObject": 1, + "anObject": 16, + "NSInternalInconsistencyException": 4, + "__clang_analyzer__": 3, + "Stupid": 2, + "clang": 3, + "analyzer...": 2, + "Issue": 2, + "#19.": 2, + "removeObjectAtIndex": 1, + "replaceObjectAtIndex": 1, + "copyWithZone": 1, + "initWithObjects": 2, + "mutableCopyWithZone": 1, + "NSEnumerator": 2, + "collection": 11, + "nextObject": 6, + "initWithJKDictionary": 3, + "initDictionary": 4, + "allObjects": 2, + "arrayWithObjects": 1, + "_JKDictionaryHashEntry": 2, + "returnObject": 3, + "entry": 41, + ".key": 11, + "jk_dictionaryCapacities": 4, + "bottom": 6, + "top": 8, + "mid": 5, + "tableSize": 2, + "lround": 1, + "floor": 1, + "capacityForCount": 4, + "resize": 3, + "oldCapacity": 2, + "NS_BLOCK_ASSERTIONS": 1, + "oldCount": 2, + "*oldEntry": 1, + "idx": 33, + "oldEntry": 9, + ".keyHash": 2, + ".object": 7, + "keys": 5, + "keyHashes": 2, + "atEntry": 45, + "removeIdx": 3, + "entryIdx": 4, + "*atEntry": 3, + "addKeyEntry": 2, + "addIdx": 5, + "*atAddEntry": 1, + "atAddEntry": 6, + "keyEntry": 4, + "CFEqual": 2, + "CFHash": 1, + "table": 7, + "would": 2, + "now.": 1, + "entryForKey": 3, + "_JKDictionaryHashTableEntryForKey": 1, + "andKeys": 1, + "arrayIdx": 5, + "keyEnumerator": 1, + "copy": 4, + "Why": 1, + "earth": 1, + "complain": 1, + "doesn": 1, + "Internal": 2, + "Unable": 2, + "temporary": 2, + "buffer.": 2, + "line": 2, + "#": 2, + "ld": 2, + "Invalid": 1, + "character": 1, + "x.": 1, + "n": 7, + "r": 6, + "F": 1, + ".": 2, + "e": 1, + "Unexpected": 1, + "token": 1, + "wanted": 1, + "Expected": 3, + "MainMenuViewController": 2, + "TTTableViewController": 1, + "///////////////////////////////////////////////////////////////////////////////////////////////////": 24, + "initWithNibName": 3, + "nibNameOrNil": 1, + "bundle": 3, + "NSBundle": 1, + "nibBundleOrNil": 1, + "self.title": 2, + "//self.variableHeightRows": 1, + "self.tableViewStyle": 1, + "UITableViewStyleGrouped": 1, + "self.dataSource": 1, + "TTSectionedDataSource": 1, + "dataSourceWithObjects": 1, + "TTTableTextItem": 48, + "itemWithText": 48, + "URL": 48, + "PlaygroundViewController": 2, + "UIViewController": 2, + "UIScrollView*": 1, + "_scrollView": 9, + "": 1, + "CGFloat": 44, + "kFramePadding": 7, + "kElementSpacing": 3, + "kGroupSpacing": 5, + "addHeader": 5, + "yOffset": 42, + "UILabel*": 2, + "label": 6, + "UILabel": 2, + "initWithFrame": 12, + "CGRectZero": 5, + "label.text": 2, + "label.font": 3, + "UIFont": 3, + "systemFontOfSize": 2, + "label.numberOfLines": 2, + "CGRect": 41, + "frame": 38, + "label.frame": 4, + "frame.origin.x": 3, + "frame.origin.y": 16, + "frame.size.width": 4, + "frame.size.height": 15, + "sizeWithFont": 2, + "constrainedToSize": 2, + "CGSizeMake": 3, + ".height": 4, + "addSubview": 8, + "label.frame.size.height": 2, + "TT_RELEASE_SAFELY": 12, + "addText": 5, + "loadView": 4, + "UIScrollView": 1, + "self.view.bounds": 2, + "_scrollView.autoresizingMask": 1, + "UIViewAutoresizingFlexibleWidth": 4, + "UIViewAutoresizingFlexibleHeight": 1, + "self.view": 4, + "NSLocalizedString": 9, + "UIButton*": 1, + "button": 5, + "UIButton": 1, + "buttonWithType": 1, + "UIButtonTypeRoundedRect": 1, + "setTitle": 1, + "forState": 4, + "UIControlStateNormal": 1, + "addTarget": 1, + "action": 1, + "debugTestAction": 2, + "forControlEvents": 1, + "UIControlEventTouchUpInside": 1, + "sizeToFit": 1, + "button.frame": 2, + "TTCurrentLocale": 2, + "displayNameForKey": 1, + "NSLocaleIdentifier": 1, + "localeIdentifier": 1, + "TTPathForBundleResource": 1, + "TTPathForDocumentsResource": 1, + "dataUsingEncoding": 2, + "NSUTF8StringEncoding": 2, + "md5Hash": 1, + "setContentSize": 1, + "viewDidUnload": 2, + "viewDidAppear": 2, + "animated": 27, + "flashScrollIndicators": 1, + "DEBUG": 1, + "TTDPRINTMETHODNAME": 1, + "TTDPRINT": 9, + "TTMAXLOGLEVEL": 1, + "TTDERROR": 1, + "TTLOGLEVEL_ERROR": 1, + "TTDWARNING": 1, + "TTLOGLEVEL_WARNING": 1, + "TTDINFO": 1, + "TTLOGLEVEL_INFO": 1, + "TTDCONDITIONLOG": 3, + "rand": 1, + "TTDASSERT": 2, + "SBJsonParser": 2, + "maxDepth": 2, + "NSData*": 1, + "objectWithString": 5, + "repr": 5, + "jsonText": 1, + "NSError**": 2, + "self.maxDepth": 2, + "Methods": 1, + "self.error": 3, + "SBJsonStreamParserAccumulator": 2, + "*accumulator": 1, + "SBJsonStreamParserAdapter": 2, + "*adapter": 1, + "adapter.delegate": 1, + "accumulator": 1, + "SBJsonStreamParser": 2, + "*parser": 1, + "parser.maxDepth": 1, + "parser.delegate": 1, + "adapter": 1, + "switch": 3, + "parse": 1, + "case": 8, + "SBJsonStreamParserComplete": 1, + "accumulator.value": 1, + "SBJsonStreamParserWaitingForData": 1, + "SBJsonStreamParserError": 1, + "parser.error": 1, + "error_": 2, + "tmp": 3, + "*ui": 1, + "*error_": 1, + "ui": 1, + "StyleViewController": 2, + "TTViewController": 1, + "TTStyle*": 7, + "_style": 8, + "_styleHighlight": 6, + "_styleDisabled": 6, + "_styleSelected": 6, + "_styleType": 6, + "kTextStyleType": 2, + "kViewStyleType": 2, + "kImageStyleType": 2, + "initWithStyleName": 1, + "styleType": 3, + "TTStyleSheet": 4, + "globalStyleSheet": 4, + "styleWithSelector": 4, + "UIControlStateHighlighted": 1, + "UIControlStateDisabled": 1, + "UIControlStateSelected": 1, + "addTextView": 5, + "title": 2, + "style": 29, + "textFrame": 3, + "TTRectInset": 3, + "UIEdgeInsetsMake": 3, + "StyleView*": 2, + "StyleView": 2, + "text.text": 1, + "TTStyleContext*": 1, + "context": 4, + "TTStyleContext": 1, + "context.frame": 1, + "context.delegate": 1, + "context.font": 1, + "systemFontSize": 1, + "CGSize": 5, + "addToSize": 1, + "CGSizeZero": 1, + "size.width": 1, + "size.height": 1, + "textFrame.size": 1, + "text.frame": 1, + "text.style": 1, + "text.backgroundColor": 1, + "UIColor": 3, + "colorWithRed": 3, + "green": 3, + "blue": 3, + "alpha": 3, + "text.autoresizingMask": 1, + "UIViewAutoresizingFlexibleBottomMargin": 3, + "addView": 5, + "viewFrame": 4, + "view": 11, + "view.style": 2, + "view.backgroundColor": 2, + "view.autoresizingMask": 2, + "addImageView": 5, + "TTImageView*": 1, + "TTImageView": 1, + "view.urlPath": 1, + "imageFrame": 2, + "view.frame": 2, + "imageFrame.size": 1, + "view.image.size": 1, + "TUITableViewStylePlain": 2, + "regular": 1, + "TUITableViewStyleGrouped": 1, + "grouped": 1, + "stick": 1, + "scroll": 3, + "TUITableViewStyle": 4, + "TUITableViewScrollPositionNone": 2, + "TUITableViewScrollPositionTop": 2, + "TUITableViewScrollPositionMiddle": 1, + "TUITableViewScrollPositionBottom": 1, + "TUITableViewScrollPositionToVisible": 3, + "supported": 1, + "TUITableViewScrollPosition": 5, + "TUITableViewInsertionMethodBeforeIndex": 1, + "NSOrderedAscending": 4, + "TUITableViewInsertionMethodAtIndex": 1, + "NSOrderedSame": 1, + "TUITableViewInsertionMethodAfterIndex": 1, + "NSOrderedDescending": 4, + "TUITableViewInsertionMethod": 3, + "TUITableViewCell": 23, + "@protocol": 3, + "TUITableViewDataSource": 2, + "TUITableView": 25, + "TUITableViewDelegate": 1, + "": 1, + "TUIScrollViewDelegate": 1, + "tableView": 45, + "heightForRowAtIndexPath": 2, + "TUIFastIndexPath": 89, + "indexPath": 47, + "@optional": 2, + "willDisplayCell": 2, + "cell": 21, + "forRowAtIndexPath": 2, + "subview": 1, + "didSelectRowAtIndexPath": 3, + "left/right": 2, + "mouse": 2, + "down": 1, + "up/down": 1, + "didDeselectRowAtIndexPath": 3, + "didClickRowAtIndexPath": 1, + "withEvent": 2, + "NSEvent": 3, + "event": 8, + "look": 1, + "clickCount": 1, + "TUITableView*": 1, + "shouldSelectRowAtIndexPath": 3, + "TUIFastIndexPath*": 1, + "forEvent": 3, + "NSEvent*": 1, + "NSMenu": 1, + "menuForRowAtIndexPath": 1, + "tableViewWillReloadData": 3, + "tableViewDidReloadData": 3, + "targetIndexPathForMoveFromRowAtIndexPath": 1, + "fromPath": 1, + "toProposedIndexPath": 1, + "proposedPath": 1, + "TUIScrollView": 1, + "__unsafe_unretained": 2, + "": 4, + "_dataSource": 6, + "weak": 2, + "_sectionInfo": 27, + "TUIView": 17, + "_pullDownView": 4, + "_headerView": 8, + "_lastSize": 1, + "_contentHeight": 7, + "NSMutableIndexSet": 6, + "_visibleSectionHeaders": 6, + "_visibleItems": 14, + "_reusableTableCells": 5, + "_selectedIndexPath": 9, + "_indexPathShouldBeFirstResponder": 2, + "_futureMakeFirstResponderToken": 2, + "_keepVisibleIndexPathForReload": 2, + "_relativeOffsetForReload": 2, + "drag": 1, + "reorder": 1, + "_dragToReorderCell": 5, + "CGPoint": 7, + "_currentDragToReorderLocation": 1, + "_currentDragToReorderMouseOffset": 1, + "_currentDragToReorderIndexPath": 1, + "_currentDragToReorderInsertionMethod": 1, + "_previousDragToReorderIndexPath": 1, + "_previousDragToReorderInsertionMethod": 1, + "animateSelectionChanges": 3, + "forceSaveScrollPosition": 1, + "derepeaterEnabled": 1, + "layoutSubviewsReentrancyGuard": 1, + "didFirstLayout": 1, + "dataSourceNumberOfSectionsInTableView": 1, + "delegateTableViewWillDisplayCellForRowAtIndexPath": 1, + "maintainContentOffsetAfterReload": 3, + "_tableFlags": 1, + "creation.": 1, + "calls": 1, + "UITableViewStylePlain": 1, + "unsafe_unretained": 2, + "dataSource": 2, + "": 4, + "readwrite": 1, + "reloadData": 3, + "reloadDataMaintainingVisibleIndexPath": 2, + "relativeOffset": 5, + "reloadLayout": 2, + "numberOfSections": 10, + "numberOfRowsInSection": 9, + "section": 60, + "rectForHeaderOfSection": 4, + "rectForSection": 3, + "rectForRowAtIndexPath": 7, + "NSIndexSet": 4, + "indexesOfSectionsInRect": 2, + "rect": 10, + "indexesOfSectionHeadersInRect": 2, + "indexPathForCell": 2, + "returns": 4, + "visible": 16, + "indexPathsForRowsInRect": 3, + "indexPathForRowAtPoint": 2, + "point": 11, + "indexPathForRowAtVerticalOffset": 2, + "offset": 23, + "indexOfSectionWithHeaderAtPoint": 2, + "indexOfSectionWithHeaderAtVerticalOffset": 2, + "enumerateIndexPathsUsingBlock": 2, + "*indexPath": 11, + "*stop": 7, + "enumerateIndexPathsWithOptions": 2, + "NSEnumerationOptions": 4, + "usingBlock": 6, + "enumerateIndexPathsFromIndexPath": 4, + "fromIndexPath": 6, + "toIndexPath": 12, + "withOptions": 4, + "headerViewForSection": 6, + "cellForRowAtIndexPath": 9, + "index": 11, + "visibleCells": 3, + "order": 1, + "sortedVisibleCells": 2, + "indexPathsForVisibleRows": 2, + "scrollToRowAtIndexPath": 3, + "atScrollPosition": 3, + "scrollPosition": 9, + "indexPathForSelectedRow": 4, + "representing": 1, + "row": 36, + "selection.": 1, + "indexPathForFirstRow": 2, + "indexPathForLastRow": 2, + "selectRowAtIndexPath": 3, + "deselectRowAtIndexPath": 3, + "*pullDownView": 1, + "pullDownViewIsVisible": 3, + "*headerView": 6, + "dequeueReusableCellWithIdentifier": 2, + "identifier": 7, + "": 1, + "@required": 1, + "canMoveRowAtIndexPath": 2, + "moveRowAtIndexPath": 2, + "numberOfSectionsInTableView": 3, + "NSIndexPath": 5, + "indexPathForRow": 11, + "inSection": 11, + "HEADER_Z_POSITION": 2, + "beginning": 1, + "height": 19, + "TUITableViewRowInfo": 3, + "TUITableViewSection": 16, + "*_tableView": 1, + "*_headerView": 1, + "reusable": 1, + "similar": 1, + "UITableView": 1, + "sectionIndex": 23, + "numberOfRows": 13, + "sectionHeight": 9, + "sectionOffset": 8, + "*rowInfo": 1, + "initWithNumberOfRows": 2, + "_tableView": 3, + "rowInfo": 7, + "_setupRowHeights": 2, + "*header": 1, + "self.headerView": 2, + "roundf": 2, + "header.frame.size.height": 1, + "i": 41, + "h": 3, + "_tableView.delegate": 1, + ".offset": 2, + "rowHeight": 2, + "sectionRowOffset": 2, + "tableRowOffset": 2, + "headerHeight": 4, + "self.headerView.frame.size.height": 1, + "headerView": 14, + "_tableView.dataSource": 3, + "respondsToSelector": 8, + "_headerView.autoresizingMask": 1, + "TUIViewAutoresizingFlexibleWidth": 1, + "_headerView.layer.zPosition": 1, + "Private": 1, + "_updateSectionInfo": 2, + "_updateDerepeaterViews": 2, + "pullDownView": 1, + "_tableFlags.animateSelectionChanges": 3, + "_tableFlags.delegateTableViewWillDisplayCellForRowAtIndexPath": 1, + "setDataSource": 1, + "_tableFlags.dataSourceNumberOfSectionsInTableView": 2, + "setAnimateSelectionChanges": 1, + "*s": 3, + "y": 12, + "CGRectMake": 8, + "self.bounds.size.width": 4, + "indexPath.section": 3, + "indexPath.row": 1, + "*section": 8, + "removeFromSuperview": 4, + "removeAllIndexes": 2, + "*sections": 1, + "bounds": 2, + ".size.height": 1, + "self.contentInset.top*2": 1, + "section.sectionOffset": 1, + "sections": 4, + "self.contentInset.bottom": 1, + "_enqueueReusableCell": 2, + "*identifier": 1, + "cell.reuseIdentifier": 1, + "*c": 1, + "lastObject": 1, + "removeLastObject": 1, + "prepareForReuse": 1, + "allValues": 1, + "SortCells": 1, + "*a": 2, + "*b": 2, + "*ctx": 1, + "a.frame.origin.y": 2, + "b.frame.origin.y": 2, + "*v": 2, + "v": 4, + "sortedArrayUsingComparator": 1, + "NSComparator": 1, + "NSComparisonResult": 1, + "INDEX_PATHS_FOR_VISIBLE_ROWS": 4, + "allKeys": 1, + "*i": 4, + "*cell": 7, + "*indexes": 2, + "CGRectIntersectsRect": 5, + "indexes": 4, + "addIndex": 3, + "*indexPaths": 1, + "cellRect": 7, + "indexPaths": 2, + "CGRectContainsPoint": 1, + "cellRect.origin.y": 1, + "origin": 1, + "brief": 1, + "Obtain": 1, + "whose": 2, + "specified": 1, + "exists": 1, + "negative": 1, + "returned": 1, + "param": 1, + "p": 3, + "0": 2, + "width": 1, + "point.y": 1, + "section.headerView": 9, + "sectionLowerBound": 2, + "fromIndexPath.section": 1, + "sectionUpperBound": 3, + "toIndexPath.section": 1, + "rowLowerBound": 2, + "fromIndexPath.row": 1, + "rowUpperBound": 3, + "toIndexPath.row": 1, + "irow": 3, + "lower": 1, + "bound": 1, + "iteration...": 1, + "rowCount": 3, + "j": 5, + "FALSE": 2, + "...then": 1, + "zero": 1, + "iterations": 1, + "_topVisibleIndexPath": 1, + "*topVisibleIndex": 1, + "sortedArrayUsingSelector": 1, + "topVisibleIndex": 2, + "setFrame": 2, + "_tableFlags.forceSaveScrollPosition": 1, + "setContentOffset": 2, + "_tableFlags.didFirstLayout": 1, + "prevent": 2, + "layout": 3, + "pinned": 5, + "isKindOfClass": 2, + "TUITableViewSectionHeader": 5, + ".pinnedToViewport": 2, + "TRUE": 1, + "pinnedHeader": 1, + "CGRectGetMaxY": 2, + "headerFrame": 4, + "pinnedHeader.frame.origin.y": 1, + "intersecting": 1, + "push": 1, + "upwards.": 1, + "pinnedHeaderFrame": 2, + "pinnedHeader.frame": 2, + "pinnedHeaderFrame.origin.y": 1, + "notify": 3, + "section.headerView.frame": 1, + "setNeedsLayout": 3, + "section.headerView.superview": 1, + "remove": 4, + "offscreen": 2, + "toRemove": 1, + "enumerateIndexesUsingBlock": 1, + "removeIndex": 1, + "_layoutCells": 3, + "visibleCellsNeedRelayout": 5, + "remaining": 1, + "cells": 7, + "cell.frame": 1, + "cell.layer.zPosition": 1, + "visibleRect": 3, + "Example": 1, + "*oldVisibleIndexPaths": 1, + "*newVisibleIndexPaths": 1, + "*indexPathsToRemove": 1, + "oldVisibleIndexPaths": 2, + "mutableCopy": 2, + "indexPathsToRemove": 2, + "removeObjectsInArray": 2, + "newVisibleIndexPaths": 2, + "*indexPathsToAdd": 1, + "indexPathsToAdd": 2, + "newly": 1, + "superview": 1, + "bringSubviewToFront": 1, + "self.contentSize": 3, + "headerViewRect": 3, + "s.height": 3, + "_headerView.frame.size.height": 2, + "visible.size.width": 3, + "_headerView.frame": 1, + "_headerView.hidden": 4, + "show": 2, + "pullDownRect": 4, + "_pullDownView.frame.size.height": 2, + "_pullDownView.hidden": 4, + "_pullDownView.frame": 1, + "self.delegate": 10, + "recycle": 1, + "regenerated": 3, + "layoutSubviews": 5, + "because": 1, + "dragged": 1, + "clear": 3, + "removeAllObjects": 1, + "laid": 1, + "next": 2, + "_tableFlags.layoutSubviewsReentrancyGuard": 3, + "setAnimationsEnabled": 1, + "CATransaction": 3, + "begin": 1, + "setDisableActions": 1, + "_preLayoutCells": 2, + "munge": 2, + "contentOffset": 2, + "_layoutSectionHeaders": 2, + "_tableFlags.derepeaterEnabled": 1, + "commit": 1, + "selected": 2, + "overlapped": 1, + "r.size.height": 4, + "headerFrame.size.height": 1, + "r.origin.y": 1, + "v.size.height": 2, + "scrollRectToVisible": 2, + "sec": 3, + "_makeRowAtIndexPathFirstResponder": 2, + "responder": 2, + "made": 1, + "acceptsFirstResponder": 1, + "self.nsWindow": 3, + "makeFirstResponderIfNotAlreadyInResponderChain": 1, + "futureMakeFirstResponderRequestToken": 1, + "*oldIndexPath": 1, + "oldIndexPath": 2, + "setSelected": 2, + "setNeedsDisplay": 2, + "selection": 3, + "actually": 2, + "NSResponder": 1, + "*firstResponder": 1, + "firstResponder": 3, + "indexPathForFirstVisibleRow": 2, + "*firstIndexPath": 1, + "firstIndexPath": 4, + "indexPathForLastVisibleRow": 2, + "*lastIndexPath": 5, + "lastIndexPath": 8, + "performKeyAction": 2, + "repeative": 1, + "press": 1, + "noCurrentSelection": 2, + "isARepeat": 1, + "TUITableViewCalculateNextIndexPathBlock": 3, + "selectValidIndexPath": 3, + "*startForNoSelection": 2, + "calculateNextIndexPath": 4, + "foundValidNextRow": 4, + "*newIndexPath": 1, + "newIndexPath": 6, + "startForNoSelection": 1, + "_delegate": 2, + "self.animateSelectionChanges": 1, + "charactersIgnoringModifiers": 1, + "characterAtIndex": 1, + "NSUpArrowFunctionKey": 1, + "lastIndexPath.section": 2, + "lastIndexPath.row": 2, + "rowsInSection": 7, + "NSDownArrowFunctionKey": 1, + "_tableFlags.maintainContentOffsetAfterReload": 2, + "setMaintainContentOffsetAfterReload": 1, + "newValue": 2, + "indexPathWithIndexes": 1, + "indexAtPosition": 2 }, - "Rebol": { - "]": 3, - "[": 3, - "print": 1, - "REBOL": 1, - "func": 1, - "hello": 2 - }, - "PowerShell": { - "Host": 2, - "}": 1, - "{": 1, - ")": 1, - "(": 1, - "-": 2, + "OCaml": { + "{": 11, + "shared": 1, + "open": 4, + "Eliom_content": 1, + "Html5.D": 1, + "Eliom_parameter": 1, + "}": 13, + "server": 2, + "module": 5, + "Example": 1, + "Eliom_registration.App": 1, + "(": 21, + "struct": 5, + "let": 13, + "application_name": 1, + "end": 5, + ")": 23, + "main": 2, + "Eliom_service.service": 1, + "path": 1, + "[": 13, + "]": 13, + "get_params": 1, + "unit": 5, + "client": 1, + "hello_popup": 2, + "Dom_html.window##alert": 1, + "Js.string": 1, + "_": 2, + "Example.register": 1, + "service": 1, + "fun": 9, + "-": 22, + "Lwt.return": 1, + "html": 1, + "head": 1, + "title": 1, + "pcdata": 4, + "body": 1, + "h1": 1, + ";": 14, + "p": 1, + "h2": 1, + "a": 4, + "a_onclick": 1, + "type": 2, + "Ops": 2, + "@": 6, + "f": 10, + "k": 21, + "|": 15, + "x": 14, + "List": 1, + "rec": 3, + "map": 3, + "l": 8, + "match": 4, + "with": 4, + "hd": 6, + "tl": 6, + "fold": 2, + "acc": 5, + "Option": 1, + "opt": 2, + "None": 5, + "Some": 5, + "Lazy": 1, + "option": 1, + "mutable": 1, + "waiters": 5, + "make": 1, + "push": 4, + "cps": 7, + "value": 3, + "force": 1, + "l.value": 2, + "when": 1, + "l.waiters": 5, + "<->": 3, "function": 1, - "Write": 2, - "hello": 1 + "Base.List.iter": 1, + "l.push": 1, + "<": 1, + "get_state": 1, + "lazy_from_val": 1 + }, + "Omgrofl": { + "lol": 14, + "iz": 11, + "wtf": 1, + "liek": 1, + "lmao": 1, + "brb": 1, + "w00t": 1, + "Hello": 1, + "World": 1, + "rofl": 13, + "lool": 5, + "loool": 6, + "stfu": 1 }, "Opa": { "server": 1, - "}": 2, - "page": 1, - "{": 2, - "Server.start": 1, - ")": 4, - "": 2, - "-": 1, - "(": 4, - "title": 1, - "function": 1, - "Server.http": 1, - "Hello": 2, "Server.one_page_server": 1, - "world": 2, - "

": 2 - }, - "GAS": { - "LASFDE1": 3, - "_main.eh": 2, - ".globl": 2, - ".byte": 20, - "LSCIE1": 2, - "strip_static_syms": 1, - "coalesced": 1, - "LFE3": 2, - "rip": 1, - "rsp": 1, - "LECIE1": 2, - ".set": 5, - "LCFI1": 2, - "LCFI0": 3, - "LFB3": 4, - ".text": 1, - "LC0": 2, - ".": 1, - "-": 7, - "L": 10, - "live_support": 1, - "+": 2, - "_puts": 1, - ")": 1, - "(": 1, - "%": 6, - "__TEXT": 1, - "movl": 1, - "leaq": 1, - "movq": 1, - "_main": 2, - ".quad": 2, - ".align": 2, - ".long": 6, - "eax": 1, - "rbp": 2, - "set": 10, - ".section": 1, - "ret": 1, - ".cstring": 1, - ".subsections_via_symbols": 1, - "xd": 1, - "xe": 1, - "LSFDE1": 1, - "xc": 1, - "no_toc": 1, - "call": 1, - "pushq": 1, - ".ascii": 2, - "LEFDE1": 2, - "EH_frame1": 2, - "__eh_frame": 1, - "leave": 1, - "rdi": 1 - }, - "CoffeeScript": { - "offset": 4, - "resume": 2, - "access": 1, - "opts": 1, - "._nodeModulePaths": 1, - "yes": 5, - "NUMBER.exec": 1, - "getAddress": 3, - "handle": 1, - "quit": 1, - "Subdomain": 4, - ".compile": 1, - "comment.length": 1, - "regexToken": 1, - "xFF": 1, - "NS_T_CNAME": 1, - "HEREGEX": 1, - "octalLiteral": 2, - "meters": 2, - "level.": 3, - "##": 1, - "parseInt": 5, - "@numberToken": 1, - "Subdomain.extract": 1, - "break": 1, - "scripts": 2, - "process.argv": 1, - "sandbox.root": 1, - "code.": 1, - "initialize": 1, - "libexecPath": 1, - "pause": 2, - "/": 44, - "ensure": 1, - "dnsserver.Server": 1, - "value.length": 2, - "address": 4, - "@pool.stdout": 1, - "debugger": 1, - "Script.createContext": 2, - "o.bare": 1, - "switch": 7, - ".type": 1, - "@statCallbacks": 3, - "function": 2, - "IDENTIFIER.exec": 1, - "-": 107, - "contents": 2, - "basename": 2, - "||": 3, - "CoffeeScript": 1, - "script": 7, - "vm": 1, - "@length": 3, - "NS_RCODE_NXDOMAIN": 2, - "@firstHost": 1, - "doc": 11, - "+": 31, - "var": 1, - "move": 3, - "question": 5, - "str.charAt": 1, - "alwaysRestart": 2, - "__extends": 1, - ")": 196, - "encode": 1, - "exists": 5, - "lexer": 1, - "@configuration": 1, - "compare": 1, - "///g": 1, - "comment": 2, - "tom": 1, - "The": 7, - "@indebt": 1, - "EncodedSubdomain.pattern.test": 1, - "IPAddressSubdomain.pattern.test": 1, - "powrc": 3, - "range": 1, - "private": 1, - "@outdentToken": 1, - "path": 3, - ".spaced": 1, - "heregex": 1, - "fs": 2, - "mname": 2, - "lexer.tokenize": 3, - "number.length": 1, - "@loadScriptEnvironment": 1, - "default": 1, - "tok": 5, - "}": 34, - "%": 1, - "THROW": 1, - "tom.move": 1, - "path.extname": 1, - "Error": 1, - ".rewrite": 1, - "require.extensions": 3, - "size": 1, - "join": 8, - "###": 3, - "exports.tokens": 1, - "HEREGEX_OMIT": 3, - "off": 1, - "/E/.test": 1, - "LINE_BREAK": 2, - "outdentation": 1, - "*/": 2, - "@labels": 2, - ".POW_TIMEOUT": 1, - "no": 3, - "{": 31, - "@extract": 1, - "expire": 2, - "@soa": 2, - "dnsserver": 1, - "imgy": 2, - "leading": 1, - "#": 35, - "isnt": 7, - "fs.realpathSync": 2, - "retry": 2, - "@configuration.rvmPath": 1, - "sourceScriptEnv": 3, - "doubles": 1, - "compact": 1, - "restart": 1, - "SERVER_PORT": 1, - "nack.createPool": 1, - "static": 1, - "document.getElementsByTagName": 1, - "match": 23, - "opposite": 2, - "doc.indexOf": 1, - "filename": 6, - "math": 1, - "super": 4, - "@jsToken": 1, - "void": 1, - "starting": 1, - "vm.runInContext": 1, - "tokenize": 1, - "require.registerExtension": 2, - "question.name": 3, - "w": 2, - "@yylineno": 1, - "jsToken": 1, - "spaced": 1, - "string.length": 1, - "xhr.open": 1, - "rvmrcExists": 2, - "stats.mtime.getTime": 1, - "@configuration.getLogger": 1, - "escaped": 1, - "continueCount": 3, - "@tokens.push": 1, - "xhr.onreadystatechange": 1, - "mainModule._compile": 2, - "Array": 1, - "flags": 2, - "@literalToken": 1, - "@loadRvmEnvironment": 1, - "character": 1, - "content": 4, - "options.filename": 5, - "opts.line": 1, - "_module.paths": 1, - "@error": 10, - "vm.runInThisContext": 1, - "when": 16, - "RESERVED": 3, - "typeof": 2, - "root": 1, - "runners": 1, - "runScripts": 3, - "LOGIC": 3, - "@address": 2, - "NS_T_SOA": 2, - "mtimeChanged": 2, - "@logger.error": 3, - "package": 1, - "index": 4, - "d*": 1, - "COMPARE": 3, - "COMMENT": 2, - "or": 22, - "re.match": 1, - "__bind": 1, - "err": 20, - "line.": 1, - "@logger.warning": 1, - "tokens.length": 1, - "sanitizeHeredoc": 1, - "INDEXABLE": 2, - "s": 10, - ".toString": 3, - "signs": 1, - "whitespace": 1, - ".*": 1, - "parser": 1, - "CoffeeScript.load": 2, - "addEventListener": 1, - "String": 1, - "xhr.overrideMimeType": 1, - "else": 53, - "binaryLiteral": 2, - "input": 1, - "Stream": 1, - "elvis": 1, - "stats": 1, - "NOT_REGEX.concat": 1, - "compound": 1, - "commentToken": 1, - "id.toUpperCase": 1, - "xhr.send": 1, - "_require": 2, - "BOX": 1, - "/.exec": 2, - "on": 3, - "minimum": 2, - "@queryRestartFile": 2, - "#.*": 1, - "every": 1, - "over": 1, - "@seenFor": 4, - "word": 1, - "EncodedSubdomain": 2, - "protected": 1, - "implements": 1, - "__hasProp": 1, - "this": 6, - "options.modulename": 1, - "@outdebt": 1, - "o": 4, - "NS_T_NS": 2, - "resolve": 2, - "then": 24, - "NOT_SPACED_REGEX": 2, - "lex": 1, - ".join": 2, - "body.replace": 1, - "//": 1, - "&&": 1, - "MATH": 3, - "heregexToken": 1, - "@code": 1, - "subdomain.getAddress": 1, - "req.question": 1, - "MULTI_DENT": 1, - "xhr": 2, - "callback": 35, - "input.length": 1, - "while": 4, - "reserved": 1, - "NS_T_A": 3, - "OUTDENT": 1, - "HEREGEX.exec": 1, - "identifierToken": 1, - "script.src": 2, - "forcedIdentifier": 4, - "ip.push": 1, - "@pool.on": 2, - "@configuration.env": 1, - "scriptExists": 2, - "ready": 1, - "Animal": 3, - "UNARY": 4, - "sandbox": 8, - "k": 4, - "alert": 4, - "exports.VERSION": 1, - "TRAILING_SPACES": 2, - "options.sandbox": 4, - "exports.compile": 1, - "@for": 2, - "exports.Subdomain": 1, - "nack": 1, - "LINE_CONTINUER": 1, - "let": 2, - "case": 1, - "coffees": 2, - "token": 1, - "Hello": 1, - "s.type": 1, - "COFFEE_KEYWORDS": 1, - "octalEsc": 1, - "makeString": 1, - "tokens": 5, - "name.toLowerCase": 1, - "createSOA": 2, - "value...": 1, - "i": 8, - "SHIFT": 3, - "module": 1, - "string.indexOf": 1, - "of": 7, - "<": 6, - "id.reserved": 1, - "@constructor.rvmBoilerplate": 1, - "fill": 1, - "ip.split": 1, - "async.reduce": 1, - "disallow": 1, - "header": 1, - "@heregexToken": 1, - "continue": 3, - "length": 4, - "thing": 1, - "enum": 1, - "@name": 2, - "COMPOUND_ASSIGN": 2, - "@commentToken": 1, - "Date": 1, - "loadScriptEnvironment": 1, - "with": 1, - "colon": 3, - "PATTERN.test": 1, - "@restartIfNecessary": 1, - "parsed": 1, - "CoffeeScript.eval": 1, - "extends": 6, - "JS_KEYWORDS": 1, - "heredocToken": 1, - "unless": 19, - "Matches": 1, - "parser.lexer": 1, - "WHITESPACE": 1, - "i..": 1, - "sandbox.global": 1, - "for": 14, - "@ends": 1, - "path.dirname": 2, - ".POW_WORKERS": 1, - "__slice": 1, - "XMLHttpRequest": 1, - "res.addRR": 2, - "options": 16, - "@indent": 3, - "SIMPLESTR.exec": 1, - "setInput": 1, - "window": 1, - "boilerplate": 2, - "restartIfNecessary": 1, - "anything": 1, - "xhr.responseText": 1, - "value": 25, - "parser.parse": 3, - "@tag": 3, - "a": 2, - "terminate": 1, - "readyCallback": 2, - "@pool": 2, - "///": 12, - "NOT_REGEX": 2, - "@chunk.match": 1, - "INVERSES": 2, - "tokens.": 1, - "exports.decode": 1, - "req.proxyMetaVariables": 1, - "url": 2, - "name": 5, - "domain": 6, - "idle": 1, - "@escapeLines": 1, - "STRING": 2, - "domain.length": 1, - "serial": 2, - "rvm": 1, - "name.capitalize": 1, - "request": 2, - "@token": 12, - "not": 4, - "ip": 2, - "name.length": 1, - "question.class": 2, - "decode": 2, - "isNSRequest": 2, - "module.exports": 1, - "coffees.length": 1, - "here": 3, - "dnsserver.createSOA": 1, - "domain.toLowerCase": 1, - "s*": 1, - "equals": 1, - "letter": 1, - "doc.replace": 2, - "@yytext": 1, - "]": 134, - "body": 2, - "@configuration.dstPort.toString": 1, - "in": 32, - "CoffeeScript.require": 1, - "str.length": 1, - "regex": 5, - "_module.filename": 1, - "Lexer": 3, - "isEmpty": 1, - "@quitCallbacks": 3, - "attempt.length": 1, - "[": 134, - "JS_FORBIDDEN": 1, - "compile": 5, - "module._compile": 1, - "HEREDOC_ILLEGAL": 1, - "value.replace": 2, - "RELATION": 3, - "@rootAddress": 2, - "@logger.info": 1, - "rvmExists": 2, - "loop": 1, - "balancedString": 1, - ".": 13, - "byte": 2, - "contents.indexOf": 1, - "@pool.proxy": 1, - "export": 1, - "own": 2, - "line": 6, - "merge": 1, - ".split": 1, - "HEREDOC_ILLEGAL.test": 1, - "at": 2, - "winner": 2, - ".replace": 3, - "@statCallbacks.length": 1, - "HEREDOC_INDENT.exec": 1, - "attachEvent": 1, - "js": 5, - "@domain": 3, - "BOOL": 1, - "import": 1, - "lexedLength": 2, - "consumes": 1, - "Horse": 2, - "<=>": 1, - "PATTERN": 1, - "rname": 2, - "@rvmBoilerplate": 1, - "require": 21, - "exports.nodes": 1, - "extractSubdomain": 1, - "@configuration.timeout": 1, - "stack.push": 1, - "@sanitizeHeredoc": 2, - "*": 21, - "@on": 1, - "attempt": 2, - "@pair": 1, - "id.length": 1, - "instanceof": 2, - "@lineToken": 1, - "HEREDOC.exec": 1, - "return": 29, - "<<": 1, - "@indents": 1, - "mainModule.moduleCache": 1, - "if": 102, - "Server": 2, - "process": 2, - ".trim": 1, - "by": 1, - "tagParameters": 1, - "(": 193, - "all": 1, - "execute": 3, - "sam": 1, - "fs.readFile": 1, - "S": 10, - "EXTENDS": 1, - "MULTILINER": 2, - "WHITESPACE.test": 1, - "question.type": 2, - "script.length": 1, - "constructor": 6, - "id": 16, - "@labels.length": 1, - "@subdomain": 1, - ".isEmpty": 1, - "@pool.stderr": 1, - "async": 1, - "&": 4, - "@ends.push": 1, - "math.cube": 1, - "statCallback": 2, - "@root": 8, - "CODE": 1, - "@ends.pop": 1, - "@tokens.pop": 1, - "starts": 1, - "exports.helpers": 2, - "mainModule.filename": 4, - "IPAddressSubdomain": 2, - "Module": 2, - "|": 21, - "res.send": 1, - "x/.test": 1, - "@regexToken": 1, - "runners...": 1, - "@extractSubdomain": 1, - "NS_C_IN": 5, - "next": 3, - "string": 9, - "@stringToken": 1, - "print": 1, - "xhr.readyState": 1, - "interface": 1, - "closeIndentation": 1, - "/g": 3, - "remainder": 1, - "fs.readFileSync": 1, - "exports.createServer": 1, - "subdomain": 10, - "JSTOKEN": 1, - "logic": 1, - "@balancedString": 1, - "catch": 2, - "Snake": 2, - "tag": 33, - "JSTOKEN.exec": 1, - "_module": 3, - ".getTime": 1, - "@configuration.workers": 1, - "loadEnvironment": 1, - "setPoolRunOnceFlag": 1, - "x": 6, - "exports.encode": 1, - "exports.Lexer": 1, - "vm.Script": 1, - "opts.rewrite": 1, - "CoffeeScript.run": 3, - "tokens.push": 1, - "@interpolateString": 2, - "current": 5, - "Module._load": 1, - "z0": 2, - "isARequest": 2, - "queryRestartFile": 1, - "s*#": 1, - "finally": 2, - "str": 1, - "under": 1, - "console.log": 1, - "sandbox.GLOBAL": 1, - "indent": 7, - "@chunk": 9, - "form": 1, - "@initialize": 2, - "__indexOf": 1, - "stack.length": 1, - "v": 4, - "square": 4, - "re": 1, - "quote": 5, - "@handleRequest": 1, - "global": 3, - "cube": 1, - "delete": 1, - "Module._nodeModulePaths": 1, - "window.addEventListener": 1, - "COFFEE_ALIAS_MAP": 1, - "@pool.quit": 1, - "@quitCallbacks.push": 1, - "other": 1, - "window.ActiveXObject": 1, - "fs.writeFile": 1, - "CALLABLE.concat": 1, - "pairing": 1, - "handleRequest": 1, - "env": 18, - "sandbox.__dirname": 1, - "options.header": 1, - "levels.": 1, - "class": 11, - "REGEX": 1, - "splat": 1, - "_require.resolve": 1, - "r": 4, - "@pool.runOnce": 1, - "shift": 2, - "code.replace": 1, - "@identifierToken": 1, - "lastMtime": 2, - "COFFEE_ALIASES": 1, - "@tokens": 7, - "name.slice": 2, - "fs.stat": 1, - "HEREDOC_INDENT": 1, - "arguments": 1, - "source": 5, - ".constructor": 1, - "ip.join": 1, - "SIMPLESTR": 1, - "undefined": 1, - "last": 3, - "script.innerHTML": 1, - "const": 1, - "try": 3, - "n": 16, - "before": 2, - "soak": 1, - "OPERATOR": 1, - "..1": 1, - "//g": 1, - "CALLABLE": 2, - "Function": 1, - "race": 1, - "@logger.debug": 2, - "match.length": 1, - "comments": 1, - "mainModule.paths": 1, - "Script": 2, - "@statCallbacks.push": 1, - "RackApplication": 1, - "_require.paths": 1, - "num": 2, - "eval": 2, - "count": 5, - "missing": 1, - "sandbox.require": 2, - "new": 12, - "@terminate": 2, - "exports.RESERVED": 1, - "upcomingInput": 1, - "@closeIndentation": 1, - "xhr.status": 1, - "prev": 17, - "heredoc.charAt": 1, - "@ready": 3, - "loadRvmEnvironment": 1, - "native": 1, - "Object.getOwnPropertyNames": 1, - "Module._resolveFilename": 1, - "heregex.length": 1, - "indexOf": 1, - "stack.pop": 2, - "true": 8, - "cubes": 1, - "/.test": 4, - "stack": 4, - "list": 2, - "until": 1, - "code": 20, - "indentation": 3, - "prev.spaced": 3, - "n/": 1, - "require.main": 1, - "herecomment": 4, - "body.indexOf": 1, - "options.bare": 2, - "Math.sqrt": 1, - "REGEX.exec": 1, - "@logger": 1, - "sandbox.__filename": 3, - "writeRvmBoilerplate": 1, - "@restart": 1, - "assign": 1, - "public": 1, - "throw": 3, - "exports.run": 1, - "res": 3, - "@quit": 3, - "bufferLines": 3, - "stringToken": 1, - "interpolateString": 1, - "and": 20, - "up": 1, - "exports.eval": 1, - "d": 2, - "exports.Server": 1, - "@mtime": 5, - "@pos": 2, - "mainModule": 1, - "the": 4, - "@pattern": 2, - "res.header.rcode": 1, - "@state": 11, - "n/g": 1, - "parser.yy": 1, - "@whitespaceToken": 1, - "CoffeeScript.compile": 2, - "req": 4, - "indent.length": 1, - "process.cwd": 1, - "do": 2, - "b": 1, - "heredoc": 4, - "@labels.slice": 1, - "@readyCallbacks": 3, - "Rewriter": 2, - "numberToken": 1, - "is": 36, - "quitCallback": 2, - "@loadEnvironment": 1, - "@readyCallbacks.push": 1, - "right": 1, - "yield": 1, - "end": 2, - "number": 13, - "@heredocToken": 1, - "refresh": 2, - "false": 4, - "@setPoolRunOnceFlag": 1, - "zero": 1, - "sam.move": 1, - "r/g": 1, - "null": 15, - "@chunk.charAt": 3, - "err.message": 2, - "@line": 4, - "sandbox.module": 2, - "code.trim": 1, - "@value": 1 - }, - "Lasso": { - "now": 23, - "compatibility.": 2, - "#1": 3, - "varname": 4, - "matches": 1, - "...": 3, - "@": 8, - "2007": 6, - "#maxage": 4, - "next.": 2, - "for": 65, - "with": 25, - "#error_lang": 12, - "%": 14, - "knop_stripbackticks": 2, - "#charlist": 6, - "values.": 2, - "Return": 7, - "records.": 2, - "copy": 4, - "iterating": 2, - "#sql": 42, - "scratch.": 2, - "priority=": 2, - "available": 2, - "decimal": 5, - "doctype": 6, - "id": 7, - "Returns": 2, - "#params": 5, - "of": 24, - "/define_type": 4, - "T": 3, - "insert": 18, - "map": 23, - "/iterate": 12, - "long": 2, - "9": 2, - "incorporated": 1, - "stack": 2, - "paren...": 2, - "knop_timer": 2, - "incremented": 2, - "#doctype": 4, - "#data": 14, - "which": 2, - "_index": 1, - "registered": 2, - "settable": 4, - "existing": 2, - "optionally": 2, - "Extended": 2, - "Useful": 2, - "through": 2, - "keyfield": 4, - "#t": 2, - "store": 4, - "save": 2, - "sql.": 2, - "sense": 2, - "always": 2, - "/Protect": 1, - "12": 8, - "#xhtmlparam": 4, - "bug": 2, - "queries": 2, - "site": 4, - "namespace": 16, - "verification": 2, - "problems": 2, - "": 6, - "marker": 4, - "below": 2, - "//fail_if": 6, - "html.": 2, - "resultset": 2, - "string_findregexp": 8, - "options": 2, - "required=": 2, - "newoptions": 1, - "read": 1, - "keeplock": 4, - "we": 2, - "String": 1, - "LIMIT": 2, - "|": 13, - "BeginsWith": 1, - "timestamp": 4, - "Thanks": 2, - "boolean": 4, - "a": 52, - "temp": 12, - "2012": 4, - "06": 2, - "Lasso_TagExists": 1, - "yyyyMMdd": 2, - "used.": 2, - "#trace": 4, - "Literal": 2, - "": 3, - "normally": 2, - "objects.": 2, - "returning": 2, - "return": 75, - "#numericValue": 4, - "knop_seed": 2, - "check": 6, - "+": 146, - "touble": 2, - "description": 34, - "ExcludeField": 1, - "knop_debug": 4, - "returnfield": 1, - "No": 1, - "correctly": 2, - "getrecord": 8, - "upper": 2, - "releasing": 2, - "nextrecord": 12, - "saverecord": 8, - "in.": 2, - "24": 2, - "record": 20, - "u": 1, - "SQL": 2, - "but": 2, - "internal": 2, - "set": 10, - "RW": 6, - "Encrypt_Blowfish": 2, - "Thread_RWLock": 6, - "self": 72, - "exists": 2, - "Z": 1, - "slower": 2, - "#cache_name": 72, - "localized": 2, - "so": 16, - "transparently": 2, - "TODO": 2, - "update": 2, - "obytes": 3, - "storage": 8, - "EndPosition": 2, - "Lasso": 15, - "": 1, - "searchresult": 2, - "using": 8, - "nParameters": 2, - "variable.": 2, - "default": 4, - "instead": 4, - "initiate": 10, - "generated": 2, - "Wiki": 2, - "once": 4, - "causes": 4, - "corresponding": 2, - "operations": 2, - "remains": 2, - "adjustments": 4, - "type": 63, - "code": 2, - "UTF": 4, - "n": 30, - "honors": 2, - "Discard": 1, - "since": 4, - "here": 2, - "returned": 6, - "S": 2, - "Second": 1, - "shown_first": 2, - "_fields": 1, - "addlanguage": 4, - "onconvert": 2, - "maxage": 2, - "Decode_": 1, - "8": 6, - "description=": 2, - "debug_trace": 2, - "zero": 2, - "how": 2, - "old": 4, - "remove": 6, - "incorrect": 2, - "Changed": 6, - "tag_name": 2, - "bom_utf8": 1, - "Code": 2, - "simple": 2, - "case.": 2, - "PostParams": 1, - "again": 2, - "error": 22, - "recursion": 2, - "11": 8, - "out": 2, - "field": 26, - "Escape": 1, - "error_lang": 2, - "seconds": 4, - "ctype": 2, - "_keyfield": 4, - "L": 2, - "#expires": 4, - "QT": 4, - "current": 10, - "While": 1, - "1": 2, - "language": 10, - "#value": 14, - "index": 4, - "keyvalue": 10, - "Used": 2, - "able": 14, - "define": 20, - "#lock": 12, - "inserting": 2, - "added": 10, - "String_Remove": 2, - "{": 18, - "action_statement": 2, - "end": 2, - "formatted": 2, - "should": 4, - "array.": 2, - "or": 6, - "Format": 1, - "require": 1, - "Encode_JSON": 1, - "look": 2, - "onCreate": 1, - "05": 4, - "/Define_Tag": 1, - "ms": 2, - "FileMaker": 2, - "json_consume_string": 3, - "must": 4, - "unlock": 6, - "second": 8, - "was": 6, - "any": 14, - "json_consume_object": 2, - "decrypt_blowfish": 2, - "Reset": 1, - "documentation.": 2, - "other": 4, - "create": 6, - "entire": 4, - "SQL_CALC_FOUND_ROWS": 2, - "import8bits": 4, - "codes": 2, - "integer": 30, - "response_localpath": 8, - "23": 4, - "t": 8, - "start": 5, - "removeLeading": 1, - "oops": 4, - "#e": 13, - "http": 6, - "reset": 2, - "select": 1, - "#obytes": 5, - "locked": 2, - "common": 4, - "unescapes": 1, - "Copyright": 1, - "//www.lassosoft.com/json": 1, - "properties": 4, - "been": 2, - "public": 1, - "asString": 3, - "Local": 7, - "whitespace": 3, - "base": 6, - "captured": 2, - "recorddata": 6, - "around": 2, - "json_deserialize": 1, - "more": 2, - "@#errorcodes": 2, - "#base": 8, - "REALLY": 2, - "than": 2, - "deleterecord": 4, - "mysteriously": 2, - "session_addvar": 4, - "local": 116, - "performance.": 2, - "JSON_RPCCall": 1, - "be": 38, - "no": 2, - "html": 4, - "handling": 2, - "trace": 2, - "client_address": 1, - "Fields": 1, - "consume_token": 1, - "excludefield": 1, - "knop_cachedelete": 2, - "First": 4, - "earlier": 2, - "version": 4, - "pointer": 8, - "Include_URL": 1, - "removed": 2, - "form": 2, - "f": 2, - "new": 14, - "json_rpccall": 1, - "by": 12, - "priority": 8, - "help": 10, - "10": 2, - "All": 4, - "Done": 2, - "warning": 2, - "input": 2, - "see": 16, - "#custom_language": 10, - "framework": 2, - "LassoSoft": 1, - "0": 2, - "adding": 2, - "and": 52, - "better": 2, - "backwards": 2, - "option": 2, - "xhtml": 28, - "replace": 8, - "lower": 2, - "aliases": 2, - "access": 2, - "caused": 2, - "locking": 4, - "numbers": 2, - "resets": 2, - "/While": 1, - "LassoScript": 1, - "atbegin": 2, - "consume_string": 1, - "datatype": 2, - "lve": 2, - "#tags": 2, - "never": 2, - "content_body": 14, - "2010": 4, - "04": 8, - "trait_json_serialize": 2, - "Removed": 2, - "_temp": 1, - "foreachpair": 1, - "touch": 2, - ")": 639, - "unescape": 1, - "#endslash": 10, - "also": 5, - "TZ": 2, - "priorityqueue": 2, - "FROM": 2, - "//tagswap.net/found_rows": 2, - "Created": 4, - "find": 57, - "that": 18, - "pair": 1, - "querys": 2, - "s": 2, - "it.": 2, - "global": 40, - "Get": 2, - "contains": 2, - "#id": 2, - "inline": 4, - "#timer": 2, - "False": 1, - "lock": 24, - "Required": 1, - "reaching": 2, - "Decode_JSON": 2, - "It": 2, - "not": 10, - "gmt": 1, - "cache_name": 2, - "iterate": 12, - "Default": 2, - "inaccurate": 2, - "_knop_data": 10, - "Contains": 2, - "most": 2, - "before": 4, - "normal": 2, - "handler": 2, - "__jsonclass__": 6, - "Internal.": 2, - "first": 12, - "exists.": 2, - "__html_reply__": 4, - "RPCCall": 1, - "all": 6, - "//Replace": 1, - "only": 2, - "length": 8, - "parameter.": 2, - "Optional": 1, - "nicely": 2, - "duration": 4, - "Base": 2, - "millisecond": 2, - "asstring": 4, - "6": 2, - "provided": 1, - "knop_base.": 2, - "loop_abort": 2, - "Find": 3, - "HHmmss": 1, - "buffer.": 2, - "types": 10, - "#ibytes": 17, - "lang": 2, - "||": 8, - "objects": 2, - "isa": 25, - "name": 32, - "db": 2, - "there": 2, - "prototype": 4, - "will": 12, - "cached": 8, - "returns": 4, - "run": 2, - "loop": 2, - "e": 13, - "fields": 2, - "to": 98, - "use": 10, - "Looks": 2, - "Decoding": 1, - "proper": 2, - "errors.": 2, - "improve": 2, - "knop": 6, - "request": 2, - "identify": 2, - "inlinename.": 4, - "user": 4, - "stripbackticks": 2, - "database": 14, - "/": 6, - "If": 4, - "expression": 6, - "shortcut": 2, - "**/": 1, - "conversion": 4, - "uselimit": 2, - "JSON_Records": 3, - "merge": 2, - "get": 12, - "writeunlock": 4, - "custom": 8, - "flag": 2, - "Cache": 2, - "#key": 12, - "28": 2, - "math_random": 2, - "in": 46, - "/If": 3, - "fixed": 4, - "calling": 2, - "SP": 4, - "Knop": 6, - "knop_databaserows": 2, - "#session": 10, - "getrecord.": 2, - "03": 2, - "Ric": 2, - "Can": 2, - "json_consume_array": 3, - "export8bits": 6, - "serialization_reader": 1, - "caching": 2, - "query": 4, - "json_serialize": 18, - "(": 640, - "accurate": 2, - "list": 4, - "recordindex": 4, - "ID": 1, - "required": 10, - "errors": 12, - "thread": 6, - "xml": 1, - "data": 12, - "consume_object": 1, - "r": 8, - "": 1, - "exit": 2, - "Min": 2, - "example": 2, - "recordpointer": 2, - "null": 26, - "_date_msec": 4, - "object": 7, - "Else": 7, - "error_msg": 15, - "ReturnField": 1, - "<": 7, - "Is": 1, - "addrecord": 4, - "gets": 2, - "messages": 6, - "used": 12, - "until": 2, - "Looking": 2, - "boilerplate": 2, - "level": 2, - "eachPair": 1, - "time": 8, - "Define_Tag": 1, - "MySQL": 2, - "this": 14, - "creating": 4, - "tags": 14, - "interact": 2, - "..onCreate": 1, - "nav": 4, - "pr": 1, - "records": 4, - "String_IsAlphaNumeric": 2, - "#delimit": 7, - "NOTES": 4, - "bytes": 8, - "15": 2, - "onassign": 2, - "json_literal": 1, - "Encoding": 1, - "KeyField": 1, - "except": 2, - "knop_lang": 8, - "an": 8, - "page": 14, - "well": 2, - "5": 4, - "renderfooter": 2, - "Added": 40, - "deprecation": 2, - "native": 2, - "work": 6, - "longer": 2, - "doesn": 4, - "tag": 11, - "even": 2, - "automatically": 2, - "Add": 2, - "string_IsNumeric": 1, - "knop_user": 4, - "specified": 8, - "it": 20, - "//##################################################################": 4, - "knop_base": 8, - "split": 2, - "tagtime": 4, - "can": 14, - "d": 2, - "knoptype": 2, - "cache": 4, - "from": 6, - "reading": 2, - "double": 2, - "knop_foundrows": 2, - "09": 10, - "key": 3, - "json_consume_token": 2, - "names": 4, - "I": 4, - "_records": 1, - "unless": 2, - "lockfield": 2, - "_exclude": 1, - "includes": 2, - "query.": 2, - "": 1, - "condition": 4, - "//bugs.mysql.com/bug.php": 2, - ".": 5, - "field_names": 2, - "Namespace": 1, - "_unknowntag": 6, - "ReplaceOnlyOne": 2, - "vars": 8, - "ibytes": 9, - "bad": 2, - "table": 6, - "message": 6, - "session_id": 6, - "Supports": 4, - "JSON": 2, - "define_tag": 48, - "are": 4, - "#method": 1, - "//localhost/lassoapps.8/rpc/rpc.lasso": 1, - "token": 1, - "statement": 4, - "found": 5, - "corrected": 2, - "test": 2, - "params": 11, - "sql": 2, - "specifying": 2, - "]": 23, - "parameter": 8, - "size": 24, - "pre": 4, - "knop_unique": 2, - "over": 2, - "instance": 8, - "#custom_string": 4, - "updates": 2, - "reporting": 2, - "working": 2, - "2009": 14, - "#item": 10, - "Protect": 1, - "JS": 126, - "capturesearchvars": 2, - "_return": 1, - "found_count": 11, - "Debug": 2, - "defined": 4, - "chunk": 2, - "/define_tag": 36, - "Finds": 2, - "found.": 2, - "later": 2, - "datasources": 2, - "true": 12, - "Size": 2, - "Parameters": 4, - "improved": 4, - "&&": 30, - "comment": 2, - "up": 4, - "#RandChars": 4, - "_record": 1, - "if": 76, - "Lewis": 2, - "trait": 1, - "thought": 2, - "queue": 2, - "add": 12, - "at": 10, - "/inline": 2, - "specific": 2, - ";": 573, - "@#output": 2, - "/if": 53, - "error_code": 11, - "#eol": 8, - "Lasso_UniqueID": 1, - "root": 2, - "Max": 2, - "foreach": 1, - "when": 10, - "relevant": 2, - "removeleading": 2, - "standard": 2, - "hoping": 2, - "both": 2, - "have": 6, - "14": 4, - "plain": 2, - "while": 9, - "general": 2, - "When": 2, - "seed": 6, - "removetrailing": 8, - "one": 2, - "occurrence": 2, - "construction": 2, - "much": 2, - "Custom": 2, - "This": 5, - "dummy": 2, - "//": 169, - "JSON_": 1, - "#seed": 36, - "trait_forEach": 1, - "keyvalues": 4, - "optional": 36, - "same": 4, - "#host": 4, - "#errorcodes": 4, - "debug": 2, - "StartPosition": 2, - "is": 35, - "format": 7, - "fastest.": 2, - "Seed": 2, - "string": 59, - "databases": 2, - "rows": 1, - "Inc.": 1, - "documentation": 2, - "ignored": 2, - "result": 6, - "mixed": 2, - "misplaced": 2, - "@#_output": 1, - "stored": 2, - "progress.": 2, - "#cryptvalue": 10, - "variable": 8, - "server_name": 6, - "maxrecords_value": 2, - "-": 2248, - "namespace=": 12, - "_output": 1, - "strings": 6, - "The": 6, - "literal": 3, - "Fix": 2, - "last": 4, - "explicitly": 2, - "ORDER": 2, - "output": 30, - "Introduced": 2, - "val": 1, - "increments": 2, - "reference": 10, - "on": 1, - "else": 32, - "EndsWith": 1, - "COUNT": 2, - "Johan": 2, - "isknoptype": 2, - "*/": 2, - "client_ip": 1, - "01": 4, - "Corrected": 8, - "known": 2, - "convert": 4, - "2008": 6, - "/resultset": 2, - "writing": 6, - "usually": 2, - "_field": 1, - "support": 6, - "define_type": 14, - "Make": 2, - "&": 21, - "knop_cachefetch": 4, - "value": 14, - "without": 4, - "Math_Random": 2, - "string_replaceregexp": 8, - "#rest": 1, - "join": 5, - "ignorecase": 12, - "method": 7, - "json_object": 2, - "serialize": 1, - "Google": 2, - "example.": 2, - "row": 2, - "output.": 2, - "lasso_tagexists": 4, - "p": 2, - "/while": 7, - "supports": 2, - "delimit": 7, - "false": 8, - "#anyChar": 2, - "retreive": 2, - "as": 26, - "called": 2, - "knop_databaserow": 2, - "GROUP": 4, - "": 3, - "#temp": 19, - "knop_knoptype": 2, - "between": 2, - "array": 20, - "For": 2, - "Replace": 19, - "//............................................................................": 2, - "#pr": 2, - "BY": 6, - "still": 2, - "lasso": 2, - "CHANGE": 4, - "Moved": 6, - "avoid": 2, - "already": 2, - "separate": 2, - "Faster": 2, - "variables": 2, - "regexp": 1, - "Addedd": 2, - "response_filepath": 8, - "session": 4, - "the": 86, - "grid": 2, - "getstring": 2, - "#_records": 1, - "such": 2, - "parent": 5, - "deserialize": 2, - "Map": 3, - "HHmmssZ": 1, - "readlock": 2, - "knop_cache": 2, - "supported": 2, - "knop_cachestore": 4, - "current_record": 2, - "var": 38, - "keys": 6, - "}": 18, - "sure": 2, - "reached.": 2, - "Centralized": 2, - "Loop_Abort": 1, - "internally": 2, - "normalize": 4, - "different": 2, - "Object": 2, - "b": 2, - "#varname": 6, - "provide": 2, - "oncreate": 2, - "after": 2, - "07": 6, - "properly": 4, - "fallback": 4, - "resultset_count": 6, - "precision": 2, - "iterated.": 2, - "readunlock": 2, - "#error_code": 10, - "local_defined": 26, - "#output": 50, - "Implemented": 2, - "compatibility": 4, - "versions": 2, - "error_data": 12, - "#type": 26, - "substring": 6, - "#error_lang_custom": 2, - "works": 4, - "date": 23, - "Adding": 2, - "__lassoservice_ip__": 2, - "break": 2, - "each": 8, - "host": 6, - "suppressed": 2, - "too": 4, - "writelock": 4, - "Syntax": 4, - "[": 22, - "member": 10, - "consume_array": 1 - }, - "C++": { - "NPY_INT": 2, - "PyBytesObject": 1, - "member": 2, - "*__pyx_v_data_np": 2, - "Vector": 13, - "ASSIGN_BIT_XOR": 1, - "LineScrollUp": 1, - "SCI_MOVESELECTEDLINESUP": 1, - "__pyx_v_endian_detector": 6, - "#endif": 82, - "SAR": 1, - "peek": 1, - "newer": 2, - "CPrivKey": 3, - "myclass.fatherIndex": 2, - "CharRightRectExtend": 1, - "QT_BEGIN_NAMESPACE": 1, - "update": 1, - "which": 2, - "PyNumber_InPlaceTrueDivide": 1, - "": 1, - "ret": 24, - "__Pyx_PyBytes_FromUString": 1, - "mode": 4, - "SerializeUnknownFieldsToArray": 1, - "random": 1, - "(": 2438, - "Py_buffer": 5, - "IsValid": 4, - "through": 2, - "PyObject_GetAttr": 4, - "__pyx_k__i": 2, - "as": 1, - "left": 7, - "LiteralScope*": 1, - "order": 8, - "argc": 2, - "__Pyx_RefNannySetupContext": 13, - "#define": 190, - "IsRunning": 1, - "namespace": 26, - "*__pyx_refnanny": 1, - "__Pyx_PyIndex_AsSsize_t": 1, - "is_unicode": 1, - "Py_TYPE": 4, - "CharacterStream*": 1, - "Token": 212, - "__pyx_t_5numpy_float_t": 1, - "_USE_MATH_DEFINES": 1, - "PyBytes_AS_STRING": 1, - "called": 1, - "range": 1, - "__Pyx_XDECREF": 26, - "dst": 2, - "kASCIISize": 1, - "NULL": 108, - "__pyx_k_tuple_13": 1, - "*env": 1, - "ScanString": 3, - "__Pyx_c_eq": 2, - "qCompress": 2, - "dbDataStructure": 2, - "": 2, - "__Pyx_RaiseNoneNotIterableError": 1, - "operator": 10, - "over": 1, - "ndim": 2, - "kNonStrictEquality": 1, - "NPY_FLOAT": 1, - "CONDITIONAL": 2, - "SetFatalError": 2, - "IsDecimalDigit": 2, - "PyTuple_GET_ITEM": 3, - "*__pyx_v_c": 3, - "continue": 2, - "escape": 1, - "one": 42, - "_has_bits_": 14, - "current_.token": 4, - "SkipField": 1, - "__pyx_L5": 6, - "RemoveCallCompletedCallback": 2, - "there": 1, - "rr": 4, - "GeneratedMessageReflection*": 1, - "CallDepthIsZero": 1, - "SCI_CHARRIGHT": 1, - "SCI_LINESCROLLUP": 1, - "SCI_WORDPARTRIGHT": 1, - "PrinterMode": 1, - "Initialize": 4, - "R": 6, - "__pyx_v_end": 2, - "*__pyx_v_self": 4, - "string*": 11, - "SCI_LINEENDWRAP": 1, - "LiteralBuffer*": 2, - "binary_million": 3, - "scriptPath": 1, - "total_size": 5, - "device": 1, - "callback": 7, - "draw": 1, - "CopyFrom": 5, - "InitializeOncePerProcessImpl": 3, - "LineEndRectExtend": 1, - "*__pyx_f_5numpy_PyArray_MultiIterNew1": 1, - "": 3, - "eckey": 7, - "setup.": 1, - "gridDim": 2, - "SCI_WORDPARTLEFTEXTEND": 1, - "*__pyx_kp_s_3": 1, - "PyString_Type": 2, - "kIsLineTerminator": 1, - "Newline": 1, - "ReadString": 1, - "next_literal_length": 1, - "script": 1, - "loadJSForDebug": 2, - "*descCmd": 1, - "control": 1, - "": 1, - "FLAG_stress_compaction": 1, - "__pyx_v_data": 7, - "__FILE__": 2, - "GOOGLE_PROTOBUF_DECLARE_ONCE": 1, - "The": 8, - "QSCIPRINTER_H": 2, - "LPAREN": 2, - "MakeNewKey": 1, - "MoveSelectedLinesUp": 1, - "__pyx_kp_s_1": 1, - "PyUnicode_Check": 1, - "SetCachedSize": 2, - "clipboard.": 5, - "than": 1, - "PyObject": 221, - "SCI_PASTE": 1, - "const_cast": 3, - "n": 28, - "with": 6, - "*__pyx_v_descr": 2, - "SetUpCaches": 1, - "random_base": 3, - "*sor": 1, - ".length": 3, - "Deserializer*": 2, - "enc": 1, - "reinterpret_cast": 7, - "": 1, - "WordLeftEnd": 1, - "StackFrame": 1, - "FLAG_gc_global": 1, - "NPY_SHORT": 2, - "__Pyx_c_powf": 3, - "actual": 1, - "displayed": 10, - "|": 8, - "tuple": 3, - "ASSIGN_SHL": 1, - "_WIN32": 1, - "can": 3, - "VCHome": 1, - "hasn": 1, - "__Pyx_c_quotf": 2, - "EOS": 1, - "ConvertToUtf16": 2, - "sub": 2, - "text.": 3, - "IsDefaultIsolate": 1, - "PyString_Size": 1, - "Buffer": 2, - "desc": 2, - "LineEndExtend": 1, - "InternalRegisterGeneratedFile": 1, - "EC_KEY_set_public_key": 2, - "hello": 2, - "__pyx_t_10": 7, - "__pyx_ptype_5numpy_ndarray": 2, - "__pyx_refnanny": 5, - "token": 64, - "removed.": 2, - "target": 6, - "DECREF": 1, - "npy_longdouble": 1, - "CYTHON_CCOMPLEX": 12, - "FillHeapNumberWithRandom": 2, - "else": 46, - "UnregisterAll": 1, - "DeleteWordRightEnd": 1, - "Transpose": 1, - "__pyx_k__fields": 1, - "IsLineTerminator": 6, - "myclass.depth": 2, - "DISALLOW_COPY_AND_ASSIGN": 2, - "*__pyx_b": 1, - "STRING": 1, - "-": 227, - "InitAsDefaultInstance": 3, - "vchPrivKey": 1, - "resolver": 3, - "EnforceFlagImplications": 1, - "is_running_": 6, - "__pyx_pf_5numpy_7ndarray_1__releasebuffer__": 2, - "SCI_DELWORDRIGHTEND": 1, - "SUB": 1, - "**tb": 1, - "QVector": 2, - "DeleteWordLeft": 1, - "__Pyx_PyInt_AsChar": 1, - "//Don": 1, - "literal_chars": 1, - "SCI_DOCUMENTSTART": 1, - "SCI_VCHOMEWRAP": 1, - "INC": 1, - "Execute": 1, - "Utf16CharacterStream": 3, - "NPY_OBJECT": 1, - "nextItems": 1, - "private": 12, - "TerminateLiteral": 2, - ";": 2308, - "NPY_UINT": 2, - "root": 1, - "phantom": 1, - "argv": 2, - "SCI_PAGEUPEXTEND": 1, - "__Pyx_c_sumf": 2, - "Python": 1, - "dbDataStructure*": 1, - "INT_MAX": 1, - "for": 18, - "PyArray_STRIDES": 2, - "app.setApplicationName": 1, - "SCI_UPPERCASE": 1, - "blockDim": 2, - "__Pyx_c_is_zero": 3, - "DocumentEndExtend": 1, - "current_.location": 2, - "right.": 2, - "source_pos": 10, - "mag": 2, - "default_instance_": 8, - "PyObject_GetItem": 1, - "*__pyx_n_s__strides": 1, - "PyLong_AS_LONG": 1, - "kIsIdentifierPart": 1, - "kIsIdentifierPart.get": 1, - "SCI_WORDLEFTEND": 1, - "__pyx_t_double_complex_from_parts": 1, - "EC_KEY_dup": 1, - "nBitsS": 3, - "beg_pos": 5, - "__pyx_t_3": 113, - "__pyx_k__Zf": 2, - "PyObject_SetAttrString": 2, - "use": 1, - "EnterDefaultIsolate": 1, - "example": 1, - "PHANTOMJS_VERSION_STRING": 1, - "m_map.insert": 1, - "__pyx_k_9": 1, - "__Pyx_ErrRestore": 1, - "__Pyx_PySequence_GetSlice": 2, - "UnknownFieldSet": 2, - "file": 6, - "__Pyx_CIMAG": 4, - "ScreenResolution": 1, - "CharLeft": 1, - "literal_length": 1, - "npy_int32": 1, - "kLanguageModeMask": 4, - "Py_INCREF": 3, - "DIV": 1, - "SCI_LINETRANSPOSE": 1, - "e": 14, - "__pyx_t_5numpy_int8_t": 1, - "actually": 1, - "*priv_key": 1, - "__pyx_t_5numpy_intp_t": 1, - "*field": 1, - "SignCompact": 2, - "HandleScopeImplementer*": 1, - "": 1, - "GTE": 1, - "kernel": 2, - "PyBUF_C_CONTIGUOUS": 3, - "blockIdx.y*blockDim.y": 1, - "Scanner": 16, - "endl": 1, - "CharLeftExtend": 1, - "app.exec": 1, - "vchPubKeyIn": 2, - "SCI_ZOOMIN": 1, - "__pyx_k__strides": 1, - "__pyx_k__I": 2, - "GIVEREF": 1, - "when": 5, - "app.setOrganizationName": 1, - "sizeof": 14, - "s": 9, - "cast": 1, - "*__pyx_n_s__type_num": 1, - "QVariantMap": 3, - "__pyx_t_5numpy_complex_t": 1, - "type*": 1, - "HeapNumber": 1, - "key2.GetPubKey": 1, - "clear_octal_position": 1, - "__pyx_v_new_offset": 5, - "PyBytes_CheckExact": 1, - "command.": 5, - "*__pyx_v_new_offset": 1, - "*__Pyx_RefNanny": 1, - "__Pyx_PyInt_AsSize_t": 1, - "union": 1, - "cpow": 1, - "__Pyx_c_absf": 3, - "current_token": 1, - "PyLong_AsUnsignedLongLongMask": 1, - "tok": 2, - "env": 3, - "QT_END_NAMESPACE": 1, - "EC_POINT_set_compressed_coordinates_GFp": 1, - "HarmonyModules": 1, - "__Pyx_c_eqf": 2, - "WordLeftExtend": 1, - "PyStringObject": 2, - "ZoomOut": 1, - "kNullValue": 1, - "formatPage": 1, - "*env_instance": 1, - "class": 34, - "__pyx_v_d": 2, - "SCI_DELWORDLEFT": 1, - "secret": 2, - "right": 8, - "SCI_VERTICALCENTRECARET": 1, - "SCI_COPY": 1, - "ASSIGN_SUB": 1, - "vchPubKey.size": 3, - "switch": 3, - "": 1, - "__Pyx_PyInt_AsUnsignedChar": 1, - "npy_uint32": 1, - "EC_KEY_free": 1, - "2": 1, - "GDS_DIR": 1, - "HEAP": 1, - "SamplerRegistry": 1, - "able": 1, - "STRICT_MODE": 2, - "points": 2, - "LEVEL_TWO": 1, - "AddLiteralChar": 2, - "no": 1, - "PyObject_DelAttrString": 2, - "value": 18, - "char**": 2, - "*__pyx_n_s__range": 1, - "__Pyx_c_prod": 2, - "kIsWhiteSpace": 1, - "next_.literal_chars": 13, - "__Pyx_RaiseTooManyValuesError": 1, - "META.": 1, - "QTemporaryFile*": 2, - "Duplicate": 2, - "SetCompactSignature": 2, - "__pyx_n_s__do_awesome_work": 3, - "SCI_LINEENDWRAPEXTEND": 1, - "main": 2, - "": 1, - "PyArray_NDIM": 1, - "GOTREF": 1, - "PyLong_CheckExact": 1, - "myclass.firstLineData": 4, - "extensions": 1, - "resourceFilePath": 1, - "CSecret": 4, - "SharedCtor": 4, - "Key_Up": 1, - "PyObject_HEAD_INIT": 1, - "INT_MIN": 1, - "__pyx_print": 1, - "QPrinter": 3, - "adding": 2, - "temp": 2, - "jsFileEnc": 2, - "SCI_HOMEWRAPEXTEND": 1, - "*__pyx_k_tuple_14": 1, - "ASSIGN_DIV": 1, - "PyTuple_CheckExact": 1, - "BN_CTX_start": 1, - "ctx": 26, - "peek_location": 1, - "__pyx_t_8": 16, - "PyLong_AsUnsignedLongMask": 1, - "void": 152, - "CharLeftRectExtend": 1, - "WrapMode": 3, - "kEmptyString": 12, - "utf8_decoder": 1, - "": 1, - "keys": 3, - "coffee2js": 1, - "data": 2, - "fit": 1, - "__pyx_L13": 2, - "ParsingFlags": 1, - "seen_equal": 1, - "Utils": 4, - "abs": 2, - "COLON": 2, - "len": 1, - "BN_CTX_new": 2, - "SCI_PARAUP": 1, - "google_breakpad": 1, - "regenerate": 1, - "Person": 65, - "PyInt_AsSsize_t": 2, - "names": 2, - "PyArray_HASFIELDS": 1, - "*__pyx_kp_u_15": 1, - "nSize": 2, - "j": 4, - "myclass": 1, - "*tb": 2, - "QObject": 2, - "dialogs.": 1, - "word.": 9, - "graphics.": 2, - "cudaUnbindTexture": 1, - "__pyx_v_offset": 9, - "*__pyx_t_3": 4, - "PyString_FromString": 1, - "Complete": 1, - "Utf8InputBuffer": 2, - "expected": 1, - "SCI_LINEENDEXTEND": 1, - "phantom.execute": 1, - "Use": 1, - "NPY_CFLOAT": 1, - "Value": 23, - "x": 48, - "down": 12, - "conjf": 1, - "__pyx_clineno": 80, - "long": 5, - "new_capacity": 2, - "ecsig": 3, - "LONG_LONG": 1, - "QsciCommandSet": 1, - "unlikely": 69, - "first": 8, - "WordPartLeftExtend": 1, - "": 1, - "cmd": 1, - "NPY_LONG": 1, - "WireFormatLite": 9, - "LineUp": 1, - "Init": 3, - "key2": 1, - "EXTENDED_MODE": 2, - "BN_mul_word": 1, - "SCI_LINEDOWNRECTEXTEND": 1, - "Location": 14, - "vchPubKey.end": 1, - "scanner_": 5, - "SCI_NEWLINE": 1, - "suboffsets": 1, - ".real": 3, - "npy_int64": 1, - "PySet_Check": 1, - "Redo": 2, - "was": 3, - "SHL": 1, - "texture": 1, - "next_.location.beg_pos": 3, - ")": 2440, - "mapping": 1, - "BN_mod_sub": 1, - "__pyx_v_i": 6, - "*__pyx_int_15": 1, - "__pyx_k__pure_py_test": 1, - "*__pyx_builtin_ValueError": 1, - "__pyx_print_kwargs": 1, - "GOOGLE_PROTOBUF_VERIFY_VERSION": 1, - "at": 4, - "mailing": 1, - "__pyx_k_15": 1, - "SWIG": 2, - "QByteArray": 1, - "document.": 8, - "IsInitialized": 3, - "being": 2, - "utf16_literal": 3, - "__pyx_pf_5numpy_7ndarray___getbuffer__": 2, - "__pyx_t_double_complex": 27, - "MessageFactory": 3, - "backing_store_.length": 4, - "*reinterpret_cast": 1, - "static_descriptor_initializer_protocol_2dbuffer_2eproto_": 1, - "SCI_PAGEUP": 1, - "heap_number": 4, - "myclass.userIndex": 2, - "*__pyx_n_s__descr": 1, - "kIsIdentifierStart": 1, - "": 2, - "HexValue": 2, - "itemsize": 2, - "two": 1, - "__Pyx_c_prodf": 2, - "uint64_t": 2, - "Key_Backspace": 1, - "uniqueID": 1, - "__pyx_k_tuple_14": 1, - "QIcon": 1, - "succeeded": 1, - "<4;>": 1, - "des": 3, - "look": 1, - "": 1, - "instantiated": 1, - "PyBUF_INDIRECT": 1, - "paint": 1, - "init_once": 2, - "Env": 13, - "operation.": 1, - "SCI_CHARLEFTRECTEXTEND": 1, - "descr": 2, - "PyString_AsStringAndSize": 1, - "PyBytes_Type": 1, - "PyBUF_STRIDES": 5, - "FindFileByName": 1, - "__Pyx_c_is_zerof": 3, - "headers.": 3, - "E": 3, - "*__pyx_v_d": 2, - "*format": 1, - "LineTranspose": 1, - "PyFloat_CheckExact": 1, - "source_length": 3, - ".Equals": 1, - "protoc.": 1, - "BIT_AND": 1, - "GeneratedMessageReflection": 1, - "__pyx_L6": 6, - "handle_scope_implementer": 5, - "character.": 9, - "__Pyx_c_negf": 2, - "metadata": 2, - "PyVarObject*": 1, - "__pyx_PyFloat_AsDouble": 3, - "QPainter": 2, - "SCI_CHARRIGHTEXTEND": 1, - "__pyx_self": 2, - "PyNumber_TrueDivide": 1, - "SCI_LINEEND": 1, - "StutteredPageDownExtend": 1, - "protobuf": 72, - "line": 10, - "envvar.indexOf": 1, - "__pyx_k_tuple_8": 1, - "__pyx_k_5": 1, - "x16": 1, - "HarmonyScoping": 1, - "PyArray_ITEMSIZE": 1, - "__pyx_k__range": 1, - "npy_uint64": 1, - "": 1, - "*__pyx_f_5numpy_PyArray_MultiIterNew2": 2, - "and": 14, - "*name": 6, - "undo": 4, - "set": 1, - "from.unknown_fields": 1, - "CKeyID": 5, - "PY_MAJOR_VERSION": 10, - "#include": 106, - "entropy_source": 4, - "ScrollToEnd": 1, - "__global__": 1, - "a": 84, - "*__pyx_v_childname": 1, - "*__pyx_n_s__readonly": 1, - "__Pyx_c_pow": 3, - "__sun__": 1, - "MergePartialFromCodedStream": 2, - "PyNumber_Check": 1, - "want": 2, - "ParaUp": 1, - "has_name": 6, - "struct": 8, - "vchSig.clear": 2, - "__pyx_kp_s_2": 1, - "Py_DECREF": 1, - "__pyx_t_5numpy_int64_t": 1, - "SelectionLowerCase": 1, - "npy_uint8": 1, - "SCI_CANCEL": 1, - "GetSecret": 2, - "LT": 2, - "extern": 4, - "lower": 1, - "SCI_FORMFEED": 1, - "o": 20, - "__pyx_k__byteorder": 1, - "up": 13, - "__pyx_int_15": 1, - "AND": 1, - "myclass.label": 2, - "report": 2, - "end": 18, - "*__pyx_t_8": 1, - "__Pyx_PyInt_AsLong": 1, - "out.": 1, - "Current": 5, - "pub_key": 6, - "WebKit": 1, - "Paste": 2, - "__pyx_v_dims": 4, - "*__pyx_empty_tuple": 1, - "PyErr_Warn": 1, - "DocumentStartExtend": 1, - "code_unit_count": 7, - "PyInstanceMethod_New": 1, - "}": 552, - "then": 6, - "HomeWrap": 1, - "default": 4, - "__pyx_t_5numpy_float32_t": 1, - "scikey": 1, - "Protocol": 2, - "QVariant": 1, - "OR": 1, - "fatherIndex": 1, - "*ctx": 2, - "Merge": 1, - "literal_buffer1_": 3, - "Predicate": 4, - "__Pyx_TypeTest": 4, - "__APPLE__": 4, - "r.uint64_t_value": 1, - "tex2D": 1, - "SkipWhiteSpace": 4, - "has_been_disposed_": 6, - "source": 9, - "MoveSelectedLinesDown": 1, - "npy_uint16": 1, - "SCI_SELECTALL": 1, - "SCI_VCHOME": 1, - "image": 1, - "VCHomeExtend": 1, - "myclass.noFatherRoot": 2, - "static_cast": 7, - "": 12, - "PyInt_AsUnsignedLongMask": 1, - "DL_EXPORT": 2, - "*__pyx_v_info": 4, - "next_": 2, - ".": 2, - "Shrink": 1, - "ReadBlock": 2, - "PyBUF_F_CONTIGUOUS": 3, - "QtMsgType": 1, - "*__pyx_n_s__shape": 1, - "PyIntObject": 1, - "DropLiteral": 2, - "Key_Home": 1, - "PageDownExtend": 1, - "__pyx_k__readonly": 1, - "SCI_DELETEBACK": 1, - "set_has_name": 7, - "SCI_DELLINERIGHT": 1, - "SelectionDuplicate": 1, - "__pyx_t_float_complex": 27, - "drawing": 4, - "key": 23, - "#elif": 3, - "print": 4, - "WordRightEndExtend": 1, - "modified": 2, - "install": 1, - "npy_uintp": 1, - "PyString_Concat": 1, - "ParaDownExtend": 1, - "<": 56, - "": 1, - "PY_SSIZE_T_CLEAN": 1, - "FlagList": 1, - "PyBUF_WRITABLE": 1, - "init.": 1, - "readonly": 2, - "__pyx_v_flags": 4, - "short": 3, - "Stuttered": 4, - "*Q": 1, - "*obj": 2, - "SCI_WORDRIGHTEND": 1, - "protobuf_RegisterTypes": 2, - "metadata.descriptor": 1, - "NPY_UBYTE": 2, - "": 1, - "node": 1, - "internal": 46, - "PyFloat_AS_DOUBLE": 1, - "PyObject*": 16, - "selection": 39, - "clear": 2, - "phantom.returnValue": 1, - "free_buffer": 3, - "WIRETYPE_END_GROUP": 1, - "new_content_size": 4, - "Isolate*": 6, - "*__pyx_k_tuple_10": 1, - "cudaAddressModeClamp": 2, - "UnicodeCache": 3, - "development": 1, - "Q_INIT_RESOURCE": 2, - "noFatherRoot": 1, - "fields": 1, - "*__pyx_n_s__numpy": 1, - "__STDC_VERSION__": 2, - "level": 1, - "PyArray_DATA": 1, - "*__pyx_v_data": 1, - "__pyx_t_4": 35, - "__pyx_k__Zg": 2, - "Deserializer": 1, - "*from_list": 1, - "SCI_SELECTIONDUPLICATE": 1, - "BIT_NOT": 2, - "X": 2, - "AllStatic": 1, - "IsByteOrderMark": 2, - "": 1, - "printing.": 2, - "default_instance": 3, - "DL_IMPORT": 2, - "__imag__": 1, - "*m": 1, - "height": 5, - "min_capacity": 2, - "": 1, - "*buf": 1, - "kNoParsingFlags": 1, - "SCI_TAB": 1, - "qkey": 2, - "key_error": 6, - "Next": 3, - "__pyx_pf_13wrapper_inner_pure_py_test": 1, - "*__pyx_kp_u_11": 1, - "scoping": 2, - "f": 5, - "*qsb": 1, - "ScanIdentifierUnicodeEscape": 1, - "PyArray_DIMS": 2, - "Unescaped": 1, - "has_fatal_error_": 5, - "WordLeftEndExtend": 1, - "magnification.": 1, - "BN_add": 1, - "assigned": 1, - "PyNumber_InPlaceDivide": 1, - "DEBUG": 3, - "IsIdentifier": 1, - "unknown_fields": 7, - "binding.": 1, - "SCI_DOCUMENTEND": 1, - "PyInt_AsUnsignedLongLongMask": 1, - "PyInt_FromSize_t": 1, - "uint256": 10, - "that": 7, - "SlowSeekForward": 2, - "**env": 1, - "next_.token": 3, - "t": 13, - "StartLiteral": 2, - "SetUpJSCallerSavedCodeData": 1, - "GetPrivKey": 1, - "PyTuple_New": 4, - "PARSE": 1, - "Print": 1, - "IsLineFeed": 2, - "*__pyx_v_fields": 1, - "*__pyx_n_s__ndim": 1, - "PyBoolObject": 1, - "make": 1, - "QT_VERSION_CHECK": 1, - "set_value": 1, - "Isolate": 9, - "Encoding": 3, - "__pyx_k__work_module": 1, - "BN_rshift": 1, - "*sig": 2, - "UTILS_H": 3, - "drawn": 2, - "key.": 1, - "uint32_t*": 2, - "uint160": 8, - "nRecId": 4, - "SkipMultiLineComment": 3, - "__pyx_f": 79, - "Undo": 2, - "this": 22, - "sized.": 1, - "PyBUF_FORMAT": 1, - "ASSIGN_SHR": 1, - "": 1, - "IMPLEMENT_SERIALIZE": 1, - "__pyx_k__base": 1, - "execute": 1, - "keyword": 1, - "npy_ulong": 1, - "__Pyx_DelAttrString": 2, - "ScanDecimalDigits": 1, - "either": 1, - "bound": 4, - "or": 10, - "%": 4, - "elsize": 1, - "__pyx_v_e": 1, - "__pyx_v_nd": 6, - "__pyx_k__f": 2, - "Py_intptr_t": 1, - "npy_clongdouble": 1, - "FLAG_max_new_space_size": 1, - "stacklevel": 1, - "setAlternateKey": 3, - "xFEFF": 1, - "IncrementCallDepth": 1, - "__pyx_k_11": 1, - "": 1, - "UnicodeCache*": 4, - "cudaArray*": 1, - "autorun": 2, - "while": 11, - "*eckey": 2, - "SEMICOLON": 2, - "*__pyx_k_tuple_6": 1, - "__pyx_k__RuntimeError": 1, - "ExpectAtEnd": 1, - "printable": 1, - "PyDict_Contains": 1, - "*__pyx_v_end": 1, - "*__pyx_n_s__buf": 1, - "tex": 4, - "PyTuple_GET_SIZE": 2, - "NPY_ULONG": 1, - "__pyx_k_tuple_10": 1, - "__pyx_cfilenm": 1, - "ScanRegExpFlags": 1, - "SCI_SCROLLTOSTART": 1, - "DocumentEnd": 1, - "return": 147, - "BIGNUM": 9, - "SCI_LINEUP": 1, - "A": 1, - "IsCompressed": 2, - "myclass.linesNumbers": 2, - "#if": 44, - "quote": 3, - "ReflectionOps": 1, - "CallCompletedCallback": 4, - "EditToggleOvertype": 1, - "userIndex": 1, - "QWebFrame": 4, - "ScanIdentifierSuffix": 1, - "SetUp": 4, - "HomeExtend": 1, - "ParaUpExtend": 1, - "__pyx_L2": 2, - "__Pyx_UnpackTupleError": 2, - "in": 9, - "overload.": 1, - "__Pyx_PyInt_AsUnsignedInt": 1, - "ECDSA_verify": 1, - "fOk": 3, - "O": 5, - "Command": 4, - "expected_length": 4, - "*__pyx_v_child": 1, - "ReturnAddressLocationResolver": 2, - "__pyx_v_hasfields": 4, - "__pyx_k_tuple_4": 1, - "*__pyx_pf_13wrapper_inner_pure_py_test": 2, - "__pyx_k_1": 1, - "__Pyx_PyInt_AsInt": 1, - "*msg": 2, - "DO_": 4, - "only": 1, - "description": 5, - "LTE": 1, - "sor": 3, - "NPY_USHORT": 2, - "COMPRESSED": 1, - "__pyx_t_9": 7, - "kAllowNativesSyntax": 1, - "kCharacterLookaheadBufferSize": 3, - "]": 204, - "STATIC_ASSERT": 5, - "uint64_t_value": 1, - "__pyx_v_childname": 4, - "__pyx_L14": 18, - "intern": 1, - "PyUnicode_Type": 2, - "depth": 1, - "xFFFE": 1, - "inner_work_2d": 2, - "*r": 1, - "IsDead": 2, - "ScanOctalEscape": 1, - "ASSERT_EQ": 1, - "": 1, - "__Pyx_RefNannyAPIStruct": 4, - "Something": 1, - "*qs": 1, - "c0_": 64, - "__LINE__": 84, - "Py_REFCNT": 1, - "b.pkey": 2, - "HasAnyLineTerminatorBeforeNext": 1, - "QCoreApplication": 1, - "SkipSingleLineComment": 6, - "GetHash": 1, - "*internal": 1, - "ECDSA_SIG_new": 1, - "*__pyx_kp_u_7": 1, - "each": 2, - "has": 2, - "EXPRESSION": 2, - "else_": 2, - "*__pyx_v_offset": 1, - "__Pyx_PyInt_AsUnsignedLong": 1, - "Advance": 44, - "vchSig": 18, - "*__pyx_t_4": 3, - "PyInt_CheckExact": 1, - "": 1, - "QsciScintillaBase": 100, - "NUM_TOKENS": 1, - "enum": 6, - "shape": 3, - "__pyx_k__O": 2, - "PY_LONG_LONG": 5, - "MS_WINDOWS": 2, - "y": 16, - "Hash": 1, - "state": 15, - "__pyx_v_fields": 7, - "__pyx_v_sum": 6, - "*__pyx_builtin_range": 1, - "validKey": 3, - "cudaCreateChannelDesc": 1, - "__pyx_k__numpy": 1, - "Binds": 2, - "SCI_VCHOMEEXTEND": 1, - "TearDownCaches": 1, - "SCI_CHARLEFT": 1, - "tp_as_mapping": 3, - "__Pyx_PyNumber_InPlaceDivide": 2, - "LBRACE": 2, - "SCI_PAGEDOWN": 1, - "SCI_LINEDOWNEXTEND": 1, - "ob_type": 7, - "paragraph.": 4, - "__pyx_module_is_main_wrapper_inner": 1, - "Py_False": 2, - "PyNumber_Divide": 1, - "r.double_value": 3, - "explicit": 3, - "remove": 1, - "SCI_WORDPARTRIGHTEXTEND": 1, - "FireCallCompletedCallback": 2, - "*__pyx_n_s__ones": 1, - "FinishContext": 1, - "PyFloat_AsDouble": 1, - "PyBUF_ANY_CONTIGUOUS": 1, - "key2.SetSecret": 1, - "IsNull": 1, - "Scanner*": 2, - "PyNumber_Subtract": 2, - "location.end_pos": 1, - "dim3": 2, - "SCI_PAGEDOWNRECTEXTEND": 1, - "PY_SSIZE_T_MAX": 1, - "*__pyx_n_s__base": 1, - "bindKey": 1, - "unchanged.": 1, - "BN_cmp": 1, - "BIT_XOR": 1, - "128": 4, - "__pyx_k__names": 1, - "before": 1, - "*": 159, - "FLAG_crankshaft": 1, - "__PYX_EXTERN_C": 2, - "myclass.uniqueID": 2, - "#ifndef": 23, - "example.": 1, - "generated_pool": 2, - "ElementsAccessor": 2, - "literal.Complete": 2, - "cudaFilterModePoint": 1, - "ParaDown": 1, - "malloc": 2, - "group": 12, - "numbered": 1, - "SCI_VCHOMEWRAPEXTEND": 1, - "NPY_LONGDOUBLE": 1, - "setWrapMode": 2, - "WordLeft": 1, - "*__pyx_m": 1, - "PyLong_Type": 1, - "UnknownFieldSet*": 1, - "CharRight": 1, - "error": 1, - "GoogleOnceInit": 1, - "SCI_LINEUPRECTEXTEND": 1, - "currently": 2, - "__Pyx_GOTREF": 60, - "foo": 2, - "__Pyx_ErrFetch": 1, - "PyString_DecodeEscape": 1, - "rather": 1, - "FatalProcessOutOfMemory": 1, - "friend": 10, - "printer": 1, - "*default_instance_": 1, - "Lazy": 1, - "clean": 1, - "RandomPrivate": 2, - "*__pyx_v_e": 1, - "_Complex": 2, - "BIT_OR": 1, - "vector": 14, - "Utf8Decoder": 2, - "QString": 20, - "cudaChannelFormatDesc": 1, - "": 1, - "envvar": 2, - "__pyx_kp_u_11": 1, - "BN_num_bits": 2, - "__pyx_L7": 2, - "val": 3, - "is": 35, - "EC_POINT": 4, - "SCI_MOVESELECTEDLINESDOWN": 1, - "character": 8, - "will": 2, - "__Pyx_INCREF": 36, - "_unknown_fields_.Swap": 1, - "strides": 5, - "**p": 1, - "area": 5, - "take_snapshot": 1, - "__Pyx_RefNannyFinishContext": 12, - "complex": 2, - "CYTHON_WITHOUT_ASSERTIONS": 1, - "void*": 1, - "If": 4, - "returned": 2, - "PyBytes_DecodeEscape": 1, - "new_store": 6, - "De": 1, - "*order": 1, - "npy_double": 2, - "PyBytes_AsStringAndSize": 1, - "protobuf_AssignDescriptors_once_": 2, - "ECDSA_SIG_free": 2, - "SCI_LINEDUPLICATE": 1, - "protected": 4, - "*__pyx_f_5numpy_PyArray_MultiIterNew3": 2, - "CYTHON_REFNANNY": 3, - "__Pyx_PySequence_DelSlice": 2, - "older": 1, - "": 6, - "lines.": 1, - "PyBytes_GET_SIZE": 1, - "PyString_FromStringAndSize": 1, - "b": 57, - "SCI_WORDLEFTEXTEND": 1, - "GOOGLE_CHECK_NE": 2, - "SCI_LINESCROLLDOWN": 1, - "modules": 2, - "context": 8, - "next_.location.end_pos": 4, - "StutteredPageUpExtend": 1, - "BITCOIN_KEY_H": 2, - "ComputeUnknownFieldsSize": 1, - "PROTOBUF_protocol_2dbuffer_2eproto__INCLUDED": 3, - "DecrementCallDepth": 1, - "SetupContext": 1, - "__Pyx_PySequence_SetSlice": 2, - "unicode_cache_": 10, - "xffu": 3, - "kAllowModules": 1, - "__pyx_kp_s_3": 1, - "real": 2, - "AddLiteralCharAdvance": 3, - "": 1, - "incompatible": 2, - "Person*": 7, - "current": 9, - "SHIFT": 1, - "optimize": 1, - "p": 5, - "WordPartLeft": 1, - "GT": 1, - "further": 1, - "GetCachedSize": 1, - "SCI_LINEENDDISPLAYEXTEND": 1, - "Py_None": 38, - "*__pyx_n_s__RuntimeError": 1, - "PyInt_FromString": 1, - "printing": 2, - "upper": 1, - "__Pyx_PyObject_IsTrue": 8, - "current_": 2, - "Sign": 1, - "indent": 1, - "BN_bn2bin": 2, - "SCI_UNDO": 1, - "PyBUF_SIMPLE": 1, - "*__pyx_t_9": 1, - "memcpy": 1, - "EC_KEY": 3, - "private_random_seed": 1, - "swap": 3, - "SCI_HOMEDISPLAY": 1, - "PyInt_FromSsize_t": 2, - "__Pyx_WriteUnraisable": 3, - "used": 4, - "/8": 2, - "zero": 3, - "HomeDisplayExtend": 1, - "Py_SIZE": 1, - "__pyx_k__ndim": 1, - "OS": 3, - "PageUpExtend": 1, - "myclass.fileName": 2, - "alter": 1, - "GOOGLE_CHECK": 1, - "mutable": 1, - "to": 75, - "EC_GROUP": 2, - "free": 2, - "encoding": 1, - "on": 1, - "SelectionCopy": 1, - "float": 9, - "<27>": 1, - "__pyx_v_a": 5, - "__pyx_k__b": 2, - "Context*": 4, - "user": 2, - "protobuf_AssignDescriptorsOnce": 4, - "cleanupFromDebug": 1, - "__pyx_t_5numpy_ulong_t": 1, - "PyString_ConcatAndDel": 1, - "VCHomeWrapExtend": 1, - "vchPubKey.begin": 1, - "__pyx_v_data_np": 10, - "RBRACE": 2, - "TokenDesc": 3, - "msg": 1, - "immediately": 1, - "*qsCmd": 1, - "INCREF": 1, - "PyString_GET_SIZE": 1, - "err": 26, - "InitializeOncePerProcess": 4, - "**type": 1, - "npy_cdouble": 2, - "SHR": 1, - "/": 15, - "SCI_CHARRIGHTRECTEXTEND": 1, - "": 1, - "SCI_PARADOWN": 1, - "GetID": 1, - "*__pyx_n_s__byteorder": 1, - "is_literal_ascii": 1, - "List": 3, - "Formfeed": 1, - "Copy": 2, - "CodedOutputStream*": 2, - "app.setApplicationVersion": 1, - "CharRightExtend": 1, - "SCI_LINEENDDISPLAY": 1, - "selection.": 1, - "kIsWhiteSpace.get": 1, - "DeleteWordRight": 1, - "ScanLiteralUnicodeEscape": 3, - "has_line_terminator_before_next_": 9, - "EC_POINT_is_at_infinity": 1, - "view": 2, - "CodedInputStream*": 2, - "compile": 1, - "SCI_REDO": 1, - "*__pyx_r": 7, - "TearDown": 5, - "has_multiline_comment_before_next_": 5, - "*__pyx_n_s__itemsize": 1, - "__pyx_t_5numpy_uint16_t": 1, - "ourselves": 1, - "SupportsCrankshaft": 1, - "cudaMemcpyToArray": 1, - "PageUpRectExtend": 1, - "__pyx_v_num_x": 4, - "*R": 1, - "wrapMode": 2, - "after": 1, - "_unknown_fields_": 5, - "": 1, - "CLASSIC_MODE": 2, - "prevent": 1, - "previous": 5, - "pos_": 6, - "EqualityKind": 1, - "PyExc_TypeError": 5, - "Object*": 4, - "throw": 4, - "DocumentStart": 1, - "start": 11, - "using": 1, - "*__pyx_builtin_RuntimeError": 1, - "__pyx_t_5numpy_long_t": 1, - "buffer": 1, - "WordPartRight": 1, - "coordinates": 1, - "current_pos": 4, - "priv_key": 2, - "conj": 3, - "thread_id": 1, - "typedef": 38, - "set_name": 7, - "pkey": 14, - "protobuf_AssignDesc_protocol_2dbuffer_2eproto": 4, - "string": 10, - "COMMA": 2, - "command": 9, - "__pyx_t_5": 75, - "negative": 2, - "BN_CTX_free": 2, - "__pyx_L10": 2, - "*__pyx_int_5": 1, - "__pyx_t_5numpy_int16_t": 1, - "PyBytes_Concat": 1, - "PyNumber_Index": 1, - "Key_Return.": 1, - "message_type": 1, - "backing_store_.start": 5, - "PushBack": 8, - "Indent": 1, - "different": 1, - "_cached_size_": 7, - "NPY_BYTE": 2, - "LineDown": 1, - "CPU": 2, - "#undef": 3, - "ob_refcnt": 1, - "*__pyx_kp_u_12": 1, - "PyArray_Descr": 6, - "seen_period": 1, - "__pyx_n_s__np": 1, - "alternate": 3, - "*group": 2, - "qaltkey": 2, - "": 2, - "__real__": 1, - "EC_KEY_new_by_curve_name": 2, - "SCI_STUTTEREDPAGEUP": 1, - "": 1, - "not": 2, - "be": 9, - "SetSecret": 1, - "NPY_C_CONTIGUOUS": 1, - "ThreadId": 1, - "protobuf_ShutdownFile_protocol_2dbuffer_2eproto": 4, - "": 1, - "LiteralBuffer": 6, - "type": 6, - "fCompressed": 3, - "NPY_CLONGDOUBLE": 1, - "*__pyx_n_s__names": 1, - "//": 239, - "PERIOD": 1, - "change": 1, - "SCI_LINECOPY": 1, - "Sets": 2, - "u": 9, - "EC_POINT_free": 4, - "PyString_AS_STRING": 1, - "Each": 1, - "definition": 1, - "you": 1, - "true": 39, - "from": 25, - "FileDescriptor*": 1, - "StringSize": 1, - "SCI_DELWORDRIGHT": 1, - "kAllowLazy": 1, - "ByteArray*": 1, - "buffer_cursor_": 5, - "ENV_H": 3, - "Phantom": 1, - "LineDelete": 1, - "*__pyx_n_s__obj": 1, - "modname": 1, - "NOT": 1, - "returned.": 4, - "qsb.": 1, - "scik": 1, - "uint8*": 4, - "seed": 2, - "SetCompressedPubKey": 4, - "GDSDBREADER_H": 3, - "tex.normalized": 1, - "__pyx_v_data_ptr": 2, - "field": 3, - "PyBytes_Repr": 1, - "&": 148, - "SCI_HOMEDISPLAYEXTEND": 1, - "kUndefinedValue": 1, - "__pyx_v_f": 31, - "PyErr_Occurred": 2, - "__pyx_k__g": 2, - "": 1, - "blockDim.x": 2, - "headers": 3, - "__pyx_k_12": 1, - "__pyx_t_5numpy_clongdouble_t": 1, - "__pyx_t_5numpy_int32_t": 1, - "cout": 1, - "digits": 3, - "Zoom": 2, - "__Pyx_TypeCheck": 1, - "SCI_PARADOWNEXTEND": 1, - "QsciScintilla": 7, - "__pyx_v_t": 29, - "*__pyx_n_s__fields": 1, - "PyBytes_FromFormat": 1, - "one_char_tokens": 2, - "LAZY_MUTEX_INITIALIZER": 1, - "fall": 2, - "SCI_WORDPARTLEFT": 1, - "delete": 6, - "__pyx_t_5numpy_int_t": 1, - "<<": 19, - "is_next_literal_ascii": 1, - "kPageSizeBits": 1, - "V8": 21, - "__pyx_v_child": 8, - "ASSIGN_BIT_OR": 1, - "RPAREN": 2, - "Metadata": 3, - "invalid": 5, - "byteorder": 4, - "persons": 4, - "enabled": 1, - "painter": 4, - "NPY_CDOUBLE": 1, - "AddChar": 2, - "label": 1, - "*__pyx_v_a": 5, - "__pyx_k__obj": 1, - "part.": 4, - "BN_copy": 1, - "SCI_LINEUPEXTEND": 1, - "Convert": 2, - "goto": 156, - "*__pyx_f_5numpy_get_array_base": 1, - "ALT": 1, - "uc16*": 3, - "io": 4, - "NDEBUG": 4, - "Cancel": 2, - "kMaxGrowth": 2, - "word": 6, - "magnification": 3, - "PySequence_Contains": 1, - "recid": 3, - "x36.": 1, - "Backtab": 1, - "hint": 3, - "": 1, - "current_.literal_chars": 11, - "*__pyx_k_tuple_16": 1, - "__pyx_k_2": 1, - "*e": 1, - "BN_mod_inverse": 1, - "HomeDisplay": 1, - "__Pyx_PyInt_AsSignedChar": 1, - "RuntimeProfiler": 1, - "__Pyx_XGIVEREF": 7, - "imag": 2, - "ExpandBuffer": 2, - "jsFromScriptFile": 1, - "footers": 2, - "Delete": 10, - "buf": 1, - "*__pyx_kp_s_1": 1, - "PyImport_ImportModule": 1, - "tp_name": 4, - "_MSC_VER": 3, - "SCI_LINEENDRECTEXTEND": 1, - "*__Pyx_PyInt_to_py_Py_intptr_t": 1, - "m_map": 2, - "xFFFF": 2, - "isolate": 15, - "*s": 1, - "func": 3, - "octal_pos_": 5, - "CallOnce": 1, - "": 1, - "runtime_error": 2, - "other": 7, - "envp": 4, - "__Pyx_GetAttrString": 2, - "PyLongObject": 2, - "": 1, - "WordRightEnd": 1, - "size_t": 5, - "*value": 2, - "kGrowthFactory": 2, - "executed": 1, - "*__pyx_n_s__ValueError": 1, - "__pyx_k__B": 2, - "l": 1, - "combination": 1, - "__pyx_k__buf": 1, - "PyLong_AsVoidPtr": 1, - "WordRight": 1, - "Scan": 5, - "SCI_ZOOMOUT": 1, - "generated_factory": 1, - "static": 260, - "buffer_end_": 3, - "seed_random": 2, - "Toggle": 1, - "*__pyx_t_5": 1, - "__pyx_t_float_complex_from_parts": 1, - "PySet_Type": 2, - "newline.": 1, - "DeleteLineLeft": 1, - "QTemporaryFile": 1, - "ScrollToStart": 1, - "threadIdx.x": 1, - "": 1, - "NPY_F_CONTIGUOUS": 1, - "PyTypeObject": 2, - "cudaMallocArray": 1, - "Person_offsets_": 2, - "z": 46, - "new": 9, - "harmony_modules_": 4, - "PySequence_SetSlice": 2, - "MergeFrom": 9, - "handle_uninterpreted": 2, - "IsIdentifierStart": 2, - "move": 2, - "assign": 3, - "fCompressedPubKey": 5, - "SetPrivKey": 1, - "descriptor": 2, - "signed": 5, - "CKey": 26, - "EC_GROUP_get_curve_GFp": 1, - "argument": 1, - "LOperand": 2, - "break": 34, - "HomeWrapExtend": 1, - "LiteralScope": 4, - "printRange": 2, - "PyVarObject_HEAD_INIT": 1, - "normalize": 1, - "": 2, - "StaticDescriptorInitializer_protocol_2dbuffer_2eproto": 2, - "Scroll": 5, - "utf8_decoder_": 2, - "Python.": 1, - "__Pyx_RefNannyImportAPI": 1, - "PYREX_WITHOUT_ASSERTIONS": 1, - "classed": 1, - "EQ_STRICT": 1, - "Serializer": 1, - "end_pos": 4, - "+": 55, - "__pyx_k__l": 2, - "*modname": 1, - "FLAG_force_marking_deque_overflows": 1, - "random_bits": 2, - "<1024>": 2, - "metadata.reflection": 1, - "FLAG_random_seed": 2, - "#else": 24, - "GetTagWireType": 2, - "valid": 2, - "By": 1, - "SCI_HOMEEXTEND": 1, - "PyType_Modified": 1, - "VerifyCompact": 2, - "": 1, - "__Pyx_PyInt_AsSignedInt": 1, - "__cdecl": 2, - "ram": 1, - "": 2, - "xx": 1, - "vchSecret": 1, - "ScanNumber": 3, - "SCI_LINEDELETE": 1, - "PySequence_GetSlice": 2, - "PyBytes_FromStringAndSize": 1, - "exceptionHandler": 2, - "odata": 2, - "LineDownRectExtend": 1, - "": 1, - "__pyx_k_tuple_16": 1, - "__pyx_k__format": 1, - "lines": 3, - "V8_V8_H_": 3, - "NID_secp256k1": 2, - "FFFF": 1, - "QT_VERSION": 1, - "if": 296, - "QRect": 2, - "BN_bin2bn": 3, - "__pyx_t_5numpy_cfloat_t": 1, - "vchSig.size": 2, - "VCHomeRectExtend": 1, - "*__pyx_v_f": 2, - "b.vchPubKey": 3, - "self": 5, - "__Pyx_PyInt_AsUnsignedShort": 1, - "BN_CTX": 2, - "scanner_contants": 1, - "SERIALIZE": 2, - "__pyx_L8": 2, - "it": 2, - "provided": 1, - "key.GetPubKey": 1, - "__pyx_t_1": 154, - "__pyx_k__Zd": 2, - "__stdcall": 2, - "rectangular": 9, - "PyString_FromFormat": 1, - "*this": 1, - "level.": 2, - "in.": 1, - "*__pyx_v_t": 1, - "__pyx_k__ones": 1, - "Select": 33, - "IsIdentifierPart": 1, - "__pyx_k__wrapper_inner": 1, - "__pyx_k_7": 1, - "entropy_mutex.Pointer": 1, - "m_tempHarness": 1, - "ASSIGN_SAR": 1, - "PyLong_FromString": 1, - "PyInt_Check": 1, - "PyFrozenSet_Check": 1, - "defined": 21, - "Descriptor*": 3, - "ASSIGN": 1, - "PyInt_FromLong": 13, - "PyCFunction": 1, - "*__pyx_f_5numpy_PyArray_MultiIterNew4": 2, - "LazyMutex": 1, - "input": 6, - "alternateKey": 3, - "__pyx_k__itemsize": 1, - "__Pyx_MODULE_NAME": 1, - "c": 52, - "uc32": 19, - "sig": 11, - "signifies": 2, - "__pyx_n_s__work_module": 3, - "add": 3, - ".data": 3, - "public": 27, - "kMaxAsciiCharCodeU": 1, - "__pyx_ptype_5numpy_dtype": 1, - "PyInt_AsLong": 2, - "SCI_LINECUT": 1, - "position_": 17, - "indexOfEquals": 5, - "*x": 1, - "INTERNAL_SUPPRESS_PROTOBUF_FIELD_DEPRECATION": 1, - "msglen": 2, - "IsCarriageReturn": 2, - "SCI_PAGEUPRECTEXTEND": 1, - "octal_position": 1, - "ascii_literal": 3, - "Valid": 1, - "*__pyx_n_s__work_module": 1, - "InspectorBackendStub": 1, - "are": 3, - "space": 2, - "__Pyx_PyBytes_AsUString": 1, - "WrapWord.": 1, - "protobuf_AddDesc_protocol_2dbuffer_2eproto": 6, - "DeleteLineRight": 1, - "Key_Delete": 1, - "STATIC_BUILD": 1, - "NPY_ULONGLONG": 1, - "__pyx_L1_error": 88, - "PyLong_FromSize_t": 1, - "cudaReadModeElementType": 1, - "SCI_SCROLLTOEND": 1, - "ScanRegExpPattern": 1, - "PyDict_Type": 1, - "SerializeWithCachedSizes": 2, - "Qt": 1, - "pow": 2, - "Key_End": 1, - "ADD": 1, - "editor": 1, - "EC_GROUP_get_order": 1, - "kUC16Size": 2, - "": 1, - "": 1, - "PyArray_CHKFLAGS": 2, - "PyString_Repr": 1, - "MUL": 1, - "SetPubKey": 1, - "LineCopy": 1, - "messageHandler": 2, - "SetHarmonyScoping": 1, - "*__Pyx_Import": 1, - "*__Pyx_GetName": 1, - "__pyx_t_5numpy_uintp_t": 1, - "__pyx_t_5numpy_uint8_t": 1, - "LBRACK": 2, - "__Pyx_BUILTIN_MODULE_NAME": 2, - "*__pyx_v_dims": 2, - "__pyx_k__shape": 1, - "*eor": 1, - "must": 1, - "__pyx_v_b": 4, - "__pyx_k__type_num": 1, - "LineUpExtend": 1, - "*__pyx_n_s__wrapper_inner": 1, - "*__pyx_n_s____test__": 1, - "ASSIGN_MOD": 1, - "Py_TPFLAGS_CHECKTYPES": 1, - "d_data": 1, - "Constructs": 1, - "blockIdx.x*blockDim.x": 1, - "dependent": 1, - "output": 5, - "mutable_name": 3, - "LineDownExtend": 1, - "father": 1, - "GetDataStartAddress": 1, - "New": 4, - "EQ": 1, - "*__pyx_t_11": 1, - "__pyx_k__q": 2, - "int": 148, - "app.setOrganizationDomain": 1, - "MB": 1, - "ExceptionHandler": 1, - "*__pyx_v_data_ptr": 2, - "b.fSet": 2, - "SCI_STUTTEREDPAGEDOWNEXTEND": 1, - "__pyx_builtin_ValueError": 5, - "PY_SSIZE_T_MIN": 1, - "*__pyx_filename": 1, - "LineEndDisplay": 1, - "**envp": 1, - "PyErr_WarnEx": 1, - "nextItemsIndices": 1, - "PyErr_Format": 4, - "xxx": 1, - "width*height*sizeof": 1, - "myclass.nextItemsIndices": 2, - "__pyx_v_num_y": 2, - "__pyx_v_answer_ptr": 2, - "vertically": 1, - "Person_reflection_": 4, - "float*": 1, - "SCI_WORDRIGHT": 1, - "__Pyx_Raise": 8, - "#error": 9, - "EC_KEY_copy": 1, - "EC_KEY_set_private_key": 1, - "memset": 2, - "__pyx_t_5numpy_float64_t": 1, - "SCI_DELLINELEFT": 1, - "__Pyx_c_difff": 2, - "L": 1, - "ECDSA_SIG_recover_key_GFp": 3, - "SerializeUnknownFields": 1, - "in_character_class": 2, - "__pyx_filename": 79, - "__Pyx_PyInt_AsSignedLong": 1, - "*rr": 1, - "||": 17, - "SelectAll": 1, - "PyArray_MultiIterNew": 5, - "__Pyx_c_neg": 2, - "**value": 1, - "PyObject_Call": 11, - "QApplication": 1, - "vchPubKey": 6, - "font": 2, - "V8_DECLARE_ONCE": 1, - "kNameFieldNumber": 2, - "cudaBindTextureToArray": 1, - "__pyx_t_6": 40, - "SCI_PARAUPEXTEND": 1, - "__Pyx_PyInt_AsLongLong": 1, - "unibrow": 11, - "*ecsig": 1, - "__pyx_L11": 7, - "byte": 1, - "SCI_VCHOMERECTEXTEND": 1, - "//end": 1, - "length": 8, - "set_allocated_name": 2, - "ch": 5, - "WireFormat": 10, - "__pyx_v_self": 16, - "*o": 1, - "npy_ulonglong": 1, - "uchar": 4, - "tell": 1, - "Please": 3, - "__pyx_t_5numpy_cdouble_t": 1, - "is_ascii_": 10, - "read": 1, - "__pyx_k____main__": 1, - "*__pyx_f_5numpy__util_dtypestring": 2, - "*suboffsets": 1, - "VerifyUTF8String": 3, - "npy_float32": 1, - "": 1, - "Min": 1, - "__Pyx_DOCSTR": 3, - "clear_name": 2, - "complete_": 4, - "Bar": 2, - "width": 5, - "*__pyx_n_s__do_awesome_work": 1, - "PyLong_Check": 1, - "PyInt_Type": 1, - "double": 23, - "offsetof": 2, - "*__pyx_t_1": 8, - "PyDict_CheckExact": 1, - "text": 5, - "name": 21, - "SCI_WORDLEFT": 1, - "BN_CTX_get": 8, - "any": 5, - "__pyx_k__L": 2, - "__pyx_t_5numpy_uint32_t": 1, - "v": 3, - "LineCut": 1, - "entropy_mutex": 1, - "literal_contains_escapes": 1, - "__pyx_f_5numpy__util_dtypestring": 1, - "__pyx_k__np": 1, - "cpowf": 1, - "WriteString": 1, - "SCI_STUTTEREDPAGEUPEXTEND": 1, - "setFullPage": 1, - "Insert": 2, - "hash": 20, - "__Pyx_PyNumber_Int": 1, - "ASSIGN_MUL": 1, - "This": 6, - "source_": 7, - "use_crankshaft_": 6, - "Format": 1, - "npy_longlong": 1, - "PyMethod_New": 2, - "of": 48, - "*__pyx_n_s____main__": 1, - "Py_True": 2, - "PyInt_AS_LONG": 1, - "instance.": 2, - "*msglen": 1, - "InternalAddGeneratedFile": 1, - "CYTHON_INLINE": 68, - "PyFrozenSet_Type": 1, - "SCI_LOWERCASE": 1, - "Add": 1, - "release_name": 2, - "kEndOfInput": 2, - "next_literal_utf16_string": 1, - "nV": 6, - "QsciCommand": 7, - "StaticResource": 2, - "EC_KEY_regenerate_key": 1, - "SelectionUpperCase": 1, - "__pyx_v_copy_shape": 5, - "__builtin_expect": 2, - "is_str": 1, - "LineEndWrapExtend": 1, - "GOOGLE_SAFE_CONCURRENT_WRITES_END": 2, - "v8": 9, - "*__pyx_n_s__format": 1, - "IsWhiteSpace": 2, - "NilValue": 1, - "from._has_bits_": 1, - "__pyx_k__h": 2, - "__pyx_lineno": 80, - "blockDim.y": 2, - "DeleteBackNotLine": 1, - "Py_EQ": 6, - "it.": 2, - "": 1, - "PyBytes_FromString": 2, - "virtual": 10, - "RBRACK": 2, - "SCI_PAGEDOWNEXTEND": 1, - "V8_SCANNER_H_": 3, - "should": 1, - "mutable_unknown_fields": 4, - "*__pyx_k_tuple_8": 1, - "__Pyx_c_abs": 3, - "PyLong_AsSsize_t": 1, - "kIsIdentifierStart.get": 1, - "METH_COEXIST": 1, - "centre": 1, - "ScanHtmlComment": 3, - "EC_KEY_set_conv_form": 1, - "stream": 5, - "Key_Right": 1, - "readResourceFileUtf8": 1, - "message": 2, - "jsFilePath": 5, - "NE_STRICT": 1, - "have": 1, - "scicmd": 2, - "PyArrayObject": 19, - "scialtkey": 1, - "ScopedLock": 1, - "findScript": 1, - "PyBytes_Check": 1, - "WIN32": 2, - "PageDown": 1, - "ASSIGN_BIT_AND": 1, - "disk": 1, - "DEC": 1, - "obj": 42, - "literal": 2, - "page": 4, - "C": 1, - "EC_GROUP_get_degree": 1, - "EC_KEY_get0_group": 2, - "libraryPath": 5, - "brief": 2, - "*__pyx_v_b": 4, - "__pyx_t_5numpy_longdouble_t": 1, - "Scintilla": 2, - "SelectionCut": 1, - "__Pyx_PyInt_AsShort": 1, - "represents": 1, - "Used": 1, - "__pyx_k__ValueError": 1, - "__pyx_k____test__": 1, - "Message": 7, - "IdleNotification": 3, - "do": 5, - "Py_ssize_t": 17, - "*zero": 1, - "setKey": 3, - "We": 1, - "Q": 5, - "necessary": 1, - "index": 2, - "ScanIdentifierOrKeyword": 2, - "": 19, - "try": 1, - "InternalRegisterGeneratedMessage": 1, - "": 1, - "__pyx_k_tuple_6": 1, - "__pyx_k_3": 1, - "uc16": 5, - "__Pyx_c_sum": 2, - "Keys": 1, - "from.has_name": 1, - "version": 4, - "__cplusplus": 10, - "PyBytes_ConcatAndDel": 1, - "y*width": 1, - "secure_allocator": 2, - "*__pyx_kp_s_2": 1, - "UseCrankshaft": 1, - "ByteSize": 2, - "start_position": 2, - "GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET": 3, - "LineDuplicate": 1, - "ASSERT_NOT_NULL": 9, - "case.": 2, - "line.": 33, - "_Complex_I": 3, - "SetEntropySource": 2, - "quint32": 3, - "BN_CTX_end": 1, - "*pub_key": 1, - "SetHarmonyModules": 1, - "GetPubKey": 5, - "Person_descriptor_": 6, - "SCI_BACKTAB": 1, - "check": 2, - "PyString_CheckExact": 2, - "": 1, - "const": 166, - "BN_zero": 1, - "type_num": 2, - "cabs": 1, - "m": 4, - "&&": 24, - "needed": 1, - "eor": 3, - "EntropySource": 3, - "src": 2, - "app.setWindowIcon": 1, - "*__pyx_kp_u_9": 1, - "Key_Escape": 1, - "last": 4, - "literal_buffer2_": 2, - "envvar.mid": 1, - "WriteStringToArray": 1, - "SCI_CUT": 1, - "EC_KEY*": 1, - "Q_OS_LINUX": 2, - "SCI_CLEAR": 1, - "char": 122, - "CurrentPerIsolateThreadData": 4, - "double_int_union": 2, - "inner_work_1d": 2, - "Key_PageDown": 1, - "pos": 12, - "threadIdx.y": 1, - "Key_Tab": 1, - "__pyx_k__Q": 2, - "__Pyx_Print": 1, - "likely": 15, - "random_seed": 1, - "is_ascii": 3, - "Max": 1, - "BN_mod_mul": 2, - "wmode.": 1, - "category": 2, - "{": 553, - "DeleteBack": 1, - "__Pyx_GetName": 4, - "ILLEGAL": 120, - "format": 6, - "*__pyx_self": 2, - "PySequence_DelSlice": 2, - "SCI_HOME": 1, - "WIRETYPE_LENGTH_DELIMITED": 1, - "tex.filterMode": 1, - "__pyx_n_s__ones": 1, - "Py_PYTHON_H": 1, - "QSCINTILLA_EXPORT": 2, - "by": 5, - "__Pyx_PyInt_AsLongDouble": 1, - "__Pyx_c_diff": 2, - ".imag": 3, - "fj": 1, - "": 1, - "fCompr": 3, - "mode.": 1, - "fSet": 7, - "ok": 3, - "__Pyx_PyInt_AsSignedShort": 1, - "klass": 1, - "PyLong_FromLong": 1, - "sure": 1, - "customised": 2, - "ASSERT": 17, - "kStrictEquality": 1, - "PyBUF_ND": 2, - "env_instance": 3, - "__pyx_m": 4, - "google": 72, - "ECDSA_SIG": 3, - "location.beg_pos": 1, - "PyNumber_Int": 1, - "__pyx_builtin_RuntimeError": 2, - "PyObject_RichCompare": 8, - "*unused": 2, - "both": 1, - "relative": 1, - "StutteredPageDown": 1, - "kNoOctalLocation": 1, - "__Pyx_DECREF": 66, - "npy_float64": 1, - "npy_int16": 1, - "Py_TPFLAGS_HAVE_NEWBUFFER": 1, - "pagenr": 2, - "parse": 3, - "PyDataType_HASFIELDS": 2, - "__pyx_k__descr": 1, - "octal": 1, - "shouldn": 1, - "backing_store_": 7, - "eh": 1, - "wrap": 4, - "AddCallCompletedCallback": 2, - "": 1, - "buffered_chars": 2, - "qInstallMsgHandler": 1, - "key.SetCompactSignature": 1, - "list": 2, - "WHITESPACE": 6, - "SCI_CHARLEFTEXTEND": 1, - "__Pyx_GIVEREF": 10, - "__Pyx_StringTabEntry": 1, - "EC_POINT_new": 4, - "your": 3, - "MOD": 1, - "uint32_t": 8, - "document": 16, - "PostSetUp": 1, - "new_store.start": 3, - "detect": 1, - "size": 9, - "tag": 6, - "HomeRectExtend": 1, - "PageDownRectExtend": 1, - "LineUpRectExtend": 1, - "PyArray_SimpleNewFromData": 2, - "__inline": 1, - "PyLong_FromUnicode": 1, - "wmode": 1, - "SCI_STUTTEREDPAGEDOWN": 1, - "*O": 1, - "*dict": 1, - "*type": 3, - "PyBytes_AsString": 2, - "": 1, - "Q_OBJECT": 1, - "next_literal_ascii_string": 1, - "CScriptID": 3, - "npy_cfloat": 1, - "PyString_Check": 2, - "tex.addressMode": 2, - "consume": 2, - "code_unit": 6, - "showUsage": 1, - "unsigned": 22, - "__Pyx_PrintOne": 4, - "PyUnicodeObject": 1, - "SCI_LINEDOWN": 1, - "*targetFrame": 4, - "PySet_CheckExact": 2, - "double_value": 1, - "VCHomeWrap": 1, - "whole": 2, - "a.vchPubKey": 3, - "__pyx_t_5numpy_uint_t": 1, - "ScanEscape": 2, - "nBitsR": 3, - "PyIndex_Check": 1, - "left.": 2, - "__pyx_t_2": 120, - "PyErr_SetString": 4, - "extend": 2, - "uint32": 2, - "calling": 1, - "#ifdef": 16, - "qUncompress": 2, - "name_": 30, - "startingScript": 2, - "Tab": 1, - "__pyx_v_ndim": 6, - "__Pyx_c_conj": 3, - "npy_int8": 1, - "page.": 13, - "*Env": 1, - "SetReturnAddressLocationResolver": 3, - "PyTuple_SET_ITEM": 4, - "m_tempWrapper": 1, - "CTRL": 1, - "FLAG_use_idle_notification": 1, - "selected": 2, - "__pyx_f_5numpy_set_array_base": 1, - "__Pyx_RaiseNeedMoreValuesError": 1, - "__pyx_t_5numpy_double_t": 1, - "inline": 39, - "*__pyx_f_5numpy_PyArray_MultiIterNew5": 2, - "error.": 1, - "Raw": 1, - "SCI_WORDLEFTENDEXTEND": 1, - "LineEndWrap": 1, - "d": 8, - "case": 33, - "friendly": 2, - "setMagnification": 2, - "PyLong_AsLong": 1, - "SCI_DOCUMENTENDEXTEND": 1, - "next": 6, - "METH_NOARGS": 1, - "*__pyx_n_s__np": 1, - "__pyx_k__do_awesome_work": 1, - "__Pyx_ExportFunction": 1, - "defines": 1, - "__pyx_v_info": 33, - "__pyx_k__H": 2, - "__Pyx_PyInt_AsSignedLongLong": 1, - "r": 36, - "already_here": 3, - "Clear": 5, - "altkey": 3, - "NPY_LONGLONG": 1, - "PY_FORMAT_SIZE_T": 1, - "__pyx_v_little_endian": 8, - "__pyx_mdef_13wrapper_inner_pure_py_test": 1, - "Swap": 2, - "ScanHexNumber": 2, - "Return": 3, - "__inline__": 1, - "SeekForward": 4, - "": 1, - "clear_has_name": 5, - "ob": 6, - "GOOGLE3": 2, - "Reset": 5, - "__Pyx_PyNumber_Divide": 2, - "PyObject_TypeCheck": 3, - "number": 3, - "injectJsInFrame": 2, - "": 2, - "**": 2, - "PageUp": 1, - "__pyx_v_descr": 10, - "PY_VERSION_HEX": 9, - "Key_Down": 1, - "QDataStream": 2, - "SCI_DELETEBACKNOTLINE": 1, - "WordRightExtend": 1, - "from.name": 1, - "GetMetadata": 2, - "true.": 1, - ".empty": 3, - "PyLong_FromSsize_t": 1, - "kMinConversionSlack": 1, - "op": 6, - "": 1, - "NE": 1, - "generated": 2, - "__pyx_v_c": 3, - "PyArray_ISWRITEABLE": 1, - "__pyx_k__d": 2, - "quint64": 1, - "an": 3, - "": 1, - "GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN": 2, - "sa": 8, - "__pyx_r": 39, - "npy_intp": 10, - "myclass.data": 4, - "": 1, - "Random": 3, - "minidump_id": 1, - "__pyx_v_typenum": 6, - "*__pyx_k_tuple_4": 1, - "*__pyx_empty_bytes": 1, - "because": 2, - "SCI_DOCUMENTSTARTEXTEND": 1, - "bool": 99, - "decompressed": 1, - "EC_POINT_mul": 3, - "*instance": 1, - "*__pyx_f": 1, - "__Pyx_NAMESTR": 3, - "cudaMemcpyHostToDevice": 1, - "LEVEL_THREE": 1, - "NewCapacity": 3, - "1": 2, - "WordPartRightExtend": 1, - "literal_utf16_string": 1, - "QsciPrinter": 9, - "PyMethodDef": 1, - "NPY_DOUBLE": 3, - "formfeed.": 1, - "false": 43, - "wrong": 1, - "lock": 1, - "*shape": 1, - "POINT_CONVERSION_COMPRESSED": 1, - "so": 1, - "dump_path": 1, - "std": 49, - "Hash160": 1, - "Extend": 33, - "ExternalReference": 1, - "*desc": 1, - "__Pyx_PyInt_AsUnsignedLongLong": 1, - "PyBytes_Size": 1, - "unicode_cache": 3, - "LineEnd": 1, - "LEVEL_ONE": 1, - "call_completed_callbacks_": 16, - "INLINE": 2, - "Py_LT": 2, - "__GNUC__": 5, - "PyBaseString_Type": 1, - "location": 4, - "*__pyx_n_s__suboffsets": 1, - "__Pyx_c_quot": 2, - "__Pyx_c_conjf": 3, - "__GNUC_MINOR__": 1, - "IsGlobalContext": 1, - "SCI_EDITTOGGLEOVERTYPE": 1, - "app": 1, - "overflow": 1, - "READWRITE": 1, - "SCI_HOMERECTEXTEND": 1, - "OnShutdown": 1, - "asVariantMap": 2, - "ReadTag": 1, - "str": 2, - "__Pyx_XGOTREF": 1, - "DescriptorPool": 3, - "SCI_WORDRIGHTENDEXTEND": 1, - "dynamic_cast_if_available": 1, - "Destroys": 1, - "capacity": 3, - "__pyx_L0": 24, - "__Pyx_SET_CREAL": 2, - "__PYX_HAVE_API__wrapper_inner": 1, - "the": 178, - "LineScrollDown": 1, - "keyRec": 5, - "GOOGLE_PROTOBUF_VERSION": 1, - "cabsf": 1, - "kInitialCapacity": 2, - "Move": 26, - "__fastcall": 2, - "": 1, - "ob_size": 1, - "StutteredPageUp": 1, - "Key_Left": 1, - "vchSig.resize": 2, - "GlobalSetUp": 1, - "*__pyx_k_tuple_13": 1, - "*__pyx_n_s__pure_py_test": 1, - "PyInt_FromUnicode": 1, - "backing_store_.Dispose": 3, - "RegisteredExtension": 1, - "harmony_scoping_": 4, - "platform": 1, - "QSCICOMMAND_H": 2, - "ECDSA_do_sign": 1, - "Utf16CharacterStream*": 3, - "literal_ascii_string": 1, - "Remove": 1, - "PyNumber_Remainder": 1, - "__pyx_t_7": 9, - "__pyx_t_5numpy_uint64_t": 1, - "__Pyx_PyInt_FromSize_t": 1, - "__Pyx_SetAttrString": 2, - "*name_": 1, - "VerticalCentreCaret": 1, - "char*": 14, - "[": 204, - "commands": 1, - "may": 2, - "Cut": 2, - "SharedDtor": 3, - "qk": 1, - "__pyx_L12": 2, - "__Pyx_PyBool_FromLong": 1, - "GetTagFieldNumber": 1, - "SCI_HOMEWRAP": 1, - "ahead": 1, - "*p": 1, - "binding": 3, - "methods": 1, - "ZoomIn": 1, - "visible": 6, - "has_been_set_up_": 4, - "CPubKey": 11, - "npy_long": 1, - "PyUnicode_CheckExact": 1, - "cu_array": 4, - "envvar.left": 1, - "CYTHON_UNUSED": 7, - "PyString_AsString": 1, - "i": 47, - "*__pyx_kp_u_5": 1, - "Py_XDECREF": 3, - "layout": 1, - "int32_t": 1, - "kIsLineTerminator.get": 1, - "instance": 4, - "next_.location": 1, - "reserve": 1, - "__Pyx_SET_CIMAG": 2, - "": 1, - "SCI_WORDRIGHTEXTEND": 1, - "*__pyx_t_2": 4, - "__Pyx_CREAL": 4, - "protoc": 2, - "__Pyx_AddTraceback": 7, - "Py_TPFLAGS_HAVE_INDEX": 1, - "insert/overtype.": 1, - "please": 1, - "Home": 1, - "GOOGLE_PROTOBUF_MIN_PROTOC_VERSION": 1, - "PyExc_SystemError": 3, - "w": 1, - "Key_PageUp": 1, - "SerializeWithCachedSizesToArray": 2, - "*__pyx_v_answer_ptr": 2, - "": 1, - "Verify": 2, - "ASSIGN_ADD": 1, - "__pyx_k__suboffsets": 1, - "Key_Insert": 1, - "*strides": 1, - "Methods": 1, - "__Pyx_RefNanny": 6, - "": 1, - "PyObject_GetAttrString": 3, - "LineEndDisplayExtend": 1 - }, - "Julia": { - "Wiener*UpperTriangle": 1, - "Wiener": 1, - "i": 5, - "by": 2, - "Test": 1, - "unoptimised": 1, - "correlated": 1, - "Number": 2, - "#STOCKCORR": 1, - "simulations": 1, - "Asset": 2, - "-": 11, - "Information": 1, - "original": 1, - "Correlation": 1, - "[": 20, - "n": 4, - "free": 1, - "Geometric": 1, - "days": 3, - "asset": 1, - "Dividend": 1, - "Vol": 5, - "year": 1, - "stock": 1, - "paths": 1, - "stockcorr": 1, - "Corr": 2, - "to": 1, - "return": 1, - "randn": 1, - "Motion": 1, - "B": 1, - "SimulPriceB": 5, - "of": 6, - "Volatility": 1, - "storages": 1, - "*dt": 2, - "stocks": 1, - "Time": 1, - "two": 2, - "from": 1, - "]": 20, - "/2": 2, - "CorrWiener": 1, - "Brownian": 1, - "Issue": 1, - "simulates": 1, - "Initial": 1, - "*sqrt": 2, - "prices": 1, - "The": 1, - "Define": 1, - "Market": 1, - "*exp": 2, - "years": 1, - "simulate": 1, - "Prices": 1, - ")": 13, - "Price": 2, - "*CorrWiener": 2, - "j": 7, - "#445": 1, - "rate": 1, - "the": 2, - "code": 1, - "##": 5, - "r": 3, - "A": 1, - "information": 1, - "Correlated": 1, - "T": 5, - "SimulPriceA": 5, - "for": 2, - "chol": 1, - "that": 1, - "#": 11, - "+": 2, - "decomposition": 1, - "CurrentPrice": 3, - "assets": 1, - "case": 1, - "step": 1, - "end": 3, - "UpperTriangle": 2, - "Generating": 1, - "Matrix": 2, - "function": 1, - "Risk": 1, - "Cholesky": 1, - "/250": 1, - "zeros": 2, - "Simulated": 2, - "(": 13, - ";": 1, - "dt": 3, - "Div": 3 - }, - "ApacheConf": { - "dumpio_module": 2, - "#EnableMMAP": 2, - "#EnableSendfile": 2, - "HTTrack": 1, - "negotiation_module": 2, - "/usr/lib/apache2/modules/mod_ext_filter.so": 1, - "libexec/apache2/mod_include.so": 1, - "lib": 1, - "TRACE": 1, - "libexec/apache2/mod_authz_owner.so": 1, - "None": 8, - "OR": 14, - "#MaxRanges": 1, - "/usr/lib/apache2/modules/mod_cgid.so": 1, - "combinedio": 2, - "union": 1, - "map": 2, - "WebServer": 2, - "grab": 1, - "insert": 1, - "cgi_module": 2, - "RewriteRule": 1, - "/usr/lib/apache2/modules/mod_proxy_ajp.so": 1, - "/": 3, - "/usr/lib/apache2/modules/mod_mem_cache.so": 1, - "dav.conf": 2, - "allow": 10, - "warn": 2, - "text/plain": 2, - "mySQL": 1, - "htdocs": 1, - "-": 43, - "/usr/lib/apache2/modules/mod_authn_default.so": 1, - "ssl.conf": 2, - "auth_basic_module": 2, - "CGI": 1, - "script": 2, - "NC": 13, - "libexec/apache2/mod_info.so": 1, - "/usr/lib/apache2/modules/mod_unique_id.so": 1, - "DirectoryIndex": 2, - "/etc/apache2/mime.types": 1, - "/usr/lib/apache2/modules/mod_proxy_ftp.so": 1, - "mime_magic_module": 2, - "manual.conf": 2, - "var": 2, - "libexec/apache2/mod_proxy_connect.so": 1, - "/etc/apache2/magic": 1, - "libexec/apache2/mod_proxy_http.so": 1, - "you@example.com": 2, - "loader": 1, - ")": 17, - "env_module": 2, - "/usr/lib/apache2/modules/mod_suexec.so": 1, - "text/html": 2, - "Allow": 4, - "usr": 2, - "default.conf": 2, - "#Scriptsock": 2, - "cgi": 3, - "combined": 4, - "deflate_module": 2, - "libexec/apache2/mod_log_config.so": 1, - "Documents": 1, - "libwww": 1, - "}": 16, - "default": 1, - "php5_module": 1, - "libexec/apache2/mod_proxy.so": 1, - "wget": 2, - "/usr/lib/apache2/modules/mod_authz_owner.so": 1, - "": 1, - "libexec/apache2/mod_proxy_ajp.so": 1, - "/usr/lib/apache2/modules/mod_authn_alias.so": 1, - "%": 48, - "filter_module": 2, - "libexec/apache2/mod_env.so": 1, - "off": 5, - "<|>": 6, - "/usr/lib/apache2/modules/mod_autoindex.so": 1, - "/usr/lib/apache2/modules/mod_dav_lock.so": 1, - "": 2, - "/usr/lib/apache2/modules/mod_dir.so": 1, - "{": 16, - "#": 182, - "scan": 1, - "/usr/lib/apache2/modules/mod_cern_meta.so": 1, - "libexec/apache2/mod_dbd.so": 1, - "mem_cache_module": 2, - "info_module": 2, - "nikto": 1, - "charset_lite_module": 1, - "unique_id_module": 2, - "libexec/apache2/mod_negotiation.so": 1, - "/usr/lib/apache2/modules/mod_dbd.so": 1, - "Library": 2, - ".shtml": 4, - ".0": 2, - "cern_meta_module": 2, - "TraceEnable": 1, - "miner": 1, - "authz_owner_module": 2, - "ScriptAlias": 1, - "log_config_module": 3, - "": 17, - "libexec/apache2/mod_cache.so": 1, - "multilang": 2, - "mime_module": 4, - "libexec/apache2/mod_auth_basic.so": 1, - "libexec/apache2/mod_perl.so": 1, - "": 2, - "libexec/apache2/mod_actions.so": 1, - "update": 1, - "http": 2, - "/usr/lib/apache2/modules/mod_auth_basic.so": 1, - "authn_dbm_module": 2, - "libexec/apache2/mod_authz_groupfile.so": 1, - "extract": 1, - "#ErrorDocument": 8, - "actions_module": 2, - "/usr/lib/apache2/modules/mod_ident.so": 1, - "clshttp": 1, - "authz_default_module": 2, - ".*": 3, - "DefaultType": 2, - "libexec/apache2/mod_logio.so": 1, - "authn_file_module": 2, - "F": 1, - "deny": 10, - "libexec/apache2/mod_version.so": 1, - "asis_module": 2, - "errordoc.conf": 2, - "libexec/apache2/mod_ext_filter.so": 1, - "HEAD": 1, - "/usr/lib/apache2/modules/mod_disk_cache.so": 1, - "/usr/lib/apache2/modules/mod_ssl.so": 1, - "User": 2, - ".tgz": 6, - "libexec/apache2/mod_proxy_ftp.so": 1, - "email": 1, - "D": 6, - "//www.example.com/subscription_info.html": 2, - "userdir.conf": 2, - "libexec/apache2/libphp5.so": 1, - ".cgi": 2, - "/usr/lib/apache2/modules/mod_authn_dbm.so": 1, - "authz_user_module": 2, - "authnz_ldap_module": 1, - "Group": 2, - "HTTP_REFERER": 1, - "mpm_winnt_module": 1, - "/usr/lib/apache2/modules/mod_log_forensic.so": 1, - "ServerSignature": 1, - "/usr/lib/apache2/modules/mod_authnz_ldap.so": 1, - "libexec/apache2/mod_authz_host.so": 1, - "mpm_netware_module": 2, - "libexec/apache2/mod_reqtimeout.so": 1, - "Off": 1, - "libexec/apache2/mod_deflate.so": 1, - "/usr/lib/apache2/modules/mod_asis.so": 1, - "CustomLog": 2, - "libexec/apache2/mod_authn_file.so": 1, - "bin/": 2, - "authn_anon_module": 2, - "libexec/apache2/mod_vhost_alias.so": 1, - "RewriteCond": 15, - "i": 1, - "TypesConfig": 2, - "setenvif_module": 2, - "/usr/lib/apache2/modules/mod_ldap.so": 1, - "Hh": 1, - "injects": 1, - "dav_module": 2, - "libexec/apache2/mod_unique_id.so": 1, - "ErrorLog": 2, - "#AddOutputFilter": 2, - "/usr/lib/apache2/modules/mod_userdir.so": 1, - "<": 1, - "libexec/apache2/mod_speling.so": 1, - "": 6, - "#Listen": 2, - "": 1, - "mpm.conf": 2, - "ext_filter_module": 2, - "libexec/apache2/mod_dir.so": 1, - "/private/etc/apache2/magic": 1, - "/usr/lib/apache2/modules/mod_speling.so": 1, - "libexec/apache2/mod_dumpio.so": 1, - ".gz": 4, - "substitute_module": 1, - "/usr/lib/apache2/modules/mod_filter.so": 1, - "languages.conf": 2, - "MultiViews": 1, - "/cgi": 2, - "benchmark": 1, - "authn_default_module": 2, - "set": 1, - "QUERY_STRING": 5, - "libexec/apache2/mod_autoindex.so": 1, - "compress": 4, - "libexec/apache2/mod_authn_anon.so": 1, - "DocumentRoot": 2, - "namedfork": 1, - "libexec/apache2/mod_ident.so": 1, - "/usr/lib/apache2/modules/mod_charset_lite.so": 1, - "LogFormat": 6, - "/missing.html": 2, - "file_cache_module": 1, - "/usr/lib/apache2/modules/mod_usertrack.so": 1, - "info.conf": 2, - "/private/etc/apache2/extra/httpd": 11, - "/usr/lib/apache2/modules/mod_auth_digest.so": 1, - "/usr/lib/apache2/modules/mod_dumpio.so": 1, - "HTTP_USER_AGENT": 5, - "SSLRandomSeed": 4, - "ident_module": 2, - "a": 1, - "libexec/apache2/mod_authn_default.so": 1, - "ssl_module": 4, - "/usr/lib/apache2/modules/mod_setenvif.so": 1, - "_": 1, - "perl_module": 1, - "/usr/lib/apache2/modules/mod_authz_host.so": 1, - "/usr/lib/apache2/modules/mod_vhost_alias.so": 1, - "#Include": 17, - "hfs_apple_module": 1, - "daemon": 2, - "/usr/lib/apache2/modules/mod_dav.so": 1, - "libexec/apache2/mod_dav_fs.so": 1, - "]": 17, - "select": 1, - "common": 4, - "Order": 10, - "/usr/lib/apache2/modules/mod_mime.so": 1, - "libexec/apache2/mod_auth_digest.so": 1, - "Satisfy": 4, - "/usr/lib/apache2/modules/mod_actions.so": 1, - "authn_alias_module": 1, - "#CustomLog": 2, - "#MIMEMagicFile": 2, - "[": 17, - "/var/log/apache2/error_log": 1, - "libexec/apache2/mod_log_forensic.so": 1, - "": 17, - "authz_dbm_module": 2, - "site": 1, - "/etc/apache2/extra/httpd": 11, - "/var/run/apache2/cgisock": 1, - ".": 7, - "libexec/apache2/mod_alias.so": 1, - "/private/var/run/cgisock": 1, - "archiver": 1, - "ServerAdmin": 2, - "java": 1, - "DELETE": 1, - "libexec/apache2/mod_headers.so": 1, - "/usr/lib/apache2/modules/mod_headers.so": 1, - "Deny": 6, - "/usr/lib/apache2/modules/mod_version.so": 1, - "autoindex.conf": 2, - "ScriptAliasMatch": 1, - "Ss": 2, - "suexec_module": 1, - "ServerRoot": 2, - "/usr/lib/apache2/modules/mod_alias.so": 1, - "proxy_ftp_module": 2, - "declare": 1, - "Executables": 1, - "THE_REQUEST": 1, - "*": 1, - "builtin": 4, - "/usr/lib/apache2/modules/mod_mime_magic.so": 1, - "#Block": 1, - "dbd_module": 2, - "/private/etc/apache2/other/*.conf": 1, - "libexec/apache2/mod_cern_meta.so": 1, - "drop": 1, - "winhttp": 1, - "libexec/apache2/mod_dav.so": 1, - "unlimited": 1, - "(": 16, - "all": 10, - "auth_digest_module": 2, - "headers_module": 2, - "libexec/apache2/mod_authz_dbm.so": 1, - "libexec/apache2/mod_disk_cache.so": 1, - "#ServerName": 2, - "libexec/apache2/mod_userdir.so": 1, - "/usr/lib/apache2/modules/mod_status.so": 1, - "proxy_connect_module": 2, - "ldap_module": 1, - "/usr/lib/apache2/modules/mod_env.so": 1, - "libexec/apache2/mod_filter.so": 1, - "/usr/lib/apache2/modules/mod_proxy.so": 1, - "libexec/apache2/mod_mime_magic.so": 1, - "dav_lock_module": 1, - "|": 80, - "/usr/lib/apache2/modules/mod_proxy_connect.so": 1, - "/usr/lib/apache2/modules/mod_proxy_http.so": 1, - "Indexes": 2, - "/usr/lib/apache2/modules/mod_cache.so": 1, - "libexec/apache2/mod_status.so": 1, - "Tt": 1, - "authz_groupfile_module": 2, - ".1": 1, - "cast": 1, - "INCLUDES": 2, - "userdir_module": 2, - "share": 1, - "startup": 2, - "x": 4, - "./": 1, - "AddType": 4, - "z0": 1, - "/usr/lib/apache2/modules/mod_expires.so": 1, - ".Z": 4, - "libexec/apache2/mod_cgi.so": 1, - "#AddType": 4, - "include_module": 2, - "imagemap_module": 2, - "/usr/lib/apache2/modules/mod_file_cache.so": 1, - "log_forensic_module": 2, - "AllowOverride": 6, - "proxy_ajp_module": 2, - "localhost": 1, - "status_module": 2, - "/var/log/apache2/access_log": 2, - "REQUEST_URI": 1, - "/usr/lib/apache2/modules/mod_authz_user.so": 1, - "": 1, - "libexec/apache2/mod_substitute.so": 1, - "r": 1, - "apache2": 1, - "bin": 1, - "loopback": 1, - "proxy_http_module": 2, - "LogLevel": 2, - "/usr/lib/apache2/modules/mod_authz_default.so": 1, - "libexec/apache2/mod_mime.so": 1, - "E": 5, - "libexec/apache2/mod_authn_dbm.so": 1, - "speling_module": 2, - "perl": 1, - "cache_module": 2, - "libexec/apache2/mod_authn_dbd.so": 1, - "#AddHandler": 4, - "libexec/apache2/mod_usertrack.so": 1, - "Include": 6, - "rsrc": 1, - "/usr/lib/apache2/modules/mod_include.so": 1, - "proxy_scgi_module": 1, - "index.html": 2, - "/usr/lib/apache2/modules/mod_deflate.so": 1, - "/usr/lib/apache2/modules/mod_rewrite.so": 1, - "All": 4, - "LoadModule": 126, - "/usr/lib/apache2/modules/mod_imagemap.so": 1, - "C": 5, - "alias_module": 4, - "logio_module": 3, - "index.php": 1, - "libexec/apache2/mod_expires.so": 1, - "n": 1, - "FollowSymLinks": 4, - "www.example.com": 2, - "/usr/lib/apache2/modules/mod_authn_dbd.so": 1, - "gzip": 6, - "vhost_alias_module": 2, - "libexec/apache2/mod_proxy_scgi.so": 1, - "A": 6, - "authz_host_module": 2, - "connect": 2, - "ht": 1, - "/usr/lib/apache2/modules/mod_negotiation.so": 1, - "/usr/lib/apache2/modules/mod_authn_anon.so": 1, - "Listen": 2, - "libexec/apache2/mod_setenvif.so": 1, - "libexec/apache2/mod_hfs_apple.so": 1, - "HTTP_COOKIE": 1, - "libexec/apache2/mod_authz_user.so": 1, - "dav_fs_module": 2, - "reqtimeout_module": 1, - "_www": 2, - "curl": 2, - "cgid_module": 3, - "Options": 6, - "python": 1, - "REQUEST_METHOD": 1, - "libexec/apache2/mod_proxy_balancer.so": 1, - "libexec/apache2/mod_asis.so": 1, - "application/x": 6, - "libexec/apache2/mod_rewrite.so": 1, - "/usr/lib/apache2/modules/mod_info.so": 1, - "vhosts.conf": 2, - "/usr/lib/apache2/modules/mod_authn_file.so": 1, - ";": 2, - "type": 2, - "expires_module": 2, - "from": 10, - "#AddEncoding": 4, - "proxy_balancer_module": 2, - "harvest": 1, - "/usr/lib/apache2/modules/mod_authz_groupfile.so": 1, - "autoindex_module": 2, - "dir_module": 4, - "libexec/apache2/mod_authz_default.so": 1, - "": 1, - "/usr/lib/apache2/modules/mod_proxy_balancer.so": 1, - "TRACK": 1, - "authn_dbd_module": 2, - "rewrite_module": 2, - "/usr/lib/apache2/modules/mod_authz_dbm.so": 1, - "#LoadModule": 4, - "": 6, - "libexec/apache2/mod_mem_cache.so": 1, - "/usr/lib/apache2/modules/mod_dav_fs.so": 1, - "version_module": 2, - "libexec/apache2/mod_imagemap.so": 1, - "usertrack_module": 2, - "proxy_module": 2, - "webobjects": 1, - "disk_cache_module": 2, - "md5": 1, - "libexec/apache2/mod_ssl.so": 1, - "/private/etc/apache2/mime.types": 1, - "Dd": 1, - "/usr/lib/apache2/modules/mod_cgi.so": 1 - }, - "edn": { - "db.part/user": 17, - "data/source": 2, - "true": 3, - "db.type/double": 1, - "db.install/_attribute": 3, - "db/id": 22, - "#db/id": 22, - "db.part/tx": 2, - "}": 22, - "db.type/string": 2, - "]": 24, - "{": 22, - "[": 24, - "db/doc": 4, - "object/meanRadius": 18, - "db/index": 3, - "db/cardinality": 3, - "db.cardinality/one": 3, - "db/valueType": 3, - "object/name": 18, - "db/ident": 3, - "db.part/db": 6 - }, - "MoonScript": { - "look": 1, - "return": 11, - "cond": 11, - "#real_name": 1, - "build.declare": 1, - ")": 54, - "runs": 1, - "class": 4, - "a": 4, - "source_name": 3, - "thing": 4, - "node": 68, - "update": 1, - "if_cond": 4, - "call": 3, - "destructures": 5, - "__mode": 1, - "of": 1, - "@": 1, - "if_stm": 5, - "case_exps": 3, - "foreach": 1, - "index_name": 3, - "mutate": 1, - "smart_node": 7, - "clauses": 4, - "continue_name": 13, - "unless": 6, - "transformer": 3, - "colon_stub": 1, - "constructor": 7, - "or": 6, - "LocalName": 2, - "iter": 2, - "source": 7, - "@set": 1, - "util": 2, - "with_continue_listener": 4, - "new": 2, - "make": 1, - "last_exp_id": 3, - "else": 22, - "inner": 2, - "*find_assigns": 1, - "base_name": 4, - "@transform.statement": 2, - "while": 3, - "list": 6, - "+": 2, - "destructure.has_destructure": 2, - "don": 1, - "out_body": 1, - "convert_cond": 2, - "destructure.split_assign": 1, - "if": 43, - "convert": 1, - "op_final": 3, - "constructor.arrow": 1, - "find_assigns": 2, - "apply": 1, - "Statement": 2, - "*names": 3, - "ntype": 16, - "constructor_name": 2, - "#values": 1, - "#body": 1, - "apart": 1, - "is_singular": 2, - "node.body": 9, - "stub": 4, - "find": 2, - "#node": 3, - "body": 26, - "slice_var": 3, - "can_transform": 1, - "hoist_declarations": 1, - "statment": 1, - "real_names": 4, - "switch": 7, - "stms": 4, - "idx": 4, - "up": 1, - "state": 2, - "out": 9, - "and": 8, - "sure": 1, - "ifstm": 5, - "names": 16, - "object": 1, - "properties": 4, - "reversed": 2, - "next": 1, - "is_slice": 2, - "{": 135, - "-": 51, - "error": 4, - "is": 2, - "fail": 5, - "build.do": 2, - "build.fndef": 3, - "body_idx": 3, - "self.fn": 1, - "last": 6, - "build.group": 14, - "require": 5, - "exp": 17, - "key": 3, - "node.iter": 1, - "nil": 8, - "match": 1, - "unpack": 22, - "into": 1, - "..op": 1, - "elseif": 1, - "block": 2, - "construct_comprehension": 2, - "we": 1, - "@seen_nodes": 3, - "type": 5, - "scope_name": 5, - "varargs": 2, - "value_is_singular": 3, - "build": 7, - "[": 79, - "self": 2, - "scope": 4, - "stubs": 1, - "bubble": 1, - "table.remove": 2, - "not": 2, - "super": 1, - "arrow": 1, - "destructure": 1, - "comprehension": 1, - "cls": 5, - "base": 8, - "class_lookup": 3, - "value": 7, - "for": 20, - "assigns": 5, - "*stubs": 2, - "will": 1, - "bounds": 3, - "cond_exp": 5, - "named_assign": 2, - "}": 136, - "hoist": 1, - "@listen": 1, - "they": 1, - "local": 1, - "stm": 16, - "continue": 1, - "then": 2, - "statements": 4, - "false": 2, - "sindle": 1, - "insert": 18, - "bodies": 1, - "#list": 1, - "max_tmp_name": 5, - "plain": 1, - "when": 12, - "the": 4, - "expand_elseif_assign": 2, - "decorator": 1, - "...": 10, - "current_stms": 7, - "@transform": 2, - "tuple": 8, - "parent_val": 1, - "implicitly_return": 2, - "real": 1, - "cls_mt": 2, - "NameProxy": 14, - "exp_name": 3, - "expand": 1, - "dec": 6, - "#stms": 1, - "*item": 1, - "with": 3, - "split": 4, - "Run": 8, - "are": 1, - "slice": 7, - "parent_cls_name": 5, - "]": 79, - "included": 1, - "..": 1, - "Transformer": 2, - "arg_list": 1, - "item": 3, - "action": 4, - "@fn": 1, - "res": 3, - "parent_assign": 3, - "list_name": 6, - "*body": 2, - "root_stms": 1, - "build.chain": 7, - "do": 2, - "types.is_value": 1, - "t": 10, - "node.names": 3, - "ipairs": 3, - "dot": 1, - "fn": 3, - "i": 15, - "group": 1, - "assign": 9, - "real_name": 6, - "assign_name": 1, - "build.assign": 3, - "Value": 1, - "build.assign_one": 11, - "types": 2, - "break": 1, - "ret": 16, - "lines": 2, - "on": 1, - "data": 1, - "table": 2, - "proxy": 2, - "#ifstm": 1, - "parens": 2, - "self_name": 4, - "transform": 2, - "old": 1, - "case": 13, - "@transformers": 3, - "..t": 1, - "table.insert": 3, - "_": 10, - "cascading": 2, - "after": 1, - "transformed": 2, - "build.table": 2, - "*conds": 1, - "extract": 1, - "from": 4, - "bind": 1, - "export": 1, - "destructure.build_assign": 2, - "apply_to_last": 6, - "values": 10, - "in": 18, - "(": 54, - "all": 1, - "puke": 1, - "cls.name": 1, - "first": 3, - "true": 4, - "setmetatable": 1, - "mtype": 3, - "wrapped": 4, - "clause": 4, - "import": 5, - "name": 31, - "@put_name": 2, - "types.cascading": 1, - "args": 3, - "*properties": 1, - "@splice": 1, - "__call": 1, - "op": 2, - "expression/statement": 1, - "string": 1, - "cls_name": 1, - "decorated": 1, - "@send": 1, - "index": 2, - "conds": 3, - "*stm": 1 - }, - "Lua": { - "ipairs": 2, - "#self.bytebuffer": 1, - "HelloCounter": 4, - "To": 3, - "mechanisms": 1, - "whatever": 1, - "trim": 1, - "repeat": 1, - "counting": 1, - "inlet": 2, - "from": 3, - "whenever": 1, - "_": 2, - "insertpoint": 2, - "self.randrepeat": 5, - "self.filedata": 4, - "local": 11, - "in_8_list": 1, - "at": 2, - "on": 1, - "get": 1, - "route": 1, - "in_1_bang": 2, - "new": 3, - "modder": 1, - "all": 1, - "inlet.": 1, - "self.inlets": 3, - "second": 1, - "{": 16, - "an": 1, - "elseif": 2, - "range": 1, - "Object": 1, - "clear": 2, - "buflength": 1, - "+": 3, - "vidya": 1, - "in_2_float": 2, - "its": 2, - "point": 2, - "in_7_list": 1, - "in_5_float": 1, - "in_3_list": 1, - "randlimit": 4, - "(": 56, - "..": 7, - "FLOAT": 1, - "byte": 2, - "self.extension": 3, - "Total": 1, - "table.remove": 1, - "%": 1, - "ints": 1, - "namedata": 1, - "function": 16, - "counter": 1, - "Shift": 1, - "outname": 3, - "math.random": 8, - "pd.post": 1, - "active": 2, - "increments": 1, - "bang": 3, - "i": 10, - "Buffer": 1, - "repeating": 1, - "whether": 1, - "pd.Class": 3, - "Toggle": 1, - "binfile": 3, - "A": 1, - "f": 12, - "that": 1, - "File": 2, - "do": 8, - "Currently": 1, - "times": 2, - "bounds": 2, - "Hold": 1, - "in_6_float": 1, - "sel": 3, - "or": 2, - "in_1_symbol": 1, - "]": 17, - "receives": 2, - "register": 3, - "Number": 4, - "table.insert": 4, - "self.glitchpoint": 6, - "Active": 1, - "end": 26, - "randomized": 1, - "list": 1, - "number": 3, - "Toggles": 1, - "in_2_list": 1, - "self.outlets": 3, - "it": 2, - "length": 1, - "Incoming": 1, - "single": 1, - "in_3_float": 1, - "v": 4, - "self.bytebuffer": 8, - "converted": 1, - "be": 1, - "in": 7, - "of": 9, - "type": 2, - "else": 1, - ")": 56, - "s": 5, - "Minimum": 1, - "file": 8, - "Glitch": 3, - "simple": 1, - "then": 4, - "internal": 1, - "the": 7, - "sloc": 3, - "bytes": 3, - "FileModder": 10, - "splicebuffer": 3, - "schunksize": 2, - "are": 1, - "self.num": 5, - "d": 9, - "outlet": 10, - "atoms": 3, - "buffer": 2, - "#patbuffer": 1, - "a": 5, - "self": 10, - "return": 3, - "extension": 2, - "initialize": 3, - "splice": 1, - "data": 2, - "next": 1, - "[": 17, - "indexed": 2, - "which": 1, - "given": 1, - "}": 16, - "self.randtoggle": 3, - "self.glitchtype": 5, - "currently": 1, - "glitches": 3, - "last": 1, - "first": 1, - "write": 3, - "-": 60, - "random": 3, - "for": 9, - "self.batchlimit": 3, - "within": 2, - "pattern": 1, - "Base": 1, - "files": 1, - "if": 2, - "self.buflength": 7, - "changes": 1, - "batch": 2, - "glitch": 2, - "to": 8, - "object": 1, - "filename": 2, - "in_4_list": 1, - "patbuffer": 3, - "should": 1, - "triggering": 1, - "plen": 2, - "image": 1, - "true": 3, - "FileListParser": 5 - }, - "Objective-C": { - "setDidUseCachedResponse": 1, - "NSMutableDictionary": 18, - "very": 2, - "": 1, - "body": 8, - "stored": 9, - "same": 6, - "examined": 1, - "": 1, - "": 1, - "calculateNextIndexPath": 4, - "*section": 8, - "TUIViewAutoresizingFlexibleWidth": 1, - "TUIFastIndexPath*": 1, - "_styleDisabled": 6, - "_NSStringObjectFromJSONString": 1, - "Tells": 1, - "#endif": 59, - "TRUE": 1, - "*jsonString": 1, - "uint16_t": 1, - "JSONStringStateError": 1, - "update": 6, - "which": 1, - "JK_WARN_UNUSED_CONST": 1, - "JK_CACHE_SLOTS": 1, - "NS_BLOCKS_AVAILABLE": 8, - "__APPLE_CC__": 2, - "TTDCONDITIONLOG": 3, - "xDBFF": 1, - "authenticationNeededBlock": 5, - "retryUsingSuppliedCredentials": 1, - "(": 2109, - "shouldTimeOut": 2, - "FooAppDelegate": 2, - "willRedirect": 1, - "ASIS3Request": 1, - "NSNumber": 11, - "beginning": 1, - "order": 1, - "green": 3, - "JKParseAcceptValue": 2, - "as": 17, - "runMode": 1, - "argc": 1, - "save": 3, - "*temporaryFileDownloadPath": 2, - "initWithNumberOfRows": 2, - "environment": 1, - "pure": 2, - "proxyPort": 2, - "setProxyAuthenticationNeededBlock": 1, - "#define": 65, - "maxBandwidthPerSecond": 2, - "NSTimer": 5, - "cellForRowAtIndexPath": 9, - "earth": 1, - "JKTokenTypeString": 1, - "JKObjectStackLocationMask": 1, - "JKParseAcceptEnd": 3, - "savedCredentialsForHost": 1, - "": 1, - "pinnedHeader.frame.origin.y": 1, - "blue": 3, - "TTDPRINTMETHODNAME": 1, - "*authenticationRealm": 2, - "stringByAppendingPathComponent": 2, - "saveCredentials": 4, - "oldVisibleIndexPaths": 2, - ".size.height": 1, - "range": 8, - "called": 3, - "PAC": 7, - "NSException": 19, - "Record": 1, - "setContentSize": 1, - "streaming": 1, - "duration": 1, - "NULL": 152, - "*firstIndexPath": 1, - "*or3String": 1, - "*sessionProxyCredentialsStore": 1, - "showProxyAuthenticationDialog": 1, - "we": 73, - "forEvent": 3, - "initWithStyleName": 1, - "would": 2, - "idx": 33, - "_JKDictionaryCapacity": 3, - "xDFFF": 1, - "JK_WARN_UNUSED_SENTINEL": 1, - "ASIRequestCancelledError": 2, - "properties": 1, - "__OBJC__": 4, - "depthChange": 2, - "storeProxyAuthenticationCredentialsInSessionStore": 1, - "CFMutableDictionaryRef": 1, - "*indexPaths": 1, - "expirePersistentConnections": 1, - "caller": 1, - "NSURLCredentialPersistencePermanent": 2, - "AUTH": 6, - "indexPaths": 2, - "one": 1, - "uploadProgressDelegate": 8, - "Automatic": 1, - "supported": 1, - "TTPathForDocumentsResource": 1, - "JSONStringStateEscapedUnicodeSurrogate3": 1, - "JSONStringStateStart": 1, - "*PACFileRequest": 2, - "to.": 2, - "asked": 3, - "pinnedHeaderFrame.origin.y": 1, - "TUITableViewStyleGrouped": 1, - "self.title": 2, - "*jk_cachedObjects": 1, - "JKEncodeOptionType": 2, - "JSONNumberStateError": 1, - "there": 1, - "ReadStreamClientCallBack": 1, - "reusable": 1, - "UILabel*": 2, - "MainMenuViewController": 2, - "JKHashTableEntry": 21, - "moved": 2, - "removeAuthenticationCredentialsFromSessionStore": 3, - "see": 1, - "context.delegate": 1, - "NSRangeException": 6, - "JKEncodeCache": 6, - "sentinel": 1, - "*postBodyWriteStream": 1, - "Must": 1, - "CFURLRef": 1, - "give": 2, - "available": 1, - "raise": 18, - "postBodyFilePath": 7, - "": 1, - "*userAgentString": 2, - "values": 3, - "*domain": 2, - "r.origin.y": 1, - "JKParseAcceptCommaOrEnd": 1, - "callback": 3, - "reaches": 1, - "NSLock": 2, - "destroyReadStream": 3, - "isConcurrent": 1, - "post": 2, - "itemWithText": 48, - "date": 3, - "scanner": 5, - "script": 1, - "authenticationScheme": 4, - "*defaultUserAgent": 1, - "jk_encode_writen": 1, - "authenticated": 1, - "configureProxies": 2, - "requestAuthentication": 7, - "postLength": 6, - "applyCookieHeader": 2, - "The": 15, - "failAuthentication": 1, - "*u": 1, - "_style": 8, - "entryIdx": 4, - "setShowAccurateProgress": 1, - "JKManagedBufferOnStack": 1, - "sessionCookiesLock": 1, - "downloading": 5, - "than": 9, - "serializeOptions": 14, - "requestRedirectedBlock": 5, - "n": 7, - "@interface": 23, - "dataDecompressor": 1, - "with": 19, - "methodForSelector": 2, - "receives": 3, - "NSRecursiveLock": 13, - "@class": 4, - "*rawResponseData": 1, - "*data": 2, - "layoutSubviews": 5, - "origin": 1, - "UTF8": 2, - "Range": 1, - "setRequestCookies": 2, - "": 2, - "*jk_parse_array": 1, - "_JKDictionaryResizeIfNeccessary": 3, - "ARC": 1, - "prevents": 1, - "*stream": 1, - "ASIInternalErrorWhileApplyingCredentialsType": 1, - "UIBackgroundTaskIdentifier": 1, - "parsing": 2, - "_currentDragToReorderLocation": 1, - "responseData": 5, - "*ASIUnableToCreateRequestError": 1, - "jk_cache_age": 1, - "them": 10, - "contentLength": 6, - "objectWithData": 7, - "|": 13, - "section.headerView.frame": 1, - "UNI_SUR_LOW_END": 1, - "completes": 6, - "setStartedBlock": 1, - "identifies": 1, - "setMaintainContentOffsetAfterReload": 1, - "*rowInfo": 1, - "JK_END_STRING_PTR": 1, - "shouldResetDownloadProgress": 3, - "can": 20, - "track": 1, - "hasn": 1, - "allKeys": 1, - "setDataSource": 1, - "throttle": 1, - "operations": 1, - "toIndexPath": 12, - "NSOrderedAscending": 4, - "CGSizeMake": 3, - "URL": 48, - "UITableViewStyleGrouped": 1, - "Issue": 2, - "JKParseOptionFlags": 12, - "handling": 4, - "isEqualToString": 13, - "releaseBlocksOnMainThread": 4, - "defaults": 2, - "sectionIndex": 23, - "cached": 2, - "shouldStreamPostDataFromDisk": 4, - "proxyAuthenticationNeededBlock": 5, - "initToFileAtPath": 1, - "_preLayoutCells": 2, - "forceSaveScrollPosition": 1, - "token": 1, - "resume": 2, - "target": 5, - "added": 5, - "oldStream": 4, - "self.headerView.frame.size.height": 1, - "indexesOfSectionHeadersInRect": 2, - "*ptr": 2, - "JSONNumberStateWholeNumber": 1, - "handlers": 1, - "else": 35, - "*proxyAuthenticationRealm": 3, - "defaultResponseEncoding": 4, - "NSMenu": 1, - "objectWithString": 5, - "addSubview": 8, - "frame.size.width": 4, - "*proxyCredentials": 2, - "Even": 1, - "cookies": 5, - "*lastActivityTime": 2, - "header.frame.size.height": 1, - "numberOfRows": 13, - "NO": 30, - "-": 595, - "aFailedBlock": 1, - "hideNetworkActivityIndicatorIfNeeeded": 1, - ".location": 1, - "roundf": 2, - "indexPathForCell": 2, - "proxyType": 1, - "*proxyPassword": 2, - "scanInt": 2, - "ASIAuthenticationErrorType": 3, - "_pullDownView.hidden": 4, - "*parser": 1, - "JKTokenType": 2, - "applyCredentials": 1, - "once": 3, - "sessionCredentialsStore": 1, - "removeLastObject": 1, - "_JKDictionaryInstanceSize": 4, - "pulled": 1, - "appendPostData": 3, - "objectFromJSONString": 1, - "set.": 1, - "Digest": 2, - "Private": 1, - "SBJsonStreamParserAdapter": 2, - "TTLOGLEVEL_ERROR": 1, - "NSBundle": 1, - "xffffffffU": 1, - "dictionary": 64, - "*headerView": 6, - "": 1, - "self.maxDepth": 2, - "JKEncodeState": 11, - "private": 1, - "redirects.": 1, - "concurrency": 1, - ";": 2003, - "something": 1, - "option.": 1, - "FALSE": 2, - "*readStream": 1, - "charset": 5, - "work.": 1, - "INT_MAX": 2, - "for": 99, - "created": 3, - "warning***": 1, - "fromIndexPath": 6, - "**objects": 1, - "Will": 7, - "CFReadStreamCopyProperty": 2, - "NSEvent": 3, - "reachabilityChanged": 1, - "Connection": 1, - "compressed": 2, - "addSessionCookie": 1, - "TTImageView": 1, - "tmp": 3, - "jsonText": 1, - "__IPHONE_4_0": 6, - "_tableFlags.maintainContentOffsetAfterReload": 2, - "NSMaxRange": 4, - "extra": 1, - "scenes": 1, - "iteration...": 1, - "downloads": 1, - "use": 26, - "setDownloadProgressDelegate": 2, - "UIButtonTypeRoundedRect": 1, - "Why": 1, - "largely": 1, - "startSynchronous.": 1, - "indexPathWithIndexes": 1, - "_lastSize": 1, - "mimeTypeForFileAtPath": 1, - "Once": 2, - "whatever": 1, - "Description": 1, - "instead.": 4, - "containing": 1, - "handleStreamComplete": 1, - "NSIndexSet": 4, - "UIViewAutoresizingFlexibleBottomMargin": 3, - "data.": 1, - "init": 34, - "file": 14, - "willAskDelegateToConfirmRedirect": 1, - "scheme": 5, - "": 2, - "always_inline": 1, - "need": 10, - "requestMethod": 13, - "thePassword": 1, - "NSDownArrowFunctionKey": 1, - "e": 1, - "Defaults": 2, - "isPACFileRequest": 3, - "*userAgentHeader": 1, - "setHeadersReceivedBlock": 1, - "actually": 2, - "TUITableViewDelegate": 1, - "CFOptionFlags": 1, - "TUITableViewSectionHeader": 5, - "_JSONDecoderCleanup": 1, - "USE": 1, - "startAsynchronous": 2, - "JSONDataWithOptions": 8, - "scannerWithString": 1, - "NSURLCredential": 8, - "repeats": 1, - "those": 1, - "": 2, - "See": 5, - "lastObject": 1, - "*indexPath": 11, - "NSArray*": 1, - "acceptsFirstResponder": 1, - "commit": 1, - "_setupRowHeights": 2, - "arg": 11, - "shouldResetUploadProgress": 3, - "when": 46, - "sizes": 1, - "sizeof": 13, - "s": 35, - "authenticationRetryCount": 2, - "interval": 1, - "JKSERIALIZER_BLOCKS_PROTO": 1, - "postBody": 11, - "redirected": 2, - "NSOutputStream": 6, - "offset": 23, - "subsequent": 2, - "original": 2, - "NSDate": 9, - "displaying": 2, - "setNeedsDisplay": 2, - "retryCount": 3, - "comments": 1, - "TARGET_OS_IPHONE": 11, - "selectRowAtIndexPath": 3, - "TTCurrentLocale": 2, - "JK_NONNULL_ARGS": 1, - "amount": 12, - "rectForRowAtIndexPath": 7, - "debugTestAction": 2, - "UIProgressView": 2, - "view.urlPath": 1, - "_styleSelected": 6, - "jk_min": 1, - "occurred": 1, - "connectionsLock": 3, - "intValue": 4, - "rowInfo": 7, - "advanceBy": 1, - "readwrite": 1, - "jk_encode_updateCache": 1, - "*keyHashes": 2, - "ASIInputStream": 2, - "required": 2, - "stuff": 1, - "storage": 2, - "setTitle": 1, - "mark": 42, - "*ASITooMuchRedirectionError": 1, - "class": 30, - "setPostLength": 3, - "NSInputStream": 7, - "NSString": 127, - "SortCells": 1, - "alloc_size": 1, - "originalURL": 1, - "incrementDownloadSizeBy": 1, - "isResponseCompressed": 3, - "know": 3, - "alive": 1, - "switch": 3, - "*jk_managedBuffer_resize": 1, - "jk_managedBuffer_setToStackBuffer": 1, - "JSONStringStateEscapedNeedEscapedUForSurrogate": 1, - "CFRelease": 19, - "TUITableViewDataSource": 2, - "performInvocation": 2, - "removeAllObjects": 1, - "##__VA_ARGS__": 7, - "ID": 1, - "startedBlock": 5, - "NSRunLoop": 2, - "setShouldResetDownloadProgress": 1, - "bytesReadSoFar": 3, - "globallyUniqueString": 2, - "allObjects": 2, - "append": 1, - "whether": 1, - "no": 7, - "proxyDomain": 1, - "TTTableTextItem": 48, - "WORD_BIT": 1, - "value": 21, - "via": 5, - "@private": 2, - "*error": 3, - "didReceiveResponseHeadersSelector": 2, - "sectionUpperBound": 3, - "NSEnumerationOptions": 4, - "TUITableViewInsertionMethod": 3, - "adapter.delegate": 1, - "targetExhausted": 1, - "password": 11, - "TUITableViewCalculateNextIndexPathBlock": 3, - "*lastIndexPath": 5, - "CFStreamEventType": 2, - "theError": 6, - "": 1, - "@": 258, - "indexPathForLastVisibleRow": 2, - "JK_WARN_UNUSED_CONST_NONNULL_ARGS": 1, - "match": 1, - "newRequestMethod": 3, - "rowsInSection": 7, - "TUITableViewScrollPositionToVisible": 3, - "bit": 1, - "main": 8, - "TUIView": 17, - "*theRequest": 1, - "until": 2, - "//If": 2, - "*indexes": 2, - "removeFromSuperview": 4, - "nibBundleOrNil": 1, - ".object": 7, - "tableSize": 2, - "etc": 1, - "INT_MIN": 3, - "markAsFinished": 4, - "lowercaseString": 1, - "JKParseOptionLooseUnicode": 2, - "_tableFlags.animateSelectionChanges": 3, - "oldEntry": 9, - "keyHash": 21, - "recordBandwidthUsage": 1, - "adding": 1, - "shouldUseRFC2616RedirectBehaviour": 2, - "since": 1, - "_jk_encode_prettyPrint": 1, - "built": 2, - "ASIHeadersBlock": 3, - "primarily": 1, - "according": 2, - "clearDelegatesAndCancel": 2, - "*c": 1, - "NSData*": 1, - "generate": 1, - "JSONKit": 11, - "*proxyHost": 1, - "indexPathForRow": 11, - "reloadDataMaintainingVisibleIndexPath": 2, - "buttonWithType": 1, - "UIScrollView*": 1, - "UINT_MAX": 3, - "headerFrame": 4, - "NSLocalizedString": 9, - "void": 253, - "indexPath.row": 1, - "///////////////////////////////////////////////////////////////////////////////////////////////////": 24, - "keys": 5, - "making": 1, - "dataWithBytes": 1, - "data": 27, - "_pullDownView": 4, - "For": 2, - "redirecting": 2, - "had": 1, - "pinnedHeader": 1, - "CGRectZero": 5, - "SIZE_MAX": 1, - "conjunction": 1, - "maxLength": 3, - "cleanup": 1, - "TTStyleSheet": 4, - "len": 6, - "ptr": 3, - "setTarget": 1, - "object": 36, - "connecting": 2, - "every": 3, - "PUT": 1, - "JK_EXPECTED": 4, - "releaseBlocks": 3, - "parseMimeType": 2, - "most": 1, - "what": 3, - "information": 5, - "timeIntervalSinceNow": 1, - "pinnedHeaderFrame": 2, - "j": 5, - "tableRowOffset": 2, - "TUITableViewStyle": 4, - "_ASIAuthenticationState": 1, - "@finally": 1, - "*entry": 4, - "JKManagedBufferLocationShift": 1, - "mutableObjectFromJSONDataWithParseOptions": 2, - "bringSubviewToFront": 1, - "TTDINFO": 1, - "_JKDictionaryRemoveObjectWithEntry": 3, - "JKObjectStackLocationShift": 1, - "JK_STATIC_INLINE": 10, - "auto": 2, - "withObject": 10, - "userInfo": 15, - "removeObjectAtIndex": 1, - "JKHash": 4, - "//#include": 1, - "fires": 1, - "totalBytesRead": 4, - "populated": 1, - "isa": 2, - "CFReadStreamRef": 5, - "certificates": 2, - "beforeDate": 1, - "Use": 6, - "shouldPresentProxyAuthenticationDialog": 2, - "failureBlock": 5, - "down": 1, - "*cfHashes": 1, - "internally": 3, - "cancelledLock": 37, - "x": 10, - "JKEncodeOptionCollectionObj": 1, - "kCFHTTPVersion1_1": 1, - "value.": 1, - "ASISizeBlock": 5, - "certificate": 2, - "long": 71, - "accumulator.value": 1, - "buffer.": 2, - "ones": 3, - "shouldThrottleBandwidthForWWANOnly": 1, - "first": 9, - "finished": 3, - "contain": 4, - "setup": 2, - "@try": 1, - "willAskDelegateForCredentials": 1, - "*runLoopMode": 2, - "creation.": 1, - "get": 4, - "_updateDerepeaterViews": 2, - "sourceExhausted": 1, - "UTF16": 1, - "JKObjectStackFlags": 1, - "findSessionAuthenticationCredentials": 2, - "process": 1, - "indexPathForLastRow": 2, - "row": 36, - "text.style": 1, - "kViewStyleType": 2, - "JK_CACHE_PROBES": 1, - "Location": 1, - "setCompressedPostBody": 1, - "asynchronously": 1, - "setCompletionBlock": 1, - "SBJsonStreamParserAccumulator": 2, - "top": 8, - "mutations": 20, - "CFDictionaryRef": 1, - "findCredentials": 1, - "NSRange": 1, - "_JKArrayInsertObjectAtIndex": 3, - "unused": 3, - "retry": 3, - "checking": 1, - "note": 1, - "throttled": 1, - "was": 4, - "username": 8, - "detection": 2, - "setRequestCredentials": 1, - "haveBuiltRequestHeaders": 1, - ")": 2106, - "laid": 1, - "optionFlags": 1, - "aligned": 1, - "theRequest": 1, - "authenticationCredentials": 4, - "at": 10, - "inflate": 2, - "stores": 1, - "didReceiveDataSelector": 2, - "GET": 1, - "being": 4, - "useSessionPersistence": 6, - "CFHTTPMessageApplyCredentialDictionary": 2, - "sectionLowerBound": 2, - "self.dataSource": 1, - "*oldEntry": 1, - "JSONNumberStateWholeNumberStart": 1, - "delegates": 2, - "acceptHeader": 2, - "removeCredentialsForProxy": 1, - "*certificates": 1, - "pinned": 5, - "dataSource": 2, - "grouped": 1, - "jk_managedBuffer_release": 1, - "JKClassArray": 1, - "ASIHTTPRequest*": 1, - "*postBodyReadStream": 1, - "Example": 1, - "b.frame.origin.y": 2, - "bandwidthUsageTracker": 1, - "NSDictionary": 37, - "passed": 2, - "_tableFlags.delegateTableViewWillDisplayCellForRowAtIndexPath": 1, - "setPostBodyFilePath": 1, - "offscreen": 2, - "look": 1, - "es": 3, - "FFFD": 1, - "throttling": 1, - "succeeded": 1, - "setAuthenticationNeeded": 2, - "cachePolicy": 3, - "dictionaryWithObjectsAndKeys": 10, - "NSMutableArray": 31, - "re": 9, - "ASICachePolicy": 4, - "id": 170, - "futureMakeFirstResponderRequestToken": 1, - "dc": 3, - "jk_parse_skip_newline": 1, - "bytesReceivedBlock": 8, - "savedCredentialsForProxy": 1, - "action": 1, - "jk_encode_object_hash": 1, - "JKParseOptionUnicodeNewlines": 2, - "headers.": 1, - "*format": 7, - "//block": 12, - "failWithError": 11, - "proxy": 11, - "URLWithString": 1, - "runRequests": 1, - "context.frame": 1, - "JSONStringStateEscapedUnicodeSurrogate4": 1, - "cond": 12, - "averageBandwidthUsedPerSecond": 2, - "NSURL": 21, - "*sessionCredentials": 1, - "sectionHeight": 9, - "": 2, - "completionBlock": 5, - "Objective": 2, - "*_headerView": 1, - "countByEnumeratingWithState": 2, - "jk_parse_string": 1, - "shouldUpdate": 1, - "trip": 1, - "Stores": 1, - "unscheduleReadStream": 1, - "StyleView": 2, - "_jk_NSNumberClass": 2, - "selector": 12, - "": 1, - "*bandwidthMeasurementDate": 1, - "sizeWithFont": 2, - "": 1, - "line": 2, - "query": 1, - "connection": 17, - "ASIAuthenticationError": 1, - "indexOfSectionWithHeaderAtVerticalOffset": 2, - "jk_dictionaryCapacities": 4, - "objectsPtr": 3, - "already": 4, - "requestStarted": 3, - "authentication": 18, - "failedRequest": 4, - "frame": 38, - "Controls": 1, - "size.height": 1, - "*ui": 1, - "JSONNumberStateFractionalNumberStart": 1, - "#pragma": 44, - "dictionaryWithCapacity": 2, - "setStatusTimer": 2, - "and": 44, - "": 4, - "set": 24, - "numberOfSections": 10, - "__unsafe_unretained": 2, - "keyEntry": 4, - "temp_NSNumber": 4, - "JKTokenTypeArrayEnd": 1, - "#include": 18, - "setPostBody": 1, - "setProxyAuthenticationRetryCount": 1, - "a": 78, - "*newVisibleIndexPaths": 1, - "TUITableViewCell": 23, - "runPACScript": 1, - "ASIWWANBandwidthThrottleAmount": 2, - "want": 5, - "*v": 2, - "cache": 17, - "inflatedFileDownloadOutputStream": 1, - "struct": 20, - "existing": 1, - "numberWithBool": 3, - "foundValidNextRow": 4, - "cells": 7, - "cellRect.origin.y": 1, - "addIndex": 3, - "calloc.": 2, - "jk_encode_printf": 1, - "xF0": 1, - "JKObjectStack": 5, - "yourself": 4, - "cacheStoragePolicy": 2, - "#import": 53, - "large": 1, - "*PACFileData": 2, - "notify": 3, - "NSComparator": 1, - "TTLOGLEVEL_INFO": 1, - "JK_AT_STRING_PTR": 1, - "setMaxValue": 2, - "aCompletionBlock": 1, - "subclasses": 2, - "setShouldResetUploadProgress": 1, - "Otherwise": 2, - "iterations": 1, - "lower": 1, - "TTImageView*": 1, - "insertObject": 1, - "extern": 6, - "Blocks": 1, - "oldCapacity": 2, - "*objectStack": 3, - "JKValueTypeString": 1, - "ULLONG_MAX": 1, - "up": 4, - "bandwidthThrottlingLock": 1, - "*authenticationScheme": 1, - "NSResponder": 1, - "TTDWARNING": 1, - "_scrollView": 9, - "jk_objectStack_resize": 1, - "JKValueType": 1, - "NSData": 28, - "away.": 1, - "*or2String": 1, - "download.": 1, - "@selector": 28, - "pass": 5, - "*compressedBody": 1, - "_layoutCells": 3, - "self.contentInset.bottom": 1, - "lastActivityTime": 1, - "setArgument": 4, - "persistentConnectionTimeoutSeconds": 4, - "*downloadDestinationPath": 2, - "__MAC_10_5": 2, - "indexPath": 47, - "atEntry": 45, - "}": 532, - "__IPHONE_3_2": 2, - "were": 5, - "then": 1, - "": 1, - "compressedBody": 1, - "url": 24, - "NSOperationQueue": 4, - "happens": 4, - "could": 1, - "*underlyingError": 1, - "applyAuthorizationHeader": 2, - "code": 16, - "default": 8, - "reused": 2, - "*ctx": 1, - "Make": 1, - "found": 4, - "setURL": 3, - "setInProgress": 3, - "_currentDragToReorderInsertionMethod": 1, - "heightForRowAtIndexPath": 2, - "style": 29, - "__BLOCKS__": 1, - "_futureMakeFirstResponderToken": 2, - "didUseCachedResponse": 3, - "setPersistentConnectionTimeoutSeconds": 2, - "totalBytesSent": 5, - "text.text": 1, - "gzipped.": 1, - "NSInternalInconsistencyException": 4, - "uploadBufferSize": 6, - "didStartSelector": 2, - "webservers": 1, - "NSLog": 4, - "title": 2, - "SBJsonStreamParserComplete": 1, - "self.error": 3, - "starts": 2, - "fails": 2, - "r.size.height": 4, - ".": 2, - "_JKArrayReplaceObjectAtIndexWithObject": 3, - "array": 84, - "synchronously": 1, - "specify": 2, - "exits": 1, - "similar": 1, - "entryForKey": 3, - "objc_getClass": 2, - "_JKArrayRemoveObjectAtIndex": 3, - "content": 5, - "stop": 4, - "objc_arc": 1, - "_tableFlags.forceSaveScrollPosition": 1, - "section.sectionOffset": 1, - "range.location": 2, - "indicator": 4, - "handleNetworkEvent": 2, - "inflated": 6, - "toIndexPath.row": 1, - "TUIFastIndexPath": 89, - "jk_calculateHash": 1, - "**keys": 1, - "inputStreamWithData": 2, - "key": 32, - "*throttleWakeUpTime": 1, - "responseEncoding": 3, - "_tableFlags": 1, - "UIControlStateSelected": 1, - "JSONStringStateParsing": 1, - "allows": 1, - "oldCount": 2, - "needs": 1, - "NSThread": 4, - "<": 56, - "recording": 1, - "means": 1, - "_headerView": 8, - "textFrame": 3, - "parser.error": 1, - "lround": 1, - "kCFNull": 1, - "streamSuccessfullyOpened": 1, - "decoderWithParseOptions": 1, - "reading": 1, - "setRedirectURL": 2, - "IN": 1, - "readonly": 19, - "JKTokenTypeArrayBegin": 1, - "release": 66, - "componentsSeparatedByString": 1, - "preset": 2, - "loop": 1, - "overlapped": 1, - "removeObjectsInArray": 2, - "animateSelectionChanges": 3, - "textFrame.size": 1, - "TTStyleContext*": 1, - "jk_objectStack_release": 1, - "initialize": 1, - "callerToRetain": 7, - "rect": 10, - "determining": 1, - "internal": 2, - "selection": 3, - "clear": 3, - "reachability": 1, - "newSessionCookies": 1, - "label.frame": 4, - "enumeratedCount": 8, - "HTTP": 9, - "inopportune": 1, - "copyWithZone": 1, - "_JKArrayInstanceSize": 4, - "responses.": 1, - "write": 4, - "development": 1, - "delegate": 29, - "": 1, - "processInfo": 2, - "...then": 1, - "pool": 2, - "xD800": 1, - "NSNotification": 2, - "scanString": 2, - "@synthesize": 7, - "*temporaryUncompressedDataDownloadPath": 2, - "indexOfSectionWithHeaderAtPoint": 2, - "rectForHeaderOfSection": 4, - "just": 4, - "_reusableTableCells": 5, - "Unable": 2, - "load": 1, - "JK_HASH_INIT": 1, - "architectures.": 1, - "X": 1, - "setShouldPresentCredentialsBeforeChallenge": 1, - "*postBodyFilePath": 1, - "height": 19, - "proposedPath": 1, - "JKEncodeOptionAsString": 1, - "JKObjectStackMustFree": 1, - "*m": 1, - "TUITableView*": 1, - "temporary": 2, - "jk_encode_write1fast": 2, - "JK_TOKENBUFFER_SIZE": 1, - "UL": 138, - "ASINetworkQueue.h": 1, - "partially": 1, - "initWithParseOptions": 1, - "synchronous": 1, - "_topVisibleIndexPath": 1, - "f": 8, - "performSelector": 7, - "Mac": 2, - "partialDownloadSize": 8, - "complain": 1, - "JSONStringStateEscapedUnicode1": 1, - "setResponseEncoding": 2, - "*progressLock": 1, - "setPostBodyWriteStream": 2, - "_previousDragToReorderInsertionMethod": 1, - "realloc": 1, - "nonnull": 6, - "JK_ATTRIBUTES": 15, - "threadForRequest": 3, - "v1.4": 1, - "useDataFromCache": 2, - "*ASIHTTPRequestRunLoopMode": 1, - "registerForNetworkReachabilityNotifications": 1, - "ofTotal": 4, - "create": 1, - "requestFailed": 2, - "header": 20, - "indexPathForRowAtVerticalOffset": 2, - "DEBUG": 1, - "andResponseEncoding": 2, - "keychain": 7, - "serializeUnsupportedClassesUsingBlock": 4, - "respondsToSelector": 8, - "NSAutoreleasePool": 2, - "that": 23, - "addOperation": 1, - "mutableObjectWithUTF8String": 2, - "JKTokenTypeObjectBegin": 1, - "isNetworkReachableViaWWAN": 1, - "intoString": 3, - "NS_BUILD_32_LIKE_64": 3, - "kCFStreamEventHasBytesAvailable": 1, - "t": 15, - "inform": 1, - "populate": 1, - "#19.": 2, - "releasingObject": 2, - "*connectionInfo": 2, - "SecIdentityRef": 3, - "best": 1, - "Agent": 1, - "requestFinished": 4, - "make": 3, - "reportFinished": 1, - "setDidReceiveDataSelector": 1, - "isFinished": 1, - "jk_parse_number": 1, - "CFHashCode": 1, - "xFC": 1, - "Set": 4, - "TUIScrollViewDelegate": 1, - "shouldCompressRequestBody": 6, - "_visibleSectionHeaders": 6, - "jk_encode_error": 1, - "NSMethodSignature": 1, - "cbInvocation": 5, - "timerWithTimeInterval": 1, - "setShouldRedirect": 1, - "requestHeaders": 6, - "lastIndexPath": 8, - "munge": 2, - "fromPath": 1, - "responseStatusCode": 3, - "this": 50, - "Incremented": 1, - "send": 2, - "newVisibleIndexPaths": 2, - "replaceObjectAtIndex": 1, - "execute": 4, - "JK_ENABLE_CF_TRANSFER_OWNERSHIP_CALLBACKS": 2, - "haveBuiltPostBody": 3, - "proceed.": 1, - "also": 1, - "dataReceivedBlock": 5, - "canMoveRowAtIndexPath": 2, - "JK_UTF8BUFFER_SIZE": 1, - "ASINoAuthenticationNeededYet": 3, - "might": 4, - "scheduleReadStream": 1, - "Default": 10, - "status": 4, - "implement": 1, - "*ASIRequestTimedOutError": 1, - "decoder": 1, - "bound": 1, - "capacityForCount": 4, - "either": 1, - "*fileDownloadOutputStream": 2, - "hard": 1, - "or": 18, - "%": 30, - "addToSize": 1, - "initWithBytes": 1, - "indexesOfSectionsInRect": 2, - "forControlEvents": 1, - "addText": 5, - "Delegate": 2, - "": 1, - "NSTemporaryDirectory": 2, - "": 2, - "sortedVisibleCells": 2, - "CFEqual": 2, - "calloc": 5, - "ConversionResult": 1, - "while": 11, - "performKeyAction": 2, - "v.size.height": 2, - "JKClassString": 1, - "requires": 4, - "*statusTimer": 2, - "*PACurl": 2, - "_tableFlags.didFirstLayout": 1, - "INDEX_PATHS_FOR_VISIBLE_ROWS": 4, - "_JSONKIT_H_": 3, - "setSynchronous": 2, - "table": 7, - "_cmd": 16, - "one.": 1, - "super": 25, - "return": 165, - ".offset": 2, - "_relativeOffsetForReload": 2, - "TUITableViewInsertionMethodBeforeIndex": 1, - "initWithJKDictionary": 3, - "BOOL": 137, - "toFile": 1, - "CFHash": 1, - "setDefaultResponseEncoding": 1, - "A": 4, - "saveCredentialsToKeychain": 3, - "#if": 41, - "NSStringFromClass": 18, - "kCFStreamPropertyHTTPRequestBytesWrittenCount": 1, - "forProxy": 2, - "JSONStringWithOptions": 8, - "jk_error_parse_accept_or3": 1, - "handle": 4, - "": 2, - "*err": 3, - "in": 42, - "throttleBandwidthForWWANUsingLimit": 1, - "arrayWithCapacity": 2, - "*indexPathsToRemove": 1, - "numberOfSectionsInTableView": 3, - "enumerateIndexPathsWithOptions": 2, - "view.autoresizingMask": 2, - "up/down": 1, - "dataUsingEncoding": 2, - "JKConstBuffer": 2, - "activity": 1, - "only": 12, - "sessionCookies": 2, - "__attribute__": 3, - "_layoutSectionHeaders": 2, - "SBJsonStreamParser": 2, - "run": 1, - "ASIUnableToCreateRequestError": 3, - "ASIHTTPRequestRunLoopMode": 2, - "setSelector": 1, - "safest": 1, - "initWithFileAtPath": 1, - "retryUsingNewConnection": 1, - ".pinnedToViewport": 2, - "initWithUnsignedLongLong": 1, - "JK_STACK_OBJS": 1, - "includeQuotes": 6, - "queue": 12, - "*blocks": 1, - "debugging": 1, - "NSFastEnumerationState": 2, - "*scanner": 1, - "]": 1227, - "NO.": 1, - "isEqual": 4, - "operation": 2, - "JSONStringStateFinished": 1, - "NSScanner": 2, - "downloaded": 6, - "setCompressedPostBodyFilePath": 1, - "setShouldThrottleBandwidthForWWAN": 1, - "newly": 1, - "reloadLayout": 2, - "text.backgroundColor": 1, - "*_JKDictionaryHashEntry": 2, - "LONG_BIT": 1, - "support": 4, - "compressedPostBodyFilePath": 4, - "DEBUG_HTTP_AUTHENTICATION": 4, - "nextObject": 6, - "memmove": 2, - "JKEncodeOptionStringObjTrimQuotes": 1, - "These": 1, - "UITableViewStylePlain": 1, - "addTarget": 1, - "startingObjectIndex": 1, - "*objects": 5, - "redirects": 2, - "endBackgroundTask": 1, - "_sectionInfo": 27, - "Text": 1, - "method": 5, - "ASIProgressBlock": 5, - "updateProgressIndicators": 1, - "explicitly": 2, - "more": 5, - "has": 6, - "mutableCopyWithZone": 1, - "Handle": 1, - "__clang_analyzer__": 3, - "removeTemporaryDownloadFile": 1, - "client": 1, - "keepAliveHeader": 2, - "aNotification": 1, - "timer": 5, - "dealloc": 13, - "aRedirectBlock": 1, - "enum": 17, - "authenticating": 2, - "*oldVisibleIndexPaths": 1, - "cell.frame": 1, - "section.headerView": 9, - "y": 12, - "fffffff": 1, - "Apply": 1, - "setAuthenticationNeededBlock": 1, - "state": 35, - "setUseCookiePersistence": 1, - "*originalURL": 2, - "initDictionary": 4, - "*pool": 1, - "stringBuffer.bytes.ptr": 2, - "server": 8, - "proxyPassword": 3, - "JK_WARN_UNUSED": 1, - "bodies": 1, - "setMaxConcurrentOperationCount": 1, - "setUploadSizeIncrementedBlock": 1, - "logic": 1, - "challenge": 1, - "setAuthenticationScheme": 1, - "task": 1, - "clearCache": 1, - "remove": 4, - "Obtain": 1, - "numberOfRowsInSection": 9, - "*256": 1, - "*networkThread": 1, - "*oldIndexPath": 1, - "_headerView.frame": 1, - "objects": 58, - "JK_ALLOC_SIZE_NON_NULL_ARGS_WARN_UNUSED": 2, - "contentType": 1, - "theData": 1, - "normal": 1, - "*acceptHeader": 1, - "automatic": 1, - "parent": 1, - "JSONKitSerializing": 3, - "block": 18, - "ASIUnableToCreateRequestErrorType": 2, - "ASIRequestTimedOutError": 1, - "arrayIdx": 5, - "aBytesReceivedBlock": 1, - "button.frame": 2, - "*ASIRequestCancelledError": 1, - "fileDownloadOutputStream": 1, - "ASITooMuchRedirectionError": 1, - "_contentHeight": 7, - "error_": 2, - "Though": 1, - "": 1, - "before": 6, - "JSONKIT_VERSION_MAJOR": 1, - "*": 311, - "returns": 4, - "JKTokenTypeSeparator": 1, - "shouldAttemptPersistentConnection": 2, - "proxyHost": 2, - "__OBJC_GC__": 1, - "#ifndef": 9, - "TUITableView": 25, - "needsRedirect": 3, - "JSONString": 3, - "seconds": 2, - "rowUpperBound": 3, - "view.frame": 2, - "_styleType": 6, - "malloc": 1, - "findSessionProxyAuthenticationCredentials": 1, - "NSISOLatin1StringEncoding": 2, - "kCFHTTPAuthenticationPassword": 2, - "*objectPtr": 2, - "*jk_create_dictionary": 1, - "Domain": 2, - "nibNameOrNil": 1, - "keyHashes": 2, - "isExecuting": 1, - "error": 75, - "newObject": 12, - "JKValueTypeUnsignedLongLong": 1, - "currently": 4, - "_pullDownView.frame.size.height": 2, - "maxDepth": 2, - "ASIUnhandledExceptionError": 3, - "*1.5": 1, - "made": 1, - "rather": 4, - "kCFStreamSSLPeerName": 1, - "stringEncoding": 1, - "*sessionCredentialsStore": 1, - "cancelOnRequestThread": 2, - "viewDidUnload": 2, - "*managedBuffer": 3, - "atIndex": 6, - "CGRectContainsPoint": 1, - "initWithFrame": 12, - "F": 1, - "jk_error": 1, - "updatePartialDownloadSize": 1, - "CFReadStreamCreateForStreamedHTTPRequest": 1, - "mainRequest": 9, - "#warning": 1, - "v1.4.": 4, - "CFHTTPAuthenticationRef": 2, - "base64forData": 1, - "setFailedBlock": 1, - "sharedApplication": 2, - "sslProperties": 2, - "indexPath.section": 3, - "*header": 1, - "yOffset": 42, - "character": 1, - "UNI_REPLACEMENT_CHAR": 1, - "JKParseAcceptComma": 2, - "is": 77, - "setHaveBuiltRequestHeaders": 1, - "will": 57, - "toRemove": 1, - "label.numberOfLines": 2, - "*encodeState": 9, - "beginBackgroundTaskWithExpirationHandler": 1, - "ve": 7, - "Currently": 1, - "indexAtPosition": 2, - "JSONNumberStatePeriod": 1, - "*requestCookies": 2, - "ASIRequestTimedOutErrorType": 2, - "fetchPACFile": 1, - "limit": 1, - "setDisableActions": 1, - "rowLowerBound": 2, - "returned": 1, - "UTF32": 11, - "If": 30, - "where": 1, - "newHeaders": 1, - "path": 11, - "*i": 4, - "jk_set_parsed_token": 1, - "expiryDateForRequest": 1, - "kImageStyleType": 2, - "defaultTimeOutSeconds": 3, - "JKSerializeOptionEscapeForwardSlashes": 2, - "NSFileManager": 1, - "_makeRowAtIndexPathFirstResponder": 2, - "objectAtIndex": 8, - "already.": 1, - "Request": 6, - "regular": 1, - "b": 4, - "setUploadProgressDelegate": 2, - "setCachePolicy": 1, - "possible": 3, - "ASICacheDelegate.h": 2, - "": 2, - "record": 1, - "scrollRectToVisible": 2, - "maintainContentOffsetAfterReload": 3, - "context": 4, - "floor": 1, - "JKBuffer": 2, - "JKArray": 14, - "doing": 1, - "": 1, - "request": 113, - "It": 2, - "basic": 3, - "option": 1, - "UIButton": 1, - "let": 8, - "temporaryFileDownloadPath": 2, - "*cancelledLock": 2, - "*postBody": 1, - "setShouldPresentProxyAuthenticationDialog": 1, - "simply": 1, - "POST": 2, - "TTDPRINT": 9, - "TTPathForBundleResource": 1, - "newObjects": 2, - "JKTokenTypeInvalid": 1, - "Last": 2, - "website": 1, - "startRequest": 3, - "current": 2, - "probably": 4, - "p": 3, - "tableViewDidReloadData": 3, - "parseJSONData": 2, - "objectForKey": 29, - "kCFStreamPropertySSLSettings": 1, - "topVisibleIndex": 2, - "systemFontSize": 1, - "initWithNibName": 3, - "Credentials": 1, - "kCFHTTPAuthenticationUsername": 2, - "JKObjectStackOnHeap": 1, - "setDefaultTimeOutSeconds": 1, - "responseCode": 1, - "representing": 1, - "_scrollView.autoresizingMask": 1, - "memcpy": 2, - "downloadSizeIncrementedBlock": 5, - "timeOutSeconds": 3, - "__MAC_10_6": 2, - "UIBackgroundTaskInvalid": 3, - "failure": 1, - "mime": 1, - "*sslProperties": 2, - "didn": 3, - "zero": 1, - "weak": 2, - "atObject": 12, - "during": 4, - "used": 16, - "our": 6, - "self.tableViewStyle": 1, - "jk_encode_write": 1, - "JKRange": 2, - "lastBytesRead": 3, - "uniquely": 1, - "nil": 131, - "charactersIgnoringModifiers": 1, - "JKParseToken": 2, - "Counting": 1, - "removeProxyAuthenticationCredentialsFromSessionStore": 1, - "OS": 1, - "feature": 1, - "_currentDragToReorderMouseOffset": 1, - "TUITableViewScrollPositionTop": 2, - "alpha": 3, - "JKObjectStackOnStack": 1, - "applicationDidFinishLaunching": 1, - "kCFHTTPAuthenticationSchemeNTLM": 1, - "*newCredentials": 1, - "to": 115, - "maxUploadReadLength": 1, - "HEADER_Z_POSITION": 2, - "stick": 1, - "analyzer...": 2, - "free": 4, - "allocWithZone": 4, - "encoding": 7, - "threading": 1, - "on": 26, - "bytesRead": 5, - "newURL": 16, - "bytesSentBlock": 5, - "storing": 1, - "user": 6, - "maxAge": 2, - "kCFHTTPAuthenticationSchemeBasic": 2, - "numberOfTimesToRetryOnTimeout": 2, - "NSOrderedDescending": 4, - "NSEnumerator": 2, - "C82080UL": 1, - "JKTokenTypeTrue": 1, - "JKDictionary": 22, - "perhaps": 1, - "secondsToCache": 3, - "retain": 73, - "defaultCache": 3, - "*cbInvocation": 1, - "UIViewAutoresizingFlexibleHeight": 1, - "UNI_SUR_HIGH_END": 1, - "upload": 4, - "setter": 2, - "previously": 1, - "visibleCells": 3, - "setHaveBuiltPostBody": 1, - "err": 8, - "way": 1, - "waitUntilDone": 4, - "inSection": 11, - "toProposedIndexPath": 1, - "TTTableViewController": 1, - "/": 18, - "call": 8, - "JKSerializeOptionEscapeUnicode": 2, - "autorelease": 21, - "NSComparisonResult": 1, - "selection.": 1, - "shouldSelectRowAtIndexPath": 3, - "JSONNumberStateExponentPlusMinus": 1, - "Size": 3, - "measurement": 1, - "exception": 3, - "*indexPathsToAdd": 1, - "view": 11, - "kElementSpacing": 3, - "_JKDictionaryClass": 5, - "...": 11, - "*sessionCookies": 1, - "Realm": 1, - "Basic": 2, - "fromIndexPath.row": 1, - "usingBlock": 6, - "TTDERROR": 1, - "mid": 5, - "forKey": 9, - "setTotalBytesSent": 1, - "addObject": 16, - "timeout": 6, - "self.contentInset.top*2": 1, - "performBlockOnMainThread": 2, - "connectionID": 1, - "after": 5, - "recycle": 1, - "prevent": 2, - "TUIScrollView": 1, - "cell": 21, - "addIdx": 5, - "updatedProgress": 3, - "previous": 2, - "distantFuture": 1, - "determine": 1, - "parser.maxDepth": 1, - "throw": 1, - "NSString*": 13, - "start": 3, - "using": 8, - "NSHTTPCookie": 1, - "reorder": 1, - "buffer": 7, - "newQueue": 3, - "CFReadStreamCreateForHTTPRequest": 1, - "sectionRowOffset": 2, - "TUITableViewInsertionMethodAfterIndex": 1, - "TTStyleContext": 1, - "typedef": 47, - "apply": 2, - "secure": 1, - "ASIHTTPAuthenticationNeeded": 1, - "*PACFileReadStream": 2, - "string": 9, - "hassle": 1, - "kCFStreamEventEndEncountered": 1, - "TTDASSERT": 2, - "ASIRequestCancelledErrorType": 2, - "setShouldWaitToInflateCompressedResponses": 1, - "global": 1, - "proxies": 3, - "negative": 1, - "ideal.": 1, - "jk_parse_next_token": 1, - "complete": 12, - "valueForKey": 2, - "*encoding": 1, - "*responseCookies": 3, - "attributesOfItemAtPath": 1, - "JKSerializeOptionPretty": 2, - "sectionOffset": 8, - "*or1String": 1, - "expired": 1, - "NSUnderlyingErrorKey": 3, - "didFailSelector": 2, - "Foo": 2, - "onThread": 2, - "indexPathForRowAtPoint": 2, - "CGSizeZero": 1, - "addKeyEntry": 2, - "setDataReceivedBlock": 1, - "objectFromJSONDataWithParseOptions": 2, - "different": 4, - "ASIAuthenticationDialog": 2, - "parser": 3, - "UIControlStateNormal": 1, - "offsetsFromUTF8": 1, - "LL": 1, - "objectWithUTF8String": 4, - "proxyAuthenticationRealm": 2, - "inspect": 1, - "redirectURL": 1, - "kCFStreamSSLAllowsAnyRoot": 1, - "noCurrentSelection": 2, - "won": 3, - "*oldStream": 1, - "JSONStringStateEscapedUnicode2": 1, - "SEL": 19, - "miscellany": 1, - "*proxyAuthenticationScheme": 2, - "onTarget": 7, - "some": 1, - "CGRectMake": 8, - "imageFrame.size": 1, - "mutableCollection": 7, - "__builtin_prefetch": 1, - "enable": 1, - "proxyUsername": 3, - "reflect": 1, - "respectively.": 1, - "forget": 2, - "not": 29, - "be": 49, - "CGSize": 5, - "said": 1, - "type": 5, - "//": 317, - "serializeUnsupportedClassesUsingDelegate": 4, - "errorWithDomain": 6, - "showNetworkActivityIndicator": 1, - "change": 2, - "handleStreamError": 1, - "ASIFileManagementError": 2, - "u": 4, - "whose": 2, - "TTMAXLOGLEVEL": 1, - "*proxyUsername": 2, - "requestReceivedResponseHeaders": 1, - "you": 10, - "mouse": 2, - "Directly": 2, - "true": 9, - "from": 18, - "configure": 2, - "": 1, - "": 4, - "usingCache": 5, - "successfully": 4, - "yes": 1, - "regenerated": 3, - "visible.size.width": 3, - "StyleViewController": 2, - "shouldUpdateNetworkActivityIndicator": 1, - "localeIdentifier": 1, - "NOT": 1, - "follow": 1, - "NSTimeInterval": 10, - "mutableObjectFromJSONData": 1, - "supply": 2, - "lastIndexPath.row": 2, - "*cell": 7, - "@optional": 2, - "hideNetworkActivityIndicatorAfterDelay": 1, - "incrementUploadSizeBy": 3, - "responseHeaders": 5, - "*authenticationCredentials": 2, - "TTRectInset": 3, - "TTLOGLEVEL_WARNING": 1, - "URLs": 2, - "safely": 1, - "parseOptionFlags": 11, - "scrollToRowAtIndexPath": 3, - "NSFastEnumeration": 2, - "releaseState": 1, - "&": 36, - "setComplete": 3, - "happened": 1, - "updateUploadProgress": 3, - "@catch": 1, - "*ASIAuthenticationError": 1, - "told": 1, - "*requestMethod": 1, - "self.view.bounds": 2, - "*_JKDictionaryCreate": 2, - "setNeedsRedirect": 1, - "HEAD": 10, - "headers": 11, - "deselectRowAtIndexPath": 3, - "viewFrame": 4, - "JSONKIT_VERSION_MINOR": 1, - "reliable": 1, - "YES": 62, - "JKValueTypeLongLong": 1, - "unless": 2, - "setDidFailSelector": 1, - "like": 1, - "dateWithTimeIntervalSinceNow": 1, - "NSMutableIndexSet": 6, - "": 4, - "JKManagedBufferOnHeap": 1, - "oldIndexPath": 2, - "_keepVisibleIndexPathForReload": 2, - "alloc": 47, - "setQueue": 2, - "especially": 1, - "_currentDragToReorderIndexPath": 1, - "didDeselectRowAtIndexPath": 3, - "colorWithRed": 3, - "helper": 1, - "these": 3, - "response": 17, - "delete": 1, - "efficient": 1, - "_pullDownView.frame": 1, - "returnObject": 3, - "attr": 3, - "<<": 16, - "ASICompressionError": 1, - "": 1, - "NS_BLOCK_ASSERTIONS": 1, - "JKTokenTypeFalse": 1, - "anAuthenticationBlock": 1, - "didReceiveResponseHeaders": 2, - "appendData": 2, - "here": 2, - "rangeOfString": 1, - "willAskDelegateForProxyCredentials": 1, - "StyleView*": 2, - "DEBUG_PERSISTENT_CONNECTIONS": 3, - "label": 6, - "allocate": 2, - "*jk_parse_dictionary": 1, - "xC0": 1, - "nonatomic": 40, - "JK_ENCODE_CACHE_SLOTS": 1, - "YES.": 1, - "downloadComplete": 2, - "responseString": 3, - "TUITableViewScrollPositionBottom": 1, - "UIEdgeInsetsMake": 3, - "JSONStringStateEscapedUnicodeSurrogate1": 1, - "*failedRequest": 1, - "updates": 2, - "discarded": 1, - "successfully.": 1, - "ASIConnectionFailureErrorType": 2, - "*pass": 1, - "fromIndexPath.section": 1, - "self.headerView": 2, - "rectForSection": 3, - "drag": 1, - "clickCount": 1, - "UNI_MAX_BMP": 1, - "conversionOK": 1, - "setDidFinishSelector": 1, - "PACurl": 1, - "rebuild": 2, - "submitting": 1, - "sec": 3, - "*sessionCredentialsLock": 1, - "decompress": 1, - "pullDownViewIsVisible": 3, - "withOptions": 4, - "didSelectRowAtIndexPath": 3, - "another": 1, - "isARepeat": 1, - "adapter": 1, - "dataSourceWithObjects": 1, - "reportFailure": 3, - "useHTTPVersionOne": 3, - "compressData": 1, - "JKSerializeOptionValidFlags": 1, - "setError": 2, - "indexes": 4, - "callBlock": 1, - "headerViewRect": 3, - "_headerView.layer.zPosition": 1, - "startingAtIndex": 4, - "kNetworkEvents": 1, - "reference": 1, - "ASIUseDefaultCachePolicy": 1, - "willRetryRequest": 1, - "*s": 3, - "point": 11, - "keyEnumerator": 1, - "FFFFFFF": 1, - "much": 2, - "setDownloadCache": 3, - "Do": 3, - "other": 3, - "handleBytesAvailable": 1, - "buildPostBody": 3, - "CGPoint": 7, - "tableViewWillReloadData": 3, - "scroll": 3, - "size_t": 23, - "visibleCellsNeedRelayout": 5, - "*stop": 7, - "atAddEntry": 6, - "Invokes": 2, - "_headerView.hidden": 4, - "*bandwidthUsageTracker": 1, - "but": 5, - "ll": 6, - "*cbSignature": 1, - "andKeys": 1, - "JKManagedBuffer": 5, - "static": 102, - "its": 9, - "Another": 1, - "downloadCache": 5, - "absoluteURL": 1, - "newDelegate": 6, - "JKSerializeOptionFlags": 16, - "incrementBandwidthUsedInLastSecond": 1, - "NSINTEGER_DEFINED": 3, - "network": 4, - "UIControlStateHighlighted": 1, - "new": 10, - "shouldContinueWhenAppEntersBackground": 3, - "_enqueueReusableCell": 2, - "compressedPostBody": 4, - "_dragToReorderCell": 5, - "<=>": 15, - "JK_JSONBUFFER_SIZE": 1, - "initWithCapacity": 2, - "*responseStatusMessage": 3, - "assign": 84, - "": 1, - "behaviour": 2, - "open": 2, - "NSInteger": 56, - "signed": 1, - "setFrame": 2, - "indexPathForFirstRow": 2, - "less": 1, - "": 1, - "break": 13, - "setReadStream": 2, - "andCachePolicy": 3, - "newTimeOutSeconds": 1, - "*sessionCookiesLock": 1, - "connect": 1, - "//lists.apple.com/archives/Macnetworkprog/2006/Mar/msg00119.html": 1, - ".keyHash": 2, - "entry": 41, - "they": 6, - "theUsername": 1, - "headerFrame.size.height": 1, - "TTViewController": 1, - "JK_ALIGNED": 1, - "NSUInteger": 93, - "checks": 1, - "does": 3, - "Not": 2, - "resuming": 1, - "redirectToURL": 2, - "stringWithFormat": 6, - "": 2, - "NSIndexPath": 5, - "UNI_SUR_HIGH_START": 1, - "": 1, - "domain": 2, - "memory": 3, - "readStreamIsScheduled": 1, - "rowHeight": 2, - "UIControlStateDisabled": 1, - "_jk_NSNumberAllocImp": 2, - "*jk_object_for_token": 1, - "mimeType": 2, - "*mimeType": 1, - "currentRunLoop": 2, - "ASIDataBlock": 3, - "ASINetworkQueue": 4, - "+": 195, - "globalStyleSheet": 4, - "JKFastClassLookup": 2, - "setConnectionCanBeReused": 2, - "https": 1, - "clientCertificateIdentity": 5, - "been": 1, - "headerView": 14, - "*compressedPostBodyFilePath": 1, - "pointer": 2, - "You": 1, - "#else": 8, - "ASITooMuchRedirectionErrorType": 3, - "valid": 5, - "eg": 2, - "willRedirectSelector": 2, - "_updateSectionInfo": 2, - "*dataDecompressor": 2, - "isNetworkInUse": 1, - "Ok": 1, - "kCFAllocatorDefault": 3, - "menuForRowAtIndexPath": 1, - "": 1, - "setUpdatedProgress": 1, - "headersReceivedBlock": 5, - "indexPathsForRowsInRect": 3, - "JKValueTypeDouble": 1, - "JKTokenTypeWhiteSpace": 1, - "setShouldAttemptPersistentConnection": 2, - "@end": 37, - "deprecated": 1, - "askDelegateForProxyCredentials": 1, - "updateProgressIndicator": 4, - "begin": 1, - "_headerView.frame.size.height": 2, - "TTStyle*": 7, - "_jk_NSNumberInitWithUnsignedLongLongImp": 2, - "FFFF": 3, - "JSONNumberStateFractionalNumber": 1, - "appropriate": 4, - "*bandwidthThrottlingLock": 1, - "NSNotFound": 1, - "canUseCachedDataForRequest": 1, - "scrollPosition": 9, - "zone": 8, - "ssize_t": 2, - "if": 297, - "required.": 1, - "isBandwidthThrottled": 2, - "NSProcessInfo": 2, - "aDownloadSizeIncrementedBlock": 1, - "bandwidth": 3, - "*clientCallBackInfo": 1, - "setRequestHeaders": 2, - "invocationWithMethodSignature": 1, - "backgroundTask": 7, - "JKParseState": 18, - "implemented": 7, - "self": 500, - "indexPathForSelectedRow": 4, - "window": 1, - "directly": 1, - "Tested": 1, - "JKEncodeOptionAsTypeMask": 1, - "files": 5, - "it": 28, - "attemptToApplyCredentialsAndResume": 1, - "how": 2, - "ASI_DEBUG_LOG": 11, - "persistent": 5, - "_ASINetworkErrorType": 1, - "always": 2, - "Also": 1, - "NetworkRequestErrorDomain": 12, - "allowCompressedResponse": 3, - "U": 2, - "present": 3, - "aStartedBlock": 1, - "collection": 11, - "forHost": 2, - "take": 1, - "pullDownRect": 4, - "NSEvent*": 1, - "NSUTF8StringEncoding": 2, - "only.": 1, - "JKParseOptionStrict": 1, - "removeAllIndexes": 2, - "JKClassNull": 1, - "defined": 16, - "totalSize": 2, - "uncompressData": 1, - "label.frame.size.height": 2, - "c": 7, - "NSInvocation": 4, - "close": 5, - "slow.": 1, - "far": 2, - "isMultitaskingSupported": 2, - "self.view": 4, - "jk_parse_skip_whitespace": 1, - "shouldRedirect": 3, - "add": 5, - "proxyAuthentication": 7, - "cellRect": 7, - "auth": 2, - "section.headerView.superview": 1, - "objectToRelease": 1, - "bundle": 3, - "NSParameterAssert": 15, - "NSLocalizedFailureReasonErrorKey": 1, - "q": 2, - "are": 15, - "saveProxyCredentialsToKeychain": 1, - "old": 5, - "realm": 14, - "*atAddEntry": 1, - "JKConstPtrRange": 2, - "expire": 2, - "mutableObjectWithData": 2, - "UIFont": 3, - "JSONNumberStateFinished": 1, - "bits": 1, - "redirect": 4, - "NSWindow": 2, - "//self.variableHeightRows": 1, - "JKManagedBufferFlags": 1, - "Leopard": 1, - "": 2, - "nextConnectionNumberToCreate": 1, - "ASIHTTPRequest": 31, - "statusTimer": 3, - "sections": 4, - "_indexPathShouldBeFirstResponder": 2, - "xE0": 1, - "port": 17, - "fails.": 1, - "connections": 3, - "NSUIntegerMax": 7, - "*window": 2, - "_delegate": 2, - "toIndexPath.section": 1, - "requests": 21, - "redirectCount": 2, - "ULONG_MAX": 3, - "CGRectGetMaxY": 2, - "SBJsonStreamParserError": 1, - "*parseState": 16, - "authenticationRealm": 4, - "updateStatus": 2, - "kGroupSpacing": 5, - "JK_INIT_CACHE_AGE": 1, - "must": 6, - "But": 1, - "Necessary": 1, - "UITableView": 1, - "JK_PREFETCH": 2, - "***Black": 1, - "": 1, - "stackbuf": 8, - "JKTokenTypeNumber": 1, - "showAuthenticationDialog": 1, - "Generally": 1, - "setConnectionInfo": 2, - "chance": 2, - "attemptToApplyProxyCredentialsAndResume": 1, - "newIndexPath": 6, - "isKindOfClass": 2, - "about": 4, - "headerViewForSection": 6, - "aKey": 13, - "dispatch_async": 1, - "startForNoSelection": 1, - "intersecting": 1, - "setContentOffset": 2, - "0": 2, - "imageFrame": 2, - "viewDidAppear": 2, - "still": 2, - "underlyingError": 1, - "don": 2, - "pinnedHeader.frame": 2, - "int": 55, - "bytes": 8, - "blocks": 16, - "upload/download": 1, - "bandwidthUsedInLastSecond": 1, - "NSMakeCollectable": 3, - "*sections": 1, - "willRedirectToURL": 1, - "avoids": 1, - "nothing": 2, - "NSProgressIndicator": 4, - "reuse": 3, - "self.delegate": 10, - "derepeaterEnabled": 1, - "unsignedLongLongValue": 1, - "hasBytesAvailable": 1, - "setDefaultCache": 2, - "NSArray": 27, - "prepareForReuse": 1, - "UIViewController": 2, - "uint8_t": 1, - "isMainThread": 2, - "download": 9, - "askDelegateForCredentials": 1, - "": 1, - "requestID": 2, - "An": 2, - "*credentials": 1, - "repeative": 1, - "shouldWaitToInflateCompressedResponses": 4, - "aReceivedBlock": 2, - "ASIAuthenticationState": 5, - "opened": 3, - "timing": 1, - "Prevents": 1, - "restart": 1, - "*firstResponder": 1, - "unsafe_unretained": 2, - "DO": 1, - "_tableFlags.dataSourceNumberOfSectionsInTableView": 2, - "memset": 1, - "jk_encode_writePrettyPrintWhiteSpace": 1, - "#error": 6, - "setUseSessionPersistence": 1, - "*inflatedFileDownloadOutputStream": 2, - "": 1, - "view.image.size": 1, - "systemFontOfSize": 2, - "removeIdx": 3, - "result": 4, - "include": 1, - "browsers": 1, - "NSUpArrowFunctionKey": 1, - "setAnimateSelectionChanges": 1, - "Class": 3, - "magic": 1, - "TUITableViewSection": 16, - "UNI_MAX_UTF16": 1, - "JKTokenTypeObjectEnd": 1, - "own": 3, - "NSStringEncoding": 6, - "invocation": 4, - "addTimer": 1, - "||": 42, - "uploaded": 2, - "incrementing": 2, - "aBytesSentBlock": 1, - "*a": 2, - "doesn": 1, - "JKObjCImpCache": 2, - "*redirectURL": 2, - "never": 1, - "IBOutlet": 1, - "indexPathsForVisibleRows": 2, - "firstByteMark": 1, - "JKPtrRange": 2, - "rawResponseData": 4, - "setAllowCompressedResponse": 1, - "*clientCertificates": 2, - "setDefaultUserAgentString": 1, - "specified": 1, - "willDisplayCell": 2, - "UIColor": 3, - "x.": 1, - "JSONNumberStateWholeNumberMinus": 1, - "JK_UNUSED_ARG": 2, - "lastBytesSent": 3, - "Authentication": 3, - "addRequestHeader": 5, - "JKValueTypeNone": 1, - "JKTokenTypeComma": 1, - "middle": 1, - "max": 7, - "removeObjectForKey": 1, - "nextRequestID": 1, - "retrying": 1, - "show": 2, - "rand": 1, - "secondsSinceLastActivity": 1, - "ASIDataCompressor": 2, - "length": 32, - "JKClassNumber": 1, - "tell": 2, - "didReceiveData": 2, - "enumerateIndexesUsingBlock": 1, - "subview": 1, - "jk_objectStack_setToStackBuffer": 1, - "kCFStreamSSLValidatesCertificateChain": 1, - "JKSerializeOptionNone": 3, - "read": 3, - "showAccurateProgress": 7, - "updateDownloadProgress": 3, - "gzipped": 7, - "isSynchronous": 2, - "greater": 1, - "h": 3, - "atScrollPosition": 3, - "*adapter": 1, - "HEADRequest": 1, - "*sharedQueue": 1, - "removeFileAtPath": 1, - "setBytesReceivedBlock": 1, - "incremented": 4, - "width": 1, - "ui": 1, - "JKClassDictionary": 1, - "JSONStringStateEscapedUnicode3": 1, - "cancelAuthentication": 1, - "When": 15, - "expires": 1, - "MaxValue": 2, - "*persistentConnectionsPool": 1, - "scanUpToString": 1, - "TUITableViewInsertionMethodAtIndex": 1, - "false.": 1, - "double": 3, - "point.y": 1, - "size.width": 1, - "text": 12, - "closed": 1, - "name": 7, - "authenticate": 1, - "sizeToFit": 1, - "any": 3, - "sharedQueue": 4, - "v": 4, - "@required": 1, - "delegateTableViewWillDisplayCellForRowAtIndexPath": 1, - "SBJsonStreamParserWaitingForData": 1, - "Opaque": 1, - "requestWithURL": 7, - "dataSourceNumberOfSectionsInTableView": 1, - "addImageView": 5, - "frame.origin.x": 3, - "UNI_MAX_UTF32": 1, - "forMode": 1, - "NSNumberInitWithUnsignedLongLongImp": 2, - "warn_unused_result": 9, - "updating": 1, - "OK": 1, - "performThrottling": 2, - "got": 1, - "CGRect": 41, - "NSMutableCopying": 2, - "yet": 1, - "This": 7, - "unsubscribeFromNetworkReachabilityNotifications": 1, - "didClickRowAtIndexPath": 1, - "jk_encode_add_atom_to_buffer": 1, - "ASIDataDecompressor": 4, - "setDelegate": 4, - "": 1, - "of": 34, - "calls": 1, - "clang": 3, - "JKTokenCache": 2, - "readStream": 5, - "allowResumeForFileDownloads": 2, - "enumerateIndexPathsFromIndexPath": 4, - "Number": 1, - "getObjects": 2, - "Reference": 1, - "Called": 6, - "param": 1, - "JKClassUnknown": 1, - "JSONStringStateEscapedNeedEscapeForSurrogate": 1, - "__builtin_expect": 1, - "anIdentity": 1, - "tells": 1, - "*request": 1, - "argumentNumber": 1, - "UIScrollView": 1, - "*requestID": 3, - "*path": 1, - "Are": 1, - "NSDefaultRunLoopMode": 2, - "policy": 7, - "sent": 6, - "keep": 2, - "initWithDomain": 5, - "serializeObject": 1, - "should": 8, - "downloadProgressDelegate": 10, - "left/right": 2, - "md5Hash": 1, - "inProgress": 4, - "ensure": 1, - "CFTypeRef": 1, - "stream": 13, - "view.style": 2, - "message": 2, - "fromContentType": 2, - "moveRowAtIndexPath": 2, - "**error": 1, - "JKTokenValue": 2, - "have": 15, - "storeAuthenticationCredentialsInSessionStore": 2, - "proxyCredentials": 1, - "isCancelled": 6, - "*newIndexPath": 1, - ".height": 4, - "objectIndex": 48, - "JSONKitSerializingBlockAdditions": 2, - "removeIndex": 1, - "exists": 1, - "addTextView": 5, - "SSIZE_MAX": 1, - "delegateAuthenticationLock": 1, - "userAgentHeader": 2, - "_tableView.dataSource": 3, - "xFA082080UL": 1, - "fffffffffffffffLL": 1, - "running": 4, - "As": 1, - "requestCookies": 1, - "DEBUG_THROTTLING": 2, - "disk": 1, - "brief": 1, - "C": 6, - "raw": 3, - "//#import": 1, - "setClientCertificateIdentity": 1, - "mutableCopy": 2, - "*dictionary": 13, - "JSONStringStateEscapedUnicodeSurrogate2": 1, - "manually": 1, - "postBodyReadStream": 2, - "tableView": 45, - "their": 3, - "Used": 13, - "technically": 1, - "do": 5, - "didFinishSelector": 2, - "clientCertificates": 2, - "parseUTF8String": 2, - "setSelected": 2, - "_dataSource": 6, - "Stupid": 2, - "We": 7, - "mutableObjectFromJSONString": 1, - "necessary": 2, - "progressLock": 1, - "methodSignatureForSelector": 1, - "sortedArrayUsingSelector": 1, - "index": 11, - "try": 3, - "credentials": 35, - "removeTemporaryUploadFile": 1, - "Invalid": 1, - "*proxyType": 1, - "moment": 1, - "background": 1, - "TT_RELEASE_SAFELY": 12, - "JKParseAcceptValueOrEnd": 1, - "JKDictionaryEnumerator": 4, - "types": 2, - "setShouldUpdateNetworkActivityIndicator": 1, - "time": 9, - "appendPostDataFromFile": 3, - "User": 1, - "ASIBasicBlock": 15, - "*user": 1, - "compare": 4, - "__cplusplus": 2, - "cancel": 5, - "webserver": 1, - "redirections": 1, - "*_tableView": 1, - "received": 5, - "*compressedPostBody": 1, - "downloadDestinationPath": 11, - "setWillRedirectSelector": 1, - "didCreateTemporaryPostDataFile": 1, - "startSynchronous": 2, - "setLastActivityTime": 1, - "_JKDictionaryCapacityForCount": 4, - "JKEncodeOptionStringObj": 1, - "invalidate": 2, - "kCFStreamEventErrorOccurred": 1, - "count": 99, - "setValidatesSecureCertificate": 1, - "*requestCredentials": 1, - "contents": 1, - "check": 1, - ".key": 11, - "newCount": 1, - "*password": 2, - "responseStatusMessage": 1, - "payload": 1, - "s.height": 3, - "_selectedIndexPath": 9, - "jk_max": 3, - "setBytesSentBlock": 1, - "const": 28, - "requestCredentials": 1, - "setNeedsLayout": 3, - "*topVisibleIndex": 1, - "class_getInstanceSize": 2, - "": 9, - "&&": 123, - "needed": 3, - "m": 1, - "setupPostBody": 3, - "now.": 1, - "sourceIllegal": 1, - "JK_WARN_UNUSED_NONNULL_ARGS": 1, - "without": 1, - "last": 1, - "KB": 4, - "runLoopMode": 2, - "apache": 1, - "accept": 2, - "defaultUserAgentString": 1, - "TUITableViewScrollPositionNone": 2, - "strong": 4, - "protocol": 10, - "CFNetwork": 3, - "_previousDragToReorderIndexPath": 1, - "jk_collectionClassLoadTimeInitialization": 2, - "": 1, - "char": 19, - "*array": 9, - "sessionCredentialsLock": 1, - "": 1, - "jk_encode_write1slow": 2, - "Deprecated": 4, - "*username": 2, - "likely": 1, - "setCancelledLock": 1, - "ASIFallbackToCacheIfLoadFailsCachePolicy": 2, - "{": 541, - "identifier": 7, - "*accumulator": 1, - "JKTokenCacheItem": 2, - "JSONNumberStateWholeNumberZero": 1, - "writing": 2, - "objectFromJSONData": 1, - "behind": 1, - "setDidCreateTemporaryPostDataFile": 1, - "dispatch_get_main_queue": 1, - "Garbage": 1, - "reloadData": 3, - "format": 18, - "": 2, - "CATransaction": 3, - "indexPathsToRemove": 2, - "bottom": 6, - "removeUploadProgressSoFar": 1, - "by": 12, - "press": 1, - "indexPathForFirstVisibleRow": 2, - "didFirstLayout": 1, - "text.frame": 1, - "ok": 1, - "itself": 1, - "@protocol": 3, - "JK_CACHE_SLOTS_BITS": 2, - "measure": 1, - "didChangeValueForKey": 1, - "sure": 1, - "@implementation": 13, - "params": 1, - "ignore": 1, - "dateFromRFC1123String": 1, - "shouldPresentCredentialsBeforeChallenge": 4, - "newCredentials": 16, - "TUITableViewStylePlain": 2, - "released": 2, - "CFStringRef": 1, - "setRunLoopMode": 2, - "store": 4, - "parse": 1, - "wanted": 1, - "NSStringFromSelector": 16, - "JKParseOptionValidFlags": 1, - "setObject": 9, - "performSelectorOnMainThread": 2, - "all": 3, - "JKFlags": 5, - "withEvent": 2, - "reason": 1, - "again": 1, - "wait": 1, - "layoutSubviewsReentrancyGuard": 1, - "JSONDecoder": 2, - "CFHTTPMessageRef": 3, - "iPhone": 3, - "_tableFlags.derepeaterEnabled": 1, - "JK_EXPECT_F": 14, - "progress": 13, - "displayNameForKey": 1, - "copy": 4, - "*_JKDictionaryHashTableEntryForKey": 2, - "connectionInfo": 13, - "ASIHTTPRequestDelegate": 1, - "": 1, - "addBasicAuthenticationHeaderWithUsername": 2, - "useCookiePersistence": 3, - "_tableFlags.layoutSubviewsReentrancyGuard": 3, - "Likely": 1, - "Setting": 1, - "JSONKitDeserializing": 2, - "_tableView": 3, - "dequeueReusableCellWithIdentifier": 2, - "targetIndexPathForMoveFromRowAtIndexPath": 1, - "context.font": 1, - "*atEntry": 3, - "uint32_t": 1, - "timeOutPACRead": 1, - "your": 2, - "credentialWithUser": 2, - "proxyAuthenticationScheme": 2, - "NSOperation": 1, - "Check": 1, - "dragged": 1, - "Unexpected": 1, - "resize": 3, - "stringBuffer.bytes.length": 1, - "connection.": 2, - "CFReadStreamSetProperty": 1, - "size": 12, - "tag": 2, - "http": 4, - "*responseHeaders": 2, - "UIViewAutoresizingFlexibleWidth": 4, - "JK_EXPECT_T": 22, - "request.": 1, - "Force": 2, - "characterAtIndex": 1, - "compressDataFromFile": 1, - "NSError": 51, - "persistence": 2, - "self.nsWindow": 3, - "allValues": 1, - "JK_WARN_UNUSED_PURE_NONNULL_ARGS": 1, - "findProxyCredentials": 2, - "objectFromJSONStringWithParseOptions": 2, - "affects": 1, - "buildRequestHeaders": 3, - "unlock": 20, - "measureBandwidthUsage": 1, - "slower": 1, - "UNI_SUR_LOW_START": 1, - "use.": 1, - "*proxyDomain": 2, - "allow": 1, - "unsigned": 62, - "upwards.": 1, - "TUITableViewRowInfo": 3, - "TUITableViewScrollPosition": 5, - "UIControlEventTouchUpInside": 1, - "forState": 4, - "*cacheSlot": 4, - "*keys": 2, - "attempt": 3, - "newCookie": 1, - "NSObject": 5, - "aProxyAuthenticationBlock": 1, - "account": 1, - "self.animateSelectionChanges": 1, - "irow": 3, - "event": 8, - "UILabel": 2, - "local": 1, - "a.frame.origin.y": 2, - "JKParseOptionNone": 1, - "removeTemporaryUncompressedDownloadFile": 1, - "self.bounds.size.width": 4, - "_tableView.delegate": 1, - "kCFStreamPropertyHTTPResponseHeader": 1, - "calling": 1, - "compatible": 1, - "JSONData": 3, - "#ifdef": 10, - "cancelLoad": 3, - "repr": 5, - "UIButton*": 1, - "starts.": 1, - "CFRetain": 4, - "self.contentSize": 3, - "JKManagedBufferLocationMask": 1, - "Collection": 1, - "selected": 2, - "forRowAtIndexPath": 2, - "addHeader": 5, - "xDC00": 1, - "JSONNumberStateStart": 1, - "longer": 2, - "runningRequestCount": 1, - "button": 5, - "initWithObjects": 2, - "NSMallocException": 2, - "JKTokenTypeNull": 1, - "presented": 2, - "*mainRequest": 2, - "setRequestRedirectedBlock": 1, - "_visibleItems": 14, - "accumulator": 1, - "JKManagedBufferMustFree": 1, - "jsonData": 6, - "*startForNoSelection": 2, - "case": 8, - "_JKDictionaryHashTableEntryForKey": 1, - "_JKArrayClass": 5, - "removeTemporaryCompressedUploadFile": 1, - "*ASIHTTPRequestVersion": 2, - "d": 11, - "LONG_MIN": 3, - "indexPathsToAdd": 2, - "styleType": 3, - "loadView": 4, - "ld": 2, - "_JKDictionaryHashEntry": 2, - "clearSession": 2, - "cancelled": 5, - "setRequestMethod": 3, - "setAnimationsEnabled": 1, - "next": 2, - "rowCount": 3, - "initWithObjectsAndKeys": 1, - "JKParseOptionComments": 2, - "automatically": 2, - "cbSignature": 1, - "setPostBodyReadStream": 2, - "associated": 1, - "anything": 1, - "round": 1, - "newValue": 2, - "*decoder": 1, - "host": 9, - "": 1, - "NSIntegerMax": 4, - "r": 6, - "range.length": 1, - "JSONNumberStateExponentStart": 1, - "LLONG_MIN": 1, - "Clear": 3, - "TTSectionedDataSource": 1, - "JKEncodeOptionAsData": 1, - "performRedirect": 1, - "custom": 2, - "us": 2, - "kTextStyleType": 2, - "JSONNumberStateExponent": 1, - "anUploadSizeIncrementedBlock": 1, - "fail": 1, - "__has_feature": 3, - "__IPHONE_OS_VERSION_MAX_ALLOWED": 4, - "ASINetworkErrorType": 1, - "responder": 2, - "__inline__": 1, - "partial": 2, - "useKeychainPersistence": 4, - "NSLocaleIdentifier": 1, - "ASIHTTPRequests": 1, - "connectionCanBeReused": 4, - "firstIndexPath": 4, - "number": 2, - "readResponseHeaders": 2, - "proxyAuthenticationRetryCount": 4, - "out": 7, - "Expected": 3, - "jk_parse_is_newline": 1, - "UNI_MAX_LEGAL_UTF32": 1, - "options": 6, - "various": 1, - "sessionProxyCredentialsStore": 1, - "removeObject": 2, - "**": 27, - "occurs": 1, - "NSNumberAllocImp": 2, - "encodeOption": 2, - "JK_FAST_TRAILING_BYTES": 2, - "asks": 1, - "removeCredentialsForHost": 1, - "newSize": 1, - "withProgress": 4, - "true.": 1, - "total": 4, - "__LP64__": 4, - "enumerateIndexPathsUsingBlock": 2, - "#": 2, - "xffffffffffffffffULL": 1, - "@property": 150, - "applyProxyCredentials": 2, - "ASIInternalErrorWhileBuildingRequestType": 3, - "": 1, - "sessionCredentials": 6, - "generated": 3, - "*pullDownView": 1, - "constrainedToSize": 2, - "*newObjects": 1, - "jk_encode_write1": 1, - "an": 20, - "users": 1, - "label.font": 3, - "_JKDictionaryAddObject": 4, - "Custom": 1, - "started": 1, - "clientCallBackInfo": 1, - "persistentConnectionsPool": 3, - "shouldPresentAuthenticationDialog": 1, - "willChangeValueForKey": 1, - "*error_": 1, - "into": 1, - "mutableObjectFromJSONStringWithParseOptions": 2, - "because": 1, - "superview": 1, - "SBJsonParser": 2, - "frame.size.height": 15, - "decompressed": 3, - "finishedDownloadingPACFile": 1, - "pullDownView": 1, - "JK_WARN_UNUSED_PURE": 1, - "incase": 1, - "responses": 5, - "itemsPtr": 2, - "false": 3, - "CFHTTPMessageCreateRequest": 1, - "responseCookies": 1, - "lock": 19, - "*url": 2, - "so": 15, - "lastIndexPath.section": 2, - "visibleRect": 3, - "cell.reuseIdentifier": 1, - "nn": 4, - "userAgentString": 1, - "checkRequestStatus": 2, - "*exception": 1, - "DEBUG_REQUEST_STATUS": 4, - "view.backgroundColor": 2, - "Internal": 2, - "NSInvalidArgumentException": 6, - "location": 3, - "useful": 1, - "__GNUC__": 14, - "addView": 5, - "__GNUC_MINOR__": 3, - "expect": 3, - "parseStringEncodingFromHeaders": 2, - "apps": 1, - "firstResponder": 3, - "*identifier": 1, - "headerHeight": 4, - "*_JKArrayCreate": 2, - "uploadSizeIncrementedBlock": 5, - "capacity": 51, - "extract": 1, - "Whether": 1, - "kCFStreamSSLAllowsExpiredCertificates": 1, - "*delegateAuthenticationLock": 1, - "agent": 2, - "cell.layer.zPosition": 1, - "section": 60, - "label.text": 2, - "the": 197, - "notified": 2, - "constructor": 1, - "relativeToURL": 1, - "All": 2, - "remain": 1, - "authenticationNeeded": 3, - "sortedArrayUsingComparator": 1, - "above.": 1, - "Username": 2, - "Deserializing": 1, - "No": 1, - "TUITableViewScrollPositionMiddle": 1, - "flashScrollIndicators": 1, - "usually": 2, - "changes": 4, - "Details": 1, - "*b": 2, - "E2080UL": 1, - "standard": 1, - "didReceiveBytes": 2, - "comes": 3, - "text.autoresizingMask": 1, - "kFramePadding": 7, - "*requestHeaders": 1, - "initWithURL": 4, - "relativeOffset": 5, - "NSOrderedSame": 1, - "makeFirstResponderIfNotAlreadyInResponderChain": 1, - "mutationsPtr": 2, - "[": 1227, - "session": 5, - "PRODUCTION": 1, - "may": 8, - "*atCharacterPtr": 1, - "animated": 27, - "Temporarily": 1, - "*argv": 1, - "hideNetworkActivityIndicator": 1, - "methods": 2, - "visible": 16, - "andPassword": 2, - "Serializing": 1, - "//Some": 1, - "fileSize": 1, - "postBodyWriteStream": 7, - "selectValidIndexPath": 3, - "CGRectIntersectsRect": 5, - "bounds": 2, - "particular": 2, - "UIApplication": 2, - "Create": 1, - "setDidReceiveResponseHeadersSelector": 1, - "i": 41, - "NTLM": 6, - "JK_DEPRECATED_ATTRIBUTE": 6, - "*connectionsLock": 1, - "////////////": 4, - "remaining": 1, - "layout": 3, - "instance": 2, - "NSZone": 4, - "JSONStringStateEscapedUnicode4": 1, - "setDidStartSelector": 1, - "Type": 1, - "JSONStringStateEscape": 1, - "setMaxBandwidthPerSecond": 1, - "ASICacheStoragePolicy": 2, - "temporaryUncompressedDataDownloadPath": 3, - "contentOffset": 2, - "parser.delegate": 1, - "currentHash": 1, - "xF8": 1, - "setDownloadSizeIncrementedBlock": 1, - "*userInfo": 2, - "setSessionCookies": 1, - "push": 1, - "PlaygroundViewController": 2, - "arrayWithObjects": 1, - "trailingBytesForUTF8": 1, - "_headerView.autoresizingMask": 1, - "styleWithSelector": 4, - "CGFloat": 44, - "NSCParameterAssert": 19, - "expiring": 1, - "setLastBytesRead": 1, - "LONG_MAX": 3, - "cookie": 1, - "setTimeOutSeconds": 1, - "NSMutableData": 5, - "RedirectionLimit": 1, - "frame.origin.y": 16, - "kCFHTTPVersion1_0": 1, - "validatesSecureCertificate": 3, - "NSIntegerMin": 3, - "Content": 1, - "Methods": 1, - "NSError**": 2, - "initialization": 1, - "talking": 1, - "type.": 3, - "NSLocalizedDescriptionKey": 10, - "ntlmComponents": 1, - "ASIProxyAuthenticationNeeded": 1, - "_styleHighlight": 6, - "anObject": 16, - "JKParseOptionPermitTextAfterValidJSON": 2 - }, - "wisp": { - "Wisp": 13, - "access": 1, - "implemting": 1, - "expression": 6, - "does": 1, - "choose": 1, - "Commas": 2, - "pioneered": 1, - "Instead": 1, - "capturing": 1, - "defined": 1, - "made": 2, - "If": 2, - "map": 3, - "##": 2, - "pairs.": 1, - "dsl": 1, - "conventions": 3, - "/": 1, - "usually": 3, - "special": 4, - "javascript": 1, - "expressed": 3, - "macro": 7, - "methods": 1, - "containing": 1, - "fulfill": 1, - "variadic": 1, - "JSONs": 1, - "-": 33, - "function": 7, - "multiple": 1, - "rest": 7, - "nil.": 1, - "defn": 2, - "named": 1, - "tagret": 1, - "as": 4, - "you": 1, - "achieve": 1, - "objects.": 1, - "presented": 1, - "+": 9, - "example": 1, - "filter": 2, - "render": 2, - "compatible": 1, - "overload": 1, - "Numbers": 1, - "consice": 1, - ")": 75, - "enter": 1, - "clojure": 2, - "chaining.": 1, - "reduce": 3, - "log": 1, - "lists": 1, - "today": 1, - "The": 1, - "differences": 1, - "maps": 1, - "verbose": 1, - "Now": 1, - "need": 1, - "dialect": 1, - "naming": 1, - "but": 7, - "}": 4, - "structures": 1, - "themselves.": 1, - "effort": 1, - "purpose": 2, - "chaining": 1, - "item": 2, - "sugar": 1, - "single": 1, - "ease": 1, - "easier": 1, - "no": 1, - "{": 4, - "data": 1, - "expressions": 6, - "isEnterKey": 1, - "#": 2, - "Making": 1, - "We": 1, - "load": 1, - "Although": 1, - "y": 6, - "Overloads": 1, - "operation": 3, - "different": 1, - "form.": 1, - "diff": 1, - "function.": 1, - "contain": 1, - "void": 2, - "conditional": 1, - "assemble": 1, - "simbols": 1, - "compiles": 1, - "following": 2, - "optional": 2, - "character": 1, - "desired": 1, - "when": 1, - "build": 1, - "or": 2, - "array.": 1, - "problem": 1, - "s": 7, - "jQuery": 1, - "types.": 1, - "You": 1, - "quoted": 1, - "input": 1, - "homoiconic": 1, - "making": 1, - "many.": 1, - "context": 1, - "used": 1, - "program": 1, - "open": 2, - "on": 1, - "arrays.": 1, - "instance": 1, - "which": 3, - "Maps": 2, - "available": 1, - "functional": 1, - "very": 2, - "this": 2, - "then": 1, - "get": 2, - "Other": 1, - "strings": 3, - "multiline": 1, - "white": 1, - "immediately.": 1, - "some": 2, - "clojurescript.": 1, - "Macros": 2, - "come": 1, - "into": 2, - "JS": 17, - "sometimes": 1, - "let": 2, - "case": 1, - "less": 1, - "listToVector": 1, - "items": 2, - "without": 2, - "representing": 1, - "anyway": 1, - "first": 4, - "keys": 1, - "Any": 1, - "of": 16, - "party": 1, - "JS.": 2, - "<": 1, - "third": 2, - "names": 1, - "Forms": 1, - "tradeoffs.": 1, - "handy": 1, - "keypress": 2, - "throws": 1, - "understand": 1, - "with": 6, - "bop": 1, - "may": 1, - "define": 4, - "operations": 3, - "exception.": 1, - "booleans": 2, - "unless": 5, - "args": 1, - "evaluate": 2, - "for": 5, - "target": 1, - "identifiers": 2, - "shortcut": 1, - "has": 2, - "def": 1, - "passed": 1, - "resulting": 1, - "c": 1, - "though": 1, - "options": 2, - "version": 1, - "@body": 1, - "Special": 1, - "it": 10, - "value": 2, - "lot": 2, - "expression.": 1, - "a": 24, - "Instantiation": 1, - "respective": 1, - "suffixed": 1, - "name": 2, - "As": 1, - "yet": 1, - "macros": 2, - "calls": 3, - "defmacro": 3, - "arguments.": 2, - "introspection": 1, - "will": 6, - "not": 4, - "instantiation": 1, - "prevent": 1, - "]": 22, - "expanded": 2, - "chanining": 1, - "body": 4, - "Vectors": 1, - "in": 16, - "common": 1, - "overloaded": 1, - "evaluates": 2, - "results.": 1, - "Else": 1, - "want": 2, - "[": 22, - "compile": 3, - "hand": 1, - "Let": 1, - "hash": 1, - ".": 6, - "syntax": 2, - "API": 1, - "space": 1, - "one": 3, - "getInputText": 1, - "at": 1, - "Compbining": 1, - "solve": 1, - "invoked": 2, - "js": 1, - "future": 2, - "keywords": 1, - "being": 1, - "associated": 2, - "numbers": 2, - "human": 1, - "delimited": 1, - "arbitary": 1, - "message": 2, - "although": 1, - "dashDelimited": 1, - "needs": 1, - "return": 1, - "if": 7, - "(": 77, - "all": 4, - "take": 2, - "by": 2, - "For": 2, - "added": 1, - "via": 2, - "execute": 1, - "syntax.": 1, - "beep": 1, - "an": 1, - "compbine": 1, - "such": 1, - "&": 6, - "output.": 1, - "capture": 1, - "transparent": 1, - "more": 3, - "bindings": 1, - "desugars": 1, - "metadata": 1, - "documentation": 1, - "keyword": 1, - "string": 1, - "Docstring": 1, - "since": 1, - "print": 1, - "Not": 1, - "side": 2, - "incerement": 1, - "Note": 3, - "fn": 15, - "Lists": 1, - "they": 3, - "encouraning": 1, - "requires": 1, - "their": 2, - "follows": 1, - "__privates__": 1, - "puts": 1, - "macros.": 1, - "makes": 1, - "lexical": 1, - "also": 2, - "x": 22, - "result": 2, - "expressions.": 1, - "increment": 1, - "just": 3, - "console.log": 2, - "wisp": 6, - "form": 10, - "simbol": 1, - "like": 2, - "effects": 1, - "unlike": 1, - "Strings": 2, - "window.addEventListener": 1, - "limited.": 1, - "t": 1, - "metadata.": 1, - ".log": 1, - "console": 1, - "Type.": 1, - "Bindings": 1, - "symbolic": 2, - "evaluating": 1, - "ways": 1, - "Since": 1, - "use": 2, - "few": 1, - "equivalent": 2, - "we": 2, - "vector": 1, - "cons": 2, - "class.": 1, - "depending": 1, - "evaluation": 1, - "instead.": 1, - "key": 3, - "Method": 1, - "arguments": 7, - "Via": 1, - "that": 7, - "exectued": 1, - "baz": 2, - "undefined": 1, - "everything": 1, - "More": 1, - "try": 1, - "separating": 1, - "evaluated.": 1, - "them": 1, - "before": 1, - "strings.": 1, - "comments": 1, - "popular": 1, - "Booleans": 1, - "to": 21, - "there": 1, - "condition": 4, - "char": 1, - "second": 1, - "missing": 1, - "be": 15, - "new": 2, - "because": 1, - "called.": 1, - "are": 14, - "Class": 1, - "Also": 1, - "text": 1, - "object": 1, - "handler": 1, - "Conventions": 1, - "than": 1, - "argument": 1, - "similar": 2, - "true": 6, - "sum": 3, - "list": 2, - "how": 1, - "compiled": 2, - "code": 3, - "differenc": 1, - "templating": 1, - "bound": 1, - ";": 199, - "type": 2, - "more.reduce": 1, - "bar": 4, - "from": 2, - "doesn": 1, - "forms": 1, - "have": 2, - "vectors": 1, - "functions": 8, - "time": 1, - "nil": 4, - "Keywords": 3, - "Characters": 2, - "translating": 1, - "In": 5, - "predicate": 1, - "constats": 1, - "lisp": 1, - "monday": 1, - "and": 9, - "up": 1, - "method": 2, - "the": 9, - "plain": 2, - "above": 1, - "effect": 1, - "might": 1, - "do": 4, - "can": 13, - "Functions": 1, - "b": 5, - "implemented.": 1, - "isPredicate": 1, - "is": 20, - "number": 3, - "foo": 6, - "rest.reduce": 1, - "readable": 1, - "false": 2, - "language": 1, - "Unfortunately": 1, - "dash": 1 - }, - "TXL": { - "by": 6, - "resolveParentheses": 2, - "rule": 12, - "expression": 9, - "program": 1, - "N2": 8, - "N1": 8, - "replace": 6, - "addop": 2, - "N": 2, - "*": 2, - "+": 2, - "E": 3, - "/": 3, - "-": 3, - ")": 2, - "(": 2, - "|": 3, - "]": 38, - "[": 38, - "resolveDivision": 2, - "primary": 4, - "mulop": 2, - "resolveAddition": 2, - "main": 1, - "number": 10, - "define": 12, - "where": 1, - "resolveMultiplication": 2, - "resolveSubtraction": 2, - "NewE": 3, - "construct": 1, - "not": 1, - "term": 6, - "end": 12 - }, - "Ruby": { - "Kernel.rand": 1, - "bottle": 1, - "raise": 17, - "lib": 1, - "": 1, - "now": 1, - "URI": 3, - "plugin.developed_by": 1, - "@queues": 2, - "github": 1, - "Jekyll": 3, - "invalid": 1, - "for": 1, - "klass_name": 2, - "uninitialized": 1, - "redis.server": 1, - "DependencyCollector.new": 1, - "download_strategy": 1, - "%": 10, - "cmd.split": 1, - "Pathname.new": 3, - "threaded": 1, - "push": 1, - "redis.respond_to": 2, - "HOMEBREW_REPOSITORY": 4, - "self.use": 1, - "force": 1, - "class": 7, - "working.size": 1, - "processed": 2, - "bottle_url": 3, - "ENV": 4, - "override": 3, - "installed_prefix": 1, - "share": 1, - "head": 3, - "before_hooks": 2, - "patches": 2, - "id": 1, - "accept": 1, - "of": 1, - "self.class.skip_clean_paths.include": 1, - "plugin": 3, - "Jenkins": 1, - "NotFound": 1, - "self.class.skip_clean_all": 1, - "Job.reserve": 1, - "man1": 1, - "NameError": 2, - "inside": 2, - "path": 16, - "map": 1, - "inflections.humans.each": 1, - "ancestor": 3, - "attributes": 2, - "download_strategy.new": 2, - "based": 1, - "brew": 2, - "after_fork": 2, - "stack": 2, - "Request": 2, - "clear": 1, - "possible_alias.file": 1, - "self.helpers": 1, - "app_file": 4, - "extends": 1, - "pattern": 1, - "CompilerFailure.new": 2, - "base.class_eval": 1, - "mime_type": 1, - "center": 1, - "/.*": 1, - "URI.escape": 1, - ".size": 1, - "h": 2, - "@spec_to_use": 4, - "json": 1, - "path.to_s": 3, - "Job.create": 1, - "Got": 1, - "self.expand_deps": 1, - "namespace": 3, - "path.respond_to": 5, - "capitalize": 1, - "bottle_version": 2, - "Rack": 1, - "attr": 4, - "constant": 4, - "args.empty": 1, - "name.basename": 1, - "Compiler": 1, - "pending": 1, - "options": 3, - "self.all": 1, - "err.to_s": 1, - ".capitalize": 1, - "width": 1, - "@sha1": 6, - "String": 2, - "patch_list": 1, - "enqueue_to": 2, - "|": 91, - "bottle_base_url": 1, - "delete": 1, - "

": 1, - "": 1, - "self.version": 1, - "a": 10, - "w/": 1, - "tapd": 1, - "to_check": 2, - "worker_id": 2, - "dequeue": 1, - "return": 25, - "to_s": 1, - "+": 47, - "name.to_s": 3, - "skip_clean": 2, - "rd.eof": 1, - "bottle_sha1": 2, - ".include": 1, - "#plugin.depends_on": 1, - "owned": 1, - "ArgumentError": 1, - "HOMEBREW_CELLAR": 2, - "word.gsub": 4, - "Job.destroy": 1, - "devel": 1, - "Wrapper": 1, - "inflections.singulars": 1, - "HOMEBREW_PREFIX": 2, - "u": 1, - "Dir.pwd": 3, - "plugin.display_name": 1, - "set": 36, - "stable": 2, - "/not": 1, - "stdout.reopen": 1, - "relative_pathname.stem.to_s": 1, - "man7": 1, - "failure.compiler": 1, - "self": 11, - "Z": 3, - "align": 2, - "caveats": 1, - "HOMEBREW_CACHE_FORMULA.mkpath": 1, - "SecureRandom.hex": 1, - ".rb": 1, - "#888": 1, - "name.capitalize.gsub": 1, - "@dependencies": 1, - "u.phone_numbers": 1, - "task": 2, - "name.kind_of": 2, - "default": 2, - "wr": 3, - "distributed": 1, - "plugin.description": 1, - "phone_numbers": 1, - "type": 10, - "n": 4, - "threw": 1, - "string.gsub": 1, - "/i": 2, - "lower_case_and_underscored_word.to_s.dup": 1, - "apply_inflections": 3, - "supplied": 4, - "here": 1, - "removed_ENV_variables": 2, - "add_charset": 1, - "f.deps.map": 1, - "Worker.working": 1, - "HOMEBREW_REPOSITORY/": 2, - "word.empty": 1, - "match": 6, - "Plugin.before_dequeue_hooks": 1, - "constant.const_get": 1, - "explanation": 1, - "possible_cached_formula.to_s": 1, - "formula_with_that_name": 1, - "instance_eval": 2, - "/redis": 1, - "@#": 2, - "NoClassError.new": 1, - "ENV.remove_cc_etc": 1, - "autotools": 1, - "remove": 1, - "Formula.path": 1, - "path.relative_path_from": 1, - "table_name": 1, - "bottle_filename": 1, - "FormulaUnavailableError.new": 1, - "n.id": 1, - "@url": 8, - "use_code": 1, - "exec": 2, - "def": 143, - "constant.ancestors.inject": 1, - "send_file": 1, - "error": 3, - "out": 4, - "@standard": 3, - "cc_failures": 1, - "number.to_i.abs": 2, - "alias": 1, - "method_override": 4, - "patch_list.download": 1, - "Delegator.delegate": 1, - "replacement": 4, - "hash": 2, - "template": 1, - "": 1, - "@downloader.cached_location": 1, - "@standard.nil": 1, - "relative_pathname": 1, - "@unstable": 2, - "content_type": 3, - "bottle_block.instance_eval": 1, - "ftp": 1, - "camel_cased_word": 6, - "item": 4, - "attr_writer": 4, - "demodulize": 1, - "instance_variable_set": 1, - "klass.respond_to": 1, - "color": 1, - "inflections.acronym_regex": 2, - "registered_at": 1, - "self.class.send": 1, - "formula_with_that_name.readable": 1, - "{": 68, - "": 1, - "end": 236, - "libexec": 1, - "email": 1, - "or": 7, - "require": 58, - "self.path": 1, - "File.expand_path": 1, - "Hash": 3, - "HOMEBREW_CACHE_FORMULA": 2, - "Delegator.target.register": 1, - "mirror_list.empty": 1, - "use/testing": 1, - "p.patch_args": 1, - "next": 1, - "cc.name": 1, - "installed_prefix.children.length": 1, - "id=": 1, - "key.sub": 1, - "MultiJsonCoder.new": 1, - "camel_cased_word.split": 1, - "*": 3, - "self.class.dependencies.external_deps": 1, - "delegate": 1, - "Delegator": 1, - "config.is_a": 1, - "Application": 2, - "dependencies": 1, - ".flatten.uniq": 1, - "dasherize": 1, - "v.to_s.empty": 1, - "parts.pop": 1, - "http": 1, - "t": 3, - "start": 7, - "redis.lrange": 1, - "reset": 1, - "self.configuration": 1, - "sha1": 4, - "config.log": 2, - "attr_rw": 4, - "": 1, - "man6": 1, - "*args": 16, - "doc": 1, - "word.tr": 1, - "": 1, - "string": 4, - "word.to_s.dup": 1, - "result": 8, - "VERSION": 1, - "CHECKSUM_TYPES.detect": 1, - "hash.upcase": 1, - "Expected": 1, - "via": 1, - "Plugin.after_dequeue_hooks": 1, - "args": 5, - "config_file": 2, - "-": 34, - "@head": 4, - "last": 4, - "@path": 1, - "Redis.new": 1, - "ActiveSupport": 1, - "rd.close": 1, - "removed_ENV_variables.each": 1, - "queues.size": 1, - "dev": 1, - "attrs.each": 1, - "val": 10, - "path.stem": 1, - "SHEBANG#!python": 1, - "skip_clean_all": 2, - "Plugin.after_enqueue_hooks": 1, - "w": 6, - "on": 2, - "else": 25, - "Z0": 1, - "running": 2, - "CHECKSUM_TYPES": 2, - "*/": 1, - "
": 1,
-      "above.": 1,
-      "reload_templates": 1,
-      "@spec_to_use.url": 1,
-      "A": 5,
-      "Plugin": 1,
-      "@before_first_fork": 2,
-      "paths": 3,
-      "font": 2,
-      "Redis": 3,
-      "hasher": 2,
-      "&": 31,
-      "#remove": 1,
-      "safe_constantize": 1,
-      "value": 4,
-      "characters": 1,
-      "std_cmake_args": 1,
-      "retry": 2,
-      "SHEBANG#!ruby": 2,
-      "formula_with_that_name.file": 1,
-      "settings": 2,
-      "thread_safe": 2,
-      "explicitly_requested": 1,
-      "humanize": 2,
-      "Z_": 1,
-      "underscored_word": 1,
-      "method": 4,
-      "hook": 9,
-      "failure": 1,
-      ".gsub": 5,
-      ".sort_by": 1,
-      "queues.inject": 1,
-      "p": 2,
-      "fn.incremental_hash": 1,
-      "Pathname": 2,
-      "Delegator.target.helpers": 1,
-      "nend": 1,
-      "mirror": 1,
-      "redis": 7,
-      "prefix.parent": 1,
-      "peek": 1,
-      "role": 1,
-      "gzip": 1,
-      "result.tr": 1,
-      "redis.client.id": 1,
-      "man2": 1,
-      "false": 26,
-      "dependencies.add": 1,
-      "layout": 1,
-      "IO.pipe": 1,
-      "val.nil": 3,
-      "CHECKSUM_TYPES.each": 1,
-      "self.target": 1,
-      "instance_variable_defined": 2,
-      "external_deps": 1,
-      "extensions": 6,
-      "raise_errors": 1,
-      "YAML.load_file": 1,
-      "classify": 1,
-      "@skip_clean_paths": 3,
-      "@stack.call": 1,
-      "settings.add_charset": 1,
-      "rescue": 13,
-      "plugin.uses_repository": 1,
-      "For": 1,
-      "rack": 1,
-      "self.class.mirrors": 1,
-      "src=": 1,
-      "absolute_redirects": 1,
-      "Formula": 2,
-      "plugin.version": 1,
-      "camelize": 2,
-      "sha256": 1,
-      "tapd.directory": 1,
-      ".slice": 1,
-      "@stack": 1,
-      "self.register": 2,
-      "args.collect": 1,
-      "enable": 1,
-      "remove_queue": 1,
-      "i": 2,
-      "FileUtils": 1,
-      "system": 1,
-      "location": 1,
-      "DCMAKE_FIND_FRAMEWORK": 1,
-      "logging": 2,
-      "ARGV.build_devel": 2,
-      "from_url": 1,
-      "ordinalize": 1,
-      "require_all": 4,
-      "self.class.keg_only_reason": 1,
-      "release": 1,
-      "private": 3,
-      "initialize": 2,
-      "the": 8,
-      "Wno": 1,
-      "validate_variable": 7,
-      "@redis": 6,
-      "dump_errors": 1,
-      "downloader.fetch": 1,
-      "name.include": 2,
-      "server.unshift": 6,
-      "webrick": 1,
-      "URI.const_defined": 1,
-      "KegOnlyReason.new": 1,
-      "NoQueueError.new": 1,
-      "Delegator.target.send": 1,
-      "extend": 2,
-      "built": 1,
-      "dep.to_s": 1,
-      "table_name.to_s.sub": 1,
-      "png": 1,
-      "var": 1,
-      "HTML": 2,
-      "port": 4,
-      "keys": 6,
-      "}": 68,
-      "Parser.new": 1,
-      "cmd": 6,
-      "SystemCallError": 1,
-      "before_fork": 2,
-      "Object": 1,
-      "text": 3,
-      "b": 4,
-      "constantize": 1,
-      "failure.build.zero": 1,
-      "module": 8,
-      "sha1.shift": 1,
-      "config": 3,
-      "after": 1,
-      "ARGV.formulae.include": 1,
-      "string.sub": 2,
-      "bzip2": 1,
-      "keg_only_reason": 1,
-      "mirror_list": 2,
-      "remove_worker": 1,
-      "pop": 1,
-      "body": 1,
-      "redis.smembers": 1,
-      "opoo": 1,
-      "Stat": 2,
-      "plist_name": 2,
-      "pluralize": 3,
-      "ordinal": 1,
-      "inflections.acronyms": 1,
-      "self.new": 1,
-      "attrs": 1,
-      ".freeze": 1,
-      "username": 1,
-      "v": 2,
-      "decode": 2,
-      "break": 4,
-      "auto": 1,
-      "each": 1,
-      "path.nil": 1,
-      "Z/": 1,
-      "host": 3,
-      "cc": 3,
-      "args.dup": 1,
-      "yield": 5,
-      "[": 56,
-      "url": 12,
-      "man8": 1
-    },
-    "Literate CoffeeScript": {
-      "@method": 1,
-      "method": 1,
-      "exports.Scope": 1,
-      "_": 3,
-      "hasOwnProperty.call": 1,
-      "declared": 2,
-      "knows": 1,
-      "know": 1,
-      "at": 1,
-      "tempVars": 1,
-      "not": 1,
-      "need": 2,
-      "new": 2,
-      "well": 1,
-      "CoffeeScript.": 1,
-      "scoping": 1,
-      "way": 1,
-      "is": 3,
-      "class": 2,
-      "{": 4,
-      "**Block**": 1,
-      "Scope.root": 1,
-      "and": 5,
-      "an": 1,
-      "Object": 1,
-      "add": 1,
-      "@parent.add": 1,
-      "plan": 1,
-      "its": 3,
-      "(": 5,
-      "this": 3,
-      "supposed": 1,
-      "top": 2,
-      "function": 2,
-      "**Scope**": 2,
-      "extend": 1,
-      "code": 1,
-      "param": 1,
-      "chain": 1,
-      "var": 4,
-      "tempVars.sort": 1,
-      "nested": 1,
-      "that": 2,
-      "@positions": 4,
-      "made": 1,
-      "called": 1,
-      "same": 1,
-      "existing": 1,
-      "Return": 1,
-      "v.name": 1,
-      ".push": 1,
-      "or": 1,
-      "root": 1,
-      "variable": 1,
-      "]": 4,
-      "tree": 1,
-      "assignedVariables": 1,
-      "list": 1,
-      "current": 1,
-      "Scope": 1,
-      "scope.": 2,
-      "use.": 1,
-      "immediate": 3,
-      "about": 1,
-      "external": 1,
-      "it": 4,
-      "parent": 2,
-      "Initialize": 1,
-      "generate": 1,
-      "v": 1,
-      "name": 8,
-      "@root": 1,
-      "file.": 1,
-      "in": 2,
-      "be": 2,
-      "of": 4,
-      "type": 5,
-      "else": 2,
-      "with": 3,
-      ")": 6,
-      "The": 2,
-      "shape": 1,
-      "create": 1,
-      "up": 1,
-      "has": 1,
-      "enclosing": 1,
-      "we": 4,
-      "then": 1,
-      "In": 1,
-      "scope": 2,
-      "the": 12,
-      "@variables.push": 1,
-      "null": 1,
-      "lookups": 1,
-      "regulates": 1,
-      "declare": 1,
-      "realVars.sort": 1,
-      "realVars": 1,
-      "find": 1,
-      "are": 3,
-      "require": 1,
-      "level": 1,
-      "helpers": 1,
-      "a": 8,
-      "v.type.assigned": 1,
-      "assignments": 1,
-      "super": 1,
-      "you": 2,
-      "return": 1,
-      ".type": 1,
-      "as": 3,
-      "[": 4,
-      "unless": 1,
-      "shared": 1,
-      "which": 3,
-      "given": 1,
-      "}": 4,
-      "overrides": 1,
-      "where": 1,
-      "bodies.": 1,
-      "Import": 1,
-      "variables": 3,
-      "scopes": 1,
-      "lexical": 1,
-      "As": 1,
-      "@expressions": 1,
-      "last": 1,
-      "scopes.": 1,
-      "to.": 1,
-      "-": 5,
-      "when": 1,
-      "@shared": 1,
-      "for": 3,
-      "node": 1,
-      "within": 2,
-      "one.": 1,
-      "Each": 1,
-      "When": 1,
-      "if": 2,
-      "belongs": 2,
-      "to": 8,
-      "object": 1,
-      ".concat": 1,
-      "Adds": 1,
-      "@parent": 2,
-      "should": 1,
-      "constructor": 1,
-      "@variables": 3,
-      "reference": 3
-    },
-    "Forth": {
-      "defined": 1,
-      "ahead": 2,
-      "extension": 4,
-      "return": 5,
-      "necessary": 1,
-      "word": 9,
-      "cs": 2,
-      "http": 1,
-      "char": 10,
-      "keep": 1,
-      ")": 87,
-      "BITS": 3,
-      "flush": 1,
-      "adjacent": 2,
-      "update": 1,
-      "If": 1,
-      "unused": 1,
-      "of": 3,
-      "i*2": 1,
-      "addr": 11,
-      "@": 13,
-      "nr": 1,
-      "x": 10,
-      "parsing.": 1,
-      "power": 2,
-      "*": 9,
-      "m": 2,
-      "save": 2,
-      "abort": 3,
-      "current": 5,
-      "OR": 1,
-      "tools": 1,
-      "nonimmediate": 1,
-      "semantics": 3,
-      "undefined": 2,
-      "BEGIN": 3,
-      "or": 1,
-      "DUP": 14,
-      "UNTIL": 3,
-      "SWAP": 8,
-      "source": 5,
-      "A": 5,
-      "highest": 1,
-      "Copyright": 3,
-      "editor": 1,
-      "flag": 4,
-      "SP": 1,
-      "IF": 10,
-      "orig1": 1,
-      "else": 6,
-      "forth": 2,
-      "y": 5,
-      "execute": 1,
-      "until": 1,
-      "**n": 1,
-      "n": 22,
-      "MAX": 2,
-      "while": 2,
-      "allot": 2,
-      "list": 1,
-      "+": 17,
-      "compute": 1,
-      "if": 9,
-      "less": 1,
-      "MAXPOW2": 2,
-      "c": 3,
-      "interpret": 1,
-      "X": 5,
-      "end": 1,
-      "synonym": 1,
-      "e.g.": 2,
-      "dup": 10,
-      "immediate": 19,
-      "INVERT": 1,
-      "orig2": 1,
-      "find": 2,
-      "noname": 1,
-      "n1": 2,
-      "branch": 5,
-      "body": 1,
-      "compile": 2,
-      "pick": 1,
-      "#source": 2,
-      "Brinkhoff": 3,
-      "here": 9,
-      "bl": 4,
-      "state": 2,
-      "N": 6,
-      "and": 3,
-      "core": 1,
-      "C": 9,
-      "stack": 3,
-      "over": 5,
-      "recurse": 1,
-      "tib": 1,
-      "dest": 5,
-      "unresolved": 4,
-      "n2": 2,
-      "-": 473,
-      "refill": 2,
-      "number": 4,
-      "NOT": 3,
-      "rot": 2,
-      "reveal": 1,
-      "parse": 5,
-      "chars": 1,
-      "roll": 1,
-      "see": 1,
-      "drop": 4,
-      "pad": 3,
-      "begin": 2,
-      "does": 5,
-      "Kernel": 4,
-      "c@": 2,
-      "block": 8,
-      "|": 4,
-      "loop": 4,
-      "Forth": 1,
-      "defer": 2,
-      "Block": 2,
-      "scr": 2,
-      "thru": 1,
-      "type": 3,
-      "extended": 3,
-      ".": 5,
-      "kernel": 1,
-      "[": 16,
-      "empty": 2,
-      "n1_pow_n2": 1,
-      "not": 1,
-      "kata": 1,
-      "test": 1,
-      "assembler": 1,
-      "value": 1,
-      "bounds": 1,
-      "bool": 1,
-      "ok": 1,
-      "dodoes_code": 1,
-      "words.": 6,
-      "false": 1,
-      "numbers": 1,
-      "then": 5,
-      "/": 3,
-      "r": 18,
-      "bye": 1,
-      "**": 2,
-      "uses": 1,
-      "the": 7,
-      "ADJACENT": 3,
-      "query": 1,
-      "...": 4,
-      "restore": 1,
-      "ABORT": 1,
-      "utils": 1,
-      "bits": 3,
-      "NB": 3,
-      ";": 61,
-      "ELSE": 7,
-      "invert": 1,
-      "s": 4,
-      "with": 2,
-      "postpone": 14,
-      "have": 1,
-      "Undefined": 1,
-      "DEPTH": 2,
-      "postponers": 1,
-      "can": 2,
-      "NIP": 4,
-      "]": 15,
-      "repeat": 2,
-      "Tools": 2,
-      "R": 13,
-      "DO": 2,
-      "orig": 5,
-      "action": 1,
-      "log2_n": 1,
-      "be": 2,
-      "variable": 3,
-      "HELLO": 4,
-      "<": 14,
-      "resolve": 4,
-      "do": 2,
-      "#tib": 2,
-      "/cell": 2,
-      "u.r": 1,
-      "EMPTY": 1,
-      "OVER": 2,
-      "given": 3,
-      "i": 5,
-      "code": 3,
-      "swap": 12,
-      "input": 2,
-      "cells": 1,
-      "TWO": 3,
-      "align": 2,
-      "made": 2,
-      ".r": 1,
-      "within": 1,
-      "lastxt": 4,
-      "nip": 2,
-      "dictionary": 1,
-      "load": 2,
-      "HOW": 1,
-      "KataDiversion": 1,
-      "buffers": 2,
-      "TODO": 12,
-      "tuck": 2,
-      "blk": 3,
-      "u": 3,
-      "caddr": 1,
-      "maximum": 1,
-      "DROP": 5,
-      "N.": 1,
-      ".s": 1,
-      "MANY": 1,
-      "r@": 2,
-      "forget": 1,
-      "LOOP": 2,
-      "Forth2012": 2,
-      "Lars": 3,
-      "": 1,
-      "two": 2,
-      "x1": 5,
-      "I": 5,
-      "evaluate": 1,
-      "create": 2,
-      "emit": 2,
-      "literal": 4,
-      "//www.codekata.com/2007/01/code_kata_fifte.html": 1,
-      "which": 3,
-      "in": 4,
-      "(": 88,
-      "cr": 3,
-      "cmove": 1,
-      "depth": 1,
-      "true": 1,
-      "algorithm": 1,
-      "cell": 2,
-      "name": 1,
-      "x2": 5,
-      "LOG2": 1,
-      "THEN": 10,
-      "bits.": 1,
-      "negate": 1,
-      "following": 1,
-      "has": 1,
-      "below": 1,
-      "traverse": 1,
-      "buffer": 2,
-      "string": 3
-    },
-    "Java": {
-      "CopyOnWriteList": 4,
-      "clearCache": 1,
-      "initParser": 1,
-      "": 1,
-      "Functions.toEmailSafeString": 2,
-      "xsltModule.defineClassUnder": 1,
-      "ARRAY": 6,
-      "nokogiriClassCache.put": 26,
-      "for": 16,
-      "nokogiri.defineClassUnder": 2,
-      "htmlElemDesc.defineAnnotatedMethods": 1,
-      "XML_ATTRIBUTE_DECL_ALLOCATOR": 2,
-      "headers": 1,
-      "hasheq": 1,
-      "Opcodes.IALOAD": 1,
-      "XmlElement": 5,
-      "class": 12,
-      "com.google.protobuf.GeneratedMessage.FieldAccessorTable": 4,
-      "fixEmpty": 8,
-      "org.kohsuke.stapler.QueryParameter": 1,
-      "o": 12,
-      "setSlaves": 1,
-      "Float.TYPE": 2,
-      "EncodingHandler.class": 1,
-      "Jenkins": 2,
-      "": 1,
-      "T": 2,
-      "newBuilderForType": 2,
-      "xmlSchema.clone": 1,
-      "assigner": 2,
-      "xmlNode.clone": 1,
-      "XsltStylesheet.class": 2,
-      "long": 5,
-      "clear": 1,
-      "getSerializedSize": 2,
-      "htmlSaxModule.defineClassUnder": 1,
-      "HtmlSaxParserContext": 5,
-      "xmlSaxParserContext": 5,
-      "d.isArray": 1,
-      "Builder.create": 1,
-      "HtmlDomParserContext": 3,
-      "extends": 10,
-      "XStream": 1,
-      "Builder": 20,
-      "xmlEntityRef": 3,
-      ".computeBytesSize": 1,
-      "e.getMessage": 1,
-      "this.errorHandler": 2,
-      "rsp.sendRedirect2": 1,
-      "XmlSaxPushParser.class": 1,
-      "car": 18,
-      "o.hashCode": 2,
-      "h": 2,
-      "java.text.NumberFormat": 1,
-      "HtmlElementDescription": 1,
-      "com.google.protobuf.GeneratedMessage.Builder": 2,
-      "b.append": 1,
-      "buf.append": 21,
-      "htmlDocument.setParsedEncoding": 1,
-      "nodeSet": 1,
-      "sneakyThrow0": 2,
-      "package": 6,
-      "//XMLDocumentFilter": 1,
-      "runtimeException": 2,
-      "namespace": 1,
-      "XmlDocument.rbNew": 1,
-      "detected_encoding": 2,
-      "pcequiv": 2,
-      "attr": 1,
-      "IRubyObject": 35,
-      "getDimensions": 3,
-      "java.text.ParseException": 1,
-      "org.kohsuke.stapler.StaplerResponse": 1,
-      "dtd": 1,
-      "this.buf": 2,
-      "options": 4,
-      "getClassName": 1,
-      "Collections.synchronizedMap": 1,
-      "com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner": 2,
-      "String": 33,
-      "pi.defineAnnotatedMethods": 1,
-      "bs.isValidUtf8": 1,
-      "|": 5,
-      "Double.TYPE": 2,
-      "org.jruby.runtime.builtin.IRubyObject": 2,
-      "isValid": 2,
-      "BigInteger": 1,
-      "com.google.protobuf.CodedOutputStream": 2,
-      "": 3,
-      "this.unknownFields": 4,
-      "boolean": 36,
-      "cache.remove": 1,
-      "Type.OBJECT": 2,
-      "name.charAt": 1,
-      "final": 78,
-      "doQuietDown": 2,
-      "XmlXpathContext": 5,
-      "parse": 1,
-      "return": 267,
-      "+": 83,
-      "req": 6,
-      "hudson.PluginManager": 1,
-      "xmlDtd": 3,
-      "elementDecl.defineAnnotatedMethods": 1,
-      "ReferenceQueue": 1,
-      "xsltModule.defineAnnotatedMethod": 1,
-      "getObjectType": 1,
-      "name.getChars": 1,
-      "XML_DOCUMENT_ALLOCATOR": 2,
-      "ServletException": 3,
-      "htmlEntityLookup.defineAnnotatedMethods": 1,
-      "": 2,
-      "boost": 1,
-      "element.defineAnnotatedMethods": 1,
-      "getJobListeners": 1,
-      "CloudList": 3,
-      "xmlModule.defineModuleUnder": 1,
-      "@java.lang.Override": 4,
-      "xmlRelaxng.clone": 1,
-      "TopLevelItem": 3,
-      "descriptor": 3,
-      "XmlAttr.class": 1,
-      "throws": 26,
-      "RuntimeException": 5,
-      "DOUBLE": 7,
-      "e.getUnfinishedMessage": 1,
-      "java.io.InputStream": 4,
-      "isAdmin": 4,
-      "StringBuffer": 14,
-      "hudson.model.listeners.ItemListener": 1,
-      "methodDescriptor.indexOf": 1,
-      "setNodes": 1,
-      "RubyModule": 18,
-      "default": 6,
-      "RemoveNSAttrsFilter": 2,
-      "XmlProcessingInstruction": 5,
-      "nodeSet.defineAnnotatedMethods": 1,
-      "parsedMessage": 5,
-      "equiv": 17,
-      "java.lang.ref.SoftReference": 1,
-      "interface": 1,
-      "XmlComment.class": 1,
-      "to_bitField0_": 3,
-      "XML_SAXPARSER_CONTEXT_ALLOCATOR": 2,
-      "StaplerRequest": 4,
-      "type": 3,
-      "relaxng": 1,
-      "n": 3,
-      "k2": 38,
-      "htmlElemDesc": 1,
-      "m.getReturnType": 1,
-      "method.getParameterTypes": 1,
-      ".parse": 2,
-      "htmlDocument": 6,
-      "XML_DOCUMENT_FRAGMENT_ALLOCATOR": 2,
-      "ENCODING_HANDLER_ALLOCATOR": 2,
-      "characterData": 3,
-      "org.jruby.runtime.ThreadContext": 1,
-      "XmlEntityDecl": 1,
-      "xmlCdata": 3,
-      "relaxng.defineAnnotatedMethods": 1,
-      "xmlAttr": 3,
-      "match": 2,
-      "INT": 6,
-      "testee.equals": 1,
-      "java.io.IOException": 10,
-      "xmlSaxPushParser": 1,
-      "NokogiriErrorHandler": 2,
-      "other.getUnknownFields": 1,
-      "XML_DTD_ALLOCATOR": 2,
-      "xmlSaxModule.defineClassUnder": 2,
-      "headers.item": 2,
-      "xmlDocumentFragment": 3,
-      "nokogiri.internals.NokogiriHelpers.stringOrNil": 1,
-      "IHashEq": 2,
-      "hashCombine": 1,
-      "java.util.HashMap": 1,
-      "error": 1,
-      "g": 1,
-      "Long": 1,
-      "XmlEntityReference.class": 1,
-      ".floatValue": 1,
-      "getItem": 1,
-      ".getChildNodes": 2,
-      "writeTo": 1,
-      "XmlEntityDecl.EXTERNAL_GENERAL_UNPARSED": 1,
-      "stylesheet": 1,
-      "buf": 43,
-      "L": 1,
-      "getUnknownFields": 3,
-      "ReactorException": 2,
-      "doLogRss": 1,
-      "initFields": 2,
-      "getSort": 1,
-      "XmlDocument.class": 1,
-      "augs": 4,
-      "config.setErrorHandler": 1,
-      "hash": 3,
-      ".hasheq": 1,
-      "htmlDocument.setDocumentNode": 1,
-      "createXmlModule": 2,
-      "deserialization": 1,
-      "index": 4,
-      "SHORT_TYPE": 3,
-      "parameters": 4,
-      "xmlXpathContext": 3,
-      "PARSER.parseDelimitedFrom": 2,
-      "detected_encoding.isNil": 1,
-      "FormValidation": 2,
-      "item": 2,
-      "xmlRelaxng": 3,
-      "Byte.TYPE": 2,
-      "DefaultFilter": 2,
-      "xmlNodeSet": 5,
-      "nokogiri.NokogiriService": 1,
-      "type.equalsIgnoreCase": 2,
-      "{": 434,
-      "com.google.protobuf.UnknownFieldSet.getDefaultInstance": 1,
-      "end": 4,
-      "t.buf": 1,
-      "createXsltModule": 2,
-      "t.sort": 1,
-      "synchronized": 1,
-      "bs": 1,
-      "attrs.getLength": 1,
-      "xmlNamespace.clone": 1,
-      ".getSerializedSize": 1,
-      "internalGetFieldAccessorTable": 2,
-      "com.google.protobuf.GeneratedMessage": 1,
-      "//a": 1,
-      "ComputerListener.class": 1,
-      "c2": 2,
-      "any": 1,
-      "*": 2,
-      "XML_RELAXNG_ALLOCATOR": 2,
-      "HTML_ELEMENT_DESCRIPTION_ALLOCATOR": 2,
-      "XML_ELEMENT_ALLOCATOR": 2,
-      ".hasPermission": 1,
-      "name.length": 2,
-      "other": 6,
-      "create": 2,
-      "com.google.protobuf.CodedInputStream": 5,
-      "XML_ATTR_ALLOCATOR": 2,
-      "PARSER.parseFrom": 8,
-      "xmlSchema": 3,
-      "Numbers.compare": 1,
-      "nokogiriClassCacheGvarName": 1,
-      "BigInt": 1,
-      "Person": 10,
-      "t": 6,
-      "htmlDocument.setEncoding": 1,
-      "makeExtensionsImmutable": 1,
-      "java.math.BigInteger": 1,
-      "Jenkins.CloudList": 1,
-      "element_names": 3,
-      ".getAttributes": 1,
-      "parsePartialFrom": 1,
-      "VOID_TYPE": 3,
-      "e.getValue": 1,
-      "XML_XPATHCONTEXT_ALLOCATOR": 2,
-      "public": 214,
-      "documentFragment": 1,
-      "XmlDtd.class": 1,
-      ".mergeFrom": 2,
-      "BOOLEAN": 6,
-      "isInteger": 1,
-      "MasterComputer": 1,
-      "XmlXpathContext.class": 1,
-      "entref": 1,
-      "org.w3c.dom.NamedNodeMap": 1,
-      "typeDescriptor.toCharArray": 1,
-      "build": 1,
-      "persons.ProtocolBuffer.Person.getDefaultInstance": 2,
-      "IOException": 8,
-      "xmlText.clone": 1,
-      "result.bitField0_": 1,
-      "opcode": 17,
-      "org.jruby.RubyFixnum": 1,
-      "Messages.Hudson_NotANegativeNumber": 1,
-      "k1": 40,
-      "dtd.defineAnnotatedMethods": 1,
-      "m": 1,
-      "org.apache.xerces.xni.QName": 1,
-      "hudson.slaves.ComputerListener": 1,
-      "options.strict": 1,
-      "Hudson_NotAPositiveNumber": 1,
-      "basicLoad": 1,
-      "Stapler.getCurrentRequest": 1,
-      "entref.defineAnnotatedMethods": 1,
-      "catch": 27,
-      "FormValidation.error": 4,
-      "initErrorHandler": 1,
-      "tryGetCharsetFromHtml5MetaTag": 2,
-      "req.getParameter": 4,
-      "IPersistentCollection": 5,
-      "done": 4,
-      "com.google.protobuf.InvalidProtocolBufferException": 9,
-      "list.item": 2,
-      "XmlSyntaxError.class": 1,
-      "persons.ProtocolBuffer.Person.class": 2,
-      "Type": 42,
-      "getDescriptor": 15,
-      "super.mergeFrom": 1,
-      "extensionRegistry": 16,
-      "//cleanup": 1,
-      "HtmlElementDescription.class": 1,
-      "output.writeBytes": 1,
-      "Jenkins.getInstance": 2,
-      "number": 1,
-      "reader.defineAnnotatedMethods": 1,
-      "Constructor": 1,
-      "com.google.protobuf.ByteString": 13,
-      "Class": 10,
-      "new": 131,
-      "CloneNotSupportedException": 23,
-      "ruby.getClassFromPath": 26,
-      "getElementType": 2,
-      "e.setUnfinishedMessage": 1,
-      "input": 18,
-      "XmlSyntaxError": 5,
-      "warningText": 3,
-      "K": 2,
-      "getNameBytes": 5,
-      "super.startElement": 2,
-      "HTML_ENTITY_LOOKUP_ALLOCATOR": 2,
-      ".replace": 2,
-      "java.lang.reflect.Constructor": 1,
-      "ThreadContext": 2,
-      "Comparable": 1,
-      "0": 1,
-      "XmlNodeSet": 5,
-      "getDefaultInstance": 2,
-      "clone.setMetaClass": 23,
-      "xmlSyntaxError.defineAnnotatedMethods": 1,
-      "item.getName": 1,
-      "NokogiriStrictErrorHandler": 1,
-      "memoizedIsInitialized": 4,
-      "parseUnknownField": 1,
-      "XmlAttributeDecl": 1,
-      "case": 56,
-      "org.kohsuke.stapler.Stapler": 1,
-      "instanceof": 19,
-      "x.getClass": 1,
-      "z": 1,
-      "testee": 1,
-      "@CLIResolver": 1,
-      ".ensureFieldAccessorsInitialized": 2,
-      "": 3,
-      "org.w3c.dom.Document": 1,
-      "sneakyThrow": 1,
-      "XML_PROCESSING_INSTRUCTION_ALLOCATOR": 2,
-      "typeDescriptor": 1,
-      "c1": 2,
-      ".toStringUtf8": 1,
-      "com.google.protobuf.ByteString.copyFromUtf8": 2,
-      "XML_READER_ALLOCATOR": 2,
-      "k1.equals": 2,
-      ")": 1097,
-      "htmlDocument.defineAnnotatedMethods": 1,
-      "XmlDocument": 8,
-      "registry": 1,
-      "NokogiriService": 1,
-      "RubyClass": 92,
-      "getReturnType": 2,
-      "encHandler": 1,
-      "XML_CDATA_ALLOCATOR": 2,
-      "testee.toCharArray": 1,
-      "XmlEntityDecl.INTERNAL_PARAMETER": 1,
-      "XmlDtd": 5,
-      "xmlReader.clone": 1,
-      "s": 10,
-      "xmlNamespace": 3,
-      ".writeTo": 1,
-      "unknownFields": 3,
-      "XML_SYNTAXERROR_ALLOCATOR": 2,
-      "returnType": 1,
-      "c.getName": 1,
-      "stringOrNil": 1,
-      "super": 7,
-      "com.google.protobuf.Message": 1,
-      "org.cyberneko.html.filters.DefaultFilter": 1,
-      "": 2,
-      "NullPointerException": 3,
-      "hudson.util.CopyOnWriteList": 1,
-      "assignDescriptors": 1,
-      "PARSER": 2,
-      "hudson.util.FormValidation": 1,
-      "XML_TEXT_ALLOCATOR": 2,
-      "negative": 1,
-      "xmlDocument.clone": 1,
-      "errorText": 3,
-      "clojure.lang": 1,
-      "m.getParameterTypes": 1,
-      "//RubyModule": 1,
-      "setFeature": 4,
-      "nil": 2,
-      "nokogiri.internals.NokogiriHelpers.getNokogiriClass": 1,
-      "FormValidation.ok": 1,
-      "clearName": 1,
-      "PersonOrBuilder": 2,
-      "enableDocumentFragment": 1,
-      "nokogiri.XmlDocument": 1,
-      "runtime": 88,
-      "Map.Entry": 1,
-      "comment.defineAnnotatedMethods": 1,
-      "XmlNode": 5,
-      "xsltStylesheet.clone": 1,
-      "internal_static_persons_Person_fieldAccessorTable": 2,
-      "serialVersionUID": 1,
-      "schema": 2,
-      "createSaxModule": 2,
-      "com.google.protobuf.UnknownFieldSet.newBuilder": 1,
-      "com.google.protobuf.UnknownFieldSet.Builder": 1,
-      "XmlElementContent.class": 1,
-      "protected": 8,
-      "XmlComment": 5,
-      "isDarwin": 1,
-      "element": 3,
-      "XmlSaxParserContext": 5,
-      "XML_ENTITY_DECL_ALLOCATOR": 2,
-      "jenkins.model.Jenkins": 1,
-      "XmlText.class": 1,
-      "l": 5,
-      "LONG_TYPE": 3,
-      "elementContent.defineAnnotatedMethods": 1,
-      "nokogiri.internals": 1,
-      "": 1,
-      "getName": 3,
-      "StaplerResponse": 4,
-      "getType": 10,
-      "runtime.newNotImplementedError": 1,
-      "Numbers.equal": 1,
-      "java.lang.reflect.Method": 1,
-      "XmlSaxPushParser": 1,
-      "parseDelimitedFrom": 2,
-      "entityDecl.defineAnnotatedMethods": 1,
-      "rsp": 6,
-      "Document": 2,
-      "HtmlDocument.class": 1,
-      "rsp.sendError": 1,
-      "bitField0_": 15,
-      "rq": 1,
-      "XmlNode.class": 1,
-      "VOID": 5,
-      "org.jruby.runtime.ObjectAllocator": 1,
-      "types": 3,
-      "Node": 1,
-      "methodDescriptor.toCharArray": 2,
-      "Method": 3,
-      "ruby.getObject": 13,
-      "implements": 3,
-      "parser": 1,
-      "||": 8,
-      ".compareTo": 1,
-      "XSTREAM.alias": 1,
-      "name": 10,
-      "CHAR": 6,
-      "prototype": 2,
-      "HtmlEntityLookup.class": 1,
-      "SHORT": 6,
-      "c.isPrimitive": 2,
-      "xsltModule": 3,
-      "XmlReader": 5,
-      "e": 31,
-      "NamedNodeMap": 1,
-      "XML_NAMESPACE_ALLOCATOR": 2,
-      "entityDecl.defineConstant": 6,
-      "compare": 1,
-      "getNokogiriClass": 1,
-      "entityDecl": 1,
-      "XmlEntityDecl.EXTERNAL_PARAMETER": 1,
-      "hasName": 5,
-      "xmlElement": 3,
-      "": 2,
-      "xmlDocumentFragment.clone": 1,
-      ".equiv": 2,
-      "XmlRelaxng": 5,
-      "stylesheet.defineAnnotatedMethods": 1,
-      "nodeMap.item": 2,
-      ".internalBuildGeneratedFileFrom": 1,
-      "builder": 4,
-      "org.jruby.Ruby": 2,
-      "getJob": 1,
-      "input.readBytes": 1,
-      "errorHandler": 6,
-      "defaultInstance": 4,
-      "java.util.Map": 3,
-      "OBJECT": 7,
-      "attrs.getQName": 1,
-      "y": 1,
-      "filters": 3,
-      "defaultInstance.initFields": 1,
-      "@QueryParameter": 4,
-      "slaves": 3,
-      "getConstructorDescriptor": 1,
-      "isNamespace": 1,
-      "getDescriptorForType": 1,
-      "d.getComponentType": 1,
-      "XmlNodeSet.class": 1,
-      "Boolean.TYPE": 2,
-      "other.hasName": 1,
-      "maybeForceBuilderInitialization": 3,
-      "this.sort": 2,
-      "getSlaves": 1,
-      "(": 1097,
-      "doFieldCheck": 3,
-      "la": 1,
-      "Void.TYPE": 3,
-      "list": 1,
-      "setProperty": 4,
-      "XML_COMMENT_ALLOCATOR": 2,
-      "needed": 1,
-      "com.google.protobuf.AbstractParser": 1,
-      "unknownFields.build": 1,
-      "Type.ARRAY": 2,
-      "nokogiri.defineModuleUnder": 3,
-      "xmlSyntaxError.clone": 1,
-      "xmlComment": 3,
-      "org.apache.xerces.xni.XNIException": 1,
-      "getArgumentTypes": 2,
-      "data": 8,
-      "hudson.ExtensionListView": 1,
-      "r": 1,
-      "org.apache.xerces.xni.XMLAttributes": 1,
-      "org.kohsuke.stapler.StaplerRequest": 1,
-      "xmlNodeSet.setNodes": 1,
-      "this.off": 1,
-      "<<": 1,
-      "null": 80,
-      "XMLDocumentFilter": 3,
-      "Numbers.hasheq": 1,
-      "Integer": 2,
-      "XmlCdata.class": 1,
-      "descriptorData": 2,
-      "<": 13,
-      "BOOLEAN_TYPE": 3,
-      "List": 3,
-      "java.util.concurrent.ConcurrentHashMap": 1,
-      "htmlDoc": 1,
-      "onBuilt": 1,
-      "try": 26,
-      "hashCode": 1,
-      "getSlave": 1,
-      ".getNodeName": 4,
-      "buildPartial": 3,
-      "XmlNamespace.class": 1,
-      "headers.getLength": 1,
-      "b.toString": 1,
-      "XmlDocumentFragment": 5,
-      "ItemListener.class": 1,
-      "this": 16,
-      "java.util.Collections": 2,
-      "org.apache.xerces.xni.parser.XMLDocumentFilter": 1,
-      "result.name_": 1,
-      "XmlAttributeDecl.class": 1,
-      "": 1,
-      "Reference": 3,
-      "createHtmlModule": 2,
-      "Short.TYPE": 2,
-      "FLOAT_TYPE": 3,
-      "result.isInitialized": 1,
-      "INT_TYPE": 3,
-      "File": 2,
-      "equalsIgnoreCase": 1,
-      "options.noError": 2,
-      "XmlReader.class": 1,
-      "startElement": 2,
-      "k": 5,
-      "xmlNodeSet.clone": 1,
-      "@Override": 6,
-      "xmlElementDecl.clone": 1,
-      "classes": 2,
-      "this.len": 2,
-      "org.apache.xerces.parsers.DOMParser": 1,
-      "argumentTypes.length": 1,
-      "buf.toString": 4,
-      "name_": 18,
-      "this.mergeUnknownFields": 1,
-      "com.google.protobuf.ExtensionRegistryLite": 8,
-      "nokogiriClassCache": 2,
-      "XMLParserConfiguration": 1,
-      "Stapler.getCurrentResponse": 1,
-      "javax.servlet.ServletContext": 1,
-      "XML_ELEMENT_DECL_ALLOCATOR": 2,
-      "tag": 3,
-      "argumentTypes": 2,
-      "d.isPrimitive": 1,
-      "java.io.ObjectStreamException": 1,
-      "document.getDocumentElement": 2,
-      "dead": 1,
-      "from_bitField0_": 2,
-      "xmlDocument.defineAnnotatedMethods": 1,
-      "XmlText": 6,
-      "Number": 9,
-      "attrDecl.defineAnnotatedMethods": 1,
-      "Hudson.class": 1,
-      "persons.ProtocolBuffer.Person": 22,
-      "BYTE": 6,
-      "InterruptedException": 2,
-      "errorHandler.getErrors": 1,
-      "NumberFormat.getInstance": 2,
-      "QName": 2,
-      "getInternalName": 2,
-      "org.jruby.RubyArray": 1,
-      "EncodingHandler": 1,
-      "xmlAttr.clone": 1,
-      "persons.ProtocolBuffer.internal_static_persons_Person_descriptor": 3,
-      "d": 10,
-      "LONG": 7,
-      "cache": 1,
-      "double": 4,
-      "XSLT_STYLESHEET_ALLOCATOR": 2,
-      "XmlNamespace": 5,
-      "identical": 1,
-      "isPrimitive": 1,
-      "other.name_": 1,
-      "options.noWarning": 2,
-      "Exception": 1,
-      "req.getQueryString": 1,
-      "schema.defineAnnotatedMethods": 1,
-      "htmlSaxModule": 3,
-      "wrapDocument": 1,
-      "xmlSaxPushParser.defineAnnotatedMethods": 1,
-      "HTML_SAXPARSER_CONTEXT_ALLOCATOR": 2,
-      "getSize": 1,
-      "org.apache.xerces.xni.Augmentations": 1,
-      "nokogiri.HtmlDocument": 1,
-      "": 1,
-      "ret": 4,
-      "XMLAttributes": 2,
-      "htmlSaxParserContext": 4,
-      "persons": 1,
-      "text.defineAnnotatedMethods": 1,
-      "isWindows": 1,
-      "XmlElement.class": 1,
-      "pluginManager": 2,
-      "newUninitializedMessageException": 1,
-      ".setUnfinishedMessage": 1,
-      "ret1": 2,
-      "x": 8,
-      "element.uri": 1,
-      "FormValidation.warning": 1,
-      "import": 66,
-      "]": 54,
-      "xmlSaxParserContext.defineAnnotatedMethods": 1,
-      "e3779b9": 1,
-      "size": 16,
-      "htmlDocument.clone": 1,
-      "xmlText": 3,
-      "hudson.model": 1,
-      "htmlModule.defineModuleUnder": 1,
-      ".get": 1,
-      "list.getLength": 1,
-      "parseFrom": 8,
-      "persons.ProtocolBuffer.internal_static_persons_Person_fieldAccessorTable": 2,
-      "XmlAttr": 5,
-      "java.lang.ref.ReferenceQueue": 1,
-      "HtmlSaxParserContext.class": 1,
-      "XmlEntityReference": 5,
-      ".getClassName": 1,
-      "off": 25,
-      "XmlElementDecl.class": 1,
-      "@SuppressWarnings": 1,
-      "internal_static_persons_Person_descriptor": 3,
-      "true": 21,
-      "XmlEntityDecl.INTERNAL_PREDEFINED": 1,
-      "xsltStylesheet": 3,
-      "isInitialized": 5,
-      "nokogiri": 6,
-      "StaplerResponse.SC_FORBIDDEN": 1,
-      "&&": 6,
-      "XML_NODESET_ALLOCATOR": 2,
-      "comment": 1,
-      "if": 116,
-      "xmlSaxParserContext.clone": 1,
-      "hudson.Platform": 1,
-      "DOMParser": 1,
-      "input.readTag": 1,
-      "XmlEntityDecl.EXTERNAL_GENERAL_PARSED": 1,
-      "char": 13,
-      "setNameBytes": 1,
-      "xmlElementDecl": 3,
-      "XmlProcessingInstruction.class": 1,
-      ".equalsIgnoreCase": 5,
-      "htmlSaxParserContext.clone": 1,
-      "persons.ProtocolBuffer.PersonOrBuilder": 1,
-      ";": 891,
-      "int": 62,
-      "context.getRuntime": 3,
-      "charset": 2,
-      "t.off": 1,
-      "<=>": 1,
-      "root": 6,
-      "NokogiriNonStrictErrorHandler4NekoHtml": 1,
-      "XmlDocumentFragment.class": 1,
-      "xmlProcessingInstruction": 3,
-      "xmlXpathContext.clone": 1,
-      "Jenkins.MasterComputer": 1,
-      "ref": 16,
-      "ElementValidityCheckFilter": 3,
-      "createNokogiriClassCahce": 2,
-      "NodeList": 2,
-      "super.writeReplace": 1,
-      "java.lang.ref.Reference": 1,
-      ".toString": 1,
-      "attrs.removeAttributeAt": 1,
-      "NokogiriService.HTML_DOCUMENT_ALLOCATOR.allocate": 1,
-      "xmlElement.clone": 1,
-      "mutable_bitField0_": 1,
-      "len": 24,
-      "entries": 1,
-      "XML_SCHEMA_ALLOCATOR": 2,
-      "static": 141,
-      ".getACL": 1,
-      "xpathContext.defineAnnotatedMethods": 1,
-      "hudson.cli.declarative.CLIResolver": 1,
-      "node": 14,
-      "attrDecl": 1,
-      "j": 9,
-      "while": 10,
-      ".add": 1,
-      "PluginManager": 1,
-      "seed": 5,
-      "java.io.File": 1,
-      "XML_NODE_ALLOCATOR": 2,
-      "cache.entrySet": 1,
-      "Slave": 3,
-      "writeReplace": 1,
-      "com.google.protobuf.Descriptors.Descriptor": 4,
-      "": 2,
-      "getNewEmptyDocument": 1,
-      "transient": 2,
-      "com.google.protobuf.UnknownFieldSet": 2,
-      ".getDescriptor": 1,
-      "c.getParameterTypes": 1,
-      "d.getName": 1,
-      "//": 16,
-      ".getName": 1,
-      "bs.toStringUtf8": 1,
-      "cdata.defineAnnotatedMethods": 1,
-      "RubyArray.newEmptyArray": 1,
-      "getItems": 1,
-      "allocate": 30,
-      "ParseException": 1,
-      "elementValidityCheckFilter": 3,
-      "e.getKey": 1,
-      "onChanged": 4,
-      "noInit": 1,
-      "xmlSyntaxError": 4,
-      "ruby_encoding.isNil": 1,
-      "xmlDtd.clone": 1,
-      "RubyFixnum.newFixnum": 6,
-      ".generateResponse": 2,
-      "t.len": 1,
-      "htmlModule.defineClassUnder": 3,
-      "persons.ProtocolBuffer.Person.Builder.class": 2,
-      "nodeMap.getLength": 1,
-      "ruby_encoding": 3,
-      "CHAR_TYPE": 3,
-      "Messages": 1,
-      "Hudson": 5,
-      "xmlComment.clone": 1,
-      "name.rawname": 2,
-      "c": 21,
-      "Throwable": 4,
-      "org.w3c.dom.NodeList": 1,
-      "result": 5,
-      "hc": 4,
-      "com.google.protobuf.ExtensionRegistry": 2,
-      "throw": 9,
-      "rq.poll": 2,
-      "XsltStylesheet": 4,
-      "Opcodes.IASTORE": 1,
-      "clone": 47,
-      "org.apache.xerces.xni.parser.XMLParserConfiguration": 1,
-      "args": 6,
-      "HTML_DOCUMENT_ALLOCATOR": 2,
-      "htmlEntityLookup": 1,
-      "-": 15,
-      ".getMessageTypes": 1,
-      "ISeq": 2,
-      "qs": 3,
-      "setName": 1,
-      "PARSER.parsePartialFrom": 1,
-      "org.jruby.runtime.load.BasicLibraryService": 1,
-      "Platform.isDarwin": 1,
-      "val.get": 1,
-      "output": 2,
-      "XmlRelaxng.class": 1,
-      "encHandler.defineAnnotatedMethods": 1,
-      "val": 3,
-      "HTMLConfiguration": 1,
-      "com.google.protobuf.MessageOrBuilder": 1,
-      "DOUBLE_TYPE": 3,
-      "w": 1,
-      "Character.TYPE": 2,
-      "else": 33,
-      "klazz": 107,
-      "XmlSchema": 5,
-      "init": 2,
-      "node.defineAnnotatedMethods": 1,
-      "ProtocolBuffer": 2,
-      "ExtensionListView.createCopyOnWriteList": 2,
-      "switch": 6,
-      "Augmentations": 2,
-      "com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders": 1,
-      "&": 7,
-      "createNokogiriModule": 2,
-      "value": 11,
-      "com.google.protobuf.Parser": 2,
-      "XmlSaxParserContext.class": 1,
-      "HtmlDocument": 7,
-      "elementContent": 1,
-      "org.jruby.RubyClass": 2,
-      "toString": 1,
-      "method": 2,
-      "registerAllExtensions": 1,
-      "context": 8,
-      "floatValue": 1,
-      "void": 25,
-      "ServletContext": 2,
-      "BYTE_TYPE": 3,
-      "org.cyberneko.html.HTMLConfiguration": 1,
-      "ruby.getStandardError": 2,
-      "getJobCaseInsensitive": 1,
-      "equals": 2,
-      "xmlProcessingInstruction.clone": 1,
-      "xmlDocument": 5,
-      "XML_ENTITY_REFERENCE_ALLOCATOR": 2,
-      "ObjectAllocator": 60,
-      "byte": 4,
-      "XmlEntityDecl.INTERNAL_GENERAL": 1,
-      "xpathContext": 1,
-      "xmlReader": 5,
-      "HtmlEntityLookup": 1,
-      "false": 12,
-      "getNode": 1,
-      "htmlSaxParserContext.defineAnnotatedMethods": 1,
-      "xmlModule.defineClassUnder": 23,
-      "returnType.getDescriptor": 1,
-      "getDefaultInstanceForType": 2,
-      "java.lang.String": 15,
-      "org.jruby.RubyModule": 1,
-      "document": 5,
-      "getInstance": 2,
-      "nokogiri.internals.NokogiriHelpers.isNamespace": 1,
-      "Util.": 1,
-      "clojure.asm": 1,
-      "adminCheck": 3,
-      "syntaxError": 2,
-      "File.pathSeparatorChar": 1,
-      "html.defineOrGetClassUnder": 1,
-      "org.jvnet.hudson.reactor.ReactorException": 1,
-      "documentFragment.defineAnnotatedMethods": 1,
-      "ruby.defineModule": 1,
-      "mergeFrom": 5,
-      "finally": 2,
-      "i": 54,
-      "attr.defineAnnotatedMethods": 1,
-      "sort": 18,
-      ".getAllocator": 1,
-      "Messages.Hudson_NotANumber": 1,
-      "private": 77,
-      "methodDescriptor": 2,
-      "xmlCdata.clone": 1,
-      "super.clear": 1,
-      "parent": 4,
-      "BasicLibraryService": 1,
-      "javax.servlet.ServletException": 1,
-      "method.getReturnType": 1,
-      "newBuilder": 5,
-      "hudson.Functions": 1,
-      "XML_ELEMENT_CONTENT_ALLOCATOR": 2,
-      "Map": 1,
-      ".len": 1,
-      "memoizedSerializedSize": 3,
-      "getOpcode": 1,
-      "xmlNode": 5,
-      "ADMINISTER": 1,
-      "namespace.defineAnnotatedMethods": 1,
-      "pi": 1,
-      "}": 434,
-      "xmlEntityRef.clone": 1,
-      "XmlCdata": 5,
-      "XmlSchema.class": 1,
-      "Object": 31,
-      "com.google.protobuf.GeneratedMessage.BuilderParent": 2,
-      "b": 7,
-      "text": 2,
-      "XmlEntityDecl.class": 1,
-      "createDocuments": 2,
-      "config": 2,
-      "java.lang.Object": 7,
-      "NAME_FIELD_NUMBER": 1,
-      "builder.getUnknownFields": 1,
-      "getComputerListeners": 1,
-      "FLOAT": 6,
-      "nodeMap": 1,
-      "XML_SAXPUSHPARSER_ALLOCATOR": 2,
-      "ruby": 25,
-      "com.google.protobuf.Descriptors.FileDescriptor": 5,
-      "classes.length": 2,
-      "toBuilder": 1,
-      "Util": 1,
-      "ConcurrentHashMap": 1,
-      "encoding": 2,
-      "reader": 1,
-      "HashMap": 1,
-      "getMethodDescriptor": 2,
-      "Integer.TYPE": 2,
-      "java_encoding": 2,
-      ".getNodeValue": 1,
-      "java.util.List": 1,
-      "cdata": 1,
-      ".length": 1,
-      "XmlElementDecl": 5,
-      "attrs": 4,
-      "itemListeners": 2,
-      "createSyntaxErrors": 2,
-      "xmlSaxModule": 3,
-      "Ruby": 43,
-      "NumberFormat": 1,
-      "computerListeners": 2,
-      "htmlModule": 5,
-      "break": 4,
-      "classOf": 1,
-      "hudson.Util.fixEmpty": 1,
-      "XmlDomParserContext": 1,
-      "removeNSAttrsFilter": 2,
-      "getParserForType": 1,
-      "parameters.length": 2,
-      "XNIException": 2,
-      "[": 54,
-      "xmlModule": 7,
-      "elementDecl": 1
-    },
-    "Arduino": {
-      "}": 2,
-      ";": 2,
-      "Serial.begin": 1,
-      "{": 2,
-      ")": 4,
       "(": 4,
-      "Serial.print": 1,
-      "loop": 1,
-      "void": 2,
-      "setup": 1
-    },
-    "XQuery": {
-      "eval_result": 1,
-      "bindings": 2,
-      "point": 1,
-      "all": 1,
-      "encoding": 1,
-      "xqm": 1,
-      "list": 1,
-      "and": 3,
-      "viewport": 1,
-      "run#6": 1,
-      "space": 1,
-      "ast": 1,
-      "type": 1,
-      "": 1,
-      "library": 1,
-      "-": 486,
-      "enum": 3,
-      "declare": 24,
-      "xproc": 17,
-      "namespace": 8,
-      "c": 1,
-      "points": 1,
-      "let": 6,
-      "const": 1,
-      "xquery": 1,
-      "AST": 2,
-      "choose": 1,
-      "preserve": 1,
-      "return": 2,
-      "name=": 1,
-      "{": 5,
-      "each": 1,
-      "saxon": 1,
-      "explicit": 3,
-      "validate": 1,
-      "namespaces": 5,
-      "p": 2,
-      "control": 1,
-      "element": 1,
-      "tflag": 1,
-      "boundary": 1,
-      "II": 1,
-      "version": 1,
-      "util": 1,
-      "": 1,
-      "ns": 1,
-      "entry": 2,
-      "module": 6,
-      "serialized_result": 2,
-      "results": 1,
-      "catch": 1,
-      "core": 1,
-      "contains": 1,
-      "functions.": 1,
-      "imports": 1,
-      "option": 1,
-      "functions": 1,
-      ")": 38,
-      "u": 2,
-      "xproc.xqm": 1,
-      "preprocess": 1,
-      "import": 4,
-      "primary": 1,
-      "}": 5,
-      "group": 1,
-      "variable": 13,
-      "serialize": 1,
-      "": 1,
-      "parse/*": 1,
-      "name": 1,
-      "I": 1,
-      "declared": 1,
-      "try": 1,
-      "output": 1,
-      "for": 1,
-      "at": 4,
-      "run": 2,
-      "parse": 8,
-      "III": 1,
-      "step": 5,
-      "options": 2,
-      "STEP": 3,
-      "dflag": 1,
-      "stdin": 1,
-      "function": 3,
-      "pipeline": 8,
-      "sort": 1,
-      "parse/@*": 1,
-      "err": 1,
-      "eval": 3,
-      "": 1,
-      "(": 38,
-      ";": 25
-    },
-    "Python": {
-      "raise": 22,
-      "save.alters_data": 1,
-      "for": 59,
-      "x.size": 2,
-      "_perform_unique_checks": 1,
-      "headers": 5,
-      "xerr": 6,
-      "canonical": 1,
-      "base_managers.sort": 1,
-      "%": 32,
-      "signals.class_prepared.send": 1,
-      "np.sqrt": 17,
-      "self._order": 1,
-      "pl.plot": 9,
-      "copy": 1,
-      "new_class._meta.local_fields": 3,
-      "dispatch_request": 1,
-      "str": 2,
-      "clean_fields": 1,
-      "date_checks.append": 3,
-      "record_exists": 5,
-      "base._meta.abstract_managers": 1,
-      "weiss_table.add_row": 1,
-      "class": 14,
-      "self._state": 1,
-      "getattr": 30,
-      "matt_pconv.diagonal": 2,
-      "parent._meta.abstract": 1,
-      "parent._meta": 1,
-      "self._state.adding": 4,
-      "e.messages": 1,
-      "tornado.util": 1,
-      "of": 3,
-      "_on_headers": 1,
-      "weiss_pconv.diagonal": 2,
-      "force_unicode": 3,
-      "loc": 5,
-      "T": 6,
-      "original_base._meta.concrete_managers": 1,
-      "map": 1,
-      "is_next": 9,
-      "pass": 4,
-      "lookup_value": 3,
-      "socket.EAI_NONAME": 1,
-      "based": 1,
-      "self._perform_unique_checks": 1,
-      "update_fields.difference": 1,
-      "meta.order_with_respect_to": 2,
-      "settings.ABSOLUTE_URL_OVERRIDES.get": 1,
-      "which": 1,
-      "opts.verbose_name": 1,
-      "elif": 4,
-      "rv.methods": 2,
-      "self.stream.socket": 1,
-      "_finish_request": 1,
-      "new_class._default_manager": 2,
-      "schwarz_popt": 3,
-      "date_checks": 6,
-      "self.uri": 2,
-      "save": 1,
-      ".size": 4,
-      "tuple": 3,
-      "self._meta": 2,
-      "new_class._meta.app_label": 3,
-      "NON_FIELD_ERRORS": 3,
-      "package": 1,
-      "self._finish_time": 4,
-      "new_class._meta.ordering": 1,
-      "collector.collect": 1,
-      "native_str": 4,
-      "copy.deepcopy": 2,
-      "marker": 4,
-      "U_err": 7,
-      "header": 5,
-      "nested_types": 1,
-      "**2": 2,
-      "raw_value": 3,
-      "cpp_type": 1,
-      "order_value": 2,
-      "options": 3,
-      ".values": 1,
-      "has_default_value": 1,
-      "action": 1,
-      "dy": 4,
-      "self.adding": 1,
-      "new_class": 9,
-      "yerr": 8,
-      "cls.get_next_in_order": 1,
-      "self.db": 1,
-      "register_models": 2,
-      "opts.app_label": 1,
-      "epsilon_err": 2,
-      "|": 1,
-      "ordered_obj.objects.filter": 2,
-      "U_err/S": 4,
-      "delete": 1,
-      "os": 1,
-      "self.version": 2,
-      ".next": 1,
-      "ObjectDoesNotExist": 2,
-      "self._get_pk_val": 6,
-      "a": 2,
-      "unique_checks": 6,
-      "django.db.models.fields.related": 1,
-      "_get_next_or_previous_by_FIELD": 1,
-      "return": 57,
-      "ordered_obj._meta.order_with_respect_to.name": 2,
-      "check": 4,
-      "+": 37,
-      "self._state.db": 2,
-      "offset": 13,
-      "socket.gaierror": 1,
-      "HTTPRequest": 2,
-      "description": 1,
-      "linestyle": 8,
-      "f.name": 5,
-      "view.__name__": 1,
-      "new_class._meta.parents": 1,
-      "field.rel.to": 2,
-      "get_ssl_certificate": 1,
-      "io_loop": 3,
-      "beta": 1,
-      "**kwargs": 9,
-      "u": 9,
-      "__str__": 1,
-      "full_name": 2,
-      "HTTPConnection": 2,
-      "seed_cache": 2,
-      "set": 3,
-      "self": 100,
-      "descriptor": 1,
-      "base_managers": 2,
-      "meta.auto_created": 2,
-      "headers.get": 2,
-      "KeyError": 3,
-      ".order_by": 2,
-      "_message.Message": 1,
-      "date.year": 1,
-      "self.stream.max_buffer_size": 1,
-      "base._meta.virtual_fields": 1,
-      "manager._insert": 1,
-      "django.utils.translation": 1,
-      "serialized_pb": 1,
-      "non_model_fields": 2,
-      "default": 1,
-      "using": 30,
-      "model_unpickle": 2,
-      "self.no_keep_alive": 4,
-      ".globals": 1,
-      "attrs.pop": 2,
-      "serializable_value": 1,
-      "os.walk": 1,
-      "new_class._default_manager._copy_to_model": 1,
-      "mgr_name": 3,
-      "method_get_order": 2,
-      "serialized_start": 1,
-      "dy.size": 1,
-      "usage": 3,
-      "glanz_pconv.diagonal": 2,
-      "n": 3,
-      "type": 6,
-      "httputil.HTTPHeaders": 1,
-      "field.strip": 1,
-      "since": 1,
-      "cls.__new__": 1,
-      "np": 1,
-      "S": 4,
-      "stack_context.wrap": 2,
-      "func": 2,
-      "pk_name": 3,
-      "pl.title": 5,
-      "self.connection.write": 1,
-      "message_type": 1,
-      "*schwarz_popt": 1,
-      "stream": 4,
-      "cls.__module__": 1,
-      "label": 18,
-      "glanz_y": 2,
-      "boltzmann": 12,
-      "self._request.arguments": 1,
-      "where": 1,
-      "manager": 3,
-      "f3": 1,
-      "#parser.add_argument": 3,
-      "as_view": 1,
-      "methods.add": 1,
-      "ManyToOneRel": 3,
-      "def": 68,
-      "self.host": 2,
-      "httputil.HTTPHeaders.parse": 1,
-      "abstract": 3,
-      "field": 32,
-      "ssl.SSLError": 1,
-      "opts._prepare": 1,
-      "TCPServer": 2,
-      "popt": 5,
-      "copy_managers": 1,
-      "_get_FIELD_display": 1,
-      "collector.delete": 1,
-      "obj": 4,
-      "self._on_write_complete": 1,
-      "hash": 1,
-      "handler.": 1,
-      "iostream.SSLIOStream": 1,
-      "ValueError": 5,
-      "order_field": 1,
-      "command": 4,
-      "index": 1,
-      "parent_class._meta.unique_together": 2,
-      "*dy_err": 1,
-      "only_installed": 2,
-      "smart_str": 3,
-      "content_type": 1,
-      "deferred_class_factory": 2,
-      "order": 5,
-      "dx": 6,
-      "FieldDoesNotExist": 2,
-      "alpha**2*R0": 5,
-      "self.pk": 6,
-      "force_insert": 7,
-      "is_extension": 1,
-      "ip": 2,
-      "self._request.method": 2,
-      "color": 8,
-      "{": 25,
-      "cls.__doc__": 3,
-      "method_set_order": 2,
-      "or": 27,
-      "os.path.abspath": 1,
-      "self.path": 1,
-      "opts.order_with_respect_to": 2,
-      "ordered_obj._meta.pk.name": 1,
-      "new_class.add_to_class": 7,
-      "sigma": 4,
-      "param": 3,
-      "dest": 1,
-      "_BadRequestException": 5,
-      "*lookup_kwargs": 2,
-      "*": 33,
-      "lookup_kwargs.keys": 1,
-      "data.find": 1,
-      "schwarz_pconv.diagonal": 2,
-      "__metaclass__": 3,
-      "subclass_exception": 3,
-      "other": 4,
-      "unicode_literals": 1,
-      "meta.pk.attname": 2,
-      "self.save_base": 2,
-      "matt": 13,
-      "self.__class__": 10,
-      "start_line": 1,
-      "matt_phi": 4,
-      "self.clean": 1,
-      "self.date_error_message": 1,
-      "*beta": 1,
-      "Person": 1,
-      "t": 8,
-      "self._perform_date_checks": 1,
-      "hasattr": 11,
-      ".filter": 7,
-      "model": 8,
-      "x._meta.abstract": 2,
-      "model_unpickle.__safe_for_unpickle__": 1,
-      "ValidationError": 8,
-      "*args": 4,
-      "opts.fields": 1,
-      "MultipleObjectsReturned": 2,
-      "TCPServer.__init__": 1,
-      "self._cookies": 3,
-      "auto_created": 1,
-      "f.primary_key": 2,
-      "base": 13,
-      "__reduce__": 1,
-      ".extend": 2,
-      "#": 13,
-      "new_class._meta.local_many_to_many": 2,
-      "make_foreign_order_accessors": 2,
-      "kwargs": 9,
-      "views": 1,
-      "Model": 2,
-      "base_meta.ordering": 1,
-      "property": 2,
-      "base_meta": 2,
-      "force_update": 10,
-      "self._cookies.load": 1,
-      "manager.using": 3,
-      "sys.exit": 1,
-      "m": 3,
-      "opts": 5,
-      "weiss_y": 2,
-      "table.add_row": 1,
-      "R": 1,
-      "pl.errorbar": 8,
-      "raw": 9,
-      "_get_pk_val": 2,
-      "parent_class._meta.local_fields": 1,
-      "values": 13,
-      "*beta*R0*T0": 2,
-      "attr_name": 3,
-      "attr_meta.abstract": 1,
-      "defers.append": 1,
-      "version": 6,
-      "argparse.ArgumentParser": 1,
-      "django.conf": 1,
-      "glanz_x": 3,
-      "gitDirectory": 2,
-      "pluggable": 1,
-      "save_base.alters_data": 1,
-      "_descriptor": 1,
-      "self.body": 1,
-      "start_line.split": 1,
-      "bool": 2,
-      "unique_togethers.append": 1,
-      "prepare_database_save": 1,
-      "f2": 1,
-      "add_to_class": 1,
-      "number": 1,
-      "Collector": 2,
-      "django.db.models.loading": 1,
-      "stack_context": 1,
-      "help": 2,
-      "f": 19,
-      "cls": 32,
-      "self.clean_fields": 1,
-      "signals.post_save.send": 1,
-      "django.db.models": 1,
-      "signals.post_init.send": 1,
-      "self._request": 7,
-      "subdirectories": 3,
-      "methods": 5,
-      "django.utils.functional": 1,
-      "connection_header": 5,
-      "view.__module__": 1,
-      "f.pre_save": 1,
-      "sorted": 1,
-      "decorate": 2,
-      "self._meta.pk.name": 1,
-      "way": 1,
-      "_PERSON": 3,
-      "*beta*R": 5,
-      "Empty": 1,
-      "httputil.parse_multipart_form_data": 1,
-      "exclude.append": 1,
-      "and": 35,
-      "Options": 2,
-      "weiss": 13,
-      "o2o_map": 3,
-      "django.core": 1,
-      "I1": 3,
-      "get_text_list": 2,
-      "logging.warning": 1,
-      "self._request.supports_http_1_1": 1,
-      "_deferred": 1,
-      "write": 2,
-      "socket.getaddrinfo": 1,
-      "_": 5,
-      "parts": 1,
-      "TypeError": 4,
-      "self._request.headers.get": 2,
-      "self._request.body": 2,
-      "original_base": 1,
-      "/I1": 1,
-      "self._header_callback": 3,
-      "*beta*T0": 1,
-      "cls.__name__.lower": 2,
-      "self.__eq__": 1,
-      "Imported": 1,
-      "PrettyTable": 6,
-      "x.MultipleObjectsReturned": 1,
-      ")": 730,
-      "transaction.commit_unless_managed": 2,
-      "collector": 1,
-      "weiss_phi": 4,
-      "manager._copy_to_model": 1,
-      "unicode": 8,
-      "socket.AF_INET6": 1,
-      "also": 1,
-      "descriptor_pb2": 1,
-      "django.db.models.manager": 1,
-      "cls.__name__": 1,
-      "self.connection.stream.socket.getpeercert": 1,
-      "connection.xheaders": 1,
-      "eol": 3,
-      "new_class.copy_managers": 2,
-      "self.xheaders": 3,
-      "ur": 11,
-      "instantiating": 1,
-      "s": 1,
-      "file": 1,
-      "pk_set": 5,
-      "super": 2,
-      "self.stream.read_bytes": 1,
-      "uri": 5,
-      "socket": 1,
-      "functools": 1,
-      "False": 28,
-      "logic": 1,
-      "arguments": 2,
-      "*popt": 2,
-      "gitDirectories": 2,
-      "not": 64,
-      "argparse": 1,
-      "_order": 1,
-      "self._deferred": 1,
-      "pl.legend": 5,
-      "_valid_ip": 1,
-      "_descriptor.Descriptor": 1,
-      "np.genfromtxt": 8,
-      "add_lazy_relation": 2,
-      "glanz": 13,
-      "field.error_messages": 1,
-      "time.time": 3,
-      "django.core.exceptions": 1,
-      "schwarz_y": 2,
-      "__init__": 5,
-      "matt_table.add_row": 1,
-      "matt_phi.size": 1,
-      "schwarz": 13,
-      "self.remote_ip": 4,
-      "zip": 8,
-      "validators": 1,
-      "phi": 5,
-      "__hash__": 1,
-      "signals.pre_init.send": 1,
-      "*U_err/S": 4,
-      "extension_ranges": 1,
-      "qs.exists": 2,
-      "self.headers.get": 5,
-      "self._finish_request": 2,
-      "base._meta.parents": 1,
-      "__future__": 2,
-      "sender": 5,
-      "DeferredAttribute": 3,
-      "content_type.split": 1,
-      "self._get_unique_checks": 1,
-      "django.utils.text": 1,
-      "f.blank": 1,
-      "weiss_x": 3,
-      "##############################################": 2,
-      "_get_next_or_previous_in_order": 1,
-      "Q": 3,
-      "phif": 7,
-      "errors.setdefault": 3,
-      "*weiss_popt": 1,
-      "isGitDirectory": 2,
-      "rel_val": 4,
-      "OneToOneField": 3,
-      "remote_ip": 8,
-      "parent._meta.pk.attname": 2,
-      "django.db.models.deletion": 1,
-      "self.DoesNotExist": 1,
-      "pl.grid": 5,
-      "metavar": 1,
-      "**6": 6,
-      ".encode": 1,
-      "self.unique_error_message": 1,
-      "schwarz_phi.size": 1,
-      "model_class": 11,
-      "_parse_args": 2,
-      "order_field.name": 1,
-      "pconv.diagonal": 3,
-      "weiss_phi.size": 1,
-      "iter": 1,
-      "parser": 1,
-      "__new__": 2,
-      "UnicodeDecodeError": 1,
-      "name": 39,
-      "meta.proxy": 5,
-      "self.files": 1,
-      "pl": 1,
-      "f1": 1,
-      "*kwargs": 1,
-      "declaration": 1,
-      "db": 2,
-      "os.path.isdir": 1,
-      "glanz_table.add_row": 1,
-      "T_err": 7,
-      "e": 13,
-      "U1/I1**2": 1,
-      "_reflection.GeneratedProtocolMessageType": 1,
-      "is_proxy": 5,
-      "fields": 12,
-      "no_keep_alive": 4,
-      "to": 4,
-      "model_module": 1,
-      "############################################": 2,
-      "absolute_import": 1,
-      "httputil": 1,
-      "dy_err": 2,
-      "request": 1,
-      "lookup_type": 7,
-      "connection": 5,
-      ".__init__": 1,
-      "/": 23,
-      "d**": 2,
-      "disconnect": 5,
-      "self.__class__.__name__": 3,
-      "socket.AF_INET": 2,
-      "parent._meta.fields": 1,
-      "np.ones": 11,
-      "self._meta.get_field": 1,
-      "new_manager": 2,
-      "delimiter": 8,
-      "get": 1,
-      "filter": 3,
-      "base._meta.module_name": 1,
-      "base.__name__": 2,
-      "pconv": 2,
-      "data.decode": 1,
-      "request_callback": 4,
-      "ssl": 2,
-      "alpha*R0": 2,
-      "router": 1,
-      "in": 79,
-      "y": 10,
-      "django.db.models.query": 1,
-      "op": 6,
-      "a*x": 1,
-      "ModelState": 2,
-      ".format": 11,
-      "non_pks": 5,
-      "protocol": 4,
-      "handle.": 1,
-      "opts.module_name": 1,
-      "R0_err": 2,
-      "sys.argv": 2,
-      "parser.parse_args": 1,
-      "key.upper": 1,
-      ".exists": 1,
-      "reflection": 1,
-      "frozenset": 2,
-      "socket.SOCK_STREAM": 1,
-      "glanz_table": 2,
-      "(": 719,
-      "attrs.items": 1,
-      "created": 1,
-      "self._meta.parents.keys": 2,
-      "list": 1,
-      "unused": 1,
-      "http_method_funcs": 2,
-      "pk_val": 4,
-      ".__new__": 1,
-      "I_err": 2,
-      "f.unique_for_date": 3,
-      "errors": 20,
-      "AutoField": 2,
-      "args_len": 2,
-      "data": 22,
-      "None": 86,
-      "self.stream": 1,
-      "r": 3,
-      "f.attname": 5,
-      "self.stream.writing": 2,
-      "extension_scope": 1,
-      "signals.pre_save.send": 1,
-      "order_name": 4,
-      "meta.local_fields": 2,
-      "obj_name": 2,
-      "AttributeError": 1,
-      "base._meta.local_fields": 1,
-      "cookies": 1,
-      "connection_header.lower": 1,
-      "object": 6,
-      "date_errors": 1,
-      "unique_for": 9,
-      "########": 2,
-      "delete.alters_data": 1,
-      "unique_error_message": 1,
-      "model_class._default_manager.filter": 2,
-      "<": 1,
-      "try": 17,
-      "used": 1,
-      "T0_err": 2,
-      "os.chdir": 1,
-      "full_clean": 1,
-      "time": 1,
-      "signals": 1,
-      "ugettext_lazy": 1,
-      "cls.get_absolute_url": 3,
-      "self._meta.fields": 5,
-      "fields_iter": 4,
-      "this": 2,
-      "new_class._meta.setup_proxy": 1,
-      "schwarz_x": 3,
-      "new_class._meta.get_latest_by": 1,
-      "model_class._meta": 2,
-      "k": 4,
-      "os.system": 1,
-      "filename": 1,
-      "except": 17,
-      "IndexError": 2,
-      "django.db.models.fields": 1,
-      ".append": 2,
-      "self.__dict__": 1,
-      "return_id": 1,
-      "isinstance": 11,
-      "new_class._meta.virtual_fields": 1,
-      "socket.AF_UNSPEC": 1,
-      "clean": 1,
-      "tornado.netutil": 1,
-      "tornado.escape": 1,
-      "schwarz_phi": 4,
-      "enum_type": 1,
-      "date.month": 1,
-      "HTTPServer": 1,
-      "pl.savefig": 5,
-      "content_length": 6,
-      "transaction": 1,
-      "self._meta.local_fields": 1,
-      "specified": 1,
-      "django.utils.encoding": 1,
-      "new_class._base_manager._copy_to_model": 1,
-      "R_err": 2,
-      "parent_class": 4,
-      "e.update_error_dict": 3,
-      "it": 1,
-      "pk": 5,
-      "_reflection": 1,
-      "field.verbose_name": 1,
-      "can": 1,
-      "d": 5,
-      "moves": 1,
-      "strings_only": 1,
-      "T0": 1,
-      "self.request_callback": 5,
-      "__eq__": 1,
-      "from": 34,
-      "key": 5,
-      "self.validate_unique": 1,
-      "parents": 8,
-      "Exception": 2,
-      ".": 1,
-      "*T_err": 4,
-      "default_value": 1,
-      "field_names": 5,
-      "*glanz_popt": 1,
-      "cls.add_to_class": 1,
-      "self.connection.finish": 1,
-      "table": 2,
-      "message": 1,
-      "min": 10,
-      "*beta*R0": 7,
-      "view.methods": 1,
-      "other._get_pk_val": 1,
-      ".partition": 1,
-      "simple_class_factory": 2,
-      "alpha**2": 1,
-      "sys": 2,
-      "field.rel": 2,
-      "ImportError": 1,
-      "f.unique_for_month": 3,
-      "x": 22,
-      "weiss_pconv": 1,
-      "get_model": 3,
-      "import": 47,
-      "]": 152,
-      "op.curve_fit": 6,
-      "self.__class__._meta.object_name": 1,
-      "with_statement": 1,
-      "django.db.models.query_utils": 2,
-      "instance": 5,
-      "print": 39,
-      "save_base": 1,
-      "base_meta.abstract": 1,
-      "files": 2,
-      "alpha": 2,
-      ".get": 2,
-      "bytes_type": 2,
-      "attr_meta": 5,
-      "matt_pconv": 1,
-      ".join": 3,
-      "chunk": 5,
-      "main": 4,
-      "sys.modules": 1,
-      "__ne__": 1,
-      "self._meta.unique_together": 1,
-      "_get_unique_checks": 1,
-      "exclude": 23,
-      "self.__class__.__dict__.get": 2,
-      "enumerate": 1,
-      "unique_together": 2,
-      "DESCRIPTOR.message_types_by_name": 1,
-      "_descriptor.FileDescriptor": 1,
-      "_perform_date_checks": 1,
-      "containing_type": 2,
-      "register": 1,
-      "fields_with_class.append": 1,
-      "U2": 2,
-      "self.arguments": 2,
-      "nargs": 1,
-      "if": 145,
-      "matt_table": 2,
-      "q": 4,
-      "schwarz_pconv": 1,
-      "epsilon": 7,
-      "full_url": 1,
-      "sep": 2,
-      "f2**2": 1,
-      "V": 12,
-      "cachename": 4,
-      "self.protocol": 7,
-      "ssl_options": 3,
-      "ordered_obj": 2,
-      "__repr__": 2,
-      "int": 1,
-      "value.contribute_to_class": 1,
-      "defers": 2,
-      "field.attname": 17,
-      "rv": 2,
-      "self.stream.closed": 1,
-      "new_class.Meta": 1,
-      "uri.partition": 1,
-      "*beta*R0**2": 1,
-      "self._meta.pk.attname": 2,
-      ".update": 1,
-      "e.args": 1,
-      "content_type.startswith": 2,
-      "self.stream.write": 2,
-      "parent_link": 1,
-      "address": 4,
-      "len": 9,
-      "f.rel.to": 1,
-      "_on_write_complete": 1,
-      "matt_popt": 3,
-      "django.db": 1,
-      "origin": 7,
-      "@property": 1,
-      "tornado": 3,
-      "j": 2,
-      "numpy": 1,
-      "date_errors.items": 1,
-      "cls.get_previous_in_order": 1,
-      "django.db.models.options": 1,
-      "model_module.__name__.split": 1,
-      "self.headers": 4,
-      "self._request.files": 1,
-      "self._default_manager.values": 1,
-      "glanz_phi": 4,
-      "field_label": 2,
-      "field.name": 14,
-      "cls._get_next_or_previous_in_order": 2,
-      "order_field.attname": 1,
-      "field.flatchoices": 1,
-      "super_new": 3,
-      "cls.methods": 1,
-      "self._default_manager.filter": 1,
-      "cls._meta": 3,
-      "parse_qs_bytes": 3,
-      "update_pk": 3,
-      "self.method": 1,
-      "xheaders": 4,
-      "base_meta.get_latest_by": 1,
-      "view": 2,
-      "is": 29,
-      "matt_y": 2,
-      "ModelBase": 4,
-      "enum_types": 1,
-      "string": 1,
-      "np.linspace": 9,
-      "connection.stream": 1,
-      "rows": 3,
-      "c": 3,
-      "self.connection": 1,
-      "type.__new__": 1,
-      "base._meta.concrete_model": 2,
-      "opts.order_with_respect_to.rel.to": 1,
-      "result": 2,
-      "os.getcwd": 1,
-      "dx_err": 3,
-      "self._meta.proxy_for_model": 1,
-      "bases": 6,
-      "lookup_kwargs": 8,
-      "self._start_time": 3,
-      "Python": 1,
-      "weiss_popt": 3,
-      "capfirst": 6,
-      "f3**2": 1,
-      "args": 8,
-      "kwargs.keys": 2,
-      "View": 2,
-      "-": 30,
-      "res": 2,
-      "new_class._meta.concrete_model": 2,
-      "self._meta.object_name": 1,
-      "opts.get_field": 4,
-      "The": 1,
-      "qs": 6,
-      "MethodView": 1,
-      "Cookie.SimpleCookie": 1,
-      "directories": 1,
-      "__docformat__": 1,
-      "np.abs": 1,
-      "continue": 10,
-      "kwargs.pop": 6,
-      "new_fields": 2,
-      "weiss_table": 2,
-      "self.__class__._default_manager.using": 1,
-      "fields_with_class": 2,
-      "val": 14,
-      "f.unique_for_year": 3,
-      "is_extendable": 1,
-      "SHEBANG#!python": 4,
-      "prettytable": 1,
-      "glanz_phi.size": 1,
-      "else": 30,
-      "max": 11,
-      "setattr": 14,
-      "update_wrapper": 2,
-      "directory": 9,
-      "._update": 1,
-      "__name__": 2,
-      "A": 1,
-      "prop": 5,
-      "pl.ylabel": 5,
-      "value": 9,
-      "finish": 2,
-      "self._write_callback": 5,
-      "field_name": 8,
-      "glanz_pconv": 1,
-      "factory": 5,
-      "date.day": 1,
-      "self._on_headers": 1,
-      "settings": 1,
-      "dict": 3,
-      "base._meta.local_many_to_many": 1,
-      "np.mean": 1,
-      "method": 5,
-      "handle_stream": 1,
-      "schwarz_table": 2,
-      "row": 10,
-      "meta.parents.items": 1,
-      "rel_obj": 3,
-      "U1": 3,
-      "unique_checks.append": 2,
-      "field.null": 1,
-      "_descriptor.FieldDescriptor": 1,
-      "printDelimiter": 4,
-      "qs.exclude": 2,
-      "f.clean": 1,
-      "_set_pk_val": 2,
-      "id_list": 2,
-      "p": 1,
-      "self._request.arguments.setdefault": 1,
-      "logging.info": 1,
-      "parent_fields": 3,
-      "*np.sqrt": 6,
-      "new_class._prepare": 1,
-      "U": 10,
-      "version.startswith": 1,
-      "update_fields": 23,
-      "as": 11,
-      "However": 1,
-      "True": 20,
-      "self._request_finished": 4,
-      "self._meta.order_with_respect_to": 1,
-      "DEFAULT_DB_ALIAS": 2,
-      "extensions": 1,
-      "*matt_popt": 1,
-      "field_labels": 4,
-      "self._request.headers": 1,
-      "google.protobuf": 4,
-      "MethodViewType": 2,
-      "new_class._meta.proxy": 1,
-      "UnicodeEncodeError": 1,
-      "date_error_message": 1,
-      "scipy.optimize": 1,
-      "i": 7,
-      "f.unique": 1,
-      "_on_request_body": 1,
-      "logging": 1,
-      "place": 1,
-      "router.db_for_write": 2,
-      "errors.keys": 1,
-      "x.DoesNotExist": 1,
-      "schwarz_table.add_row": 1,
-      "pl.clf": 5,
-      "meth": 5,
-      "FieldError": 4,
-      "the": 5,
-      ".count": 1,
-      "parent": 5,
-      "f1**2": 1,
-      "ordered_obj._meta.order_with_respect_to.rel.field_name": 2,
-      "R0": 6,
-      "new_class.__module__": 1,
-      "org": 3,
-      "curry": 6,
-      "self.address": 3,
-      "is_related_object": 3,
-      "DatabaseError": 3,
-      "_prepare": 1,
-      "request.method": 2,
-      "table.align": 1,
-      "matt_x": 3,
-      "}": 25,
-      "self._valid_ip": 1,
-      "pl.xlabel": 5,
-      "self.query": 2,
-      "self._on_request_body": 1,
-      "self.stream.read_until": 2,
-      "b": 11,
-      "module": 6,
-      "unique_check": 10,
-      "unique_togethers": 2,
-      "lambda": 1,
-      "Cookie": 1,
-      "signal": 1,
-      "view.__doc__": 1,
-      "self._meta.get_field_by_name": 1,
-      "utf8": 2,
-      "_message": 1,
-      "meta": 12,
-      "T**4": 1,
-      "supports_http_1_1": 1,
-      "iostream": 1,
-      "model_name": 3,
-      "field.get_default": 3,
-      "phi_err": 3,
-      "glanz_popt": 3,
-      "assert": 7,
-      "DESCRIPTOR": 3,
-      "get_absolute_url": 2,
-      "body": 2,
-      "field.primary_key": 1,
-      "socket.AI_NUMERICHOST": 1,
-      "serialized_end": 1,
-      "T0**4": 1,
-      "arguments.iteritems": 2,
-      "validators.EMPTY_VALUES": 1,
-      "attrs": 7,
-      "cls._base_manager": 1,
-      "matplotlib.pyplot": 1,
-      "date": 3,
-      "request_time": 1,
-      "callback": 7,
-      "new_class._meta.parents.update": 1,
-      "model_class_pk": 3,
-      "v": 11,
-      "future_builtins": 1,
-      ".verbose_name": 3,
-      "validate_unique": 1,
-      "meta.has_auto_field": 1,
-      "break": 2,
-      "host": 2,
-      "self.stream.close": 2,
-      "division": 1,
-      "request.method.lower": 1,
-      "git": 1,
-      "new_class._base_manager": 2,
-      "base._meta.abstract": 2,
-      "[": 152,
-      "view.view_class": 1,
-      "getSubdirectories": 2
-    },
-    "AppleScript": {
-      "returned": 5,
-      "w": 5,
-      "extension": 4,
-      "return": 16,
-      "button": 4,
-      "extension_list": 6,
-      ")": 88,
-      "a": 4,
-      "outgoing": 2,
-      "isVoiceOverRunningWithAppleScript": 3,
-      "If": 2,
-      "lowFontSize": 9,
-      "characters": 1,
-      "dialog": 4,
-      "clicked": 2,
-      "ensure": 1,
-      "amPM": 4,
-      "of": 72,
-      "Ideally": 2,
-      "minimumFontSize": 4,
-      "get": 1,
-      "info": 4,
-      "window": 5,
-      "shell": 2,
-      "x": 1,
-      "m": 2,
-      "current": 3,
-      "tab": 1,
-      "open": 8,
-      "frontmost": 1,
-      "Terminal": 1,
-      "or": 6,
-      "my": 3,
-      "FS": 10,
-      "character": 2,
-      "new": 2,
-      "eachCharacter": 4,
-      "greater": 5,
-      "to": 128,
-      "URL": 1,
-      "eachMailbox": 4,
-      "theMailboxes": 2,
-      "activate": 3,
-      "else": 14,
-      "integer": 3,
-      "make": 3,
-      "isRunningWithAppleScript": 3,
-      "unread": 1,
-      "date": 1,
-      "without": 2,
-      "visible": 2,
-      "list": 9,
-      "choose": 2,
-      "some": 1,
-      "isRunning": 3,
-      "if": 50,
-      "less": 1,
-      "say": 1,
-      "end": 67,
-      "desktopLeft": 1,
-      "space": 1,
-      "html": 2,
-      "windowHeight": 3,
-      "item_info": 24,
-      "mailbox": 2,
-      "count": 10,
-      "length": 1,
-      "folders": 2,
-      "desktop": 1,
-      "process": 5,
-      "message": 2,
-      "screen_height": 2,
-      "theFolder": 6,
-      "FinderSelection": 4,
-      "need": 1,
-      "display": 4,
-      "mailboxName": 2,
-      "vo": 1,
-      "myFrontMost": 3,
-      "than": 6,
-      "AM": 1,
-      "type_list": 6,
-      "these_items": 18,
-      "and": 7,
-      "cursor": 1,
-      "document": 2,
-      "padString": 3,
-      "color": 1,
-      "drawer": 2,
-      "me": 2,
-      "unreadCount": 2,
-      "convertCommand": 4,
-      "properties": 2,
-      "every": 3,
-      "stringLength": 4,
-      "{": 32,
-      "random": 4,
-      "-": 57,
-      "error": 3,
-      "number": 6,
-      "is": 40,
-      "tell": 40,
-      "currentTime": 3,
-      "hour": 1,
-      "nice": 1,
-      "thePOSIXFileName": 6,
-      "click": 1,
-      "SelectionCount": 6,
-      "isVoiceOverRunning": 3,
-      "gets": 1,
-      "buttons": 3,
-      "highFontSize": 6,
-      "fieldLength": 5,
-      "fontList": 2,
-      "field": 1,
-      "currentMinutes": 4,
-      "desktopBottom": 1,
-      "localMailboxes": 3,
-      "folder": 10,
-      "currentDate": 3,
-      "type": 6,
-      "default": 4,
-      "newFontSize": 6,
-      "theFilePath": 8,
-      "messageText": 4,
-      "windowWidth": 3,
-      "messages": 1,
-      "getMessageCountsForMailboxes": 4,
-      "not": 5,
-      "desktopRight": 1,
-      "passed": 2,
-      "value": 1,
-      "account": 1,
-      "for": 5,
-      "bounds": 2,
-      "content": 2,
-      "}": 32,
-      "prompt": 2,
-      "userInput": 4,
-      "false": 9,
-      "text": 13,
-      "then": 28,
-      "/": 2,
-      "font": 2,
-      "VoiceOver": 1,
-      "output": 1,
-      "accountMailboxes": 3,
-      "desktopTop": 2,
-      "mailboxes": 1,
-      "the": 56,
-      "contains": 1,
-      "outputMessage": 2,
-      "minutes": 2,
-      "screen_width": 2,
-      "paddedString": 5,
-      "eachAccount": 3,
-      "this_item": 14,
-      "day": 1,
-      "MyPath": 4,
-      "exit": 1,
-      "AppleScript": 2,
-      "JavaScript": 2,
-      "pane": 4,
-      "droplet": 2,
-      "s": 3,
-      "with": 11,
-      "returns": 2,
-      "terminalCommand": 6,
-      "h": 4,
-      "double": 2,
-      "handled": 2,
-      "thesefiles": 2,
-      "sound": 1,
-      "UI": 1,
-      "delay": 3,
-      "elements": 1,
-      "repeat": 19,
-      "everyAccount": 2,
-      "pass": 1,
-      "time": 1,
-      "could": 2,
-      "be": 2,
-      "item": 13,
-      "<": 2,
-      "messageCountDisplay": 5,
-      "paddingLength": 2,
-      "thePOSIXFilePath": 8,
-      "processes": 2,
-      "do": 4,
-      "run": 4,
-      "nn": 2,
-      "currently": 2,
-      "application": 16,
-      "file": 6,
-      "messageCount": 2,
-      "&": 63,
-      "processFile": 8,
-      "i": 10,
-      "this": 2,
-      "group": 1,
-      "set": 108,
-      "path": 6,
-      "script": 2,
-      "selection": 2,
-      "on": 18,
-      "times": 1,
-      "crazyTextMessage": 2,
-      "currentHour": 9,
-      "position": 1,
-      "userPicksFolder": 6,
-      "alias": 8,
-      "delimiters": 1,
-      "subject": 1,
-      "property": 7,
-      "radio": 1,
-      "readjust": 1,
-      "I": 2,
-      "size": 5,
-      "enabled": 2,
-      "as": 27,
-      "from": 9,
-      "result": 2,
-      "handler": 2,
-      "newFileName": 4,
-      "answer": 3,
-      "in": 13,
-      "equal": 3,
-      "(": 89,
-      "true": 8,
-      "first": 1,
-      "displayString": 4,
-      "whose": 1,
-      "POSIX": 4,
-      "name": 8,
-      "try": 10,
-      "below": 1,
-      "invisibles": 2,
-      "theString": 4,
-      "theText": 3,
-      "string": 17,
-      "processFolder": 8
-    },
-    "Monkey": {
-      "|": 2,
-      "operators": 1,
-      "boolVariable1": 1,
-      "sequence": 1,
-      "comma": 1,
-      "New": 1,
-      "DrawSpiral": 3,
-      "extending": 1,
-      "generics": 1,
-      "VectorNode": 1,
-      "TARGET": 2,
-      "False": 1,
-      "prints": 1,
-      "syntax": 1,
-      "array": 1,
-      "i#": 1,
-      "DoOtherStuff": 1,
-      "Function": 2,
-      "y": 2,
-      "-": 2,
-      "testField": 1,
-      "Boolean": 1,
-      "[": 6,
-      "Abstract": 1,
-      "hitbox.Collide": 1,
-      "sample": 1,
-      "Field": 2,
-      "c": 1,
-      "shorttype": 1,
-      "string5": 1,
-      "oneStuff": 1,
-      "Next": 1,
-      "Until": 1,
-      "Die": 1,
-      "escape": 1,
-      "Class": 3,
-      "Cls": 1,
-      "Bool": 2,
-      "SetUpdateRate": 1,
-      "Game": 1,
-      "Enemy": 1,
-      "field": 1,
-      ".ToUpper": 1,
-      "": 1,
-      "i*Sin": 1,
-      "#End": 1,
-      "strings": 1,
-      "Strict": 1,
-      "Step": 1,
-      "preprocessor": 1,
-      "in": 1,
-      "]": 6,
-      "listOfStuff": 3,
-      "Node": 1,
-      ".2": 1,
-      "i*Cos": 1,
-      "OnUpdate": 1,
-      "class": 1,
-      "from": 1,
-      "keywords": 1,
-      "OnRender": 1,
-      "x": 2,
-      "True": 2,
-      "worst.List": 1,
-      "x#": 1,
-      "killed": 1,
-      "Method": 4,
-      "i*3": 1,
-      "#If": 1,
-      "string4": 1,
-      "worstCase": 1,
-      "lessStuff": 1,
-      "documentation": 1,
-      ")": 12,
-      "y#": 1,
-      "b": 6,
-      "updateCount": 3,
-      "#ElseIf": 1,
-      "boolVariable2": 1,
-      "Global": 14,
-      "the": 1,
-      "Print": 2,
-      "&": 1,
-      "characers": 1,
-      "For": 1,
-      "he": 2,
-      "App": 1,
-      "": 1,
-      "Local": 3,
-      "with": 1,
-      "DoStuff": 1,
-      "w*1.5": 1,
-      "clock": 3,
-      "updateCount*1.1": 1,
-      "DeviceWidth/2": 1,
-      "Extends": 2,
-      "string6": 1,
-      "End": 8,
-      "w": 3,
-      "+": 5,
-      "OnCreate": 1,
-      "String": 4,
-      "i*2": 1,
-      "string3": 1,
-      "text": 1,
-      "separated": 1,
-      "a": 3,
-      "event.pos": 1,
-      "(": 12,
-      "DrawRect": 1,
-      "oss": 1,
-      "me": 1
-    },
-    "GLSL": {
-      "lessThan": 2,
-      "s*s*": 1,
-      "offset": 5,
-      "vec3": 165,
-      "Duiker": 1,
-      "sign": 1,
-      "tree": 2,
-      "rayDir*t": 2,
-      "tonemapping": 1,
-      "pos": 42,
-      "lightDir": 3,
-      "between": 1,
-      "*0.7": 1,
-      "Configurations": 1,
-      "cameraDir": 2,
-      "taken": 1,
-      "initialize": 1,
-      "resPlants.w": 6,
-      "curve": 1,
-      "/": 24,
-      "quality": 2,
-      "exp": 2,
-      "resLeaves": 3,
-      "*0.5": 1,
-      "permute": 4,
-      "plants": 6,
-      "res.x": 3,
-      "res2.w": 3,
-      "D.yyy": 1,
-      "eps.yxy": 1,
-      "-": 108,
-      "resSand.xyz": 1,
-      ".g": 1,
-      "||": 3,
-      "*7": 1,
-      "h.y": 1,
-      "gradients": 1,
-      "leaf": 1,
-      "Intel": 1,
-      "y_": 2,
-      "x.zw": 1,
-      "i.y": 1,
-      "GRASS": 3,
-      "p3": 5,
-      "+": 108,
-      "gl_FragColor": 2,
-      "e.yxy": 1,
-      "chroma_green": 2,
-      "h.w": 1,
-      "Win7": 1,
-      "RAGGED_LEAVES": 5,
-      "diffuseDot": 2,
-      "calculate": 1,
-      "too": 1,
-      "Island": 1,
-      "p1": 5,
-      "fbm": 2,
-      ")": 386,
-      "refl": 3,
-      "reduce": 1,
-      "s1.xzyw*sh.zzww": 1,
-      "chroma_red": 2,
-      "gl_FragCoord.xy": 7,
-      "MAX_DIST": 3,
-      "Defaults": 1,
-      "ao": 5,
-      "ns": 4,
-      "resTreasure.xyz": 1,
-      "openAmount": 4,
-      "n.y": 3,
-      "snoise": 7,
-      "reflDir": 3,
-      "pos.xz": 2,
-      "x0.yzx": 1,
-      "chroma": 2,
-      "fragmentNormal": 2,
-      "rayDir*res.w": 1,
-      "but": 1,
-      "}": 61,
-      "p.y": 1,
-      "b1.xzyw": 1,
-      "Calculate": 1,
-      "uv.y*uv.y": 1,
-      "p*0.5": 1,
-      "//#define": 10,
-      "chromaticize_and_invert": 2,
-      "aberrate": 4,
-      "light": 5,
-      "//if": 1,
-      "kCube": 2,
-      "D.xzx": 1,
-      "{": 61,
-      "k*x": 1,
-      "resTreasure.w": 4,
-      "float": 103,
-      "uShift": 3,
-      "rayDir": 43,
-      "eps.yyx": 1,
-      "N": 1,
-      "sandCol": 2,
-      "water": 1,
-      "adsk_input1_frameratio": 5,
-      "#ifdef": 14,
-      "d.xzy": 1,
-      "DETAILED_NOISE": 3,
-      "y": 2,
-      "gl_FragColor.rgba": 1,
-      "px.x": 2,
-      "cameraVector": 2,
-      "uniform": 7,
-      "Only": 1,
-      "adsk_input1_h": 3,
-      "C.y": 1,
-      "e7": 3,
-      "iGlobalTime*0.5": 1,
-      "i2": 2,
-      "void": 5,
-      "distance": 1,
-      "vgrass": 2,
-      "resPlants": 2,
-      "D.y": 1,
-      "theta": 6,
-      "rad": 2,
-      "intersectSphere": 2,
-      "iGlobalTime": 7,
-      "MAX_DIST_SQUARED": 3,
-      "rgb_f.gg": 1,
-      "PI": 3,
-      "lut": 9,
-      "scene": 7,
-      "when": 1,
-      "rd": 1,
-      "skyCol": 4,
-      "Shift": 1,
-      "or": 1,
-      "specular": 4,
-      "rd.y": 1,
-      "Left": 1,
-      "s": 23,
-      "normalize": 14,
-      "norm.z": 1,
-      "rdir2*t": 2,
-      "sunDir*0.01": 2,
-      "pos.y": 8,
-      "rgb_f.rr": 1,
-      "else": 1,
-      "fragment": 1,
-      "op": 5,
-      "out": 1,
-      "iResolution.x/iResolution.y*0.5": 1,
-      "LIGHT_AA": 3,
-      "rdir2": 2,
-      "i1.y": 1,
-      "/3": 1,
-      "leaves": 7,
-      "aliasing": 1,
-      "norm.x": 1,
-      "used": 1,
-      "det": 11,
-      "lut_r": 5,
-      "NUM_LIGHTS": 4,
-      "on": 3,
-      "taylorInvSqrt": 2,
-      "a0.xy": 1,
-      "k*res.x/t": 1,
-      "//vec4": 3,
-      "i2.y": 1,
-      "D": 1,
-      "r*r": 1,
-      "specularColor": 2,
-      "fine": 1,
-      "rayDir*res2.w": 1,
-      "adsk_input1_aspect": 1,
-      "slow": 1,
-      "incr": 2,
-      "Other": 1,
-      "&&": 10,
-      "//": 36,
-      "intersectCylinder": 1,
-      "sand": 2,
-      "C.xxx": 2,
-      "b0.xzyw": 1,
-      "sampled.r": 1,
-      "lightVector": 4,
-      "m": 8,
-      "Avoid": 1,
-      "intersectLeaf": 2,
-      "final": 5,
-      "b*b": 2,
-      "resTreasure": 1,
-      "rdir*t": 1,
-      "pos.y*0.03": 2,
-      "Up": 1,
-      "a0": 1,
-      "Intersect": 11,
-      "op.yz": 3,
-      "res.xyz": 1,
-      "Should": 1,
-      "intersectTreasure": 2,
-      ".z": 5,
-      "k": 8,
-      "n_": 2,
-      "treasure": 1,
-      "leavesPos": 4,
-      "p.xz": 2,
-      "resWater": 1,
-      "sampled": 1,
-      "distFactor": 3,
-      "width": 2,
-      "i": 38,
-      "y.xy": 1,
-      ".x": 4,
-      "shadow": 4,
-      "traceReflection": 2,
-      "*s": 4,
-      "uv.x": 11,
-      "Peter": 1,
-      "resWater.w": 4,
-      "dot": 30,
-      "<": 23,
-      "tex": 6,
-      "g": 2,
-      "length": 7,
-      "specularDot": 2,
-      "e": 4,
-      "may": 1,
-      "sampler2D": 1,
-      "diffuse/specular": 1,
-      "for": 7,
-      "C.yyy": 2,
-      "intersectWater": 2,
-      "rayPos": 38,
-      "a1.xy": 1,
-      ".r": 3,
-      "s0": 2,
-      "c": 6,
-      "b1": 3,
-      "inverse_f": 2,
-      "trans": 2,
-      "diffuse": 4,
-      "x_": 3,
-      "s0.xzyw*sh.xxyy": 1,
-      "main": 3,
-      "lightColor": 3,
-      "fresnel": 2,
-      "grass": 2,
-      "x2": 5,
-      "High": 1,
-      "TONEMAP": 5,
-      "RG": 1,
-      "col": 32,
-      "#version": 1,
-      "rpos.yz": 2,
-      "SMALL_WAVES": 4,
-      "Haarm": 1,
-      "x0.xyz": 1,
-      "vec4": 72,
-      "uv.x*uv.x": 1,
-      "down": 1,
-      "x0": 7,
-      "chest": 1,
-      ".xzy": 2,
-      "dir.xy": 1,
-      "through": 1,
-      "#define": 13,
-      "angleOffset": 3,
-      "sampled.b": 1,
-      "]": 29,
-      "vec2": 26,
-      "eps": 5,
-      "heightmap": 1,
-      "D.wyz": 1,
-      "x*34.0": 1,
-      "adsk_input1_w": 4,
-      "sky": 5,
-      "[": 29,
-      "a0.zw": 1,
-      "res.y": 2,
-      "loop": 1,
-      "l.zxy": 2,
-      "sunCol": 5,
-      ".rgb": 2,
-      "g.xyz": 2,
-      "h.z": 1,
-      "HIGHQUALITY": 2,
-      "sample.a": 1,
-      "i.z": 1,
-      "*0.25": 4,
-      "res.w": 6,
-      "x*": 2,
-      "Soft": 1,
-      "lighting": 1,
-      "norm": 1,
-      "adsk_result_h": 2,
-      "sample": 2,
-      "h.x": 1,
-      "i.x": 1,
-      "p2": 5,
-      "iChannel0": 3,
-      "*": 115,
-      "REFLECTIONS": 3,
-      "resLeaves.xyz": 2,
-      "return": 47,
-      "rdir.yz": 1,
-      "camera": 8,
-      "lightLeaves": 3,
-      "p.xzy": 1,
-      "p0": 5,
-      "resSand.w": 4,
-      "if": 29,
-      "vShift": 3,
-      "all": 1,
-      "(": 386,
-      "Some": 1,
-      "bump": 2,
-      "by": 1,
-      ".b": 1,
-      "*2": 2,
-      "texture2D": 6,
-      "*2.0": 4,
-      "p.z": 2,
-      "rotate": 5,
-      "away": 1,
-      "n.x": 1,
-      ".5": 1,
-      "works": 1,
-      "sample.rgb": 1,
-      "p.x": 2,
-      "mod": 2,
-      "HD2000": 1,
-      "eps.xyy": 1,
-      "quite": 1,
-      "max_r": 2,
-      "normal": 7,
-      "chroma_blue": 2,
-      "/3.0": 1,
-      "e.xyy": 1,
-      "px.y": 2,
-      "upDownSway": 2,
-      "a1.zw": 1,
-      "clamp": 4,
-      "waves": 3,
-      "floor": 8,
-      "e8": 1,
-      "systems": 1,
-      "impulse": 2,
-      "intersectPlane": 3,
-      "k*10.0": 1,
-      "x": 11,
-      "intersectSand": 3,
-      "/6.0": 1,
-      "i1": 2,
-      "/7.0": 1,
-      "sampled.rgb": 1,
-      "direction": 1,
-      "v": 8,
-      "treeCol": 2,
-      "x.xy": 1,
-      "y.zw": 1,
-      "rgb_f.bb": 1,
-      "SSAA": 2,
-      "sqrt": 6,
-      "Optimization": 1,
-      "individual": 1,
-      "HEAVY_AA": 2,
-      "sway": 5,
-      "pos.yz": 2,
-      "#endif": 14,
-      "t": 44,
-      "dir": 2,
-      "pos.z": 2,
-      "apply_disto": 4,
-      "m*pos.xy": 1,
-      "#else": 5,
-      "rpos": 5,
-      "step": 2,
-      "crash": 1,
-      "rd.x": 1,
-      "////": 4,
-      "mix": 2,
-      "i1.z": 1,
-      "reflect": 1,
-      "pos.x": 1,
-      "r": 14,
-      "norm.y": 1,
-      "i2.z": 1,
-      "col*exposure": 1,
-      "rgb_uvs": 12,
-      "resPlants.xyz": 2,
-      "uvFact": 2,
-      "px": 4,
-      "i1.x": 1,
-      "leavesPos.xz": 2,
-      "ct": 2,
-      "p": 26,
-      "norm.w": 1,
-      "sh": 1,
-      "i2.x": 1,
-      "kCoeff": 2,
-      "Fade": 1,
-      "C": 1,
-      "m*m": 1,
-      "pos*0.8": 2,
-      "leavesCol": 4,
-      "*ns.x": 2,
-      "mat2": 2,
-      "const": 18,
-      "n": 18,
-      "rgb_f": 5,
-      "bool": 1,
-      "res2": 2,
-      "mod289": 4,
-      "sunDir": 5,
-      "*x": 3,
-      "int": 7,
-      "a1": 1,
-      "grassCol": 2,
-      "to": 1,
-      "noise": 1,
-      "plantsShadow": 2,
-      "MEDIUMQUALITY": 2,
-      "l": 1,
-      "ns.z": 3,
-      "varying": 3,
-      "be": 1,
-      "distortion_f": 3,
-      "halfAngle": 2,
-      "iResolution.yy": 1,
-      "browsers": 1,
-      ".y": 2,
-      "input1": 4,
-      "uv": 12,
-      "j": 4,
-      "Medium": 1,
-      "uv.y": 7,
-      "min": 11,
-      "h": 21,
-      "AMBIENT": 2,
-      "cos": 4,
-      "rayDir.y": 1,
-      ";": 353,
-      "f": 17,
-      "adsk_result_w": 3,
-      "each": 1,
-      "from": 2,
-      "e20": 3,
-      "rad*rad": 2,
-      "resWater.t": 1,
-      "dist": 7,
-      "and": 2,
-      "waterHeight": 4,
-      "res": 6,
-      "s1": 2,
-      "d": 10,
-      "max": 9,
-      "vtree": 4,
-      "the": 1,
-      "far": 1,
-      "sin": 8,
-      "ns.yyyy": 2,
-      "trace": 2,
-      "//Normalise": 1,
-      "sampled.g": 1,
-      "b0": 3,
-      "resLeaves.w": 10,
-      "alpha": 3,
-      "fract": 1,
-      "freeze": 1,
-      "b": 5,
-      "resSand": 2,
-      "*C.x": 2,
-      "x3": 4,
-      "pow": 3,
-      "dir.z": 1,
-      "SHADOWS": 5,
-      "rdir": 3,
-      "right": 1,
-      "Optimized": 1,
-      "rayPos.y": 1,
-      "x1": 4,
-      "abs": 2,
-      "exposure": 1,
-      "iq": 2
-    },
-    "Gosu": {
-      "writer": 2,
-      "@": 1,
-      "set": 1,
-      ".Name": 1,
-      "throw": 1,
-      "DBConnectionManager.getConnection": 1,
-      "PersonCSVTemplate.renderToString": 1,
-      "gst": 1,
-      "user.LastName": 1,
-      "not": 1,
-      "get": 1,
-      "new": 6,
-      "FileWriter": 1,
-      "example": 2,
-      "String": 6,
-      "stmt": 1,
-      "class": 1,
-      "{": 28,
-      "and": 1,
-      "@Deprecated": 1,
-      "Relationship": 3,
-      ".orderBy": 1,
-      "+": 2,
-      "property": 2,
-      "HashMap": 1,
-      "enhancement": 1,
-      "IEmailable": 2,
-      "(": 54,
-      "EmailHelper": 1,
-      "print": 4,
-      "_name": 4,
-      "this": 1,
-      "IllegalArgumentException": 1,
-      "_relationship": 2,
-      "represents": 1,
-      "function": 11,
-      "contact.Name": 1,
-      "%": 2,
-      "p.Name": 2,
-      "Name": 3,
-      "addPerson": 4,
-      "id": 1,
-      "var": 10,
-      "incrementAge": 1,
-      "users": 2,
-      "PersonCSVTemplate.render": 1,
-      "File": 2,
-      "user.Department": 1,
-      "addAllPeople": 1,
-      "FAMILY": 1,
-      "Age": 1,
-      "loadFromFile": 1,
-      "implements": 1,
-      "<%>": 2,
-      "age": 4,
-      "override": 1,
-      "file.eachLine": 1,
-      "RelationshipOfPerson": 1,
-      "]": 4,
-      "typeis": 1,
-      "": 1,
-      "allPeople": 1,
-      "line": 1,
-      "user": 1,
-      "result.next": 1,
-      "name": 4,
-      "<%!-->": 1,
-      "in": 3,
-      "contact": 3,
-      ")": 55,
-      "ALL_PEOPLE.Values": 3,
-      "List": 1,
-      "_age": 3,
-      "FRIEND": 1,
-      "file": 3,
-      "result.getString": 2,
-      "stmt.executeQuery": 1,
-      "p": 5,
-      "defined": 1,
+      "-": 1,
+      "

": 2, "Hello": 2, - "": 1, - "this.split": 1, - "Collection": 1, - "java.util.*": 1, - "Contact": 1, - "p.Age": 1, - "user.FirstName": 1, - "allPeople.where": 1, - "Person": 7, - "<": 1, - "loadPersonFromDB": 1, - "readonly": 1, - "contacts": 2, - "line.HasContent": 1, - "result": 1, - "return": 4, - "getEmailName": 1, - "conn": 1, - "conn.prepareStatement": 1, - "hello": 1, - "static": 7, - "relationship": 2, - "toPerson": 1, - "[": 4, - "as": 3, - "extends": 1, - "result.getInt": 1, - "}": 28, - "uses": 2, - "BUSINESS_CONTACT": 1, - "delegate": 1, - "printPersonInfo": 1, - "stmt.setInt": 1, - "java.io.File": 1, - "-": 3, - "line.toPerson": 1, - "for": 2, - "params": 1, - "enum": 1, - "construct": 1, - "Integer": 3, - "saveToFile": 1, - "using": 2, - "int": 2, - "_emailHelper": 2, - "if": 4, - "package": 2, - "ALL_PEOPLE": 2, - "getAllPeopleOlderThanNOrderedByName": 1, - "Relationship.valueOf": 2, - "ALL_PEOPLE.containsKey": 2, - "": 1, - "vals": 4 - }, - "XProc": { - "": 1, - "": 1, - "": 1, - "": 1, - "encoding=": 1, - "": 1, - "": 1, - "": 1, - "Hello": 1, - "version=": 2, - "": 1, - "p=": 1, - "": 1, - "c=": 1, - "": 1, - "world": 1, - "port=": 2, - "xmlns": 2, - "": 1 - }, - "Volt": { - "cmdGroup": 2, - "i": 14, - "list": 1, - "else": 3, - "files": 1, - "Result": 2, - "ret": 1, - "f": 1, - "float": 2, - "passed": 5, - "watt.path": 1, - "new": 3, - "-": 3, - "printImprovments": 2, - "xml": 8, - "///": 1, - "compiler": 3, - "cmdGroup.waitAll": 1, - "[": 6, - "regressed": 6, - "*": 1, - "core.stdc.stdlib": 1, - "improved": 3, - "core.stdc.stdio": 1, - "auto": 6, - "double": 1, - ".xmlLog": 1, - "printRegressions": 2, - "rets": 5, - "cast": 5, - "/": 1, - "fopen": 1, - "bool": 4, - "if": 7, - "{": 12, - "return": 2, - "@todo": 1, - "printOk": 2, - ".ptr": 14, - "watt.process": 1, - "]": 6, - "failed": 5, - "module": 1, - "is": 2, - "results": 1, - ")": 37, - "<": 3, - "Scan": 1, - "rate": 2, - "stdout": 1, - "import": 7, - "}": 12, - "true": 4, - "getEnv": 1, - "total": 5, - "testList": 1, - "tests.length": 3, - "ret.msg.ptr": 4, - "null": 3, - "ret.test.ptr": 4, - "printFailing": 2, - "ret.ok": 1, - "&&": 2, - "fclose": 1, - "fprintf": 2, - "fflush": 2, - ".runTest": 1, - "for": 4, - "size_t": 3, - "rets.length": 1, - "printf": 6, - "tests": 2, - "+": 14, - "int": 8, - "CmdGroup": 1, - "ret.hasPassed": 4, - "string": 1, - "main": 2, - ";": 53, - "cmd": 1, - "(": 37 - }, - "Tea": { - "foo": 1, - "template": 1, - "<%>": 1 - }, - "Scilab": { - "then": 1, - "myfunction": 1, - "assert_checkequal": 1, - "return": 1, - "-": 2, - ";": 7, - "%": 4, - "+": 5, - ")": 7, - "f": 2, - "e": 4, - "d": 2, - "(": 7, - "]": 1, - "b": 4, - "a": 4, - "[": 1, - "home": 1, - "cosh": 1, - "assert_checkfalse": 1, - "if": 1, + "world": 2, + "

": 2, + ")": 4, + "Server.start": 1, + "Server.http": 1, + "{": 2, + "page": 1, "function": 1, - "disp": 1, - "cos": 1, - "pi": 3, - "myvar": 1, - "endfunction": 1, - "e.field": 1, - "else": 1, - "end": 1 + "}": 2, + "title": 1 + }, + "OpenCL": { + "double": 3, + "run_fftw": 1, + "(": 11, + "int": 3, + "n": 2, + "const": 2, + "float": 2, + "*": 4, + "x": 2, + "y": 2, + ")": 11, + "{": 2, + "fftwf_plan": 1, + "p1": 3, + "fftwf_plan_dft_1d": 1, + "fftwf_complex": 2, + "FFTW_FORWARD": 1, + "FFTW_ESTIMATE": 1, + ";": 9, + "nops": 3, + "t": 4, + "cl": 2, + "realTime": 2, + "for": 1, + "op": 3, + "<": 1, + "+": 2, + "fftwf_execute": 1, + "}": 2, + "-": 1, + "/": 1, + "fftwf_destroy_plan": 1, + "return": 1 + }, + "OpenEdge ABL": { + "USING": 3, + "Progress.Lang.*.": 3, + "CLASS": 2, + "email.Email": 2, + "USE": 2, + "-": 73, + "WIDGET": 2, + "POOL": 2, + "&": 3, + "SCOPED": 1, + "DEFINE": 16, + "QUOTES": 1, + "@#": 1, + "%": 2, + "*": 2, + "+": 21, + "._MIME_BOUNDARY_.": 1, + "#@": 1, + "WIN": 1, + "From": 4, + "To": 8, + "CC": 2, + "BCC": 2, + "Personal": 1, + "Private": 1, + "Company": 2, + "confidential": 2, + "normal": 1, + "urgent": 2, + "non": 1, + "Cannot": 3, + "locate": 3, + "file": 6, + "in": 3, + "the": 3, + "filesystem": 3, + "R": 3, + "File": 3, + "exists": 3, + "but": 3, + "is": 3, + "not": 3, + "readable": 3, + "Error": 3, + "copying": 3, + "from": 3, + "<\">": 8, + "ttSenders": 2, + "cEmailAddress": 8, + "n": 13, + "ttToRecipients": 1, + "Reply": 3, + "ttReplyToRecipients": 1, + "Cc": 2, + "ttCCRecipients": 1, + "Bcc": 2, + "ttBCCRecipients": 1, + "Return": 1, + "Receipt": 1, + "ttDeliveryReceiptRecipients": 1, + "Disposition": 3, + "Notification": 1, + "ttReadReceiptRecipients": 1, + "Subject": 2, + "Importance": 3, + "H": 1, + "High": 1, + "L": 1, + "Low": 1, + "Sensitivity": 2, + "Priority": 2, + "Date": 4, + "By": 1, + "Expiry": 2, + "Mime": 1, + "Version": 1, + "Content": 10, + "Type": 4, + "multipart/mixed": 1, + ";": 5, + "boundary": 1, + "text/plain": 2, + "charset": 2, + "Transfer": 4, + "Encoding": 4, + "base64": 2, + "bit": 2, + "application/octet": 1, + "stream": 1, + "attachment": 2, + "filename": 2, + "ttAttachments.cFileName": 2, + "cNewLine.": 1, + "RETURN": 7, + "lcReturnData.": 1, + "END": 12, + "METHOD.": 6, + "METHOD": 6, + "PUBLIC": 6, + "CHARACTER": 9, + "send": 1, + "(": 44, + ")": 44, + "objSendEmailAlgorithm": 1, + "sendEmail": 2, + "INPUT": 11, + "THIS": 1, + "OBJECT": 2, + ".": 14, + "CLASS.": 2, + "MESSAGE": 2, + "INTERFACE": 1, + "email.SendEmailAlgorithm": 1, + "ipobjEmail": 1, + "AS": 21, + "INTERFACE.": 1, + "PARAMETER": 3, + "objSendEmailAlg": 2, + "email.SendEmailSocket": 1, + "NO": 13, + "UNDO.": 12, + "VARIABLE": 12, + "vbuffer": 9, + "MEMPTR": 2, + "vstatus": 1, + "LOGICAL": 1, + "vState": 2, + "INTEGER": 6, + "ASSIGN": 2, + "vstate": 1, + "FUNCTION": 1, + "getHostname": 1, + "RETURNS": 1, + "cHostname": 1, + "THROUGH": 1, + "hostname": 1, + "ECHO.": 1, + "IMPORT": 1, + "UNFORMATTED": 1, + "cHostname.": 2, + "CLOSE.": 1, + "FUNCTION.": 1, + "PROCEDURE": 2, + "newState": 2, + "INTEGER.": 1, + "pstring": 4, + "CHARACTER.": 1, + "newState.": 1, + "IF": 2, + "THEN": 2, + "RETURN.": 1, + "SET": 5, + "SIZE": 5, + "LENGTH": 3, + "PUT": 1, + "STRING": 7, + "pstring.": 1, + "SELF": 4, + "WRITE": 1, + "PROCEDURE.": 2, + "ReadSocketResponse": 1, + "vlength": 5, + "str": 3, + "v": 1, + "GET": 3, + "BYTES": 2, + "AVAILABLE": 2, + "VIEW": 1, + "ALERT": 1, + "BOX.": 1, + "DO": 2, + "READ": 1, + "handleResponse": 1, + "END.": 2, + "email.Util": 1, + "FINAL": 1, + "PRIVATE": 1, + "STATIC": 5, + "cMonthMap": 2, + "EXTENT": 1, + "INITIAL": 1, + "[": 2, + "]": 2, + "ABLDateTimeToEmail": 3, + "ipdttzDateTime": 6, + "DATETIME": 3, + "TZ": 2, + "DAY": 1, + "MONTH": 1, + "YEAR": 1, + "TRUNCATE": 2, + "MTIME": 1, + "/": 2, + "ABLTimeZoneToString": 2, + "TIMEZONE": 1, + "ipdtDateTime": 2, + "ipiTimeZone": 3, + "ABSOLUTE": 1, + "MODULO": 1, + "LONGCHAR": 4, + "ConvertDataToBase64": 1, + "iplcNonEncodedData": 2, + "lcPreBase64Data": 4, + "lcPostBase64Data": 3, + "mptrPostBase64Data": 3, + "i": 3, + "COPY": 1, + "LOB": 1, + "FROM": 1, + "TO": 2, + "mptrPostBase64Data.": 1, + "BASE64": 1, + "ENCODE": 1, + "BY": 1, + "SUBSTRING": 1, + "CHR": 2, + "lcPostBase64Data.": 1 + }, + "Org": { + "#": 13, + "+": 13, + "OPTIONS": 1, + "H": 1, + "num": 1, + "nil": 4, + "toc": 2, + "n": 1, + "@": 1, + "t": 10, + "|": 4, + "-": 30, + "f": 2, + "*": 3, + "TeX": 1, + "LaTeX": 1, + "skip": 1, + "d": 2, + "(": 11, + "HIDE": 1, + ")": 11, + "tags": 2, + "not": 1, + "in": 2, + "STARTUP": 1, + "align": 1, + "fold": 1, + "nodlcheck": 1, + "hidestars": 1, + "oddeven": 1, + "lognotestate": 1, + "SEQ_TODO": 1, + "TODO": 1, + "INPROGRESS": 1, + "i": 1, + "WAITING": 1, + "w@": 1, + "DONE": 1, + "CANCELED": 1, + "c@": 1, + "TAGS": 1, + "Write": 1, + "w": 1, + "Update": 1, + "u": 1, + "Fix": 1, + "Check": 1, + "c": 1, + "TITLE": 1, + "org": 10, + "ruby": 6, + "AUTHOR": 1, + "Brian": 1, + "Dewey": 1, + "EMAIL": 1, + "bdewey@gmail.com": 1, + "LANGUAGE": 1, + "en": 1, + "PRIORITIES": 1, + "A": 1, + "C": 1, + "B": 1, + "CATEGORY": 1, + "worg": 1, + "{": 1, + "Back": 1, + "to": 8, + "Worg": 1, + "rubygems": 2, + "ve": 1, + "already": 1, + "created": 1, + "a": 4, + "site.": 1, + "Make": 1, + "sure": 1, + "you": 2, + "have": 1, + "installed": 1, + "sudo": 1, + "gem": 1, + "install": 1, + ".": 1, + "You": 1, + "need": 1, + "register": 1, + "new": 2, + "Webby": 3, + "filter": 3, + "handle": 1, + "mode": 2, + "content.": 2, + "makes": 1, + "this": 2, + "easy.": 1, + "In": 1, + "the": 6, + "lib/": 1, + "folder": 1, + "of": 2, + "your": 2, + "site": 1, + "create": 1, + "file": 1, + "orgmode.rb": 1, + "BEGIN_EXAMPLE": 2, + "require": 1, + "Filters.register": 1, + "do": 2, + "input": 3, + "Orgmode": 2, + "Parser.new": 1, + ".to_html": 1, + "end": 1, + "END_EXAMPLE": 1, + "This": 2, + "code": 1, + "creates": 1, + "that": 1, + "will": 1, + "use": 1, + "parser": 1, + "translate": 1, + "into": 1, + "HTML.": 1, + "Create": 1, + "For": 1, + "example": 1, + "title": 2, + "Parser": 1, + "created_at": 1, + "status": 2, + "Under": 1, + "development": 1, + "erb": 1, + "orgmode": 3, + "<%=>": 2, + "page": 2, + "Status": 1, + "Description": 1, + "Helpful": 1, + "Ruby": 1, + "routines": 1, + "for": 3, + "parsing": 1, + "files.": 1, + "The": 3, + "most": 1, + "significant": 1, + "thing": 2, + "library": 1, + "does": 1, + "today": 1, + "is": 5, + "convert": 1, + "files": 1, + "textile.": 1, + "Currently": 1, + "cannot": 1, + "much": 1, + "customize": 1, + "conversion.": 1, + "supplied": 1, + "textile": 1, + "conversion": 1, + "optimized": 1, + "extracting": 1, + "from": 1, + "orgfile": 1, + "as": 1, + "opposed": 1, + "History": 1, + "**": 1, + "Version": 1, + "first": 1, + "output": 2, + "HTML": 2, + "gets": 1, + "class": 1, + "now": 1, + "indented": 1, + "Proper": 1, + "support": 1, + "multi": 1, + "paragraph": 2, + "list": 1, + "items.": 1, + "See": 1, + "part": 1, + "last": 1, + "bullet.": 1, + "Fixed": 1, + "bugs": 1, + "wouldn": 1, + "s": 1, + "all": 1, + "there": 1, + "it": 1 }, "Parrot Assembly": { + "SHEBANG#!parrot": 1, ".pcc_sub": 1, "main": 2, "say": 1, - "end": 1, - "SHEBANG#!parrot": 1 + "end": 1 }, - "fish": { - "cmd": 2, - "/dev/null": 2, - "funcname": 14, - "If": 2, - "fish_function_path": 4, - "e": 6, - "set": 49, - "_": 3, - "normal": 2, - "wont": 1, - "XDG_CONFIG_HOME": 2, - "not": 8, - "/usr/local/sbin": 1, - "on": 2, - "status": 7, - "res": 2, - "eval.": 1, - "signal": 1, - "is": 3, - "no": 2, - "an": 1, - ".": 2, - "functions": 5, - "S": 1, - "was": 1, - "switch": 3, - "__fish_sysconfdir/functions": 1, - "interactive": 8, - "(": 7, - "TRAP": 1, - "this": 1, - "%": 2, - "red": 2, - "help": 1, - "function": 6, - "code": 1, - "USER": 1, - "l": 15, - "fish_sigtrap_handler": 1, - "configdir/fish/functions": 1, - "EDITOR": 1, - "i": 5, - "f": 3, - "configdir": 2, - "editor": 7, - "c": 1, - "breakpoint": 1, - "do": 1, - "that": 1, - "work": 1, - "echo": 3, - "tmpname": 8, - "fish_indent": 2, - ";": 7, - "event": 1, - "contains": 4, - "PATH": 6, - "or": 3, - "root": 1, - "configdir/fish/completions": 1, - "]": 13, - "don": 1, - "real": 1, - "fish": 3, - "printf": 3, - "argv": 9, - "end": 33, - "/.config": 1, - "mode": 5, - "/sbin": 1, - "it": 1, - "|": 3, - "init": 5, - "__fish_print_help": 1, - "while": 2, - "type": 1, - "behave": 1, - "in": 2, - "be": 1, - "/bin": 1, - "TMPDIR": 2, - "s": 1, - ")": 7, - "/usr/sbin": 1, - "__fish_config_interactive": 1, - "fish_complete_path": 4, - "else": 3, - "p": 1, - "&": 1, - "we": 2, - "__fish_on_interactive": 2, - "eval": 5, - "like": 2, - "case": 9, - "#": 18, - "scope": 1, - "the": 1, - "__fish_sysconfdir/completions": 1, - "enable": 1, - "are": 1, - "g": 1, - "__fish_datadir/functions": 3, - "rm": 1, - "/tmp": 1, - "begin": 2, - "/usr/xpg4/bin": 3, - "d": 3, - "commands": 1, - "self": 2, - "<": 1, - "/usr/bin": 1, - "prompt": 2, - "full": 4, - "return": 6, - "/usr/local/bin": 1, - "__fish_bin_dir": 1, - "stat": 2, - "indent": 1, - "[": 13, - "nend": 2, - "set_color": 4, - "funced": 3, - "description": 2, - "test": 7, - "path_list": 4, - "read": 1, - "z": 1, - "editor_cmd": 2, - "less": 1, - "interactively": 1, - "shadowing": 1, - "expect": 1, - "control": 5, - "none": 1, - "-": 102, - "__fish_datadir/completions": 3, - "random": 2, - "t": 2, - "executed.": 1, - "for": 1, - "q": 9, - "IFS": 4, - "using": 1, - "fish_prompt": 1, - "shell": 1, - "if": 21, - "to": 1, - "/usr/X11R6/bin": 1, - "n": 5, - "since": 1, - "used": 1, - "should": 2, - "h": 1, - "job": 5 + "Parrot Internal Representation": { + "SHEBANG#!parrot": 1, + ".sub": 1, + "main": 1, + "say": 1, + ".end": 1 }, - "Ioke": { - "println": 1, - "SHEBANG#!ioke": 1 - }, - "Emacs Lisp": { - "etc": 1, - "dribble": 1, - "copy": 2, - "car": 1, - "tb": 1, - "char": 6, - "License": 3, - "keep": 2, - ")": 144, - "http": 1, - "interaction": 1, - "arguments": 2, - "Public": 3, - "a": 4, - "subset": 2, - "versions": 1, - "STERM": 1, - "words": 1, - "skip": 1, - "If": 1, - "hooks": 1, - "implied": 1, - "proc": 3, - "PARTICULAR": 1, - "auto": 1, - "newline": 1, - "free": 1, - "of": 8, - "Keywords": 1, - "get": 3, - "window": 2, - "warranty": 1, - "published": 1, - "received": 1, - "x": 2, - "show": 1, - "workaround": 1, - "*": 1, - "prefix": 2, - "current": 2, - "Floor": 1, - "ANY": 1, - "your": 1, - "W": 1, - "forward": 1, - "logo": 1, - "even": 1, - "useful": 1, - "separate": 1, - "quote": 2, - "constant": 1, - "com": 1, - "or": 3, - "re": 2, - "should": 2, - "files": 1, - "ignored": 1, - "character": 1, - "A": 1, - "Copyright": 1, - "eldoc": 1, - "just": 1, - "editor": 2, - "to": 4, - "make": 4, - "w*": 1, - "Software": 2, - "calculate": 1, - "program": 6, - "sequence": 1, - "while": 1, - "n": 1, - "details.": 1, - "without": 1, - "lang": 1, - "list": 3, - "point": 6, - "+": 5, - "if": 4, - "###autoload": 2, - "any": 1, - "forloop": 1, - "part": 2, - "keyword": 2, - "page": 2, - "doc": 1, - "nth": 1, - "multi": 1, - "space": 1, - "notably": 1, - "end": 1, - "used": 1, - "You": 1, - "temporary": 1, - "project": 1, - "syntax": 7, - "dump": 2, - "M": 2, - "length": 1, - "funname.start": 1, - "This": 4, - "julia.": 2, - "defconst": 5, - "process": 5, - "Filename": 1, - "inside": 1, - "delimiter": 2, - "max": 1, - "you": 1, - "ESS": 5, - "MERCHANTABILITY": 1, - "screws": 1, - "//docs.julialang.org/en/latest/search/": 1, - "basic": 1, - ".*": 2, - "and": 3, - "C": 2, - "later": 1, - "Emacs.": 1, - "identity": 1, - "cons": 1, - "See": 1, - "object": 2, - "fill": 1, - "function": 7, - "-": 294, - "ess": 48, - "error": 6, - "defaults": 2, - "is": 5, - "directory": 2, - "classes": 1, - "post": 1, - "hook": 4, - "parse": 1, - "based": 1, - "require": 2, - "Maintainer": 1, - "mode": 12, - "face": 4, - "match": 1, - "nil": 12, - "FOR": 1, - "see": 2, - "inject": 1, - "debugging": 1, - "language": 1, - "Street": 1, - "release": 1, - "send": 3, - "COPYING.": 1, - "print": 1, - "Franklin": 1, - "functions": 2, - "String": 1, - "autoload": 1, - "vector": 1, - "*in": 1, - "Syntax": 3, - "Julia": 1, - "q": 1, - "it": 3, - "default": 1, - ".": 40, - "minibuffer": 1, - "available.": 1, - "format": 3, - "MA": 1, - "[": 3, - "Author": 1, - "not": 1, - "ignore": 2, - "by": 1, - "WITHOUT": 1, - "command": 5, - "alist": 9, - "for": 8, - "modify": 5, - "will": 1, - "entry": 4, - "distributed": 1, - "paragraph": 3, - "column": 1, - "lock": 6, - "Spinu.": 1, - "concat": 7, - "local": 6, - "complete": 1, - "include": 1, - "start": 13, - "indent": 8, - "font": 6, - "insert": 1, - "symbol": 2, - "fboundp": 1, - "when": 2, - "the": 10, - "PURPOSE.": 1, - "terms": 1, - "replace": 1, - "...": 1, - "funargs": 1, - "aggressive": 1, - "only": 1, - "Vitalie": 3, - "GNU": 4, - "Free": 2, - "propertize": 1, - "min": 1, - "pager": 2, - "interactive": 2, - ";": 333, - "with": 4, - "s": 5, - "have": 1, - "%": 1, - "Inc.": 1, - "can": 1, - "julia.el": 2, - "search": 1, - "..": 3, - "FITNESS": 1, - "but": 2, - "]": 3, - "and/or": 1, - "starting": 1, - "R": 2, - "optional": 3, - "use": 1, - "variable": 3, - "comments": 1, - "be": 2, - "goto": 2, - "run": 2, - "<": 1, - "Spinu": 2, - "General": 3, - "let*": 2, - "t": 6, - "file": 10, - "style": 2, - "add": 4, - "code": 1, - "final": 1, - "&": 3, - "this": 1, - "set": 3, - "group": 1, - "made": 1, - "Foundation": 2, - "defvar": 5, - "busy": 1, - "S": 2, - "funname": 5, - "settings": 1, - "Fifth": 1, - "load": 1, - "temp": 2, - "version": 2, - "software": 1, - "transpose": 1, - "on": 2, - "defun": 5, - "jl": 2, - "line": 5, - "write": 2, - "table": 9, - "arg": 1, - "dialect": 1, - "emacs": 1, - "Created": 1, - "comment": 6, - "case": 1, - "topics": 1, - "that": 2, - "julia": 39, - "sexp": 1, - "_": 1, - "completion": 4, - "version.": 1, - "read": 1, - "*NOT*": 1, - "null": 1, - "as": 1, - "along": 1, - "regexp": 6, - "from": 3, - "width": 1, - "customize": 5, - "WARRANTY": 1, - "Boston": 1, - "mode.el": 1, - "hope": 1, - "in": 3, - "help": 3, - "(": 156, - "egrep": 1, - "first": 1, - "let": 3, - "unquote": 1, - "regex": 5, - "setq": 2, - "name": 8, - "USA.": 1, - "Commentary": 1, - "inferior": 13, - "args": 10, - "buffer": 3, - "either": 1, - "redistribute": 1, - "more": 1, - "string": 8, - "customise": 1, - "under": 1, - "at": 5, - "visibly": 1 - }, - "Slash": { - "ARGV.first": 1, - "Sequence.new": 1, - "current_value=": 1, - "0": 3, - "Inc": 1, - "ast": 1, - "seq": 4, - "new": 2, - "-": 1, - "[": 1, - "str": 2, - "Next": 1, - "Env": 1, - "env": 16, - "memory": 3, - "unexpected": 2, - "length": 1, - "_parse_char": 2, - "last": 1, - "value": 1, - "AST": 4, - "ptr": 9, - "while": 1, - "@stack.pop": 1, - "of": 1, - "if": 1, - "chars": 2, - "current_value": 5, - "Sequence": 2, - "class": 11, - "in": 2, - "]": 1, - "File.read": 1, - "split": 1, - ".parse": 1, - "switch": 1, - "<": 1, - ")": 7, - "Parser.new": 1, - "<%>": 1, - "nodes": 6, - "Loop.new": 1, - "ptr=": 1, - "1": 1, - "}": 3, - "char": 5, - "Input": 1, - "Loop": 1, - "Dec": 1, - "init": 4, - ".": 1, - "def": 18, - "node": 2, - "_add": 1, - "for": 2, - "Output": 1, - "stack": 3, - "parse": 1, - "Env.new": 1, - "input": 1, - "print": 1, - "+": 1, - "SyntaxError": 1, - "throw": 1, - "ast.eval": 1, - "end": 1, - "Prev": 1, - "Parser": 1, - "src": 2, - "eval": 10, + "Pascal": { + "program": 1, + "gmail": 1, ";": 6, - "(": 6 - }, - "SCSS": { - "darken": 1, - "navigation": 1, - ".content": 1, - "/": 2, - "padding": 1, - "}": 2, - ")": 1, - "%": 1, - "(": 1, + "uses": 1, + "Forms": 1, + "Unit2": 1, + "in": 1, "{": 2, - "-": 3, - ";": 7, - "#3bbfce": 1, - "blue": 4, - "px": 1, - "color": 3, - ".border": 1, - "border": 2, - "margin": 4 + "Form2": 2, + "}": 2, + "R": 1, + "*.res": 1, + "begin": 1, + "Application.Initialize": 1, + "Application.MainFormOnTaskbar": 1, + "True": 1, + "Application.CreateForm": 1, + "(": 1, + "TForm2": 1, + ")": 1, + "Application.Run": 1, + "end.": 1 + }, + "Perl": { + "package": 14, + "App": 131, + "Ack": 136, + ";": 1185, + "use": 76, + "warnings": 16, + "strict": 16, + "File": 54, + "Next": 27, + "Plugin": 2, + "Basic": 10, + "head1": 31, + "NAME": 5, + "-": 860, + "A": 2, + "container": 1, + "for": 78, + "functions": 2, + "the": 131, + "ack": 38, + "program": 6, + "VERSION": 15, + "Version": 1, + "cut": 27, + "our": 34, + "COPYRIGHT": 6, + "BEGIN": 7, + "{": 1121, + "}": 1134, + "fh": 28, + "*STDOUT": 6, + "%": 78, + "types": 26, + "type_wanted": 20, + "mappings": 29, + "ignore_dirs": 12, + "input_from_pipe": 8, + "output_to_pipe": 12, + "dir_sep_chars": 10, + "is_cygwin": 6, + "is_windows": 12, + "Spec": 13, + "(": 919, + ")": 917, + "Glob": 4, + "Getopt": 6, + "Long": 6, + "_MTN": 2, + "blib": 2, + "CVS": 5, + "RCS": 2, + "SCCS": 2, + "_darcs": 2, + "_sgbak": 2, + "_build": 2, + "actionscript": 2, + "[": 159, + "qw": 35, + "as": 33, + "mxml": 2, + "]": 155, + "ada": 4, + "adb": 2, + "ads": 2, + "asm": 4, + "s": 34, + "batch": 2, + "bat": 2, + "cmd": 2, + "binary": 3, + "q": 5, + "Binary": 2, + "files": 41, + "defined": 54, + "by": 11, + "Perl": 6, + "T": 2, + "op": 2, + "default": 16, + "off": 4, + "tt": 4, + "tt2": 2, + "ttml": 2, + "vb": 4, + "bas": 2, + "cls": 2, + "frm": 2, + "ctl": 2, + "resx": 2, + "verilog": 2, + "v": 19, + "vh": 2, + "sv": 2, + "vhdl": 4, + "vhd": 2, + "vim": 4, + "yaml": 4, + "yml": 2, + "xml": 6, + "dtd": 2, + "xsl": 2, + "xslt": 2, + "ent": 2, + "while": 31, + "my": 401, + "type": 69, + "exts": 6, + "each": 14, + "if": 272, + "ref": 33, + "ext": 14, + "@": 38, + "push": 30, + "_": 101, + "mk": 2, + "mak": 2, + "not": 53, + "t": 18, + "p": 9, + "STDIN": 2, + "O": 4, + "eq": 31, + "/MSWin32/": 2, + "quotemeta": 5, + "catfile": 4, + "SYNOPSIS": 5, + "If": 14, + "you": 33, + "want": 5, + "to": 86, + "know": 4, + "about": 3, + "F": 24, + "": 13, + "see": 4, + "file": 40, + "itself.": 2, + "No": 4, + "user": 4, + "serviceable": 1, + "parts": 1, + "inside.": 1, + "is": 62, + "all": 22, + "that": 27, + "should": 6, + "this.": 1, + "FUNCTIONS": 1, + "head2": 32, + "read_ackrc": 4, + "Reads": 1, + "contents": 2, + "of": 55, + ".ackrc": 1, + "and": 76, + "returns": 4, + "arguments.": 1, + "sub": 225, + "@files": 12, + "ENV": 40, + "ACKRC": 2, + "@dirs": 4, + "HOME": 4, + "USERPROFILE": 2, + "dir": 27, + "grep": 17, + "bsd_glob": 4, + "GLOB_TILDE": 2, + "filename": 68, + "&&": 83, + "e": 20, + "open": 7, + "or": 47, + "die": 38, + "@lines": 21, + "/./": 2, + "/": 69, + "s*#/": 2, + "<$fh>": 4, + "chomp": 3, + "close": 19, + "s/": 22, + "+": 120, + "//": 9, + "return": 157, + "get_command_line_options": 4, + "Gets": 3, + "command": 13, + "line": 20, + "arguments": 2, + "does": 10, + "specific": 1, + "tweaking.": 1, + "opt": 291, + "pager": 19, + "ACK_PAGER_COLOR": 7, + "||": 49, + "ACK_PAGER": 5, + "getopt_specs": 6, + "m": 17, + "after_context": 16, + "before_context": 18, + "shift": 165, + "val": 26, + "break": 14, + "c": 5, + "count": 23, + "color": 38, + "ACK_COLOR_MATCH": 5, + "ACK_COLOR_FILENAME": 5, + "ACK_COLOR_LINENO": 4, + "column": 4, + "#": 99, + "ignore": 7, + "this": 18, + "option": 7, + "it": 25, + "handled": 2, + "beforehand": 2, + "f": 25, + "flush": 8, + "follow": 7, + "G": 11, + "heading": 18, + "h": 6, + "H": 6, + "i": 26, + "invert_file_match": 8, + "lines": 19, + "l": 17, + "regex": 28, + "n": 19, + "o": 17, + "output": 36, + "undef": 17, + "passthru": 9, + "print0": 7, + "Q": 7, + "show_types": 4, + "smart_case": 3, + "sort_files": 11, + "u": 10, + "w": 4, + "remove_dir_sep": 7, + "delete": 10, + "print_version_statement": 2, + "exit": 16, + "show_help": 3, + "@_": 41, + "show_help_types": 2, + "require": 12, + "Pod": 4, + "Usage": 4, + "pod2usage": 2, + "verbose": 2, + "exitval": 2, + "dummy": 2, + "wanted": 4, + "no//": 2, + "must": 5, + "be": 30, + "later": 2, + "exists": 19, + "else": 53, + "qq": 18, + "Unknown": 2, + "unshift": 4, + "@ARGV": 12, + "split": 13, + "ACK_OPTIONS": 5, + "def_types_from_ARGV": 5, + "filetypes_supported": 5, + "parser": 12, + "Parser": 4, + "new": 55, + "configure": 4, + "getoptions": 4, + "to_screen": 10, + "defaults": 16, + "eval": 8, + "Win32": 9, + "Console": 2, + "ANSI": 3, + "key": 20, + "value": 12, + "<": 15, + "join": 5, + "map": 10, + "@ret": 10, + "from": 19, + "warn": 22, + "..": 7, + "uniq": 4, + "@uniq": 2, + "sort": 8, + "a": 81, + "<=>": 2, + "b": 6, + "keys": 15, + "numerical": 2, + "occurs": 2, + "only": 11, + "once": 4, + "Go": 1, + "through": 6, + "look": 2, + "I": 67, + "<--type-set>": 1, + "foo=": 1, + "bar": 3, + "<--type-add>": 1, + "xml=": 1, + ".": 121, + "Remove": 1, + "them": 5, + "add": 8, + "supported": 1, + "filetypes": 8, + "i.e.": 2, + "into": 6, + "etc.": 1, + "@typedef": 8, + "td": 6, + "set": 11, + "Builtin": 4, + "cannot": 4, + "changed.": 4, + "ne": 9, + "delete_type": 5, + "Type": 2, + "exist": 4, + "creating": 2, + "with": 26, + "...": 2, + "unless": 39, + "@exts": 8, + ".//": 2, + "Cannot": 4, + "append": 2, + "Removes": 1, + "internal": 1, + "structures": 1, + "containing": 5, + "information": 1, + "type_wanted.": 1, + "Internal": 2, + "error": 4, + "builtin": 2, + "ignoredir_filter": 5, + "Standard": 1, + "filter": 12, + "pass": 1, + "L": 18, + "": 1, + "descend_filter.": 1, + "It": 2, + "true": 3, + "directory": 8, + "any": 3, + "ones": 1, + "we": 7, + "ignore.": 1, + "path": 28, + "This": 24, + "removes": 1, + "trailing": 1, + "separator": 4, + "there": 6, + "one": 9, + "its": 2, + "argument": 1, + "Returns": 10, + "list": 10, + "<$filename>": 1, + "could": 2, + "be.": 1, + "For": 5, + "example": 5, + "": 1, + "The": 20, + "filetype": 1, + "will": 7, + "C": 48, + "": 1, + "can": 26, + "skipped": 2, + "something": 2, + "avoid": 1, + "searching": 6, + "even": 4, + "under": 4, + "a.": 1, + "constant": 2, + "TEXT": 16, + "basename": 9, + ".*": 2, + "is_searchable": 8, + "lc_basename": 8, + "lc": 5, + "r": 14, + "B": 75, + "header": 17, + "SHEBANG#!#!": 2, + "ruby": 3, + "|": 28, + "lua": 2, + "erl": 2, + "hp": 2, + "ython": 2, + "d": 9, + "d.": 2, + "*": 8, + "b/": 4, + "ba": 2, + "k": 6, + "z": 2, + "sh": 2, + "/i": 2, + "search": 11, + "false": 1, + "regular": 3, + "expression": 9, + "found.": 4, + "www": 2, + "U": 2, + "y": 8, + "tr/": 2, + "x": 7, + "w/": 3, + "nOo_/": 2, + "_thpppt": 3, + "_get_thpppt": 3, + "print": 35, + "_bar": 3, + "<<": 6, + "&": 22, + "*I": 2, + "g": 7, + "#.": 6, + ".#": 4, + "I#": 2, + "#I": 6, + "#7": 4, + "results.": 2, + "on": 24, + "when": 17, + "used": 11, + "interactively": 6, + "no": 21, + "Print": 6, + "between": 3, + "results": 8, + "different": 2, + "files.": 6, + "group": 2, + "Same": 8, + "nogroup": 2, + "noheading": 2, + "nobreak": 2, + "Highlight": 2, + "matching": 15, + "text": 6, + "redirected": 2, + "Windows": 4, + "colour": 2, + "COLOR": 6, + "match": 21, + "lineno": 2, + "Set": 3, + "filenames": 7, + "matches": 7, + "numbers.": 2, + "Flush": 2, + "immediately": 2, + "non": 2, + "goes": 2, + "pipe": 4, + "finding": 2, + "Only": 7, + "found": 9, + "without": 3, + "searching.": 2, + "PATTERN": 8, + "specified.": 4, + "REGEX": 2, + "but": 4, + "REGEX.": 2, + "Sort": 2, + "lexically.": 3, + "invert": 2, + "Print/search": 2, + "handle": 2, + "do": 11, + "g/": 2, + "G.": 2, + "show": 3, + "Show": 2, + "which": 6, + "has.": 2, + "inclusion/exclusion": 2, + "All": 4, + "searched": 5, + "Ignores": 2, + ".svn": 3, + "other": 5, + "ignored": 6, + "directories": 9, + "unrestricted": 2, + "name": 44, + "Add/Remove": 2, + "dirs": 2, + "R": 2, + "recurse": 2, + "Recurse": 3, + "subdirectories": 2, + "END_OF_HELP": 2, + "VMS": 2, + "vd": 2, + "Term": 6, + "ANSIColor": 8, + "black": 3, + "on_yellow": 3, + "bold": 5, + "green": 3, + "yellow": 3, + "printing": 2, + "qr/": 13, + "last_output_line": 6, + "any_output": 10, + "keep_context": 8, + "@before": 16, + "before_starts_at_line": 10, + "after": 18, + "number": 3, + "still": 4, + "res": 59, + "next_text": 8, + "has_lines": 4, + "scalar": 2, + "m/": 4, + "regex/": 9, + "next": 9, + "print_match_or_context": 13, + "elsif": 10, + "last": 17, + "max": 12, + "nmatches": 61, + "show_filename": 35, + "context_overall_output_count": 6, + "print_blank_line": 2, + "is_binary": 4, + "search_resource": 7, + "is_match": 7, + "starting_line_no": 1, + "match_start": 5, + "match_end": 3, + "Prints": 4, + "out": 2, + "context": 1, + "around": 5, + "match.": 3, + "opts": 2, + "array": 7, + "line_no": 12, + "show_column": 4, + "display_filename": 8, + "colored": 6, + "print_first_filename": 2, + "sep": 8, + "output_func": 8, + "print_separator": 2, + "print_filename": 2, + "display_line_no": 4, + "print_line_no": 2, + "regex/go": 2, + "regex/Term": 2, + "substr": 2, + "/eg": 2, + "z/": 2, + "K/": 2, + "z//": 2, + "print_column_no": 2, + "scope": 4, + "TOTAL_COUNT_SCOPE": 2, + "total_count": 10, + "get_total_count": 4, + "reset_total_count": 4, + "search_and_list": 8, + "Optimized": 1, + "version": 2, + "lines.": 3, + "ors": 11, + "record": 3, + "show_total": 6, + "print_count": 4, + "print_count0": 2, + "filetypes_supported_set": 9, + "True/False": 1, + "are": 24, + "print_files": 4, + "iter": 23, + "returned": 2, + "iterator": 3, + "<$regex>": 1, + "<$one>": 1, + "stop": 1, + "first.": 1, + "<$ors>": 1, + "<\"\\n\">": 1, + "defines": 1, + "what": 14, + "filename.": 1, + "print_files_with_matches": 4, + "where": 3, + "was": 2, + "repo": 18, + "Repository": 11, + "next_resource": 6, + "print_matches": 4, + "tarballs_work": 4, + ".tar": 2, + ".gz": 2, + "Tar": 4, + "XXX": 4, + "Error": 2, + "checking": 2, + "needs_line_scan": 14, + "reset": 5, + "filetype_setup": 4, + "Minor": 1, + "housekeeping": 1, + "before": 1, + "go": 1, + "expand_filenames": 7, + "reference": 8, + "expanded": 3, + "globs": 1, + "EXPAND_FILENAMES_SCOPE": 4, + "argv": 12, + "attr": 6, + "foreach": 4, + "pattern": 10, + "@results": 14, + "didn": 2, + "ve": 2, + "tried": 2, + "load": 2, + "GetAttributes": 2, + "end": 9, + "attributes": 4, + "got": 2, + "get_starting_points": 4, + "starting": 2, + "@what": 14, + "reslash": 4, + "Assume": 2, + "current": 5, + "start_point": 4, + "_match": 8, + "target": 6, + "invert_flag": 4, + "get_iterator": 4, + "Return": 2, + "starting_point": 10, + "g_regex": 4, + "file_filter": 12, + "g_regex/": 6, + "Maybe": 2, + "is_interesting": 4, + "descend_filter": 11, + "error_handler": 5, + "msg": 4, + "follow_symlinks": 6, + "set_up_pager": 3, + "Unable": 2, + "going": 1, + "pipe.": 1, + "exit_from_ack": 5, + "Exit": 1, + "application": 10, + "correct": 1, + "code.": 2, + "otherwise": 2, + "handed": 1, + "in": 29, + "argument.": 1, + "rc": 11, + "LICENSE": 3, + "Copyright": 2, + "Andy": 2, + "Lester.": 2, + "free": 3, + "software": 3, + "redistribute": 3, + "and/or": 3, + "modify": 3, + "terms": 3, + "Artistic": 2, + "License": 2, + "v2.0.": 2, + "End": 3, + "SHEBANG#!#! perl": 4, + "examples/benchmarks/fib.pl": 1, + "Fibonacci": 2, + "Benchmark": 1, + "DESCRIPTION": 4, + "Calculates": 1, + "Number": 1, + "": 1, + "unspecified": 1, + "fib": 4, + "N": 2, + "SEE": 3, + "ALSO": 3, + "": 1, + "SHEBANG#!perl": 5, + "MAIN": 1, + "main": 3, + "env_is_usable": 3, + "th": 1, + "pt": 1, + "env": 76, + "@keys": 2, + "ACK_/": 1, + "@ENV": 1, + "load_colors": 1, + "ACK_SWITCHES": 1, + "Unbuffer": 1, + "mode": 1, + "build_regex": 3, + "nargs": 2, + "Resource": 5, + "file_matching": 2, + "check_regex": 2, + "like": 12, + "finder": 1, + "options": 7, + "FILE...": 1, + "DIRECTORY...": 1, + "designed": 1, + "replacement": 1, + "uses": 2, + "": 5, + "searches": 1, + "named": 3, + "input": 9, + "FILEs": 1, + "standard": 1, + "given": 10, + "PATTERN.": 1, + "By": 2, + "prints": 2, + "also": 7, + "would": 3, + "actually": 1, + "let": 1, + "take": 5, + "advantage": 1, + ".wango": 1, + "won": 1, + "throw": 1, + "away": 1, + "because": 3, + "times": 2, + "symlinks": 1, + "than": 5, + "whatever": 1, + "were": 1, + "specified": 3, + "line.": 4, + "default.": 2, + "item": 42, + "": 11, + "paths": 3, + "included": 1, + "search.": 1, + "entire": 2, + "matched": 1, + "against": 1, + "shell": 4, + "glob.": 1, + "<-i>": 5, + "<-w>": 2, + "<-v>": 3, + "<-Q>": 4, + "apply": 2, + "relative": 1, + "convenience": 1, + "shortcut": 2, + "<-f>": 6, + "<--group>": 2, + "<--nogroup>": 2, + "groups": 1, + "with.": 1, + "interactively.": 1, + "result": 1, + "per": 1, + "grep.": 2, + "redirected.": 1, + "<-H>": 1, + "<--with-filename>": 1, + "<-h>": 1, + "<--no-filename>": 1, + "Suppress": 1, + "prefixing": 1, + "multiple": 5, + "searched.": 1, + "<--help>": 1, + "short": 1, + "help": 2, + "statement.": 1, + "<--ignore-case>": 1, + "Ignore": 3, + "case": 3, + "strings.": 1, + "applies": 3, + "regexes": 3, + "<-g>": 5, + "<-G>": 3, + "options.": 4, + "": 2, + "etc": 2, + "May": 2, + "directories.": 2, + "mason": 1, + "users": 4, + "may": 3, + "wish": 1, + "include": 1, + "<--ignore-dir=data>": 1, + "<--noignore-dir>": 1, + "allows": 2, + "normally": 1, + "perhaps": 1, + "research": 1, + "<.svn/props>": 1, + "always": 5, + "simple": 2, + "name.": 1, + "Nested": 1, + "": 1, + "NOT": 1, + "supported.": 1, + "You": 3, + "need": 3, + "specify": 1, + "<--ignore-dir=foo>": 1, + "then": 3, + "foo": 6, + "taken": 1, + "account": 1, + "explicitly": 1, + "": 2, + "file.": 2, + "Multiple": 1, + "<--line>": 1, + "comma": 1, + "separated": 2, + "<--line=3,5,7>": 1, + "<--line=4-7>": 1, + "works.": 1, + "ascending": 1, + "order": 2, + "matter": 1, + "<-l>": 2, + "<--files-with-matches>": 1, + "instead": 4, + "text.": 1, + "<-L>": 1, + "<--files-without-matches>": 1, + "": 2, + "equivalent": 2, + "specifying": 1, + "Specify": 1, + "explicitly.": 1, + "helpful": 2, + "don": 2, + "": 1, + "via": 1, + "": 4, + "": 4, + "environment": 2, + "variables.": 1, + "Using": 3, + "suppress": 3, + "grouping": 3, + "coloring": 3, + "piping": 3, + "does.": 2, + "<--passthru>": 1, + "whether": 1, + "they": 1, + "expression.": 1, + "Highlighting": 1, + "work": 1, + "though": 1, + "so": 3, + "highlight": 1, + "seeing": 1, + "tail": 1, + "/access.log": 1, + "<--print0>": 1, + "works": 1, + "conjunction": 1, + "null": 1, + "byte": 1, + "usual": 1, + "newline.": 1, + "dealing": 1, + "contain": 2, + "whitespace": 1, + "e.g.": 1, + "html": 1, + "xargs": 2, + "rm": 1, + "<--literal>": 1, + "Quote": 1, + "metacharacters": 2, + "treated": 1, + "literal.": 1, + "<-r>": 1, + "<-R>": 1, + "<--recurse>": 1, + "just": 2, + "here": 2, + "compatibility": 2, + "turning": 1, + "<--no-recurse>": 1, + "off.": 1, + "<--smart-case>": 1, + "<--no-smart-case>": 1, + "strings": 1, + "contains": 1, + "uppercase": 1, + "characters.": 1, + "similar": 1, + "": 1, + "vim.": 1, + "overrides": 2, + "option.": 1, + "<--sort-files>": 1, + "Sorts": 1, + "Use": 6, + "your": 13, + "listings": 1, + "deterministic": 1, + "runs": 1, + "<--show-types>": 1, + "Outputs": 1, + "associates": 1, + "Works": 1, + "<--thpppt>": 1, + "Display": 1, + "important": 1, + "Bill": 1, + "Cat": 1, + "logo.": 1, + "Note": 4, + "exact": 1, + "spelling": 1, + "<--thpppppt>": 1, + "important.": 1, + "make": 3, + "perl": 8, + "php": 2, + "python": 1, + "looks": 1, + "location.": 1, + "variable": 1, + "specifies": 1, + "placed": 1, + "front": 1, + "explicit": 1, + "Specifies": 4, + "recognized": 1, + "clear": 2, + "dark": 1, + "underline": 1, + "underscore": 2, + "blink": 1, + "reverse": 1, + "concealed": 1, + "red": 1, + "blue": 1, + "magenta": 1, + "on_black": 1, + "on_red": 1, + "on_green": 1, + "on_blue": 1, + "on_magenta": 1, + "on_cyan": 1, + "on_white.": 1, + "Case": 1, + "significant.": 1, + "Underline": 1, + "reset.": 1, + "alone": 1, + "sets": 4, + "foreground": 1, + "on_color": 1, + "background": 1, + "color.": 2, + "<--color-filename>": 1, + "printed": 1, + "<--color>": 1, + "mode.": 1, + "<--color-lineno>": 1, + "See": 1, + "": 1, + "specifications.": 1, + "such": 5, + "": 1, + "": 1, + "": 1, + "send": 1, + "output.": 1, + "except": 1, + "assume": 1, + "support": 2, + "both": 1, + "understands": 1, + "sequences.": 1, + "never": 1, + "back": 3, + "ACK": 2, + "OTHER": 1, + "TOOLS": 1, + "Vim": 3, + "integration": 3, + "integrates": 1, + "easily": 2, + "editor.": 1, + "<.vimrc>": 1, + "grepprg": 1, + "That": 3, + "examples": 1, + "<-a>": 1, + "flags.": 1, + "Now": 1, + "step": 1, + "Dumper": 1, + "perllib": 1, + "Emacs": 1, + "Phil": 1, + "Jackson": 1, + "put": 1, + "together": 1, + "an": 11, + "": 1, + "extension": 1, + "": 1, + "TextMate": 2, + "Pedro": 1, + "Melo": 1, + "who": 1, + "writes": 1, + "Shell": 2, + "Code": 1, + "greater": 1, + "normal": 1, + "code": 7, + "<$?=256>": 1, + "": 1, + "backticks.": 1, + "errors": 1, + "used.": 1, + "at": 3, + "least": 1, + "returned.": 1, + "DEBUGGING": 1, + "PROBLEMS": 1, + "gives": 2, + "re": 3, + "expecting": 1, + "forgotten": 1, + "<--noenv>": 1, + "<.ackrc>": 1, + "remember.": 1, + "Put": 1, + "definitions": 1, + "it.": 1, + "smart": 1, + "too.": 1, + "there.": 1, + "working": 1, + "big": 1, + "codesets": 1, + "more": 2, + "create": 2, + "tree": 2, + "ideal": 1, + "sending": 1, + "": 1, + "prefer": 1, + "doubt": 1, + "day": 1, + "find": 1, + "trouble": 1, + "spots": 1, + "website": 1, + "visitor.": 1, + "had": 1, + "problem": 1, + "loading": 1, + "": 1, + "took": 1, + "access": 2, + "log": 3, + "scanned": 1, + "twice.": 1, + "aa.bb.cc.dd": 1, + "/path/to/access.log": 1, + "B5": 1, + "troublesome.gif": 1, + "first": 1, + "finds": 2, + "Apache": 2, + "IP.": 1, + "second": 1, + "troublesome": 1, + "GIF": 1, + "shows": 1, + "previous": 1, + "five": 1, + "case.": 1, + "Share": 1, + "knowledge": 1, + "Join": 1, + "mailing": 1, + "list.": 1, + "Send": 1, + "me": 1, + "tips": 1, + "here.": 1, + "FAQ": 1, + "Why": 2, + "isn": 1, + "doesn": 8, + "behavior": 3, + "driven": 1, + "filetype.": 1, + "": 1, + "kind": 1, + "ignores": 1, + "switch": 1, + "you.": 1, + "source": 2, + "compiled": 1, + "object": 6, + "control": 1, + "metadata": 1, + "wastes": 1, + "lot": 1, + "time": 3, + "those": 2, + "well": 2, + "returning": 1, + "things": 1, + "great": 1, + "did": 1, + "replace": 3, + "read": 6, + "only.": 1, + "has": 2, + "perfectly": 1, + "good": 2, + "way": 2, + "using": 2, + "<-p>": 1, + "<-n>": 1, + "switches.": 1, + "certainly": 2, + "select": 1, + "update.": 1, + "change": 1, + "PHP": 1, + "Unix": 1, + "Can": 1, + "recognize": 1, + "<.xyz>": 1, + "already": 2, + "program/package": 1, + "called": 3, + "ack.": 2, + "Yes": 1, + "know.": 1, + "nothing": 1, + "suggest": 1, + "symlink": 1, + "points": 1, + "": 1, + "crucial": 1, + "benefits": 1, + "having": 1, + "Regan": 1, + "Slaven": 1, + "ReziE": 1, + "<0x107>": 1, + "Mark": 1, + "Stosberg": 1, + "David": 1, + "Alan": 1, + "Pisoni": 1, + "Adriano": 1, + "Ferreira": 1, + "James": 1, + "Keenan": 1, + "Leland": 1, + "Johnson": 1, + "Ricardo": 1, + "Signes": 1, + "Pete": 1, + "Krawczyk.": 1, + "files_defaults": 3, + "skip_dirs": 3, + "CORE": 3, + "curdir": 1, + "updir": 1, + "__PACKAGE__": 1, + "parms": 15, + "@queue": 8, + "_setup": 2, + "fullpath": 12, + "splice": 2, + "local": 5, + "wantarray": 3, + "_candidate_files": 2, + "sort_standard": 2, + "cmp": 2, + "sort_reverse": 1, + "@parts": 3, + "passed_parms": 6, + "copy": 4, + "parm": 1, + "hash": 11, + "badkey": 1, + "caller": 2, + "start": 6, + "dh": 4, + "opendir": 1, + "@newfiles": 5, + "sort_sub": 4, + "readdir": 1, + "has_stat": 3, + "catdir": 3, + "closedir": 1, + "": 1, + "these": 1, + "updated": 1, + "update": 1, + "message": 1, + "bak": 1, + "core": 1, + "swp": 1, + "min": 3, + "js": 1, + "1": 1, + "str": 12, + "regex_is_lc": 2, + "S": 1, + ".*//": 1, + "_my_program": 3, + "Basename": 2, + "FAIL": 12, + "Carp": 11, + "confess": 2, + "@ISA": 2, + "class": 8, + "self": 141, + "bless": 7, + "could_be_binary": 4, + "opened": 1, + "id": 6, + "*STDIN": 2, + "size": 5, + "_000": 1, + "buffer": 9, + "sysread": 1, + "regex/m": 1, + "seek": 4, + "readline": 1, + "nexted": 3, + "CGI": 5, + "Fast": 3, + "XML": 2, + "Hash": 11, + "XS": 2, + "FindBin": 1, + "Bin": 3, + "#use": 1, + "lib": 2, + "_stop": 4, + "request": 11, + "SIG": 3, + "nginx": 2, + "external": 2, + "fcgi": 2, + "Ext_Request": 1, + "FCGI": 1, + "Request": 11, + "*STDERR": 1, + "int": 2, + "ARGV": 2, + "conv": 2, + "use_attr": 1, + "indent": 1, + "xml_decl": 1, + "tmpl_path": 2, + "tmpl": 5, + "data": 3, + "nick": 1, + "parent": 5, + "third_party": 1, + "artist_name": 2, + "venue": 2, + "event": 2, + "date": 2, + "zA": 1, + "Z0": 1, + "Content": 2, + "application/xml": 1, + "charset": 2, + "utf": 2, + "hash2xml": 1, + "text/html": 1, + "nError": 1, + "M": 1, + "system": 1, + "Foo": 11, + "Bar": 1, + "@array": 1, + "Plack": 25, + "_001": 1, + "HTTP": 16, + "Headers": 8, + "MultiValue": 9, + "Body": 2, + "Upload": 2, + "TempBuffer": 2, + "URI": 11, + "Escape": 6, + "_deprecated": 8, + "alt": 1, + "method": 7, + "carp": 2, + "croak": 3, + "required": 2, + "address": 2, + "REMOTE_ADDR": 1, + "remote_host": 2, + "REMOTE_HOST": 1, + "protocol": 1, + "SERVER_PROTOCOL": 1, + "REQUEST_METHOD": 1, + "port": 1, + "SERVER_PORT": 2, + "REMOTE_USER": 1, + "request_uri": 1, + "REQUEST_URI": 2, + "path_info": 4, + "PATH_INFO": 3, + "script_name": 1, + "SCRIPT_NAME": 2, + "scheme": 3, + "secure": 2, + "body": 30, + "content_length": 4, + "CONTENT_LENGTH": 3, + "content_type": 5, + "CONTENT_TYPE": 2, + "session": 1, + "session_options": 1, + "logger": 1, + "cookies": 9, + "HTTP_COOKIE": 3, + "@pairs": 2, + "pair": 4, + "uri_unescape": 1, + "query_parameters": 3, + "uri": 11, + "query_form": 2, + "content": 8, + "_parse_request_body": 4, + "cl": 10, + "raw_body": 1, + "headers": 56, + "field": 2, + "HTTPS": 1, + "_//": 1, + "CONTENT": 1, + "COOKIE": 1, + "content_encoding": 5, + "referer": 3, + "user_agent": 3, + "body_parameters": 3, + "parameters": 8, + "query": 4, + "flatten": 3, + "uploads": 5, + "hostname": 1, + "url_scheme": 1, + "params": 1, + "query_params": 1, + "body_params": 1, + "cookie": 6, + "param": 8, + "get_all": 2, + "upload": 13, + "raw_uri": 1, + "base": 10, + "path_query": 1, + "_uri_base": 3, + "path_escape_class": 2, + "uri_escape": 3, + "QUERY_STRING": 3, + "canonical": 2, + "HTTP_HOST": 1, + "SERVER_NAME": 1, + "new_response": 4, + "Response": 16, + "ct": 3, + "cleanup": 1, + "spin": 2, + "chunk": 4, + "length": 1, + "rewind": 1, + "from_mixed": 2, + "@uploads": 3, + "@obj": 3, + "_make_upload": 2, + "__END__": 2, + "Portable": 2, + "PSGI": 6, + "app_or_middleware": 1, + "req": 28, + "finalize": 5, + "": 2, + "provides": 1, + "consistent": 1, + "API": 2, + "objects": 2, + "across": 1, + "web": 5, + "server": 1, + "environments.": 1, + "CAVEAT": 1, + "module": 2, + "intended": 1, + "middleware": 1, + "developers": 3, + "framework": 2, + "rather": 2, + "Writing": 1, + "directly": 1, + "possible": 1, + "recommended": 1, + "yet": 1, + "too": 1, + "low": 1, + "level.": 1, + "encouraged": 1, + "frameworks": 2, + "": 1, + "modules": 1, + "": 1, + "provide": 1, + "higher": 1, + "level": 1, + "top": 1, + "PSGI.": 1, + "METHODS": 2, + "Some": 1, + "methods": 3, + "earlier": 1, + "versions": 1, + "deprecated": 1, + "Take": 1, + "": 1, + "Unless": 1, + "noted": 1, + "": 1, + "passing": 1, + "values": 5, + "accessor": 1, + "debug": 1, + "set.": 1, + "": 2, + "request.": 1, + "uploads.": 2, + "": 2, + "": 1, + "objects.": 1, + "Shortcut": 6, + "content_encoding.": 1, + "content_length.": 1, + "content_type.": 1, + "header.": 2, + "referer.": 1, + "user_agent.": 1, + "GET": 1, + "POST": 1, + "CGI.pm": 2, + "compatible": 1, + "method.": 1, + "alternative": 1, + "accessing": 1, + "parameters.": 3, + "Unlike": 1, + "": 1, + "allow": 1, + "setting": 1, + "modifying": 1, + "@values": 1, + "@params": 1, + "convenient": 1, + "@fields": 1, + "Creates": 2, + "": 3, + "object.": 4, + "Handy": 1, + "remove": 2, + "dependency": 1, + "easy": 1, + "subclassing": 1, + "duck": 1, + "typing": 1, + "overriding": 1, + "generation": 1, + "middlewares.": 1, + "Parameters": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "store": 1, + "means": 2, + "plain": 2, + "": 1, + "scalars": 1, + "references": 1, + "ARRAY": 1, + "parse": 1, + "twice": 1, + "efficiency.": 1, + "DISPATCHING": 1, + "wants": 1, + "dispatch": 1, + "route": 1, + "actions": 1, + "based": 1, + "sure": 1, + "": 1, + "virtual": 1, + "regardless": 1, + "how": 1, + "mounted.": 1, + "hosted": 1, + "mod_perl": 1, + "scripts": 1, + "multiplexed": 1, + "tools": 1, + "": 1, + "idea": 1, + "subclass": 1, + "define": 1, + "uri_for": 2, + "args": 3, + "So": 1, + "say": 1, + "link": 1, + "signoff": 1, + "": 1, + "empty.": 1, + "older": 1, + "call": 1, + "instead.": 1, + "Cookie": 2, + "handling": 1, + "simplified": 1, + "string": 5, + "encoding": 2, + "decoding": 1, + "totally": 1, + "up": 1, + "framework.": 1, + "Also": 1, + "": 1, + "now": 1, + "": 1, + "Simple": 1, + "longer": 1, + "have": 2, + "write": 1, + "wacky": 1, + "simply": 1, + "AUTHORS": 1, + "Tatsuhiko": 2, + "Miyagawa": 2, + "Kazuhiro": 1, + "Osawa": 1, + "Tokuhiro": 2, + "Matsuno": 2, + "": 1, + "": 1, + "library": 1, + "same": 1, + "Util": 3, + "Accessor": 1, + "status": 17, + "Scalar": 2, + "location": 4, + "redirect": 1, + "url": 2, + "clone": 1, + "_finalize_cookies": 2, + "/chr": 1, + "/ge": 1, + "LWS": 1, + "single": 1, + "SP": 1, + "//g": 1, + "CR": 1, + "LF": 1, + "since": 1, + "char": 1, + "invalid": 1, + "header_field_names": 1, + "_body": 2, + "blessed": 1, + "overload": 1, + "Method": 1, + "_bake_cookie": 2, + "push_header": 1, + "@cookie": 7, + "domain": 3, + "_date": 2, + "expires": 7, + "httponly": 1, + "@MON": 1, + "Jan": 1, + "Feb": 1, + "Mar": 1, + "Apr": 1, + "Jun": 1, + "Jul": 1, + "Aug": 1, + "Sep": 1, + "Oct": 1, + "Nov": 1, + "Dec": 1, + "@WDAY": 1, + "Sun": 1, + "Mon": 1, + "Tue": 1, + "Wed": 1, + "Thu": 1, + "Fri": 1, + "Sat": 1, + "sec": 2, + "hour": 2, + "mday": 2, + "mon": 2, + "year": 3, + "wday": 2, + "gmtime": 1, + "sprintf": 1, + "WDAY": 1, + "MON": 1, + "response": 5, + "psgi_handler": 1, + "API.": 1, + "over": 1, + "Sets": 2, + "gets": 2, + "": 1, + "alias.": 2, + "response.": 1, + "Setter": 2, + "either": 2, + "headers.": 1, + "body_str": 1, + "io": 1, + "body.": 1, + "IO": 1, + "Handle": 1, + "": 1, + "X": 2, + "text/plain": 1, + "gzip": 1, + "normalize": 1, + "string.": 1, + "Users": 1, + "responsible": 1, + "properly": 1, + "": 1, + "names": 1, + "their": 1, + "corresponding": 1, + "": 2, + "everything": 1, + "": 1, + "": 2, + "": 1, + "": 1, + "": 1, + "integer": 1, + "epoch": 1, + "": 1, + "convert": 1, + "formats": 1, + "<+3M>": 1, + "reference.": 1, + "AUTHOR": 1 }, "PHP": { - "PHP_URL_HOST": 1, - "restart": 1, - "backed": 2, - "tables": 5, - "for": 8, - "CakeEventManager": 5, - "__backAssociation": 22, - "CookieComponent": 1, - "with": 5, - "SecurityComponent": 1, - "currentModel": 2, - "getInputStream": 1, - "request.": 1, - "findAlternatives": 3, - "escapeField": 6, - "Event": 6, - "saveMany": 3, - "class": 21, - "_mergeParent": 4, - "two": 6, - "title.str_repeat": 1, - "modParams": 2, - "getValue": 2, - "id": 82, - "defaults": 6, - "CakePHP": 6, - "ob_start": 1, - "of": 10, - "plugin": 31, - "ListCommand": 2, - "yii": 2, - "segments": 13, - "commandsXML": 3, - "inside": 1, - "path": 20, - "get_class_methods": 2, - "map": 1, - "withModel": 4, - "lowercase": 1, - "getFormNode": 1, - "PHP_URL_PATH": 1, - "Set": 9, - "9": 1, - "cacheAction": 1, - "long": 2, - "hasParameterOption": 7, - "based": 2, - "_scaffoldError": 1, - "changeHistory": 4, - "newJoins": 7, - "hasMethod": 2, - "toArray": 1, - "limit": 3, - "RequestHandlerComponent": 1, - "ComponentCollection": 2, - "clear": 2, - "redirection": 2, - "PrivateActionException": 1, - "POST": 1, - "Request": 3, - "updateCol": 6, - "extends": 3, - "offsetGet": 1, - "InputFormField": 2, - "bindModel": 1, - "addCommands": 1, - "setAttribute": 2, - "descriptorspec": 2, - "FALSE": 2, - "PHP_INT_MAX": 1, - "array_shift": 5, - "save": 9, - "array_filter": 2, - "dirname": 1, - "dateFields": 5, - "_saveMulti": 2, - "_prepareUpdateFields": 2, - "package": 2, - "_generateAssociation": 2, - "referer": 5, - "namespace": 28, - "names.": 1, - "calculate": 2, - "call_user_func": 2, - "followRedirect": 4, - "catchExceptions": 4, - "buildQuery": 2, - "beforeScaffold": 2, - "2": 2, - "header": 3, - "lst": 4, - "xpath": 2, - "keyPresentAndEmpty": 2, - "options": 85, - "read": 2, - "opensource": 2, - "updateFromResponse": 1, - "Remove": 1, - "basic": 1, - "joinModel": 8, - "FormFieldRegistry": 2, - "Acl": 1, - "action": 7, - "endQuote": 4, - "String": 5, - "Field": 9, - "commandXML": 3, - "pluginDot": 4, - "width": 7, - "path.": 1, - "cookieJar": 9, - "rendering": 1, - "inputStream": 2, - "delete": 9, - "controllers": 2, - "mapper": 2, - "appendChild": 10, - "_sourceConfigured": 1, - "boolean": 4, - "a": 11, - "notEmpty": 4, - "viewVars": 3, - "setValue": 1, - "conf": 2, - "2012": 4, - "cascade": 10, - "resource": 1, - "getDefaultHelperSet": 2, - "is_subclass_of": 3, - "return": 305, - "+": 12, - "Output": 5, - "findAlternativeNamespace": 2, - "responsible": 1, - "is_bool": 1, - "notice": 2, - "least": 1, - "record": 10, - "Provides": 1, - "FormField": 3, - "addChoice": 1, - "PhpProcess": 2, - "exists": 6, - "createTextNode": 1, - "takes": 1, - "set": 26, - "self": 1, - "allows": 1, - "conditions": 41, - "echo": 2, - "return2": 6, - "back": 2, - "RuntimeException": 2, - "exclusive": 2, - "prefixes": 4, - "dbMulti": 6, - "update": 2, - "User": 1, - "//book.cakephp.org/2.0/en/controllers.html": 1, - "stream_get_contents": 1, - "By": 1, - "oldLinks": 4, - "using": 2, - "addContent": 1, - "default": 9, - "OutputInterface": 6, - "proc_open": 1, - "unbindModel": 1, - "license": 6, - "generated": 1, - "findAlternativeCommands": 2, - "Behaviors": 6, - "pluginController": 9, - "Inc": 4, - "trim": 3, - "afterFilter": 1, - "send": 1, - "collection": 3, - "getAliases": 3, - "isKeySet": 1, - "displayField": 4, - "YII_DEBUG": 2, - "dynamic": 2, - "_associationKeys": 2, - "type": 62, - "code": 4, - "n": 12, - "currentUri": 7, - "reload": 1, - "since": 2, - "yii2": 1, - "getFirstArgument": 1, - "stdin": 1, - "match": 4, - "setDataSource": 2, - "key.": 1, - "pluginSplit": 12, - "primaryKey": 38, - "old": 2, - "status": 15, - "remove": 4, - "_whitelist": 4, - "beforeRedirect": 1, - "attach": 4, - "FileFormField": 3, - "findQueryType": 3, - "useDbConfig": 7, - "HelpCommand": 2, - "savedAssociatons": 3, - "line.str_repeat": 1, - "getPhpValues": 2, - "ClassRegistry": 9, - "func_get_args": 5, - "keyInfo": 4, - "response": 33, - "__backInnerAssociation": 1, - "abstract": 2, - "field": 88, - "commit": 2, - "writeln": 13, - "suggestions": 2, - "fcgi": 1, - "alias": 87, - "namespace.substr": 1, - "DBO": 2, - "ArgvInput": 2, - "current": 4, - "App": 20, - "ReflectionMethod": 2, - "doRequest": 2, - "setInteractive": 2, - "command": 41, - "index": 5, - "migrated": 1, - "parameters": 4, - "dispatchMethod": 1, - "@package": 2, - "www": 4, - "define": 2, - "state": 15, - "order": 4, - "MIT": 4, - "getEventManager": 13, - "item": 9, - "_setAliasData": 2, - "call_user_func_array": 3, - "submit": 2, - "{": 974, - "EmailComponent": 1, - "primaryAdded": 3, - "should": 1, - "or": 9, - "require": 3, - "ids": 8, - "isVirtualField": 3, - "get_parent_class": 1, - "function_exists": 4, - "has": 7, - "http_build_query": 3, - "implode": 8, - "getAssociated": 4, - "assoc": 75, - "base_url": 1, - "must": 2, - "getContent": 2, - "CakeEventListener": 4, - "appVars": 6, - "php_permission": 1, - "_responseClass": 1, - "SHEBANG#!php": 3, - "serves": 1, - "*": 25, - "getScript": 2, - "scaffold": 2, - "re": 1, - "autoExit": 4, - "Security": 1, - "create": 13, - "transactionBegun": 4, - "tablePrefix": 8, - "getHistory": 1, - "FormatterHelper": 2, - "getPhpFiles": 2, - "codes": 3, - "getCookieJar": 1, - "Application": 3, - "t": 26, - "http": 14, - "reset": 6, - "actions": 2, - "getNamespaces": 3, - "isStopped": 4, - "model": 34, - "invalidFields": 2, - "InputOption": 15, - "Input": 6, - "isDisabled": 2, - "Copyright": 5, - "properties": 4, - "cacheQueries": 1, - "2005": 4, - "whitelist": 14, - "queryString": 2, - "str_split": 1, - "Automatically": 1, - "underscore": 3, - "public": 202, - "__DIR__": 3, - "MissingTableException": 1, - "proc_close": 1, - "base": 8, - "getValues": 3, - "get_class_vars": 2, - "findNamespace": 4, - "Boolean": 4, - "Model": 5, - "ConsoleOutput": 2, - "views": 1, - "InputArgument": 3, - "more": 1, - "php_help": 1, - "invokeAction": 1, - "array_map": 2, - "components": 1, - "setCatchExceptions": 1, - "getAbbreviations": 4, - "m": 5, - "local": 2, - "nest": 1, - "fieldName": 6, - "validate": 9, - "setAutoExit": 1, - "allNamespaces": 3, - "pipes": 4, - "is_null": 1, - "fieldValue": 7, - "validationDomain": 1, - "trace": 12, - "raw": 2, - "str_repeat": 2, - "helpers": 1, - "getColumnTypes": 1, - "values": 53, - "In": 1, - "setAction": 1, - "catch": 3, - "postConditions": 1, - "doRun": 2, - "You": 2, - "__set": 1, - "TRUE": 1, - "com": 2, - "array_diff": 3, - "conventional": 1, - "beforeRender": 1, - "ChoiceFormField": 2, - "version": 8, - "is_array": 37, - "preg_split": 1, - "retain": 2, - "setServerParameters": 2, - "substr": 6, - "resetAssociations": 3, - "_insertID": 1, - "crawler": 7, - "bool": 5, - "beforeFilter": 1, - "assocName": 6, - "theme_info": 3, - "form": 7, - "ConsoleOutputInterface": 2, - "parse_str": 2, - "array_key_exists": 11, - "ob_end_clean": 1, - "STDIN": 3, - "number": 1, - "availability": 1, - "Utility": 6, - "sys_get_temp_dir": 2, - "deconstruct": 2, - "10": 1, - "new": 74, - "by": 2, - "E_USER_WARNING": 1, - "is_a": 1, - "mapping": 1, - "input": 20, - "methods": 5, - "useTable": 12, - "uses": 46, - "scope": 2, - "hasMany": 2, - "prefixed": 1, - "0": 4, - "target": 20, - "//book.cakephp.org/2.0/en/models.html": 1, - "adding": 1, - "and": 5, - "getServer": 1, - "LLC": 1, - "saveAssociated": 5, - "hasOne": 2, - "option": 5, - "is_string": 7, - "cakephp": 4, - "links": 4, - "relation": 7, - "belongsTo": 7, - "case": 31, - "aliases": 8, - "routing.": 1, - "Helper": 3, - "access": 1, - "ucfirst": 2, - "arg": 1, - "createElement": 6, - "instanceof": 8, - "levenshtein": 2, - "getCommandName": 2, - "BrowserKit": 1, - "sortCommands": 4, - "relational": 2, - "_": 1, - "parts": 4, - "getShortcut": 2, - "models": 6, - "startupProcess": 1, - "MissingModelException": 1, - "cond": 5, - "title": 3, - "part": 10, - "Software": 5, - "fInfo": 4, - "BehaviorCollection": 2, - "server": 20, - "event": 35, - ")": 2417, - "console": 3, - "_findNeighbors": 1, - "isUUID": 5, - "registry": 4, - "fkQuoted": 3, - "controller": 3, - "Symfony": 24, - "array_flip": 1, - "ksort": 2, - "php": 12, - "EXTR_OVERWRITE": 3, - "find": 17, - "that": 2, - "getAbbreviationSuggestions": 4, - "trigger_error": 1, - "global": 2, - "setCommand": 1, - "file": 3, - "contains": 1, - "breakOn": 4, - "Cake.Controller": 1, - "you": 1, - "getElementsByTagName": 1, - "getPrevious": 1, - "importNode": 3, - "uri": 23, - "After": 1, - "ReflectionException": 1, - "logic": 1, - "preg_match": 6, - "@link": 2, - "empty": 96, - "not": 2, - "_getScaffold": 2, - "cols": 7, - "parse_url": 3, - "//TODO": 1, - "getDataSource": 15, - "urls": 1, - "startQuote": 4, - "License": 4, - "getErrorOutput": 2, - "schema": 11, - "getObject": 1, - "loadModel": 3, - "all": 11, - "protected": 59, - "filterRequest": 2, - "invokeArgs": 1, - "_filterResults": 2, - "saved": 18, - "colType": 4, - "abbrev": 4, - "allValues": 1, - "joined": 5, - "Xml": 2, - "preg_replace": 4, - "getName": 14, - "_afterScaffoldSave": 1, - "fopen": 1, - "keepExisting": 3, - "validates": 60, - "__call": 1, - "getCode": 1, - "VALUE_NONE": 7, - "render": 3, - "eval": 1, - "callbacks": 4, - "DOMDocument": 2, - "drupal_get_path": 1, - "validateAssociated": 5, - "isPublic": 1, - "runningCommand": 5, - "space.": 1, - "getAbsoluteUri": 2, - "substr_count": 1, - "unset": 22, - "bootstrap": 1, - "Redistributions": 2, - "implements": 3, - "||": 52, - "_createLinks": 3, - "info": 5, - "name": 181, - "redirect": 6, - "objects": 5, - "db": 45, - "getLongVersion": 3, - "run": 4, - "e": 18, - "Router": 5, - "fields": 60, - "to": 6, - "use": 23, - "searchName": 13, - "pluginName": 1, - "connect": 1, - "events": 1, - "offsetUnset": 1, - "pause": 2, - "_schema": 11, - "request": 76, - "getHelperSet": 3, - "expression": 1, - "_normalizeXmlData": 3, - "property_exists": 3, - "cacheSources": 7, - "AclComponent": 1, - "doRequestInProcess": 2, - "database": 2, - "/": 1, - "parentMethods": 2, - "combine": 1, - "findMethods": 3, - "Project": 2, - "Form": 4, - "action.": 1, - "pos": 3, - "rollback": 2, - "paginate": 3, - "insulated": 7, - "line": 10, - "helpCommand": 3, - "setSource": 1, - "setApplication": 2, - "afterScaffoldSave": 2, - "merge": 12, - "array_unique": 4, - "get": 12, - "filter": 1, - "results": 22, - "numeric": 1, - "recursive": 9, - "y": 2, - "filters": 2, - "foreignKey": 11, - "__d": 1, - "possibly": 1, - "getDefaultInputDefinition": 2, - "op": 9, - "insulate": 1, - "PHP_EOL": 3, - "isUnique": 1, - "aspects": 1, - "ArrayAccess": 1, - "getColumnType": 4, - "__backContainableAssociation": 1, - "DialogHelper": 2, - "Components": 7, - "space": 5, - "_mergeControllerVars": 2, - "_mergeVars": 5, - "hasField": 7, - "DomCrawler": 5, - "query": 102, - "(": 2416, - "created": 8, - "ModelBehavior": 1, - "list": 29, - "getAttribute": 10, - "associationForeignKey": 5, - "newData": 5, - "getServerParameter": 1, - "required": 2, - "array_slice": 1, - "errors": 9, - "do": 2, - "unserialize": 1, - "lev": 6, - "isset": 101, - "xml": 5, - "data": 187, - "asXml": 2, - "className": 27, - "r": 1, - "useNewDate": 2, - "endpoint": 1, - "InvalidArgumentException": 9, - "_associations": 5, - "dispatch": 11, - "exit": 7, - "null": 164, - "example": 2, - "object": 14, - "Scaffold": 1, - "PaginatorComponent": 1, - "arrayOp": 2, "<": 11, - "getDescription": 3, - "disableCache": 2, - "try": 3, - "messages": 16, - "flash": 1, - "time": 3, - "str_replace": 3, - "Inflector": 12, - "this": 928, - "formatOutput": 1, - "creating": 1, - "newValues": 8, - "_stop": 1, - "functionality": 1, - "setServerParameter": 1, - "records": 6, - "namespacesXML": 3, - "Dispatcher": 1, - "parentClass": 3, - "yiisoft": 1, - "intval": 4, - "k": 7, - "array_search": 1, - "fieldSet": 3, - "tableName": 4, - "isSuccessful": 1, - "filename": 1, - "alternatives": 10, - "_id": 2, - "Client": 1, - "idField": 3, - "PHP_URL_SCHEME": 1, - "under": 2, - "an": 1, - "layoutPath": 1, - "ext": 1, - "associations": 9, - "currentObject": 6, - "5": 1, - "Command": 6, - "process": 10, - "doesn": 1, - "History": 2, - "link": 10, - "session_write_close": 1, - "Crawler": 2, - "validateErrors": 1, - "helperSet": 6, - "_findFirst": 1, - "Cake": 7, - "vendor": 2, - "listSources": 1, - "Foundation": 4, - "function": 205, - "_findCount": 1, - "cache": 2, - "can": 2, - "prefix": 2, - "isEnabled": 1, - "setHelperSet": 1, - "key": 64, - "Auth": 1, - "asDom": 2, - "offsetSet": 1, - "names": 3, - "business": 1, - "implementedEvents": 2, - "getHelp": 2, - "tableToModel": 4, - "Link": 3, - "array_keys": 7, - "Exception": 1, - "fieldOp": 11, - "getSynopsis": 1, - ".": 169, - "application": 2, - "table": 21, - "renderException": 3, - "message": 12, - "_beforeScaffold": 1, - "Session": 1, - "click": 1, - "HelperSet": 3, - "are": 5, - "/posts/index": 1, - "x": 4, - "setValues": 2, - "found": 4, - "pluginVars": 3, - "sql": 1, - "method_exists": 5, - "params": 34, - "privateAction": 4, - "]": 672, - "php_eval": 1, - "sprintf": 27, - "createCrawlerFromContent": 2, - "response.": 2, - "strtoupper": 3, - "Cake.Model": 1, - "Process": 1, - "print": 1, - "_mergeUses": 3, - "files": 7, - "VERBOSITY_VERBOSE": 2, - "_return": 3, - "primary": 3, - "ConnectionManager": 2, - "viewClass": 10, - "Console": 17, - "compact": 8, - "organization": 1, - "defined": 5, - "saveAll": 1, - "httpCodes": 3, - "autoRender": 6, - "getParameters": 1, - "getMessage": 1, - "hasAny": 1, - "actsAs": 2, - "true": 133, - "getUri": 8, - "DOMXPath": 1, - "_isPrivateAction": 2, - "Framework": 2, - "getSttyColumns": 3, - "filterKey": 2, - "autoLayout": 2, - "hasAttribute": 1, - "register": 1, - "&&": 119, - "another": 1, - "if": 450, - "__get": 2, - "Validation": 1, - "listing": 1, - "constructClasses": 1, - "Controller": 4, - "CakeEvent": 13, - "sep": 1, - "CakeResponse": 2, - "MissingActionException": 1, - "dynamicWith": 3, - "addObject": 2, - "at": 1, - "namespacedCommands": 5, - "add": 7, - "specific": 1, - "pluralized": 1, - "fully": 1, - ";": 1383, - "fclose": 2, - "<=>": 3, - "getTerminalWidth": 3, - "get_class": 4, - "root": 4, - "namespaceArrayXML": 4, - "posix_isatty": 1, - "foreach": 94, - "when": 1, - "updateCounterCache": 6, - "setRequest": 2, - "load": 3, - "oldJoin": 4, - "column": 10, - "TextareaFormField": 1, - "requestFromRequest": 4, - "getFiles": 3, - "editing": 1, - "Rapid": 2, - "lines": 3, - "len": 11, + "php": 12, + "namespace": 28, + "Symfony": 24, "Component": 24, - "static": 6, - "mb_detect_encoding": 1, - "have": 2, - "FILES": 1, - "node": 42, - "SessionComponent": 1, + "Console": 17, + ";": 1383, + "use": 23, + "Input": 6, "InputInterface": 4, - "j": 2, - "@property": 8, - "RequestHandler": 1, - "__construct": 8, - "Paginator": 1, - "while": 6, - "following": 1, - "getID": 2, - "one": 19, - "sources": 3, - "either": 1, - "explode": 9, - "This": 1, - "_collectForeignKeys": 2, - "begin": 2, - "singularize": 4, - "tableize": 2, - "schemaName": 1, - "array_intersect": 1, - "foreignKeys": 3, - "content": 4, - "mergeParent": 2, - "mit": 2, - "mb_strlen": 1, - "_deleteLinks": 3, - "count": 32, - "_afterScaffoldSaveError": 1, - "commands": 39, - "getVerbosity": 1, - "view": 5, - "_findList": 1, - "is": 1, - "format": 3, - "above": 2, - "getTerminalHeight": 1, - "getDefinition": 2, - "strpos": 15, - "string": 5, - "_php_filter_tips": 1, - "wantHelps": 4, - "c": 1, - "extractNamespace": 7, - "getRequest": 1, - "tokenize": 1, - "saveField": 1, - "assocKey": 13, - "dom": 12, - "setNode": 1, - "tm": 6, - "result": 21, - "performing": 2, - "namespaces": 4, - "throw": 19, - "class_exists": 2, - "Network": 1, - "args": 5, - "View": 9, - "-": 1271, - "copyright": 5, - "The": 4, - "_findThreaded": 1, - "_clearCache": 2, - "qs": 4, + "ArgvInput": 2, "ArrayInput": 3, - "insertMulti": 1, - "parentNode": 1, - "setName": 1, - "continue": 7, - "Licensed": 2, - "val": 27, - "output": 60, - "ob_get_contents": 1, - "modelClass": 25, - "yiiframework": 2, - "message.": 1, - "LogicException": 4, - "on": 4, - "else": 70, - "layouts": 1, - "max": 2, - "getOutput": 3, - "*/": 2, - "init": 4, - "getFile": 2, - "Email": 1, - "statusCode": 14, - "old_theme_path": 2, - "is_resource": 1, - "2008": 1, - "were": 1, - "php_filter_info": 1, - "DOMNode": 3, - "switch": 6, - "usually": 1, - "fieldList": 1, - "hasAndBelongsToMany": 24, - "&": 19, - "value": 53, - "success": 10, - "getOptions": 1, - "join": 22, - "describe": 1, - "settings": 2, - "array_merge": 32, - "validationErrors": 50, - "PHP": 1, - "definition": 3, - "row": 17, - "reverse": 1, - "SimpleXMLElement": 1, - "method": 31, - "setDecorated": 2, - "VERBOSITY_QUIET": 1, - "getVirtualField": 1, - "__backOriginalAssociation": 1, - "p": 3, - "getMethod": 6, - "AppModel": 1, - "selects": 1, - "": 3, - "false": 154, - "getResponse": 1, - "CookieJar": 2, - "collectReturn": 1, - "as": 96, - "layout": 5, - "timeFields": 2, - "afterScaffoldSaveError": 2, - "manipulate": 1, - "validateMany": 4, - "included": 3, - "document": 6, - "getVersion": 3, - "array": 296, - "For": 2, - "setVerbosity": 2, - "array_unshift": 2, - "updateAll": 3, - "Development": 2, - "history": 15, - "walk": 3, - "isEmpty": 2, - "followRedirects": 5, - "camelize": 3, - "sep.": 1, "InputDefinition": 2, - "getSegments": 4, - "CakeRequest": 5, - "ansicon": 4, - "i": 36, - "location": 1, - "licenses": 2, - "viewPath": 3, - "sort": 1, - "cakefoundation": 4, - "Each": 1, - "strlen": 14, - "strtotime": 1, - "_constructLinkedModel": 2, - "modelKey": 2, + "InputOption": 15, + "InputArgument": 3, + "Output": 5, + "OutputInterface": 6, + "ConsoleOutput": 2, + "ConsoleOutputInterface": 2, + "Command": 6, + "HelpCommand": 2, + "ListCommand": 2, + "Helper": 3, + "HelperSet": 3, + "FormatterHelper": 2, + "DialogHelper": 2, + "class": 21, + "Application": 3, + "{": 974, "private": 24, - "initialize": 2, - "getRawUri": 1, - "the": 11, - "setVersion": 1, - "Controllers": 2, - "extract": 9, - "association": 47, - "PostsController": 1, - "_eventManager": 12, - "_parseBeforeRedirect": 2, - "such": 1, - "parent": 14, - "3": 1, - "Yii": 3, - "org": 10, - "childMethods": 2, - "button": 6, - "array_pop": 1, - "abbrevs": 31, - "modelName": 3, - "virtualFields": 8, - "__isset": 2, - "theme_path": 5, - "filterResponse": 2, - "offsetExists": 1, - "is_numeric": 7, - "keys": 19, + "commands": 39, + "wantHelps": 4, + "false": 154, + "runningCommand": 5, + "name": 181, + "version": 8, + "catchExceptions": 4, + "autoExit": 4, + "definition": 3, + "helperSet": 6, + "public": 202, + "function": 205, + "__construct": 8, + "(": 2416, + ")": 2417, + "this": 928, + "-": 1271, + "true": 133, + "array": 296, + "getDefaultHelperSet": 2, + "getDefaultInputDefinition": 2, + "foreach": 94, + "getDefaultCommands": 2, + "as": 96, + "command": 41, + "add": 7, "}": 972, - "autoload": 1, - "getLine": 2, - "nodeName": 13, - "Object": 4, - "config": 3, - "asText": 1, - "asort": 1, - "provide": 1, - "resources": 1, - "hasValue": 1, - "Cookie": 1, - "strtolower": 1, - "getenv": 2, - "array_values": 5, - "These": 1, + "run": 4, + "input": 20, + "null": 164, + "output": 60, + "if": 450, + "new": 74, + "try": 3, + "statusCode": 14, + "doRun": 2, + "catch": 3, + "Exception": 1, + "e": 18, + "throw": 19, + "instanceof": 8, + "renderException": 3, + "getErrorOutput": 2, + "else": 70, + "getCode": 1, + "is_numeric": 7, + "&&": 119, + "exit": 7, + "return": 305, + "getCommandName": 2, + "hasParameterOption": 7, + "setDecorated": 2, "elseif": 31, - "checkVirtual": 3, - "maps": 1, - "columns": 5, - "getTrace": 1, - "encoding": 2, - "versions": 1, - "scaffoldError": 2, - "saveXml": 1, - "AuthComponent": 1, - "resp": 6, - "recordData": 2, - "is_object": 2, - "strrpos": 2, - "body": 1, - "GET": 1, - "prevVal": 2, - "ds": 3, - "date": 9, - "shutdownProcess": 1, - "passedArgs": 2, - "deleteAll": 2, - "_deleteDependent": 3, - "REQUIRED": 1, - "v": 17, - "array_combine": 2, - "getCrawler": 1, - "automatic": 1, - "callback": 5, - "in_array": 26, - "break": 19, - "uuid": 3, - "forward": 2, - "getHeader": 2, + "setInteractive": 2, + "function_exists": 4, + "getHelperSet": 3, + "has": 7, + "inputStream": 2, + "get": 12, + "getInputStream": 1, + "posix_isatty": 1, + "setVerbosity": 2, + "VERBOSITY_QUIET": 1, + "VERBOSITY_VERBOSE": 2, + "writeln": 13, + "getLongVersion": 3, + "find": 17, + "setHelperSet": 1, + "getDefinition": 2, + "getHelp": 2, + "messages": 16, + "sprintf": 27, + "getOptions": 1, + "option": 5, "[": 672, - "url": 18, - "getDefaultCommands": 2 - }, - "Verilog": { - "i/2": 2, - "control": 1, - "BITS": 2, - ".csr_adr_i": 1, - "1": 7, - "w_vert_sync": 3, - "NUMBER_OF_STAGES": 7, - "Inputs": 2, - "If": 1, - ".csrm_adr_o": 1, - "start_gen": 7, - ".wb_dat_o": 2, - ".wbm_dat_i": 1, - ".wbs_stb_i": 1, - ".dac_read_data": 2, - "ns/1ps": 2, - "vga_lcd": 1, - ".start": 2, - "/": 11, - "csr_dat_i": 3, - ".wait_for_incoming_data": 1, - ".wbm_stb_o": 1, - "mask": 3, - "finished": 1, - "dac_read_data_register": 3, - ".vh_retrace": 2, - "b01": 1, - "INPUT_WIDTH": 5, - "-": 73, - "root_gen": 15, - "pal_we": 3, - "||": 1, - "enable": 6, - "reg": 26, - "wb_rst_i": 6, - "DFF8": 1, - "en": 13, - "h3": 1, - "+": 36, - "localparam": 4, - "x_dotclockdiv2": 3, - ".wb_dat_i": 2, - ".wb_rst_i": 2, - "maj": 1, - "DFF6": 1, - ".st_hor_retr": 2, - "end_vert": 3, - "ps2_mouse_datain": 1, - "h1": 1, - ".quotient": 1, - ")": 378, - "ps2_clk_negedge": 3, - "h01": 1, - ".hcursor": 2, - "Defaults": 1, - "DFF4": 1, - "ns": 8, - "PS2_STATE_2_COMMAND_OUT": 2, - "asynchronous": 2, - ".dac_we": 2, - "csr_stb_o": 3, - "bx": 4, - "Bidirectionals": 1, - ".start_addr": 1, - "}": 11, - "default": 2, - "DFF2": 1, - "clk": 40, - "%": 3, - "PS2_STATE_1_DATA_IN": 3, - "button_debounce": 3, - "dac_we": 3, - "DFF0": 1, - ".wb_clk_i": 2, - "csrm_adr_o": 2, - "#10": 10, - "#1000": 1, - "bouncy": 1, - "conf_wb_dat_o": 3, - "{": 11, - "pipeline": 2, - "data": 4, - "Reset": 1, - "#": 10, - ".ps2_dat": 1, - "wait_for_incoming_data": 3, - ".wbs_adr_i": 1, - ".vga_green_o": 1, - "opA": 4, - ".wb_stb_i": 2, - "enable_set_reset": 3, - "any": 1, - "y": 21, - ".dac_read_data_cycle": 2, - "csr_stb_i": 2, - "mux": 1, - ".error_communication_timed_out": 1, - ".vert_total": 2, - "Synchronous": 12, - "dac_read_data_cycle": 3, - "mouse_datain": 1, - "PS2_STATE_3_END_TRANSFER": 3, - ".vert_sync": 1, - "graphics_alpha": 4, - ".end_vert": 2, - ".pal_read": 2, - "posedge": 11, - ".csrm_sel_o": 1, - "vcursor": 3, - "optional": 2, - ".DEBOUNCE_HZ": 1, - "root": 8, - "dac_write_data": 3, - "mask_4": 1, - "bits": 2, - "or": 14, - ".x_dotclockdiv2": 2, - "pipe_out": 5, - "genvar": 3, - "DEBOUNCE_HZ": 4, - "hex2": 2, - "color_dont_care": 3, - "t_sqrt_pipelined": 1, - "even": 1, - "next_state": 6, - "inout": 2, - "wbm_ack_i": 3, - "command": 1, - "out": 5, - "clock": 3, - "else": 22, - "hex0": 2, - "input": 68, - "pal_read": 3, - "e1": 1, - ".wbs_we_i": 1, - ".v_retrace": 2, - "INPUT_BITS": 28, - "seg_7": 4, - "vga_mem_arbitrer": 1, - "csr_adr_o": 2, - "vga_red_o": 2, - "WAIT": 6, - "VDU": 1, - ".clk": 6, - ".S": 6, - ".clk_i": 1, - "this": 2, - ".BITS": 1, - "o": 6, - ".horiz_sync": 1, - ".vcursor": 2, - "read_mode": 3, - "pipe_in": 4, - "button": 25, - "lcd": 1, - ".cur_start": 2, - "&&": 3, - "wb_stb_i": 2, - "//": 117, - ".Q": 6, - "Mhz": 1, - ".en": 4, - "negedge": 8, - ".received_data": 1, - ".INIT": 6, - ".wb_we_i": 2, - "register": 6, - "dac_read_data": 3, - "ps": 8, - "@": 16, - "k": 2, - "BIT_WIDTH*": 5, - ".CLK_FREQUENCY": 1, - "case": 3, - "command_was_sent": 2, - "generate": 3, - "send": 2, - "csr_adr_i": 3, - "wb_tga_i": 5, - "Clock": 14, - ".csrm_dat_o": 1, - ".chain_four": 2, - "sign_extend": 3, - "i": 62, - ".num": 4, - "module": 18, - "PS2_STATE_4_END_DELAYED": 4, - "of": 8, - "debounced": 1, - "<": 47, - "PS2_STATE_0_IDLE": 10, - ".wbs_sel_i": 1, - ".pal_write": 2, - ".raster_op": 2, - "parameter": 7, - "ps2_mouse": 1, - "g": 2, - "vga": 1, - "PS2": 2, - "hcursor": 3, - "dividend": 3, - "divisor": 5, - ".received_data_en": 1, - "e": 3, - "INPUT_BITS*i": 5, - "debounce": 6, - "set": 6, - "vh_retrace": 3, - ".end_hor_retr": 2, - ".ps2_clk": 1, - "for": 4, - "COUNT": 4, - "hex_group3": 1, - ".csrm_dat_i": 1, - "has": 1, - "s0": 1, - "state": 6, - "endmodule": 18, - "c": 3, - "b1": 19, - ".set_reset": 2, - "vga_cpu_mem_iface": 1, - "#100": 1, - "value": 6, - "pal_write": 3, - "hex_group1": 1, - ".color_dont_care": 2, - "Data": 13, - "hex_display": 1, - "a": 5, - ".wbs_dat_o": 1, - "BIT_WIDTH*i": 2, - "memory_mapping1": 3, - ".CE": 6, - "pal_addr": 3, - "dsp_sel": 9, - ".C": 6, - "ps2_data_reg": 5, - ".data_valid": 2, - "error_communication_timed_out": 3, - ".reset_n": 3, - ".st_ver_retr": 2, - ".memory_mapping1": 2, - "received_data": 2, - "endcase": 3, - "wb_clk_i": 6, - "FIRE": 4, - "wbm_sel_o": 3, - "original": 3, - "]": 179, - "data_valid": 7, - "shift_reg1": 3, - "v_retrace": 3, - "wb_dat_o": 2, - ".dac_read_data_register": 2, - "pipe_gen": 6, - "vert_sync": 2, - ".vga_blue_o": 1, - ".dac_write_data_cycle": 2, - "[": 179, - ".wbs_dat_i": 1, - ".cur_end": 2, - ".map_mask": 2, - "INPUT_BITS*": 27, - "end_ver_retr": 3, - "wb_sel_i": 3, - "cout": 4, - "reset_n": 32, - "start": 12, - "unsigned": 2, - "pipeline_registers": 1, - "FDRSE": 6, - "div_by_zero": 2, - ".wbm_ack_i": 1, - "sign_extender": 1, - ".send_command": 1, - ".wb_ack_o": 2, - "st_hor_retr": 3, - "<=>": 4, - ".write_mode": 2, - "ns_ps2_transceiver": 13, - "wb_dat_i": 3, - "vert_total": 3, - "*": 4, - "ps2_dat": 3, - "wb_cyc_i": 2, - "bitmask": 3, - "cur_start": 3, - "start_receiving_data": 3, - "#50": 2, - "wbm_dat_o": 3, - "<<": 2, - "if": 23, - ".rst": 1, - "(": 378, - "cur_end": 3, - ".wb_sel_i": 2, - ".debounce": 1, - "h00": 1, - "propagation": 1, - "an": 6, - "horiz_total": 3, - "&": 6, - "mask_gen": 9, - "mouse": 1, - "wb_we_i": 3, - "OUTPUT_BITS": 14, - "integer": 1, - ".ps2_data": 1, - "set_reset": 3, - "csrm_we_o": 2, - "signal": 3, - "been": 1, - "Input": 2, - "|": 2, - "DFF10": 1, - ".reset": 2, - "vga_config_iface": 1, - "COUNT_VALUE": 2, - "wbm_dat_i": 3, - "z": 7, - "opB": 3, - "pipeline_stage": 1, - "reset": 13, - "t_button_debounce": 1, - ".csr_dat_o": 1, - ".dac_write_data": 2, - "valid": 2, - "horiz_sync": 2, - "received_data_en": 4, - "wb_ack_o": 2, - "quotient": 2, - "ps2_clk_reg": 4, - "ps2_mouse_cmdout": 1, - "x": 41, - "Bidirectional": 2, - "vga_green_o": 2, - "radicand": 12, - ".wbm_adr_o": 1, - "#0.1": 8, - ".start_receiving_data": 1, - ".color_compare": 2, - ".read_map_select": 2, - "gen_sign_extend": 1, - "Wires": 1, - "timescale": 10, - ".divisor": 1, - "cycle": 1, - "wire": 67, - ".pal_addr": 2, - "hex3": 2, - "Machine": 1, - "Received": 1, - ".wbm_we_o": 1, - "wbm_stb_o": 3, - ".radicand": 1, - "wbm_we_o": 3, - ".the_command": 1, - ".csr_dat_i": 1, - "csrm_sel_o": 2, - "hex1": 2, - ".dac_write_data_register": 2, - "conf_wb_ack_o": 3, - "endgenerate": 3, - "Signal": 2, - "the_command": 2, - ".seg": 4, - "b11": 1, - ".csr_stb_o": 1, - "mem_wb_dat_o": 3, - "wb_adr_i": 3, - "vga_blue_o": 2, - "Command": 1, - ".shift_reg1": 2, - "e0": 1, - ".enable_set_reset": 2, - "mouse_cmdout": 1, - ".R": 6, - "end_hor_retr": 3, - "raster_op": 3, - "color_compare": 3, - "end_horiz": 3, - "#5": 3, - ".csrm_we_o": 1, - "CLK_FREQUENCY": 4, - "begin": 46, - "config_iface": 1, - "ps2_clk_posedge": 3, - ".pal_we": 2, - "to": 3, - "idle_counter": 4, - "mem_arbitrer": 1, - "num": 5, - "dac_write_data_register": 3, - "mem_wb_ack_o": 3, - "count": 6, - "l": 2, - "read_map_select": 3, - "new": 1, - ".csr_stb_i": 1, - "State": 1, - "last_ps2_clk": 4, - "map_mask": 3, - "dac_write_data_cycle": 3, - "j": 2, - "#1": 1, - ".graphics_alpha": 2, - ".dividend": 1, - ".rst_i": 1, - ".wb_adr_i": 2, - "#10000": 1, - ".root": 1, - "Outputs": 2, - "Registers": 2, - "cpu_mem_iface": 1, - ".div_by_zero": 1, - ".command_was_sent": 1, - "start_addr": 2, - "h": 2, - "sum": 5, - "send_command": 2, - "received": 1, - ".wbs_ack_o": 1, - ".bitmask": 2, - ".INPUT_BITS": 1, - "sending": 1, - ".button": 1, - "radicand_gen": 10, - ";": 287, - "stb": 4, - "Internal": 2, - "BIT_WIDTH": 5, - "OUTPUT_BITS*INPUT_BITS": 9, - "ps2_clk": 3, - "f": 2, - "finish": 2, - "csrm_dat_o": 2, - "wbm_adr_o": 3, - "initial": 3, - "////////////////////////////////////////////////////////////////////////////////": 14, - "always": 23, - ".vga_red_o": 1, - "assign": 23, - "ch": 1, - ".wbm_sel_o": 1, - ".end_horiz": 2, - "values": 3, - "s1": 1, - "div_pipelined": 2, - "d": 3, - "sign_extended_original": 2, - ".end_ver_retr": 2, - ".read_mode": 2, - "t_div_pipelined": 1, - "b0000": 1, - "chain_four": 3, - ".csr_adr_o": 1, - ".horiz_total": 2, - "hex_group2": 1, - "b0": 27, - "write_mode": 3, - "b": 3, - ".wbm_dat_o": 1, - "quotient_correct": 1, - "output": 42, - ".ps2_clk_negedge": 2, - "is": 4, - "odd": 1, - "s_ps2_transceiver": 8, - "hex_group0": 1, - ".D": 6, - "OUTPUT_WIDTH": 4, - "number": 2, - "end": 48, - "st_ver_retr": 3, - "Initial": 6, - "csrm_dat_i": 2, - "sqrt_pipelined": 3, - ".ps2_clk_posedge": 2 - }, - "Squirrel": { - "MoveTo": 1, - "type": 2, - "foreach": 1, - "table": 1, - "lang.org/#documentation": 1, - "newplayer": 1, - "base.constructor": 1, - "subtable": 1, - "Player": 2, - "z": 2, - "y": 2, - "x": 2, - ")": 10, - "i": 1, - "(": 10, - ";": 15, - "b": 1, - "+": 2, - "}": 10, - "]": 3, - "[": 3, - "a": 2, - "{": 10, - "-": 1, - "from": 1, - "null": 2, - "local": 3, - "function": 2, - "entityname": 4, - "class": 2, - "/////////////////////////////////////////////": 1, - "print": 2, - "in": 1, - "array": 3, - "constructor": 2, - "Entity": 3, - "newplayer.MoveTo": 1, - "extends": 1, - "name": 2, - "etype": 2, - "newz": 2, - "newy": 2, - "newx": 2, - "//example": 1, - "//www.squirrel": 1, - "DoDomething": 1, - "typeof": 1, - "val": 2, - "http": 1 - }, - "Shell": { - "opts": 1, - "pattern": 1, - "view": 2, - "lynx": 2, - "sbt_release_version": 2, - "does": 1, - "appendhistory": 2, - "quit": 2, - "ignoreboth": 2, - "/usr/sfw/bin": 4, - "clone": 5, - "pre": 1, - "sbt_artifactory_list": 2, - "rvm_is_not_a_shell_function": 2, - "//go.googlecode.com/files/go1.1.1.linux": 1, - "actually": 2, - "display": 2, - "config": 4, - "offline": 3, - "versionLine##build.scala.versions": 1, - "scala": 3, - "jvm_opts_file": 1, - "build_props_sbt": 3, - "java_home": 1, - "sbt_launch_dir": 3, - "##": 28, - "explicit": 1, - "dirname": 1, - "UID": 1, - "c699": 1, - "zless": 2, - "endif": 2, - "./project": 1, - "/": 2, - "github.com/gorilla/context/": 1, - "/go": 1, - "readline": 2, - "acquire_sbt_jar": 1, - "latest_29": 1, - "dotfiles": 1, - "man": 6, - "/.ivy2": 1, - "emacs": 2, - "realplay": 2, - "choice": 1, - "category": 1, - "t.go": 1, - "-": 391, - "function": 6, - "uncompress": 2, - "||": 12, - "/bin": 4, - "tar": 1, - "csh": 2, - "X": 54, - "symlinks": 1, - "script": 1, - "as": 2, - "DISPLAY": 2, - "argumentCount": 1, - "": 3, - "silent": 1, - "+": 1, - "/.bashrc": 3, - "gunzip": 2, - "ThisBuild": 1, - "": 1, - "download_url": 2, - "This": 1, - "bzgrep": 2, - "see": 4, - "iptables": 1, - "extglob": 2, - "": 1, - "versionString": 3, - "bare": 1, - "opt": 3, - "pushd": 2, - ")": 154, - "Debug": 1, - "log": 2, - "snapshots": 1, - "tools": 1, - "The": 1, - "vi": 2, - "##############################################################################": 16, - "user": 2, - "/usr/local": 1, - "combined": 1, - "verbose": 6, - "path": 13, - "launch": 1, - "erase": 2, - "sharing": 1, - "default": 4, - "wget": 2, - "bzcmp": 2, - "}": 61, - "#Where": 2, - "properties": 1, - "read": 1, - "precedence": 1, - "mode": 2, - "Error": 1, - "local": 22, - "mkdir": 2, - "%": 5, - "su": 2, - "dlog": 8, - "maybe": 1, - "P": 4, - "rehash": 2, - "#Append": 2, - "Fh": 2, - "shared": 1, - "level": 2, - "ef": 1, - "no": 16, - "{": 63, - "SHEBANG#!zsh": 2, - "latest_210": 1, - "system": 1, - "nocasematch": 1, - "galeon": 2, - "#": 53, - "residual_args": 4, - "update_build_props_sbt": 2, - "versions": 1, - "texi2dvi": 2, - "any": 1, - "pipe": 2, - "Solomon": 1, - "y": 5, - "same": 2, - "diff": 2, - "xmms": 2, - "sharehistory": 2, - "get_jvm_opts": 2, - "disk.": 1, - "L": 1, - "moving": 1, - "groups": 2, - "gv": 2, - "/usr/local/man": 2, - "addResidual": 2, - "noshare_opts": 1, - "rbenv": 2, - "rf": 1, - "help": 5, - "ogg123": 2, - "so": 1, - "..": 2, - "aliases": 2, - "rvim": 2, - "gt": 1, - "sbtargs": 3, - "u": 2, - "github.com/gorilla/mux/": 1, - "when": 2, - "build": 2, - "project": 1, - "project/build.properties": 9, - "repository": 3, - "package": 1, - "origin": 1, - "fi": 34, - "or": 3, - "update": 2, - "http": 3, - "fun": 2, - "bind": 4, - "ivy": 2, - "vlog": 1, - "s": 14, - "even": 3, - "iflast": 1, - "Updated": 1, - ".*": 2, - "/etc/apt/sources.list": 1, - "istrip": 2, - "command": 5, - "else": 10, - "fg": 2, - "Turn": 1, - "put": 1, - "usage": 2, - "F": 1, - "sbt_snapshot": 1, - "pdfjadetex": 2, - "cd..": 2, - "open": 1, - "perm": 6, - "sbt.version": 3, - "files": 1, - "/go/src/": 6, - "pull": 3, - "q": 8, - "umask": 2, - "fpath": 6, - "disown": 2, - "on": 4, - "make": 6, - "wine": 2, - "residuals": 1, - "insensitive": 1, - "which": 10, - "zcmp": 2, - "D": 2, - "/opt/local/bin": 2, - "gview": 2, - "make_snapshot_url": 2, - "o": 3, - "ubuntu": 1, - "this": 6, - "history": 18, - "J*": 1, - "highest.": 1, - "/usr": 1, - "then": 41, - "libev": 1, - "grep": 8, - "rupa/z.sh": 2, - "get": 6, - "codecache": 1, - "&&": 65, - "//": 3, - "pkgdesc": 1, - "zmore": 2, - "/opt/mysql/current/bin": 4, - "some": 1, - "jobs": 4, - "while": 3, - "gvim": 2, - "argumentCount=": 1, - "lowest": 1, - "tools.sbt": 3, - "printf": 4, - "rvm_ignore_rvmrc": 1, - "@": 3, - "amd64.tar.gz": 1, - "unset": 10, - "into": 3, - "ps": 2, - "cmd": 1, - "alert": 1, - "series": 1, - "ln": 1, - "k": 1, - "REV": 6, - "echo": 71, - "bash...": 2, - "case": 9, - "rgview": 2, - "dirpersiststore": 2, - "less": 2, - "JVM": 1, - "run": 13, - "rmdir": 2, - "entries": 2, - "color": 1, - "script_dir": 1, - "get_mem_opts": 3, - "scala_version": 3, - "zipinfo": 2, - "/usr/share/man": 2, - "ll": 2, - "i": 2, - "HISTIGNORE": 2, - "of": 6, - "sbt_url": 1, - "<": 2, - "GREP_OPTIONS": 1, - "filenames": 2, - "bzegrep": 2, - "tex": 2, - "us": 1, - "die": 2, - "#.": 2, - "HISTSIZE": 2, - "understand": 1, - "gives": 1, - "addResolver": 1, - "Disable": 1, - "continue": 1, - "Make": 2, - "IFS": 1, - "port.": 1, - "jvm": 2, - "java_cmd": 2, - "after": 2, - "alias": 42, - "edit": 2, - "order": 1, - "e": 4, - "texi2html": 2, - "with": 12, - "/.dotfiles/z": 4, - "zdiff": 2, - "stty": 2, - "esac": 7, - "jar_url": 1, - "matching": 1, - "Dm755": 1, - "set": 21, - "compress": 2, - "./build.sbt": 1, - "args": 2, - "target": 1, - "xpdf": 2, - "pkgver": 1, - "helptopic": 2, - "for": 7, - "helptopics": 2, - "stripped": 1, - "mpg123": 2, - "latex": 2, - "znew": 2, - "c": 2, - "CLICOLOR": 2, - "Ivy": 1, - "version0": 2, - "options": 8, - "version": 12, - "it": 2, - "completes": 10, - "value": 1, - "pi": 1, - "anything": 2, - "aviplay": 2, - "/.zsh_history": 2, - "lot": 1, - "precmd": 2, - "pkgrel": 1, - "intelligent": 2, - "bunzip2": 2, - "a": 12, - "docker": 1, - "automate": 1, - "stuff": 3, - "checkout": 3, - "Zsh": 2, - "url": 4, - "zgrep": 2, - "terminals": 2, - "name": 1, - "ver": 5, - "setting": 2, - "install": 8, - "/.profile": 2, - "/go/src/github.com/dotcloud/docker/docker": 1, - "vim": 2, - "pg": 2, - "fail": 1, - "rvm": 1, - "passwd": 2, - "mpg321": 2, - "not": 2, - "make_url": 3, - "rvm_path/scripts": 1, - "": 1, - "agnostic": 2, - "shell": 4, - "here": 1, - "pe": 1, - "default_jvm_opts": 1, - "init.stud": 1, - "acroread": 2, - "dillo": 2, - "runner": 1, - "SHEBANG#!bash": 8, - "]": 85, - "ggv": 2, - "playmidi": 2, - "w3m": 2, - "inc": 1, - "process_args": 2, - "addScalac": 2, - "way": 1, - "make_release_url": 2, - "in": 25, - "complete": 82, - "setopt": 8, - "provides": 1, - "0": 1, - "head": 1, - "/dev/null": 6, - "disk": 5, - "_gitname": 1, - "default_sbt_mem": 2, - "/usr/local/go/bin": 2, - "[": 85, - "elinks": 2, - "eq": 1, - "debug": 11, - "print_help": 2, - "URL": 1, - "PREFIX": 1, - "rgvim": 2, - "home": 2, - "JAVA_OPTS": 1, - "start": 1, - "build.scala.versions": 1, - "stopped": 4, - "commands": 8, - ".": 5, - "line": 1, - "java": 2, - "latest_28": 1, - "export": 25, - "x86_64": 1, - "readonly": 4, - "unalias": 4, - "dvips": 2, - "zfgrep": 2, - "duplicated": 1, - "at": 1, - "SNAPSHOT": 3, - "incappendhistory": 2, - "HOME/.zsh/func": 2, - "Update": 1, - ".jobs.cron": 1, - "links": 2, - "/usr/sbin": 6, - "environment": 2, - "crontab": 1, - "overwrite": 3, - ".bashrc": 1, - "/sbin": 2, - "W": 2, - "was": 1, - "declare": 22, - "freeamp": 2, - "TERM": 4, - "rview": 2, - "That": 1, - "message": 1, - "*": 11, - "groupid": 1, - "long": 2, - "/opt/local/sbin": 2, - "/.sbt/": 1, - "chattier": 1, - "get_script_path": 2, - "return": 3, - "format...": 2, - "U": 2, - "dviselect": 2, - "exit": 10, - "done": 8, - "require_arg": 12, - "<<": 2, - "sed": 2, - "if": 39, - "pdflatex": 2, - "process": 1, - "all": 1, - "(": 107, - "arch": 1, - "zsh/z.sh": 2, - "patch": 2, - "S": 2, - "POSTFIX": 1, - "DESTDIR": 1, - "#CDPATH": 2, - "/usr/bin": 8, - "property": 1, - "an": 1, - "rm": 2, - "jadetex": 2, - "netscape": 2, - "SCREENDIR": 2, - "#residual_args": 1, - "integer": 1, - "create": 2, - "&": 5, - "away": 1, - "killed": 2, - "bottles": 6, - "D*": 1, - "snapshot": 1, - "interactive": 1, - "debugging": 1, - "settings/plugins": 1, - "sbt": 18, - "versionLine##sbt.version": 1, - "elif": 4, - "more": 3, - "HISTDUP": 2, - "gqmpeg": 2, - "XF": 2, - "i686": 1, - "bindings": 2, - "xz": 1, - "Overriding": 1, - "Detected": 1, - "Usage": 1, - "echoerr": 3, - "eg": 1, - "job": 3, - "/usr/xpg4/bin": 4, - "/tmp": 1, - "|": 17, - "execRunner": 2, - "sbt_dir": 2, - "preserved": 1, - "PKG": 12, - "print": 1, - "O": 1, - "default_sbt_opts": 1, - "normal": 1, - "HISTFILE": 2, - "msg": 4, - "pwd": 1, - "ee": 2, - "z": 12, - "were": 1, - "reset": 1, - "they": 1, - "save": 4, - "xv": 2, - "share": 2, - "x": 1, - "makes": 1, - "openssl": 1, - "github.com/kr/pty": 1, - "#Erase": 2, - "current": 1, - "Random": 2, - "just": 2, - "addDebugger": 2, - "memory": 3, - "https": 2, - "makeinfo": 2, - "caches": 1, - "quiet": 6, - "like": 1, - "v": 11, - "pkgname": 1, - "xdvi": 2, - "build.properties": 1, - "boot": 3, - "global": 1, - "pdftex": 2, - "codes": 1, - "sbt_opts_file": 1, - "rvmrc": 3, - "turning": 1, - "I": 2, - "/.sbt/boot": 1, - "dir": 3, - "scalac_args": 4, - "t": 3, - "other": 2, - "bzfgrep": 2, - "git": 16, - "keep": 3, - "script_name": 2, - "remote.origin.pushurl": 1, - "env": 4, - "lxc": 1, - "name##*fo": 1, - "scalacOptions": 3, - "accomplish": 1, - "use": 1, - "sbt_commands": 2, - "script_path": 1, - "PUSHURL": 1, - "conflicts": 1, - "bzcat": 2, - "r": 17, - "//github.com/bumptech/stud.git": 1, - "stud": 4, - "ENV...": 2, - "we": 1, - "shift": 28, - "makedepends": 1, - "slitex": 2, - "_gitroot": 1, - "depends": 1, - "whoami": 2, - "sbt_create": 2, - "rvm_path": 4, - "go": 2, - "MANPATH": 2, - "port": 1, - "colors": 2, - "sbt_version": 8, - "perl": 3, - "dotfile": 1, - "p": 2, - "#sudo": 2, - "ls": 6, - "PROMPT_COMMAND": 2, - "source": 7, - "org.scala": 4, - "that": 1, - "/usr/openwin/bin": 4, - "shorter": 2, - "bzme": 2, - "C": 1, - "append": 2, - "aforementioned": 1, - "find": 2, - "n": 22, - "users": 2, - "them": 1, - "conflicting": 1, - "sbt_explicit_version": 7, - "prefix": 1, - "bg": 4, - "add": 1, - "mozilla": 2, - "qiv": 2, - "foodforthought.jpg": 1, - "addSbt": 12, - "shows": 1, - "optionally": 1, - "ldflags": 1, - "HISTCONTROL": 2, - "maintainer": 1, - "to": 33, - "A": 10, - "there": 2, - "arg": 3, - "sbt_snapshot_version": 2, - "many": 2, - "term": 2, - "l": 8, - "old": 4, - "SAVEHIST": 2, - "be": 3, - "remote.origin.url": 1, - "aufs": 1, - "xanim": 2, - "#Immediately": 2, - "j": 2, - "histappend": 2, - "<\"$sbt_opts_file\">": 1, - "sbt_mem": 5, - "mv": 1, - "curl": 8, - "test": 1, - "#Share": 2, - "Hykes": 1, - "d61e5": 1, - "PATH": 14, - "typeset": 5, - "#Import": 2, - "xfig": 2, - "cat": 3, - "Previous": 1, - "h": 3, - "true": 2, - "list": 3, - "java_args": 3, - "versionLine": 2, - "sbt_jar": 3, - "duplicates": 2, - "progcomp": 2, - "dvitype": 2, - "b36453141c": 1, - "opera": 2, - "ANSI": 1, - "sbt_groupid": 3, - "build_props_scala": 1, - ";": 138, - "type": 5, - "unzip": 2, - "doesn": 1, - "exec": 3, - "PS1": 2, - "from": 1, - "#function": 2, - "f": 68, - "GOPATH": 1, - "S*": 1, - "": 1, - "only": 6, - "SHEBANG#!sh": 2, - "In": 1, - "jar_file": 1, - "timidity": 2, - "directories": 2, - "zcat": 2, - "/go/src/github.com/dotcloud/docker": 1, - "rvm_rvmrc_files": 3, - "up": 1, - "/usr/bin/clear": 2, - "variables": 2, - "bzdiff": 2, - "xine": 2, + "]": 672, + ".": 169, + "getName": 14, + "getShortcut": 2, + "getDescription": 3, + "implode": 8, + "PHP_EOL": 3, + "setCatchExceptions": 1, + "boolean": 4, + "Boolean": 4, + "setAutoExit": 1, + "setName": 1, + "getVersion": 3, + "setVersion": 1, + "register": 1, + "addCommands": 1, + "setApplication": 2, + "isEnabled": 1, + "getAliases": 3, + "alias": 87, + "isset": 101, + "InvalidArgumentException": 9, + "helpCommand": 3, + "setCommand": 1, + "getNamespaces": 3, + "namespaces": 4, + "extractNamespace": 7, + "array_values": 5, + "array_unique": 4, + "array_filter": 2, + "findNamespace": 4, + "allNamespaces": 3, + "n": 12, + "explode": 9, + "found": 4, + "i": 36, + "part": 10, + "abbrevs": 31, + "static": 6, + "getAbbreviations": 4, + "array_map": 2, + "p": 3, + "message": 12, + "<=>": 3, + "alternatives": 10, + "findAlternativeNamespace": 2, + "count": 32, + "getAbbreviationSuggestions": 4, + "searchName": 13, + "pos": 3, + "strrpos": 2, + "substr": 6, + "namespace.substr": 1, + "suggestions": 2, + "aliases": 8, + "findAlternativeCommands": 2, + "all": 11, + "substr_count": 1, + "+": 12, + "names": 3, + "for": 8, + "len": 11, + "strlen": 14, + "abbrev": 4, + "asText": 1, + "raw": 2, + "width": 7, + "sortCommands": 4, + "space": 5, + "space.": 1, + "asXml": 2, + "asDom": 2, + "dom": 12, + "DOMDocument": 2, + "formatOutput": 1, + "appendChild": 10, + "xml": 5, + "createElement": 6, + "commandsXML": 3, + "setAttribute": 2, + "namespacesXML": 3, + "namespaceArrayXML": 4, + "continue": 7, + "commandXML": 3, + "createTextNode": 1, + "node": 42, + "getElementsByTagName": 1, + "item": 9, + "importNode": 3, + "saveXml": 1, + "string": 5, + "encoding": 2, + "mb_detect_encoding": 1, + "mb_strlen": 1, + "do": 2, + "title": 3, + "get_class": 4, + "getTerminalWidth": 3, + "PHP_INT_MAX": 1, + "lines": 3, + "preg_split": 1, + "getMessage": 1, + "line": 10, + "str_split": 1, + "max": 2, + "str_repeat": 2, + "title.str_repeat": 1, + "line.str_repeat": 1, + "message.": 1, + "getVerbosity": 1, + "trace": 12, + "getTrace": 1, + "array_unshift": 2, + "getFile": 2, + "getLine": 2, + "type": 62, + "file": 3, + "while": 6, + "getPrevious": 1, + "getSynopsis": 1, + "protected": 59, + "defined": 5, + "ansicon": 4, + "getenv": 2, + "preg_replace": 4, + "preg_match": 6, + "getSttyColumns": 3, + "match": 4, + "getTerminalHeight": 1, + "trim": 3, + "getFirstArgument": 1, + "REQUIRED": 1, + "VALUE_NONE": 7, + "descriptorspec": 2, + "process": 10, + "proc_open": 1, + "pipes": 4, + "is_resource": 1, + "info": 5, + "stream_get_contents": 1, + "fclose": 2, + "proc_close": 1, + "namespacedCommands": 5, + "key": 64, + "ksort": 2, + "&": 19, + "limit": 3, + "parts": 4, + "array_pop": 1, + "array_slice": 1, + "callback": 5, + "findAlternatives": 3, + "collection": 3, + "call_user_func": 2, + "lev": 6, + "levenshtein": 2, + "3": 1, + "strpos": 15, + "values": 53, + "/": 1, + "||": 52, + "value": 53, + "asort": 1, + "array_keys": 7, + "BrowserKit": 1, + "DomCrawler": 5, + "Crawler": 2, + "Link": 3, + "Form": 4, + "Process": 1, + "PhpProcess": 2, + "abstract": 2, + "Client": 1, + "history": 15, + "cookieJar": 9, + "server": 20, + "request": 76, + "response": 33, + "crawler": 7, + "insulated": 7, + "redirect": 6, + "followRedirects": 5, + "History": 2, + "CookieJar": 2, + "setServerParameters": 2, + "followRedirect": 4, + "insulate": 1, + "class_exists": 2, + "RuntimeException": 2, + "array_merge": 32, + "setServerParameter": 1, + "getServerParameter": 1, + "default": 9, + "getHistory": 1, + "getCookieJar": 1, + "getCrawler": 1, + "getResponse": 1, + "getRequest": 1, + "click": 1, + "link": 10, + "submit": 2, + "getMethod": 6, + "getUri": 8, + "form": 7, + "setValues": 2, + "getPhpValues": 2, + "getPhpFiles": 2, + "method": 31, + "uri": 23, + "parameters": 4, + "files": 7, + "content": 4, + "changeHistory": 4, + "getAbsoluteUri": 2, + "isEmpty": 2, + "current": 4, + "parse_url": 3, + "PHP_URL_HOST": 1, + "PHP_URL_SCHEME": 1, + "Request": 3, + "allValues": 1, + "filterRequest": 2, + "doRequestInProcess": 2, + "doRequest": 2, + "filterResponse": 2, + "updateFromResponse": 1, + "getHeader": 2, + "createCrawlerFromContent": 2, + "getContent": 2, + "getScript": 2, + "sys_get_temp_dir": 2, + "isSuccessful": 1, + "getOutput": 3, + "unserialize": 1, + "LogicException": 4, + "addContent": 1, + "back": 2, + "requestFromRequest": 4, + "forward": 2, + "reload": 1, + "empty": 96, + "restart": 1, + "clear": 2, + "currentUri": 7, + "path": 20, + "PHP_URL_PATH": 1, + "path.": 1, + "getParameters": 1, + "getFiles": 3, + "getServer": 1, + "": 3, + "CakePHP": 6, + "tm": 6, + "Rapid": 2, + "Development": 2, + "Framework": 2, + "http": 14, + "cakephp": 4, + "org": 10, + "Copyright": 5, + "2005": 4, + "2012": 4, + "Cake": 7, + "Software": 5, + "Foundation": 4, + "Inc": 4, + "cakefoundation": 4, + "Licensed": 2, + "under": 2, + "The": 4, + "MIT": 4, + "License": 4, + "Redistributions": 2, + "of": 10, + "must": 2, + "retain": 2, + "the": 11, + "above": 2, + "copyright": 5, + "notice": 2, + "Project": 2, + "package": 2, + "Controller": 4, + "since": 2, + "v": 17, + "0": 4, + "2": 2, + "9": 1, + "license": 6, + "www": 4, + "opensource": 2, + "licenses": 2, + "mit": 2, + "App": 20, + "uses": 46, + "CakeResponse": 2, + "Network": 1, + "ClassRegistry": 9, + "Utility": 6, + "ComponentCollection": 2, + "View": 9, + "CakeEvent": 13, + "Event": 6, + "CakeEventListener": 4, + "CakeEventManager": 5, + "controller": 3, + "organization": 1, + "business": 1, + "logic": 1, + "Provides": 1, + "basic": 1, + "functionality": 1, + "such": 1, + "rendering": 1, + "views": 1, + "inside": 1, + "layouts": 1, + "automatic": 1, + "model": 34, + "availability": 1, + "redirection": 2, + "callbacks": 4, "and": 5, - "d": 9, - "above": 1, - "EOM": 3, - "zegrep": 2, - "shopt": 13, - "cdspell": 2, - "the": 17, - "binding": 2, - "releases": 1, - "mem": 4, - "#How": 2, - "ping": 2, - "license": 1, - "batch": 2, - "#Number": 2, - "/usr/ccs/bin": 4, - "do": 8, - "can": 3, - "/go/bin": 1, - "across": 2, - "awk": 2, - "given": 2, - "contains": 2, - "output": 1, - "lines": 2, - "overwriting": 2, - "COLORTERM": 2, - "is": 11, - "readlink": 1, - "apt": 6, - "cd": 11, - "CGO_ENABLED": 1, - "jar": 3, - "false": 2, - "file": 9, - "prompt": 2, - "Bash": 3, - "/usr/local/sbin": 6, - "addJava": 9, - "disable": 1, - "cron": 1, - "directory": 5, - "/usr/local/bin": 6 + "more": 1, + "Controllers": 2, + "should": 1, + "provide": 1, + "a": 11, + "number": 1, + "action": 7, + "methods": 5, + "These": 1, + "are": 5, + "on": 4, + "that": 2, + "not": 2, + "prefixed": 1, + "with": 5, + "_": 1, + "Each": 1, + "serves": 1, + "an": 1, + "endpoint": 1, + "performing": 2, + "specific": 1, + "resource": 1, + "or": 9, + "resources": 1, + "For": 2, + "example": 2, + "adding": 1, + "editing": 1, + "object": 14, + "listing": 1, + "set": 26, + "objects": 5, + "You": 2, + "can": 2, + "access": 1, + "using": 2, + "contains": 1, + "POST": 1, + "GET": 1, + "FILES": 1, + "*": 25, + "were": 1, + "request.": 1, + "After": 1, + "required": 2, + "actions": 2, + "controllers": 2, + "responsible": 1, + "creating": 1, + "response.": 2, + "This": 1, + "usually": 1, + "takes": 1, + "generated": 1, + "possibly": 1, + "to": 6, + "another": 1, + "action.": 1, + "In": 1, + "either": 1, + "case": 31, + "allows": 1, + "you": 1, + "manipulate": 1, + "aspects": 1, + "created": 8, + "by": 2, + "Dispatcher": 1, + "based": 2, + "routing.": 1, + "By": 1, + "conventional": 1, + "names.": 1, + "/posts/index": 1, + "maps": 1, + "PostsController": 1, + "index": 5, + "re": 1, + "map": 1, + "urls": 1, + "Router": 5, + "connect": 1, + "@package": 2, + "Cake.Controller": 1, + "@property": 8, + "AclComponent": 1, + "Acl": 1, + "AuthComponent": 1, + "Auth": 1, + "CookieComponent": 1, + "Cookie": 1, + "EmailComponent": 1, + "Email": 1, + "PaginatorComponent": 1, + "Paginator": 1, + "RequestHandlerComponent": 1, + "RequestHandler": 1, + "SecurityComponent": 1, + "Security": 1, + "SessionComponent": 1, + "Session": 1, + "@link": 2, + "//book.cakephp.org/2.0/en/controllers.html": 1, + "*/": 2, + "extends": 3, + "Object": 4, + "implements": 3, + "helpers": 1, + "_responseClass": 1, + "viewPath": 3, + "layoutPath": 1, + "viewVars": 3, + "view": 5, + "layout": 5, + "autoRender": 6, + "autoLayout": 2, + "Components": 7, + "components": 1, + "viewClass": 10, + "ext": 1, + "plugin": 31, + "cacheAction": 1, + "passedArgs": 2, + "scaffold": 2, + "modelClass": 25, + "modelKey": 2, + "validationErrors": 50, + "_mergeParent": 4, + "_eventManager": 12, + "Inflector": 12, + "singularize": 4, + "underscore": 3, + "childMethods": 2, + "get_class_methods": 2, + "parentMethods": 2, + "array_diff": 3, + "CakeRequest": 5, + "setRequest": 2, + "parent": 14, + "__isset": 2, + "switch": 6, + "is_array": 37, + "list": 29, + "pluginSplit": 12, + "loadModel": 3, + "__get": 2, + "params": 34, + "load": 3, + "settings": 2, + "__set": 1, + "camelize": 3, + "array_key_exists": 11, + "invokeAction": 1, + "ReflectionMethod": 2, + "_isPrivateAction": 2, + "PrivateActionException": 1, + "invokeArgs": 1, + "ReflectionException": 1, + "_getScaffold": 2, + "MissingActionException": 1, + "privateAction": 4, + "isPublic": 1, + "in_array": 26, + "prefixes": 4, + "prefix": 2, + "Scaffold": 1, + "_mergeControllerVars": 2, + "pluginController": 9, + "pluginDot": 4, + "mergeParent": 2, + "is_subclass_of": 3, + "pluginVars": 3, + "appVars": 6, + "merge": 12, + "_mergeVars": 5, + "get_class_vars": 2, + "_mergeUses": 3, + "implementedEvents": 2, + "constructClasses": 1, + "init": 4, + "getEventManager": 13, + "attach": 4, + "startupProcess": 1, + "dispatch": 11, + "shutdownProcess": 1, + "httpCodes": 3, + "code": 4, + "id": 82, + "MissingModelException": 1, + "url": 18, + "status": 15, + "extract": 9, + "EXTR_OVERWRITE": 3, + "event": 35, + "//TODO": 1, + "Remove": 1, + "following": 1, + "when": 1, + "events": 1, + "fully": 1, + "migrated": 1, + "break": 19, + "breakOn": 4, + "collectReturn": 1, + "isStopped": 4, + "result": 21, + "_parseBeforeRedirect": 2, + "session_write_close": 1, + "header": 3, + "is_string": 7, + "codes": 3, + "array_flip": 1, + "send": 1, + "_stop": 1, + "resp": 6, + "compact": 8, + "one": 19, + "two": 6, + "data": 187, + "array_combine": 2, + "setAction": 1, + "args": 5, + "func_get_args": 5, + "unset": 22, + "call_user_func_array": 3, + "validate": 9, + "errors": 9, + "validateErrors": 1, + "invalidFields": 2, + "render": 3, + "className": 27, + "models": 6, + "keys": 19, + "currentModel": 2, + "currentObject": 6, + "getObject": 1, + "is_a": 1, + "location": 1, + "body": 1, + "referer": 5, + "local": 2, + "disableCache": 2, + "flash": 1, + "pause": 2, + "postConditions": 1, + "op": 9, + "bool": 5, + "exclusive": 2, + "cond": 5, + "arrayOp": 2, + "fields": 60, + "field": 88, + "fieldOp": 11, + "strtoupper": 3, + "paginate": 3, + "scope": 2, + "whitelist": 14, + "beforeFilter": 1, + "beforeRender": 1, + "beforeRedirect": 1, + "afterFilter": 1, + "beforeScaffold": 2, + "_beforeScaffold": 1, + "afterScaffoldSave": 2, + "_afterScaffoldSave": 1, + "afterScaffoldSaveError": 2, + "_afterScaffoldSaveError": 1, + "scaffoldError": 2, + "_scaffoldError": 1, + "php_help": 1, + "arg": 1, + "t": 26, + "php_permission": 1, + "TRUE": 1, + "php_eval": 1, + "global": 2, + "theme_path": 5, + "theme_info": 3, + "conf": 2, + "old_theme_path": 2, + "drupal_get_path": 1, + "dirname": 1, + "filename": 1, + "ob_start": 1, + "print": 1, + "eval": 1, + "ob_get_contents": 1, + "ob_end_clean": 1, + "_php_filter_tips": 1, + "filter": 1, + "format": 3, + "long": 2, + "FALSE": 2, + "base_url": 1, + "php_filter_info": 1, + "filters": 2, + "Field": 9, + "FormField": 3, + "ArrayAccess": 1, + "button": 6, + "DOMNode": 3, + "initialize": 2, + "getFormNode": 1, + "getValues": 3, + "isDisabled": 2, + "FileFormField": 3, + "hasValue": 1, + "getValue": 2, + "qs": 4, + "http_build_query": 3, + "parse_str": 2, + "queryString": 2, + "sep": 1, + "sep.": 1, + "getRawUri": 1, + "getAttribute": 10, + "remove": 4, + "offsetExists": 1, + "offsetGet": 1, + "offsetSet": 1, + "offsetUnset": 1, + "setNode": 1, + "nodeName": 13, + "parentNode": 1, + "FormFieldRegistry": 2, + "document": 6, + "root": 4, + "xpath": 2, + "DOMXPath": 1, + "query": 102, + "hasAttribute": 1, + "InputFormField": 2, + "ChoiceFormField": 2, + "addChoice": 1, + "TextareaFormField": 1, + "base": 8, + "segments": 13, + "getSegments": 4, + "target": 20, + "array_shift": 5, + "self": 1, + "create": 13, + "k": 7, + "setValue": 1, + "walk": 3, + "registry": 4, + "m": 5, + "relational": 2, + "mapper": 2, + "DBO": 2, + "backed": 2, + "mapping": 1, + "database": 2, + "tables": 5, + "PHP": 1, + "versions": 1, + "5": 1, + "Model": 5, + "10": 1, + "Validation": 1, + "String": 5, + "Set": 9, + "BehaviorCollection": 2, + "ModelBehavior": 1, + "ConnectionManager": 2, + "Xml": 2, + "Automatically": 1, + "selects": 1, + "table": 21, + "pluralized": 1, + "lowercase": 1, + "User": 1, + "is": 1, + "have": 2, + "at": 1, + "least": 1, + "primary": 3, + "key.": 1, + "Cake.Model": 1, + "//book.cakephp.org/2.0/en/models.html": 1, + "useDbConfig": 7, + "useTable": 12, + "displayField": 4, + "schemaName": 1, + "primaryKey": 38, + "_schema": 11, + "validationDomain": 1, + "tablePrefix": 8, + "tableToModel": 4, + "cacheQueries": 1, + "belongsTo": 7, + "hasOne": 2, + "hasMany": 2, + "hasAndBelongsToMany": 24, + "actsAs": 2, + "Behaviors": 6, + "cacheSources": 7, + "findQueryType": 3, + "recursive": 9, + "order": 4, + "virtualFields": 8, + "_associationKeys": 2, + "_associations": 5, + "__backAssociation": 22, + "__backInnerAssociation": 1, + "__backOriginalAssociation": 1, + "__backContainableAssociation": 1, + "_insertID": 1, + "_sourceConfigured": 1, + "findMethods": 3, + "ds": 3, + "addObject": 2, + "parentClass": 3, + "get_parent_class": 1, + "tableize": 2, + "_createLinks": 3, + "__call": 1, + "dispatchMethod": 1, + "getDataSource": 15, + "relation": 7, + "assocKey": 13, + "dynamic": 2, + "isKeySet": 1, + "AppModel": 1, + "_constructLinkedModel": 2, + "schema": 11, + "hasField": 7, + "setDataSource": 2, + "property_exists": 3, + "bindModel": 1, + "reset": 6, + "assoc": 75, + "assocName": 6, + "unbindModel": 1, + "_generateAssociation": 2, + "dynamicWith": 3, + "sort": 1, + "setSource": 1, + "tableName": 4, + "db": 45, + "method_exists": 5, + "sources": 3, + "listSources": 1, + "strtolower": 1, + "MissingTableException": 1, + "is_object": 2, + "SimpleXMLElement": 1, + "_normalizeXmlData": 3, + "toArray": 1, + "reverse": 1, + "_setAliasData": 2, + "modelName": 3, + "fieldSet": 3, + "fieldName": 6, + "fieldValue": 7, + "deconstruct": 2, + "getAssociated": 4, + "getColumnType": 4, + "useNewDate": 2, + "dateFields": 5, + "timeFields": 2, + "date": 9, + "val": 27, + "columns": 5, + "str_replace": 3, + "describe": 1, + "getColumnTypes": 1, + "trigger_error": 1, + "__d": 1, + "E_USER_WARNING": 1, + "cols": 7, + "column": 10, + "startQuote": 4, + "endQuote": 4, + "checkVirtual": 3, + "isVirtualField": 3, + "hasMethod": 2, + "getVirtualField": 1, + "filterKey": 2, + "defaults": 6, + "properties": 4, + "read": 2, + "conditions": 41, + "saveField": 1, + "options": 85, + "save": 9, + "fieldList": 1, + "_whitelist": 4, + "keyPresentAndEmpty": 2, + "exists": 6, + "validates": 60, + "updateCol": 6, + "colType": 4, + "time": 3, + "strtotime": 1, + "joined": 5, + "x": 4, + "y": 2, + "success": 10, + "cache": 2, + "_prepareUpdateFields": 2, + "update": 2, + "fInfo": 4, + "isUUID": 5, + "j": 2, + "array_search": 1, + "uuid": 3, + "updateCounterCache": 6, + "_saveMulti": 2, + "_clearCache": 2, + "join": 22, + "joinModel": 8, + "keyInfo": 4, + "withModel": 4, + "pluginName": 1, + "dbMulti": 6, + "newData": 5, + "newValues": 8, + "newJoins": 7, + "primaryAdded": 3, + "idField": 3, + "row": 17, + "keepExisting": 3, + "associationForeignKey": 5, + "links": 4, + "oldLinks": 4, + "delete": 9, + "oldJoin": 4, + "insertMulti": 1, + "foreignKey": 11, + "fkQuoted": 3, + "escapeField": 6, + "intval": 4, + "updateAll": 3, + "foreignKeys": 3, + "included": 3, + "array_intersect": 1, + "old": 2, + "saveAll": 1, + "numeric": 1, + "validateMany": 4, + "saveMany": 3, + "validateAssociated": 5, + "saveAssociated": 5, + "transactionBegun": 4, + "begin": 2, + "record": 10, + "saved": 18, + "commit": 2, + "rollback": 2, + "associations": 9, + "association": 47, + "notEmpty": 4, + "_return": 3, + "recordData": 2, + "cascade": 10, + "_deleteDependent": 3, + "_deleteLinks": 3, + "_collectForeignKeys": 2, + "savedAssociatons": 3, + "deleteAll": 2, + "records": 6, + "ids": 8, + "_id": 2, + "getID": 2, + "hasAny": 1, + "buildQuery": 2, + "is_null": 1, + "results": 22, + "resetAssociations": 3, + "_filterResults": 2, + "ucfirst": 2, + "modParams": 2, + "_findFirst": 1, + "state": 15, + "_findCount": 1, + "calculate": 2, + "expression": 1, + "_findList": 1, + "tokenize": 1, + "lst": 4, + "combine": 1, + "_findNeighbors": 1, + "prevVal": 2, + "return2": 6, + "_findThreaded": 1, + "nest": 1, + "isUnique": 1, + "is_bool": 1, + "sql": 1, + "SHEBANG#!php": 3, + "echo": 2, + "Yii": 3, + "console": 3, + "bootstrap": 1, + "yiiframework": 2, + "com": 2, + "c": 1, + "2008": 1, + "LLC": 1, + "YII_DEBUG": 2, + "define": 2, + "fcgi": 1, + "doesn": 1, + "STDIN": 3, + "fopen": 1, + "stdin": 1, + "r": 1, + "require": 3, + "__DIR__": 3, + "vendor": 2, + "yiisoft": 1, + "yii2": 1, + "yii": 2, + "autoload": 1, + "config": 3, + "application": 2 + }, + "PogoScript": { + "httpism": 1, + "require": 3, + "async": 1, + "resolve": 2, + ".resolve": 1, + "exports.squash": 1, + "(": 38, + "url": 5, + ")": 38, + "html": 15, + "httpism.get": 2, + ".body": 2, + "squash": 2, + "callback": 2, + "replacements": 6, + "sort": 2, + "links": 2, + "in": 11, + ".concat": 1, + "scripts": 2, + "for": 2, + "each": 2, + "@": 6, + "r": 1, + "{": 3, + "r.url": 1, + "r.href": 1, + "}": 3, + "async.map": 1, + "get": 2, + "err": 2, + "requested": 2, + "replace": 2, + "replacements.sort": 1, + "a": 1, + "b": 1, + "a.index": 1, + "-": 1, + "b.index": 1, + "replacement": 2, + "replacement.body": 1, + "replacement.url": 1, + "i": 3, + "parts": 3, + "rep": 1, + "rep.index": 1, + "+": 2, + "rep.length": 1, + "html.substr": 1, + "link": 2, + "reg": 5, + "r/": 2, + "": 1, + "]": 7, + "*href": 1, + "[": 5, + "*": 2, + "/": 2, + "|": 2, + "s*": 2, + "<\\/link\\>": 1, + "/gi": 2, + "elements": 5, + "matching": 3, + "as": 3, + "script": 2, + "": 1, + "*src": 1, + "<\\/script\\>": 1, + "tag": 3, + "while": 1, + "m": 1, + "reg.exec": 1, + "elements.push": 1, + "index": 1, + "m.index": 1, + "length": 1, + "m.0.length": 1, + "href": 1, + "m.1": 1 + }, + "PowerShell": { + "Write": 2, + "-": 2, + "Host": 2, + "function": 1, + "hello": 1, + "(": 1, + ")": 1, + "{": 1, + "}": 1 }, "Processing": { - "size": 1, - "quad": 1, - "draw": 1, - "rect": 1, - "noStroke": 1, - "background": 1, - "}": 2, - ";": 15, - "{": 2, - ")": 17, - "(": 17, - "TWO_PI": 1, - "PI": 1, - "arc": 1, - "fill": 6, - "ellipse": 1, "void": 2, "setup": 1, - "triangle": 2 + "(": 17, + ")": 17, + "{": 2, + "size": 1, + ";": 15, + "background": 1, + "noStroke": 1, + "}": 2, + "draw": 1, + "fill": 6, + "triangle": 2, + "rect": 1, + "quad": 1, + "ellipse": 1, + "arc": 1, + "PI": 1, + "TWO_PI": 1 }, - "Nginx": { - "logs/nginx.pid": 1, - "|": 6, - "worker_processes": 1, - "domain1.com": 1, - "//big_server_com": 1, - "proxy_pass": 2, - "log_format": 1, - "application/octet": 1, - "sendfile": 1, - "expires": 1, - "http": 3, - "simple": 2, - "/etc/nginx/proxy.conf": 1, - "seems": 1, - "-": 2, - "user": 1, - "www.domain1.com": 1, - "flash": 1, - "some": 1, - "html": 1, - "listen": 3, - "fastcgi_pass": 1, - "server_names_hash_bucket_size": 1, - "pid": 1, - "vhosts": 1, - "location": 4, - "logs/domain1.access.log": 1, - "include": 3, - "this": 1, - "to": 1, - "index": 1, - "www": 2, - "events": 1, - "{": 10, - "/": 4, - "be": 1, - ".php": 1, - "css": 1, - "on": 2, - "index.html": 1, - "images": 1, - "big_server_com": 1, - "tcp_nopush": 1, - "stream": 1, - "static": 1, - "index.php": 1, - "/etc/nginx/fastcgi.conf": 1, - "default_type": 1, - "load": 1, - "weight": 2, - "upstream": 1, - ")": 1, - "conf/mime.types": 1, - "logs/big.server.access.log": 1, - "js": 1, - "domain2.com": 1, - "}": 10, - "big.server.com": 1, - "balancing": 1, - "php/fastcgi": 1, - "root": 2, - "logs/domain2.access.log": 1, - "reverse": 1, - "required": 1, - "server": 7, - "//127.0.0.1": 1, + "Prolog": { + "action_module": 1, + "(": 585, + "calculator": 1, + ")": 584, + ".": 210, + "%": 334, + "[": 110, + "-": 276, + "d1": 1, + "]": 109, + "push": 20, + "D": 37, + "if": 2, + "mode": 22, + "init": 11, + "<": 11, + "deny": 10, + "displayed": 17, + "D1": 5, + "affirm": 10, + "cont": 3, + "*D1": 2, + "+": 32, + "New": 2, + "a": 31, + "op": 28, + "d": 27, + "m": 16, + "clear": 4, + "nop": 6, + "accumulator": 10, + "A": 40, + "O": 14, + "memory": 5, + "M": 14, + "X": 62, + "mem_rec": 2, + "plus": 6, + "eval": 7, + "V": 16, + ";": 9, + "use": 3, + "normal": 3, + "arithmetic": 3, + "i.e.": 3, + "minus": 5, + "lt": 1, + "times": 4, + "equal": 2, + "mem_plus": 2, + "v": 3, + "where": 3, + "V1": 2, + "plus_minus": 1, + "normalize": 2, + "Wff": 3, + "NormalClauses": 3, + "conVert": 1, + "S": 26, + "cnF": 1, + "T": 6, + "flatten_and": 5, + "U": 2, + "make_clauses": 5, + "make": 2, + "sequence": 2, + "out": 4, + "of": 5, + "conjunction": 1, + "/": 2, + "Y": 34, + "F": 31, + "B": 30, + "sequence_append": 5, + "disjunction": 1, + "flatten_or": 6, + "append": 2, + "two": 1, + "sequences": 1, + "R": 32, + "separate": 7, + "into": 1, + "positive": 1, + "and": 3, + "negative": 1, + "literals": 1, + "P": 37, + "N": 20, + "|": 36, + "N1": 2, + "P1": 2, + "tautology": 4, + "some_occurs": 3, + "occurs": 4, + "_": 21, + "C": 21, + "make_clause": 5, + "false": 1, + "make_sequence": 9, + "H": 11, + "write_list": 3, + "write": 13, + "nl": 8, + "A*": 1, + "Algorithm": 1, + "Nodes": 1, + "have": 2, + "form": 2, + "S#D#F#A": 1, + "describes": 1, + "the": 15, + "state": 1, + "or": 1, + "configuration": 1, + "is": 22, + "depth": 1, + "node": 2, + "evaluation": 1, + "function": 4, + "value": 1, + "ancestor": 1, + "list": 1, "for": 1, - "#": 4, - "access_log": 4, - "d": 1, - "/var/www/virtual/big.server.com/htdocs": 1, - "error_log": 1, - "worker_connections": 1, - "media": 1, - "index.htm": 1, - "logs/error.log": 1, - "main": 5, - "logs/access.log": 1, - "proxy": 1, - "javascript": 1, - "www.domain2.com": 1, - ";": 35, - "(": 1, - "worker_rlimit_nofile": 1, - "server_name": 3 + "yfx": 1, + "solve": 2, + "State": 7, + "Soln": 3, + "f_function": 3, + "search": 4, + "State#0#F#": 1, + "reverse": 2, + "h_function": 2, + "H.": 1, + "State#_#_#Soln": 1, + "goal": 2, + "expand": 2, + "Children": 2, + "insert_all": 4, + "Open": 7, + "Open1": 2, + "Open3": 2, + "insert": 6, + "Open2": 2, + "repeat_node": 2, + "cheaper": 2, + "B1": 2, + "P#_#_#_": 2, + "_#_#F1#_": 1, + "_#_#F2#_": 1, + "F1": 1, + "F2.": 1, + "State#D#_#S": 1, + "All_My_Children": 2, + "bagof": 1, + "Child#D1#F#": 1, + "Move": 3, + "move": 7, + "Child": 2, + "puzzle": 4, + "solver": 1, + "A/B/C/D/E/F/G/H/I": 3, + "{": 3, + "...": 3, + "I": 5, + "}": 3, + "represents": 1, + "empty": 2, + "tile": 5, + "/2/3/8/0/4/7/6/5": 1, + "The": 1, + "moves": 1, + "left": 26, + "A/0/C/D/E/F/H/I/J": 3, + "/A/C/D/E/F/H/I/J": 1, + "A/B/C/D/0/F/H/I/J": 4, + "A/B/C/0/D/F/H/I/J": 1, + "A/B/C/D/E/F/H/0/J": 3, + "A/B/C/D/E/F/0/H/J": 1, + "A/B/0/D/E/F/H/I/J": 2, + "A/0/B/D/E/F/H/I/J": 1, + "A/B/C/D/E/0/H/I/J": 3, + "A/B/C/D/0/E/H/I/J": 1, + "A/B/C/D/E/F/H/I/0": 2, + "A/B/C/D/E/F/H/0/I": 1, + "up": 17, + "A/B/C/0/E/F/H/I/J": 3, + "/B/C/A/E/F/H/I/J": 1, + "A/0/C/D/B/F/H/I/J": 1, + "A/B/0/D/E/C/H/I/J": 1, + "A/B/C/D/E/F/0/I/J": 2, + "A/B/C/0/E/F/D/I/J": 1, + "A/B/C/D/0/F/H/E/J": 1, + "A/B/C/D/E/0/H/I/F": 1, + "right": 22, + "A/C/0/D/E/F/H/I/J": 1, + "A/B/C/D/F/0/H/I/J": 1, + "A/B/C/D/E/F/H/J/0": 1, + "/B/C/D/E/F/H/I/J": 2, + "B/0/C/D/E/F/H/I/J": 1, + "A/B/C/E/0/F/H/I/J": 1, + "A/B/C/D/E/F/I/0/J": 1, + "down": 15, + "A/B/C/H/E/F/0/I/J": 1, + "A/B/C/D/I/F/H/0/J": 1, + "A/B/C/D/E/J/H/I/0": 1, + "D/B/C/0/E/F/H/I/J": 1, + "A/E/C/D/0/F/H/I/J": 1, + "A/B/F/D/E/0/H/I/J": 1, + "heuristic": 1, + "Puzz": 3, + "p_fcn": 2, + "s_fcn": 2, + "*S.": 1, + "Manhattan": 1, + "distance": 1, + "Pa": 2, + "b": 12, + "Pb": 2, + "c": 10, + "Pc": 2, + "Pd": 2, + "e": 10, + "E": 3, + "Pe": 2, + "f": 10, + "Pf": 2, + "g": 10, + "G": 7, + "Pg": 3, + "h": 10, + "Ph": 2, + "i": 10, + "Pi": 1, + "Pi.": 1, + "cycle": 1, + "s_aux": 14, + "S1": 2, + "S2": 2, + "S3": 2, + "S4": 2, + "S5": 2, + "S6": 2, + "S7": 2, + "S8": 2, + "S9": 1, + "S9.": 1, + "animation": 1, + "using": 2, + "VT100": 1, + "character": 3, + "graphics": 1, + "animate": 2, + "message.": 2, + "initialize": 2, + "cursor": 7, + "get0": 2, + "_X": 2, + "play_back": 5, + "dynamic": 1, + "location/3.": 1, + "A/B/C/D/E/F/H/I/J": 1, + "cls": 2, + "retractall": 1, + "location": 32, + "assert": 17, + "J": 1, + "draw_all.": 1, + "draw_all": 1, + "draw": 18, + "call": 1, + "Put": 1, + "way": 1, + "message": 1, + "nl.": 1, + "put": 16, + "ESC": 1, + "screen": 1, + "quickly": 1, + "video": 1, + "attributes": 1, + "bold": 1, + "blink": 1, + "not": 1, + "working": 1, + "plain": 1, + "reverse_video": 2, + "Tile": 35, + "objects": 1, + "map": 2, + "s": 1, + "Each": 1, + "should": 1, + "be": 1, + "drawn": 2, + "at": 1, + "which": 1, + "asserted": 1, + "retracted": 1, + "by": 1, + "character_map": 3, + "spot": 1, + "to": 1, + "retract": 8, + "X0": 10, + "Y0": 10, + "Xnew": 6, + "Ynew": 6, + "Obj": 26, + "plain.": 1, + "hide": 10, + "hide_row": 4, + "Y1": 8, + "X1": 8, + "draw_row": 4, + "an": 1, + "Object": 1, + "partition": 5, + "Xs": 5, + "Pivot": 4, + "Smalls": 3, + "Bigs": 3, + "@": 1, + "Rest": 4, + "quicksort": 4, + "Smaller": 2, + "Bigger": 2, + "male": 3, + "john": 2, + "peter": 3, + "female": 2, + "vick": 2, + "christie": 3, + "parents": 4, + "brother": 1, + "turing": 1, + "Tape0": 2, + "Tape": 2, + "perform": 4, + "q0": 1, + "Ls": 12, + "Rs": 16, + "Ls1": 4, + "qf": 1, + "Q0": 2, + "Ls0": 6, + "Rs0": 6, + "symbol": 3, + "Sym": 6, + "RsRest": 2, + "once": 1, + "rule": 1, + "Q1": 2, + "NewSym": 2, + "Action": 2, + "action": 4, + "Rs1": 2, + "stay": 1, + "L": 2 }, - "Handlebars": { - "": 5, - "#each": 1, - "Comments": 1, - "comments": 1, - "": 3, - "}": 16, - "{": 16, - "title": 1, - "/each": 1, - "body": 3, - "

": 1, - "fullName": 2, - "By": 2, - "class=": 5, - "
": 5, - "

": 1, - "author": 2, - "

": 3 + "Python": { + "from": 34, + "__future__": 2, + "import": 47, + "unicode_literals": 1, + "copy": 1, + "sys": 2, + "functools": 1, + "update_wrapper": 2, + "future_builtins": 1, + "zip": 8, + "django.db.models.manager": 1, + "#": 13, + "Imported": 1, + "to": 4, + "register": 1, + "signal": 1, + "handler.": 1, + "django.conf": 1, + "settings": 1, + "django.core.exceptions": 1, + "(": 719, + "ObjectDoesNotExist": 2, + "MultipleObjectsReturned": 2, + "FieldError": 4, + "ValidationError": 8, + "NON_FIELD_ERRORS": 3, + ")": 730, + "django.core": 1, + "validators": 1, + "django.db.models.fields": 1, + "AutoField": 2, + "FieldDoesNotExist": 2, + "django.db.models.fields.related": 1, + "ManyToOneRel": 3, + "OneToOneField": 3, + "add_lazy_relation": 2, + "django.db": 1, + "router": 1, + "transaction": 1, + "DatabaseError": 3, + "DEFAULT_DB_ALIAS": 2, + "django.db.models.query": 1, + "Q": 3, + "django.db.models.query_utils": 2, + "DeferredAttribute": 3, + "django.db.models.deletion": 1, + "Collector": 2, + "django.db.models.options": 1, + "Options": 2, + "django.db.models": 1, + "signals": 1, + "django.db.models.loading": 1, + "register_models": 2, + "get_model": 3, + "django.utils.translation": 1, + "ugettext_lazy": 1, + "as": 11, + "_": 5, + "django.utils.functional": 1, + "curry": 6, + "django.utils.encoding": 1, + "smart_str": 3, + "force_unicode": 3, + "django.utils.text": 1, + "get_text_list": 2, + "capfirst": 6, + "class": 14, + "ModelBase": 4, + "type": 6, + "def": 68, + "__new__": 2, + "cls": 32, + "name": 39, + "bases": 6, + "attrs": 7, + "super_new": 3, + "super": 2, + ".__new__": 1, + "parents": 8, + "[": 152, + "b": 11, + "for": 59, + "in": 79, + "if": 145, + "isinstance": 11, + "]": 152, + "not": 64, + "return": 57, + "module": 6, + "attrs.pop": 2, + "new_class": 9, + "{": 25, + "}": 25, + "attr_meta": 5, + "None": 86, + "abstract": 3, + "getattr": 30, + "False": 28, + "meta": 12, + "else": 30, + "base_meta": 2, + "is": 29, + "model_module": 1, + "sys.modules": 1, + "new_class.__module__": 1, + "kwargs": 9, + "model_module.__name__.split": 1, + "-": 30, + "new_class.add_to_class": 7, + "**kwargs": 9, + "subclass_exception": 3, + "tuple": 3, + "x.DoesNotExist": 1, + "x": 22, + "hasattr": 11, + "and": 35, + "x._meta.abstract": 2, + "or": 27, + "x.MultipleObjectsReturned": 1, + "base_meta.abstract": 1, + "new_class._meta.ordering": 1, + "base_meta.ordering": 1, + "new_class._meta.get_latest_by": 1, + "base_meta.get_latest_by": 1, + "is_proxy": 5, + "new_class._meta.proxy": 1, + "new_class._default_manager": 2, + "new_class._base_manager": 2, + "new_class._default_manager._copy_to_model": 1, + "new_class._base_manager._copy_to_model": 1, + "m": 3, + "new_class._meta.app_label": 3, + "seed_cache": 2, + "only_installed": 2, + "obj_name": 2, + "obj": 4, + "attrs.items": 1, + "new_fields": 2, + "new_class._meta.local_fields": 3, + "+": 37, + "new_class._meta.local_many_to_many": 2, + "new_class._meta.virtual_fields": 1, + "field_names": 5, + "set": 3, + "f.name": 5, + "f": 19, + "base": 13, + "parent": 5, + "parent._meta.abstract": 1, + "parent._meta.fields": 1, + "raise": 22, + "TypeError": 4, + "%": 32, + "continue": 10, + "new_class._meta.setup_proxy": 1, + "new_class._meta.concrete_model": 2, + "base._meta.concrete_model": 2, + "o2o_map": 3, + "dict": 3, + "f.rel.to": 1, + "original_base": 1, + "parent_fields": 3, + "base._meta.local_fields": 1, + "base._meta.local_many_to_many": 1, + "field": 32, + "field.name": 14, + "base.__name__": 2, + "base._meta.abstract": 2, + "elif": 4, + "attr_name": 3, + "base._meta.module_name": 1, + "auto_created": 1, + "True": 20, + "parent_link": 1, + "new_class._meta.parents": 1, + "copy.deepcopy": 2, + "new_class._meta.parents.update": 1, + "base._meta.parents": 1, + "new_class.copy_managers": 2, + "base._meta.abstract_managers": 1, + "original_base._meta.concrete_managers": 1, + "base._meta.virtual_fields": 1, + "attr_meta.abstract": 1, + "new_class.Meta": 1, + "new_class._prepare": 1, + "copy_managers": 1, + "base_managers": 2, + "base_managers.sort": 1, + "mgr_name": 3, + "manager": 3, + "val": 14, + "new_manager": 2, + "manager._copy_to_model": 1, + "cls.add_to_class": 1, + "add_to_class": 1, + "value": 9, + "value.contribute_to_class": 1, + "setattr": 14, + "_prepare": 1, + "opts": 5, + "cls._meta": 3, + "opts._prepare": 1, + "opts.order_with_respect_to": 2, + "cls.get_next_in_order": 1, + "cls._get_next_or_previous_in_order": 2, + "is_next": 9, + "cls.get_previous_in_order": 1, + "make_foreign_order_accessors": 2, + "model": 8, + "field.rel.to": 2, + "cls.__name__.lower": 2, + "method_get_order": 2, + "method_set_order": 2, + "opts.order_with_respect_to.rel.to": 1, + "cls.__doc__": 3, + "cls.__name__": 1, + ".join": 3, + "f.attname": 5, + "opts.fields": 1, + "cls.get_absolute_url": 3, + "get_absolute_url": 2, + "signals.class_prepared.send": 1, + "sender": 5, + "ModelState": 2, + "object": 6, + "__init__": 5, + "self": 100, + "db": 2, + "self.db": 1, + "self.adding": 1, + "Model": 2, + "__metaclass__": 3, + "_deferred": 1, + "*args": 4, + "signals.pre_init.send": 1, + "self.__class__": 10, + "args": 8, + "self._state": 1, + "args_len": 2, + "len": 9, + "self._meta.fields": 5, + "IndexError": 2, + "fields_iter": 4, + "iter": 1, + "field.attname": 17, + "kwargs.pop": 6, + "field.rel": 2, + "is_related_object": 3, + "self.__class__.__dict__.get": 2, + "try": 17, + "rel_obj": 3, + "except": 17, + "KeyError": 3, + "field.get_default": 3, + "field.null": 1, + "prop": 5, + "kwargs.keys": 2, + "property": 2, + "AttributeError": 1, + "pass": 4, + ".__init__": 1, + "signals.post_init.send": 1, + "instance": 5, + "__repr__": 2, + "u": 9, + "unicode": 8, + "UnicodeEncodeError": 1, + "UnicodeDecodeError": 1, + "self.__class__.__name__": 3, + "__str__": 1, + ".encode": 1, + "__eq__": 1, + "other": 4, + "self._get_pk_val": 6, + "other._get_pk_val": 1, + "__ne__": 1, + "self.__eq__": 1, + "__hash__": 1, + "hash": 1, + "__reduce__": 1, + "data": 22, + "self.__dict__": 1, + "defers": 2, + "self._deferred": 1, + "deferred_class_factory": 2, + "factory": 5, + "defers.append": 1, + "self._meta.proxy_for_model": 1, + "simple_class_factory": 2, + "model_unpickle": 2, + "_get_pk_val": 2, + "self._meta": 2, + "meta.pk.attname": 2, + "_set_pk_val": 2, + "self._meta.pk.attname": 2, + "pk": 5, + "serializable_value": 1, + "field_name": 8, + "self._meta.get_field_by_name": 1, + "save": 1, + "force_insert": 7, + "force_update": 10, + "using": 30, + "update_fields": 23, + "ValueError": 5, + "frozenset": 2, + "field.primary_key": 1, + "non_model_fields": 2, + "update_fields.difference": 1, + "self.save_base": 2, + "save.alters_data": 1, + "save_base": 1, + "raw": 9, + "origin": 7, + "router.db_for_write": 2, + "assert": 7, + "meta.proxy": 5, + "meta.auto_created": 2, + "signals.pre_save.send": 1, + "org": 3, + "meta.parents.items": 1, + "parent._meta.pk.attname": 2, + "parent._meta": 1, + "non_pks": 5, + "meta.local_fields": 2, + "f.primary_key": 2, + "pk_val": 4, + "pk_set": 5, + "record_exists": 5, + "cls._base_manager": 1, + "manager.using": 3, + ".filter": 7, + ".exists": 1, + "values": 13, + "f.pre_save": 1, + "rows": 3, + "._update": 1, + "meta.order_with_respect_to": 2, + "order_value": 2, + "*": 33, + ".count": 1, + "self._order": 1, + "fields": 12, + "update_pk": 3, + "bool": 2, + "meta.has_auto_field": 1, + "result": 2, + "manager._insert": 1, + "return_id": 1, + "transaction.commit_unless_managed": 2, + "self._state.db": 2, + "self._state.adding": 4, + "signals.post_save.send": 1, + "created": 1, + "save_base.alters_data": 1, + "delete": 1, + "self._meta.object_name": 1, + "collector": 1, + "collector.collect": 1, + "collector.delete": 1, + "delete.alters_data": 1, + "_get_FIELD_display": 1, + "field.flatchoices": 1, + ".get": 2, + "strings_only": 1, + "_get_next_or_previous_by_FIELD": 1, + "self.pk": 6, + "op": 6, + "order": 5, + "param": 3, + "q": 4, + "|": 1, + "qs": 6, + "self.__class__._default_manager.using": 1, + "*kwargs": 1, + ".order_by": 2, + "self.DoesNotExist": 1, + "self.__class__._meta.object_name": 1, + "_get_next_or_previous_in_order": 1, + "cachename": 4, + "order_field": 1, + "self._meta.order_with_respect_to": 1, + "self._default_manager.filter": 1, + "order_field.name": 1, + "order_field.attname": 1, + "self._default_manager.values": 1, + "self._meta.pk.name": 1, + "prepare_database_save": 1, + "unused": 1, + "clean": 1, + "validate_unique": 1, + "exclude": 23, + "unique_checks": 6, + "date_checks": 6, + "self._get_unique_checks": 1, + "errors": 20, + "self._perform_unique_checks": 1, + "date_errors": 1, + "self._perform_date_checks": 1, + "k": 4, + "v": 11, + "date_errors.items": 1, + "errors.setdefault": 3, + ".extend": 2, + "_get_unique_checks": 1, + "unique_togethers": 2, + "self._meta.unique_together": 1, + "parent_class": 4, + "self._meta.parents.keys": 2, + "parent_class._meta.unique_together": 2, + "unique_togethers.append": 1, + "model_class": 11, + "unique_together": 2, + "check": 4, + "break": 2, + "unique_checks.append": 2, + "fields_with_class": 2, + "self._meta.local_fields": 1, + "fields_with_class.append": 1, + "parent_class._meta.local_fields": 1, + "f.unique": 1, + "f.unique_for_date": 3, + "date_checks.append": 3, + "f.unique_for_year": 3, + "f.unique_for_month": 3, + "_perform_unique_checks": 1, + "unique_check": 10, + "lookup_kwargs": 8, + "self._meta.get_field": 1, + "lookup_value": 3, + "str": 2, + "lookup_kwargs.keys": 1, + "model_class._default_manager.filter": 2, + "*lookup_kwargs": 2, + "model_class_pk": 3, + "model_class._meta": 2, + "qs.exclude": 2, + "qs.exists": 2, + "key": 5, + ".append": 2, + "self.unique_error_message": 1, + "_perform_date_checks": 1, + "lookup_type": 7, + "unique_for": 9, + "date": 3, + "date.day": 1, + "date.month": 1, + "date.year": 1, + "self.date_error_message": 1, + "date_error_message": 1, + "opts.get_field": 4, + ".verbose_name": 3, + "unique_error_message": 1, + "model_name": 3, + "opts.verbose_name": 1, + "field_label": 2, + "field.verbose_name": 1, + "field.error_messages": 1, + "field_labels": 4, + "map": 1, + "lambda": 1, + "full_clean": 1, + "self.clean_fields": 1, + "e": 13, + "e.update_error_dict": 3, + "self.clean": 1, + "errors.keys": 1, + "exclude.append": 1, + "self.validate_unique": 1, + "clean_fields": 1, + "raw_value": 3, + "f.blank": 1, + "validators.EMPTY_VALUES": 1, + "f.clean": 1, + "e.messages": 1, + "############################################": 2, + "ordered_obj": 2, + "id_list": 2, + "rel_val": 4, + "ordered_obj._meta.order_with_respect_to.rel.field_name": 2, + "order_name": 4, + "ordered_obj._meta.order_with_respect_to.name": 2, + "i": 7, + "j": 2, + "enumerate": 1, + "ordered_obj.objects.filter": 2, + ".update": 1, + "_order": 1, + "pk_name": 3, + "ordered_obj._meta.pk.name": 1, + "r": 3, + ".values": 1, + "##############################################": 2, + "func": 2, + "settings.ABSOLUTE_URL_OVERRIDES.get": 1, + "opts.app_label": 1, + "opts.module_name": 1, + "########": 2, + "Empty": 1, + "cls.__new__": 1, + "model_unpickle.__safe_for_unpickle__": 1, + ".globals": 1, + "request": 1, + "http_method_funcs": 2, + "View": 2, + "A": 1, + "which": 1, + "methods": 5, + "this": 2, + "pluggable": 1, + "view": 2, + "can": 1, + "handle.": 1, + "The": 1, + "canonical": 1, + "way": 1, + "decorate": 2, + "based": 1, + "views": 1, + "the": 5, + "of": 3, + "as_view": 1, + ".": 1, + "However": 1, + "since": 1, + "moves": 1, + "parts": 1, + "logic": 1, + "declaration": 1, + "place": 1, + "where": 1, + "it": 1, + "s": 1, + "also": 1, + "used": 1, + "instantiating": 1, + "view.view_class": 1, + "view.__name__": 1, + "view.__doc__": 1, + "view.__module__": 1, + "cls.__module__": 1, + "view.methods": 1, + "cls.methods": 1, + "MethodViewType": 2, + "d": 5, + "rv": 2, + "type.__new__": 1, + "rv.methods": 2, + "methods.add": 1, + "key.upper": 1, + "sorted": 1, + "MethodView": 1, + "dispatch_request": 1, + "meth": 5, + "request.method.lower": 1, + "request.method": 2, + "google.protobuf": 4, + "descriptor": 1, + "_descriptor": 1, + "message": 1, + "_message": 1, + "reflection": 1, + "_reflection": 1, + "descriptor_pb2": 1, + "DESCRIPTOR": 3, + "_descriptor.FileDescriptor": 1, + "package": 1, + "serialized_pb": 1, + "_PERSON": 3, + "_descriptor.Descriptor": 1, + "full_name": 2, + "filename": 1, + "file": 1, + "containing_type": 2, + "_descriptor.FieldDescriptor": 1, + "index": 1, + "number": 1, + "cpp_type": 1, + "label": 18, + "has_default_value": 1, + "default_value": 1, + "message_type": 1, + "enum_type": 1, + "is_extension": 1, + "extension_scope": 1, + "options": 3, + "extensions": 1, + "nested_types": 1, + "enum_types": 1, + "is_extendable": 1, + "extension_ranges": 1, + "serialized_start": 1, + "serialized_end": 1, + "DESCRIPTOR.message_types_by_name": 1, + "Person": 1, + "_message.Message": 1, + "_reflection.GeneratedProtocolMessageType": 1, + "SHEBANG#!python": 4, + "print": 39, + "os": 1, + "main": 4, + "usage": 3, + "string": 1, + "command": 4, + "sys.argv": 2, + "<": 1, + "sys.exit": 1, + "printDelimiter": 4, + "get": 1, + "a": 2, + "list": 1, + "git": 1, + "directories": 1, + "specified": 1, + "gitDirectories": 2, + "getSubdirectories": 2, + "isGitDirectory": 2, + "gitDirectory": 2, + "os.chdir": 1, + "os.getcwd": 1, + "os.system": 1, + "directory": 9, + "filter": 3, + "os.path.abspath": 1, + "subdirectories": 3, + "os.walk": 1, + ".next": 1, + "os.path.isdir": 1, + "__name__": 2, + "argparse": 1, + "matplotlib.pyplot": 1, + "pl": 1, + "numpy": 1, + "np": 1, + "scipy.optimize": 1, + "prettytable": 1, + "PrettyTable": 6, + "__docformat__": 1, + "S": 4, + "phif": 7, + "U": 10, + "/": 23, + "_parse_args": 2, + "V": 12, + "np.genfromtxt": 8, + "delimiter": 8, + "t": 8, + "U_err": 7, + "offset": 13, + "np.mean": 1, + "np.linspace": 9, + "min": 10, + "max": 11, + "y": 10, + "np.ones": 11, + "x.size": 2, + "pl.plot": 9, + "**6": 6, + ".format": 11, + "pl.errorbar": 8, + "yerr": 8, + "linestyle": 8, + "marker": 4, + "pl.grid": 5, + "pl.legend": 5, + "loc": 5, + "pl.title": 5, + "pl.xlabel": 5, + "ur": 11, + "pl.ylabel": 5, + "pl.savefig": 5, + "pl.clf": 5, + "glanz": 13, + "matt": 13, + "schwarz": 13, + "weiss": 13, + "T0": 1, + "T0_err": 2, + "glanz_phi": 4, + "matt_phi": 4, + "schwarz_phi": 4, + "weiss_phi": 4, + "T_err": 7, + "sigma": 4, + "boltzmann": 12, + "T": 6, + "epsilon": 7, + "T**4": 1, + "glanz_popt": 3, + "glanz_pconv": 1, + "op.curve_fit": 6, + "matt_popt": 3, + "matt_pconv": 1, + "schwarz_popt": 3, + "schwarz_pconv": 1, + "weiss_popt": 3, + "weiss_pconv": 1, + "glanz_x": 3, + "glanz_y": 2, + "*glanz_popt": 1, + "color": 8, + "matt_x": 3, + "matt_y": 2, + "*matt_popt": 1, + "schwarz_x": 3, + "schwarz_y": 2, + "*schwarz_popt": 1, + "weiss_x": 3, + "weiss_y": 2, + "*weiss_popt": 1, + "np.sqrt": 17, + "glanz_pconv.diagonal": 2, + "matt_pconv.diagonal": 2, + "schwarz_pconv.diagonal": 2, + "weiss_pconv.diagonal": 2, + "xerr": 6, + "U_err/S": 4, + "header": 5, + "glanz_table": 2, + "row": 10, + ".size": 4, + "*T_err": 4, + "glanz_phi.size": 1, + "*U_err/S": 4, + "glanz_table.add_row": 1, + "matt_table": 2, + "matt_phi.size": 1, + "matt_table.add_row": 1, + "schwarz_table": 2, + "schwarz_phi.size": 1, + "schwarz_table.add_row": 1, + "weiss_table": 2, + "weiss_phi.size": 1, + "weiss_table.add_row": 1, + "T0**4": 1, + "phi": 5, + "c": 3, + "a*x": 1, + "dx": 6, + "d**": 2, + "dy": 4, + "dx_err": 3, + "np.abs": 1, + "dy_err": 2, + "popt": 5, + "pconv": 2, + "*popt": 2, + "pconv.diagonal": 3, + "table": 2, + "table.align": 1, + "dy.size": 1, + "*dy_err": 1, + "table.add_row": 1, + "U1": 3, + "I1": 3, + "U2": 2, + "I_err": 2, + "p": 1, + "R": 1, + "R_err": 2, + "/I1": 1, + "**2": 2, + "U1/I1**2": 1, + "phi_err": 3, + "alpha": 2, + "beta": 1, + "R0": 6, + "R0_err": 2, + "alpha*R0": 2, + "*np.sqrt": 6, + "*beta*R": 5, + "alpha**2*R0": 5, + "*beta*R0": 7, + "*beta*R0*T0": 2, + "epsilon_err": 2, + "f1": 1, + "f2": 1, + "f3": 1, + "alpha**2": 1, + "*beta": 1, + "*beta*T0": 1, + "*beta*R0**2": 1, + "f1**2": 1, + "f2**2": 1, + "f3**2": 1, + "parser": 1, + "argparse.ArgumentParser": 1, + "description": 1, + "#parser.add_argument": 3, + "metavar": 1, + "nargs": 1, + "help": 2, + "dest": 1, + "default": 1, + "action": 1, + "version": 6, + "parser.parse_args": 1, + "absolute_import": 1, + "division": 1, + "with_statement": 1, + "Cookie": 1, + "logging": 1, + "socket": 1, + "time": 1, + "tornado.escape": 1, + "utf8": 2, + "native_str": 4, + "parse_qs_bytes": 3, + "tornado": 3, + "httputil": 1, + "iostream": 1, + "tornado.netutil": 1, + "TCPServer": 2, + "stack_context": 1, + "tornado.util": 1, + "bytes_type": 2, + "ssl": 2, + "Python": 1, + "ImportError": 1, + "HTTPServer": 1, + "request_callback": 4, + "no_keep_alive": 4, + "io_loop": 3, + "xheaders": 4, + "ssl_options": 3, + "self.request_callback": 5, + "self.no_keep_alive": 4, + "self.xheaders": 3, + "TCPServer.__init__": 1, + "handle_stream": 1, + "stream": 4, + "address": 4, + "HTTPConnection": 2, + "_BadRequestException": 5, + "Exception": 2, + "self.stream": 1, + "self.address": 3, + "self._request": 7, + "self._request_finished": 4, + "self._header_callback": 3, + "stack_context.wrap": 2, + "self._on_headers": 1, + "self.stream.read_until": 2, + "self._write_callback": 5, + "write": 2, + "chunk": 5, + "callback": 7, + "self.stream.closed": 1, + "self.stream.write": 2, + "self._on_write_complete": 1, + "finish": 2, + "self.stream.writing": 2, + "self._finish_request": 2, + "_on_write_complete": 1, + "_finish_request": 1, + "disconnect": 5, + "connection_header": 5, + "self._request.headers.get": 2, + "connection_header.lower": 1, + "self._request.supports_http_1_1": 1, + "self._request.headers": 1, + "self._request.method": 2, + "self.stream.close": 2, + "_on_headers": 1, + "data.decode": 1, + "eol": 3, + "data.find": 1, + "start_line": 1, + "method": 5, + "uri": 5, + "start_line.split": 1, + "version.startswith": 1, + "headers": 5, + "httputil.HTTPHeaders.parse": 1, + "self.stream.socket": 1, + "socket.AF_INET": 2, + "socket.AF_INET6": 1, + "remote_ip": 8, + "HTTPRequest": 2, + "connection": 5, + "content_length": 6, + "headers.get": 2, + "int": 1, + "self.stream.max_buffer_size": 1, + "self.stream.read_bytes": 1, + "self._on_request_body": 1, + "logging.info": 1, + "_on_request_body": 1, + "self._request.body": 2, + "content_type": 1, + "content_type.startswith": 2, + "arguments": 2, + "arguments.iteritems": 2, + "self._request.arguments.setdefault": 1, + "content_type.split": 1, + "sep": 2, + "field.strip": 1, + ".partition": 1, + "httputil.parse_multipart_form_data": 1, + "self._request.arguments": 1, + "self._request.files": 1, + "logging.warning": 1, + "body": 2, + "protocol": 4, + "host": 2, + "files": 2, + "self.method": 1, + "self.uri": 2, + "self.version": 2, + "self.headers": 4, + "httputil.HTTPHeaders": 1, + "self.body": 1, + "connection.xheaders": 1, + "self.remote_ip": 4, + "self.headers.get": 5, + "self._valid_ip": 1, + "self.protocol": 7, + "connection.stream": 1, + "iostream.SSLIOStream": 1, + "self.host": 2, + "self.files": 1, + "self.connection": 1, + "self._start_time": 3, + "time.time": 3, + "self._finish_time": 4, + "self.path": 1, + "self.query": 2, + "uri.partition": 1, + "self.arguments": 2, + "supports_http_1_1": 1, + "@property": 1, + "cookies": 1, + "self._cookies": 3, + "Cookie.SimpleCookie": 1, + "self._cookies.load": 1, + "self.connection.write": 1, + "self.connection.finish": 1, + "full_url": 1, + "request_time": 1, + "get_ssl_certificate": 1, + "self.connection.stream.socket.getpeercert": 1, + "ssl.SSLError": 1, + "n": 3, + "_valid_ip": 1, + "ip": 2, + "res": 2, + "socket.getaddrinfo": 1, + "socket.AF_UNSPEC": 1, + "socket.SOCK_STREAM": 1, + "socket.AI_NUMERICHOST": 1, + "socket.gaierror": 1, + "e.args": 1, + "socket.EAI_NONAME": 1 }, - "Logos": { - "ctor": 1, - "retain": 1, - "release": 1, - "nil": 2, - "return": 2, - "OptionalHooks": 2, - "]": 2, - "RuntimeAccessibleClass": 1, - "c": 1, - "[": 2, - "NSObject": 1, - "DEF": 1, - "}": 4, - ";": 8, - "{": 4, - "b": 1, - "B": 1, - "a": 1, - ")": 8, - "(": 8, - "-": 3, - "%": 15, - "init": 3, - "ABC": 2, - "OptionalCondition": 1, + "R": { + "SHEBANG#!Rscript": 1, + "ParseDates": 2, + "<": 12, + "-": 12, + "function": 3, + "(": 28, + "lines": 4, + ")": 28, + "{": 3, + "dates": 3, + "matrix": 2, + "unlist": 2, + "strsplit": 2, + "ncol": 2, + "byrow": 2, + "TRUE": 3, + "days": 2, + "[": 3, + "]": 3, + "times": 2, + "hours": 2, + "all.days": 2, + "c": 2, + "all.hours": 2, + "data.frame": 1, + "Day": 2, + "factor": 2, + "levels": 2, + "Hour": 2, + "}": 3, + "Main": 2, + "system": 1, + "intern": 1, + "punchcard": 4, + "as.data.frame": 1, + "table": 1, + "ggplot2": 6, + "ggplot": 1, + "aes": 2, + "y": 1, + "x": 1, + "+": 2, + "geom_point": 1, + "size": 1, + "Freq": 1, + "scale_size": 1, + "range": 1, + "ggsave": 1, + "filename": 1, + "plot": 1, + "width": 1, + "height": 1, + "hello": 2, + "print": 1 + }, + "Racket": { + ";": 3, + "Clean": 1, + "simple": 1, + "and": 1, + "efficient": 1, + "code": 1, + "-": 100, + "that": 2, + "s": 1, + "the": 3, + "power": 1, + "of": 4, + "Racket": 2, + "http": 1, + "//racket": 1, + "lang.org/": 1, + "(": 25, + "define": 1, + "bottles": 4, + "n": 8, + "more": 2, + ")": 25, + "printf": 2, + "case": 1, + "[": 16, + "]": 16, + "else": 1, "if": 1, - "id": 2, - "subclass": 1, - "orig": 2, - "hook": 2, - "void": 1, - "group": 1, + "for": 3, + "in": 3, + "range": 1, + "sub1": 1, + "displayln": 2, + "SHEBANG#!sh": 1, + "#": 2, + "|": 2, + "*": 2, + "scheme": 1, + "exec": 1, + "racket": 1, + "um": 1, + "require": 2, + "racket/file": 1, + "racket/path": 1, + "racket/list": 1, + "racket/string": 1, + "syntax": 1, + "racket/base": 1, + "#lang": 1, + "scribble/manual": 1, + "@": 3, + "scribble/bnf": 1, + "@title": 1, + "{": 2, + "Scribble": 3, + "The": 1, + "Documentation": 1, + "Tool": 1, + "}": 2, + "@author": 1, + "is": 3, + "a": 1, + "collection": 1, + "tools": 1, + "creating": 1, + "prose": 2, + "documents": 1, + "papers": 1, + "books": 1, + "library": 1, + "documentation": 1, + "etc.": 1, + "HTML": 1, + "or": 2, + "PDF": 1, + "via": 1, + "Latex": 1, + "form.": 1, + "More": 1, + "generally": 1, + "helps": 1, + "you": 1, + "write": 1, + "programs": 1, + "are": 1, + "rich": 1, + "textual": 1, + "content": 2, + "whether": 1, + "to": 2, + "be": 2, + "typeset": 1, + "any": 1, + "other": 1, + "form": 1, + "text": 1, + "generated": 1, + "programmatically.": 1, + "This": 1, + "document": 1, + "itself": 1, + "written": 1, + "using": 1, + "Scribble.": 1, + "You": 1, + "can": 1, + "see": 1, + "its": 1, + "source": 1, + "at": 1, + "let": 1, + "url": 3, + "link": 1, + "starting": 1, + "with": 1, + "@filepath": 1, + "scribble.scrbl": 1, + "file.": 1, + "@table": 1, + "contents": 1, + "@include": 8, + "section": 9, + "@index": 1 + }, + "Ragel in Ruby Host": { + "begin": 3, + "%": 34, + "{": 19, + "machine": 3, + "ephemeris_parser": 1, + ";": 38, + "action": 9, + "mark": 6, + "p": 8, + "}": 19, + "parse_start_time": 2, + "parser.start_time": 1, + "data": 15, + "[": 20, + "mark..p": 4, + "]": 20, + ".pack": 6, + "(": 33, + ")": 33, + "parse_stop_time": 2, + "parser.stop_time": 1, + "parse_step_size": 2, + "parser.step_size": 1, + "parse_ephemeris_table": 2, + "fhold": 1, + "parser.ephemeris_table": 1, + "ws": 2, + "t": 1, + "r": 1, + "n": 1, + "adbc": 2, + "|": 11, + "year": 2, + "digit": 7, + "month": 2, + "upper": 1, + "lower": 1, + "date": 2, + "hours": 2, + "minutes": 2, + "seconds": 2, + "tz": 2, + "datetime": 3, + "time_unit": 2, + "s": 4, + "soe": 2, + "eoe": 2, + "ephemeris_table": 3, + "alnum": 1, + "*": 9, + "-": 5, + "./": 1, + "start_time": 4, + "space*": 2, + "stop_time": 4, + "step_size": 3, + "+": 7, + "ephemeris": 2, + "main": 3, + "any*": 3, + "end": 23, + "require": 1, + "module": 1, + "Tengai": 1, + "EPHEMERIS_DATA": 2, + "Struct.new": 1, + ".freeze": 1, + "class": 3, + "EphemerisParser": 1, + "<": 1, + "def": 10, + "self.parse": 1, + "parser": 2, + "new": 1, + "data.unpack": 1, + "if": 4, + "data.is_a": 1, + "String": 1, + "eof": 3, + "data.length": 3, + "write": 9, + "init": 3, + "exec": 3, + "time": 6, + "super": 2, + "parse_time": 3, + "private": 1, + "DateTime.parse": 1, + "simple_scanner": 1, + "Emit": 4, + "emit": 4, + "ts": 4, + "..": 1, + "te": 1, + "foo": 8, + "any": 4, + "#": 4, + "SimpleScanner": 1, + "attr_reader": 2, + "path": 8, + "initialize": 2, + "@path": 2, + "stdout.puts": 2, + "perform": 2, + "pe": 4, + "ignored": 4, + "leftover": 8, + "File.open": 2, + "do": 2, + "f": 2, + "while": 2, + "chunk": 2, + "f.read": 2, + "ENV": 2, + ".to_i": 2, + "chunk.unpack": 2, + "||": 1, + "ts..pe": 1, + "else": 2, + "SimpleScanner.new": 1, + "ARGV": 2, + "s.perform": 2, + "simple_tokenizer": 1, + "MyTs": 2, + "my_ts": 6, + "MyTe": 2, + "my_te": 6, + "my_ts...my_te": 1, + "nil": 4, + "SimpleTokenizer": 1, + "my_ts..": 1, + "SimpleTokenizer.new": 1 + }, + "RDoc": { + "RDoc": 7, + "-": 9, + "Ruby": 4, + "Documentation": 2, + "System": 1, + "home": 1, + "https": 3, + "//github.com/rdoc/rdoc": 1, + "rdoc": 7, + "http": 1, + "//docs.seattlerb.org/rdoc": 1, + "bugs": 1, + "//github.com/rdoc/rdoc/issues": 1, + "code": 1, + "quality": 1, + "{": 1, + "": 1, + "src=": 1, + "alt=": 1, + "}": 1, + "[": 3, + "//codeclimate.com/github/rdoc/rdoc": 1, + "]": 3, + "Description": 1, + "produces": 1, + "HTML": 1, + "and": 9, + "command": 4, + "line": 1, + "documentation": 8, + "for": 9, + "projects.": 1, + "includes": 1, + "the": 12, + "+": 8, + "ri": 1, + "tools": 1, + "generating": 1, + "displaying": 1, + "from": 1, + "line.": 1, + "Generating": 1, + "Once": 1, + "installed": 1, + "you": 3, + "can": 2, + "create": 1, + "using": 1, + "options": 1, + "names...": 1, + "For": 1, + "an": 1, + "up": 1, + "to": 4, + "date": 1, + "option": 1, + "summary": 1, + "type": 2, + "help": 1, + "A": 1, + "typical": 1, + "use": 1, + "might": 1, + "be": 3, + "generate": 1, + "a": 5, + "package": 1, + "of": 2, + "source": 2, + "(": 3, + "such": 1, + "as": 1, + "itself": 1, + ")": 3, + ".": 2, + "This": 2, + "generates": 1, + "all": 1, + "C": 1, + "files": 2, + "in": 4, + "below": 1, + "current": 1, + "directory.": 1, + "These": 1, + "will": 1, + "stored": 1, + "tree": 1, + "starting": 1, + "subdirectory": 1, + "doc": 1, + "You": 2, + "make": 2, + "this": 1, + "slightly": 1, + "more": 1, + "useful": 1, + "your": 1, + "readers": 1, + "by": 1, + "having": 1, + "index": 1, + "page": 1, + "contain": 1, + "primary": 1, + "file.": 1, + "In": 1, + "our": 1, + "case": 1, + "we": 1, + "could": 1, + "#": 1, + "rdoc/rdoc": 1, + "s": 1, + "OK": 1, + "file": 1, + "bug": 1, + "report": 1, + "anything": 1, + "t": 1, + "figure": 1, + "out": 1, + "how": 1, + "produce": 1, + "output": 1, + "like": 1, + "that": 1, + "is": 4, + "probably": 1, + "bug.": 1, + "License": 1, + "Copyright": 1, + "c": 2, + "Dave": 1, + "Thomas": 1, + "The": 1, + "Pragmatic": 1, + "Programmers.": 1, + "Portions": 2, + "Eric": 1, + "Hodel.": 1, + "copyright": 1, + "others": 1, + "see": 1, + "individual": 1, + "LEGAL.rdoc": 1, + "details.": 1, + "free": 1, + "software": 2, + "may": 1, + "redistributed": 1, + "under": 1, + "terms": 1, + "specified": 1, + "LICENSE.rdoc.": 1, + "Warranty": 1, + "provided": 1, + "without": 2, + "any": 1, + "express": 1, + "or": 1, + "implied": 2, + "warranties": 2, + "including": 1, + "limitation": 1, + "merchantability": 1, + "fitness": 1, + "particular": 1, + "purpose.": 1 + }, + "Rebol": { + "REBOL": 1, + "[": 3, + "]": 3, + "hello": 2, + "func": 1, + "print": 1 + }, + "Ruby": { + "load": 3, + "Dir": 4, + "[": 56, + "]": 56, + ".each": 4, + "{": 68, + "|": 91, + "plugin": 3, + "(": 244, + ")": 256, + "}": 68, + "task": 2, + "default": 2, + "do": 35, + "puts": 12, + "end": 236, + "module": 8, + "Foo": 1, + "require": 58, + "class": 7, + "Formula": 2, + "include": 3, + "FileUtils": 1, + "attr_reader": 5, + "name": 51, + "path": 16, + "url": 12, + "version": 10, + "homepage": 2, + "specs": 14, + "downloader": 6, + "standard": 2, + "unstable": 2, + "head": 3, + "bottle_version": 2, + "bottle_url": 3, + "bottle_sha1": 2, + "buildpath": 1, + "def": 143, + "initialize": 2, + "nil": 21, + "set_instance_variable": 12, + "if": 72, + "@head": 4, + "and": 6, + "not": 3, + "@url": 8, + "or": 7, + "ARGV.build_head": 2, + "@version": 10, + "@spec_to_use": 4, + "@unstable": 2, + "else": 25, + "@standard.nil": 1, + "SoftwareSpecification.new": 3, + "@specs": 3, + "@standard": 3, + "raise": 17, + "@url.nil": 1, + "@name": 3, + "validate_variable": 7, + "@path": 1, + "path.nil": 1, + "self.class.path": 1, + "Pathname.new": 3, + "||": 22, + "@spec_to_use.detect_version": 1, + "CHECKSUM_TYPES.each": 1, + "type": 10, + "@downloader": 2, + "download_strategy.new": 2, + "@spec_to_use.url": 1, + "@spec_to_use.specs": 1, + "@bottle_url": 2, + "bottle_base_url": 1, + "+": 47, + "bottle_filename": 1, + "self": 11, + "@bottle_sha1": 2, + "installed": 2, + "return": 25, + "installed_prefix.children.length": 1, + "rescue": 13, + "false": 26, + "explicitly_requested": 1, + "ARGV.named.empty": 1, + "ARGV.formulae.include": 1, + "linked_keg": 1, + "HOMEBREW_REPOSITORY/": 2, + "/@name": 1, + "installed_prefix": 1, + "head_prefix": 2, + "HOMEBREW_CELLAR": 2, + "head_prefix.directory": 1, + "prefix": 14, + "rack": 1, + ";": 41, + "prefix.parent": 1, + "bin": 1, + "doc": 1, + "info": 2, + "lib": 1, + "libexec": 1, + "man": 9, + "man1": 1, + "man2": 1, + "man3": 1, + "man4": 1, + "man5": 1, + "man6": 1, + "man7": 1, + "man8": 1, + "sbin": 1, + "share": 1, + "etc": 1, + "HOMEBREW_PREFIX": 2, + "var": 1, + "plist_name": 2, + "plist_path": 1, + "download_strategy": 1, + "@spec_to_use.download_strategy": 1, + "cached_download": 1, + "@downloader.cached_location": 1, + "caveats": 1, + "options": 3, + "patches": 2, + "keg_only": 2, + "self.class.keg_only_reason": 1, + "fails_with": 2, + "cc": 3, + "self.class.cc_failures.nil": 1, + "Compiler.new": 1, + "unless": 15, + "cc.is_a": 1, + "Compiler": 1, + "self.class.cc_failures.find": 1, + "failure": 1, + "next": 1, + "failure.compiler": 1, + "cc.name": 1, + "failure.build.zero": 1, + "failure.build": 1, + "cc.build": 1, + "skip_clean": 2, + "true": 15, + "self.class.skip_clean_all": 1, + "to_check": 2, + "path.relative_path_from": 1, + ".to_s": 3, + "self.class.skip_clean_paths.include": 1, + "brew": 2, + "stage": 2, + "begin": 9, + "patch": 3, + "yield": 5, + "Interrupt": 2, + "RuntimeError": 1, + "SystemCallError": 1, + "e": 8, + "#": 100, + "don": 1, + "config.log": 2, + "t": 3, + "a": 10, + "std_autotools": 1, + "variant": 1, + "because": 1, + "autotools": 1, + "is": 3, + "lot": 1, + "std_cmake_args": 1, + "%": 10, + "W": 1, + "-": 34, + "DCMAKE_INSTALL_PREFIX": 1, + "DCMAKE_BUILD_TYPE": 1, + "None": 1, + "DCMAKE_FIND_FRAMEWORK": 1, + "LAST": 1, + "Wno": 1, + "dev": 1, + "self.class_s": 2, + "#remove": 1, + "invalid": 1, + "characters": 1, + "then": 4, + "camelcase": 1, + "it": 1, + "name.capitalize.gsub": 1, + "/": 34, + "_.": 1, + "s": 2, + "zA": 1, + "Z0": 1, + "upcase": 1, + ".gsub": 5, + "self.names": 1, + ".map": 6, + "f": 11, + "File.basename": 2, + ".sort": 2, + "self.all": 1, + "map": 1, + "self.map": 1, + "rv": 3, + "each": 1, + "<<": 15, + "self.each": 1, + "names.each": 1, + "n": 4, + "Formula.factory": 2, + "onoe": 2, + "inspect": 2, + "self.aliases": 1, + "self.canonical_name": 1, + "name.to_s": 3, + "name.kind_of": 2, + "Pathname": 2, + "formula_with_that_name": 1, + "HOMEBREW_REPOSITORY": 4, + "possible_alias": 1, + "possible_cached_formula": 1, + "HOMEBREW_CACHE_FORMULA": 2, + "name.include": 2, + "r": 3, + ".": 3, + "tapd": 1, + ".downcase": 2, + "tapd.find_formula": 1, + "relative_pathname": 1, + "relative_pathname.stem.to_s": 1, + "tapd.directory": 1, + "elsif": 7, + "formula_with_that_name.file": 1, + "formula_with_that_name.readable": 1, + "possible_alias.file": 1, + "possible_alias.realpath.basename": 1, + "possible_cached_formula.file": 1, + "possible_cached_formula.to_s": 1, + "self.factory": 1, + "https": 1, + "ftp": 1, + "//": 3, + ".basename": 1, + "target_file": 6, + "name.basename": 1, + "HOMEBREW_CACHE_FORMULA.mkpath": 1, + "FileUtils.rm": 1, + "force": 1, + "curl": 1, + "install_type": 4, + "from_url": 1, + "Formula.canonical_name": 1, + ".rb": 1, + "path.stem": 1, + "from_path": 1, + "path.to_s": 3, + "Formula.path": 1, + "from_name": 2, + "klass_name": 2, + "klass": 16, + "Object.const_get": 1, + "NameError": 2, + "LoadError": 3, + "klass.new": 2, + "FormulaUnavailableError.new": 1, + "tap": 1, + "path.realpath.to_s": 1, + "/Library/Taps/": 1, + "w": 6, + "self.path": 1, + "mirrors": 4, + "self.class.mirrors": 1, + "deps": 1, + "self.class.dependencies.deps": 1, + "external_deps": 1, + "self.class.dependencies.external_deps": 1, + "recursive_deps": 1, + "Formula.expand_deps": 1, + ".flatten.uniq": 1, + "self.expand_deps": 1, + "f.deps.map": 1, + "dep": 3, + "f_dep": 3, + "dep.to_s": 1, + "expand_deps": 1, + "protected": 1, + "system": 1, + "cmd": 6, + "*args": 16, + "pretty_args": 1, + "args.dup": 1, + "pretty_args.delete": 1, + "ARGV.verbose": 2, + "ohai": 3, + ".strip": 1, + "removed_ENV_variables": 2, + "case": 5, + "args.empty": 1, + "cmd.split": 1, + ".first": 1, + "when": 11, + "ENV.remove_cc_etc": 1, + "safe_system": 4, + "rd": 1, + "wr": 3, + "IO.pipe": 1, + "pid": 1, + "fork": 1, + "rd.close": 1, + "stdout.reopen": 1, + "stderr.reopen": 1, + "args.collect": 1, + "arg": 1, + "arg.to_s": 1, + "exec": 2, + "exit": 2, + "never": 1, + "gets": 1, + "here": 1, + "threw": 1, + "failed": 3, + "wr.close": 1, + "out": 4, + "rd.read": 1, + "until": 1, + "rd.eof": 1, + "Process.wait": 1, + ".success": 1, + "removed_ENV_variables.each": 1, + "key": 8, + "value": 4, + "ENV": 4, + "ENV.kind_of": 1, + "Hash": 3, + "BuildError.new": 1, + "args": 5, + "public": 2, + "fetch": 2, + "install_bottle": 1, + "CurlBottleDownloadStrategy.new": 1, + "mirror_list": 2, + "HOMEBREW_CACHE.mkpath": 1, + "fetched": 4, + "downloader.fetch": 1, + "CurlDownloadStrategyError": 1, + "mirror_list.empty": 1, + "mirror_list.shift.values_at": 1, + "retry": 2, + "checksum_type": 2, + "CHECKSUM_TYPES.detect": 1, + "instance_variable_defined": 2, + "verify_download_integrity": 2, + "fn": 2, + "args.length": 1, + "md5": 2, + "supplied": 4, + "instance_variable_get": 2, + "type.to_s.upcase": 1, + "hasher": 2, + "Digest.const_get": 1, + "hash": 2, + "fn.incremental_hash": 1, + "supplied.empty": 1, + "message": 2, + "EOF": 2, + "mismatch": 1, + "Expected": 1, + "Got": 1, + "Archive": 1, + "To": 1, + "an": 1, + "incomplete": 1, + "download": 1, + "remove": 1, + "the": 8, + "file": 1, + "above.": 1, + "supplied.upcase": 1, + "hash.upcase": 1, + "opoo": 1, + "private": 3, + "CHECKSUM_TYPES": 2, + "sha1": 4, + "sha256": 1, + ".freeze": 1, + "fetched.kind_of": 1, + "mktemp": 1, + "downloader.stage": 1, + "@buildpath": 2, + "Pathname.pwd": 1, + "patch_list": 1, + "Patches.new": 1, + "patch_list.empty": 1, + "patch_list.external_patches": 1, + "patch_list.download": 1, + "patch_list.each": 1, + "p": 2, + "p.compression": 1, + "gzip": 1, + "p.compressed_filename": 2, + "bzip2": 1, + "*": 3, + "p.patch_args": 1, + "v": 2, + "v.to_s.empty": 1, + "s/": 1, + "class_value": 3, + "self.class.send": 1, + "instance_variable_set": 1, + "self.method_added": 1, + "method": 4, + "self.attr_rw": 1, + "attrs": 1, + "attrs.each": 1, + "attr": 4, + "class_eval": 1, + "Q": 1, + "val": 10, + "val.nil": 3, + "@#": 2, + "attr_rw": 4, + "keg_only_reason": 1, + "skip_clean_all": 2, + "cc_failures": 1, + "stable": 2, + "&": 31, + "block": 30, + "block_given": 5, + "instance_eval": 2, + "ARGV.build_devel": 2, + "devel": 1, + "@mirrors": 3, + "clear": 1, + "from": 1, + "release": 1, + "bottle": 1, + "bottle_block": 1, + "Class.new": 2, + "self.version": 1, + "self.url": 1, + "self.sha1": 1, + "sha1.shift": 1, + "@sha1": 6, + "MacOS.cat": 1, + "String": 2, + "MacOS.lion": 1, + "self.data": 1, + "&&": 8, + "bottle_block.instance_eval": 1, + "@bottle_version": 1, + "bottle_block.data": 1, + "mirror": 1, + "@mirrors.uniq": 1, + "dependencies": 1, + "@dependencies": 1, + "DependencyCollector.new": 1, + "depends_on": 1, + "dependencies.add": 1, + "paths": 3, + "all": 1, + "@skip_clean_all": 2, + "@skip_clean_paths": 3, + ".flatten.each": 1, + "p.to_s": 2, + "@skip_clean_paths.include": 1, + "skip_clean_paths": 1, + "reason": 2, + "explanation": 1, + "@keg_only_reason": 1, + "KegOnlyReason.new": 1, + "explanation.to_s.chomp": 1, + "compiler": 3, + "@cc_failures": 2, + "CompilerFailures.new": 1, + "CompilerFailure.new": 2, + "Grit": 1, + "ActiveSupport": 1, + "Inflector": 1, + "extend": 2, + "pluralize": 3, + "word": 10, + "apply_inflections": 3, + "inflections.plurals": 1, + "singularize": 2, + "inflections.singulars": 1, + "camelize": 2, + "term": 1, + "uppercase_first_letter": 2, + "string": 4, + "term.to_s": 1, + "string.sub": 2, + "z": 7, + "d": 6, + "*/": 1, + "inflections.acronyms": 1, + ".capitalize": 1, + "inflections.acronym_regex": 2, + "b": 4, + "A": 5, + "Z_": 1, + "string.gsub": 1, + "_": 2, + "/i": 2, + "underscore": 3, + "camel_cased_word": 6, + "camel_cased_word.to_s.dup": 1, + "word.gsub": 4, + "Za": 1, + "Z": 3, + "word.tr": 1, + "word.downcase": 1, + "humanize": 2, + "lower_case_and_underscored_word": 1, + "result": 8, + "lower_case_and_underscored_word.to_s.dup": 1, + "inflections.humans.each": 1, + "rule": 4, + "replacement": 4, + "break": 4, + "result.sub": 2, + "result.gsub": 2, + "/_id": 1, + "result.tr": 1, + "match": 6, + "w/": 1, + ".upcase": 1, + "titleize": 1, + "": 1, + "capitalize": 1, + "Create": 1, + "of": 1, + "table": 2, + "like": 1, + "Rails": 1, + "does": 1, + "for": 1, + "models": 1, + "to": 1, + "names": 2, + "This": 1, + "uses": 1, + "on": 2, + "last": 4, + "in": 3, + "RawScaledScorer": 1, + "tableize": 2, + "class_name": 2, + "classify": 1, + "table_name": 1, + "table_name.to_s.sub": 1, + "/.*": 1, + "./": 1, + "dasherize": 1, + "underscored_word": 1, + "underscored_word.tr": 1, + "demodulize": 1, + "i": 2, + "path.rindex": 2, + "..": 1, + "deconstantize": 1, + "implementation": 1, + "based": 1, + "one": 1, + "facets": 1, + "id": 1, + "outside": 2, + "inside": 2, + "owned": 1, + "constant": 4, + "constant.ancestors.inject": 1, + "const": 3, + "ancestor": 3, + "Object": 1, + "ancestor.const_defined": 1, + "constant.const_get": 1, + "safe_constantize": 1, + "constantize": 1, + "e.message": 2, + "uninitialized": 1, + "wrong": 1, + "const_regexp": 3, + "e.name.to_s": 1, + "camel_cased_word.to_s": 1, + "ArgumentError": 1, + "/not": 1, + "missing": 1, + "ordinal": 1, + "number": 2, + ".include": 1, + "number.to_i.abs": 2, + "ordinalize": 1, + "nodoc": 3, + "parts": 1, + "camel_cased_word.split": 1, + "parts.pop": 1, + "parts.reverse.inject": 1, + "acc": 2, + "part": 1, + "part.empty": 1, + "rules": 1, + "word.to_s.dup": 1, + "word.empty": 1, + "inflections.uncountables.include": 1, + "result.downcase": 1, + "Z/": 1, + "rules.each": 1, + ".unshift": 1, + "File.dirname": 4, + "__FILE__": 3, + "For": 1, + "use/testing": 1, + "no": 1, + "gem": 1, + "require_all": 4, + "glob": 2, + "File.join": 6, + "Jekyll": 3, + "VERSION": 1, + "DEFAULTS": 2, + "Dir.pwd": 3, + "self.configuration": 1, + "override": 3, + "source": 2, + "config_file": 2, + "config": 3, + "YAML.load_file": 1, + "config.is_a": 1, + "stdout.puts": 1, + "err": 1, + "stderr.puts": 2, + "err.to_s": 1, + "DEFAULTS.deep_merge": 1, + ".deep_merge": 1, + "Jenkins": 1, + "Plugin": 1, + "Specification.new": 1, + "plugin.name": 1, + "plugin.display_name": 1, + "plugin.version": 1, + "plugin.description": 1, + "plugin.url": 1, + "plugin.developed_by": 1, + "plugin.uses_repository": 1, + "github": 1, + "plugin.depends_on": 1, + "#plugin.depends_on": 1, + "SHEBANG#!macruby": 1, + "object": 2, + "@user": 1, + "person": 1, + "attributes": 2, + "username": 1, + "email": 1, + "location": 1, + "created_at": 1, + "registered_at": 1, + "node": 2, + "role": 1, + "user": 1, + "user.is_admin": 1, + "child": 1, + "phone_numbers": 1, + "pnumbers": 1, + "extends": 1, + "node_numbers": 1, + "u": 1, + "partial": 1, + "u.phone_numbers": 1, + "Resque": 3, + "Helpers": 1, + "redis": 7, + "server": 11, + "/redis": 1, + "Redis.connect": 2, + "thread_safe": 2, + "namespace": 3, + "server.split": 2, + "host": 3, + "port": 4, + "db": 3, + "Redis.new": 1, + "resque": 2, + "@redis": 6, + "Redis": 3, + "Namespace.new": 2, + "Namespace": 1, + "@queues": 2, + "Hash.new": 1, + "h": 2, + "Queue.new": 1, + "coder": 3, + "@coder": 1, + "MultiJsonCoder.new": 1, + "attr_writer": 4, + "self.redis": 2, + "Redis.respond_to": 1, + "connect": 1, + "redis_id": 2, + "redis.respond_to": 2, + "redis.server": 1, + "nodes": 1, + "distributed": 1, + "redis.nodes.map": 1, + "n.id": 1, + ".join": 1, + "redis.client.id": 1, + "before_first_fork": 2, + "@before_first_fork": 2, + "before_fork": 2, + "@before_fork": 2, + "after_fork": 2, + "@after_fork": 2, + "to_s": 1, + "attr_accessor": 2, + "inline": 3, + "alias": 1, + "push": 1, + "queue": 24, + "item": 4, + "pop": 1, + ".pop": 1, + "ThreadError": 1, + "size": 3, + ".size": 1, + "peek": 1, + "start": 7, + "count": 5, + ".slice": 1, + "list_range": 1, + "decode": 2, + "redis.lindex": 1, + "Array": 2, + "redis.lrange": 1, + "queues": 3, + "redis.smembers": 1, + "remove_queue": 1, + ".destroy": 1, + "@queues.delete": 1, + "queue.to_s": 1, + "enqueue": 1, + "enqueue_to": 2, + "queue_from_class": 4, + "before_hooks": 2, + "Plugin.before_enqueue_hooks": 1, + ".collect": 2, + "hook": 9, + "klass.send": 4, + "before_hooks.any": 2, + "Job.create": 1, + "Plugin.after_enqueue_hooks": 1, + "dequeue": 1, + "Plugin.before_dequeue_hooks": 1, + "Job.destroy": 1, + "Plugin.after_dequeue_hooks": 1, + "klass.instance_variable_get": 1, + "@queue": 1, + "klass.respond_to": 1, + "klass.queue": 1, + "reserve": 1, + "Job.reserve": 1, + "validate": 1, + "NoQueueError.new": 1, + "klass.to_s.empty": 1, + "NoClassError.new": 1, + "workers": 2, + "Worker.all": 1, + "working": 2, + "Worker.working": 1, + "remove_worker": 1, + "worker_id": 2, + "worker": 1, + "Worker.find": 1, + "worker.unregister_worker": 1, + "pending": 1, + "queues.inject": 1, + "m": 3, + "k": 2, + "processed": 2, + "Stat": 2, + "queues.size": 1, + "workers.size.to_i": 1, + "working.size": 1, + "servers": 1, + "environment": 2, + "keys": 6, + "redis.keys": 1, + "key.sub": 1, + "SHEBANG#!ruby": 2, + "SHEBANG#!rake": 1, + "Sinatra": 2, + "Request": 2, + "<": 2, + "Rack": 1, + "accept": 1, + "@env": 2, + "entries": 1, + ".to_s.split": 1, + "entries.map": 1, + "accept_entry": 1, + ".sort_by": 1, + "first": 1, + "preferred_type": 1, + "self.defer": 1, + "pattern": 1, + "path.respond_to": 5, + "path.keys": 1, + "path.names": 1, + "TypeError": 1, + "URI": 3, + "URI.const_defined": 1, + "Parser": 1, + "Parser.new": 1, + "encoded": 1, + "char": 4, + "enc": 5, + "URI.escape": 1, + "helpers": 3, + "data": 1, + "reset": 1, + "set": 36, + "development": 6, + ".to_sym": 1, + "raise_errors": 1, + "Proc.new": 11, + "test": 5, + "dump_errors": 1, + "show_exceptions": 1, + "sessions": 1, + "logging": 2, + "protection": 1, + "method_override": 4, + "use_code": 1, + "default_encoding": 1, + "add_charset": 1, + "javascript": 1, + "xml": 2, + "xhtml": 1, + "json": 1, + "settings.add_charset": 1, + "text": 3, + "session_secret": 3, + "SecureRandom.hex": 1, + "NotImplementedError": 1, + "Kernel.rand": 1, + "**256": 1, + "alias_method": 2, + "methodoverride": 2, + "run": 2, + "via": 1, + "at": 1, + "running": 2, + "built": 1, + "now": 1, + "http": 1, + "webrick": 1, + "bind": 1, + "ruby_engine": 6, + "defined": 1, + "RUBY_ENGINE": 2, + "server.unshift": 6, + "ruby_engine.nil": 1, + "absolute_redirects": 1, + "prefixed_redirects": 1, + "empty_path_info": 1, + "app_file": 4, + "root": 5, + "File.expand_path": 1, + "views": 1, + "reload_templates": 1, + "lock": 1, + "threaded": 1, + "public_folder": 3, + "static": 1, + "File.exist": 1, + "static_cache_control": 1, + "error": 3, + "Exception": 1, + "response.status": 1, + "content_type": 3, + "configure": 2, + "get": 2, + "filename": 2, + "png": 1, + "send_file": 1, + "NotFound": 1, + "HTML": 2, + "": 1, + "html": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "

": 1, + "doesn": 1, + "rsquo": 1, + "know": 1, + "this": 2, + "ditty.": 1, + "

": 1, + "": 1, + "src=": 1, + "
": 1, + "id=": 1, + "Try": 1, + "
": 1,
+      "request.request_method.downcase": 1,
+      "nend": 1,
+      "
": 1, + "
": 1, + "": 1, + "": 1, + "Application": 2, + "Base": 2, + "super": 3, + "self.register": 2, + "extensions": 6, + "added_methods": 2, + "extensions.map": 1, + "m.public_instance_methods": 1, + ".flatten": 1, + "Delegator.delegate": 1, + "Delegator": 1, + "self.delegate": 1, + "methods": 1, + "methods.each": 1, + "method_name": 5, + "define_method": 1, + "respond_to": 1, + "Delegator.target.send": 1, + "delegate": 1, + "put": 1, + "post": 1, + "delete": 1, + "template": 1, + "layout": 1, + "before": 1, + "after": 1, + "not_found": 1, + "mime_type": 1, + "enable": 1, + "disable": 1, + "use": 1, + "production": 1, + "settings": 2, + "target": 1, + "self.target": 1, + "Wrapper": 1, + "stack": 2, + "instance": 2, + "@stack": 1, + "@instance": 2, + "@instance.settings": 1, + "call": 1, + "env": 2, + "@stack.call": 1, + "self.new": 1, + "base": 4, + "base.class_eval": 1, + "Delegator.target.register": 1, + "self.helpers": 1, + "Delegator.target.helpers": 1, + "self.use": 1, + "Delegator.target.use": 1, + "SHEBANG#!python": 1 + }, + "Rust": { + "//": 20, + "use": 10, + "cell": 1, + "Cell": 2, + ";": 218, + "cmp": 1, + "Eq": 2, + "option": 4, + "result": 18, + "Result": 3, + "comm": 5, + "{": 213, + "stream": 21, + "Chan": 4, + "GenericChan": 1, + "GenericPort": 1, + "Port": 3, + "SharedChan": 4, + "}": 210, + "prelude": 1, + "*": 1, + "task": 39, + "rt": 29, + "task_id": 2, + "sched_id": 2, + "rust_task": 1, + "util": 4, + "replace": 8, + "mod": 5, + "local_data_priv": 1, + "pub": 26, + "local_data": 1, + "spawn": 15, + "///": 13, + "A": 6, + "handle": 3, + "to": 6, + "a": 9, + "scheduler": 6, + "#": 61, + "[": 61, + "deriving_eq": 3, + "]": 61, + "enum": 4, + "Scheduler": 4, + "SchedulerHandle": 2, + "(": 429, + ")": 434, + "Task": 2, + "TaskHandle": 2, + "TaskResult": 4, + "Success": 6, + "Failure": 6, + "impl": 3, + "for": 10, + "pure": 2, + "fn": 89, + "eq": 1, + "&": 30, + "self": 15, + "other": 4, + "-": 33, + "bool": 6, + "match": 4, + "|": 20, + "true": 9, + "_": 4, + "false": 7, + "ne": 1, + ".eq": 1, + "modes": 1, + "SchedMode": 4, + "Run": 3, + "on": 5, + "the": 10, + "default": 1, + "DefaultScheduler": 2, + "current": 1, + "CurrentScheduler": 2, + "specific": 1, + "ExistingScheduler": 1, + "PlatformThread": 2, + "All": 1, + "tasks": 1, + "run": 1, + "in": 3, + "same": 1, + "OS": 3, + "thread": 2, + "SingleThreaded": 4, + "Tasks": 2, + "are": 2, + "distributed": 2, + "among": 2, + "available": 1, + "CPUs": 1, + "ThreadPerCore": 2, + "Each": 1, + "runs": 1, + "its": 1, + "own": 1, + "ThreadPerTask": 1, + "fixed": 1, + "number": 1, + "of": 3, + "threads": 1, + "ManualThreads": 3, + "uint": 7, + "struct": 7, + "SchedOpts": 4, + "mode": 9, + "foreign_stack_size": 3, + "Option": 4, + "": 2, + "TaskOpts": 12, + "linked": 15, + "supervised": 11, + "mut": 16, + "notify_chan": 24, + "<": 3, + "": 3, + "sched": 10, + "TaskBuilder": 21, + "opts": 21, + "gen_body": 4, + "@fn": 2, + "v": 6, + "can_not_copy": 11, + "": 1, + "consumed": 4, + "default_task_opts": 4, + "body": 6, + "Identity": 1, + "function": 1, + "None": 23, + "doc": 1, + "hidden": 1, + "FIXME": 1, + "#3538": 1, + "priv": 1, + "consume": 1, + "if": 7, + "self.consumed": 2, + "fail": 17, + "Fake": 1, + "move": 1, + "let": 84, + "self.opts.notify_chan": 7, + "self.opts.linked": 4, + "self.opts.supervised": 5, + "self.opts.sched": 6, + "self.gen_body": 2, + "unlinked": 1, + "..": 8, + "self.consume": 7, + "future_result": 1, + "blk": 2, + "self.opts.notify_chan.is_some": 1, + "notify_pipe_po": 2, + "notify_pipe_ch": 2, + "Some": 8, + "Configure": 1, + "custom": 1, + "task.": 1, + "sched_mode": 1, + "add_wrapper": 1, + "wrapper": 2, + "prev_gen_body": 2, + "f": 38, + "x": 7, + "x.opts.linked": 1, + "x.opts.supervised": 1, + "x.opts.sched": 1, + "spawn_raw": 1, + "x.gen_body": 1, + "Runs": 1, + "while": 2, + "transfering": 1, + "ownership": 1, + "one": 1, + "argument": 1, + "child.": 1, + "spawn_with": 2, + "": 2, + "arg": 5, + "do": 49, + "self.spawn": 1, + "arg.take": 1, + "try": 5, + "": 2, + "T": 2, + "": 2, + "po": 11, + "ch": 26, + "": 1, + "fr_task_builder": 1, + "self.future_result": 1, + "+": 4, + "r": 6, + "fr_task_builder.spawn": 1, + "||": 11, + "ch.send": 11, + "unwrap": 3, + ".recv": 3, + "Ok": 3, + "po.recv": 10, + "Err": 2, + ".spawn": 9, + "spawn_unlinked": 6, + ".unlinked": 3, + "spawn_supervised": 5, + ".supervised": 2, + ".spawn_with": 1, + "spawn_sched": 8, + ".sched_mode": 2, + ".try": 1, + "yield": 16, + "Yield": 1, + "control": 1, + "unsafe": 31, + "task_": 2, + "rust_get_task": 5, + "killed": 3, + "rust_task_yield": 1, + "&&": 1, + "failing": 2, + "True": 1, + "running": 2, + "has": 1, + "failed": 1, + "rust_task_is_unwinding": 1, + "get_task": 1, + "Get": 1, + "get_task_id": 1, + "get_scheduler": 1, + "rust_get_sched_id": 6, + "unkillable": 5, + "": 3, + "U": 6, + "AllowFailure": 5, + "t": 24, + "*rust_task": 6, + "drop": 3, + "rust_task_allow_kill": 3, + "self.t": 4, + "_allow_failure": 2, + "rust_task_inhibit_kill": 3, + "The": 1, + "inverse": 1, + "unkillable.": 1, + "Only": 1, + "ever": 1, + "be": 2, + "used": 1, + "nested": 1, + ".": 1, + "rekillable": 1, + "DisallowFailure": 5, + "atomically": 3, + "DeferInterrupts": 5, + "rust_task_allow_yield": 1, + "_interrupts": 1, + "rust_task_inhibit_yield": 1, + "test": 31, + "should_fail": 11, + "ignore": 16, + "cfg": 16, + "windows": 14, + "test_cant_dup_task_builder": 1, + "b": 2, + "b.spawn": 2, + "should": 2, + "have": 1, + "been": 1, + "by": 1, + "previous": 1, + "call": 1, + "test_spawn_unlinked_unsup_no_fail_down": 1, + "grandchild": 1, + "sends": 1, + "port": 3, + "ch.clone": 2, + "iter": 8, + "repeat": 8, + "If": 1, + "first": 1, + "grandparent": 1, + "hangs.": 1, + "Shouldn": 1, + "leave": 1, + "child": 3, + "hanging": 1, + "around.": 1, + "test_spawn_linked_sup_fail_up": 1, + "fails": 4, + "parent": 2, + "_ch": 1, + "<()>": 6, + "opts.linked": 2, + "opts.supervised": 2, + "b0": 5, + "b1": 3, + "b1.spawn": 3, + "We": 1, + "get": 1, + "punted": 1, + "awake": 1, + "test_spawn_linked_sup_fail_down": 1, + "loop": 5, + "*both*": 1, + "mechanisms": 1, + "would": 1, + "wrong": 1, + "this": 1, + "didn": 1, + "s": 1, + "failure": 1, + "propagate": 1, + "across": 1, + "gap": 1, + "test_spawn_failure_propagate_secondborn": 1, + "test_spawn_failure_propagate_nephew_or_niece": 1, + "test_spawn_linked_sup_propagate_sibling": 1, + "test_run_basic": 1, + "Wrapper": 5, + "test_add_wrapper": 1, + "b0.add_wrapper": 1, + "ch.f.swap_unwrap": 4, + "test_future_result": 1, + ".future_result": 4, + "assert": 10, + "test_back_to_the_future_result": 1, + "test_try_success": 1, + "test_try_fail": 1, + "test_spawn_sched_no_threads": 1, + "u": 2, + "test_spawn_sched": 1, + "i": 3, + "int": 5, + "parent_sched_id": 4, + "child_sched_id": 5, + "else": 1, + "test_spawn_sched_childs_on_default_sched": 1, + "default_id": 2, + "nolink": 1, + "extern": 1, + "testrt": 9, + "rust_dbg_lock_create": 2, + "*libc": 6, + "c_void": 6, + "rust_dbg_lock_destroy": 2, + "lock": 13, + "rust_dbg_lock_lock": 3, + "rust_dbg_lock_unlock": 3, + "rust_dbg_lock_wait": 2, + "rust_dbg_lock_signal": 2, + "test_spawn_sched_blocking": 1, + "start_po": 1, + "start_ch": 1, + "fin_po": 1, + "fin_ch": 1, + "start_ch.send": 1, + "fin_ch.send": 1, + "start_po.recv": 1, + "pingpong": 3, + "": 2, + "val": 4, + "setup_po": 1, + "setup_ch": 1, + "parent_po": 2, + "parent_ch": 2, + "child_po": 2, + "child_ch": 4, + "setup_ch.send": 1, + "setup_po.recv": 1, + "child_ch.send": 1, + "fin_po.recv": 1, + "avoid_copying_the_body": 5, + "spawnfn": 2, + "p": 3, + "x_in_parent": 2, + "ptr": 2, + "addr_of": 2, + "as": 7, + "x_in_child": 4, + "p.recv": 1, + "test_avoid_copying_the_body_spawn": 1, + "test_avoid_copying_the_body_task_spawn": 1, + "test_avoid_copying_the_body_try": 1, + "test_avoid_copying_the_body_unlinked": 1, + "test_platform_thread": 1, + "test_unkillable": 1, + "pp": 2, + "*uint": 1, + "cast": 2, + "transmute": 2, + "_p": 1, + "test_unkillable_nested": 1, + "Here": 1, + "test_atomically_nested": 1, + "test_child_doesnt_ref_parent": 1, + "const": 1, + "generations": 2, + "child_no": 3, + "return": 1, + "test_sched_thread_per_core": 1, + "chan": 2, + "cores": 2, + "rust_num_threads": 1, + "reported_threads": 2, + "rust_sched_threads": 2, + "chan.send": 2, + "port.recv": 2, + "test_spawn_thread_on_demand": 1, + "max_threads": 2, + "running_threads": 2, + "rust_sched_current_nonlazy_threads": 2, + "port2": 1, + "chan2": 1, + "chan2.send": 1, + "running_threads2": 2, + "port2.recv": 1 + }, + "Sass": { + "blue": 7, + "#3bbfce": 2, + ";": 6, + "margin": 8, + "px": 3, + ".content_navigation": 1, + "{": 2, + "color": 4, + "}": 2, + ".border": 2, + "padding": 2, + "/": 4, + "border": 3, + "solid": 1, + ".content": 1, + "-": 3, + "navigation": 1, + "darken": 1, + "(": 1, + "%": 1, + ")": 1 + }, + "Scala": { + "SHEBANG#!sh": 2, + "exec": 2, + "scala": 2, + "#": 2, + "object": 2, + "Beers": 1, + "extends": 1, + "Application": 1, + "{": 10, + "def": 7, + "bottles": 3, + "(": 34, + "qty": 12, + "Int": 3, + "f": 4, + "String": 5, + ")": 34, + "//": 4, + "higher": 1, + "-": 4, + "order": 1, + "functions": 2, + "match": 2, + "case": 5, + "+": 29, + "x": 3, + "}": 11, + "beers": 3, + "sing": 3, + "implicit": 3, + "song": 3, + "takeOne": 2, + "nextQty": 2, + "nested": 1, + "if": 2, + "else": 2, + "refrain": 2, + ".capitalize": 1, + "tail": 1, + "recursion": 1, + "val": 2, + "headOfSong": 1, + "println": 2, + "parameter": 1, + "name": 4, + "version": 1, + "organization": 1, + "libraryDependencies": 3, + "%": 12, + "Seq": 3, + "libosmVersion": 4, + "from": 1, + "maxErrors": 1, + "pollInterval": 1, + "javacOptions": 1, + "scalacOptions": 1, + "scalaVersion": 1, + "initialCommands": 2, + "in": 12, + "console": 1, + "mainClass": 2, + "Compile": 4, + "packageBin": 1, + "Some": 6, + "run": 1, + "watchSources": 1, + "<+=>": 1, + "baseDirectory": 1, + "map": 1, + "_": 1, + "input": 1, + "add": 2, + "a": 2, + "maven": 2, + "style": 2, + "repository": 2, + "resolvers": 2, + "at": 4, + "url": 3, + "sequence": 1, + "of": 1, + "repositories": 1, + "define": 1, + "the": 4, + "to": 4, + "publish": 1, + "publishTo": 1, + "set": 2, + "Ivy": 1, + "logging": 1, + "be": 1, + "highest": 1, + "level": 1, + "ivyLoggingLevel": 1, + "UpdateLogging": 1, + "Full": 1, + "disable": 1, + "updating": 1, + "dynamic": 1, + "revisions": 1, + "including": 1, + "SNAPSHOT": 1, + "versions": 1, + "offline": 1, + "true": 5, + "prompt": 1, + "for": 1, + "this": 1, + "build": 1, + "include": 1, + "project": 1, + "id": 1, + "shellPrompt": 2, + "ThisBuild": 1, + "state": 3, + "Project.extract": 1, + ".currentRef.project": 1, + "System.getProperty": 1, + "showTiming": 1, + "false": 7, + "showSuccess": 1, + "timingFormat": 1, + "import": 1, + "java.text.DateFormat": 1, + "DateFormat.getDateTimeInstance": 1, + "DateFormat.SHORT": 2, + "crossPaths": 1, + "fork": 2, + "Test": 3, + "javaOptions": 1, + "parallelExecution": 2, + "javaHome": 1, + "file": 3, + "scalaHome": 1, + "aggregate": 1, + "clean": 1, + "logLevel": 2, + "compile": 1, + "Level.Warn": 2, + "persistLogLevel": 1, + "Level.Debug": 1, + "traceLevel": 2, + "unmanagedJars": 1, + "publishArtifact": 2, + "packageDoc": 2, + "artifactClassifier": 1, + "retrieveManaged": 1, + "credentials": 2, + "Credentials": 2, + "Path.userHome": 1, + "/": 2, + "HelloWorld": 1, + "main": 1, + "args": 1, + "Array": 1, + "[": 1, + "]": 1 + }, + "Scheme": { + "(": 359, + "import": 1, + "rnrs": 1, + ")": 373, + "only": 1, + "surfage": 4, + "s1": 1, + "lists": 1, + "filter": 4, + "-": 188, + "map": 4, + "gl": 12, + "glut": 2, + "dharmalab": 2, + "records": 1, + "define": 27, + "record": 5, + "type": 5, + "math": 1, + "basic": 1, + "agave": 4, + "glu": 1, + "compat": 1, + "geometry": 1, + "pt": 49, + "glamour": 2, + "window": 2, + "misc": 1, + "s19": 1, + "time": 24, + "s27": 1, + "random": 27, + "bits": 1, + "s42": 1, + "eager": 1, + "comprehensions": 1, + ";": 1684, + "utilities": 1, + "say": 9, + ".": 1, + "args": 2, + "for": 7, + "each": 7, + "display": 4, + "newline": 2, + "translate": 6, + "p": 6, + "glTranslated": 1, + "x": 8, + "y": 3, + "radians": 8, + "/": 7, + "pi": 2, + "degrees": 2, + "angle": 6, + "a": 19, + "cos": 1, + "sin": 1, + "current": 15, + "in": 14, + "nanoseconds": 2, + "let": 2, + "val": 3, + "+": 28, + "second": 1, + "nanosecond": 1, + "seconds": 12, + "micro": 1, + "milli": 1, + "base": 2, + "step": 1, + "score": 5, + "level": 5, + "ships": 1, + "spaceship": 5, + "fields": 4, + "mutable": 14, + "pos": 16, + "vel": 4, + "theta": 1, + "force": 1, + "particle": 8, + "birth": 2, + "lifetime": 1, + "color": 2, + "particles": 11, + "asteroid": 14, + "radius": 6, + "number": 3, + "of": 3, + "starting": 3, + "asteroids": 15, + "#f": 5, + "bullet": 16, + "pack": 12, + "is": 8, + "initialize": 1, + "size": 1, + "title": 1, + "reshape": 1, + "width": 8, + "height": 8, + "source": 2, + "randomize": 1, + "default": 1, + "wrap": 4, + "mod": 2, + "ship": 8, + "make": 11, + "ammo": 9, + "set": 19, + "list": 6, + "ec": 6, + "i": 6, + "inexact": 16, + "integer": 25, + "buffered": 1, + "procedure": 1, + "lambda": 12, + "background": 1, + "glColor3f": 5, + "matrix": 5, + "excursion": 5, + "ship.pos": 5, + "glRotated": 2, + "ship.theta": 10, + "glutWireCone": 1, + "par": 6, + "c": 4, + "vector": 6, + "ref": 3, + "glutWireSphere": 3, + "bullets": 7, + "pack.pos": 3, + "glutWireCube": 1, + "last": 3, + "dt": 7, + "update": 2, + "system": 2, + "pt*n": 8, + "ship.vel": 5, + "pack.vel": 1, + "cond": 2, + "par.birth": 1, + "par.lifetime": 1, + "else": 2, + "par.pos": 2, + "par.vel": 1, + "bullet.birth": 1, + "bullet.pos": 2, + "bullet.vel": 1, + "a.pos": 2, + "a.vel": 1, + "if": 1, + "<": 1, + "a.radius": 1, + "contact": 2, + "b": 4, + "when": 5, + "<=>": 3, + "distance": 3, + "begin": 1, + "1": 2, + "f": 1, + "append": 4, + "4": 1, + "50": 4, + "0": 7, + "100": 6, + "2": 1, + "n": 2, + "null": 1, + "10": 1, + "5": 1, + "glutIdleFunc": 1, + "glutPostRedisplay": 1, + "glutKeyboardFunc": 1, + "key": 2, + "case": 1, + "char": 1, + "#": 6, + "w": 1, + "d": 1, + "s": 1, + "space": 1, + "cons": 1, + "glutMainLoop": 1 + }, + "Scilab": { + "function": 1, + "[": 1, + "a": 4, + "b": 4, + "]": 1, + "myfunction": 1, + "(": 7, + "d": 2, + "e": 4, + "f": 2, + ")": 7, + "+": 5, + "%": 4, + "pi": 3, + ";": 7, + "cos": 1, + "cosh": 1, + "if": 1, + "then": 1, + "-": 2, + "e.field": 1, + "else": 1, + "home": 1, + "return": 1, + "end": 1, + "myvar": 1, + "endfunction": 1, + "disp": 1, + "assert_checkequal": 1, + "assert_checkfalse": 1 + }, + "SCSS": { + "blue": 4, + "#3bbfce": 1, + ";": 7, + "margin": 4, + "px": 1, + ".content": 1, + "-": 3, + "navigation": 1, + "{": 2, + "border": 2, + "color": 3, + "darken": 1, + "(": 1, + "%": 1, + ")": 1, + "}": 2, + ".border": 1, + "padding": 1, + "/": 2 + }, + "Shell": { + "SHEBANG#!bash": 8, + "typeset": 5, + "-": 391, + "i": 2, + "n": 22, + "bottles": 6, + "no": 16, + "while": 3, + "[": 85, + "]": 85, + "do": 8, + "echo": 71, + "case": 9, + "{": 63, + "}": 61, + "in": 25, + ")": 154, + "%": 5, + "s": 14, + ";": 138, + "esac": 7, + "done": 8, + "exit": 10, + "/usr/bin/clear": 2, + "##": 28, + "if": 39, + "z": 12, + "then": 41, + "export": 25, + "SCREENDIR": 2, + "fi": 34, + "PATH": 14, + "/usr/local/bin": 6, + "/usr/local/sbin": 6, + "/usr/xpg4/bin": 4, + "/usr/sbin": 6, + "/usr/bin": 8, + "/usr/sfw/bin": 4, + "/usr/ccs/bin": 4, + "/usr/openwin/bin": 4, + "/opt/mysql/current/bin": 4, + "MANPATH": 2, + "/usr/local/man": 2, + "/usr/share/man": 2, + "Random": 2, + "ENV...": 2, + "TERM": 4, + "COLORTERM": 2, + "CLICOLOR": 2, + "#": 53, + "can": 3, + "be": 3, + "set": 21, + "to": 33, + "anything": 2, + "actually": 2, + "DISPLAY": 2, + "r": 17, + "&&": 65, + ".": 5, + "function": 6, + "ls": 6, + "command": 5, + "Fh": 2, + "l": 8, + "list": 3, + "long": 2, + "format...": 2, + "ll": 2, + "|": 17, + "less": 2, + "XF": 2, + "pipe": 2, + "into": 3, + "#CDPATH": 2, + "HISTIGNORE": 2, + "HISTCONTROL": 2, + "ignoreboth": 2, + "shopt": 13, + "cdspell": 2, + "extglob": 2, + "progcomp": 2, + "complete": 82, + "f": 68, + "X": 54, + "bunzip2": 2, + "bzcat": 2, + "bzcmp": 2, + "bzdiff": 2, + "bzegrep": 2, + "bzfgrep": 2, + "bzgrep": 2, + "unzip": 2, + "zipinfo": 2, + "compress": 2, + "znew": 2, + "gunzip": 2, + "zcmp": 2, + "zdiff": 2, + "zcat": 2, + "zegrep": 2, + "zfgrep": 2, + "zgrep": 2, + "zless": 2, + "zmore": 2, + "uncompress": 2, + "ee": 2, + "display": 2, + "xv": 2, + "qiv": 2, + "gv": 2, + "ggv": 2, + "xdvi": 2, + "dvips": 2, + "dviselect": 2, + "dvitype": 2, + "acroread": 2, + "xpdf": 2, + "makeinfo": 2, + "texi2html": 2, + "tex": 2, + "latex": 2, + "slitex": 2, + "jadetex": 2, + "pdfjadetex": 2, + "pdftex": 2, + "pdflatex": 2, + "texi2dvi": 2, + "mpg123": 2, + "mpg321": 2, + "xine": 2, + "aviplay": 2, + "realplay": 2, + "xanim": 2, + "ogg123": 2, + "gqmpeg": 2, + "freeamp": 2, + "xmms": 2, + "xfig": 2, + "timidity": 2, + "playmidi": 2, + "vi": 2, + "vim": 2, + "gvim": 2, + "rvim": 2, + "view": 2, + "rview": 2, + "rgvim": 2, + "rgview": 2, + "gview": 2, + "emacs": 2, + "wine": 2, + "bzme": 2, + "netscape": 2, + "mozilla": 2, + "lynx": 2, + "opera": 2, + "w3m": 2, + "galeon": 2, + "curl": 8, + "dillo": 2, + "elinks": 2, + "links": 2, + "u": 2, + "su": 2, + "passwd": 2, + "groups": 2, + "user": 2, + "commands": 8, + "see": 4, + "only": 6, + "users": 2, + "A": 10, + "stopped": 4, + "P": 4, + "bg": 4, + "completes": 10, + "with": 12, + "jobs": 4, + "j": 2, + "fg": 2, + "disown": 2, + "other": 2, + "job": 3, + "v": 11, + "readonly": 4, + "unset": 10, + "and": 5, + "shell": 4, + "variables": 2, + "setopt": 8, + "options": 8, + "helptopic": 2, + "help": 5, + "helptopics": 2, + "a": 12, + "unalias": 4, + "aliases": 2, + "binding": 2, + "bind": 4, + "readline": 2, + "bindings": 2, + "(": 107, + "make": 6, + "this": 6, + "more": 3, + "intelligent": 2, + "c": 2, + "type": 5, + "which": 10, + "man": 6, + "#sudo": 2, + "on": 4, + "d": 9, + "pushd": 2, + "cd": 11, + "rmdir": 2, + "Make": 2, + "directory": 5, + "directories": 2, + "W": 2, + "alias": 42, + "filenames": 2, + "for": 7, + "PS1": 2, + "..": 2, + "cd..": 2, + "t": 3, + "csh": 2, + "is": 11, + "same": 2, + "as": 2, + "bash...": 2, + "quit": 2, + "q": 8, + "even": 3, + "shorter": 2, + "D": 2, + "rehash": 2, + "source": 7, + "/.bashrc": 3, + "after": 2, + "I": 2, + "edit": 2, + "it": 2, + "pg": 2, + "patch": 2, + "sed": 2, + "awk": 2, + "diff": 2, + "grep": 8, + "find": 2, + "ps": 2, + "whoami": 2, + "ping": 2, + "histappend": 2, + "PROMPT_COMMAND": 2, + "umask": 2, + "path": 13, + "/opt/local/bin": 2, + "/opt/local/sbin": 2, + "/bin": 4, + "prompt": 2, + "history": 18, + "endif": 2, + "stty": 2, + "istrip": 2, + "dirpersiststore": 2, + "##############################################################################": 16, + "#Import": 2, + "the": 17, + "agnostic": 2, + "Bash": 3, + "or": 3, + "Zsh": 2, + "environment": 2, + "config": 4, + "/.profile": 2, + "HISTSIZE": 2, + "#How": 2, + "many": 2, + "lines": 2, + "of": 6, + "keep": 3, + "memory": 3, + "HISTFILE": 2, + "/.zsh_history": 2, + "#Where": 2, + "save": 4, + "disk": 5, + "SAVEHIST": 2, + "#Number": 2, + "entries": 2, + "HISTDUP": 2, + "erase": 2, + "#Erase": 2, + "duplicates": 2, + "file": 9, + "appendhistory": 2, + "#Append": 2, + "overwriting": 2, + "sharehistory": 2, + "#Share": 2, + "across": 2, + "terminals": 2, + "incappendhistory": 2, + "#Immediately": 2, + "append": 2, + "not": 2, + "just": 2, + "when": 2, + "term": 2, + "killed": 2, + "#.": 2, + "/.dotfiles/z": 4, + "zsh/z.sh": 2, + "#function": 2, + "precmd": 2, + "rupa/z.sh": 2, + "fpath": 6, + "HOME/.zsh/func": 2, + "U": 2, + "docker": 1, + "version": 12, + "from": 1, + "ubuntu": 1, + "maintainer": 1, + "Solomon": 1, + "Hykes": 1, + "": 1, + "run": 13, + "apt": 6, + "get": 6, + "install": 8, + "y": 5, + "git": 16, + "https": 2, + "//go.googlecode.com/files/go1.1.1.linux": 1, + "amd64.tar.gz": 1, + "tar": 1, + "C": 1, + "/usr/local": 1, + "xz": 1, + "env": 4, + "/usr/local/go/bin": 2, + "/sbin": 2, + "GOPATH": 1, + "/go": 1, + "CGO_ENABLED": 1, + "/tmp": 1, + "t.go": 1, + "go": 2, + "test": 1, + "PKG": 12, + "github.com/kr/pty": 1, + "REV": 6, + "c699": 1, + "clone": 5, + "http": 3, + "//": 3, + "/go/src/": 6, + "checkout": 3, + "github.com/gorilla/context/": 1, + "d61e5": 1, + "github.com/gorilla/mux/": 1, + "b36453141c": 1, + "iptables": 1, + "/etc/apt/sources.list": 1, + "update": 2, + "lxc": 1, + "aufs": 1, + "tools": 1, + "add": 1, + "/go/src/github.com/dotcloud/docker": 1, + "/go/src/github.com/dotcloud/docker/docker": 1, + "ldflags": 1, + "/go/bin": 1, + "cmd": 1, + "pkgname": 1, + "stud": 4, + "pkgver": 1, + "pkgrel": 1, + "pkgdesc": 1, + "arch": 1, + "i686": 1, + "x86_64": 1, + "url": 4, + "license": 1, + "depends": 1, + "libev": 1, + "openssl": 1, + "makedepends": 1, + "provides": 1, + "conflicts": 1, + "_gitroot": 1, + "//github.com/bumptech/stud.git": 1, + "_gitname": 1, + "build": 2, + "msg": 4, + "pull": 3, + "origin": 1, + "else": 10, + "rm": 2, + "rf": 1, + "package": 1, + "PREFIX": 1, + "/usr": 1, + "DESTDIR": 1, + "Dm755": 1, + "init.stud": 1, + "mkdir": 2, + "p": 2, + "script": 1, + "dotfile": 1, + "repository": 3, + "does": 1, + "lot": 1, + "fun": 2, + "stuff": 3, + "like": 1, + "turning": 1, + "normal": 1, + "dotfiles": 1, + "eg": 1, + ".bashrc": 1, + "symlinks": 1, + "away": 1, + "optionally": 1, + "moving": 1, + "old": 4, + "files": 1, + "so": 1, + "that": 1, + "they": 1, + "preserved": 1, + "setting": 2, + "up": 1, + "cron": 1, + "automate": 1, + "aforementioned": 1, + "maybe": 1, + "some": 1, + "nocasematch": 1, + "This": 1, + "makes": 1, + "pattern": 1, + "matching": 1, + "insensitive": 1, + "POSTFIX": 1, + "URL": 1, + "PUSHURL": 1, + "overwrite": 3, + "true": 2, + "print_help": 2, + "e": 4, + "opt": 3, + "@": 3, + "k": 1, + "local": 22, + "false": 2, + "h": 3, + ".*": 2, + "o": 3, + "continue": 1, + "mv": 1, + "ln": 1, + "remote.origin.url": 1, + "remote.origin.pushurl": 1, + "crontab": 1, + ".jobs.cron": 1, + "x": 1, + "system": 1, + "exec": 3, + "rbenv": 2, + "versions": 1, + "bare": 1, + "&": 5, + "prefix": 1, + "/dev/null": 6, + "rvm_ignore_rvmrc": 1, + "declare": 22, + "rvmrc": 3, + "rvm_rvmrc_files": 3, + "ef": 1, + "+": 1, + "GREP_OPTIONS": 1, + "printf": 4, + "rvm_path": 4, + "UID": 1, + "elif": 4, + "rvm_is_not_a_shell_function": 2, + "rvm_path/scripts": 1, + "rvm": 1, + "sbt_release_version": 2, + "sbt_snapshot_version": 2, + "SNAPSHOT": 3, + "sbt_jar": 3, + "sbt_dir": 2, + "sbt_create": 2, + "sbt_snapshot": 1, + "sbt_launch_dir": 3, + "scala_version": 3, + "java_home": 1, + "sbt_explicit_version": 7, + "verbose": 6, + "debug": 11, + "quiet": 6, + "build_props_sbt": 3, + "project/build.properties": 9, + "versionLine": 2, + "sbt.version": 3, + "versionString": 3, + "versionLine##sbt.version": 1, + "update_build_props_sbt": 2, + "ver": 5, + "return": 3, + "perl": 3, + "pi": 1, + "||": 12, + "Updated": 1, + "Previous": 1, + "value": 1, + "was": 1, + "sbt_version": 8, + "echoerr": 3, + "vlog": 1, + "dlog": 8, + "get_script_path": 2, + "L": 1, + "target": 1, + "readlink": 1, + "get_mem_opts": 3, + "mem": 4, + "perm": 6, + "/": 2, + "<": 2, + "codecache": 1, + "die": 2, + "make_url": 3, + "groupid": 1, + "category": 1, + "default_jvm_opts": 1, + "default_sbt_opts": 1, + "default_sbt_mem": 2, + "noshare_opts": 1, + "sbt_opts_file": 1, + "jvm_opts_file": 1, + "latest_28": 1, + "latest_29": 1, + "latest_210": 1, + "script_path": 1, + "script_dir": 1, + "script_name": 2, + "java_cmd": 2, + "java": 2, + "sbt_mem": 5, + "residual_args": 4, + "java_args": 3, + "scalac_args": 4, + "sbt_commands": 2, + "build_props_scala": 1, + "build.scala.versions": 1, + "versionLine##build.scala.versions": 1, + "execRunner": 2, + "arg": 3, + "sbt_groupid": 3, + "*": 11, + "org.scala": 4, + "tools.sbt": 3, + "sbt": 18, + "sbt_artifactory_list": 2, + "version0": 2, + "F": 1, + "pe": 1, + "make_release_url": 2, + "releases": 1, + "make_snapshot_url": 2, + "snapshots": 1, + "head": 1, + "jar_url": 1, + "jar_file": 1, + "download_url": 2, + "jar": 3, + "dirname": 1, + "fail": 1, + "silent": 1, + "output": 1, + "wget": 2, + "O": 1, + "acquire_sbt_jar": 1, + "sbt_url": 1, + "usage": 2, + "cat": 3, + "<<": 2, + "EOM": 3, + "Usage": 1, + "print": 1, + "message": 1, + "runner": 1, + "chattier": 1, + "log": 2, + "level": 2, + "Debug": 1, + "Error": 1, + "colors": 2, + "disable": 1, + "ANSI": 1, + "color": 1, + "codes": 1, + "create": 2, + "start": 1, + "current": 1, + "contains": 2, + "project": 1, + "dir": 3, + "": 3, + "global": 1, + "settings/plugins": 1, + "default": 4, + "/.sbt/": 1, + "": 1, + "boot": 3, + "shared": 1, + "/.sbt/boot": 1, + "series": 1, + "ivy": 2, + "Ivy": 1, + "/.ivy2": 1, + "": 1, + "share": 2, + "use": 1, + "all": 1, + "caches": 1, + "sharing": 1, + "offline": 3, + "put": 1, + "mode": 2, + "jvm": 2, + "": 1, + "Turn": 1, + "JVM": 1, + "debugging": 1, + "open": 1, + "at": 1, + "given": 2, + "port.": 1, + "batch": 2, + "Disable": 1, + "interactive": 1, + "The": 1, + "way": 1, + "accomplish": 1, + "pre": 1, + "there": 2, + "build.properties": 1, + "an": 1, + "property": 1, + "disk.": 1, + "That": 1, + "scalacOptions": 3, + "S": 2, + "stripped": 1, + "In": 1, + "duplicated": 1, + "conflicting": 1, + "order": 1, + "above": 1, + "shows": 1, + "precedence": 1, + "JAVA_OPTS": 1, + "lowest": 1, + "line": 1, + "highest.": 1, + "addJava": 9, + "addSbt": 12, + "addScalac": 2, + "addResidual": 2, + "addResolver": 1, + "addDebugger": 2, + "get_jvm_opts": 2, + "process_args": 2, + "require_arg": 12, + "gt": 1, + "shift": 28, + "integer": 1, + "inc": 1, + "port": 1, + "snapshot": 1, + "launch": 1, + "scala": 3, + "home": 2, + "D*": 1, + "J*": 1, + "S*": 1, + "sbtargs": 3, + "IFS": 1, + "read": 1, + "<\"$sbt_opts_file\">": 1, + "process": 1, + "combined": 1, + "args": 2, + "reset": 1, + "residuals": 1, + "argumentCount=": 1, + "we": 1, + "were": 1, + "any": 1, + "opts": 1, + "eq": 1, + "0": 1, + "ThisBuild": 1, + "Update": 1, + "properties": 1, + "explicit": 1, + "gives": 1, + "us": 1, + "choice": 1, + "Detected": 1, + "Overriding": 1, + "alert": 1, + "them": 1, + "here": 1, + "argumentCount": 1, + "./build.sbt": 1, + "./project": 1, + "pwd": 1, + "doesn": 1, + "understand": 1, + "iflast": 1, + "#residual_args": 1, + "SHEBANG#!sh": 2, + "SHEBANG#!zsh": 2, + "name": 1, + "foodforthought.jpg": 1, + "name##*fo": 1 + }, + "Slash": { + "<%>": 1, + "class": 11, + "Env": 1, + "def": 18, + "init": 4, + "memory": 3, + "ptr": 9, + "0": 3, + "ptr=": 1, + "current_value": 5, + "current_value=": 1, + "value": 1, + "AST": 4, + "Next": 1, + "eval": 10, + "env": 16, + "Prev": 1, + "Inc": 1, + "Dec": 1, + "Output": 1, + "print": 1, + "char": 5, + "Input": 1, + "Sequence": 2, + "nodes": 6, + "for": 2, + "node": 2, + "in": 2, + "Loop": 1, + "seq": 4, + "while": 1, + "Parser": 1, + "str": 2, + "chars": 2, + "split": 1, + "parse": 1, + "stack": 3, + "_parse_char": 2, + "if": 1, + "length": 1, + "1": 1, + "throw": 1, + "SyntaxError": 1, + "new": 2, + "unexpected": 2, + "end": 1, + "of": 1, + "input": 1, + "last": 1, + "switch": 1, + "<": 1, + "+": 1, + "-": 1, + ".": 1, + "[": 1, + "]": 1, + ")": 7, + ";": 6, + "}": 3, + "@stack.pop": 1, + "_add": 1, + "(": 6, + "Loop.new": 1, + "Sequence.new": 1, + "src": 2, + "File.read": 1, + "ARGV.first": 1, + "ast": 1, + "Parser.new": 1, + ".parse": 1, + "ast.eval": 1, + "Env.new": 1 + }, + "Squirrel": { + "//example": 1, + "from": 1, + "http": 1, + "//www.squirrel": 1, + "-": 1, + "lang.org/#documentation": 1, + "local": 3, + "table": 1, + "{": 10, + "a": 2, + "subtable": 1, + "array": 3, + "[": 3, + "]": 3, + "}": 10, + "+": 2, + "b": 1, + ";": 15, + "foreach": 1, + "(": 10, + "i": 1, + "val": 2, + "in": 1, + ")": 10, + "print": 2, + "typeof": 1, + "/////////////////////////////////////////////": 1, + "class": 2, + "Entity": 3, + "constructor": 2, + "etype": 2, + "entityname": 4, + "name": 2, + "type": 2, + "x": 2, + "y": 2, + "z": 2, + "null": 2, + "function": 2, + "MoveTo": 1, + "newx": 2, + "newy": 2, + "newz": 2, + "Player": 2, + "extends": 1, + "base.constructor": 1, + "DoDomething": 1, + "newplayer": 1, + "newplayer.MoveTo": 1 + }, + "Standard ML": { + "signature": 2, + "LAZY_BASE": 3, + "sig": 2, + "type": 2, + "a": 18, + "lazy": 12, + "-": 13, + ")": 23, + "end": 6, + "LAZY": 1, + "bool": 4, + "val": 12, + "inject": 3, + "toString": 2, + "(": 22, + "string": 1, + "eq": 2, + "*": 1, + "eqBy": 3, + "compare": 2, + "order": 2, + "map": 2, + "b": 2, + "structure": 6, + "Ops": 2, + "LazyBase": 2, + "struct": 4, + "exception": 1, + "Undefined": 3, + "fun": 9, + "delay": 3, + "f": 9, + "force": 9, + "undefined": 1, + "fn": 3, + "raise": 1, + "LazyMemoBase": 2, + "datatype": 1, + "|": 1, + "Done": 1, + "of": 1, + "unit": 1, + "let": 1, + "open": 1, + "B": 1, + "x": 15, + "isUndefined": 2, + "ignore": 1, + ";": 1, + "false": 1, + "handle": 1, + "true": 1, + "if": 1, + "then": 1, + "else": 1, + "p": 4, + "y": 6, + "op": 1, + "Lazy": 1, + "LazyFn": 2, + "LazyMemo": 1 + }, + "SuperCollider": { + "BCR2000": 1, + "{": 14, + "var": 2, + "controls": 2, + "controlBuses": 2, + "rangedControlBuses": 2, + "responders": 2, + ";": 32, + "*new": 1, + "super.new.init": 1, + "}": 14, + "init": 1, + "Dictionary.new": 3, + "(": 34, + ")": 34, + "this.createCCResponders": 1, + "createCCResponders": 1, + "Array.fill": 1, + "|": 4, + "i": 5, + "CCResponder": 1, + "src": 3, + "chan": 3, + "num": 3, + "val": 4, + "[": 3, + "]": 3, + ".postln": 1, + "controls.put": 1, + "+": 4, + "controlBuses.put": 1, + "Bus.control": 1, + "Server.default": 1, + "controlBuses.at": 2, + ".value": 1, + "/": 2, + "nil": 4, + "//": 4, + "value": 1, + "at": 1, + "arg": 4, + "controlNum": 6, + "controls.at": 2, + "scalarAt": 1, + "busAt": 1, + "//boot": 1, + "server": 1, + "s.boot": 1, + "SynthDef": 1, + "sig": 7, + "resfreq": 3, + "Saw.ar": 1, + "SinOsc.kr": 1, + "*": 3, + "RLPF.ar": 1, + "Out.ar": 1, + ".play": 2, + "do": 2, + "Pan2.ar": 1, + "SinOsc.ar": 1, + "exprand": 1, + "LFNoise2.kr": 2, + "rrand": 2, + ".range": 2, + "**": 1, + "rand2": 1, + "a": 2, + "Env.perc": 1, + "-": 1, + "b": 1, + "a.delay": 2, + "a.test.plot": 1, + "b.test.plot": 1, + "Env": 1, + ".plot": 2, + "e": 1, + "Env.sine.asStream": 1, + "e.next.postln": 1, + "wait": 1, + ".fork": 1 + }, + "Tea": { + "<%>": 1, + "template": 1, + "foo": 1 + }, + "TeX": { + "%": 59, + "NeedsTeXFormat": 1, + "{": 180, + "LaTeX2e": 1, + "}": 185, + "ProvidesClass": 1, + "reedthesis": 1, + "[": 22, + "/01/27": 1, + "The": 4, + "Reed": 5, + "College": 5, + "Thesis": 5, + "Class": 4, + "]": 22, + "DeclareOption*": 1, + "PassOptionsToClass": 1, + "CurrentOption": 1, + "book": 2, + "ProcessOptions": 1, + "relax": 2, + "LoadClass": 1, + "RequirePackage": 1, + "fancyhdr": 1, + "AtBeginDocument": 1, + "fancyhf": 1, + "fancyhead": 5, + "LE": 1, + "RO": 1, + "thepage": 1, + "above": 1, + "makes": 2, + "your": 1, + "headers": 6, + "in": 10, + "all": 1, + "caps.": 2, + "If": 1, + "you": 1, + "would": 1, + "like": 1, + "different": 1, + "choose": 1, + "one": 1, + "of": 8, + "the": 14, + "following": 1, + "options": 1, + "(": 3, + "be": 3, + "sure": 1, + "to": 8, + "remove": 1, + "symbol": 1, + "from": 1, + "both": 1, + "right": 1, + "and": 2, + "left": 1, + ")": 3, + "RE": 2, + "slshape": 2, + "nouppercase": 2, + "leftmark": 2, + "This": 2, + "on": 1, + "RIGHT": 2, + "side": 2, + "pages": 2, + "italic": 1, + "use": 1, + "lowercase": 1, + "With": 1, + "Capitals": 1, + "When": 1, + "Specified.": 1, + "LO": 2, + "rightmark": 2, + "does": 1, + "same": 1, + "thing": 1, + "LEFT": 2, + "or": 1, + "scshape": 2, + "will": 2, + "small": 2, + "And": 1, + "so": 1, + "pagestyle": 2, + "fancy": 1, + "let": 10, + "oldthebibliography": 2, + "thebibliography": 2, + "endoldthebibliography": 2, + "endthebibliography": 1, + "renewenvironment": 2, + "#1": 12, + "addcontentsline": 5, + "toc": 5, + "chapter": 9, + "bibname": 2, + "end": 5, + "things": 1, + "for": 5, + "psych": 1, + "majors": 1, + "comment": 1, + "out": 1, + "oldtheindex": 2, + "theindex": 2, + "endoldtheindex": 2, + "endtheindex": 1, + "indexname": 1, + "RToldchapter": 1, + "renewcommand": 6, + "if@openright": 1, + "RTcleardoublepage": 3, + "else": 7, + "clearpage": 3, + "fi": 13, + "thispagestyle": 3, + "empty": 4, + "global": 2, + "@topnum": 1, + "z@": 2, + "@afterindentfalse": 1, + "secdef": 1, + "@chapter": 2, + "@schapter": 1, + "def": 12, + "#2": 4, + "ifnum": 2, + "c@secnumdepth": 1, + "m@ne": 2, + "if@mainmatter": 1, + "refstepcounter": 1, + "typeout": 1, + "@chapapp": 2, + "space": 4, + "thechapter.": 1, + "thechapter": 1, + "space#1": 1, + "chaptermark": 1, + "addtocontents": 2, + "lof": 1, + "protect": 2, + "addvspace": 2, + "p@": 3, + "lot": 1, + "if@twocolumn": 3, + "@topnewpage": 1, + "@makechapterhead": 2, + "@afterheading": 1, + "newcommand": 2, + "if@twoside": 1, + "ifodd": 1, + "c@page": 1, + "hbox": 15, + "newpage": 3, + "RToldcleardoublepage": 1, + "cleardoublepage": 4, + "setlength": 10, + "oddsidemargin": 2, + ".5in": 3, + "evensidemargin": 2, + "textwidth": 2, + "textheight": 4, + "topmargin": 6, + "addtolength": 8, + "headheight": 4, + "headsep": 3, + ".6in": 1, + "pt": 1, + "division#1": 1, + "gdef": 6, + "@division": 3, + "@latex@warning@no@line": 3, + "No": 3, + "noexpand": 3, + "division": 2, + "given": 3, + "department#1": 1, + "@department": 3, + "department": 1, + "thedivisionof#1": 1, + "@thedivisionof": 3, + "Division": 2, + "approvedforthe#1": 1, + "@approvedforthe": 3, + "advisor#1": 1, + "@advisor": 3, + "advisor": 1, + "altadvisor#1": 1, + "@altadvisor": 3, + "@altadvisortrue": 1, + "@empty": 1, + "newif": 1, + "if@altadvisor": 3, + "@altadvisorfalse": 1, + "contentsname": 1, + "Table": 1, + "Contents": 1, + "References": 1, + "l@chapter": 1, + "c@tocdepth": 1, + "addpenalty": 1, + "@highpenalty": 2, + "vskip": 4, + "em": 3, + "@plus": 1, + "@tempdima": 2, + "begingroup": 1, + "parindent": 1, + "rightskip": 1, + "@pnumwidth": 3, + "parfillskip": 1, + "-": 2, + "leavevmode": 1, + "bfseries": 3, + "advance": 1, + "leftskip": 2, + "hskip": 1, + "nobreak": 2, + "normalfont": 1, + "leaders": 1, + "m@th": 1, + "mkern": 2, + "@dotsep": 2, + "mu": 2, + ".": 1, + "hfill": 1, + "hb@xt@": 1, + "hss": 1, + "par": 6, + "penalty": 1, + "endgroup": 1, + "newenvironment": 1, + "abstract": 1, + "@restonecoltrue": 1, + "onecolumn": 1, + "@restonecolfalse": 1, + "Abstract": 2, + "begin": 4, + "center": 7, + "fontsize": 7, + "selectfont": 6, + "if@restonecol": 1, + "twocolumn": 1, + "ifx": 1, + "@pdfoutput": 1, + "@undefined": 1, + "RTpercent": 3, + "@percentchar": 1, + "AtBeginDvi": 2, + "special": 2, + "LaTeX": 3, + "/12/04": 3, + "SN": 3, + "rawpostscript": 1, + "AtEndDocument": 1, + "pdfinfo": 1, + "/Creator": 1, + "maketitle": 1, + "titlepage": 2, + "footnotesize": 1, + "footnoterule": 1, + "footnote": 1, + "thanks": 1, + "baselineskip": 2, + "setbox0": 2, + "Requirements": 2, + "Degree": 2, + "setcounter": 1, + "page": 3, + "null": 3, + "vfil": 8, + "@title": 1, + "centerline": 8, + "wd0": 7, + "hrulefill": 5, + "A": 1, + "Presented": 1, + "In": 1, + "Partial": 1, + "Fulfillment": 1, + "Bachelor": 1, + "Arts": 1, + "bigskip": 2, + "lineskip": 1, + ".75em": 1, + "tabular": 2, + "t": 1, + "c": 5, + "@author": 1, + "@date": 1, + "Approved": 2, + "just": 1, + "below": 2, + "cm": 2, + "not": 1, + "copy0": 1, + "approved": 1, + "major": 1, + "sign": 1, + "makebox": 6 + }, + "Turing": { + "function": 1, + "factorial": 4, + "(": 3, + "n": 9, + "int": 2, + ")": 3, + "real": 1, + "if": 2, + "then": 1, + "result": 2, + "else": 1, + "*": 1, + "-": 1, + "end": 3, + "var": 1, + "loop": 2, + "put": 3, + "..": 1, + "get": 1, + "exit": 1, + "when": 1 + }, + "TXL": { + "define": 12, + "program": 1, + "[": 38, + "expression": 9, + "]": 38, + "end": 12, + "term": 6, + "|": 3, + "addop": 2, + "primary": 4, + "mulop": 2, + "number": 10, + "(": 2, + ")": 2, + "-": 3, + "/": 3, + "rule": 12, + "main": 1, + "replace": 6, + "E": 3, + "construct": 1, + "NewE": 3, + "resolveAddition": 2, + "resolveSubtraction": 2, + "resolveMultiplication": 2, + "resolveDivision": 2, + "resolveParentheses": 2, + "where": 1, + "not": 1, + "by": 6, + "N1": 8, + "+": 2, + "N2": 8, + "*": 2, + "N": 2 + }, + "TypeScript": { + "class": 3, + "Animal": 4, + "{": 9, + "constructor": 3, + "(": 18, + "public": 1, + "name": 5, + ")": 18, + "}": 9, + "move": 3, + "meters": 2, + "alert": 3, + "this.name": 1, + "+": 3, + ";": 8, + "Snake": 2, + "extends": 2, + "super": 2, + "super.move": 2, + "Horse": 2, + "var": 2, + "sam": 1, + "new": 2, + "tom": 1, + "sam.move": 1, + "tom.move": 1, + "console.log": 1 + }, + "Verilog": { + "////////////////////////////////////////////////////////////////////////////////": 14, + "//": 117, + "timescale": 10, + "ns": 8, + "/": 11, + "ps": 8, + "module": 18, + "button_debounce": 3, + "(": 378, + "input": 68, + "clk": 40, + "clock": 3, + "reset_n": 32, + "asynchronous": 2, + "reset": 13, + "button": 25, + "bouncy": 1, + "output": 42, + "reg": 26, + "debounce": 6, + "debounced": 1, + "-": 73, + "cycle": 1, + "signal": 3, + ")": 378, + ";": 287, + "parameter": 7, + "CLK_FREQUENCY": 4, + "DEBOUNCE_HZ": 4, + "localparam": 4, + "COUNT_VALUE": 2, + "WAIT": 6, + "FIRE": 4, + "COUNT": 4, + "[": 179, + "]": 179, + "state": 6, + "next_state": 6, + "count": 6, + "always": 23, + "@": 16, + "posedge": 11, + "or": 14, + "negedge": 8, + "<": 47, + "begin": 46, + "if": 23, + "end": 48, + "else": 22, + "case": 3, + "<=>": 4, + "1": 7, + "endcase": 3, + "default": 2, + "endmodule": 18, + "control": 1, + "en": 13, + "dsp_sel": 9, + "an": 6, + "wire": 67, + "a": 5, + "b": 3, + "c": 3, + "d": 3, + "e": 3, + "f": 2, + "g": 2, + "h": 2, + "i": 62, + "j": 2, + "k": 2, + "l": 2, + "assign": 23, + "FDRSE": 6, + "#": 10, + ".INIT": 6, + "b0": 27, + "Synchronous": 12, + ".S": 6, + "b1": 19, + "Initial": 6, + "value": 6, + "of": 8, + "register": 6, + "DFF2": 1, + ".Q": 6, + "Data": 13, + ".C": 6, + "Clock": 14, + ".CE": 6, + "enable": 6, + ".D": 6, + ".R": 6, + "set": 6, + "DFF0": 1, + "DFF6": 1, + "DFF4": 1, + "DFF10": 1, + "DFF8": 1, + "hex_display": 1, + "num": 5, + "hex0": 2, + "hex1": 2, + "hex2": 2, + "hex3": 2, + "seg_7": 4, + "hex_group0": 1, + ".num": 4, + ".en": 4, + ".seg": 4, + "hex_group1": 1, + "hex_group2": 1, + "hex_group3": 1, + "mux": 1, + "opA": 4, + "opB": 3, + "sum": 5, + "out": 5, + "cout": 4, + "b0000": 1, + "b01": 1, + "b11": 1, + "pipeline_registers": 1, + "BIT_WIDTH": 5, + "pipe_in": 4, + "pipe_out": 5, + "NUMBER_OF_STAGES": 7, + "generate": 3, + "genvar": 3, + "*": 4, + "BIT_WIDTH*": 5, + "pipe_gen": 6, + "for": 4, + "+": 36, + "pipeline": 2, + "BIT_WIDTH*i": 2, + "endgenerate": 3, + "ps2_mouse": 1, + "Input": 2, + "Reset": 1, + "inout": 2, + "ps2_clk": 3, + "PS2": 2, + "Bidirectional": 2, + "ps2_dat": 3, + "the_command": 2, + "Command": 1, + "to": 3, + "send": 2, + "mouse": 1, + "send_command": 2, + "Signal": 2, + "command_was_sent": 2, + "command": 1, + "finished": 1, + "sending": 1, + "error_communication_timed_out": 3, + "received_data": 2, + "Received": 1, + "data": 4, + "received_data_en": 4, + "If": 1, + "new": 1, + "has": 1, + "been": 1, + "received": 1, + "start_receiving_data": 3, + "wait_for_incoming_data": 3, + "ps2_clk_posedge": 3, + "Internal": 2, + "Wires": 1, + "ps2_clk_negedge": 3, + "idle_counter": 4, + "Registers": 2, + "ps2_clk_reg": 4, + "ps2_data_reg": 5, + "last_ps2_clk": 4, + "ns_ps2_transceiver": 13, + "State": 1, + "Machine": 1, + "s_ps2_transceiver": 8, + "PS2_STATE_0_IDLE": 10, + "h1": 1, + "PS2_STATE_2_COMMAND_OUT": 2, + "h3": 1, + "PS2_STATE_4_END_DELAYED": 4, + "Defaults": 1, + "PS2_STATE_1_DATA_IN": 3, + "||": 1, + "PS2_STATE_3_END_TRANSFER": 3, + "h00": 1, + "&&": 3, + "h01": 1, + "ps2_mouse_cmdout": 1, + "mouse_cmdout": 1, + ".clk": 6, + "Inputs": 2, + ".reset": 2, + ".the_command": 1, + ".send_command": 1, + ".ps2_clk_posedge": 2, + ".ps2_clk_negedge": 2, + ".ps2_clk": 1, + "Bidirectionals": 1, + ".ps2_dat": 1, + ".command_was_sent": 1, + "Outputs": 2, + ".error_communication_timed_out": 1, + "ps2_mouse_datain": 1, + "mouse_datain": 1, + ".wait_for_incoming_data": 1, + ".start_receiving_data": 1, + ".ps2_data": 1, + ".received_data": 1, + ".received_data_en": 1, + "ns/1ps": 2, + "e0": 1, + "x": 41, + "y": 21, + "{": 11, + "}": 11, + "e1": 1, + "ch": 1, + "z": 7, + "o": 6, + "&": 6, + "maj": 1, + "|": 2, + "s0": 1, + "s1": 1, + "sign_extender": 1, + "INPUT_WIDTH": 5, + "OUTPUT_WIDTH": 4, + "original": 3, + "sign_extended_original": 2, + "sign_extend": 3, + "gen_sign_extend": 1, + "sqrt_pipelined": 3, + "start": 12, + "optional": 2, + "INPUT_BITS": 28, + "radicand": 12, + "unsigned": 2, + "data_valid": 7, + "valid": 2, + "OUTPUT_BITS": 14, + "root": 8, + "number": 2, + "bits": 2, + "any": 1, + "integer": 1, + "%": 3, + "start_gen": 7, + "propagation": 1, + "OUTPUT_BITS*INPUT_BITS": 9, + "root_gen": 15, + "values": 3, + "radicand_gen": 10, + "mask_gen": 9, + "mask": 3, + "mask_4": 1, + "is": 4, + "odd": 1, + "this": 2, + "INPUT_BITS*": 27, + "<<": 2, + "i/2": 2, + "even": 1, + "pipeline_stage": 1, + "INPUT_BITS*i": 5, + "t_button_debounce": 1, + ".CLK_FREQUENCY": 1, + ".DEBOUNCE_HZ": 1, + ".reset_n": 3, + ".button": 1, + ".debounce": 1, + "initial": 3, + "bx": 4, + "#10": 10, + "#5": 3, + "#100": 1, + "#0.1": 8, + "t_div_pipelined": 1, + "dividend": 3, + "divisor": 5, + "div_by_zero": 2, + "quotient": 2, + "quotient_correct": 1, + "BITS": 2, + "div_pipelined": 2, + ".BITS": 1, + ".dividend": 1, + ".divisor": 1, + ".quotient": 1, + ".div_by_zero": 1, + ".start": 2, + ".data_valid": 2, + "#50": 2, + "#1": 1, + "#1000": 1, + "finish": 2, + "t_sqrt_pipelined": 1, + ".INPUT_BITS": 1, + ".radicand": 1, + ".root": 1, + "#10000": 1, + "vga": 1, + "wb_clk_i": 6, + "Mhz": 1, + "VDU": 1, + "wb_rst_i": 6, + "wb_dat_i": 3, + "wb_dat_o": 2, + "wb_adr_i": 3, + "wb_we_i": 3, + "wb_tga_i": 5, + "wb_sel_i": 3, + "wb_stb_i": 2, + "wb_cyc_i": 2, + "wb_ack_o": 2, + "vga_red_o": 2, + "vga_green_o": 2, + "vga_blue_o": 2, + "horiz_sync": 2, + "vert_sync": 2, + "csrm_adr_o": 2, + "csrm_sel_o": 2, + "csrm_we_o": 2, + "csrm_dat_o": 2, + "csrm_dat_i": 2, + "csr_adr_i": 3, + "csr_stb_i": 2, + "conf_wb_dat_o": 3, + "conf_wb_ack_o": 3, + "mem_wb_dat_o": 3, + "mem_wb_ack_o": 3, + "csr_adr_o": 2, + "csr_dat_i": 3, + "csr_stb_o": 3, + "v_retrace": 3, + "vh_retrace": 3, + "w_vert_sync": 3, + "shift_reg1": 3, + "graphics_alpha": 4, + "memory_mapping1": 3, + "write_mode": 3, + "raster_op": 3, + "read_mode": 3, + "bitmask": 3, + "set_reset": 3, + "enable_set_reset": 3, + "map_mask": 3, + "x_dotclockdiv2": 3, + "chain_four": 3, + "read_map_select": 3, + "color_compare": 3, + "color_dont_care": 3, + "wbm_adr_o": 3, + "wbm_sel_o": 3, + "wbm_we_o": 3, + "wbm_dat_o": 3, + "wbm_dat_i": 3, + "wbm_stb_o": 3, + "wbm_ack_i": 3, + "stb": 4, + "cur_start": 3, + "cur_end": 3, + "start_addr": 2, + "vcursor": 3, + "hcursor": 3, + "horiz_total": 3, + "end_horiz": 3, + "st_hor_retr": 3, + "end_hor_retr": 3, + "vert_total": 3, + "end_vert": 3, + "st_ver_retr": 3, + "end_ver_retr": 3, + "pal_addr": 3, + "pal_we": 3, + "pal_read": 3, + "pal_write": 3, + "dac_we": 3, + "dac_read_data_cycle": 3, + "dac_read_data_register": 3, + "dac_read_data": 3, + "dac_write_data_cycle": 3, + "dac_write_data_register": 3, + "dac_write_data": 3, + "vga_config_iface": 1, + "config_iface": 1, + ".wb_clk_i": 2, + ".wb_rst_i": 2, + ".wb_dat_i": 2, + ".wb_dat_o": 2, + ".wb_adr_i": 2, + ".wb_we_i": 2, + ".wb_sel_i": 2, + ".wb_stb_i": 2, + ".wb_ack_o": 2, + ".shift_reg1": 2, + ".graphics_alpha": 2, + ".memory_mapping1": 2, + ".write_mode": 2, + ".raster_op": 2, + ".read_mode": 2, + ".bitmask": 2, + ".set_reset": 2, + ".enable_set_reset": 2, + ".map_mask": 2, + ".x_dotclockdiv2": 2, + ".chain_four": 2, + ".read_map_select": 2, + ".color_compare": 2, + ".color_dont_care": 2, + ".pal_addr": 2, + ".pal_we": 2, + ".pal_read": 2, + ".pal_write": 2, + ".dac_we": 2, + ".dac_read_data_cycle": 2, + ".dac_read_data_register": 2, + ".dac_read_data": 2, + ".dac_write_data_cycle": 2, + ".dac_write_data_register": 2, + ".dac_write_data": 2, + ".cur_start": 2, + ".cur_end": 2, + ".start_addr": 1, + ".vcursor": 2, + ".hcursor": 2, + ".horiz_total": 2, + ".end_horiz": 2, + ".st_hor_retr": 2, + ".end_hor_retr": 2, + ".vert_total": 2, + ".end_vert": 2, + ".st_ver_retr": 2, + ".end_ver_retr": 2, + ".v_retrace": 2, + ".vh_retrace": 2, + "vga_lcd": 1, + "lcd": 1, + ".rst": 1, + ".csr_adr_o": 1, + ".csr_dat_i": 1, + ".csr_stb_o": 1, + ".vga_red_o": 1, + ".vga_green_o": 1, + ".vga_blue_o": 1, + ".horiz_sync": 1, + ".vert_sync": 1, + "vga_cpu_mem_iface": 1, + "cpu_mem_iface": 1, + ".wbs_adr_i": 1, + ".wbs_sel_i": 1, + ".wbs_we_i": 1, + ".wbs_dat_i": 1, + ".wbs_dat_o": 1, + ".wbs_stb_i": 1, + ".wbs_ack_o": 1, + ".wbm_adr_o": 1, + ".wbm_sel_o": 1, + ".wbm_we_o": 1, + ".wbm_dat_o": 1, + ".wbm_dat_i": 1, + ".wbm_stb_o": 1, + ".wbm_ack_i": 1, + "vga_mem_arbitrer": 1, + "mem_arbitrer": 1, + ".clk_i": 1, + ".rst_i": 1, + ".csr_adr_i": 1, + ".csr_dat_o": 1, + ".csr_stb_i": 1, + ".csrm_adr_o": 1, + ".csrm_sel_o": 1, + ".csrm_we_o": 1, + ".csrm_dat_o": 1, + ".csrm_dat_i": 1 + }, + "VHDL": { + "-": 2, + "VHDL": 1, + "example": 1, + "file": 1, + "library": 1, + "ieee": 1, + ";": 7, + "use": 1, + "ieee.std_logic_1164.all": 1, + "entity": 2, + "inverter": 2, + "is": 2, + "port": 1, + "(": 1, + "a": 2, + "in": 1, + "std_logic": 2, + "b": 2, + "out": 1, + ")": 1, + "end": 2, + "architecture": 2, + "rtl": 1, + "of": 1, + "begin": 1, + "<": 1, + "not": 1 + }, + "VimL": { + "no": 1, + "toolbar": 1, + "set": 7, + "guioptions": 1, + "-": 1, + "T": 1, + "nocompatible": 1, + "ignorecase": 1, + "incsearch": 1, + "smartcase": 1, + "showmatch": 1, + "showcmd": 1, + "syntax": 1, + "on": 1 + }, + "Visual Basic": { + "VERSION": 1, + "CLASS": 1, + "BEGIN": 1, + "MultiUse": 1, + "-": 6, + "NotPersistable": 1, + "DataBindingBehavior": 1, + "vbNone": 1, + "MTSTransactionMode": 1, + "*************************************************************************************************************************************************************************************************************************************************": 2, + "Copyright": 1, + "(": 14, + "c": 1, + ")": 14, + "David": 1, + "Briant": 1, + "All": 1, + "rights": 1, + "reserved": 1, + "Option": 1, + "Explicit": 1, + "Private": 25, + "Declare": 3, + "Function": 5, + "apiSetProp": 4, + "Lib": 3, + "Alias": 3, + "ByVal": 6, + "hwnd": 2, + "As": 34, + "Long": 10, + "lpString": 2, + "String": 13, + "hData": 1, + "apiGlobalAddAtom": 3, + "apiSetForegroundWindow": 1, + "myMouseEventsForm": 5, + "fMouseEventsForm": 2, + "WithEvents": 3, + "myAST": 3, + "cTP_AdvSysTray": 2, + "Attribute": 3, + "myAST.VB_VarHelpID": 1, + "myClassName": 2, + "myWindowName": 2, + "Const": 9, + "TEN_MILLION": 1, + "Single": 1, + "myListener": 1, + "VLMessaging.VLMMMFileListener": 1, + "myListener.VB_VarHelpID": 1, + "myMMFileTransports": 2, + "VLMessaging.VLMMMFileTransports": 1, + "myMMFileTransports.VB_VarHelpID": 1, + "myMachineID": 1, + "myRouterSeed": 1, + "myRouterIDsByMMTransportID": 1, + "New": 6, + "Dictionary": 3, + "myMMTransportIDsByRouterID": 2, + "myDirectoryEntriesByIDString": 1, + "GET_ROUTER_ID": 1, + "GET_ROUTER_ID_REPLY": 1, + "REGISTER_SERVICE": 1, + "REGISTER_SERVICE_REPLY": 1, + "UNREGISTER_SERVICE": 1, + "UNREGISTER_SERVICE_REPLY": 1, + "GET_SERVICES": 1, + "GET_SERVICES_REPLY": 1, + "Initialize": 1, + "/": 1, + "Release": 1, + "hide": 1, + "us": 1, + "from": 1, + "the": 3, + "Applications": 1, + "list": 1, + "in": 1, + "Windows": 1, + "Task": 1, + "Manager": 1, + "App.TaskVisible": 1, + "False": 1, + "create": 1, + "tray": 1, + "icon": 1, + "Set": 5, + "myAST.create": 1, + "myMouseEventsForm.icon": 1, + "make": 1, + "myself": 1, + "easily": 1, + "found": 1, + "myMouseEventsForm.hwnd": 3, + "End": 7, + "Sub": 7, + "shutdown": 1, + "myAST.destroy": 1, + "Nothing": 2, + "Unload": 1, + "myAST_RButtonUp": 1, + "Dim": 1, + "epm": 1, + "cTP_EasyPopupMenu": 1, + "menuItemSelected": 1, + "epm.addMenuItem": 3, + "MF_STRING": 3, + "epm.addSubmenuItem": 2, + "MF_SEPARATOR": 1, + "MF_CHECKED": 1, + "route": 2, + "to": 1, + "a": 1, + "remote": 1, + "machine": 1, + "Else": 1, + "for": 1, + "moment": 1, + "just": 1, + "between": 1, + "MMFileTransports": 1, + "If": 3, + "myMMTransportIDsByRouterID.Exists": 1, + "message.toAddress.RouterID": 2, + "Then": 1, + "transport": 1, + "transport.send": 1, + "messageToBytes": 1, + "message": 1, + "directoryEntryIDString": 2, + "serviceType": 2, + "address": 1, + "VLMAddress": 1, + "&": 7, + "address.MachineID": 1, + "address.RouterID": 1, + "address.AgentID": 1, + "myMMFileTransports_disconnecting": 1, + "id": 1, + "oReceived": 2, + "Boolean": 1, + "True": 1 + }, + "Volt": { + "module": 1, + "main": 2, + ";": 53, + "import": 7, + "core.stdc.stdio": 1, + "core.stdc.stdlib": 1, + "watt.process": 1, + "watt.path": 1, + "results": 1, + "list": 1, + "cmd": 1, + "int": 8, + "(": 37, + ")": 37, + "{": 12, + "auto": 6, + "cmdGroup": 2, + "new": 3, + "CmdGroup": 1, + "bool": 4, + "printOk": 2, + "true": 4, + "printImprovments": 2, + "printFailing": 2, + "printRegressions": 2, + "string": 1, + "compiler": 3, + "getEnv": 1, + "if": 7, + "is": 2, + "null": 3, + "printf": 6, + ".ptr": 14, + "return": 2, + "-": 3, + "}": 12, + "///": 1, + "@todo": 1, + "Scan": 1, + "for": 4, + "files": 1, + "tests": 2, + "testList": 1, + "total": 5, + "passed": 5, + "failed": 5, + "improved": 3, + "regressed": 6, + "rets": 5, + "Result": 2, + "[": 6, + "]": 6, + "tests.length": 3, + "size_t": 3, + "i": 14, + "<": 3, + "+": 14, + ".runTest": 1, + "cmdGroup.waitAll": 1, + "ret": 1, + "ret.ok": 1, + "cast": 5, + "ret.hasPassed": 4, + "&&": 2, + "ret.test.ptr": 4, + "ret.msg.ptr": 4, + "else": 3, + "fflush": 2, + "stdout": 1, + "xml": 8, + "fopen": 1, + "fprintf": 2, + "rets.length": 1, + ".xmlLog": 1, + "fclose": 1, + "rate": 2, + "float": 2, + "/": 1, + "*": 1, + "f": 1, + "double": 1 + }, + "wisp": { + ";": 199, + "#": 2, + "wisp": 6, + "Wisp": 13, + "is": 20, + "homoiconic": 1, + "JS": 17, + "dialect": 1, + "with": 6, + "a": 24, + "clojure": 2, + "syntax": 2, + "s": 7, + "-": 33, + "expressions": 6, + "and": 9, + "macros.": 1, + "code": 3, + "compiles": 1, + "to": 21, + "human": 1, + "readable": 1, + "javascript": 1, + "which": 3, + "one": 3, + "of": 16, + "they": 3, + "key": 3, + "differences": 1, + "from": 2, + "clojurescript.": 1, + "##": 2, + "data": 1, + "structures": 1, + "nil": 4, + "just": 3, + "like": 2, + "js": 1, + "undefined": 1, + "differenc": 1, + "that": 7, + "it": 10, + "shortcut": 1, + "for": 5, + "void": 2, + "(": 77, + ")": 75, + "in": 16, + "JS.": 2, + "Booleans": 1, + "booleans": 2, + "true": 6, + "/": 1, + "false": 2, + "are": 14, + "Numbers": 1, + "numbers": 2, + "Strings": 2, + "strings": 3, + "can": 13, + "be": 15, + "multiline": 1, + "Characters": 2, + "sugar": 1, + "single": 1, + "char": 1, + "Keywords": 3, + "symbolic": 2, + "identifiers": 2, + "evaluate": 2, + "themselves.": 1, + "keyword": 1, + "Since": 1, + "string": 1, + "constats": 1, + "fulfill": 1, + "this": 2, + "purpose": 2, + "keywords": 1, + "compile": 3, + "equivalent": 2, + "strings.": 1, + "window.addEventListener": 1, + "load": 1, + "handler": 1, + "invoked": 2, + "as": 4, + "functions": 8, + "desugars": 1, + "plain": 2, + "associated": 2, + "value": 2, + "access": 1, + "bar": 4, + "foo": 6, + "[": 22, + "]": 22, + "Vectors": 1, + "vectors": 1, + "arrays.": 1, + "Note": 3, + "Commas": 2, + "white": 1, + "space": 1, + "&": 6, + "used": 1, + "if": 7, + "desired": 1, + "Maps": 2, + "hash": 1, + "maps": 1, + "objects.": 1, + "unlike": 1, + "keys": 1, + "not": 4, + "arbitary": 1, + "types.": 1, + "{": 4, + "beep": 1, + "bop": 1, + "}": 4, + "optional": 2, + "but": 7, + "come": 1, + "handy": 1, + "separating": 1, + "pairs.": 1, + "b": 5, + "In": 5, + "future": 2, + "JSONs": 1, + "may": 1, + "made": 2, + "compatible": 1, + "map": 3, + "syntax.": 1, + "Lists": 1, + "You": 1, + "up": 1, + "lists": 1, + "representing": 1, + "expressions.": 1, + "The": 1, + "first": 4, + "item": 2, + "the": 9, + "expression": 6, + "function": 7, + "being": 1, + "rest": 7, + "items": 2, + "arguments.": 2, + "baz": 2, + "Conventions": 1, + "puts": 1, + "lot": 2, + "effort": 1, + "making": 1, + "naming": 1, + "conventions": 3, + "transparent": 1, + "by": 2, + "encouraning": 1, + "lisp": 1, + "then": 1, + "translating": 1, + "them": 1, + "dash": 1, + "delimited": 1, + "dashDelimited": 1, + "predicate": 1, + "isPredicate": 1, + "__privates__": 1, + "list": 2, + "vector": 1, + "listToVector": 1, + "As": 1, + "side": 2, + "effect": 1, + "some": 2, + "names": 1, + "expressed": 3, + "few": 1, + "ways": 1, + "although": 1, + "third": 2, + "expression.": 1, + "<": 1, + "number": 3, + "Else": 1, + "missing": 1, + "conditional": 1, + "evaluates": 2, + "result": 2, + "will": 6, + ".": 6, + "monday": 1, + "today": 1, + "Compbining": 1, + "everything": 1, + "an": 1, + "sometimes": 1, + "might": 1, + "want": 2, + "compbine": 1, + "multiple": 1, + "into": 2, + "usually": 3, + "evaluating": 1, + "have": 2, + "effects": 1, + "do": 4, + "console.log": 2, + "+": 9, + "Also": 1, + "special": 4, + "form": 10, + "many.": 1, + "If": 2, + "evaluation": 1, + "nil.": 1, + "Bindings": 1, + "Let": 1, + "containing": 1, + "lexical": 1, + "context": 1, + "simbols": 1, + "bindings": 1, + "forms": 1, + "bound": 1, + "their": 2, + "respective": 1, + "results.": 1, + "let": 2, + "c": 1, + "Functions": 1, + "fn": 15, + "x": 22, + "named": 1, + "similar": 2, + "increment": 1, + "also": 2, + "contain": 1, + "documentation": 1, + "metadata.": 1, + "Docstring": 1, + "metadata": 1, + "presented": 1, + "compiled": 2, + "yet": 1, + "comments": 1, + "function.": 1, + "incerement": 1, + "added": 1, + "makes": 1, + "capturing": 1, + "arguments": 7, + "easier": 1, + "than": 1, + "argument": 1, + "follows": 1, + "simbol": 1, + "capture": 1, + "all": 4, + "args": 1, + "array.": 1, + "rest.reduce": 1, + "sum": 3, + "Overloads": 1, + "overloaded": 1, + "depending": 1, + "on": 1, + "take": 2, + "without": 2, + "introspection": 1, + "version": 1, + "y": 6, + "more": 3, + "more.reduce": 1, + "does": 1, + "has": 2, + "variadic": 1, + "overload": 1, + "passed": 1, + "throws": 1, + "exception.": 1, + "Other": 1, + "Special": 1, + "Forms": 1, + "Instantiation": 1, + "type": 2, + "instantiation": 1, + "consice": 1, + "needs": 1, + "suffixed": 1, + "character": 1, + "Type.": 1, + "options": 2, + "More": 1, + "verbose": 1, + "there": 1, + "new": 2, + "Class": 1, + "Method": 1, + "calls": 3, + "method": 2, + "no": 1, + "different": 1, + "Any": 1, + "quoted": 1, + "prevent": 1, + "doesn": 1, + "t": 1, + "unless": 5, + "or": 2, + "macro": 7, + "try": 1, + "implemting": 1, + "understand": 1, + "use": 2, + "case": 1, + "We": 1, + "execute": 1, + "body": 4, + "condition": 4, + "defn": 2, + "Although": 1, + "following": 2, "log": 1, - "self": 1, - "alloc": 1, - "end": 4 + "anyway": 1, + "since": 1, + "exectued": 1, + "before": 1, + "called.": 1, + "Macros": 2, + "solve": 1, + "problem": 1, + "because": 1, + "immediately.": 1, + "Instead": 1, + "you": 1, + "get": 2, + "choose": 1, + "when": 1, + "evaluated.": 1, + "return": 1, + "instead.": 1, + "defmacro": 3, + "less": 1, + "how": 1, + "build": 1, + "implemented.": 1, + "define": 4, + "name": 2, + "def": 1, + "@body": 1, + "Now": 1, + "we": 2, + "above": 1, + "defined": 1, + "expanded": 2, + "time": 1, + "resulting": 1, + "diff": 1, + "program": 1, + "output.": 1, + "print": 1, + "message": 2, + ".log": 1, + "console": 1, + "Not": 1, + "macros": 2, + "via": 2, + "templating": 1, + "language": 1, + "available": 1, + "at": 1, + "hand": 1, + "assemble": 1, + "form.": 1, + "For": 2, + "instance": 1, + "ease": 1, + "functional": 1, + "chanining": 1, + "popular": 1, + "chaining.": 1, + "example": 1, + "API": 1, + "pioneered": 1, + "jQuery": 1, + "very": 2, + "common": 1, + "open": 2, + "target": 1, + "keypress": 2, + "filter": 2, + "isEnterKey": 1, + "getInputText": 1, + "reduce": 3, + "render": 2, + "Unfortunately": 1, + "though": 1, + "requires": 1, + "need": 1, + "methods": 1, + "dsl": 1, + "object": 1, + "limited.": 1, + "Making": 1, + "party": 1, + "second": 1, + "class.": 1, + "Via": 1, + "achieve": 1, + "chaining": 1, + "such": 1, + "tradeoffs.": 1, + "operations": 3, + "operation": 3, + "cons": 2, + "tagret": 1, + "enter": 1, + "input": 1, + "text": 1 + }, + "XC": { + "int": 2, + "main": 1, + "(": 1, + ")": 1, + "{": 2, + "x": 3, + ";": 4, + "chan": 1, + "c": 3, + "par": 1, + "<:>": 1, + "0": 1, + "}": 2, + "return": 1 + }, + "XML": { + "": 3, + "version=": 4, + "": 1, + "name=": 223, + "xmlns": 2, + "ea=": 2, + "": 2, + "This": 21, + "easyant": 3, + "module.ant": 1, + "sample": 2, + "file": 3, + "is": 123, + "optionnal": 1, + "and": 44, + "designed": 1, + "to": 164, + "customize": 1, + "your": 8, + "build": 1, + "with": 23, + "own": 2, + "specific": 8, + "target.": 1, + "": 2, + "": 2, + "": 2, + "my": 2, + "awesome": 1, + "additionnal": 1, + "target": 6, + "": 2, + "": 2, + "extensionOf=": 1, + "i": 2, + "would": 2, + "love": 1, + "could": 1, + "easily": 1, + "plug": 1, + "pre": 1, + "compile": 1, + "step": 1, + "": 1, + "": 1, + "": 1, + "organisation=": 3, + "module=": 3, + "revision=": 3, + "status=": 1, + "this": 77, + "a": 127, + "module.ivy": 1, + "for": 59, + "java": 1, + "standard": 1, + "application": 2, + "": 1, + "": 1, + "value=": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 2, + "visibility=": 2, + "description=": 2, + "": 1, + "": 1, + "": 1, + "org=": 1, + "rev=": 1, + "conf=": 1, + "default": 9, + "junit": 2, + "test": 7, + "-": 49, + "/": 6, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "ReactiveUI": 2, + "": 1, + "": 1, + "": 1, + "": 120, + "": 120, + "IObservedChange": 5, + "generic": 3, + "interface": 4, + "that": 94, + "replaces": 1, + "the": 260, + "non": 1, + "PropertyChangedEventArgs.": 1, + "Note": 7, + "it": 16, + "used": 19, + "both": 2, + "Changing": 5, + "(": 52, + "i.e.": 23, + ")": 45, + "Changed": 4, + "Observables.": 2, + "In": 6, + "future": 2, + "will": 65, + "be": 57, + "Covariant": 1, + "which": 12, + "allow": 1, + "simpler": 1, + "casting": 1, + "between": 15, + "changes.": 2, + "": 121, + "": 120, + "The": 74, + "object": 42, + "has": 16, + "raised": 1, + "change.": 12, + "name": 7, + "of": 75, + "property": 74, + "changed": 18, + "on": 35, + "Sender.": 1, + "value": 44, + "changed.": 9, + "IMPORTANT": 1, + "NOTE": 1, + "often": 3, + "not": 9, + "set": 41, + "performance": 1, + "reasons": 1, + "unless": 1, + "you": 20, + "have": 17, + "explicitly": 1, + "requested": 1, + "an": 88, + "Observable": 56, + "via": 8, + "method": 34, + "such": 5, + "as": 25, + "ObservableForProperty.": 1, + "To": 4, + "retrieve": 3, + "use": 5, + "Value": 3, + "extension": 2, + "method.": 2, + "IReactiveNotifyPropertyChanged": 6, + "represents": 4, + "extended": 1, + "version": 3, + "INotifyPropertyChanged": 1, + "also": 17, + "exposes": 1, + "IEnableLogger": 1, + "dummy": 1, + "attaching": 1, + "any": 11, + "class": 11, + "give": 1, + "access": 3, + "Log": 2, + "When": 5, + "called": 5, + "fire": 11, + "change": 26, + "notifications": 22, + "neither": 3, + "traditional": 3, + "nor": 3, + "until": 7, + "return": 11, + "disposed.": 3, + "": 36, + "An": 26, + "when": 38, + "disposed": 4, + "reenables": 3, + "notifications.": 5, + "": 36, + "Represents": 4, + "fires": 6, + "*before*": 2, + "about": 5, + "should": 10, + "duplicate": 2, + "if": 27, + "same": 8, + "multiple": 6, + "times.": 4, + "*after*": 2, + "TSender": 1, + "helper": 5, + "adds": 2, + "typed": 2, + "versions": 2, + "Changed.": 1, + "IReactiveCollection": 3, + "collection": 27, + "can": 11, + "notify": 3, + "its": 4, + "contents": 2, + "are": 13, + "either": 1, + "items": 27, + "added/removed": 1, + "or": 24, + "itself": 2, + "changes": 13, + ".": 20, + "It": 1, + "important": 6, + "implement": 5, + "Changing/Changed": 1, + "from": 12, + "semantically": 3, + "Fires": 14, + "added": 6, + "once": 4, + "per": 2, + "item": 19, + "added.": 4, + "Functions": 2, + "add": 2, + "AddRange": 2, + "provided": 14, + "was": 6, + "before": 8, + "going": 4, + "collection.": 6, + "been": 5, + "removed": 4, + "providing": 20, + "removed.": 4, + "whenever": 18, + "number": 9, + "in": 45, + "new": 10, + "Count.": 4, + "previous": 2, + "Provides": 4, + "Item": 4, + "implements": 8, + "IReactiveNotifyPropertyChanged.": 4, + "only": 18, + "enabled": 8, + "ChangeTrackingEnabled": 2, + "True.": 2, + "Enables": 2, + "ItemChanging": 2, + "ItemChanged": 2, + "properties": 29, + ";": 10, + "implementing": 2, + "rebroadcast": 2, + "through": 3, + "ItemChanging/ItemChanged.": 2, + "T": 1, + "type": 23, + "specified": 7, + "Observables": 4, + "IMessageBus": 1, + "act": 2, + "simple": 2, + "way": 2, + "ViewModels": 3, + "other": 9, + "objects": 4, + "communicate": 2, + "each": 7, + "loosely": 2, + "coupled": 2, + "way.": 2, + "Specifying": 2, + "messages": 22, + "go": 2, + "where": 4, + "done": 2, + "combination": 2, + "Type": 9, + "message": 30, + "well": 2, + "additional": 3, + "parameter": 6, + "unique": 12, + "string": 13, + "distinguish": 12, + "arbitrarily": 2, + "by": 13, + "client.": 2, + "Listen": 4, + "provides": 6, + "Message": 2, + "RegisterMessageSource": 4, + "SendMessage.": 2, + "": 12, + "listen": 6, + "to.": 7, + "": 12, + "": 84, + "A": 19, + "identical": 11, + "types": 10, + "one": 27, + "purpose": 10, + "leave": 10, + "null.": 10, + "": 83, + "Determins": 2, + "particular": 2, + "registered.": 2, + "message.": 1, + "True": 6, + "posted": 3, + "Type.": 2, + "Registers": 3, + "representing": 20, + "stream": 7, + "send.": 4, + "Another": 2, + "part": 2, + "code": 4, + "then": 3, + "call": 5, + "Observable.": 6, + "subscribed": 2, + "sent": 2, + "out": 4, + "provided.": 5, + "Sends": 2, + "single": 2, + "using": 9, + "contract.": 2, + "Consider": 2, + "instead": 2, + "sending": 2, + "response": 2, + "events.": 2, + "actual": 2, + "send": 3, + "returns": 5, + "current": 10, + "logger": 2, + "allows": 15, + "log": 2, + "attached.": 1, + "data": 1, + "structure": 1, + "representation": 1, + "memoizing": 2, + "cache": 14, + "evaluate": 1, + "function": 13, + "but": 7, + "keep": 1, + "recently": 3, + "evaluated": 1, + "parameters.": 1, + "Since": 1, + "mathematical": 2, + "sense": 1, + "key": 12, + "*always*": 1, + "maps": 1, + "corresponding": 2, + "value.": 2, + "calculation": 8, + "function.": 6, + "returned": 2, + "Constructor": 2, + "whose": 7, + "results": 6, + "want": 2, + "Tag": 1, + "user": 2, + "defined": 1, + "size": 1, + "maintain": 1, + "after": 1, + "old": 1, + "start": 1, + "thrown": 1, + "out.": 1, + "result": 3, + "gets": 1, + "evicted": 2, + "because": 2, + "Invalidate": 2, + "full": 1, + "Evaluates": 1, + "returning": 1, + "cached": 2, + "possible": 1, + "pass": 2, + "optional": 2, + "parameter.": 1, + "Ensure": 1, + "next": 1, + "time": 3, + "queried": 1, + "called.": 1, + "all": 4, + "Returns": 5, + "values": 4, + "currently": 2, + "MessageBus": 3, + "bus.": 1, + "scheduler": 11, + "post": 2, + "RxApp.DeferredScheduler": 2, + "default.": 2, + "Current": 1, + "RxApp": 1, + "global": 1, + "object.": 3, + "ViewModel": 8, + "another": 3, + "s": 1, + "Return": 1, + "instance": 2, + "type.": 3, + "registered": 1, + "ObservableAsPropertyHelper": 6, + "help": 1, + "backed": 1, + "read": 3, + "still": 1, + "created": 2, + "directly": 1, + "more": 16, + "ToProperty": 2, + "ObservableToProperty": 1, + "methods.": 2, + "so": 1, + "output": 1, + "chained": 2, + "example": 2, + "property.": 12, + "Constructs": 4, + "base": 3, + "on.": 6, + "action": 2, + "take": 2, + "typically": 1, + "t": 2, + "bindings": 13, + "null": 4, + "OAPH": 2, + "at": 2, + "startup.": 1, + "initial": 28, + "normally": 6, + "Dispatcher": 3, + "based": 9, + "last": 1, + "Exception": 1, + "steps": 1, + "taken": 1, + "ensure": 3, + "never": 3, + "complete": 1, + "fail.": 1, + "Converts": 2, + "automatically": 3, + "onChanged": 2, + "raise": 2, + "notification.": 2, + "equivalent": 2, + "convenient.": 1, + "Expression": 7, + "initialized": 2, + "backing": 9, + "field": 10, + "ReactiveObject": 11, + "ObservableAsyncMRUCache": 2, + "memoization": 2, + "asynchronous": 4, + "expensive": 2, + "compute": 1, + "MRU": 1, + "fixed": 1, + "limit": 5, + "cache.": 5, + "guarantees": 6, + "given": 11, + "flight": 2, + "subsequent": 1, + "requests": 4, + "wait": 3, + "first": 1, + "empty": 1, + "web": 6, + "image": 1, + "receives": 1, + "two": 1, + "concurrent": 5, + "issue": 2, + "WebRequest": 1, + "does": 1, + "mean": 1, + "request": 3, + "Concurrency": 1, + "limited": 1, + "maxConcurrent": 1, + "too": 1, + "many": 1, + "operations": 6, + "progress": 1, + "further": 1, + "queued": 1, + "slot": 1, + "available.": 1, + "performs": 1, + "asyncronous": 1, + "async": 3, + "CPU": 1, + "Observable.Return": 1, + "may": 1, + "result.": 2, + "*must*": 1, + "equivalently": 1, + "input": 2, + "being": 1, + "memoized": 1, + "calculationFunc": 2, + "depends": 1, + "varables": 1, + "than": 5, + "unpredictable.": 1, + "reached": 2, + "discarded.": 4, + "maximum": 2, + "regardless": 2, + "caches": 2, + "server.": 2, + "clean": 1, + "up": 25, + "manage": 1, + "disk": 1, + "download": 1, + "save": 1, + "temporary": 1, + "folder": 1, + "onRelease": 1, + "delete": 1, + "file.": 1, + "run": 7, + "defaults": 1, + "TaskpoolScheduler": 2, + "Issues": 1, + "fetch": 1, + "operation.": 1, + "operation": 2, + "finishes.": 1, + "If": 6, + "immediately": 3, + "upon": 1, + "subscribing": 1, + "returned.": 2, + "provide": 2, + "synchronous": 1, + "AsyncGet": 1, + "resulting": 1, + "Works": 2, + "like": 2, + "SelectMany": 2, + "memoizes": 2, + "selector": 5, + "calls.": 2, + "addition": 3, + "no": 4, + "selectors": 2, + "running": 4, + "concurrently": 2, + "queues": 2, + "rest.": 2, + "very": 2, + "services": 2, + "avoid": 2, + "potentially": 2, + "spamming": 2, + "server": 2, + "hundreds": 2, + "requests.": 2, + "similar": 3, + "passed": 1, + "SelectMany.": 1, + "similarly": 1, + "ObservableAsyncMRUCache.AsyncGet": 1, + "must": 2, + "sense.": 1, + "flattened": 2, + "selector.": 2, + "overload": 2, + "useful": 2, + "making": 3, + "service": 1, + "several": 1, + "places": 1, + "paths": 1, + "already": 1, + "configured": 1, + "ObservableAsyncMRUCache.": 1, + "notification": 6, + "Attempts": 1, + "expression": 3, + "false": 2, + "expression.": 1, + "entire": 1, + "able": 1, + "followed": 1, + "otherwise": 1, + "Given": 3, + "fully": 3, + "filled": 1, + "SetValueToProperty": 1, + "apply": 3, + "target.property": 1, + "This.GetValue": 1, + "observed": 1, + "onto": 1, + "convert": 2, + "stream.": 3, + "ValueIfNotDefault": 1, + "filters": 1, + "BindTo": 1, + "takes": 1, + "applies": 1, + "Conceptually": 1, + "child": 2, + "without": 1, + "checks.": 1, + "set.": 3, + "x.Foo.Bar.Baz": 1, + "disconnects": 1, + "binding.": 1, + "ReactiveCollection.": 1, + "ReactiveCollection": 1, + "existing": 3, + "list.": 2, + "list": 1, + "populate": 1, + "anything": 2, + "Change": 2, + "Tracking": 2, + "Creates": 3, + "adding": 2, + "completes": 4, + "optionally": 2, + "ensuring": 2, + "delay.": 2, + "withDelay": 2, + "leak": 2, + "Timer.": 2, + "always": 4, + "UI": 2, + "thread.": 3, + "put": 2, + "into": 2, + "populated": 4, + "faster": 2, + "delay": 2, + "Select": 3, + "item.": 3, + "creating": 2, + "collections": 1, + "updated": 1, + "respective": 1, + "Model": 1, + "updated.": 1, + "Collection.Select": 1, + "mirror": 1, + "ObservableForProperty": 14, + "ReactiveObject.": 1, + "unlike": 13, + "Selector": 1, + "classes": 2, + "INotifyPropertyChanged.": 1, + "monitor": 1, + "RaiseAndSetIfChanged": 2, + "Setter": 2, + "write": 2, + "assumption": 4, + "named": 2, + "RxApp.GetFieldNameForPropertyNameFunc.": 2, + "almost": 2, + "keyword.": 2, + "newly": 2, + "intended": 5, + "Silverlight": 2, + "WP7": 1, + "reflection": 1, + "cannot": 1, + "private": 1, + "field.": 1, + "Reference": 1, + "Use": 13, + "custom": 4, + "raiseAndSetIfChanged": 1, + "doesn": 1, + "x": 1, + "x.SomeProperty": 1, + "suffice.": 1, + "RaisePropertyChanging": 2, + "mock": 4, + "scenarios": 4, + "manually": 4, + "fake": 4, + "invoke": 4, + "raisePropertyChanging": 4, + "faking": 4, + "RaisePropertyChanged": 2, + "helps": 1, + "make": 2, + "them": 1, + "compatible": 1, + "Rx.Net.": 1, + "declare": 1, + "initialize": 1, + "derive": 1, + "properties/methods": 1, + "MakeObjectReactiveHelper.": 1, + "InUnitTestRunner": 1, + "attempts": 1, + "determine": 1, + "heuristically": 1, + "unit": 3, + "framework.": 1, + "we": 1, + "determined": 1, + "framework": 1, + "running.": 1, + "GetFieldNameForProperty": 1, + "convention": 2, + "GetFieldNameForPropertyNameFunc.": 1, + "needs": 1, + "found.": 1, + "name.": 1, + "DeferredScheduler": 1, + "schedule": 2, + "work": 2, + "normal": 2, + "mode": 2, + "DispatcherScheduler": 1, + "Unit": 1, + "Test": 1, + "Immediate": 1, + "simplify": 1, + "writing": 1, + "common": 1, + "tests.": 1, + "background": 1, + "modes": 1, + "TPL": 1, + "Task": 1, + "Pool": 1, + "Threadpool": 1, + "Set": 3, + "provider": 1, + "usually": 1, + "entry": 1, + "MessageBus.Current.": 1, + "override": 1, + "naming": 1, + "one.": 1, + "WhenAny": 12, + "observe": 12, + "constructors": 12, + "need": 12, + "setup.": 12, + "": 1, + "": 1 + }, + "XProc": { + "": 1, + "version=": 2, + "encoding=": 1, + "": 1, + "xmlns": 2, + "p=": 1, + "c=": 1, + "": 1, + "port=": 2, + "": 1, + "": 1, + "Hello": 1, + "world": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1 + }, + "XQuery": { + "(": 38, + "-": 486, + "xproc.xqm": 1, + "core": 1, + "xqm": 1, + "contains": 1, + "entry": 2, + "points": 1, + "primary": 1, + "eval": 3, + "step": 5, + "function": 3, + "and": 3, + "control": 1, + "functions.": 1, + ")": 38, + "xquery": 1, + "version": 1, + "encoding": 1, + ";": 25, + "module": 6, + "namespace": 8, + "xproc": 17, + "declare": 24, + "namespaces": 5, + "p": 2, + "c": 1, + "err": 1, + "imports": 1, + "import": 4, + "util": 1, + "at": 4, + "const": 1, + "parse": 8, + "u": 2, + "options": 2, + "boundary": 1, + "space": 1, + "preserve": 1, + "option": 1, + "saxon": 1, + "output": 1, + "functions": 1, + "variable": 13, + "run": 2, + "run#6": 1, + "choose": 1, + "try": 1, + "catch": 1, + "group": 1, + "for": 1, + "each": 1, + "viewport": 1, + "library": 1, + "pipeline": 8, + "list": 1, + "all": 1, + "declared": 1, + "enum": 3, + "{": 5, + "": 1, + "name=": 1, + "ns": 1, + "": 1, + "}": 5, + "": 1, + "": 1, + "point": 1, + "stdin": 1, + "dflag": 1, + "tflag": 1, + "bindings": 2, + "STEP": 3, + "I": 1, + "preprocess": 1, + "let": 6, + "validate": 1, + "explicit": 3, + "AST": 2, + "name": 1, + "type": 1, + "ast": 1, + "element": 1, + "parse/@*": 1, + "sort": 1, + "parse/*": 1, + "II": 1, + "eval_result": 1, + "III": 1, + "serialize": 1, + "return": 2, + "results": 1, + "serialized_result": 2 + }, + "XSLT": { + "": 1, + "version=": 2, + "": 1, + "xmlns": 1, + "xsl=": 1, + "": 1, + "match=": 1, + "": 1, + "": 1, + "

": 1, + "My": 1, + "CD": 1, + "Collection": 1, + "

": 1, + "
": 1, + "border=": 1, + "": 2, + "bgcolor=": 1, + "": 2, + "Artist": 1, + "": 2, + "": 1, + "select=": 3, + "": 2, + "": 1, + "
": 2, + "Title": 1, + "
": 2, + "": 2, + "
": 1, + "": 1, + "": 1, + "
": 1, + "": 1 + }, + "Xtend": { + "package": 2, + "example2": 1, + "import": 7, + "org.junit.Test": 2, + "static": 4, + "org.junit.Assert.*": 2, + "class": 4, + "BasicExpressions": 2, + "{": 14, + "@Test": 7, + "def": 7, + "void": 7, + "literals": 5, + "(": 42, + ")": 42, + "//": 11, + "string": 1, + "work": 1, + "with": 2, + "single": 1, + "or": 1, + "double": 2, + "quotes": 1, + "assertEquals": 14, + "number": 1, + "big": 1, + "decimals": 1, + "in": 2, + "this": 1, + "case": 1, + "+": 6, + "*": 1, + "bd": 3, + "boolean": 1, + "true": 1, + "false": 1, + "getClass": 1, + "typeof": 1, + "}": 13, + "collections": 2, + "There": 1, + "are": 1, + "various": 1, + "methods": 2, + "to": 1, + "create": 1, + "and": 1, + "numerous": 1, + "extension": 2, + "which": 1, + "make": 1, + "working": 1, + "them": 1, + "convenient.": 1, + "val": 9, + "list": 1, + "newArrayList": 2, + "list.map": 1, + "[": 9, + "toUpperCase": 1, + "]": 9, + ".head": 1, + "set": 1, + "newHashSet": 1, + "set.filter": 1, + "it": 2, + ".size": 2, + "map": 1, + "newHashMap": 1, + "-": 5, + "map.get": 1, + "controlStructures": 1, + "looks": 1, + "like": 1, + "Java": 1, + "if": 1, + ".length": 1, + "but": 1, + "foo": 1, + "bar": 1, + "Never": 2, + "happens": 3, + "text": 2, + "never": 1, + "s": 1, + "cascades.": 1, + "Object": 1, + "someValue": 2, + "switch": 1, + "Number": 1, + "String": 2, + "loops": 1, + "for": 2, + "loop": 2, + "var": 1, + "counter": 8, + "i": 4, + "..": 1, + "while": 2, + "iterator": 1, + ".iterator": 2, + "iterator.hasNext": 1, + "iterator.next": 1, + "example6": 1, + "java.io.FileReader": 1, + "java.util.Set": 1, + "com.google.common.io.CharStreams.*": 1, + "Movies": 1, + "numberOfActionMovies": 1, + "movies.filter": 2, + "categories.contains": 1, + "yearOfBestMovieFrom80ies": 1, + ".contains": 1, + "year": 2, + ".sortBy": 1, + "rating": 3, + ".last.year": 1, + "sumOfVotesOfTop2": 1, + "long": 2, + "movies": 3, + "movies.sortBy": 1, + ".take": 1, + ".map": 1, + "numberOfVotes": 2, + ".reduce": 1, + "a": 2, + "b": 2, + "|": 2, + "_229": 1, + "new": 2, + "FileReader": 1, + ".readLines.map": 1, + "line": 1, + "segments": 1, + "line.split": 1, + "return": 1, + "Movie": 2, + "segments.next": 4, + "Integer": 1, + "parseInt": 1, + "Double": 1, + "parseDouble": 1, + "Long": 1, + "parseLong": 1, + "segments.toSet": 1, + "@Data": 1, + "title": 1, + "int": 1, + "Set": 1, + "": 1, + "categories": 1 + }, + "YAML": { + "gem": 1, + "-": 16, + "local": 1, + "gen": 1, + "rdoc": 2, + "run": 1, + "tests": 1, + "inline": 1, + "source": 1, + "line": 1, + "numbers": 1, + "gempath": 1, + "/usr/local/rubygems": 1, + "/home/gavin/.rubygems": 1 } }, - "languages": { - "VimL": 2, - "C": 24, - "LFE": 4, - "Apex": 6, - "Standard ML": 2, - "Parrot Internal Representation": 1, - "Less": 1, - "NSIS": 2, - "INI": 2, + "language_tokens": { + "ABAP": 1500, + "ApacheConf": 1449, + "Apex": 4408, + "AppleScript": 1862, + "Arduino": 20, + "AsciiDoc": 103, + "AutoHotkey": 3, + "Awk": 544, + "C": 58732, + "C++": 21480, + "Ceylon": 50, + "COBOL": 90, + "CoffeeScript": 2951, + "Coq": 18259, + "Creole": 134, + "CSS": 43867, + "Dart": 68, + "Diff": 16, + "Ecl": 281, + "edn": 227, + "Elm": 628, + "Emacs Lisp": 1756, + "Erlang": 2928, + "fish": 636, + "Forth": 1516, + "GAS": 133, + "GLSL": 3766, + "Gosu": 413, + "Groovy": 69, + "Groovy Server Pages": 91, + "Haml": 4, + "Handlebars": 69, + "INI": 27, + "Ioke": 2, + "Java": 8987, + "JavaScript": 76934, + "JSON": 619, + "Julia": 247, + "Kotlin": 155, + "Lasso": 9849, + "Less": 39, + "LFE": 1711, + "Literate CoffeeScript": 275, + "LiveScript": 123, + "Logos": 93, + "Logtalk": 36, + "Lua": 724, + "M": 23373, + "Makefile": 50, "Markdown": 1, - "VHDL": 1, - "TypeScript": 3, - "TeX": 1, - "Rust": 1, - "Coq": 12, - "Nemerle": 1, - "Matlab": 37, - "XC": 1, - "Scheme": 1, - "JSON": 5, - "Omgrofl": 1, - "Ragel in Ruby Host": 3, - "JavaScript": 20, - "Makefile": 2, - "COBOL": 4, - "Groovy Server Pages": 4, - "Pascal": 1, - "Nu": 2, - "XML": 3, - "Dart": 1, - "Ecl": 1, - "M": 28, - "AutoHotkey": 1, - "Max": 1, - "Turing": 1, - "SuperCollider": 2, - "Erlang": 5, - "Diff": 1, - "YAML": 1, - "Scala": 3, - "Sass": 2, - "Perl": 14, - "Ceylon": 1, - "ABAP": 1, - "Elm": 3, - "OCaml": 2, - "R": 2, - "Prolog": 6, - "Haml": 1, - "Logtalk": 1, - "Visual Basic": 1, - "PogoScript": 1, - "LiveScript": 1, - "OpenEdge ABL": 5, - "Kotlin": 1, - "Xtend": 2, - "Racket": 3, - "CSS": 2, - "OpenCL": 1, - "Awk": 1, - "Groovy": 2, + "Matlab": 11787, + "Max": 136, + "MediaWiki": 766, + "Monkey": 207, + "MoonScript": 1718, + "Nemerle": 17, + "Nginx": 179, "Nimrod": 1, - "XSLT": 1, - "Rebol": 1, - "PowerShell": 2, - "Opa": 2, - "GAS": 1, - "CoffeeScript": 9, - "Lasso": 4, - "C++": 20, - "Julia": 1, + "NSIS": 725, + "Nu": 116, + "Objective-C": 26518, + "OCaml": 382, + "Omgrofl": 57, + "Opa": 28, + "OpenCL": 88, + "OpenEdge ABL": 762, + "Org": 358, + "Parrot Assembly": 6, + "Parrot Internal Representation": 5, + "Pascal": 30, + "Perl": 17497, + "PHP": 20724, + "PogoScript": 250, + "PowerShell": 12, + "Processing": 74, + "Prolog": 4040, + "Python": 5715, + "R": 175, + "Racket": 360, + "Ragel in Ruby Host": 593, + "RDoc": 279, + "Rebol": 11, + "Ruby": 3854, + "Rust": 3566, + "Sass": 56, + "Scala": 420, + "Scheme": 3478, + "Scilab": 69, + "SCSS": 39, + "Shell": 3744, + "Slash": 187, + "Squirrel": 130, + "Standard ML": 243, + "SuperCollider": 268, + "Tea": 3, + "TeX": 1155, + "Turing": 44, + "TXL": 213, + "TypeScript": 109, + "Verilog": 3778, + "VHDL": 42, + "VimL": 20, + "Visual Basic": 345, + "Volt": 388, + "wisp": 1363, + "XC": 24, + "XML": 5622, + "XProc": 22, + "XQuery": 801, + "XSLT": 44, + "Xtend": 399, + "YAML": 30 + }, + "languages": { + "ABAP": 1, "ApacheConf": 3, - "edn": 1, - "MoonScript": 1, - "Lua": 3, - "Objective-C": 19, - "wisp": 1, - "TXL": 1, - "Ruby": 16, - "Literate CoffeeScript": 1, - "Forth": 7, - "Java": 6, - "Arduino": 1, - "XQuery": 1, - "Python": 7, + "Apex": 6, "AppleScript": 7, - "Monkey": 1, + "Arduino": 1, + "AsciiDoc": 3, + "AutoHotkey": 1, + "Awk": 1, + "C": 24, + "C++": 20, + "Ceylon": 1, + "COBOL": 4, + "CoffeeScript": 9, + "Coq": 12, + "Creole": 1, + "CSS": 2, + "Dart": 1, + "Diff": 1, + "Ecl": 1, + "edn": 1, + "Elm": 3, + "Emacs Lisp": 2, + "Erlang": 5, + "fish": 3, + "Forth": 7, + "GAS": 1, "GLSL": 3, "Gosu": 5, - "XProc": 1, - "Volt": 1, - "Tea": 1, - "Scilab": 3, - "Parrot Assembly": 1, - "fish": 3, - "Ioke": 1, - "Emacs Lisp": 2, - "Slash": 1, - "SCSS": 1, - "PHP": 9, - "Verilog": 13, - "Squirrel": 1, - "Shell": 37, - "Processing": 1, - "Nginx": 1, + "Groovy": 2, + "Groovy Server Pages": 4, + "Haml": 1, "Handlebars": 2, - "Logos": 1 - } + "INI": 2, + "Ioke": 1, + "Java": 6, + "JavaScript": 20, + "JSON": 5, + "Julia": 1, + "Kotlin": 1, + "Lasso": 4, + "Less": 1, + "LFE": 4, + "Literate CoffeeScript": 1, + "LiveScript": 1, + "Logos": 1, + "Logtalk": 1, + "Lua": 3, + "M": 28, + "Makefile": 2, + "Markdown": 1, + "Matlab": 37, + "Max": 1, + "MediaWiki": 1, + "Monkey": 1, + "MoonScript": 1, + "Nemerle": 1, + "Nginx": 1, + "Nimrod": 1, + "NSIS": 2, + "Nu": 2, + "Objective-C": 19, + "OCaml": 2, + "Omgrofl": 1, + "Opa": 2, + "OpenCL": 1, + "OpenEdge ABL": 5, + "Org": 1, + "Parrot Assembly": 1, + "Parrot Internal Representation": 1, + "Pascal": 1, + "Perl": 14, + "PHP": 9, + "PogoScript": 1, + "PowerShell": 2, + "Processing": 1, + "Prolog": 6, + "Python": 7, + "R": 2, + "Racket": 3, + "Ragel in Ruby Host": 3, + "RDoc": 1, + "Rebol": 1, + "Ruby": 16, + "Rust": 1, + "Sass": 2, + "Scala": 3, + "Scheme": 1, + "Scilab": 3, + "SCSS": 1, + "Shell": 37, + "Slash": 1, + "Squirrel": 1, + "Standard ML": 2, + "SuperCollider": 2, + "Tea": 1, + "TeX": 1, + "Turing": 1, + "TXL": 1, + "TypeScript": 3, + "Verilog": 13, + "VHDL": 1, + "VimL": 2, + "Visual Basic": 1, + "Volt": 1, + "wisp": 1, + "XC": 1, + "XML": 3, + "XProc": 1, + "XQuery": 1, + "XSLT": 1, + "Xtend": 2, + "YAML": 1 + }, + "md5": "92d88e885308e835f820dfb0aa5aa73e" } \ No newline at end of file From 9ff1a9a54c1f9d80112c8fb395633800f15ae627 Mon Sep 17 00:00:00 2001 From: Michael Date: Tue, 22 Oct 2013 14:32:12 +0200 Subject: [PATCH 165/184] Ungroup Elm from Haskell Elm is its own language and should be counted as such --- lib/linguist/languages.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 6c5cde1f..664377d6 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -403,7 +403,6 @@ Elixir: Elm: type: programming lexer: Haskell - group: Haskell primary_extension: .elm Emacs Lisp: From cb9c3732f2912044c3797a606c8ca5bd9874b4a2 Mon Sep 17 00:00:00 2001 From: Jerome Bakker Date: Fri, 25 Oct 2013 17:02:04 +0200 Subject: [PATCH 166/184] Update vendor.yml extend the vendor/ exclusion to handle vendors/ Some projects use this folder to store external libaries (eg https://github.com/Elgg/Elgg) --- lib/linguist/vendor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/linguist/vendor.yml b/lib/linguist/vendor.yml index d7695643..e7efd0a8 100644 --- a/lib/linguist/vendor.yml +++ b/lib/linguist/vendor.yml @@ -28,7 +28,7 @@ - ^rebar$ # Vendored dependencies -- vendor/ +- vendors?/ # Debian packaging - ^debian/ From d4628cf5db59d7c3002085a6b9613587e7fb84fc Mon Sep 17 00:00:00 2001 From: Dan Luu Date: Fri, 25 Oct 2013 20:58:17 -0500 Subject: [PATCH 167/184] Add bluespec to language list --- lib/linguist/languages.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 52803496..7e5071ad 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -147,6 +147,11 @@ Befunge: BlitzMax: primary_extension: .bmx +Bluespec: + type: programming + lexer: verilog + primary_extension: .bsv + Boo: type: programming color: "#d4bec1" From 922fe46f561cb98cedf1523170ee72f24f5e47b2 Mon Sep 17 00:00:00 2001 From: Dan Luu Date: Fri, 25 Oct 2013 21:06:19 -0500 Subject: [PATCH 168/184] Add Bluespec examples --- samples/Bluespec/TL.bsv | 167 ++++++++++++++++++++++++++++++++++++++ samples/Bluespec/TbTL.bsv | 109 +++++++++++++++++++++++++ 2 files changed, 276 insertions(+) create mode 100644 samples/Bluespec/TL.bsv create mode 100644 samples/Bluespec/TbTL.bsv diff --git a/samples/Bluespec/TL.bsv b/samples/Bluespec/TL.bsv new file mode 100644 index 00000000..2d6af5c1 --- /dev/null +++ b/samples/Bluespec/TL.bsv @@ -0,0 +1,167 @@ +package TL; + +interface TL; + method Action ped_button_push(); + + (* always_enabled *) + method Action set_car_state_N(Bool x); + (* always_enabled *) + method Action set_car_state_S(Bool x); + (* always_enabled *) + method Action set_car_state_E(Bool x); + (* always_enabled *) + method Action set_car_state_W(Bool x); + + method Bool lampRedNS(); + method Bool lampAmberNS(); + method Bool lampGreenNS(); + + method Bool lampRedE(); + method Bool lampAmberE(); + method Bool lampGreenE(); + + method Bool lampRedW(); + method Bool lampAmberW(); + method Bool lampGreenW(); + + method Bool lampRedPed(); + method Bool lampAmberPed(); + method Bool lampGreenPed(); +endinterface: TL + +typedef enum { + AllRed, + GreenNS, AmberNS, + GreenE, AmberE, + GreenW, AmberW, + GreenPed, AmberPed} TLstates deriving (Eq, Bits); + +typedef UInt#(5) Time32; +typedef UInt#(20) CtrSize; + +(* synthesize *) +module sysTL(TL); + Time32 allRedDelay = 2; + Time32 amberDelay = 4; + Time32 nsGreenDelay = 20; + Time32 ewGreenDelay = 10; + Time32 pedGreenDelay = 10; + Time32 pedAmberDelay = 6; + + CtrSize clocks_per_sec = 100; + + Reg#(TLstates) state <- mkReg(AllRed); + Reg#(TLstates) next_green <- mkReg(GreenNS); + Reg#(Time32) secs <- mkReg(0); + Reg#(Bool) ped_button_pushed <- mkReg(False); + Reg#(Bool) car_present_N <- mkReg(True); + Reg#(Bool) car_present_S <- mkReg(True); + Reg#(Bool) car_present_E <- mkReg(True); + Reg#(Bool) car_present_W <- mkReg(True); + Bool car_present_NS = car_present_N || car_present_S; + Reg#(CtrSize) cycle_ctr <- mkReg(0); + + rule dec_cycle_ctr (cycle_ctr != 0); + cycle_ctr <= cycle_ctr - 1; + endrule + + Rules low_priority_rule = (rules + rule inc_sec (cycle_ctr == 0); + secs <= secs + 1; + cycle_ctr <= clocks_per_sec; + endrule endrules); + + function Action next_state(TLstates ns); + action + state <= ns; + secs <= 0; + endaction + endfunction: next_state + + function TLstates green_seq(TLstates x); + case (x) + GreenNS: return (GreenE); + GreenE: return (GreenW); + GreenW: return (GreenNS); + endcase + endfunction + + function Bool car_present(TLstates x); + case (x) + GreenNS: return (car_present_NS); + GreenE: return (car_present_E); + GreenW: return (car_present_W); + endcase + endfunction + + function Rules make_from_green_rule(TLstates green_state, Time32 delay, Bool car_is_present, TLstates ns); + return (rules + rule from_green (state == green_state && (secs >= delay || !car_is_present)); + next_state(ns); + endrule endrules); + endfunction: make_from_green_rule + + function Rules make_from_amber_rule(TLstates amber_state, TLstates ng); + return (rules + rule from_amber (state == amber_state && secs >= amberDelay); + next_state(AllRed); + next_green <= ng; + endrule endrules); + endfunction: make_from_amber_rule + + Rules hprs[7]; + + hprs[1] = make_from_green_rule(GreenNS, nsGreenDelay, car_present_NS, AmberNS); + hprs[2] = make_from_amber_rule(AmberNS, GreenE); + hprs[3] = make_from_green_rule(GreenE, ewGreenDelay, car_present_E, AmberE); + hprs[4] = make_from_amber_rule(AmberE, GreenW); + hprs[5] = make_from_green_rule(GreenW, ewGreenDelay, car_present_W, AmberW); + hprs[6] = make_from_amber_rule(AmberW, GreenNS); + + hprs[0] = (rules + rule fromAllRed (state == AllRed && secs >= allRedDelay); + if (ped_button_pushed) action + ped_button_pushed <= False; + next_state(GreenPed); + endaction else if (car_present(next_green)) + next_state(next_green); + else if (car_present(green_seq(next_green))) + next_state(green_seq(next_green)); + else if (car_present(green_seq(green_seq(next_green)))) + next_state(green_seq(green_seq(next_green))); + else + noAction; + endrule: fromAllRed endrules); + + Rules high_priority_rules = hprs[0]; + for (Integer i = 1; i<7; i=i+1) + high_priority_rules = rJoin(hprs[i], high_priority_rules); + + addRules(preempts(high_priority_rules, low_priority_rule)); + + method Action ped_button_push(); + ped_button_pushed <= True; + endmethod: ped_button_push + + method Action set_car_state_N(b) ; car_present_N <= b; endmethod + method Action set_car_state_S(b) ; car_present_S <= b; endmethod + method Action set_car_state_E(b) ; car_present_E <= b; endmethod + method Action set_car_state_W(b) ; car_present_W <= b; endmethod + + method lampRedNS() = (!(state == GreenNS || state == AmberNS)); + method lampAmberNS() = (state == AmberNS); + method lampGreenNS() = (state == GreenNS); + method lampRedE() = (!(state == GreenE || state == AmberE)); + method lampAmberE() = (state == AmberE); + method lampGreenE() = (state == GreenE); + method lampRedW() = (!(state == GreenW || state == AmberW)); + method lampAmberW() = (state == AmberW); + method lampGreenW() = (state == GreenW); + + method lampRedPed() = (!(state == GreenPed || state == AmberPed)); + method lampAmberPed() = (state == AmberPed); + method lampGreenPed() = (state == GreenPed); + +endmodule: sysTL + +endpackage: TL diff --git a/samples/Bluespec/TbTL.bsv b/samples/Bluespec/TbTL.bsv new file mode 100644 index 00000000..d5dbabf0 --- /dev/null +++ b/samples/Bluespec/TbTL.bsv @@ -0,0 +1,109 @@ +package TbTL; + +import TL::*; + +interface Lamp; + method Bool changed; + method Action show_offs; + method Action show_ons; + method Action reset; +endinterface + +module mkLamp#(String name, Bool lamp)(Lamp); + Reg#(Bool) prev <- mkReg(False); + + method changed = (prev != lamp); + + method Action show_offs; + if (prev && !lamp) + $write (name + " off, "); + endmethod + + method Action show_ons; + if (!prev && lamp) + $write (name + " on, "); + endmethod + + method Action reset; + prev <= lamp; + endmethod +endmodule + + +(* synthesize *) +module mkTest(); + let dut <- sysTL; + + Reg#(Bit#(16)) ctr <- mkReg(0); + + Reg#(Bool) carN <- mkReg(False); + Reg#(Bool) carS <- mkReg(False); + Reg#(Bool) carE <- mkReg(False); + Reg#(Bool) carW <- mkReg(False); + + Lamp lamps[12]; + + lamps[0] <- mkLamp("0: NS red ", dut.lampRedNS); + lamps[1] <- mkLamp("1: NS amber", dut.lampAmberNS); + lamps[2] <- mkLamp("2: NS green", dut.lampGreenNS); + lamps[3] <- mkLamp("3: E red ", dut.lampRedE); + lamps[4] <- mkLamp("4: E amber", dut.lampAmberE); + lamps[5] <- mkLamp("5: E green", dut.lampGreenE); + lamps[6] <- mkLamp("6: W red ", dut.lampRedW); + lamps[7] <- mkLamp("7: W amber", dut.lampAmberW); + lamps[8] <- mkLamp("8: W green", dut.lampGreenW); + + lamps[9] <- mkLamp("9: Ped red ", dut.lampRedPed); + lamps[10] <- mkLamp("10: Ped amber", dut.lampAmberPed); + lamps[11] <- mkLamp("11: Ped green", dut.lampGreenPed); + + rule start (ctr == 0); + $dumpvars; + endrule + + rule detect_cars; + dut.set_car_state_N(carN); + dut.set_car_state_S(carS); + dut.set_car_state_E(carE); + dut.set_car_state_W(carW); + endrule + + rule go; + ctr <= ctr + 1; + if (ctr == 5000) carN <= True; + if (ctr == 6500) carN <= False; + if (ctr == 12_000) dut.ped_button_push; + endrule + + rule stop (ctr > 32768); + $display("TESTS FINISHED"); + $finish(0); + endrule + + function do_offs(l) = l.show_offs; + function do_ons(l) = l.show_ons; + function do_reset(l) = l.reset; + + function do_it(f); + action + for (Integer i=0; i<12; i=i+1) + f(lamps[i]); + endaction + endfunction + + function any_changes(); + Bool b = False; + for (Integer i=0; i<12; i=i+1) + b = b || lamps[i].changed; + return b; + endfunction + + rule show (any_changes()); + do_it(do_offs); + do_it(do_ons); + do_it(do_reset); + $display("(at time %d)", $time); + endrule +endmodule + +endpackage From 9f00b5478dc4d18e41f2d4b63ca972bcff22bbf8 Mon Sep 17 00:00:00 2001 From: Ted Nyman Date: Mon, 28 Oct 2013 11:21:56 -0700 Subject: [PATCH 169/184] Revert "Merge pull request #695 from github/detect-prose" This reverts commit 80321272b12ea7b1346e8ebd8ac26b41a97257cd, reversing changes made to 02500d38305458877482d8c4756e311cf1eaaf6a. --- lib/linguist/language.rb | 2 +- lib/linguist/languages.yml | 37 +----- samples/AsciiDoc/encoding.asciidoc | 13 -- samples/AsciiDoc/list.asc | 10 -- samples/AsciiDoc/sample.adoc | 25 ---- samples/Creole/creole.creole | 47 -------- samples/MediaWiki/mediawiki.mediawiki | 90 -------------- samples/Org/org.org | 164 -------------------------- samples/RDoc/rdoc.rdoc | 129 -------------------- 9 files changed, 2 insertions(+), 515 deletions(-) delete mode 100644 samples/AsciiDoc/encoding.asciidoc delete mode 100644 samples/AsciiDoc/list.asc delete mode 100644 samples/AsciiDoc/sample.adoc delete mode 100644 samples/Creole/creole.creole delete mode 100644 samples/MediaWiki/mediawiki.mediawiki delete mode 100644 samples/Org/org.org delete mode 100644 samples/RDoc/rdoc.rdoc diff --git a/lib/linguist/language.rb b/lib/linguist/language.rb index 38f5dca2..e043be78 100644 --- a/lib/linguist/language.rb +++ b/lib/linguist/language.rb @@ -27,7 +27,7 @@ module Linguist # # Returns an array def self.detectable_markup - ["AsciiDoc", "CSS", "Creole", "Less", "Markdown", "MediaWiki", "Org", "RDoc", "Sass", "Textile", "reStructuredText"] + ["CSS", "Less", "Sass"] end # Internal: Create a new Language object diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 52803496..e1549e64 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -22,7 +22,7 @@ # Any additions or modifications (even trivial) should have corresponding # test change in `test/test_blob.rb`. # -# Please keep this list alphabetized. Capitalization comes before lower case. +# Please keep this list alphabetized. ABAP: type: programming @@ -91,16 +91,6 @@ Arduino: lexer: C++ primary_extension: .ino -AsciiDoc: - type: markup - lexer: Text only - ace_mode: asciidoc - wrap: true - primary_extension: .asciidoc - extensions: - - .adoc - - .asc - Assembly: type: programming lexer: NASM @@ -307,12 +297,6 @@ Cpp-ObjDump: - .c++objdump - .cxx-objdump -Creole: - type: markup - lexer: Text only - wrap: true - primary_extension: .creole - Cucumber: lexer: Gherkin primary_extension: .feature @@ -862,12 +846,6 @@ Max: - .maxhelp - .maxpat -MediaWiki: - type: markup - lexer: Text only - wrap: true - primary_extension: .mediawiki - MiniD: # Legacy searchable: false primary_extension: .minid # Dummy extension @@ -997,12 +975,6 @@ OpenEdge ABL: - abl primary_extension: .p -Org: - type: markup - lexer: Text only - wrap: true - primary_extension: .org - PHP: type: programming ace_mode: php @@ -1142,13 +1114,6 @@ R: filenames: - .Rprofile -RDoc: - type: markup - lexer: Text only - ace_mode: rdoc - wrap: true - primary_extension: .rdoc - RHTML: type: markup group: HTML diff --git a/samples/AsciiDoc/encoding.asciidoc b/samples/AsciiDoc/encoding.asciidoc deleted file mode 100644 index 8cf1b761..00000000 --- a/samples/AsciiDoc/encoding.asciidoc +++ /dev/null @@ -1,13 +0,0 @@ -Gregory Romé has written an AsciiDoc plugin for the Redmine project management application. - -https://github.com/foo-users/foo -へと `vicmd` キーマップを足してみている試み、 -アニメーションgifです。 - -tag::romé[] -Gregory Romé has written an AsciiDoc plugin for the Redmine project management application. -end::romé[] - -== Überschrift - -* Codierungen sind verrückt auf älteren Versionen von Ruby \ No newline at end of file diff --git a/samples/AsciiDoc/list.asc b/samples/AsciiDoc/list.asc deleted file mode 100644 index 066d14fc..00000000 --- a/samples/AsciiDoc/list.asc +++ /dev/null @@ -1,10 +0,0 @@ -AsciiDoc Home Page -================== - -Example Articles -~~~~~~~~~~~~~~~~ -- Item 1 - -- Item 2 - -- Item 3 diff --git a/samples/AsciiDoc/sample.adoc b/samples/AsciiDoc/sample.adoc deleted file mode 100644 index 51e1e45e..00000000 --- a/samples/AsciiDoc/sample.adoc +++ /dev/null @@ -1,25 +0,0 @@ -Document Title -============== -Doc Writer -:idprefix: id_ - -Preamble paragraph. - -NOTE: This is test, only a test. - -== Section A - -*Section A* paragraph. - -=== Section A Subsection - -*Section A* 'subsection' paragraph. - -== Section B - -*Section B* paragraph. - -.Section B list -* Item 1 -* Item 2 -* Item 3 diff --git a/samples/Creole/creole.creole b/samples/Creole/creole.creole deleted file mode 100644 index 7e3b8bef..00000000 --- a/samples/Creole/creole.creole +++ /dev/null @@ -1,47 +0,0 @@ -= Creole - -Creole is a Creole-to-HTML converter for Creole, the lightweight markup -language (http://wikicreole.org/). Github uses this converter to render *.creole files. - -Project page on github: - -* http://github.com/minad/creole - -Travis-CI: - -* https://travis-ci.org/minad/creole - -RDOC: - -* http://rdoc.info/projects/minad/creole - -== INSTALLATION - -{{{ -gem install creole -}}} - -== SYNOPSIS - -{{{ -require 'creole' -html = Creole.creolize('== Creole text') -}}} - -== BUGS - -If you found a bug, please report it at the Creole project's tracker -on GitHub: - -http://github.com/minad/creole/issues - -== AUTHORS - -* Lars Christensen (larsch) -* Daniel Mendler (minad) - -== LICENSE - -Creole is Copyright (c) 2008 - 2013 Lars Christensen, Daniel Mendler. It is free software, and -may be redistributed under the terms specified in the README file of -the Ruby distribution. diff --git a/samples/MediaWiki/mediawiki.mediawiki b/samples/MediaWiki/mediawiki.mediawiki deleted file mode 100644 index 088c955c..00000000 --- a/samples/MediaWiki/mediawiki.mediawiki +++ /dev/null @@ -1,90 +0,0 @@ - -= Overview = - -The GDB Tracepoint Analysis feature is an extension to the Tracing and Monitoring Framework that allows the visualization and analysis of C/C++ tracepoint data collected by GDB and stored to a log file. - -= Getting Started = - -The feature can be installed from the Eclipse update site by selecting '''Linux Tools''' > '''GDB Tracepoint Analysis'''. - -The feature requires GDB version 7.2 or later to be installed on the local host. The executable program 'gdb' must be found in the path. - -= GDB Trace Perspective = - -To open the perspective, select '''Window''' > '''Open Perspective''' > '''Other...''' > '''GDB Trace'''. - -The perspective includes the following views by default: - -* '''Project Explorer''': This view shows the projects in the workspace and is used to create and manage Tracing projects. -* '''Debug''': This view shows the running C/C++ Postmortem Debugger instances and displays the thread and stack trace associated with a tracepoint. -* '''Trace Control''': This view shows the status of the debugger and allows navigation of trace records. -* '''Console''': This view displays console output of the C/C++ Postmortem Debugger. - -The editor area contains the '''Events''' and '''C/C++''' editors when a GDB Trace is opened. - -[[Image:images/GDBTracePerspective.png]] - -= Collecting Tracepoint Data = - -Collecting the C/C++ tracepoint data is outside the scope of this feature. It can be done from the GDB command line or by using the CDT debug component within Eclipse. See the CDT FAQ entry in the [[#References | References]] section. - -= Importing Tracepoint Data = - -Some information in this section is redundant with the LTTng User Guide. For further details, see the LTTng User Guide entry in the [[#References | References]] section. - -== Creating a Tracing Project == - -In the '''Project Explorer''' view, right-click and select '''New''' > '''Project...''' from the context menu. In the '''New Project''' dialog, select '''Tracing''' > '''Tracing Project''', click '''Next''', name your project and click '''Finish'''. - -== Importing a GDB Trace == - -In your tracing project, right-click on the '''Traces''' folder and select '''Import...'''. Browse to, or enter, a source directory. Select the trace file in the tree. Optionally set the trace type to '''GDB : GDB Trace'''. Click '''Finish'''. - -Alternatively, the trace can be drag & dropped to the '''Traces''' folder from any external file manager. - -== Selecting the GDB Trace Type == - -Right-click the imported trace in the '''Traces''' folder and choose '''Select Trace Type...''' > '''GDB''' > '''GDB Trace''' from the context menu. This step can be omitted if the trace type was selected at import. - -The trace will be updated with the GDB icon [[Image:images/gdb_icon16.png]]. - -== Selecting the Trace Executable == - -The executable file that created the tracepoint data must be identified so that the C/C++ Postmortem Debugger can be launched properly. - -Right-click the GDB trace in the '''Traces''' folder and choose '''Select Trace Executable...''' from the context menu. Browse to, or enter, the path of the executable file and press '''OK'''. - -The selected file must be recognized by GDB as an executable. - -= Visualizing Tracepoint Data = - -== Opening a GDB Trace == - -In the '''Traces''' folder, double-click the GDB trace or right-click it and select '''Open''' from the context menu. - -The tracepoint data will be opened in an Events editor, and a C/C++ Postmortem Debugger instance will be launched. - -If available in the workspace, the source code corresponding to the first trace record will also be opened in a C/C++ editor. - -At this point it is recommended to relocate the Events editor outside of the default editor area, so that it is not hidden by the C/C++ editor. - -== Viewing Trace Data == - -In the Events editor, a table is shown with one row for each trace record. The '''Trace Frame''' column shows the sequential trace record number. The '''Tracepoint''' column shows the number assigned by GDB at collection time for this tracepoint. The '''File''' column shows the file name, line number and method where the tracepoint was set. The '''Content''' column shows the data collected at run-time by the tracepoint. - -Searching and filtering can be done on any column by entering a regular expression in the column header. - -== Navigating the GDB Trace == - -Trace records can be selected in the Events editor using the keyboard or mouse. The C/C++ Postmortem Debugger in the '''Debug''' view will be updated to show the stack trace of the current trace record. - -The trace can also be navigated from the '''Trace Control''' view by clicking the '''Next Trace Record''' or '''Previous Trace Record''' buttons. The Events editor and '''Debug''' views will be updated. - -= References = - -* [http://wiki.eclipse.org/index.php/Linux_Tools_Project/LTTng2/User_Guide LTTng User Guide] -* [http://wiki.eclipse.org/CDT/User/FAQ#How_can_I_trace_my_application_using_C.2FC.2B.2B_Tracepoints.3F CDT FAQ - How can I trace my application using C/C++ Tracepoints?] - -= Updating This Document = - -This document is maintained in a collaborative wiki. If you wish to update or modify this document please visit [http://wiki.eclipse.org/index.php/Linux_Tools_Project/GDB_Tracepoint_Analysis/User_Guide http://wiki.eclipse.org/Linux_Tools_Project/GDB_Tracepoint_Analysis/User_Guide] diff --git a/samples/Org/org.org b/samples/Org/org.org deleted file mode 100644 index 5246e97f..00000000 --- a/samples/Org/org.org +++ /dev/null @@ -1,164 +0,0 @@ -#+OPTIONS: H:3 num:nil toc:nil \n:nil @:t ::t |:t ^:t -:t f:t *:t TeX:t LaTeX:t skip:nil d:(HIDE) tags:not-in-toc -#+STARTUP: align fold nodlcheck hidestars oddeven lognotestate -#+SEQ_TODO: TODO(t) INPROGRESS(i) WAITING(w@) | DONE(d) CANCELED(c@) -#+TAGS: Write(w) Update(u) Fix(f) Check(c) -#+TITLE: org-ruby -#+AUTHOR: Brian Dewey -#+EMAIL: bdewey@gmail.com -#+LANGUAGE: en -#+PRIORITIES: A C B -#+CATEGORY: worg - -{Back to Worg's index} - -* Motivation - - The dominant simple plain-text markup languages for the web are - Textile and Markdown. A factor for the popularity of those markup - formats is the widespread availability of simple, free packages for - converting the formats to HTML. For example, the world of - Ruby-powered websites has settled on RedCloth for converting Textile - to HTML. - - The default way to convert org-mode files to HTML is the powerful - publishing functionality provided by =emacs=. However, =emacs= does - not easiliy integrate into many existing website frameworks. - - =Org-ruby= tries to make it easier to use org-mode files in both - dyanmic and static website generation tools written in - Ruby. =Org-ruby= is a simple Ruby gem to convert org-mode files to - HTML. - -* Using Org-ruby - - =Org-ruby= follows the same model as other Ruby markup - libraries. You install the gem: - - #+BEGIN_EXAMPLE - sudo gem install org-ruby - #+END_EXAMPLE - - Then, to convert an org-file to HTML in your Ruby code: - - #+BEGIN_EXAMPLE - require 'rubygems' - require 'org-ruby' - - data = IO.read(filename) - puts Orgmode::Parser.new(data).to_html - #+END_EXAMPLE - -* Walkthrough: Using org-ruby with Webby - - Here is an example of how to integrate =org-ruby= into Webby, a - static website generation tool written in Ruby. - - Webby follows a similar pattern to other static site generation - tools (like nanoc, Jekyll, and webgen): - - - You author website content in text with simple markup - - Each page is fed through one or more /filters/ to produce HTML - - The HTML is mixed in with layouts to produce the final pages - - For a Webby site, a the source for a page may look like this: - - #+BEGIN_EXAMPLE - --- - title: Special Directories - created_at: 2009-12-17 - status: Complete - filter: - - erb - - maruku - tags: - - powershell - --- - <%= @page.title %> - ================== - - Special Directories are a set of directories, each of which has a - function that will navigate you to the appropriate directory using - the push-location cmdlet. For example, the function `home` might - navigate to `c:\users\bdewey.` - - Install - ------- - - Copy the module to somewhere in `ENV:PSModulePath`. Then, - - InstallModule SpecialDirectories - #+END_EXAMPLE - - In the above example, the text is written in Markdown. At the top of - the file, metadata informs Webby to pass the text through two - /filters/ to produce HTML. The first filter, =erb=, handles embedded - Ruby. In this case, it will replace ~<%= @page.title %>~ with the - page title (=Special Directories=). The second filter uses Maruku to - translate Markdown into HTML. - - You can use the exact same pattern to include org-mode files in a - Webby site. For this walkthrough, I assume you already have Webby - installed, and that you've already created a site. - - 1. Make sure you have =org-ruby= installed: =sudo gem install - org-ruby=. - 2. You need to register a new Webby filter to handle org-mode - content. Webby makes this easy. In the =lib/= folder of your - site, create a file =orgmode.rb=: - - #+BEGIN_EXAMPLE - require 'org-ruby' - - Webby::Filters.register :org do |input| - Orgmode::Parser.new(input).to_html - end - #+END_EXAMPLE - - This code creates a new filter, =org=, that will use the - =org-ruby= parser to translate org-mode input into HTML. - 3. Create your content. For example: - - #+BEGIN_EXAMPLE ---- -title: Orgmode Parser -created_at: 2009-12-21 -status: Under development -filter: - - erb - - org -tags: - - orgmode - - ruby ---- -<%= @page.title %> - - Status: <%= @page.status %> - -* Description - - Helpful Ruby routines for parsing orgmode files. The most - significant thing this library does today is convert orgmode files - to textile. Currently, you cannot do much to customize the - conversion. The supplied textile conversion is optimized for - extracting "content" from the orgfile as opposed to "metadata." - - -* History - -** 2009-12-29: Version 0.4 - - - The first thing output in HTML gets the class "title" - - HTML output is now indented - - Proper support for multi-paragraph list items. - - See? This paragraph is part of the last bullet. - - - Fixed bugs: - - "rake spec" wouldn't work on Linux. Needed "require 'rubygems'". - #+END_EXAMPLE - - This file will go through the =erb= and =org= filters; as defined - in the previous step, the =org= filter will use =org-ruby= to - generate HTML. - - That's all there is to it! diff --git a/samples/RDoc/rdoc.rdoc b/samples/RDoc/rdoc.rdoc deleted file mode 100644 index c0206be6..00000000 --- a/samples/RDoc/rdoc.rdoc +++ /dev/null @@ -1,129 +0,0 @@ -= \RDoc - Ruby Documentation System - -home :: https://github.com/rdoc/rdoc -rdoc :: http://docs.seattlerb.org/rdoc -bugs :: https://github.com/rdoc/rdoc/issues -code quality :: {code climate}[https://codeclimate.com/github/rdoc/rdoc] - -== Description - -RDoc produces HTML and command-line documentation for Ruby projects. RDoc -includes the +rdoc+ and +ri+ tools for generating and displaying documentation -from the command-line. - -== Generating Documentation - -Once installed, you can create documentation using the +rdoc+ command - - $ rdoc [options] [names...] - -For an up-to-date option summary, type - - $ rdoc --help - -A typical use might be to generate documentation for a package of Ruby -source (such as RDoc itself). - - $ rdoc - -This command generates documentation for all the Ruby and C source -files in and below the current directory. These will be stored in a -documentation tree starting in the subdirectory +doc+. - -You can make this slightly more useful for your readers by having the -index page contain the documentation for the primary file. In our -case, we could type - - % rdoc --main README.rdoc - -You'll find information on the various formatting tricks you can use -in comment blocks in the documentation this generates. - -RDoc uses file extensions to determine how to process each file. File names -ending +.rb+ and +.rbw+ are assumed to be Ruby source. Files -ending +.c+ are parsed as C files. All other files are assumed to -contain just Markup-style markup (with or without leading '#' comment -markers). If directory names are passed to RDoc, they are scanned -recursively for C and Ruby source files only. - -To generate documentation using +rake+ see RDoc::Task. - -To generate documentation programmatically: - - gem 'rdoc' - require 'rdoc/rdoc' - - options = RDoc::Options.new - # see RDoc::Options - - rdoc = RDoc::RDoc.new - rdoc.document options - # see RDoc::RDoc - -== Writing Documentation - -To write documentation for RDoc place a comment above the class, module, -method, constant, or attribute you want documented: - - ## - # This class represents an arbitrary shape by a series of points. - - class Shape - - ## - # Creates a new shape described by a +polyline+. - # - # If the +polyline+ does not end at the same point it started at the - # first pointed is copied and placed at the end of the line. - # - # An ArgumentError is raised if the line crosses itself, but shapes may - # be concave. - - def initialize polyline - # ... - end - - end - -The default comment markup format is the RDoc::Markup format. -TomDoc[rdoc-ref:RDoc::TomDoc], Markdown[rdoc-ref:RDoc::Markdown] and -RD[rdoc-ref:RDoc::RD] format comments are also supported. You can set the -default comment format for your entire project by creating a -.rdoc_options file. See RDoc::Options@Saved+Options for instructions -on creating one. You can also set the comment format for a single file -through the +:markup:+ directive, but this is only recommended if you wish to -switch markup formats. See RDoc::Markup@Other+directives. - -Comments can contain directives that tell RDoc information that it cannot -otherwise discover through parsing. See RDoc::Markup@Directives to control -what is or is not documented, to define method arguments or to break up -methods in a class by topic. See RDoc::Parser::Ruby for directives used to -teach RDoc about metaprogrammed methods. - -See RDoc::Parser::C for documenting C extensions with RDoc. - -To determine how well your project is documented run rdoc -C lib to -get a documentation coverage report. rdoc -C1 lib includes parameter -names in the documentation coverage report. - -== Bugs - -See CONTRIBUTING@Bugs for information on filing a bug report. It's OK to file -a bug report for anything you're having a problem with. If you can't figure -out how to make RDoc produce the output you like that is probably a -documentation bug. - -== License - -RDoc is Copyright (c) 2001-2003 Dave Thomas, The Pragmatic Programmers. -Portions (c) 2007-2011 Eric Hodel. Portions copyright others, see individual -files and LEGAL.rdoc for details. - -RDoc is free software, and may be redistributed under the terms specified in -LICENSE.rdoc. - -== Warranty - -This software is provided "as is" and without any express or implied -warranties, including, without limitation, the implied warranties of -merchantability and fitness for a particular purpose. From 64ce62a804aba8ab24c913149eee000ea08fd7d4 Mon Sep 17 00:00:00 2001 From: Ted Nyman Date: Mon, 28 Oct 2013 11:24:58 -0700 Subject: [PATCH 170/184] 2.9.7 --- github-linguist.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/github-linguist.gemspec b/github-linguist.gemspec index 42e5cd10..396149f1 100644 --- a/github-linguist.gemspec +++ b/github-linguist.gemspec @@ -1,6 +1,6 @@ Gem::Specification.new do |s| s.name = 'github-linguist' - s.version = '2.9.6' + s.version = '2.9.7' s.summary = "GitHub Language detection" s.authors = "GitHub" From e7d8b99ca2f2985573b3dae947d37202c9c31e7f Mon Sep 17 00:00:00 2001 From: Rob Hoelz Date: Tue, 29 Oct 2013 08:56:37 +0100 Subject: [PATCH 171/184] Use the Haxe lexer for Haxe The lexer for Haxe is no longer named haXe, so linguist is currently unable to find it. This fixes that. --- lib/linguist/languages.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 3d87f034..83e6e080 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -612,7 +612,6 @@ Haskell: Haxe: type: programming - lexer: haXe ace_mode: haxe color: "#346d51" primary_extension: .hx From ad77279bbfd0be5cb4c151d824b9fb4a38f194b2 Mon Sep 17 00:00:00 2001 From: Ted Nyman Date: Tue, 29 Oct 2013 11:54:25 -0700 Subject: [PATCH 172/184] Text only lexer for Inno Setup --- lib/linguist/languages.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 3d87f034..4a31dbc8 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -626,9 +626,10 @@ INI: - .prefs - .properties primary_extension: .ini - + Inno Setup: primary_extension: .iss + lexer: Text only IRC log: lexer: IRC logs From 5411c5457df7d6f54e13699921390cbb1353c37b Mon Sep 17 00:00:00 2001 From: Ted Nyman Date: Tue, 29 Oct 2013 11:59:27 -0700 Subject: [PATCH 173/184] Need to wait on pygments update --- lib/linguist/languages.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index d8fe0231..792409da 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -612,7 +612,8 @@ Haskell: Haxe: type: programming - ace_mode: haxe + lexer: haXe + ace_mode: haXe color: "#346d51" primary_extension: .hx extensions: From 2bac3af29978c13d0a8e6dad6052cce05266ef69 Mon Sep 17 00:00:00 2001 From: Ted Nyman Date: Tue, 29 Oct 2013 11:59:58 -0700 Subject: [PATCH 174/184] Fix typo --- lib/linguist/languages.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 792409da..4a31dbc8 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -613,7 +613,7 @@ Haskell: Haxe: type: programming lexer: haXe - ace_mode: haXe + ace_mode: haxe color: "#346d51" primary_extension: .hx extensions: From c6c5e79ccf9edcca047018af9712e4e4c04cc924 Mon Sep 17 00:00:00 2001 From: Lars Brinkhoff Date: Mon, 9 Sep 2013 09:27:00 +0200 Subject: [PATCH 175/184] Add .cl as a Common Lisp file extension. --- lib/linguist/languages.yml | 1 + samples/Common Lisp/sample.lisp | 21 +++++++++++++++++++++ samples/OpenCL/sample.cl | 23 +++++++++++++++++++++++ 3 files changed, 45 insertions(+) create mode 100644 samples/Common Lisp/sample.lisp create mode 100644 samples/OpenCL/sample.cl diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 4a31dbc8..a627bf46 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -281,6 +281,7 @@ Common Lisp: primary_extension: .lisp extensions: - .asd + - .cl - .lsp - .ny - .podsl diff --git a/samples/Common Lisp/sample.lisp b/samples/Common Lisp/sample.lisp new file mode 100644 index 00000000..9bef6781 --- /dev/null +++ b/samples/Common Lisp/sample.lisp @@ -0,0 +1,21 @@ +;;;; -*- lisp -*- + +(in-package :foo) + +;;; Header comment. +(defvar *foo*) + +(eval-when (:execute :compile-toplevel :load-toplevel) + (defun add (x &optional y &key z) + (declare (ignore z)) + ;; Inline comment. + (+ x (or y 1)))) + +#| +Multi-line comment. +|# + +(defmacro foo (x &body b) + (if x + `(1+ ,x) ;After-line comment. + 42)) diff --git a/samples/OpenCL/sample.cl b/samples/OpenCL/sample.cl new file mode 100644 index 00000000..9360b8e3 --- /dev/null +++ b/samples/OpenCL/sample.cl @@ -0,0 +1,23 @@ +/* Old-style comment. */ + +// New-style comment. + +typedef float foo_t; + +#ifndef ZERO +#define ZERO (0.0) +#endif + +#define FOO(x) ((x) + \ + ZERO) + +__kernel +void foo(__global const foo_t * x, __local foo_t y, const uint n) +{ + barrier(CLK_LOCAL_MEM_FENCE); + + if (n > 42) { + *x += y; + } +} + From 89b5e9f5e673573ba1787b019500f59db0ba6021 Mon Sep 17 00:00:00 2001 From: Lars Brinkhoff Date: Wed, 2 Oct 2013 07:52:06 +0200 Subject: [PATCH 176/184] Rebuild samples.json to make Travis happy. --- lib/linguist/samples.json | 85255 ++++++++++++++++++------------------ 1 file changed, 43168 insertions(+), 42087 deletions(-) diff --git a/lib/linguist/samples.json b/lib/linguist/samples.json index c0b13322..5e733a3a 100644 --- a/lib/linguist/samples.json +++ b/lib/linguist/samples.json @@ -1,406 +1,6 @@ { - "extnames": { - "ABAP": [ - ".abap" - ], - "Apex": [ - ".cls" - ], - "AppleScript": [ - ".applescript" - ], - "Arduino": [ - ".ino" - ], - "AsciiDoc": [ - ".adoc", - ".asc", - ".asciidoc" - ], - "AutoHotkey": [ - ".ahk" - ], - "Awk": [ - ".awk" - ], - "C": [ - ".c", - ".h" - ], - "C++": [ - ".cc", - ".cpp", - ".cu", - ".h", - ".hpp" - ], - "Ceylon": [ - ".ceylon" - ], - "COBOL": [ - ".cbl", - ".ccp", - ".cob", - ".cpy" - ], - "CoffeeScript": [ - ".coffee" - ], - "Coq": [ - ".v" - ], - "Creole": [ - ".creole" - ], - "CSS": [ - ".css" - ], - "Dart": [ - ".dart" - ], - "Diff": [ - ".patch" - ], - "Ecl": [ - ".ecl" - ], - "edn": [ - ".edn" - ], - "Elm": [ - ".elm" - ], - "Emacs Lisp": [ - ".el" - ], - "Erlang": [ - ".erl", - ".escript", - ".script!" - ], - "fish": [ - ".fish" - ], - "Forth": [ - ".forth", - ".fth" - ], - "GAS": [ - ".s" - ], - "GLSL": [ - ".fp", - ".glsl" - ], - "Gosu": [ - ".gs", - ".gsp", - ".gst", - ".gsx", - ".vark" - ], - "Groovy": [ - ".gradle", - ".script!" - ], - "Groovy Server Pages": [ - ".gsp" - ], - "Haml": [ - ".haml" - ], - "Handlebars": [ - ".handlebars", - ".hbs" - ], - "Ioke": [ - ".ik" - ], - "Java": [ - ".java" - ], - "JavaScript": [ - ".js", - ".script!" - ], - "JSON": [ - ".json", - ".maxhelp", - ".maxpat" - ], - "Julia": [ - ".jl" - ], - "Kotlin": [ - ".kt" - ], - "Lasso": [ - ".las", - ".lasso", - ".lasso9", - ".ldml" - ], - "Less": [ - ".less" - ], - "LFE": [ - ".lfe" - ], - "Literate CoffeeScript": [ - ".litcoffee" - ], - "LiveScript": [ - ".ls" - ], - "Logos": [ - ".xm" - ], - "Logtalk": [ - ".lgt" - ], - "Lua": [ - ".pd_lua" - ], - "M": [ - ".m" - ], - "Makefile": [ - ".script!" - ], - "Markdown": [ - ".md" - ], - "Matlab": [ - ".m" - ], - "Max": [ - ".mxt" - ], - "MediaWiki": [ - ".mediawiki" - ], - "Monkey": [ - ".monkey" - ], - "MoonScript": [ - ".moon" - ], - "Nemerle": [ - ".n" - ], - "Nimrod": [ - ".nim" - ], - "NSIS": [ - ".nsh", - ".nsi" - ], - "Nu": [ - ".nu", - ".script!" - ], - "Objective-C": [ - ".h", - ".m" - ], - "OCaml": [ - ".eliom", - ".ml" - ], - "Omgrofl": [ - ".omgrofl" - ], - "Opa": [ - ".opa" - ], - "OpenCL": [ - ".cl" - ], - "OpenEdge ABL": [ - ".cls", - ".p" - ], - "Org": [ - ".org" - ], - "Parrot Assembly": [ - ".pasm" - ], - "Parrot Internal Representation": [ - ".pir" - ], - "Pascal": [ - ".dpr" - ], - "Perl": [ - ".fcgi", - ".pl", - ".pm", - ".script!", - ".t" - ], - "PHP": [ - ".module", - ".php", - ".script!" - ], - "PogoScript": [ - ".pogo" - ], - "PowerShell": [ - ".ps1", - ".psm1" - ], - "Processing": [ - ".pde" - ], - "Prolog": [ - ".pl" - ], - "Python": [ - ".py", - ".script!" - ], - "R": [ - ".R", - ".script!" - ], - "Racket": [ - ".scrbl", - ".script!" - ], - "Ragel in Ruby Host": [ - ".rl" - ], - "RDoc": [ - ".rdoc" - ], - "Rebol": [ - ".r" - ], - "Ruby": [ - ".pluginspec", - ".rabl", - ".rake", - ".rb", - ".script!" - ], - "Rust": [ - ".rs" - ], - "Sass": [ - ".sass", - ".scss" - ], - "Scala": [ - ".sbt", - ".script!" - ], - "Scheme": [ - ".sps" - ], - "Scilab": [ - ".sce", - ".sci", - ".tst" - ], - "SCSS": [ - ".scss" - ], - "Shell": [ - ".bash", - ".script!", - ".sh", - ".zsh" - ], - "Slash": [ - ".sl" - ], - "Squirrel": [ - ".nut" - ], - "Standard ML": [ - ".sig", - ".sml" - ], - "SuperCollider": [ - ".sc", - ".scd" - ], - "Tea": [ - ".tea" - ], - "TeX": [ - ".cls" - ], - "Turing": [ - ".t" - ], - "TXL": [ - ".txl" - ], - "TypeScript": [ - ".ts" - ], - "Verilog": [ - ".v" - ], - "VHDL": [ - ".vhd" - ], - "Visual Basic": [ - ".cls" - ], - "Volt": [ - ".volt" - ], - "wisp": [ - ".wisp" - ], - "XC": [ - ".xc" - ], - "XML": [ - ".ant", - ".ivy", - ".xml" - ], - "XProc": [ - ".xpl" - ], - "XQuery": [ - ".xqm" - ], - "XSLT": [ - ".xslt" - ], - "Xtend": [ - ".xtend" - ] - }, + "languages_total": 473, "filenames": { - "ApacheConf": [ - ".htaccess", - "apache2.conf", - "httpd.conf" - ], - "INI": [ - ".editorconfig", - ".gitconfig" - ], - "Makefile": [ - "Makefile" - ], - "Nginx": [ - "nginx.conf" - ], - "Perl": [ - "ack" - ], - "Ruby": [ - "Capfile", - "Rakefile" - ], "Shell": [ ".bash_logout", ".bash_profile", @@ -427,41862 +27,43343 @@ "zshenv", "zshrc" ], + "YAML": [ + ".gemrc" + ], + "ApacheConf": [ + ".htaccess", + "apache2.conf", + "httpd.conf" + ], "VimL": [ ".gvimrc", ".vimrc" ], - "YAML": [ - ".gemrc" + "Perl": [ + "ack" + ], + "Makefile": [ + "Makefile" + ], + "INI": [ + ".editorconfig", + ".gitconfig" + ], + "Ruby": [ + "Capfile", + "Rakefile" + ], + "Nginx": [ + "nginx.conf" ] }, - "tokens_total": 415370, - "languages_total": 459, + "languages": { + "JavaScript": 20, + "XC": 1, + "Matlab": 37, + "XQuery": 1, + "C": 24, + "old-FORTRAN": 11, + "edn": 1, + "LFE": 4, + "AsciiDoc": 3, + "TXL": 1, + "Xtend": 2, + "XML": 3, + "Sass": 2, + "Groovy Server Pages": 4, + "CSS": 2, + "Logtalk": 1, + "Org": 1, + "Racket": 3, + "Prolog": 6, + "Arduino": 1, + "Nemerle": 1, + "PogoScript": 1, + "Julia": 1, + "Omgrofl": 1, + "Logos": 1, + "MoonScript": 1, + "Parrot Assembly": 1, + "JSON": 5, + "Ioke": 1, + "Ruby": 16, + "GAS": 1, + "XProc": 1, + "ApacheConf": 3, + "Less": 1, + "Rust": 1, + "Parrot Internal Representation": 1, + "M": 28, + "Lua": 3, + "VHDL": 1, + "Creole": 1, + "Tea": 1, + "LiveScript": 1, + "Verilog": 13, + "VimL": 2, + "AppleScript": 7, + "XSLT": 1, + "Forth": 7, + "Nu": 2, + "Java": 6, + "Monkey": 1, + "TeX": 1, + "Emacs Lisp": 2, + "Scheme": 1, + "TypeScript": 3, + "Groovy": 2, + "SuperCollider": 2, + "Scala": 3, + "Kotlin": 1, + "Ceylon": 1, + "Markdown": 1, + "Scilab": 3, + "Volt": 1, + "PHP": 9, + "Ragel in Ruby Host": 3, + "wisp": 1, + "AutoHotkey": 1, + "Rebol": 1, + "Nimrod": 1, + "Elm": 3, + "Nginx": 1, + "Haml": 1, + "Perl": 14, + "Coq": 12, + "PowerShell": 2, + "Opa": 2, + "Max": 1, + "FORTRAN": 1, + "MediaWiki": 1, + "Diff": 1, + "GLSL": 3, + "Erlang": 5, + "Literate CoffeeScript": 1, + "Makefile": 2, + "Gosu": 5, + "Processing": 1, + "Dart": 1, + "Ecl": 1, + "ABAP": 1, + "COBOL": 4, + "Turing": 1, + "RDoc": 1, + "Standard ML": 2, + "Objective-C": 19, + "Python": 7, + "Common Lisp": 1, + "YAML": 1, + "Pascal": 1, + "INI": 2, + "OpenCL": 2, + "CoffeeScript": 9, + "Squirrel": 1, + "OpenEdge ABL": 5, + "Visual Basic": 1, + "Awk": 1, + "C++": 20, + "Slash": 1, + "fish": 3, + "Shell": 37, + "OCaml": 2, + "SCSS": 1, + "Lasso": 4, + "R": 2, + "Apex": 6, + "NSIS": 2, + "Handlebars": 2 + }, "tokens": { - "ABAP": { - "*/**": 1, - "*": 56, - "The": 2, - "MIT": 2, - "License": 1, - "(": 8, - ")": 8, - "Copyright": 1, - "c": 3, - "Ren": 1, - "van": 1, - "Mil": 1, - "Permission": 1, - "is": 2, - "hereby": 1, - "granted": 1, - "free": 1, - "of": 6, - "charge": 1, - "to": 10, - "any": 1, - "person": 1, - "obtaining": 1, - "a": 1, - "copy": 2, - "this": 2, - "software": 1, - "and": 3, - "associated": 1, - "documentation": 1, - "files": 4, - "the": 10, - "deal": 1, - "in": 3, - "Software": 3, - "without": 2, - "restriction": 1, - "including": 1, - "limitation": 1, - "rights": 1, - "use": 1, - "modify": 1, - "merge": 1, - "publish": 1, - "distribute": 1, - "sublicense": 1, - "and/or": 1, - "sell": 1, - "copies": 2, - "permit": 1, - "persons": 1, - "whom": 1, - "furnished": 1, - "do": 4, - "so": 1, + "JavaScript": { + "ct=": 5, + "serialize": 1, + "handler=": 1, + "ck.contentDocument": 1, + "chunk.": 1, + "EX_EOF": 3, + "714953": 5, + "ut.translate": 3, + "rr": 21, + "a.parentNode": 6, + "a.isResolved": 1, + "req.end": 1, + "socket.destroySoon": 2, + "BackgroundColor": 1, + "200": 2, + "steelseries.LcdColor.STANDARD": 9, + "cancelled": 5, + "lt.getContext": 1, + "ii.width": 2, + "stack.shift": 1, + "relatedNode": 4, + "Set": 4, + "RE_OCT_NUMBER": 1, + "fn.call": 2, + "omPrefixes.toLowerCase": 1, + "Unexpected": 3, + "elem.setAttribute": 2, + "d/": 3, + "f*.471962": 2, + "41": 3, + "unit": 1, + "default": 21, + "u200f": 1, + "h.splice.apply": 1, + "around": 1, + "digits": 3, + "each": 17, + "a.medium.getHexColor": 2, + "steelseries.BackgroundColor.TURNED": 2, + "this.update": 2, + "s*.093457": 5, + "*f": 2, + "c.isXMLDoc": 1, + "C": 4, + "self.agent": 3, + "parserOnMessageComplete": 2, + "w.labelColor.setAlpha": 1, + "i.size": 6, + "s.createTextNode": 2, + "n.shadowOffsetY": 4, + "i.getGreen": 1, + "offsetSupport.subtractsBorderForOverflowNotVisible": 1, + "option.parentNode": 2, + "tds": 6, + "boolean": 8, + "m.elem.disabled": 1, + "self.chunkedEncoding": 1, + "": 2, + "": 1, + "node": 23, + "parser.incoming.httpVersionMajor": 1, + "i*.012135": 1, + "n.fillStyle": 36, + "a.parentWindow": 2, + ".style.display": 5, + "input.value": 5, + ".replace": 38, + "f.trim": 2, + "gr.getContext": 1, + "e.documentElement": 4, + "recursively": 1, + "f.expr.filters.visible": 1, + "d.toggleClass": 1, + ".1": 18, + "itself": 4, + "i.handle": 2, + "s.fillText": 2, + ".8725*t": 3, + "options=": 1, + "a.currentStyle.left": 1, + "frag.cloneNode": 1, + "docElement": 1, + "backgroundColor": 2, + "offsetParent": 1, + "i.childNodes.length": 1, + "c.support": 2, + "eliminate": 2, + ".clone": 1, + "viewOptions.length": 1, + "Index": 1, + "teardown": 6, + "document.createElement": 26, + "bool.wav": 1, + "*10": 2, + "f.getRgbaColor": 8, + "i.lcdDecimals": 8, + "c.replace": 4, + "rmsie.exec": 1, + "SHEBANG#!node": 2, + "ft": 70, + "k.appendChild": 1, + "parse_eolChar": 6, + "backslash": 2, + "opera": 4, + "w.": 17, + "specialEasing": 2, + "j.boxModel": 1, + "static": 2, + "unary": 2, + "angle": 1, + "s*.130841": 1, + "f.offset.doesNotIncludeMarginInBodyOffset": 1, + "no": 19, + "user": 1, + "location.hash": 1, + "this.getUTCFullYear": 1, + "parser.onBody": 1, + "f*.009": 1, + "pointer": 28, + "xA0": 7, + "onload": 2, + "jshint": 1, + "req.headers": 2, + "identifier": 1, + "w*.093457": 2, + ".0189*t": 4, + "This": 3, + "failDeferred.resolveWith": 1, + "linear": 1, + "currentTarget": 4, + "jQuery.camelCase": 6, + "jQuery.fn.init.prototype": 2, + "b.handle": 2, + ".hasOwnProperty": 2, + "testing": 1, + "parse___": 2, + "_.isFunction": 1, + "f.context": 1, + "cu": 18, + "p": 110, + "item": 4, + "is_digit": 3, + "setPointerTypeAverage=": 1, + "f*.556074": 9, + "kt=": 4, + "this.setSection": 4, + "a.constructor": 2, + "bi": 27, + "this.triggerHandler": 6, + "this.setTimeout": 3, + "field.slice": 1, + "lineCap=": 5, + "<0?0:n>": 1, + "fresh": 1, + "inner.style.position": 2, + "i.join": 2, + "j.fragment": 2, + "RFC": 16, + "setCssAll": 2, + "defun": 1, + "": 1, + ".892523*ut": 1, + "e/2": 2, + "Backbone.View.extend": 1, + "cp.concat.apply": 1, + "replaceWith": 1, + "r.live": 1, + "options.host": 4, + "info.versionMajor": 2, + "200934": 2, + "<=o-4&&(e=0,c=!1),u.fillText(n,o-2-e,h*.5+v*.38)),u.restore()},dt=function(n,i,r,u){var>": 1, + "cr*.38": 1, + "cacheable": 2, + "e.href": 1, + "a.parentNode.nodeType": 2, + "contentType": 4, + "isFunction": 12, + "frag.createElement": 2, + "Boolean.prototype.toJSON": 1, + "changeData": 3, + "self._paused": 1, + "inputElem.offsetHeight": 1, + "Animal": 12, + "readyList.resolveWith": 1, + "this.live": 1, + "property.": 1, + "e*.0375": 1, + "fired": 12, + "old=": 1, + "this._last": 3, + "ch.charCodeAt": 1, + "f.event.special.change.filters": 1, + "e.browser.safari": 1, + "status": 3, + "HTML5": 3, + "this._storeHeader": 2, + "21028": 1, + "html": 10, + "Error": 16, + ".bind": 3, + "existence": 1, + "self.disable": 1, + "part.rawText": 1, + "270": 1, + "h.call": 2, + "d.firstChild.nodeType": 1, + "functions": 6, + "f.isNaN": 3, + "f.boxModel": 1, + "outer.style.overflow": 1, + "a.runtimeStyle.left": 2, + "trend": 2, + "t.playing": 1, + "d.src": 1, + "bI.exec": 1, + "end": 14, + "sock": 1, + "36": 2, + "l.done": 1, + "this.data": 5, + "debugger": 2, + "u.pointerColorAverage": 2, + "f*.15": 2, + "f.support.hrefNormalized": 1, + "this._hasPushState": 6, + "noop": 3, + "elem.attributes": 1, + "T": 4, + "u.rotate": 4, + "h*u": 1, + "__hasProp.call": 2, + "soFar": 1, + "provided": 1, + "data.": 1, + "e.call": 1, + "bM": 2, + "options.shivMethods": 1, + "s*": 15, + "Modernizr.addTest": 2, + "e.strokeStyle": 1, + "k.labelColor.getRgbaColor": 5, + "y.canvas.width": 3, + "No": 1, + "selector.nodeType": 2, + "socket.destroy": 10, + "s*.523364": 2, + "s/r": 1, + "h.scrollTop": 2, + "p.setup": 1, + "a.oRequestAnimationFrame": 1, + "o*.2": 1, + "steelseries.FrameDesign.METAL": 7, + "json": 2, + "key.replace": 2, + "leading": 1, + "getValueLatest=": 1, + "this._onModelEvent": 1, + "i.origType.replace": 1, + "assert": 8, + "Modernizr._domPrefixes": 1, + "OPERATOR_CHARS": 1, + "ut.addColorStop": 2, + "ot/": 1, + "i.useValueGradient": 4, + "Snake.prototype.move": 2, + "actual": 1, + "b.innerHTML": 3, + "docElement.style": 1, + "kt.width": 1, + "their": 3, + "applet": 2, + "The": 9, + "this._headerNames": 5, + "uXXXX": 1, + "Expecting": 1, + "r.toFixed": 8, + "hi.pause": 1, + "clientX": 6, + "background": 56, + "Try": 4, + "this.doesNotIncludeMarginInBodyOffset": 1, + "j.indexOf": 1, + "self.httpAllowHalfOpen": 1, + "link": 2, + "base": 2, + "historyStarted": 3, + "document": 26, + "support.reliableHiddenOffsets": 1, + "Ready": 2, + "u.canvas.width": 7, + "setRequestHeader": 6, + "f.cssNumber": 1, + "a.style.display": 3, + "mozilla": 4, + "pointerColor": 4, + "8": 2, + "e*.116822": 3, + "k.elem": 2, + "ajaxSetup": 1, + "c=": 24, + "this.write": 1, + "c.specified": 1, + ".slice": 6, + "flags.length": 1, + "Are": 2, + "chunk": 14, + "prop.charAt": 1, + "u*r*": 1, + "s*.075": 1, + "this.css": 1, + "Math": 51, + "Transport": 1, + "Array.prototype.slice.call": 1, + "is_identifier_start": 2, + "overwrite": 4, "subject": 1, - "following": 1, - "conditions": 1, - "above": 1, - "copyright": 1, - "notice": 2, - "permission": 1, - "shall": 1, - "be": 1, - "included": 1, - "all": 1, - "or": 1, - "substantial": 1, - "portions": 1, - "Software.": 1, - "THE": 6, - "SOFTWARE": 2, - "IS": 1, - "PROVIDED": 1, - "WITHOUT": 1, - "WARRANTY": 1, - "OF": 4, - "ANY": 2, - "KIND": 1, - "EXPRESS": 1, - "OR": 7, - "IMPLIED": 1, - "INCLUDING": 1, - "BUT": 1, - "NOT": 1, - "LIMITED": 1, - "TO": 2, - "WARRANTIES": 1, - "MERCHANTABILITY": 1, - "FITNESS": 1, - "FOR": 2, - "A": 1, - "PARTICULAR": 1, - "PURPOSE": 1, - "AND": 1, - "NONINFRINGEMENT.": 1, - "IN": 4, - "NO": 1, - "EVENT": 1, - "SHALL": 1, - "AUTHORS": 1, - "COPYRIGHT": 1, - "HOLDERS": 1, - "BE": 1, - "LIABLE": 1, - "CLAIM": 1, - "DAMAGES": 1, - "OTHER": 2, - "LIABILITY": 1, - "WHETHER": 1, - "AN": 1, - "ACTION": 1, - "CONTRACT": 1, - "TORT": 1, - "OTHERWISE": 1, - "ARISING": 1, - "FROM": 1, - "OUT": 1, - "CONNECTION": 1, - "WITH": 1, - "USE": 1, - "DEALINGS": 1, - "SOFTWARE.": 1, - "*/": 1, - "-": 978, - "CLASS": 2, - "CL_CSV_PARSER": 6, - "DEFINITION": 2, - "class": 2, - "cl_csv_parser": 2, - "definition": 1, - "public": 3, - "inheriting": 1, - "from": 1, - "cl_object": 1, - "final": 1, - "create": 1, - ".": 9, - "section.": 3, - "not": 3, - "include": 3, - "other": 3, - "source": 3, - "here": 3, - "type": 11, - "pools": 1, - "abap": 1, - "methods": 2, - "constructor": 2, - "importing": 1, - "delegate": 1, - "ref": 1, - "if_csv_parser_delegate": 1, - "csvstring": 1, - "string": 1, - "separator": 1, - "skip_first_line": 1, - "abap_bool": 2, - "parse": 2, - "raising": 1, - "cx_csv_parse_error": 2, - "protected": 1, - "private": 1, - "constants": 1, - "_textindicator": 1, - "value": 2, - "IMPLEMENTATION": 2, - "implementation.": 1, - "": 2, - "+": 9, - "|": 7, - "Instance": 2, - "Public": 1, - "Method": 2, - "CONSTRUCTOR": 1, - "[": 5, - "]": 5, - "DELEGATE": 1, - "TYPE": 5, - "REF": 1, - "IF_CSV_PARSER_DELEGATE": 1, - "CSVSTRING": 1, - "STRING": 1, - "SEPARATOR": 1, - "C": 1, - "SKIP_FIRST_LINE": 1, - "ABAP_BOOL": 1, - "": 2, - "method": 2, - "constructor.": 1, - "super": 1, - "_delegate": 1, - "delegate.": 1, - "_csvstring": 2, - "csvstring.": 1, - "_separator": 1, - "separator.": 1, - "_skip_first_line": 1, - "skip_first_line.": 1, - "endmethod.": 2, - "Get": 1, - "lines": 4, - "data": 3, - "is_first_line": 1, - "abap_true.": 2, - "standard": 2, - "table": 3, - "string.": 3, - "_lines": 1, - "field": 1, - "symbols": 1, - "": 3, - "loop": 1, - "at": 2, - "assigning": 1, - "Parse": 1, - "line": 1, - "values": 2, - "_parse_line": 2, - "Private": 1, - "_LINES": 1, - "<": 1, - "RETURNING": 1, - "STRINGTAB": 1, - "_lines.": 1, - "split": 1, - "cl_abap_char_utilities": 1, - "cr_lf": 1, - "into": 6, - "returning.": 1, - "Space": 2, - "concatenate": 4, - "csvvalue": 6, - "csvvalue.": 5, - "else.": 4, - "char": 2, - "endif.": 6, - "This": 1, - "indicates": 1, - "an": 1, - "error": 1, - "CSV": 1, - "formatting": 1, - "text_ended": 1, - "message": 2, - "e003": 1, - "csv": 1, - "msg.": 2, - "raise": 1, - "exception": 1, - "exporting": 1, - "endwhile.": 2, - "append": 2, - "csvvalues.": 2, - "clear": 1, - "pos": 2, - "endclass.": 1 - }, - "ApacheConf": { - "ServerSignature": 1, - "Off": 1, - "RewriteCond": 15, - "%": 48, - "{": 16, - "REQUEST_METHOD": 1, - "}": 16, - "(": 16, - "HEAD": 1, - "|": 80, - "TRACE": 1, - "DELETE": 1, - "TRACK": 1, - ")": 17, - "[": 17, - "NC": 13, - "OR": 14, - "]": 17, - "THE_REQUEST": 1, - "r": 1, - "n": 1, - "A": 6, - "D": 6, - "HTTP_REFERER": 1, - "<|>": 6, - "C": 5, - "E": 5, - "HTTP_COOKIE": 1, - "REQUEST_URI": 1, - "/": 3, - ";": 2, - "<": 1, - ".": 7, - "HTTP_USER_AGENT": 5, - "java": 1, - "curl": 2, - "wget": 2, - "winhttp": 1, - "HTTrack": 1, - "clshttp": 1, - "archiver": 1, - "loader": 1, - "email": 1, - "harvest": 1, - "extract": 1, - "grab": 1, - "miner": 1, - "libwww": 1, - "-": 43, - "perl": 1, - "python": 1, - "nikto": 1, - "scan": 1, - "#Block": 1, - "mySQL": 1, - "injects": 1, - "QUERY_STRING": 5, - ".*": 3, - "*": 1, - "union": 1, - "select": 1, - "insert": 1, - "cast": 1, - "set": 1, - "declare": 1, - "drop": 1, - "update": 1, - "md5": 1, - "benchmark": 1, - "./": 1, - "localhost": 1, - "loopback": 1, - ".0": 2, - ".1": 1, - "a": 1, - "z0": 1, - "RewriteRule": 1, - "index.php": 1, - "F": 1, - "#": 182, - "ServerRoot": 2, - "#Listen": 2, - "Listen": 2, - "LoadModule": 126, - "authn_file_module": 2, - "/usr/lib/apache2/modules/mod_authn_file.so": 1, - "authn_dbm_module": 2, - "/usr/lib/apache2/modules/mod_authn_dbm.so": 1, - "authn_anon_module": 2, - "/usr/lib/apache2/modules/mod_authn_anon.so": 1, - "authn_dbd_module": 2, - "/usr/lib/apache2/modules/mod_authn_dbd.so": 1, - "authn_default_module": 2, - "/usr/lib/apache2/modules/mod_authn_default.so": 1, - "authn_alias_module": 1, - "/usr/lib/apache2/modules/mod_authn_alias.so": 1, - "authz_host_module": 2, - "/usr/lib/apache2/modules/mod_authz_host.so": 1, - "authz_groupfile_module": 2, - "/usr/lib/apache2/modules/mod_authz_groupfile.so": 1, - "authz_user_module": 2, - "/usr/lib/apache2/modules/mod_authz_user.so": 1, - "authz_dbm_module": 2, - "/usr/lib/apache2/modules/mod_authz_dbm.so": 1, - "authz_owner_module": 2, - "/usr/lib/apache2/modules/mod_authz_owner.so": 1, - "authnz_ldap_module": 1, - "/usr/lib/apache2/modules/mod_authnz_ldap.so": 1, - "authz_default_module": 2, - "/usr/lib/apache2/modules/mod_authz_default.so": 1, - "auth_basic_module": 2, - "/usr/lib/apache2/modules/mod_auth_basic.so": 1, - "auth_digest_module": 2, - "/usr/lib/apache2/modules/mod_auth_digest.so": 1, - "file_cache_module": 1, - "/usr/lib/apache2/modules/mod_file_cache.so": 1, - "cache_module": 2, - "/usr/lib/apache2/modules/mod_cache.so": 1, - "disk_cache_module": 2, - "/usr/lib/apache2/modules/mod_disk_cache.so": 1, - "mem_cache_module": 2, - "/usr/lib/apache2/modules/mod_mem_cache.so": 1, - "dbd_module": 2, - "/usr/lib/apache2/modules/mod_dbd.so": 1, - "dumpio_module": 2, - "/usr/lib/apache2/modules/mod_dumpio.so": 1, - "ext_filter_module": 2, - "/usr/lib/apache2/modules/mod_ext_filter.so": 1, - "include_module": 2, - "/usr/lib/apache2/modules/mod_include.so": 1, - "filter_module": 2, - "/usr/lib/apache2/modules/mod_filter.so": 1, - "charset_lite_module": 1, - "/usr/lib/apache2/modules/mod_charset_lite.so": 1, - "deflate_module": 2, - "/usr/lib/apache2/modules/mod_deflate.so": 1, - "ldap_module": 1, - "/usr/lib/apache2/modules/mod_ldap.so": 1, - "log_forensic_module": 2, - "/usr/lib/apache2/modules/mod_log_forensic.so": 1, - "env_module": 2, - "/usr/lib/apache2/modules/mod_env.so": 1, - "mime_magic_module": 2, - "/usr/lib/apache2/modules/mod_mime_magic.so": 1, - "cern_meta_module": 2, - "/usr/lib/apache2/modules/mod_cern_meta.so": 1, - "expires_module": 2, - "/usr/lib/apache2/modules/mod_expires.so": 1, - "headers_module": 2, - "/usr/lib/apache2/modules/mod_headers.so": 1, - "ident_module": 2, - "/usr/lib/apache2/modules/mod_ident.so": 1, - "usertrack_module": 2, - "/usr/lib/apache2/modules/mod_usertrack.so": 1, - "unique_id_module": 2, - "/usr/lib/apache2/modules/mod_unique_id.so": 1, - "setenvif_module": 2, - "/usr/lib/apache2/modules/mod_setenvif.so": 1, - "version_module": 2, - "/usr/lib/apache2/modules/mod_version.so": 1, - "proxy_module": 2, - "/usr/lib/apache2/modules/mod_proxy.so": 1, - "proxy_connect_module": 2, - "/usr/lib/apache2/modules/mod_proxy_connect.so": 1, - "proxy_ftp_module": 2, - "/usr/lib/apache2/modules/mod_proxy_ftp.so": 1, - "proxy_http_module": 2, - "/usr/lib/apache2/modules/mod_proxy_http.so": 1, - "proxy_ajp_module": 2, - "/usr/lib/apache2/modules/mod_proxy_ajp.so": 1, - "proxy_balancer_module": 2, - "/usr/lib/apache2/modules/mod_proxy_balancer.so": 1, - "ssl_module": 4, - "/usr/lib/apache2/modules/mod_ssl.so": 1, - "mime_module": 4, - "/usr/lib/apache2/modules/mod_mime.so": 1, - "dav_module": 2, - "/usr/lib/apache2/modules/mod_dav.so": 1, - "status_module": 2, - "/usr/lib/apache2/modules/mod_status.so": 1, - "autoindex_module": 2, - "/usr/lib/apache2/modules/mod_autoindex.so": 1, - "asis_module": 2, - "/usr/lib/apache2/modules/mod_asis.so": 1, - "info_module": 2, - "/usr/lib/apache2/modules/mod_info.so": 1, - "suexec_module": 1, - "/usr/lib/apache2/modules/mod_suexec.so": 1, - "cgid_module": 3, - "/usr/lib/apache2/modules/mod_cgid.so": 1, - "cgi_module": 2, - "/usr/lib/apache2/modules/mod_cgi.so": 1, - "dav_fs_module": 2, - "/usr/lib/apache2/modules/mod_dav_fs.so": 1, - "dav_lock_module": 1, - "/usr/lib/apache2/modules/mod_dav_lock.so": 1, - "vhost_alias_module": 2, - "/usr/lib/apache2/modules/mod_vhost_alias.so": 1, - "negotiation_module": 2, - "/usr/lib/apache2/modules/mod_negotiation.so": 1, - "dir_module": 4, - "/usr/lib/apache2/modules/mod_dir.so": 1, - "imagemap_module": 2, - "/usr/lib/apache2/modules/mod_imagemap.so": 1, - "actions_module": 2, - "/usr/lib/apache2/modules/mod_actions.so": 1, - "speling_module": 2, - "/usr/lib/apache2/modules/mod_speling.so": 1, - "userdir_module": 2, - "/usr/lib/apache2/modules/mod_userdir.so": 1, - "alias_module": 4, - "/usr/lib/apache2/modules/mod_alias.so": 1, - "rewrite_module": 2, - "/usr/lib/apache2/modules/mod_rewrite.so": 1, - "": 17, - "mpm_netware_module": 2, - "User": 2, - "daemon": 2, - "Group": 2, - "": 17, - "ServerAdmin": 2, - "you@example.com": 2, - "#ServerName": 2, - "www.example.com": 2, - "DocumentRoot": 2, - "": 6, - "Options": 6, - "FollowSymLinks": 4, - "AllowOverride": 6, - "None": 8, - "Order": 10, - "deny": 10, - "allow": 10, - "Deny": 6, - "from": 10, - "all": 10, - "": 6, - "usr": 2, - "share": 1, - "apache2": 1, - "default": 1, - "site": 1, - "htdocs": 1, - "Indexes": 2, - "Allow": 4, - "DirectoryIndex": 2, - "index.html": 2, - "": 2, - "ht": 1, - "Satisfy": 4, - "All": 4, - "": 2, - "ErrorLog": 2, - "/var/log/apache2/error_log": 1, - "LogLevel": 2, - "warn": 2, - "log_config_module": 3, - "LogFormat": 6, - "combined": 4, - "common": 4, - "logio_module": 3, - "combinedio": 2, - "CustomLog": 2, - "/var/log/apache2/access_log": 2, - "#CustomLog": 2, - "ScriptAlias": 1, - "/cgi": 2, - "bin/": 2, - "#Scriptsock": 2, - "/var/run/apache2/cgisock": 1, - "lib": 1, - "cgi": 3, - "bin": 1, - "DefaultType": 2, - "text/plain": 2, - "TypesConfig": 2, - "/etc/apache2/mime.types": 1, - "#AddType": 4, - "application/x": 6, - "gzip": 6, - ".tgz": 6, - "#AddEncoding": 4, - "x": 4, - "compress": 4, - ".Z": 4, - ".gz": 4, - "AddType": 4, - "#AddHandler": 4, - "script": 2, - ".cgi": 2, - "type": 2, - "map": 2, - "var": 2, - "text/html": 2, - ".shtml": 4, - "#AddOutputFilter": 2, - "INCLUDES": 2, - "#MIMEMagicFile": 2, - "/etc/apache2/magic": 1, - "#ErrorDocument": 8, - "/missing.html": 2, - "http": 2, - "//www.example.com/subscription_info.html": 2, - "#EnableMMAP": 2, - "off": 5, - "#EnableSendfile": 2, - "#Include": 17, - "/etc/apache2/extra/httpd": 11, - "mpm.conf": 2, - "multilang": 2, - "errordoc.conf": 2, - "autoindex.conf": 2, - "languages.conf": 2, - "userdir.conf": 2, - "info.conf": 2, - "vhosts.conf": 2, - "manual.conf": 2, - "dav.conf": 2, - "default.conf": 2, - "ssl.conf": 2, - "SSLRandomSeed": 4, - "startup": 2, - "builtin": 4, - "connect": 2, - "libexec/apache2/mod_authn_file.so": 1, - "libexec/apache2/mod_authn_dbm.so": 1, - "libexec/apache2/mod_authn_anon.so": 1, - "libexec/apache2/mod_authn_dbd.so": 1, - "libexec/apache2/mod_authn_default.so": 1, - "libexec/apache2/mod_authz_host.so": 1, - "libexec/apache2/mod_authz_groupfile.so": 1, - "libexec/apache2/mod_authz_user.so": 1, - "libexec/apache2/mod_authz_dbm.so": 1, - "libexec/apache2/mod_authz_owner.so": 1, - "libexec/apache2/mod_authz_default.so": 1, - "libexec/apache2/mod_auth_basic.so": 1, - "libexec/apache2/mod_auth_digest.so": 1, - "libexec/apache2/mod_cache.so": 1, - "libexec/apache2/mod_disk_cache.so": 1, - "libexec/apache2/mod_mem_cache.so": 1, - "libexec/apache2/mod_dbd.so": 1, - "libexec/apache2/mod_dumpio.so": 1, - "reqtimeout_module": 1, - "libexec/apache2/mod_reqtimeout.so": 1, - "libexec/apache2/mod_ext_filter.so": 1, - "libexec/apache2/mod_include.so": 1, - "libexec/apache2/mod_filter.so": 1, - "substitute_module": 1, - "libexec/apache2/mod_substitute.so": 1, - "libexec/apache2/mod_deflate.so": 1, - "libexec/apache2/mod_log_config.so": 1, - "libexec/apache2/mod_log_forensic.so": 1, - "libexec/apache2/mod_logio.so": 1, - "libexec/apache2/mod_env.so": 1, - "libexec/apache2/mod_mime_magic.so": 1, - "libexec/apache2/mod_cern_meta.so": 1, - "libexec/apache2/mod_expires.so": 1, - "libexec/apache2/mod_headers.so": 1, - "libexec/apache2/mod_ident.so": 1, - "libexec/apache2/mod_usertrack.so": 1, - "#LoadModule": 4, - "libexec/apache2/mod_unique_id.so": 1, - "libexec/apache2/mod_setenvif.so": 1, - "libexec/apache2/mod_version.so": 1, - "libexec/apache2/mod_proxy.so": 1, - "libexec/apache2/mod_proxy_connect.so": 1, - "libexec/apache2/mod_proxy_ftp.so": 1, - "libexec/apache2/mod_proxy_http.so": 1, - "proxy_scgi_module": 1, - "libexec/apache2/mod_proxy_scgi.so": 1, - "libexec/apache2/mod_proxy_ajp.so": 1, - "libexec/apache2/mod_proxy_balancer.so": 1, - "libexec/apache2/mod_ssl.so": 1, - "libexec/apache2/mod_mime.so": 1, - "libexec/apache2/mod_dav.so": 1, - "libexec/apache2/mod_status.so": 1, - "libexec/apache2/mod_autoindex.so": 1, - "libexec/apache2/mod_asis.so": 1, - "libexec/apache2/mod_info.so": 1, - "libexec/apache2/mod_cgi.so": 1, - "libexec/apache2/mod_dav_fs.so": 1, - "libexec/apache2/mod_vhost_alias.so": 1, - "libexec/apache2/mod_negotiation.so": 1, - "libexec/apache2/mod_dir.so": 1, - "libexec/apache2/mod_imagemap.so": 1, - "libexec/apache2/mod_actions.so": 1, - "libexec/apache2/mod_speling.so": 1, - "libexec/apache2/mod_userdir.so": 1, - "libexec/apache2/mod_alias.so": 1, - "libexec/apache2/mod_rewrite.so": 1, - "perl_module": 1, - "libexec/apache2/mod_perl.so": 1, - "php5_module": 1, - "libexec/apache2/libphp5.so": 1, - "hfs_apple_module": 1, - "libexec/apache2/mod_hfs_apple.so": 1, - "mpm_winnt_module": 1, - "_www": 2, - "Library": 2, - "WebServer": 2, - "Documents": 1, - "MultiViews": 1, - "Hh": 1, - "Tt": 1, - "Dd": 1, - "Ss": 2, - "_": 1, - "": 1, - "rsrc": 1, - "": 1, - "": 1, - "namedfork": 1, - "": 1, - "ScriptAliasMatch": 1, - "i": 1, - "webobjects": 1, - "/private/var/run/cgisock": 1, - "CGI": 1, - "Executables": 1, - "/private/etc/apache2/mime.types": 1, - "/private/etc/apache2/magic": 1, - "#MaxRanges": 1, - "unlimited": 1, - "TraceEnable": 1, - "Include": 6, - "/private/etc/apache2/extra/httpd": 11, - "/private/etc/apache2/other/*.conf": 1 - }, - "Apex": { - "global": 70, - "class": 7, - "ArrayUtils": 1, - "{": 219, - "static": 83, - "String": 60, - "[": 102, - "]": 102, - "EMPTY_STRING_ARRAY": 1, - "new": 60, - "}": 219, - ";": 308, - "Integer": 34, - "MAX_NUMBER_OF_ELEMENTS_IN_LIST": 5, - "get": 4, - "return": 106, - "List": 71, - "": 30, - "objectToString": 1, - "(": 481, - "": 22, - "objects": 3, - ")": 481, - "strings": 3, - "null": 92, - "if": 91, - "objects.size": 1, - "for": 24, - "Object": 23, - "obj": 3, - "instanceof": 1, - "strings.add": 1, - "reverse": 2, - "anArray": 14, - "i": 55, - "j": 10, - "anArray.size": 2, - "-": 18, - "tmp": 6, - "while": 8, - "+": 75, - "SObject": 19, - "lowerCase": 1, - "strs": 9, - "returnValue": 22, - "strs.size": 3, - "str": 10, - "returnValue.add": 3, - "str.toLowerCase": 1, - "upperCase": 1, - "str.toUpperCase": 1, - "trim": 1, - "str.trim": 3, - "mergex": 2, - "array1": 8, - "array2": 9, - "merged": 6, - "array1.size": 4, - "array2.size": 2, - "<": 32, - "": 19, - "sObj": 4, - "merged.add": 2, - "Boolean": 38, - "isEmpty": 7, - "objectArray": 17, - "true": 12, - "objectArray.size": 6, - "isNotEmpty": 4, - "pluck": 1, - "fieldName": 3, - "||": 12, - "fieldName.trim": 2, - ".length": 2, - "plucked": 3, - ".get": 4, - "toString": 3, - "void": 9, - "assertArraysAreEqual": 2, - "expected": 16, - "actual": 16, - "//check": 2, - "to": 4, - "see": 2, - "one": 2, - "param": 2, - "is": 5, - "but": 2, - "the": 4, - "other": 2, - "not": 3, - "System.assert": 6, - "&&": 46, - "ArrayUtils.toString": 12, - "expected.size": 4, - "actual.size": 2, - "merg": 2, - "list1": 15, - "list2": 9, - "returnList": 11, - "list1.size": 6, - "list2.size": 2, - "throw": 6, - "IllegalArgumentException": 5, - "elmt": 8, - "returnList.add": 8, - "subset": 6, - "aList": 4, - "count": 10, - "startIndex": 9, - "<=>": 2, - "size": 2, - "1": 2, - "list1.get": 2, - "//": 11, - "//LIST/ARRAY": 1, - "SORTING": 1, - "//FOR": 2, - "FORCE.COM": 1, - "PRIMITIVES": 1, - "Double": 1, - "ID": 1, - "etc.": 1, - "qsort": 18, - "theList": 72, - "PrimitiveComparator": 2, - "sortAsc": 24, - "ObjectComparator": 3, - "comparator": 14, - "theList.size": 2, - "SALESFORCE": 1, - "OBJECTS": 1, - "sObjects": 1, - "ISObjectComparator": 3, - "private": 10, - "lo0": 6, - "hi0": 8, - "lo": 42, - "hi": 50, - "else": 25, - "comparator.compare": 12, - "prs": 8, - "pivot": 14, - "/": 4, - "BooleanUtils": 1, - "isFalse": 1, - "bool": 32, - "false": 13, - "isNotFalse": 1, - "isNotTrue": 1, - "isTrue": 1, - "negate": 1, - "toBooleanDefaultIfNull": 1, - "defaultVal": 2, - "toBoolean": 2, - "value": 10, - "strToBoolean": 1, - "StringUtils.equalsIgnoreCase": 1, - "//Converts": 1, - "an": 4, - "int": 1, - "a": 6, - "boolean": 1, - "specifying": 1, - "//the": 2, - "conversion": 1, - "values.": 1, - "//Returns": 1, - "//Throws": 1, - "trueValue": 2, - "falseValue": 2, - "toInteger": 1, - "toStringYesNo": 1, - "toStringYN": 1, - "trueString": 2, - "falseString": 2, - "xor": 1, - "boolArray": 4, - "boolArray.size": 1, - "firstItem": 2, - "EmailUtils": 1, - "sendEmailWithStandardAttachments": 3, - "recipients": 11, - "emailSubject": 10, - "body": 8, - "useHTML": 6, - "": 1, - "attachmentIDs": 2, - "": 2, - "stdAttachments": 4, - "SELECT": 1, - "id": 1, - "name": 2, - "FROM": 1, - "Attachment": 2, - "WHERE": 1, - "Id": 1, - "IN": 1, - "": 3, - "fileAttachments": 5, - "attachment": 1, - "Messaging.EmailFileAttachment": 2, - "fileAttachment": 2, - "fileAttachment.setFileName": 1, - "attachment.Name": 1, - "fileAttachment.setBody": 1, - "attachment.Body": 1, - "fileAttachments.add": 1, - "sendEmail": 4, - "sendTextEmail": 1, - "textBody": 2, - "sendHTMLEmail": 1, - "htmlBody": 2, - "recipients.size": 1, - "Messaging.SingleEmailMessage": 3, - "mail": 2, - "email": 1, - "saved": 1, - "as": 1, - "activity.": 1, - "mail.setSaveAsActivity": 1, - "mail.setToAddresses": 1, - "mail.setSubject": 1, - "mail.setBccSender": 1, - "mail.setUseSignature": 1, - "mail.setHtmlBody": 1, - "mail.setPlainTextBody": 1, - "fileAttachments.size": 1, - "mail.setFileAttachments": 1, - "Messaging.sendEmail": 1, - "isValidEmailAddress": 2, - "split": 5, - "str.split": 1, - "split.size": 2, - ".split": 1, - "isNotValidEmailAddress": 1, - "public": 10, - "GeoUtils": 1, - "generate": 1, - "KML": 1, - "string": 7, - "given": 2, + "append": 1, + "a.length": 23, + "uuid": 2, + "style": 30, + "100": 4, + ".33*f": 2, + "bz": 7, + "j.reliableHiddenOffsets": 1, + "up": 4, + ".exec": 2, + "t.repaint": 4, + "k*.803738": 2, + "/2": 25, + "getImageData": 1, + "an": 12, + "n.leftMatch": 1, + "IE8": 2, + "giving": 1, + "actually": 2, + "b.nodeName.toLowerCase": 1, + "properties": 7, + "propFix": 1, + "support.noCloneEvent": 1, + "DTRACE_HTTP_SERVER_RESPONSE": 1, + "e*.485981": 3, + "global": 5, + "ot.width": 1, + "this.state": 3, + "a.scriptCharset": 2, + "a.className": 1, + "et.restore": 1, + "n*kt": 1, + "wi.width": 1, + "s.createElement": 10, + "f.support.noCloneChecked": 1, + "parser.incoming.httpVersionMinor": 1, + "WHITE": 1, + "794392": 1, + "this.setArea": 1, + "gu": 9, + "concerning": 2, + "class2type": 3, + "route": 18, + "this.": 2, + "S.peek": 1, + "y.save": 1, + "fi": 26, + "a.runtimeStyle": 2, + "isWindow": 2, + "a.removeAttributeNode": 1, + "strings": 8, + "nt.save": 1, + "t.stroke": 2, + "responseFields": 1, + "object.url": 4, + "": 3, + "_change_data": 6, + "i*.12864": 2, + "Values": 1, + "shadowColor=": 1, + "handy": 2, + "Backbone.emulateHTTP": 1, + "self.removeSocket": 2, + "self._emitEnd": 1, + "s*.12": 1, + "this.setOdoValue": 1, + "cj": 4, + "between": 1, + "e": 663, + "P.test": 1, + "col": 7, + "buttons": 1, + "removeAttribute": 3, + "outer.nextSibling.firstChild.firstChild": 1, + "exports.parse": 1, + "c.cache": 2, + "purpose": 1, + "e.isFunction": 5, + "upon.": 1, + "docCreateElement": 5, + "html5.elements": 1, + "is_letter": 3, + "154205": 1, + "i.playAlarm": 10, + "working": 1, + "056074": 1, + "r.toPrecision": 4, + "cu.setValue": 1, + "this.setTrendVisible": 2, + "has": 9, + "name.toLowerCase": 6, + "display": 7, + "f.shift": 1, + "self.setHeader": 1, + "": 3, + "l.left": 1, + "nth": 5, + "f.noop": 4, + "Ta.exec": 1, + "response": 3, + "div.parentNode.removeChild": 1, + "jQuery.Deferred": 1, + "a.fragment": 1, + "thead": 2, + "camel": 2, + "cache.setInterval": 1, + "marginTop": 3, + "jQuery.fn.trigger": 2, + "et.rotate": 1, + "he": 1, + "f.offset.subtractsBorderForOverflowNotVisible": 1, + "bg._default": 2, + "RegExp.": 1, + "h*.415": 1, + "g.scrollTop": 1, + "well": 2, + "ticket": 4, + "document.addEventListener": 6, + "using": 5, + "begin.data.charCodeAt": 1, + ".08*f": 1, + "u.clearRect": 5, + "An": 1, + "f.clean": 1, + "act": 1, + "ID": 8, + "bg.td": 1, "page": 1, - "reference": 1, - "call": 1, - "getContent": 1, - "then": 1, - "cleanup": 1, - "output.": 1, - "generateFromContent": 1, - "PageReference": 2, - "pr": 1, - "ret": 7, - "try": 1, - "pr.getContent": 1, - ".toString": 1, - "ret.replaceAll": 4, - "content": 1, - "produces": 1, - "quote": 1, - "chars": 1, - "we": 1, - "need": 1, - "escape": 1, - "these": 2, - "in": 1, - "node": 1, - "catch": 1, - "exception": 1, - "e": 2, - "system.debug": 2, - "must": 1, - "use": 1, - "ALL": 1, - "since": 1, - "many": 1, - "line": 1, - "may": 1, - "also": 1, - "Map": 33, - "": 2, - "geo_response": 1, - "accountAddressString": 2, - "account": 2, - "acct": 1, - "form": 1, - "address": 1, - "object": 1, - "adr": 9, - "acct.billingstreet": 1, - "acct.billingcity": 1, - "acct.billingstate": 1, - "acct.billingpostalcode": 2, - "acct.billingcountry": 2, - "adr.replaceAll": 4, - "testmethod": 1, - "t1": 1, - "pageRef": 3, - "Page.kmlPreviewTemplate": 1, - "Test.setCurrentPage": 1, - "system.assert": 1, - "GeoUtils.generateFromContent": 1, - "Account": 2, - "billingstreet": 1, - "billingcity": 1, - "billingstate": 1, - "billingpostalcode": 1, - "billingcountry": 1, - "insert": 1, - "system.assertEquals": 1, - "LanguageUtils": 1, - "final": 6, - "HTTP_LANGUAGE_CODE_PARAMETER_KEY": 2, - "DEFAULT_LANGUAGE_CODE": 3, - "Set": 6, - "SUPPORTED_LANGUAGE_CODES": 2, - "//Chinese": 2, - "Simplified": 1, - "Traditional": 1, - "//Dutch": 1, - "//English": 1, - "//Finnish": 1, - "//French": 1, - "//German": 1, - "//Italian": 1, - "//Japanese": 1, - "//Korean": 1, - "//Polish": 1, - "//Portuguese": 1, - "Brazilian": 1, - "//Russian": 1, - "//Spanish": 1, - "//Swedish": 1, - "//Thai": 1, - "//Czech": 1, - "//Danish": 1, - "//Hungarian": 1, - "//Indonesian": 1, - "//Turkish": 1, - "": 29, - "DEFAULTS": 1, - "getLangCodeByHttpParam": 4, - "LANGUAGE_CODE_SET": 1, - "getSuppLangCodeSet": 2, - "ApexPages.currentPage": 4, - ".getParameters": 2, - "LANGUAGE_HTTP_PARAMETER": 7, - "StringUtils.lowerCase": 3, - "StringUtils.replaceChars": 2, - "//underscore": 1, - "//dash": 1, - "DEFAULTS.containsKey": 3, - "DEFAULTS.get": 3, - "StringUtils.isNotBlank": 1, - "SUPPORTED_LANGUAGE_CODES.contains": 2, - "getLangCodeByBrowser": 4, - "LANGUAGES_FROM_BROWSER_AS_STRING": 2, - ".getHeaders": 1, - "LANGUAGES_FROM_BROWSER_AS_LIST": 3, - "splitAndFilterAcceptLanguageHeader": 2, - "LANGUAGES_FROM_BROWSER_AS_LIST.size": 1, - "languageFromBrowser": 6, - "getLangCodeByUser": 3, - "UserInfo.getLanguage": 1, - "getLangCodeByHttpParamOrIfNullThenBrowser": 1, - "StringUtils.defaultString": 4, - "getLangCodeByHttpParamOrIfNullThenUser": 1, - "getLangCodeByBrowserOrIfNullThenHttpParam": 1, - "getLangCodeByBrowserOrIfNullThenUser": 1, - "header": 2, - "tokens": 3, - "StringUtils.split": 1, - "token": 7, - "token.contains": 1, - "token.substring": 1, - "token.indexOf": 1, - "StringUtils.length": 1, - "StringUtils.substring": 1, - "langCodes": 2, - "langCode": 3, - "langCodes.add": 1, - "getLanguageName": 1, - "displayLanguageCode": 13, - "languageCode": 2, - "translatedLanguageNames.get": 2, - "filterLanguageCode": 4, - "getAllLanguages": 3, - "translatedLanguageNames.containsKey": 1, - "translatedLanguageNames": 1, - "TwilioAPI": 2, - "MissingTwilioConfigCustomSettingsException": 2, - "extends": 1, - "Exception": 1, - "TwilioRestClient": 5, - "client": 2, - "getDefaultClient": 2, - "TwilioConfig__c": 5, - "twilioCfg": 7, - "getTwilioConfig": 3, - "TwilioAPI.client": 2, - "twilioCfg.AccountSid__c": 3, - "twilioCfg.AuthToken__c": 3, - "TwilioAccount": 1, - "getDefaultAccount": 1, - ".getAccount": 2, - "TwilioCapability": 2, - "createCapability": 1, - "createClient": 1, - "accountSid": 2, - "authToken": 2, - "Test.isRunningTest": 1, - "dummy": 2, - "sid": 1, - "TwilioConfig__c.getOrgDefaults": 1, - "@isTest": 1, - "test_TwilioAPI": 1, - "System.assertEquals": 5, - "TwilioAPI.getTwilioConfig": 2, - ".AccountSid__c": 1, - ".AuthToken__c": 1, - "TwilioAPI.getDefaultClient": 2, - ".getAccountSid": 1, - ".getSid": 2, - "TwilioAPI.getDefaultAccount": 1 - }, - "AppleScript": { - "set": 108, - "windowWidth": 3, - "to": 128, - "windowHeight": 3, - "delay": 3, - "AppleScript": 2, - "s": 3, - "text": 13, - "item": 13, - "delimiters": 1, - "tell": 40, - "application": 16, - "screen_width": 2, - "(": 89, - "do": 4, - "JavaScript": 2, - "in": 13, - "document": 2, - ")": 88, - "screen_height": 2, - "end": 67, - "myFrontMost": 3, - "name": 8, - "of": 72, - "first": 1, - "processes": 2, - "whose": 1, - "frontmost": 1, - "is": 40, - "true": 8, - "{": 32, - "desktopTop": 2, - "desktopLeft": 1, - "desktopRight": 1, - "desktopBottom": 1, - "}": 32, - "bounds": 2, - "desktop": 1, - "try": 10, - "process": 5, - "w": 5, - "h": 4, - "size": 5, - "drawer": 2, - "window": 5, - "on": 18, - "error": 3, - "position": 1, - "-": 57, - "/": 2, - "property": 7, - "type_list": 6, - "extension_list": 6, - "html": 2, - "not": 5, - "currently": 2, - "handled": 2, - "run": 4, - "FinderSelection": 4, - "the": 56, - "selection": 2, - "as": 27, - "alias": 8, - "list": 9, - "FS": 10, - "Ideally": 2, - "this": 2, - "could": 2, - "be": 2, - "passed": 2, - "open": 8, - "handler": 2, - "SelectionCount": 6, - "number": 6, - "count": 10, - "if": 50, - "then": 28, - "userPicksFolder": 6, - "else": 14, - "MyPath": 4, - "path": 6, - "me": 2, - "If": 2, - "I": 2, - "m": 2, - "a": 4, - "double": 2, - "clicked": 2, - "droplet": 2, - "these_items": 18, - "choose": 2, - "file": 6, - "with": 11, - "prompt": 2, - "type": 6, - "thesefiles": 2, - "item_info": 24, - "repeat": 19, - "i": 10, - "from": 9, - "this_item": 14, - "info": 4, - "for": 5, - "folder": 10, - "processFolder": 8, - "false": 9, - "and": 7, - "or": 6, - "extension": 4, - "theFilePath": 8, - "string": 17, - "thePOSIXFilePath": 8, - "POSIX": 4, - "processFile": 8, - "folders": 2, - "theFolder": 6, - "without": 2, - "invisibles": 2, - "&": 63, - "thePOSIXFileName": 6, - "terminalCommand": 6, - "convertCommand": 4, - "newFileName": 4, - "shell": 2, - "script": 2, - "need": 1, - "pass": 1, - "URL": 1, - "Terminal": 1, - "localMailboxes": 3, - "every": 3, - "mailbox": 2, - "greater": 5, - "than": 6, - "messageCountDisplay": 5, - "return": 16, - "my": 3, - "getMessageCountsForMailboxes": 4, - "everyAccount": 2, - "account": 1, - "eachAccount": 3, - "accountMailboxes": 3, - "outputMessage": 2, - "make": 3, - "new": 2, + "document.styleSheets.length": 1, + "350466": 1, + "drawImage": 12, + "e/r*": 1, + "DOMready/load": 2, + "a.relatedTarget": 2, + "timeStamp": 1, + "a.global": 1, + "this.agent": 2, + "i.html": 1, + "n.measureText": 2, + "di.height": 1, + "A.attachEvent": 1, + "jQuery.isNumeric": 1, + "Map": 4, + "else": 307, + "_results.push": 2, + "array": 7, + "this.socket.write": 1, + "Object.prototype.hasOwnProperty.call": 1, + "u.frameDesign": 4, + "u.canvas.height*.105": 2, + "n.strokeStyle": 27, + "ei.textColor": 2, + "c.bindReady": 1, + "I": 7, + "least": 4, + "sentTransferEncodingHeader": 3, + "h.responseXML": 1, + "b.jsonpCallback": 4, + "div.lastChild": 1, + "asynchronously": 2, + "toggleClass": 2, + "layout": 2, + "bB": 5, + "b.defaultValue": 1, + "socket.setTimeout": 1, + "f*.443925": 9, + "e*.149532": 8, + ".053": 1, + "bi/": 2, + "": 2, + "c.support.changeBubbles": 1, + "a.ownerDocument.defaultView": 1, + "f.Deferred": 2, + "at/yt*t": 1, + "customEvent": 1, + ".0465*t": 2, + "t.addColorStop": 6, + "tt": 53, + "boundary": 1, + "unit=": 1, + "this.unbind": 2, + "classes.slice": 1, + "": 2, + "yt.getEnd": 2, + "vi.height": 1, + "i.ledColor": 10, + "I.focus": 1, + "elem.removeAttribute": 6, + "this.valueOf": 2, + "float": 3, + "": 1, + "blur": 8, + "selected": 5, + "mStyle.opacity": 1, + ".7": 1, + "Promise": 1, + "closest": 3, + "DELETE": 1, + "issue.": 1, + "self.host": 1, + "comments_before": 1, + "autoScroll": 2, + "d.nextSibling.firstChild.firstChild": 1, + "s.documentElement": 2, + "r.attr": 1, + "add": 15, + "valHooks": 1, + "a.defaultChecked": 1, + "g=": 15, + "warn": 3, + "fi=": 1, + "closePath": 8, + "f1": 1, + "b.css": 1, + "req.res.readable": 1, + "Agent.prototype.defaultPort": 1, + "r.repaint": 1, + "this.setFrameDesign": 7, + ".scrollLeft": 1, + "scoped": 1, + "bK.test": 1, + "nodes": 14, + "this._headers": 13, + "e6e6e6": 1, + "i*.152857": 1, + "isDefaultPrevented": 1, + "getComputedStyle": 3, + "ti.length": 1, + "f.support.htmlSerialize": 1, + "b.toFixed": 1, + "h.send": 1, + "typeof": 132, + "a.jQuery": 2, + "serverSocketCloseListener": 3, + "yi.setAttribute": 2, + "nu": 11, + "deferred": 25, + "-": 705, + "entry": 1, + "differently": 1, + "db": 1, + "str1": 6, + "parent.prototype": 6, + "this.get": 1, + "h.length": 3, + "h.substr": 1, + "this.elements": 2, + ".StringDecoder": 1, + "cloned": 1, + "func": 3, + "v": 135, + "arguments.length": 18, + "IncomingMessage": 4, + "03": 1, + ".67*u": 1, + "steelseries.GaugeType.TYPE5": 1, + "ue": 1, + "prune": 1, + "/Until": 1, + "i.exec": 1, + "approach": 1, + "bo": 2, + "options.socketPath": 1, + "_super": 4, + ".044*t": 1, + "Useragent": 2, + "b.type": 4, + "b.removeAttribute": 3, + ".ready": 2, + "res.upgrade": 1, + "//avoid": 1, + "s.font": 2, + "u.restore": 6, + "deletion": 1, + "res.writeContinue": 1, + "s*.4": 1, + "l.innerHTML": 1, + "setting": 2, + "e.elem": 2, + "marginDiv": 5, + "HANDLE": 2, + "f.lastModified": 1, + "parser.incoming.upgrade": 4, + "createHangUpError": 3, + "result4": 12, + "dt.onMotionChanged": 2, + "h.toLowerCase": 2, + "rinlinejQuery": 1, + "h.handler.guid": 2, + "orphans": 1, + "Deferred": 5, + "been": 5, + "prependTo": 1, + "u*.004": 1, + "kt.restore": 1, + "oe": 2, + "exec.call": 1, + "l.match.ID.test": 2, + "exports.KEYWORDS": 1, + ".7825*t": 5, + "Snake": 12, + "than": 3, + "ua.toLowerCase": 1, + "": 1, + "G=": 1, + "fragment.appendChild": 2, + "process.binding": 1, + "alert": 11, + "a.nodeName.toLowerCase": 3, + "client": 3, + "parse": 1, + "sometimes": 1, + "select.disabled": 1, + "wa": 1, + "e.firstChild": 1, + ".toString": 3, + "": 2, + "repaint": 23, + "i.fractionalScaleDecimals": 4, + "b.guid": 2, + "this.route": 1, + "Z": 6, + "parser.incoming": 9, + "vi.getEnd": 1, + "ci/2": 1, + "fn.apply": 1, + "f.support.getSetAttribute": 2, + "a.style.marginRight": 1, + "bS": 1, + "f.text": 2, + "ClientRequest.prototype.abort": 1, + "nlb": 1, + "e*.546728": 5, + "clearRect": 8, + "firingLength": 4, + "div.innerHTML": 7, + ".matches": 1, + "u1680": 1, + "u.pointerColor": 4, + "u.shadowOffsetX": 2, + "ba.test": 1, + "<\\/\\1>": 4, + "p.add.call": 1, + "this.writable": 1, + "KEYWORDS_BEFORE_EXPRESSION": 2, + "ni=": 1, + "this.color": 1, + "window.history": 2, + "onbeforeunload=": 3, + "dblclick": 3, + "a.removeAttribute": 3, + "inputElem.value": 2, + "i.pageYOffset": 1, + "if": 1230, + "following": 1, + "onunload": 1, + "a.contains": 2, + "E.call": 1, + ".addClass": 1, + "pair": 1, + ".get": 3, + "nextAll": 1, + "options.port": 4, + "self.options": 2, + "d.width": 4, + "i*.142857": 1, + "he.drawImage": 1, + "boxModel": 1, + ".lastChild.checked": 2, + "With": 1, + "qa": 1, + ".Event": 1, + "req.res.emit": 1, + "urlError": 2, + "this.className": 10, + "UserAgent": 2, + "j.deleteExpando": 1, + "s.removeListener": 3, + "c.attr": 4, + "OutgoingMessage.prototype._flush": 1, + "/src/i.test": 1, + ".66*e": 1, + "n=": 10, + ".preventDefault": 1, + "hook": 1, + "d*": 8, + "f*.37": 3, + "exposing": 2, + "across": 1, + "h.rejectWith": 1, + "rootjQuery": 8, + "c.fn.attr.call": 1, + "ownerDocument.documentElement": 1, + "node.currentStyle": 2, + "this.found": 1, + "matched": 2, + "Class": 2, + "image": 5, + "socket.on": 2, + "this.setMinValue": 4, + "n.foreground": 22, + "test": 21, + "String.prototype.toJSON": 1, + ".emit": 1, + "store": 3, + "shadowOffsetX=": 1, + "n.charAt": 1, + "later": 1, + "Bug": 1, + "promisy": 1, + "exports.OutgoingMessage": 1, + "result1.push": 3, + "comment1": 1, + "a.getElementsByTagName": 9, + "f.removeAttr": 3, + "u00A0": 2, + "firing": 16, + "this.once": 2, + "n.drawImage": 14, + "TODO": 2, + "rdashAlpha": 1, + "rsingleTag": 2, + "bool.webm": 1, + "t*.13": 3, + "ti": 39, + "h.clientLeft": 1, + "e.reverse": 1, + "webforms": 2, + "hi.getContext": 6, + "func.call": 1, + "at": 58, + "Wa": 2, + "c.isEmptyObject": 1, + "this.remove": 1, + "ClientRequest.prototype._implicitHeader": 1, + "g.width": 4, + "k.offsetWidth": 1, + "ck.createElement": 1, + "u2028": 3, + "j.cacheable": 1, + "node.offsetTop": 1, + "lastToggle": 4, + "d.mimeType": 1, + "this.complete": 2, + "rawText": 5, + "valid": 4, + "allow": 6, + "f.support.radioValue": 1, + "g.promise": 1, + "attr": 13, "outgoing": 2, - "message": 2, - "properties": 2, - "content": 2, - "subject": 1, - "visible": 2, - "font": 2, - "theMailboxes": 2, - "mailboxes": 1, - "returns": 2, - "displayString": 4, - "eachMailbox": 4, - "mailboxName": 2, - "messageCount": 2, - "messages": 1, - "unreadCount": 2, - "unread": 1, - "padString": 3, - "theString": 4, - "fieldLength": 5, - "integer": 3, - "stringLength": 4, - "length": 1, - "paddedString": 5, - "character": 2, - "less": 1, - "equal": 3, - "paddingLength": 2, - "times": 1, - "space": 1, - "lowFontSize": 9, - "highFontSize": 6, - "messageText": 4, - "userInput": 4, - "display": 4, - "dialog": 4, - "default": 4, - "answer": 3, - "buttons": 3, - "button": 4, - "returned": 5, - "minimumFontSize": 4, - "newFontSize": 6, - "result": 2, - "theText": 3, - "exit": 1, - "fontList": 2, - "activate": 3, - "crazyTextMessage": 2, - "eachCharacter": 4, - "characters": 1, - "some": 1, - "random": 4, - "color": 1, - "current": 3, - "pane": 4, - "UI": 1, - "elements": 1, - "enabled": 2, - "tab": 1, - "group": 1, - "click": 1, - "radio": 1, - "get": 1, - "value": 1, - "field": 1, - "isVoiceOverRunning": 3, - "isRunning": 3, - "contains": 1, - "isVoiceOverRunningWithAppleScript": 3, - "isRunningWithAppleScript": 3, - "VoiceOver": 1, - "x": 1, - "vo": 1, - "cursor": 1, - "currentDate": 3, + "frag.appendChild": 1, + "TypeError": 2, + "exports.tokenizer": 1, + "ut=": 6, + "slow": 1, + "d.attr": 1, + "Save": 2, + "All": 1, + "cache": 45, + "i*.053": 1, + "If": 21, + "d.parseFromString": 1, + "dt=": 2, + "wi.height": 1, + "a.splice": 1, + "/opacity": 1, + "hot": 3, + "element.removeAttribute": 2, + "punc": 27, + "u.fillStyle": 2, + "e.handleObj.data": 1, + ".nodeValue": 1, + "a.prototype": 1, + "Qa": 1, + "e.fn": 2, + "self.onSocket": 3, + "u.lcdTitleStrings": 2, + "hi.play": 1, + "this.name": 7, + ".childNodes": 2, + "s.removeEventListener": 1, + "wr": 18, + "Feb": 1, + "xhr.setRequestHeader": 1, + "more": 6, + "open": 2, + "whitespace": 7, + "widget": 1, + "c.wrapAll": 1, + "OutgoingMessage.prototype._send": 1, + "vf": 5, + "b.style": 1, + "dealing": 2, + ".append": 6, + "cp": 1, + "k": 302, + "shived": 5, + "errorPosition.line": 1, + "loc.host": 2, + "wrapError": 1, + "__sizzle__": 1, + "sizcache=": 4, + "get/set": 2, + "f.fx.speeds": 1, + "bd": 1, + "len": 11, + "yi.drawImage": 2, + "ft/2": 2, + "jQuery.isReady": 6, + "checkbox": 14, + "api": 1, + "socket.end": 2, + "allowHalfOpen": 1, + "this.client": 1, + "90": 3, + "_id": 1, + "isRejected": 2, + "c.charAt": 1, + "a.mozRequestAnimationFrame": 1, + "inputElem.setAttribute": 1, + "this.now": 3, + "noCloneEvent": 3, + "h.split": 2, + "l.split": 1, + "Callbacks": 1, + "g.disabled": 1, + "deep": 12, + "e.uaMatch": 1, + ".sort": 9, + "paddingMarginBorderVisibility": 3, + "d.timeout": 1, + "res._emitEnd": 1, + "": 1, + "Opera": 2, + "this.clone": 1, + "handler": 14, + "TEXT.replace": 1, + "it.labelColor.getRgbaColor": 4, + "n.canvas.width": 3, + "pf": 4, + "f.fx.stop": 1, + "1e8": 1, + "bW.href": 2, + "d.statusCode": 1, + "c.prototype": 1, + "fallback": 4, + "Number.prototype.toJSON": 1, + "ii.getContext": 5, + "i*kt": 1, + "correctly": 1, + "c.trim": 3, + "481308": 4, + "31": 26, + "sans": 12, + "pi.width": 1, + "steelseries.TrendState.DOWN": 2, + "li.getContext": 6, + "*r": 4, + ".8125*t": 2, + "u2060": 1, + "O": 6, + "feature": 12, + "bH": 2, + "are": 18, + ".type.toLowerCase": 1, + "message": 5, + "ht/": 2, + "a.setAttribute": 7, + "wrap": 2, + "dateExpression": 1, + "this.message": 3, + "289719": 1, + "gt.height/2": 2, + "at.drawImage": 1, + "decimals": 1, + "Backbone.Router": 1, + "br=": 1, + "v.canvas.width": 4, + "ut.save": 1, + ".display": 1, + "skip_whitespace": 1, + "mouseenter": 9, + "this._headers.length": 1, + "docElement.className.replace": 1, + "expected.length": 4, + "_default": 5, + "e.val": 1, + "iterate": 1, + "u/22": 2, + "d.prevObject": 1, + "e.nodeName.toLowerCase": 1, + "div.firstChild.nodeType": 1, + "delegate": 1, + "error": 20, + "socketOnEnd": 1, + "setHost": 2, + "stream.Stream.call": 2, + "037383": 1, + "lt=": 4, + "ut.drawImage": 2, + "parent.firstChild": 1, + "f/2": 13, + "charCode": 7, + "supports": 2, + "parse_multiLineComment": 2, + "f*.3": 4, + "this.bind": 2, + "n.canvas.height/2": 4, + "argument": 2, + ".offsetHeight": 4, + "<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\\w:]+)[^>": 1, + "j.checkClone": 1, + "i*.571428": 2, + "this.setGradient": 2, + "et": 45, + "innerHTML": 1, + "parse_class": 1, + "095": 1, + "f*.12864": 2, + "3": 13, + "OutgoingMessage.prototype.setHeader": 1, + ".fillText": 1, + "k*.831775": 1, + "colspan": 2, + "ServerResponse.prototype.statusCode": 1, + "implemented": 1, + "URLs": 1, + "view": 4, + "function": 1210, + "submitBubbles": 3, + "element": 19, + "exports.OPERATORS": 1, + "hack": 2, + "|": 206, + "this.toArray": 3, + "_hasOwnProperty": 2, + "u.addColorStop": 14, + "ki.setAttribute": 2, + "ONLY.": 2, + "l.order.splice": 1, + "operations": 1, + "bu": 11, + "&&": 1017, + "foregroundVisible": 4, + "u*.856796": 1, + "ri.width": 3, + "f*.075": 1, + "ai": 21, + "/red/.test": 1, + "f.cssHooks.opacity": 1, + "inputElemType": 5, + "h3": 3, + "host": 29, + "case": 136, + "a.location": 1, + "steelseries.BackgroundColor.STAINLESS": 2, + ".*version": 4, + "a.dataType": 1, + "jQuery.browser": 4, + "CSS1Compat": 1, + "n.fillText": 54, + "f*.028037": 6, + "_fired": 5, + "b.jsonp": 3, + "Math.PI": 13, + "reject": 4, + "self.readable": 1, + "i*.851941": 1, + ".0415*t": 2, + "e*.060747": 2, + "f/ht": 1, + "a.lastChild.className": 1, + "k.find": 6, + "c.xhr": 1, + "": 5, + "a.eval.call": 1, + "substr": 2, + "n.rect": 4, + "i.scrollTop": 1, + "a.elem.style": 3, + "d.toLowerCase": 1, + "ba.apply": 1, + "sizset=": 2, + "h.parentNode": 3, + "headers.length": 2, + "options.shivCSS": 1, + "pred": 2, + "f._Deferred": 2, + "href": 9, + "elem.nodeName": 2, + "cancelable": 4, + "c.fn.init": 1, + "GC": 2, + "inside": 3, + "that": 33, + ".ajax": 1, + "lastModified": 3, + "skipBody": 3, + "cleanupExpected": 2, + "s*.29": 1, + "25": 9, + "Strange": 1, + "b.name": 2, + "map": 7, + "rvalidbraces": 2, + "shadowBlur=": 1, + "Make": 17, + "ce": 6, + "j.substr": 1, + "defined": 3, + "y.resolveWith": 1, + "response.": 1, + "f*.05": 2, + "rt.getContext": 2, + "i.ledVisible": 10, + "h.get": 1, + "bY": 1, + "setup": 5, + "isEvents": 1, + "console.log": 3, + "this.cid": 3, + "classes.join": 1, + "dt.stop": 2, + "r*": 2, + ".unbind": 4, + "radio": 17, + "model.previous": 1, + "Modernizr.hasEvent": 1, + "hi.width": 3, + "u.textAlign": 2, + "this.handlers": 2, + "c.apply": 2, + "f.event.remove": 5, + "attr.length": 2, + "Browsers": 1, + "f.noData": 2, "date": 1, - "amPM": 4, - "currentHour": 9, - "minutes": 2, - "<": 2, - "below": 1, - "sound": 1, - "nice": 1, - "currentMinutes": 4, - "ensure": 1, - "nn": 2, - "gets": 1, - "AM": 1, - "readjust": 1, - "hour": 1, - "time": 1, - "currentTime": 3, - "day": 1, - "output": 1, - "say": 1 - }, - "Arduino": { - "void": 2, - "setup": 1, - "(": 4, - ")": 4, - "{": 2, - "Serial.begin": 1, - ";": 2, - "}": 2, - "loop": 1, - "Serial.print": 1 - }, - "AsciiDoc": { - "Gregory": 2, - "Rom": 2, - "has": 2, - "written": 2, - "an": 2, - "AsciiDoc": 3, - "plugin": 2, - "for": 2, - "the": 2, - "Redmine": 2, - "project": 2, - "management": 2, - "application.": 2, - "https": 1, - "//github.com/foo": 1, - "-": 4, - "users/foo": 1, - "vicmd": 1, - "gif": 1, - "tag": 1, - "rom": 2, - "[": 2, - "]": 2, - "end": 1, - "berschrift": 1, - "*": 4, - "Codierungen": 1, - "sind": 1, - "verr": 1, - "ckt": 1, - "auf": 1, - "lteren": 1, - "Versionen": 1, - "von": 1, - "Ruby": 1, - "Home": 1, - "Page": 1, - "Example": 1, - "Articles": 1, - "Item": 6, - "Document": 1, - "Title": 1, - "Doc": 1, - "Writer": 1, - "": 1, - "idprefix": 1, - "id_": 1, - "Preamble": 1, - "paragraph.": 4, - "NOTE": 1, - "This": 1, - "is": 1, - "test": 1, - "only": 1, - "a": 1, - "test.": 1, - "Section": 3, - "A": 2, - "*Section": 3, - "A*": 2, - "Subsection": 1, - "B": 2, - "B*": 1, - ".Section": 1, - "list": 1 - }, - "AutoHotkey": { - "MsgBox": 1, - "Hello": 1, - "World": 1 - }, - "Awk": { - "SHEBANG#!awk": 1, - "BEGIN": 1, - "{": 17, - "n": 13, - ";": 55, - "printf": 1, - "network_max_bandwidth_in_byte": 3, - "network_max_packet_per_second": 3, - "last3": 3, - "last4": 3, - "last5": 3, - "last6": 3, - "}": 17, - "if": 14, - "(": 14, - "/Average/": 1, - ")": 14, - "#": 48, - "Skip": 1, - "the": 12, - "Average": 1, - "values": 1, - "next": 1, - "/all/": 1, - "This": 8, - "is": 7, - "cpu": 1, - "info": 7, - "print": 35, - "FILENAME": 35, - "-": 2, - "/eth0/": 1, - "eth0": 1, - "network": 1, - "Total": 9, - "number": 9, - "of": 22, - "packets": 4, - "received": 4, - "per": 14, - "second.": 8, - "else": 4, - "transmitted": 4, - "bytes": 4, - "/proc": 1, - "|": 4, - "cswch": 1, - "tps": 1, - "kbmemfree": 1, - "totsck/": 1, - "/": 2, - "[": 1, - "]": 1, - "proc/s": 1, - "context": 1, - "switches": 1, - "second": 6, - "disk": 1, - "total": 1, - "transfers": 1, - "read": 1, - "requests": 2, - "write": 1, - "block": 2, - "reads": 1, - "writes": 1, - "mem": 1, - "Amount": 7, - "free": 2, - "memory": 6, - "available": 1, - "in": 11, - "kilobytes.": 7, - "used": 8, - "does": 1, - "not": 1, - "take": 1, - "into": 1, - "account": 1, - "by": 4, - "kernel": 3, - "itself.": 1, - "Percentage": 2, - "memory.": 1, - "X": 1, - "shared": 1, - "system": 1, - "Always": 1, - "zero": 1, - "with": 1, - "kernels.": 1, - "as": 1, - "buffers": 1, - "to": 1, - "cache": 1, - "data": 1, - "swap": 3, - "space": 2, - "space.": 1, - "socket": 1, - "sockets.": 1, - "Number": 4, - "TCP": 1, - "sockets": 3, + "part.data": 1, + "u.test": 1, + "_hasOwnProperty.call": 2, + "ii.push": 1, + "parent": 15, + "a.charAt": 2, + "this.connection.writable": 3, + ".34*f": 2, + "t.height*.9": 6, + ".6*s": 1, + "n.documentElement": 1, + "h.checked": 2, + "p.innerHTML": 1, + "ot.height": 1, + "digitalFont": 4, + "i.medium.getHexColor": 1, + "this.start": 2, + "window.frameElement": 2, + "freeParser": 9, + ".46": 3, + "unwrap": 1, + "a.test": 2, + "loc.hash.replace": 1, + "#x": 1, + ".EventEmitter": 1, + "i.useSectionColors": 4, + "deferred.cancel": 2, + "ending": 2, + "this.getOdoValue": 1, + "e.duration": 3, + "c.replaceWith": 1, + "pvt": 8, + "e.push": 3, + "c.length": 8, + "hasOwn": 2, + "D": 9, + "dataTypes=": 1, + "u0604": 1, + "leadingWhitespace": 3, + "shivDocument": 3, + "k.symbolColor.getRgbaColor": 1, + "b=": 25, + "ondrain": 3, + "hi.setAttribute": 2, + "ii.length": 2, + "this.delegateEvents": 1, + "lt": 55, + "bindReady": 5, + "ai.width": 1, + "this.setUnitString": 4, + "nu.drawImage": 3, + "hasContent=": 1, + "methods": 8, + "file": 5, + "occurred.": 2, + "jQuery.type": 4, + "k.replace": 2, + "_.isString": 1, + "color": 4, + "node.id": 1, + "836448": 5, + "textBaseline=": 4, + "div.setAttribute": 1, + "to": 92, + "bytesParsed": 4, + "365": 2, + "cells": 3, + "selector": 40, + "bc.test": 2, + "conditional": 1, + "expando": 14, + "information": 5, + "parsers.alloc": 1, + "parser.incoming._pendings.length": 2, + "l/Math.PI*180": 4, + "jQuery.data": 15, + "async": 5, + "x.version": 1, + "m.assignSocket": 1, + "self.on": 1, + "parser._url": 4, + "Inspect": 1, + "n.attr": 1, + "this.method": 2, + "socket": 26, + "out": 1, + "s.canvas.width": 4, + "u.exec": 1, + "protoProps.hasOwnProperty": 1, + "va.concat.apply": 1, + "f.inArray": 4, + "prevValue": 3, + "container.style.cssText": 1, + "navigator.userAgent": 3, + "oldIE": 3, + "testnames": 3, + "fu": 13, + "a.firstChild.nodeType": 2, + "f.expr": 4, + "b.apply": 2, + "g.charAt": 1, + "this.one": 1, + "st*10": 2, + "s*.006": 1, + "ei": 26, + "found": 10, + "param": 3, + "contentLengthExpression.test": 1, + "i.pointerColor": 4, + "uses": 3, + "(": 8513, + "this._routeToRegExp": 1, + "this.path": 1, + "S.tokpos": 3, + "ri.height": 3, + "firstParam": 6, + "128": 2, + "255": 3, + "model": 14, + "entries": 2, + "parentsUntil": 1, + "k.matches": 1, + "classes": 1, + "fi.width": 2, + "cv": 2, + "q": 34, + "f.globalEval": 2, + "u205F": 1, + "Math.PI*.5": 2, + "v.fail": 1, + "opt.disabled": 1, + "bj": 3, + "parser.incoming._addHeaderLine": 2, + "this.SyntaxError": 2, + "f.fn.load": 1, + "let": 1, + "b.nodeName": 2, + "DocumentTouch": 1, + "i.orientation": 2, + "loc.hash": 1, + "s.readyState": 2, + "lineHeight": 1, + "this.writeHead.apply": 1, + "this.expected": 1, + "u.frameVisible": 4, + "/loaded": 1, + "A.JSON": 1, + "window.onload": 4, + "socketErrorListener": 2, + "ci/": 2, + "show=": 1, + ".appendTo": 2, + "ct*2.5": 1, + "": 5, + "b.each": 1, + "a.contents": 1, + "ajaxTransport": 1, + "explicit": 1, + "noData": 3, + "token": 5, + "bt.labelColor.setAlpha": 1, + "a.offsetTop": 2, + "bt.test": 1, + "Label": 1, + "serif": 13, + "c.liveFired": 1, + "b.translate": 2, + "camelCase": 3, + "grep": 6, + "a.liveFired": 4, + "self._storeHeader": 2, + "t.start": 1, + "yt": 32, + "deferred.done": 2, + "*/": 2, + "fieldset": 1, + "statement": 1, + "rotate": 31, + "n/Math.pow": 1, + ".toFixed": 3, + "scroll": 6, + "h.childNodes.length": 1, + "a.apply": 2, + "f.support.leadingWhitespace": 2, + "socketOnData": 1, + "self.sockets": 3, + "sourceIndex": 1, + "_.each": 1, + "Modernizr.input": 1, + "characters": 6, + "U": 1, + "beforedeactivate": 1, + "elems.length": 1, + "htmlFor": 2, + "reSkip": 1, + "Snake.__super__.constructor.apply": 2, + "bug": 3, + "d.onreadystatechange": 2, + "none": 4, + "bN": 2, + "this._buffer": 2, + "eventName": 21, + "W/": 2, + "height": 25, + "string.length": 1, + "t.stop": 1, + "sliceDeferred": 1, + "j.test": 3, + "has_x": 5, + ".color": 13, + "this.animate": 2, + "events": 18, + "img": 1, + "st": 59, + "ecma": 1, + "p*st": 1, + "u070f": 1, + "isImmediatePropagationStopped": 2, + ".1025*t": 8, + "i.unitString": 10, + "c.borderLeftWidth": 2, + "g.nodeType": 6, + "p.length": 10, + "Please": 1, + "part": 8, + "": 1, + "obj": 40, + "checkClone": 1, + "A.addEventListener": 1, + "||": 648, + "socket._httpMessage._last": 1, + "attached": 1, + "stack.length": 1, + "f.events": 1, + "this.filter": 2, + "next": 9, + "select": 20, + "f=": 13, + "name.split": 1, + "backdrop.call": 1, + "EventEmitter": 3, + "bu.test": 1, + "d.readOnly": 1, + "getScript": 1, + "ck.frameBorder": 1, + "clientY": 5, + "handleObj=": 1, + "ut/2": 4, + "all": 16, + "bg.caption": 1, + ".replaceWith": 1, + "jQuerySub.fn.init.prototype": 1, + "exports.Agent": 1, + "y*.093457": 2, + "yi.getContext": 2, + "serialized": 3, + "a.offsetWidth": 6, + "f.exec": 2, + "transition": 1, + "Math.sqrt": 2, + "specific": 2, + "layerX": 3, + "t.beginPath": 4, + "n.restore": 35, + "cssText": 4, + "decimalForeColor": 1, + "sam": 4, + "a.style.position": 1, + "undelegate": 1, + "f.support.cssFloat": 1, + "httpSocketSetup": 2, + "globalAgent": 3, + "parserOnBody": 2, + "<\",>": 1, + "kt/at*l": 1, + "li": 19, + "extra": 1, + "b.elem": 1, + "sizzle": 1, + "print": 2, + "chunkExpression.test": 1, + ".7725*t": 6, + "u.save": 7, + "i.pointerType": 4, + "rdigit": 1, + "b.getElementsByTagName": 1, + "window.history.replaceState": 1, + "seed": 1, + "d.parentNode.removeChild": 1, + "td": 3, + "this.iframe": 4, + "k.filter": 5, + "b*.093457": 2, + "steelseries.TrendState.STEADY": 2, + "a.offsetParent": 1, + "button": 24, + "exceptions": 2, + "parser.incoming.httpVersion": 1, + "S.regex_allowed": 1, + "nr.drawImage": 2, + "i.toPrecision": 1, + "rmsie": 2, + "tbody": 7, + "optgroup": 5, + "separated": 1, + "d.style.position": 1, + "Math.random": 2, + "cased": 1, + "getAttribute": 3, + "e*.12864": 3, + "li.height": 3, + "b.left": 2, + "aren": 5, + "//javascript.nwbox.com/IEContentLoaded/": 2, + "this.setThresholdVisible": 4, + "": 1, + "yi.height": 1, + "failCallbacks": 2, + "c.props": 2, + "Buffer.isBuffer": 2, + "element.setAttribute": 3, + "parse_eol": 4, + "n.shift": 1, + "isPropagationStopped": 1, + "v.success": 1, + "about": 1, + "bezierCurveTo": 6, + "getElementById": 4, + "kt.rotate": 1, + "*Math.PI": 10, + "attrMap": 2, + "": 1, + "splatParam": 2, + "c.attrFn": 1, + "is_unicode_connector_punctuation": 2, + ".0013*t": 12, + "hu.repaint": 1, + "gr.drawImage": 3, + "ne": 2, + "443": 2, + "bS.exec": 1, + "window.HTMLDataListElement": 1, + "h*.475": 1, + "this.setTrend": 2, + "tick": 3, + "isFunction.": 2, + "delete": 39, + "e.style.cssFloat": 1, + "Client": 6, + "url.parse": 1, + "this.readable": 1, + "exports.parsers": 1, + "sessionStorage.removeItem": 1, + ".7975*t": 2, + "steelseries.Orientation.NORTH": 2, + "tom": 4, + "i.pageXOffset": 1, + "Backbone.Router.prototype": 1, + "h.onreadystatechange": 2, + ".contentWindow": 1, + "WebKit": 9, + "a.nextSibling": 1, + "this.parent": 2, + "docElement.className": 2, + "strokeStyle=": 8, + "f.offset.doesNotAddBorder": 1, + "D/g": 2, + "ck": 5, + "f": 666, + "this._byId": 2, + "exports.curry": 1, + ".67*e": 1, + "e*.055": 2, + "ot.addColorStop": 2, + "h.promise": 1, + "b_": 4, + ".getElementsByTagName": 2, + "type": 49, + "exports._connectionListener": 1, + "l.type": 26, + "ii.height": 2, + "ti.stop": 1, + "exist": 2, + "result": 9, + "decodeURIComponent": 2, + "cssHooks": 1, + "vi.getColorAt": 1, + "this.setValueAnimated": 7, + "f.support.reliableMarginRight": 1, + "f.nth": 2, + "left": 14, + "Agent": 5, + "exports.IncomingMessage": 1, + "u*.65": 2, + ".038": 1, + "dt.type": 4, + "i.valueGradient": 4, + "e.events": 2, + "Event": 3, + "this.url": 1, + "k*.4": 1, + "le.type": 1, + "ir": 23, + "Full": 1, + ".hide": 2, + "c.username": 2, + "a.currentTarget": 4, + "this._paused": 3, + "const": 2, + "read_escaped_char": 1, + "f*.19857": 1, + "hr.getContext": 1, + "hf": 4, + "b.scrollTop": 1, + "objects": 7, + "s.getElementsByTagName": 2, + "child.extend": 1, + "mStyle.backgroundImage": 1, + "u.titleString": 2, + "pi.height": 1, + "String.prototype.trim": 3, + "see": 6, + ".test": 1, + "u.section": 2, + ".0113*t": 10, + "rt.width": 1, + "decrement": 2, + "pa": 1, + "IE": 28, + "forgettable": 1, + "except": 1, + "reSkip.test": 1, + "350467": 5, + "at/": 1, + "h*.365": 2, + "returned.promise": 2, + "self.socketPath": 4, + "eof": 6, + "yi": 17, + "/alpha": 1, + "e.each": 2, + "d.readyState": 2, + "finding": 2, + "o.firstChild.childNodes": 1, + "48": 1, + "i*.435714": 4, + "this.getUTCMonth": 1, + "m=": 2, + "142857": 2, + "i.height": 6, + "iterating": 1, + "this.disabled": 1, + "square": 10, + "andSelf": 1, + "name=": 2, + "f.attrHooks": 5, + "vt=": 2, + "vi.drawImage": 2, + "Test": 3, + "J": 5, + "ns.svg": 4, + "bC": 2, + "this.iframe.location.hash": 3, + "a.addEventListener": 4, + "e*.481308": 2, + "et=": 6, + "si.height": 2, + "steelseries.ColorDef.RED.medium.getRgbaColor": 6, + "filter": 10, + "div.style.marginTop": 1, + "target": 44, + "this._decoder": 2, + "ut.restore": 1, + "t.width*.9": 4, + "": 1, + "f.acceptData": 4, + "Prioritize": 1, + "req": 32, + "ut.height": 1, + "tu": 13, + "selects": 1, + "rboolean.test": 4, + "exports.slice": 1, + "si": 23, + "DOMParser": 1, + ".concat": 3, + "a.String": 1, + "e.insertBefore": 1, + "parserOnIncomingClient": 1, + "HTTPParser": 2, + "binary": 1, + "setLcdTitleStrings=": 1, + "e.textAlign": 1, + ".8": 1, + "Va": 1, + "b.appendChild": 1, + "f.event.special.change": 1, + "280373": 3, + "f.filter": 2, + "C.apply": 1, + "f2": 1, + "any": 12, + "f.unique": 4, + "l.order.length": 1, + "input.charCodeAt": 18, + "64": 1, + "l/ot": 1, + "u.fillText": 2, + "jQuery.removeData": 2, + "d.firstChild": 2, + "curry": 1, + "y*.012135": 2, + "srcElement": 5, + "textAlign=": 7, + "u*.22": 3, + "n/lt*": 1, + "a.target": 5, + "quoteForRegexpClass": 1, + "_removeReference": 1, + "debug": 15, + "shiv": 1, + "solve": 1, + "f.offset.initialize": 3, + "split": 4, + "k.set": 1, + ".": 91, + "str2": 4, + "WARNING": 1, + "m.level": 1, + "va.slice": 1, + "submit=": 1, + "getJSON": 1, + "flags.once": 1, + "f.event.handle.call": 1, + "f.dir": 6, + "attrHooks": 3, + "array_to_hash": 11, + "e*.1": 1, + "window.navigator": 2, + "b.append": 1, + "a.style.cssText.toLowerCase": 1, + "dir": 1, + "body.removeChild": 1, + "this.setHeader": 2, + "u.pointSymbols": 4, + "vr": 20, + "startTime=": 1, + "w": 110, + "04": 2, + "f*.093457": 10, + "uf": 5, + "RegExp": 12, + "a.superclass": 1, + "bp": 1, + "req.upgradeOrConnect": 1, + "args.concat": 2, + "setValueLatest=": 1, + "this.setPointerType": 3, + "undefined": 328, + "dataTypes": 4, + "j.radioValue": 1, + "s*.5": 1, + "ti.playing": 1, + "Matches": 1, + "80": 2, + "separate": 1, + "c.noData": 2, + "ufeff": 1, + ".each": 3, + "o.split": 1, + "onFree": 3, + "u*n": 2, + "f.selector": 2, + "a.getElementsByClassName": 3, + "b.text": 3, + ".createSVGRect": 1, + "setArea=": 1, + "si.width": 2, + "keypress": 4, + "outgoing.push": 1, + "result5": 4, + "parse_simpleSingleQuotedCharacter": 2, + "pr": 16, + "overzealous": 4, + "document.detachEvent": 2, + "c.documentElement.doScroll": 2, + "this.maxHeadersCount": 2, + "parser.execute": 2, + ".ok": 1, + "f.removeData": 4, + "i.nodeType": 1, + "of": 28, + "a.isPropagationStopped": 1, + "outgoing.shift": 1, + "y.drawImage": 6, + "b.selected": 1, + "fontWeight": 1, + "A.call": 1, + "self._deferToConnect": 1, + "/Connection/i": 1, + "errorPosition.column": 1, + "ki.play": 1, + "req.socket": 1, + "fillText": 23, + "h*.035": 1, + "n.pointer": 10, + ".children": 1, + "this.navigate": 2, + "b.offsetParent": 2, + "this.attributes": 1, + "[": 1459, + "self._last": 4, + "docCreateFragment": 2, + "Error.prototype": 1, + "startRule": 1, + "t.closePath": 4, + "bT": 2, + "keys": 11, + "t=": 19, + "multiline": 1, + "have": 6, + "Content": 1, + "documentElement": 2, + "a.webkitRequestAnimationFrame": 1, + "ti/2": 1, + "t*.435714": 4, + ".455*h": 1, + "u.shadowOffsetY": 2, + "__hasProp": 2, + "Backbone.History.prototype": 1, + "needed": 2, + "f.unshift": 2, + "js": 1, + "ft.getContext": 2, + "u.customLayer": 4, + "this.setLedColor": 5, + "Preliminary": 1, + "converted": 2, + "subtracts": 1, + "S.tokcol": 3, + "t.width": 2, + "d.replace": 1, + "beforeSend": 2, + "tag": 2, + "Encoding/i": 1, + "start_token": 1, + "yi.play": 1, + "steelseries.ColorDef.RED": 7, + "step": 7, + "nodeType=": 6, + "l.appendChild": 1, + "Users": 1, + "Xa.exec": 1, + "messageHeader": 7, + "tr.width": 1, + "i.frameDesign": 10, + "Cancel": 1, + "this.make": 1, + "q.test": 1, + "#*": 1, + "Construct": 1, + "this.output.shift": 2, + "process.env.NODE_DEBUG": 2, + "uFEFF/": 1, + "st*di": 1, + "trimRight": 4, + "e*.121428": 2, + "e*.007": 5, + "this.maxSockets": 1, + "59": 3, + ".start": 12, + "n.textBaseline": 10, + "this.nodeName": 4, + "swing": 2, + "g.getAttribute": 1, + "field.toLowerCase": 1, + "f*.38": 7, + "window.attachEvent": 2, + "parent.apply": 1, + "c.isPlainObject": 3, + "e.originalEvent": 1, + "UnicodeEscapeSequence": 1, + ".686274": 1, + "i.maxValue": 10, + "start=": 1, + "readyWait": 6, + "elem=": 4, + "#000": 2, + "frag.createDocumentFragment": 1, + "this.setLcdColor": 5, + "dt": 30, + "browsers": 2, + "colSpan": 2, + "f.pixelLeft": 1, + "u*i*": 2, + "pt.type": 6, + "e.css": 1, + "items": 2, + "R.call": 2, + "comment2": 1, + "": 1, + "checkSet": 1, + "after": 7, + "jQuery.cache": 3, + ".elem": 1, + "exports.array_to_hash": 1, + "kt.medium.getRgbaColor": 1, + "outside": 2, + "a.now": 4, + "margin": 8, + "Function": 3, + "i.style.width": 1, + "determining": 3, + "c.set": 1, + "cl.write": 1, + "n.order": 1, + "a.nodeName": 12, + "360": 15, + "au": 10, + "complete/.test": 1, + "slideUp": 1, + "timeout": 2, + "newDefer": 3, + "a.innerHTML": 7, + "this._ensureElement": 1, + "msie": 4, + "/chunk/i": 1, + "u2029": 2, + "div.style.display": 2, + "a.handleObj": 2, + "cur": 6, + "e.selector": 1, + "acceptData": 3, + "err.message": 1, + "this.writeHead": 1, + "additional": 1, + "75": 3, + "#x27": 1, + "elem.nodeType": 8, + "attrFn": 2, + "

": 2, + "b.firstChild": 5, + "a.setInterval": 2, + "n.moveTo": 37, + "scrollTop": 2, + ".0516*t": 7, + "callback.apply": 1, + "url=": 1, + "a.preventDefault": 3, + "self.fireWith": 1, + "you": 1, + "info.statusCode": 1, + "window.openDatabase": 1, + "kt.height": 1, + "window.": 6, + "normalizes": 1, + "this.extend": 1, + "#": 13, + "even": 3, + "fillStyle=": 13, + "lookups": 2, + "k.style.paddingLeft": 1, + "widows": 1, + "fragment.substr": 1, + "OPERATORS": 2, + "rgb": 6, + "i.set": 1, + "prevAll": 2, + "str": 4, + ".1075*t": 2, + "i*.7475": 1, + "st.getContext": 2, + "t.dark.getRgbaColor": 2, + "f.easing": 1, + "cos": 1, + "parseJSON": 4, + "n.match.ID.test": 2, + "cq": 3, + "l": 312, + "Ban": 1, + "a.getAttribute": 11, + "closeExpression.test": 1, + "stream": 1, + "r.test": 1, + "constructor": 8, + "be": 12, + "f.makeArray": 5, + "options.localAddress": 3, + "s.addColorStop": 4, + "tu.drawImage": 1, + "ends": 1, + "fcamelCase": 1, + "little": 4, + "toggle": 10, + "F.prototype": 1, + "expected.sort": 1, + "parse_bracketDelimitedCharacter": 2, + "this.setMinMeasuredValueVisible": 4, + "removeAttr": 5, + "Gets": 2, + "d.length": 8, + "standalone": 2, + "this.headers": 2, + ".76*t": 4, + "or.drawImage": 1, + "t.getBlue": 4, + "this.models": 1, + "wt.valueForeColor": 1, + "/f": 3, + "b.parentNode.removeChild": 2, + "i.each": 1, + "script": 7, + "": 1, + "e/10": 3, + "Recurse": 2, + "protoProps": 6, + "isDefaultPrevented=": 2, + "Flag": 2, + "sessionStorage.setItem": 1, + "u/vt": 1, + "d/ot": 1, + "b.getElementsByClassName": 2, + "u202f": 1, + "lowercase": 1, + "option.getAttribute": 2, + "n.bargraphled": 4, + "gradientStartColor": 1, + "r.getRgbaColor": 8, + "frag.indexOf": 1, + "camelizing": 1, + "eol": 2, + "internal": 8, + "e.ready": 6, + "reliable": 1, + "**": 1, + "s*.35": 1, + "results": 4, + "_Deferred": 4, + "_routeToRegExp": 1, + "c.globalEval": 1, + "a.getAttributeNode": 7, + "this.getHeader": 2, + "s*.023364": 2, + "32": 1, + "A.frameElement": 1, + "sub": 4, + "params.type": 1, + "navigator.userAgent.toLowerCase": 1, + "connectionListener": 3, + "oi.play": 1, + "vertical": 1, + ".close": 1, + "repeatable": 1, + "P": 4, + "recognize": 1, + "prefix": 6, + "h.offsetTop": 1, + "c.error": 2, + "simple": 3, + "bI": 1, + "Modernizr.prefixed": 1, + "Math.PI*2": 1, + "h/e.duration": 1, + "internally": 5, + "a.nodeName.toUpperCase": 2, + "c.target.ownerDocument": 1, + "a=": 23, + "this.output.unshift": 1, + ".528036*f": 5, + "clip": 1, + "kt": 24, + "cw.test": 1, + "f.error": 4, + "#11217": 1, + "mStyle.cssText": 1, + "setPointerColor=": 1, + ".480099": 1, + "yt.getStart": 2, + ".12*t": 4, + ".length": 24, + "st.height": 1, + "r.getElementById": 7, + "push": 11, + "so": 8, + "355": 1, + "i.height*.9": 6, + "injectElementWithStyles": 9, + "i/255": 1, + "readyList.fireWith": 1, + "f.prop": 2, + "c.split": 2, + "window.postMessage": 1, + "<=\",>": 1, + "n.frame": 22, + "references": 1, + "this.supportsFixedPosition": 1, + "See": 9, + "optSelected": 3, + "window.addEventListener": 2, + ".getRgbaColor": 3, + "insertBefore": 1, + "Catch": 2, + "run": 1, + "No.": 1, + "encodeURIComponent": 2, + ".indexOf": 2, + "d.cloneNode": 1, + "i.resolve": 1, + "self.useChunkedEncodingByDefault": 2, + "7757": 1, + "490654": 3, + "currentPos": 20, + "u.canvas.width*.4865": 2, + "issue": 1, + "support.radioValue": 2, + "model.unbind": 1, + "socket.emit": 1, + "434579": 4, + "lt/ct": 2, + "w*.012135": 2, + "eu": 13, + "route.replace": 1, + "this.mouseenter": 1, + "v/": 1, + "di": 22, + "/gi": 2, + ".val": 5, + "4": 4, + ".0377*t": 2, + "h.abort": 1, + "jQuery.ready": 16, + "p.pop": 4, + "v.get": 1, + "g.domManip": 1, + "instanceof": 19, + "e.getComputedStyle": 1, + "incoming.length": 2, + "JS_Parse_Error.prototype.toString": 1, + "datetime": 1, + "s.body.appendChild": 1, + "A.jQuery": 3, + "a.style.cssFloat": 1, + "info.url": 1, + "yi=": 1, + "e*.850467": 4, + "i.width": 6, + "rBackslash": 1, + "a.event": 1, + "c.ready": 7, + "}": 2712, + "/Expect/i": 1, + "addStyleSheet": 2, + "ul": 1, + "this.setPointSymbols": 1, + "f*.453271": 2, + "bv": 2, + "": 1, + "": 1, + ".getContext": 8, + "stopPropagation": 5, + "exists": 9, + "protoProps.constructor": 1, + "h4": 3, + "steelseries.BackgroundColor.BRUSHED_STAINLESS": 2, + "Sizzle": 1, + "work": 6, + "expr": 2, + "copyIsArray": 2, + "RED": 1, + "h*.41": 1, + "resolve": 7, + "a.detachEvent": 1, + "Will": 2, + "Stack": 1, + "entire": 1, + "passed": 5, + "classes.push": 1, + "cr.drawImage": 3, + "these": 2, + "_.toArray": 1, + "removeProp": 1, + "html5.shivCSS": 1, + "assume": 1, + "Normalize": 1, + "copy": 16, + "Either": 2, + "interval": 3, + "f.guid": 3, + "defaultPrevented": 1, + "expectedHumanized": 5, + "n.lineCap": 5, + "font=": 28, + "fe": 2, + "c.event.add": 1, + "f.ajaxSettings.traditional": 2, + "px": 31, + "ol": 1, + "Horse.__super__.constructor.apply": 2, + "T.ready": 1, + "appendTo": 1, + "attempt": 2, + "which=": 3, + "exports.Server": 1, + "util": 1, + "setPointerColorAverage=": 1, + "toString": 4, + "this.parentNode": 1, + "f.isXMLDoc": 4, + "bound": 8, + "wheelDelta": 3, + "maintains": 1, + "Perini": 2, + "this.sockets": 9, + "lastData": 2, + "ensure": 2, + "from": 7, + "here": 1, + "tickCounter*a": 2, + "font": 1, + "cf": 7, + "a": 1489, + "multiple=": 1, + "catch": 38, + "setFrameDesign=": 1, + "hr.drawImage": 2, + "f*.06": 1, + "g.document.documentElement": 1, + "bZ": 3, + "unique": 2, + "speeds": 4, + "Clear": 1, + "OutgoingMessage.prototype.removeHeader": 1, + "OutgoingMessage.prototype._writeRaw": 1, + "this._decoder.write": 1, + "w.labelColor": 1, + "led": 18, + "u.font": 2, + "steelseries.PointerType.TYPE1": 3, + "Only": 5, + "j.appendChecked": 1, + "nextSibling": 3, + "accepts": 5, + "f.support.parentNode": 1, + "RE_DEC_NUMBER.test": 1, + "promiseMethods.length": 1, + "": 1, + "listen": 1, + ".8425*t": 1, + "i.trendVisible": 4, + "clientTop": 2, + "position": 7, + "d.style.display": 5, + "rt": 45, + "jQuery.each": 2, + "several": 1, + "c.filter": 2, + "atRoot": 3, + "list.push": 1, + "into": 2, + "f.timers": 2, + "fire": 4, + "etag": 3, + "only.": 2, + "cubes": 4, + "caution": 1, + "with_eof_error": 1, + "f*.033": 1, + "e=": 21, + "f.ajaxPrefilter": 2, + "b.parentNode": 4, + "a.firstChild": 6, + "flags.unique": 1, + "chars": 1, + ".47": 3, + "a.isImmediatePropagationStopped": 1, + "based": 1, + "g.getPropertyValue": 1, + "modified": 3, + "setBackgroundColor=": 1, + "n.value": 4, + "extension": 1, + "f.event.triggered": 3, + "u00ad": 1, + "mousedown": 3, + "ServerResponse": 5, + "f*.121428": 2, + "shouldn": 2, + "E": 11, + "f.buildFragment": 2, + "m.test": 1, + "directly": 2, + "IncomingMessage.prototype._emitEnd": 1, + "pi=": 1, + "s.fillStyle": 1, + "inArray": 5, + "n.slice": 1, + "flagsCache": 3, + "defer": 1, + ".delegate": 2, + "c.async": 4, + "this.socket.resume": 1, + "save": 27, + "t*.142857": 8, + "lu": 10, + "document.documentElement": 2, + "/top/.test": 2, + "a.defaultView": 2, + "callback": 23, + "isReady": 5, + "req.method": 5, + "li.width": 3, + "ki": 21, + "via": 2, + "b.outerHTML": 1, + "a.sub": 1, + "e*.556074": 3, + "rt/2": 2, + "s/c": 1, + "get/setAttribute": 1, + "i.scrollLeft": 1, + "load": 5, + "j.nodeName": 1, + "readyList": 6, + "filters": 1, + "ServerResponse.prototype.writeContinue": 1, + ".149019": 1, + ".046728*h": 1, + "f.fn.offset": 2, + "positionTopLeftWidthHeight": 3, + "flags.split": 1, + "f.camelCase": 5, + "cellPadding": 2, + "d.height": 4, + "*ot": 2, + ".3": 8, + "k.left": 1, + "padding": 4, + "b.replace": 3, + "this.options.root.length": 1, + "this.selectedIndex": 1, + "a.style.opacity": 2, + "them": 3, + "gradientFraction1Color": 1, + "i.lcdColor": 8, + "a.document.nodeType": 1, + "jQuery.browser.webkit": 1, + "relative": 4, + "minute": 1, + "options.method": 2, + "document.defaultView": 1, + "f.active": 1, + "Since": 3, + "h.clientTop": 1, + "c.map": 1, + "loc.pathname": 1, + "exports.ServerResponse": 1, + "parser.incoming._emitData": 1, + "steelseries.TrendState.OFF": 4, + "k.position": 4, + "class": 5, + "f.support.appendChecked": 1, + "h.open": 2, + "connectionExpression": 1, + "Prevent": 2, + "c.defaultView": 2, + "OutgoingMessage.prototype.write": 1, + "floor": 13, + "s*.007": 3, + "browserMatch": 3, + "prev": 2, + "<-180&&e>": 2, + "789719": 1, + "st/": 1, + "w.labelColor.getRgbaColor": 2, + "destroy": 1, + ")": 8521, + "this.outputEncodings.push": 2, + "i.knobStyle": 4, + "Array.isArray": 7, + "them.": 1, + "bt/": 1, + "ui.length": 2, + "attrs": 6, + "overflowX": 1, + "bring": 2, + "HEAD": 3, + "partsConverted": 2, + "k*.130841": 1, + "cw": 1, + "r": 261, + "attrName": 4, + "c.on": 2, + "this._header": 10, + "e.fillStyle": 1, + "foregroundType": 4, + "steelseries.GaugeType.TYPE1": 4, + "bk": 5, + "ua": 6, + "IncomingMessage.prototype.setEncoding": 1, + "featureName": 5, + "k*.16": 1, + "complete=": 1, + "this.getUTCSeconds": 1, + "bg.colgroup": 1, + "DTRACE_HTTP_SERVER_REQUEST": 1, + "parser.incoming.url": 1, + "wt=": 3, + "app": 2, + "f.extend": 23, + "<(\\w+)\\s*\\/?>": 4, + "n.order.length": 1, + "parser.onHeaders": 1, + "<2)for(b>": 1, + "a.style.paddingLeft": 1, + "existent": 2, + "at.getContext": 1, + "ft=": 3, + "ui.height": 2, + "callbacks.push": 1, + "sort": 4, + "span": 1, + "fakeBody.appendChild": 1, + "i*.05": 2, + "u*i": 1, + "hr": 17, + "allows": 1, + "input.setAttribute": 5, + "goggles": 1, + "triggerRoute": 4, + "prepend": 1, + "OutgoingMessage.prototype.getHeader": 1, + "seq": 1, + "frameVisible": 4, + "gf": 2, + "keyCode": 6, + "u2000": 1, + "result0": 264, + "k*.61": 1, + "its": 2, + "matchesSelector=": 1, + "e*.73": 3, + "kt.clearRect": 1, + "ties": 1, + "oa": 1, + "parse_classCharacterRange": 3, + "exports.is_alphanumeric_char": 1, + "f.restore": 5, + "this.setMaxMeasuredValueVisible": 4, + "yu": 10, + "e.style.position": 2, + "alive": 1, + "specified": 4, + "use": 10, + "trigger": 4, + "jQuery.fn.init": 2, + "isExplorer.exec": 1, + "readonly": 3, + "38": 5, + "l=": 10, + "/xml/": 1, + "u.degreeScale": 4, + "s.rotate": 3, + "V": 2, + "v.drawImage": 2, + "insert": 1, + "Infinity": 1, + "keypress.specialSubmit": 2, + "bO": 2, + "like": 5, + "c.createDocumentFragment": 1, + "this.outputEncodings.unshift": 1, + "originalEvent=": 1, + ".112149*ut": 1, + "had": 1, + "returnValue=": 2, + "browser": 11, + "createElement": 3, + ".toJSON": 4, + "incoming.shift": 2, + "field": 36, + "omPrefixes.split": 1, + "zero": 2, + "c*u": 1, + "su": 12, + "Math.min": 5, + "elem.removeAttributeNode": 1, + "i.offsetTop": 1, + "attribute": 5, + "P.version": 1, + "ri": 24, + "f.offset.doesAddBorderForTableAndCells": 1, + "document.documentMode": 3, + "f.event.fix": 2, + "this.each": 42, + "c.target": 3, + "e*.462616": 2, + "context": 48, + "this.length": 40, + "Ua": 1, + "wait": 12, + "req.listeners": 1, + "f.event.global": 2, + "e.handleObj": 1, + "undocumented": 1, + "jQuery.support.optDisabled": 2, + "t.fillStyle": 2, + "s*.57": 1, + "*vt": 4, + "props.length": 2, + "this.setGradientActive": 2, + "c.nodeName": 4, + "flags.memory": 1, + "TYPE1": 2, + "rt.height": 1, + "e.animatedProperties": 5, + "uffff": 1, + "cp.slice": 1, + "c.isReady": 4, + "lastEncoding": 2, + "bool.m4a": 1, + "Function.prototype.bind": 2, + "selectedIndex": 1, + "layerY": 3, + "c.browser": 1, + "body.offsetTop": 1, + "context.ownerDocument": 2, + "b.createDocumentFragment": 1, + "a.style.zoom": 1, + "c.exclusive": 2, + "s.length": 2, + ".specialChange": 4, + "marked": 1, + ".splice": 5, + "do": 15, + "c.readyState": 2, + "this.port": 1, + "dr=": 1, + "div.test": 1, + "DOMElement": 2, + "traditional": 1, + "res._last": 1, + "ownerDocument.createDocumentFragment": 2, + "t*.007142": 4, + "p.send": 1, + "e.browser": 1, + ".promise": 5, + "this.selector": 16, + "inherits": 2, + "n.target._pos": 7, + "c.fx": 1, + "a.contentDocument": 1, + "joiner": 2, + "nt=": 5, + "this.setTitleString": 4, + "ur": 20, + "te": 2, + "slideDown": 1, + "jQuery.attrFn": 2, + "this.domManip": 4, + "rea": 1, + "f.param": 2, + "self.maxSockets": 1, + "e.handleObj.origHandler.apply": 1, + "isFinite": 1, + "Sets": 3, + "k.createElement": 1, + "First": 3, + "h/2": 1, + "Math.round": 7, + "window.jQuery": 7, + ".detach": 1, + "e.clearRect": 1, + "extend": 13, + "f.call": 1, + "this.fragment": 13, + "s.canvas.height": 4, + "ownerDocument": 9, + "c.dataTypes.unshift": 1, + "msecs": 4, + "docElement.appendChild": 2, + "471962": 4, + ".19857": 6, + "/href": 1, + "preventDefault": 4, + "h.readyState": 3, + "i.live.slice": 1, + "email": 2, + "this.trigger.apply": 2, + "c.toLowerCase": 4, + "handler.callback": 1, + "need": 10, + "self._flush": 1, + ".897195*ut": 1, + "foreground": 30, + "s*.626168": 1, + "y=": 5, + "u200A": 1, + "sam.move": 2, + "where": 2, + "e.fn.attr.call": 1, "currently": 4, - "use.": 4, - "UDP": 1, - "RAW": 1, - "IP": 1, - "fragments": 1, - "END": 1 + "ready": 31, + "a.done": 1, + "fadeOut": 1, + "token.type": 1, + ".805*t": 2, + "yt.getContext": 5, + "option": 12, + "or": 38, + "target.modal": 1, + "u*.7475": 1, + "n.toFixed": 2, + "nf": 7, + "f.createElement": 1, + "details": 3, + "children": 3, + "document.createDocumentFragment": 3, + "Keep": 2, + "wt.valueBackColor": 1, + "steelseries.LcdColor.STANDARD_GREEN": 4, + "j.toggleClass": 1, + "focus": 7, + ".name": 3, + "util._extend": 1, + "assign": 1, + "k*Math.PI/180": 1, + ".15": 2, + "this.setLcdDecimals": 3, + "this._configure": 1, + "": 3, + "For": 5, + "y.done": 1, + "isReady=": 1, + "prototype=": 2, + "cl": 3, + "g": 441, + "keyup": 3, + "parser._headers": 6, + "window.Worker": 1, + "String.fromCharCode": 4, + "i.gaugeType": 6, + "l.match.PSEUDO": 1, + "altKey": 4, + "i*": 3, + "s=": 12, + "this.eq": 4, + "mStyle.backgroundColor": 3, + "ut.rotate": 1, + "Do": 2, + "div.style.padding": 1, + "opacity": 13, + "Backbone.Collection.extend": 1, + "parser.incoming.method": 1, + "i.toFixed": 2, + ".attributes": 2, + "this.createSocket": 2, + "ti.start": 1, + "vi.getContext": 2, + "model.trigger": 1, + "/a": 1, + "is": 67, + "text": 14, + "normalize": 2, + "Name": 1, + "f.support.focusinBubbles": 1, + "P.browser": 2, + "this.nodeType": 4, + "e.className": 14, + "IncomingMessage.prototype.resume": 1, + "i*.121428": 1, + "f.merge": 2, + "borderTopWidth": 1, + "still": 4, + "corresponding": 2, + "release": 2, + "this.setMinMeasuredValue": 3, + "added": 1, + "params.contentType": 2, + "lr=": 1, + "i.repaint": 1, + "space": 1, + "merge": 2, + "parser.incoming._pendings.push": 2, + "h.medium.getRgbaColor": 6, + "49": 1, + "s/10": 1, + "attrFixes": 1, + "storage": 1, + "m.selector": 1, + "c.detachEvent": 1, + "this.sendDate": 3, + "f*.28": 6, + "a.offsetLeft": 1, + "now": 5, + "password": 5, + "cellspacing": 2, + "offsetSupport": 2, + "e.apply": 1, + "fragment.replace": 1, + "elem.getAttribute": 7, + "Fallback": 2, + "K": 4, + "must": 4, + "window.matchMedia": 1, + "lastExpected": 3, + "easing": 3, + "val": 13, + "But": 1, + "bD": 3, + "click.specialSubmit": 2, + "//don": 1, + "fakeBody": 4, + "textColor": 2, + "inlineBlockNeedsLayout": 3, + "s*.checked.": 1, + "a.keyCode": 2, + "g.get": 1, + "duration": 4, + "array.length": 1, + ".98": 1, + "fill": 10, + "this.checkUrl": 3, + "j.style.cssFloat": 1, + "callbacks": 10, + "exports.ClientRequest": 1, + ".36*f": 6, + "g.scrollTo": 1, + "a.frameElement": 1, + "p.splice": 1, + "keydown": 4, + "res.end": 1, + "released": 2, + ".document": 1, + "scrollTo": 1, + "": 3, + "localStorage.setItem": 1, + "r.live.slice": 1, + "style.cssText": 1, + "f.fx": 2, + "Can": 2, + "_i": 10, + ".69": 1, + "b.triggerHandler": 2, + "65": 2, + ".8525*t": 2, + "pop": 1, + "testPropsAll": 17, + "parse_js_number": 2, + "ri=": 1, + "Math.ceil": 63, + "metadata": 2, + "v.error": 1, + "Verify": 3, + "nodeType": 1, + "hashStrip": 4, + "ClientRequest.prototype.clearTimeout": 1, + "lazy": 1, + "code": 2, + "Is": 2, + "rspace": 1, + "b.contents": 1, + "marginDiv.style.width": 1, + "this.useChunkedEncodingByDefault": 4, + "ai=": 1, + "e.canvas.width": 2, + "t.save": 2, + "gt.width": 2, + "ServerResponse.prototype.detachSocket": 1, + "e*.728155*": 1, + "yt.playing": 1, + "i.area": 4, + "b.events": 4, + "f.support.ajax": 1, + "div.style.zoom": 2, + "Check": 10, + "/": 290, + "IncomingMessage.prototype._emitPending": 1, + "defaultView": 2, + "str3": 2, + "digit": 3, + "h.light.getRgbaColor": 6, + "rmsPrefix": 1, + "socket.once": 1, + "foundHumanized": 3, + "f*.012135": 2, + "i.backgroundColor": 10, + "h.getAllResponseHeaders": 1, + "document.removeEventListener": 2, + "c.password": 1, + "root": 5, + "mouseup": 3, + "g.selected": 1, + "n.canvas.height": 3, + "b.using.call": 1, + "x": 33, + "f.each": 21, + "PUNC_CHARS": 1, + "05": 2, + "lists": 2, + "a.JSON.parse": 2, + "bq": 2, + "engine": 2, + "outgoing.length": 2, + "ownerDocument.getElementsByTagName": 1, + "ae": 2, + "be.test": 1, + "req.res._emitPending": 1, + "omPrefixes": 1, + "meters": 4, + "e.preventDefault": 1, + "i.getRed": 1, + "java": 1, + "Date": 4, + "Don": 1, + "f.attrHooks.style": 1, + "jQuery.isXMLDoc": 2, + "setTimeout": 19, + "nodeHook": 1, + "socket.addListener": 2, + "result.SyntaxError.prototype": 1, + "/r": 1, + "overrideMimeType": 1, + "custom": 5, + "f.fn.extend": 9, + "signal_eof": 4, + "or*.5": 1, + "valueBackColor": 1, + "a.attributes.value": 1, + "fadeTo": 1, + "f.event.customEvent": 1, + "b.data": 5, + "q.expr": 4, + "f.removeEvent": 1, + "i.preType": 2, + "char": 2, + "_ensureElement": 1, + "f.expr.filters.hidden": 2, + "a.DOMParser": 1, + "addColorStop": 25, + "pt.height": 1, + "q.set": 4, + "a.style.width": 1, + "b.top": 2, + "/radio": 1, + "dataAttr": 6, + "jQuery.noData": 2, + "duration=": 2, + ".extend": 1, + "ClientRequest.prototype.setNoDelay": 1, + "this.getMaxValue": 4, + "b.url": 4, + "e.browser.webkit": 1, + "c.body.removeChild": 1, + "_onModelEvent": 1, + "removal": 1, + "escape.call": 1, + "http.createServer": 1, + "net": 1, + "ei.labelColor.setAlpha": 1, + "live": 8, + "parts": 28, + "c.clean": 1, + "chunk.length": 2, + "target.prototype": 1, + "21": 2, + "t.moveTo": 4, + "helper": 1, + "hold": 6, + "dateCache": 5, + "parser.socket.readable": 1, + "ni.height": 2, + "this.setMaxMeasuredValue": 3, + "ca": 6, + "setInterval": 6, + "arguments": 83, + "bg.tfoot": 1, + "class=": 5, + "<0||e==null){e=a.style[b];return>": 1, + "bU": 4, + "a.indexOf": 2, + "this._implicitHeader": 2, + "S.comments_before": 2, + "ei/": 1, + "newDefer.resolve": 1, + "Math.max": 10, + "a.cacheable": 1, + "viewOptions": 2, + "it.height": 1, + "Object.prototype.hasOwnProperty": 6, + "d.nodeName": 4, + "jQuery.readyWait": 6, + "options.agent": 3, + "Agent.prototype.createSocket": 1, + "StringDecoder": 2, + "lineTo": 22, + "Syntax": 3, + "c.body": 4, + "assignment": 1, + "toFixed": 3, + "timers": 3, + "data": 145, + "situation": 2, + "a.converters": 3, + "matchFailed": 40, + "tr.drawImage": 2, + "jQuery.parseJSON": 2, + "uaMatch": 3, + "b.ownerDocument": 6, + "jQuery.acceptData": 2, + "f.parseJSON": 2, + "Get": 4, + "emitTimeout": 4, + "inputElem.style.cssText": 1, + "node.offsetLeft": 1, + "": 1, + "gradientStopColor": 1, + "l.push": 2, + "s.events": 1, + "self.once": 2, + "ii=": 2, + "translate": 38, + "/.test": 19, + "c.type": 9, + "g.replace": 1, + "c.addClass": 1, + "Height": 1, + "faster": 1, + "stored": 4, + "n.save": 35, + "Use": 7, + "u200c": 1, + "f.propHooks.selected": 2, + "this._expect_continue": 1, + "connectionExpression.test": 1, + "Horse.name": 1, + "testMediaQuery": 2, + "steelseries.KnobType.STANDARD_KNOB": 14, + "tables": 1, + "c.text": 2, + "a.attachEvent": 6, + "optimize": 3, + "jQuerySub.sub": 1, + "auth": 1, + "this.connection": 8, + "e.save": 2, + "*c": 2, + "nt.translate": 2, + "du": 10, + "@": 1, + "g.sort": 1, + "info": 2, + "u0600": 1, + "oi.pause": 1, + ".825*t": 9, + "u/": 3, + "d.style.overflow": 1, + "Return": 2, + "setAlpha": 8, + "e.complete.call": 1, + "m.exec": 1, + "f.left": 3, + "sentExpect": 3, + "this.output": 3, + "thisCache.data": 3, + "c.isLocal": 1, + "t*.15": 1, + ".0314*t": 5, + "kt.getContext": 2, + "": 1, + "body": 22, + "j.handleObj": 1, + "c.head": 1, + "h.firstChild": 2, + "fakeBody.parentNode.removeChild": 1, + "f.drawImage": 9, + "Unexpose": 1, + "c.guid": 1, + "quickExpr.exec": 2, + "div.style.border": 1, + "this._endEmitted": 3, + "navigator": 3, + "removed": 3, + "headers": 41, + "Backbone.history.navigate": 1, + "splice": 5, + "sentDateHeader": 3, + "attrs.list": 2, + "i.digitalFont": 8, + "attrNames.length": 1, + "window.location.hash": 3, + "JSON.stringify": 4, + "sure": 18, + "h*.2": 2, + "Math.PI/": 1, + "this.die": 1, + "mode": 1, + "s.splice": 1, + "frowned": 1, + "script/i": 1, + "there": 6, + "obj.constructor": 2, + "Client.prototype.request": 1, + "a.sort": 1, + "d.slice": 2, + "IncomingMessage.prototype.pause": 1, + "version": 10, + "info.versionMinor": 2, + "end.rawText": 2, + "S.text.indexOf": 1, + "ee": 2, + "isPropagationStopped=": 1, + "Math.PI/180": 5, + "b.scrollLeft": 1, + "complete": 6, + "HTTPParser.REQUEST": 2, + "f*.006": 2, + "d.text": 1, + "speed": 4, + "a.namespace.split": 1, + "this.queue": 4, + "wt": 26, + "f.event.special": 5, + "b.attributes.value": 1, + "container.": 1, + "docMode": 3, + "i.width*.9": 6, + "contextXML": 1, + "solves": 1, + ".cloneNode": 4, + "bg.tbody": 1, + "c.isArray": 5, + "cr": 20, + "m": 76, + "cube": 2, + "/msie": 1, + ".785*t": 1, + "two": 1, + "v.status": 1, + "bf": 6, + "bool.ogg": 2, + "hide=": 1, + "DOMContentLoaded": 14, + "makeArray": 3, + "c.namespace": 2, + "a.text": 1, + "PEG.parser": 1, + "this.valueAverage": 1, + "92": 1, + "one": 15, + "a.currentStyle": 4, + "guid": 5, + "f.style": 4, + "this.initialize.apply": 2, + "this.removeAttribute": 1, + "str1.length": 1, + "Invalid": 2, + "setPointerType=": 1, + "yt.onMotionChanged": 1, + "wi.getContext": 2, + "requires": 1, + "this.prop": 2, + ".wrapAll": 2, + "/g": 37, + "f*.142857": 4, + "gt.height": 1, + "m.text": 2, + "nt.drawImage": 3, + "wt.decimals": 1, + "natively": 1, + "ga": 2, + "previousSibling": 5, + "ctor.prototype": 3, + "pageX": 4, + "indexOf": 5, + "Boolean": 2, + "": 1, + ".871012": 3, + "occurs.": 2, + "jQuery.isEmptyObject": 1, + "jQuerySub.prototype": 1, + "options.protocol": 3, + ".onSocket": 1, + "headerIndex": 4, + "setValue=": 2, + "u*.046728": 1, + "n.led": 20, + "context.nodeType": 2, + "finally": 3, + "n.removeClass": 1, + "d=": 15, + "s*.36": 1, + ".4*k": 1, + "since": 1, + "dest": 12, + "relatedTarget=": 1, + "f.expr.match.POS": 1, + "hover": 3, + "": 1, + "ii.medium.getRgbaColor": 1, + "ht.textColor": 2, + "lt.textColor": 2, + "ft.type": 1, + "*t": 3, + "quadraticCurveTo": 4, + "origContext": 1, + "Optionally": 1, + "Q": 6, + "process.nextTick": 1, + "s.textBaseline": 1, + "st.medium.getHexColor": 2, + "g.getContext": 2, + "dt.height/2": 2, + "fragmentOverride": 2, + "bJ": 1, + ".wrapInner": 1, + "Array.prototype.push": 4, + "proxy": 4, + "tabindex": 4, + "var": 910, + ".off": 1, + "element.hasClass": 1, + "this._httpMessage": 3, + "w.textColor": 1, + ".8175*t": 2, + "u*.88": 2, + "steelseries": 10, + "ck.contentWindow": 1, + "a.fn.constructor": 1, + "optDisabled": 1, + "socket.writable": 2, + "console.error": 3, + "this.document": 1, + "u3000": 1, + "begin.data": 1, + "ut.width": 1, + "ku": 9, + "expandos": 2, + "i.selector": 3, + "core": 2, + "d.removeChild": 1, + "computed": 1, + "parse_digit": 3, + "bt.length": 4, + "this.setThreshold": 4, + "q.namespace": 1, + "d.onload": 3, + "j.handleObj.origHandler.apply": 1, + ".8025*t": 1, + "they": 2, + "q.length": 1, + "unload": 5, + "attrNames": 3, + "net.Server.call": 1, + "tt.symbolColor.getRgbaColor": 1, + "_.extend": 9, + "a.namespace": 1, + "onClose": 3, + "self.shouldKeepAlive": 4, + "x.length": 8, + "a.constructor.prototype": 2, + "support.pixelMargin": 1, + "this.value": 4, + "_results": 6, + "exports.STATUS_CODES": 1, + "f*.5": 17, + "e.toFixed": 2, + "jQuery.support": 1, + "g.defaultView": 1, + "b.options": 1, + "this.trailers": 2, + "/Date/i": 1, + "bt.type": 1, + "gt=": 1, + "Snake.__super__.move.call": 2, + "action": 3, + "c.mimeType": 2, + "option.selected": 2, + "jQuery=": 2, + "
": 4, + "j.call": 2, + "month": 1, + "reset": 2, + "continue": 18, + "ev": 5, + "RE_OCT_NUMBER.test": 1, + "719626": 3, + "this.setForegroundType": 5, + "n.beginPath": 39, + "rinvalidChar.test": 1, + "5": 23, + "isBool": 4, + "outer.firstChild": 1, + "options.auth": 2, + "mq": 3, + "defining": 1, + "Fails": 2, + "*ht": 8, + "le": 1, + "c.boxModel": 1, + "UNICODE.letter.test": 1, + "for": 262, + "/100": 2, + "oi.setAttribute": 2, + ".0365*t": 9, + ".0264*t": 4, + "boolHook": 3, + "bw": 2, + "require": 9, + "p.rotate": 4, + "failDeferred.isResolved": 1, + "v.getResponseHeader": 2, + "chainable": 4, + "d.context": 2, + "//": 410, + "h5": 1, + "operator": 14, + "rwebkit": 2, + "jQuery.fn": 4, + "o.insertBefore": 1, + ".value": 1, + "l.leftMatch": 1, + "this._writeRaw": 2, + "Unterminated": 2, + "dt.getContext": 1, + "h*.42": 1, + "tabIndex": 4, + "Left": 1, + "Length/i": 1, + ".145098": 1, + "and": 42, + "Mozilla": 2, + "last": 6, + "pageXOffset": 2, + "before": 8, + "bW.toLowerCase": 1, + "exports.createClient": 1, + "self.listeners": 2, + "Found": 1, + "backgroundVisible": 2, + "div.style.width": 2, + "c.documentElement.compareDocumentPosition": 1, + "inputElem.type": 1, + "without": 1, + "dark": 2, + "t.light.getRgbaColor": 2, + "gr": 12, + "height=": 17, + ".style": 1, + "fi.play": 1, + "r.addColorStop": 6, + "ff": 5, + "Avoids": 2, + "b.parentNode.selectedIndex": 1, + "called": 2, + "changed": 3, + "read_num": 1, + "shortcut": 1, + "failDeferred.done": 1, + "getData": 3, + "h.slice": 1, + "na": 1, + "used": 13, + "f.support.opacity": 1, + "135": 1, + "f.expr.filters": 3, + "hidden": 12, + "u.backgroundColor": 4, + "v.clearRect": 2, + "wi": 24, + "d.appendChild": 3, + "d.ownerDocument": 1, + "exports.globalAgent": 1, + "m.replace": 1, + "k=": 11, + "cg": 7, + "b": 961, + "obsoleted": 1, + "this._url": 1, + "666666": 2, + "et.drawImage": 1, + "e*.023364": 2, + "first": 10, + "holdReady": 3, + "but": 4, + ".style.textShadow": 1, + "steelseries.PointerType.TYPE2": 1, + "this.el": 10, + "b.clearAttributes": 2, + "d.always": 1, + "parser.finish": 6, + "f*.82": 1, + "": 1, + "know": 3, + "f.support.checkClone": 2, + "h.overrideMimeType": 2, + "e*.518691": 2, + "u221e": 2, + ".specified": 1, + "e/22": 2, + "i.trendColors": 4, + "A.JSON.parse": 2, + "in": 170, + "shrink": 1, + "ex.name": 1, + "rt.addColorStop": 4, + "e*.04": 1, + "n.closePath": 34, + "ru": 14, + "can": 10, + "a.fn.init.prototype": 1, + "799065": 2, + "ot=": 4, + "m.xml": 1, + "n.bezierCurveTo": 42, + "n.translate": 93, + "c.removeData": 2, + "Ta": 1, + "aa.call": 3, + "i/2": 1, + "b.offsetLeft": 2, + "a.prop": 5, + "initialize": 3, + "d.join": 1, + "f.clone": 2, + "net.Server": 1, + ".48": 7, + "f*.571428": 8, + "*ut": 2, + "ye": 2, + "body.insertBefore": 1, + "C.call": 1, + "a.style.filter": 1, + "parser.incoming.statusCode": 2, + "Modernizr._version": 1, + "checkbox/": 1, + "f.event": 2, + "nor": 2, + "props": 21, + "htmlSerialize": 3, + "jQuery.expando": 12, + "pageYOffset": 1, + "F": 8, + "Horse.__super__.move.call": 2, + "ba.call": 1, + "event": 31, + "child.prototype.constructor": 1, + "res.emit": 1, + "result2.push": 1, + "u.roseVisible": 4, + "u.translate": 8, + "2d": 26, + "Static": 1, + "name.substring": 2, + "a.JSON": 1, + "f.support.cors": 1, + "offsets": 1, + "t.width*.5": 4, + "returned": 4, + "PUT": 1, + "args.length": 3, + "getSetAttribute": 3, + "u17b4": 1, + "Buffer": 1, + "strong": 1, + "e.show": 1, + "d.charset": 1, + "b.value": 4, + "list": 21, + "s.textAlign": 1, + "se": 1, + "this.hide": 1, + "this.line": 3, + ".4": 2, + "number": 13, + "then": 8, + "this.appendChild": 1, + "anyone": 1, + "shouldKeepAlive": 4, + "f*i*ft/": 1, + "t*.571428": 2, + "l*u": 1, + "e.length": 9, + "this.prevObject": 3, + "don": 5, + "once": 4, + "f.attrHooks.value": 1, + "expected": 12, + "h*.8": 1, + "e.offset": 1, + "A.document": 1, + "yt/at": 1, + "form": 12, + "this.socket": 10, + "Modernizr.testStyles": 1, + "shivMethods": 2, + "computeErrorPosition": 2, + "S.pos": 4, + "b.restore": 1, + "st*2.5": 1, + "bi*.05": 1, + "w/r": 1, + "Otherwise": 2, + "Math.log10": 1, + "a.guid": 7, + "e.clone": 1, + "x=": 1, + "model.toJSON": 1, + "this.id": 2, + "rightmostFailuresPos": 2, + "resetBuffers": 1, + "di.width": 1, + "f/r": 1, + "x.pop": 4, + ".type": 2, + "jQuery.browser.version": 1, + "c/": 2, + "nr": 22, + "*": 70, + "this.host": 1, + "this._trailer": 5, + "e*.58": 1, + ".049*t": 8, + "steelseries.TrendState.UP": 2, + "b.ownerDocument.body": 2, + "break": 111, + "render": 1, + "at.getImageData": 1, + "bt.labelColor": 2, + "elem.getAttributeNode": 1, + "overflowY": 1, + "false": 142, + "g.selector": 3, + "o.push": 1, + "o._default": 1, + "promise": 14, + "i.live": 1, + "g.namespace": 1, + "parse_unicodeEscapeSequence": 3, + "s.save": 4, + "pi.getContext": 2, + "cx": 2, + "s": 290, + "": 1, + "autofocus": 1, + "Z.exec": 1, + "important": 1, + "onServerResponseClose": 3, + "pt.getContext": 2, + ".05": 2, + "s*.04": 1, + "bl": 3, + "c.stopPropagation": 1, + "Type": 1, + "e.liveFired": 1, + "f.push": 5, + "statusCode": 7, + "html5.shivMethods": 1, + ".04*f": 1, + "y.substr": 1, + "r=": 18, + "s*.1": 1, + "values": 10, + "zIndex": 1, + "string.replace": 1, + "r.exec": 1, + "j.noCloneChecked": 1, + "s*.475": 1, + ".split": 19, + ".guid": 1, + "get": 24, + "f.get": 2, + "steelseries.LedColor.CYAN_LED": 2, + "rNonWord": 1, + "prevUntil": 2, + "staticProps": 3, + "data.constructor": 1, + "cssText.indexOf": 1, + "n.lineTo": 33, + "f.curCSS": 1, + "Backbone.Collection.prototype": 1, + "a.value": 8, + "b.toUpperCase": 3, + "getPreventDefault": 2, + "escapeHTML": 1, + "options.defaultPort": 1, + "result1": 81, + "onto": 2, + "<=>": 1, + "f.queue": 3, + "jQuerySub.fn": 2, + "createFlags": 2, + "jQuery.isArray": 1, + "a.style.cssText": 3, + "<\\/script>": 2, + "bd.test": 2, + "socket.removeListener": 5, + "parse_whitespace": 3, + "supported": 2, + "a.push.apply": 2, + "route.exec": 1, + "click.modal.data": 1, + "hostHeader": 3, + "this._send": 8, + "k.translate": 2, + "c.toFixed": 2, + ".selector": 1, + "f.dequeue": 4, + "loop": 7, + "self.requests": 6, + "ajaxSettings": 1, + "queue": 7, + "a.fn": 2, + "wrapAll": 1, + "Internet": 1, + "overflow=": 2, + "": 4, + "f.isPlainObject": 1, + "statusCode.toString": 1, + "si=": 1, + "f*.18": 4, + "ar.drawImage": 1, + "bt.labelColor.getRgbaColor": 2, + "handleObj": 2, + "W": 3, + "Event=": 1, + "v.readyState": 1, + "cancelBubble=": 1, + "f.parseXML": 1, + "bP": 1, + "#9521": 1, + "jQuery.fn.extend": 4, + "res.writeHead": 1, + "e*.856796": 3, + "": 1, + "u.canvas.height": 7, + "cx.test": 2, + "c.html": 3, + "m.slice": 1, + "isSupported": 7, + "info.headers": 1, + "s*.365": 2, + ".childNodes.length": 1, + "j.elem": 2, + "c.createElement": 12, + "eventPhase": 4, + "x.shift": 4, + "spaces": 3, + "b.converters": 1, + "dataType": 6, + "this._extractParameters": 1, + "e*.15": 2, + ".107476*ut": 1, + "shallow": 1, + "newDefer.reject": 1, + ".attr": 1, + "x.push": 1, + "e.nodeType": 7, + "f.length": 5, + "supportsHtml5Styles": 5, + "r.createElement": 11, + "j.handleObj.data": 1, + "is_token": 1, + "DARK_GRAY": 1, + "hf*.5": 1, + "f.ajax": 3, + "f.sibling": 2, + "o.lastChild": 1, + "a.slice": 2, + "input.charAt": 21, + "failDeferred": 1, + "getResponseHeader": 1, + "all.length": 1, + "parser.maxHeaderPairs": 4, + "what": 2, + "e3": 5, + ".59": 4, + "i.maxMeasuredValueVisible": 8, + "method": 30, + "fromElement": 6, + ".7675*t": 2, + "existing": 1, + "e.fn.init.call": 1, + "this.isShown": 3, + "f*.34": 3, + ".63*u": 3, + "ut.type": 6, + "persist": 1, + "pageY=": 1, + "j.reliableMarginRight": 1, + "c.extend": 7, + "node.canHaveChildren": 1, + "PDF": 1, + "e*kt": 1, + "u.shadowColor": 2, + "some": 2, + "e.makeArray": 1, + "special": 3, + "rr.restore": 1, + "n*6": 2, + ";": 4052, + "normal": 2, + "skip": 5, + "will": 7, + "res.shouldKeepAlive": 1, + "lcdColor": 4, + "f.map": 5, + "l.match.PSEUDO.exec": 1, + "c.zoom": 1, + "j.style.opacity": 1, + "rbrace": 1, + "pairs": 2, + "f.isWindow": 2, + "ClientRequest": 6, + "space_combining_mark": 1, + "width=": 17, + "failDeferred.resolve": 1, + "More": 1, + "isExplorer": 1, + "c.browser.version": 1, + "bind": 3, + "d.getMilliseconds": 1, + ".FreeList": 1, + "pos0": 51, + "e*.537383": 2, + "f*.546728": 2, + "c.borderTopWidth": 2, + "i.hasClass": 1, + "u*.055": 2, + "tf": 5, + "orig": 3, + "j.length": 2, + "window.document": 2, + "fadeToggle": 1, + "us": 2, + "f.canvas.width*.4865": 2, + "remove": 9, + "g.join": 1, + "ClientRequest.prototype.setTimeout": 1, + "closeExpression": 1, + "regexp": 5, + "WHITESPACE_CHARS": 2, + "d.stop": 2, + "steelseries.TickLabelOrientation.TANGENT": 2, + "...": 1, + "": 3, + "e.getAttribute": 2, + "f.find": 2, + "self.emit": 9, + "d.toUTCString": 1, + "d.start": 2, + "g/": 1, + "v.canvas.height": 4, + "h*.48": 1, + "replaceAll": 1, + "loses": 1, + "e.isDefaultPrevented": 2, + "b.checked": 1, + "doesn": 2, + "doc": 4, + "u.toPrecision": 1, + "Horse.prototype.move": 2, + "g.top": 1, + "old": 2, + "fledged": 1, + "d.shift": 2, + "methodMap": 2, + "_.bindAll": 1, + "automatically": 2, + "gets": 6, + "cssNumber": 3, + "DOM": 21, + "d.playing": 2, + "bT.apply": 1, + ".find": 5, + "fix": 1, + "Modal.prototype": 1, + "s*.831775": 1, + "k*.57": 1, + "sibling": 1, + "Diego": 2, + "c.inArray": 2, + "bg.optgroup": 1, + "OutgoingMessage.prototype._storeHeader": 1, + "this.output.length": 5, + "a.currentStyle.filter": 1, + "Assume": 2, + "c.crossDomain": 3, + "rvalidchars": 2, + "offsetSupport.fixedPosition": 1, + "b.insertBefore": 3, + "math": 4, + "self.getHeader": 1, + "cleanExpected.push": 1, + "u.knobStyle": 4, + "max": 1, + "CDATA": 1, + "too": 1, + "d.nodeType": 5, + "<[\\w\\W]+>": 4, + "parserOnHeadersComplete": 2, + "window.DocumentTouch": 1, + "setCss": 7, + "window.msMatchMedia": 1, + "ignoreCase": 1, + "u.lcdVisible": 2, + "tickCounter*h": 2, + "e/1.95": 1, + ".875*t": 3, + "b.getBoundingClientRect": 1, + "c.expando": 2, + "cm": 2, + "h": 499, + "b.src": 4, + ".specialSubmit": 2, + "scrollLeft": 2, + "self.socket": 5, + "transferEncodingExpression": 1, + "history.pushState": 1, + "c.support.style": 1, + "appendChild": 1, + "Ensure": 1, + "click": 11, + "ba": 3, + "n.test": 2, + "steelseries.PointerType.TYPE8": 1, + "e.bindReady": 1, + "means": 1, + "d.resolveWith": 1, + "js_error": 2, + "_=": 1, + "r.addClass": 1, + "changeBubbles": 3, + "seenCR": 5, + "parse_letter": 1, + "this.setMaxValue": 3, + "f.support.shrinkWrapBlocks": 1, + "it": 112, + "c.defaultView.getComputedStyle": 3, + "m.apply": 1, + "option.disabled": 2, + "parentNode": 10, + "./g": 2, + "ru=": 1, + "s*.035": 2, + "b.jquery": 1, + "exec": 8, + "paddingMarginBorder": 5, + "parseFloat": 30, + "inline": 3, + "_pos": 2, + "ForegroundType": 2, + "stroke": 7, + "e.isReady": 1, + "child.prototype": 4, + "JS": 7, + "item.bind": 1, + ".8225*t": 3, + "kt.drawImage": 1, + "bJ.test": 1, + "focusin": 9, + "u.useColorLabels": 2, + "h*.04": 1, + "c.left": 4, + "__slice": 2, + "params.url": 2, + "socket._httpMessage": 9, + "fakeBody.style.background": 1, + "trying": 1, + "/json/": 1, + "bg.option": 1, + "c.removeClass": 1, + "div.cloneNode": 1, + "x.browser": 2, + "property": 15, + "f.now": 2, + "f*.29": 19, + "Create": 1, + "c.loadXML": 1, + "time": 1, + "a.exec": 2, + "e.isWindow": 2, + "Convert": 1, + "g.origType.replace": 1, + "this.add": 1, + "f.fragments": 3, + "L": 10, + "Object": 4, + "bE": 2, + "over": 7, + ".parentNode.removeChild": 2, + "model.id": 1, + "y.exec": 1, + "loc": 2, + "self.socket.once": 1, + "res": 14, + ".8*t": 2, + "pu.state": 1, + "this.resetMinMeasuredValue": 4, + "rbrace.test": 2, + "jQuery.nodeName": 3, + "apply": 8, + "show": 10, + "jQuery._data": 2, + "begin": 1, + "225": 1, + "t*.05": 2, + "Q.test": 1, + "hooks.get": 2, + "style/": 1, + "a.execScript": 1, + "RESERVED_WORDS": 2, + "i.height*.5": 2, + "gt.length": 2, + "Tween.regularEaseInOut": 6, + "_jQuery": 4, + "f.find.matchesSelector": 2, + "a.responseText": 1, + "controls": 1, + "incoming": 2, + "ServerResponse.prototype.writeHeader": 1, + "isEventSupported": 5, + "u202F": 1, + "dot": 2, + "UNARY_POSTFIX": 1, + "k*.446666": 2, + "memory": 8, + "Ba": 3, + "self": 17, + "509345": 1, + "i.substring": 3, + "handlers": 1, + "rejectWith": 2, + "n/g": 1, + "bool.h264": 1, + "createLinearGradient": 6, + "div.attachEvent": 2, + "window.location.search": 1, + "": 2, + "params.data": 5, + "OutgoingMessage.prototype._buffer": 1, + "g.length": 2, + "Backbone.Model.extend": 1, + "fade": 4, + "statusLine": 2, + "this._headerSent": 5, + "/close/i": 1, + "member": 2, + "e*.453271": 5, + "converters": 2, + "name.indexOf": 2, + "metaKey": 5, + "R.test": 1, + "parser": 27, + "Modernizr.testProp": 1, + "r*255": 1, + "privateCache": 1, + "g.trigger": 2, + "b.selectedIndex": 2, + "KEYWORDS_ATOM": 2, + "f*.365": 2, + "re": 2, + "crossDomain=": 2, + "s.test": 1, + ".fail": 2, + "a.dataFilter": 2, + "J=": 1, + "f.Event": 2, + "prop.substr": 1, + "k.labelColor.setAlpha": 1, + "c.browser.webkit": 1, + "borderLeftWidth": 1, + "jQuerySub": 7, + "TAG": 2, + "oi*.05": 1, + "callbacks.shift": 1, + "defaults": 3, + "za": 3, + "parser.socket.parser": 1, + ".WebkitAppearance": 1, + "section": 2, + "mminMeasuredValue": 1, + "jQuery.attrFix": 2, + "h.value": 3, + "level": 3, + "index": 5, + "yet": 2, + "c.shift": 2, + "i*.007142": 4, + "this.empty": 3, + "ck.height": 1, + "w=": 4, + "h*1.17": 2, + "c.push": 3, + "should": 1, + "submit": 14, + "875": 2, + "co=": 2, + "jQuery.removeAttr": 2, + "jQuery.propFix": 2, + "UNICODE.non_spacing_mark.test": 1, + "i.frameVisible": 10, + "tests": 48, + "a.childNodes": 1, + "tokpos": 1, + "lf": 5, + "end=": 1, + "removeEventListener": 3, + "b.specified": 2, + "ajaxStart": 1, + "keep": 1, + "STATUS_CODES": 2, + "valuesNumeric": 4, + "cssProps": 1, + "l.order": 1, + "S.line": 2, + "getValueAverage=": 1, + "this.setScrolling": 1, + "fi.setAttribute": 2, + "n.stroke": 31, + "bx": 2, + "transferEncodingExpression.test": 1, + "s*.060747": 2, + "ki.pause": 1, + "width": 32, + "e.browser.version": 1, + "IE6": 1, + "ownerDocument.documentShived": 2, + "h6": 1, + "Internal": 1, + ".triggerHandler": 1, + "ft.width": 1, + "ti=": 2, + ".79*t": 1, + "f.expr.filters.animated": 1, + "options.routes": 2, + "y.length": 1, + "f.valHooks": 7, + "this.getFragment": 6, + "q=": 1, + "result.SyntaxError": 1, + "ci=": 1, + "u.size": 4, + "orig=": 1, + "this.map": 3, + "ck.width": 1, + "animate": 4, + "single": 2, + "IncomingMessage.prototype.destroy": 1, + "stream.Stream": 2, + "check": 8, + "req.httpVersionMajor": 2, + "RE_DEC_NUMBER": 1, + ".cssText": 2, + "/ig": 3, + "f.event.handle.apply": 1, + "track": 2, + "result=": 1, + "yt.width": 2, + "p.setup.call": 1, + "escapeRegExp": 2, + "on": 37, + "d.push": 1, + "Date.prototype.toJSON": 2, + "addClass": 2, + "iframes": 2, + "DTRACE_HTTP_CLIENT_REQUEST": 1, + "this._finish": 2, + "expectExpression": 1, + "regular": 1, + "wt.light.getRgbaColor": 2, + "u.strokeStyle": 2, + "o/r": 1, + "safety": 1, + "f.ajaxSettings.xhr": 2, + "": 1, + "also": 5, + "options.createConnection": 4, + "ex.stack": 1, + "STANDARD": 3, + "Za": 2, + "want": 1, + "e.isPlainObject": 1, + "wrapInner": 1, + "085": 4, + "c.overflow": 1, + "isNode": 11, + "ch": 58, + "c": 775, + "this": 577, + "removeData": 8, + "regularEaseInOut": 2, + "unitStringVisible": 4, + "min": 2, + "c.ajax": 1, + "data=": 2, + ".fireEvent": 3, + "this.selected": 1, + "self.createConnection": 2, + "this.output.push": 2, + "parser.incoming.complete": 2, + "d.onMotionChanged": 2, + "560747": 4, + "name.length": 1, + "getElementsByTagName": 1, + "cssomPrefixes.join": 1, + "k*.037383": 11, + "propHooks": 1, + "h.set": 1, + "f.ajaxTransport": 2, + "iframe": 3, + "reasonPhrase": 4, + "this.outputEncodings.shift": 2, + "info.upgrade": 2, + "523364": 5, + "gradientFraction2Color": 1, + "d*.093457": 2, + "s*.355": 1, + "ot.type": 10, + ".is": 2, + "e.map": 1, + "late": 2, + "cl.createElement": 1, + "c.support.scriptEval": 2, + "destroyed": 2, + "div.firstChild": 3, + "type=": 5, + "ret.comments_before": 1, + "kt.textColor": 2, + "0px": 1, + "input.length": 9, + "b.drawImage": 1, + "ut*.61": 1, + ".when": 1, + "f.ajaxSettings": 4, + "j.parentNode": 1, + "b.nodeType": 6, + "rv": 4, + "care": 1, + "cssFloat": 4, + "req.onSocket": 1, + "t.toFixed": 2, + "k.nodeType": 1, + "elem.nodeName.toLowerCase": 2, + "this.shouldKeepAlive": 4, + "exports.set_logger": 1, + "doneCallbacks": 2, + "which": 8, + "res.statusCode": 1, + "parsers.free": 1, + "window.html5": 2, + "chars.join": 1, + "ECMA": 1, + ".85*t": 2, + "properly": 2, + "JSON": 5, + "c.isDefaultPrevented": 2, + "*st/": 1, + ".49": 4, + "t.height": 2, + "yf": 3, + ".innerHTML": 3, + "Match": 3, + "object": 59, + "f.ready": 1, + "e.error": 2, + "45": 5, + "t*.121428": 1, + "t.lineTo": 8, + "v.expr": 4, + "originalTarget": 1, + "/.exec": 4, + "continueExpression": 1, + "steelseries.ColorDef.BLUE": 1, + ".471962*f": 5, + "": 5, + "make": 2, + "pageX=": 2, + "e._Deferred": 1, + "g.guid": 3, + "h.status": 1, + "*.05": 4, + "auto": 3, + "m.elem": 1, + "math.cube": 2, + "G": 11, + "free": 1, + "Object.keys": 5, + "this._headers.concat": 1, + "bo.test": 1, + "f.fn.jquery": 1, + "dequeue": 6, + "child": 17, + "a.compareDocumentPosition": 1, + "u.pointerTypeLatest": 2, + "this.constructor": 5, + "ajax": 2, + "target=": 2, + "s.getElementById": 1, + "change": 16, + "Agent.prototype.addRequest": 1, + "mStyle.background": 1, + "et.length": 2, + "ai.height": 1, + "iu.getContext": 1, + "e.body": 3, + "inner": 2, + "u17b5": 1, + "q.splice": 1, + "resp": 3, + "regex_allowed": 1, + "ki=": 1, + "c.hasContent": 1, + "tr": 23, + "enumerated": 2, + "sf": 5, + "Sizzle.isXML": 1, + "works": 1, + "g.reject": 1, + "socket.parser": 3, + "self.path": 3, + "gradientFraction3Color": 1, + "n.shadowBlur": 4, + "i.valueColor": 6, + ".5": 7, + "getContext": 26, + "d.guid": 4, + "classProps": 2, + "e.isArray": 2, + "a.defaultValue": 1, + "bool.mp3": 1, + "i.lcdVisible": 8, + "this.doesAddBorderForTableAndCells": 1, + "": 1, + "/bfnrt": 1, + "trick": 2, + "d.unshift": 2, + "d.events": 1, + "res.detachSocket": 1, + "f/": 1, + "e.splice": 1, + "div.appendChild": 4, + "e.type": 6, + "y*.121428": 2, + "input.cloneNode": 1, + "": 1, + "rnotwhite.test": 2, + "usemap": 2, + "jQuery.uaMatch": 1, + "res.assignSocket": 1, + "stopImmediatePropagation": 1, + "removeClass": 2, + "Document": 2, + "collection": 3, + "parser.socket.onend": 1, + "//basic": 1, + "inverted": 4, + ".63*e": 3, + "u*.028037": 6, + ".nodeType": 9, + "fx": 10, + "saveClones.test": 1, + "fnDone": 2, + "Non": 3, + "mouseleave": 9, + "h.id": 1, + "el": 4, + "ns": 1, + "k*.47": 1, + "c.fn.extend": 4, + "i.sort": 1, + "+": 1135, + "h/vt": 1, + "hrefNormalized": 3, + "find": 7, + "h.guid": 2, + "keyup.dismiss.modal": 2, + "b.rotate": 1, + "n.lineJoin": 5, + ".89*f": 2, + "offsetX": 4, + "zoom": 1, + "parser.incoming.readable": 1, + ".12864": 2, + "": 1, + "key/value": 1, + ".innerHTML.replace": 1, + "bubbles": 4, + "bF.test": 1, + "a.selector": 4, + "Hold": 2, + "f.concat.apply": 1, + "cy": 4, + "t": 436, + "util.inherits": 7, + "document.styleSheets": 1, + "ATOMIC_START_TOKEN": 1, + "Missing": 1, + "d.getContext": 2, + "bm": 3, + "isEmptyDataObject": 3, + "g.handler": 1, + "resolveWith": 4, + "01": 1, + "docElement.removeChild": 1, + "aa": 1, + "g.height": 4, + "steelseries.Odometer": 1, + "this.end": 2, + "support.optDisabled": 1, + "v.statusCode": 2, + "pushStack": 4, + "non_spacing_mark": 1, + "ct*5": 1, + "t*.856796": 1, + "ku.repaint": 1, + "flags.stopOnFalse": 1, + "

": 2, + "this.iframe.document.open": 1, + "Modernizr": 12, + ".7925*t": 3, + "tickCounter": 4, + "l.push.apply": 1, + "ht": 34, + "trim": 5, + "access": 2, + "rt=": 3, + "e.level": 1, + "d.ifModified": 1, + "result2": 77, + "u.foregroundType": 4, + "FrameDesign": 2, + "#9699": 1, + "collisions": 1, + "exports.get": 1, + "req._hadError": 3, + "result0.push": 1, + "label": 2, + "S.tokline": 3, + "at=": 3, + "r*1.014": 5, + "because": 1, + ".51*k": 1, + "key.match": 1, + "": 1, + "selected=": 1, + "f*r*bt/": 1, + "f.attr": 2, + "letter": 3, + "h.hasClass": 1, + "a.toLowerCase": 4, + "c.getElementById": 1, + "Backbone.history.route": 1, + "OutgoingMessage.prototype.destroy": 1, + "div.id": 1, + "parse_classCharacter": 5, + ".22": 1, + "": 1, + "doScrollCheck": 6, + "loc.protocol": 2, + "mStyle": 2, + "bargraphled": 3, + "rvalidescape": 2, + "X": 6, + "labelColor": 6, + "i.getAlpha": 1, + "bQ": 3, + ".checked": 2, + "parser.socket": 4, + "JS_Parse_Error": 2, + "h.dark.getRgbaColor": 3, + "<-270&&e>": 2, + ".0163*t": 7, + "s.": 1, + ".events": 1, + "Agent.prototype.removeSocket": 1, + "this.chunkedEncoding": 6, + "u.pointerTypeAverage": 2, + "504672": 2, + "u*.73": 3, + "f.cleanData": 4, + "END_OF_FILE": 3, + "//XXX": 1, + "d.async": 1, + ".remove": 2, + "//abort": 1, + "i.foregroundVisible": 10, + "t.getRed": 4, + "Own": 2, + "id": 38, + "div.style.cssText": 1, + "isLocal": 1, + "self.port": 1, + "OutgoingMessage.prototype._finish": 1, + "parser.onMessageComplete": 1, + "is_comment": 2, + "it.getContext": 2, + "at/yt": 4, + "div.addEventListener": 1, + ".parentNode": 7, + "being": 2, + "a.checked": 4, + "nodeName": 20, + "support.reliableMarginRight": 1, + "n.substring": 1, + ".toUpperCase": 3, + "a.jquery": 2, + "Aa": 3, + "a.context": 2, + "value.call": 1, + "f.support": 2, + "fnFail": 2, + ".marginTop": 1, + "css": 7, + "jQuery.uuid": 1, + "this.getUTCHours": 1, + "Grab": 1, + ".end": 1, + "safe": 3, + "prefixes.join": 3, + "crashing": 1, + "f*.35": 26, + ".0038*t": 2, + "steelseries.TickLabelOrientation.NORMAL": 2, + "this.offset": 2, + "detail": 3, + "this.connection.write": 4, + "n.lineWidth/2": 2, + "vt/": 3, + "a.removeChild": 2, + "/javascript": 1, + "window.location": 5, + "<": 209, + "this._hasBody": 6, + "fi.pause": 1, + "ut*.13": 1, + "c.get": 1, + "lastData.constructor": 1, + "u.shadowBlur": 2, + "active": 2, + "c.result": 3, + "with": 18, + "this.httpAllowHalfOpen": 1, + "s.on": 4, + "pos1": 63, + "keyword": 11, + "_len": 6, + "u206f": 1, + "b.mergeAttributes": 2, + "k.uniqueSort": 5, + "b.createElement": 2, + "border": 7, + "/SVGAnimate/.test": 1, + "getRgbaColor": 21, + "METAL": 2, + "u.createRadialGradient": 1, + "this.resetMaxMeasuredValue": 4, + "ut": 59, + "routes.length": 1, + "shift": 1, + "jQuery.browser.safari": 1, + "net.createConnection": 3, + "ar": 20, + "row": 1, + "et.width": 1, + "steelseries.ForegroundType.TYPE1": 5, + "nType": 8, + ".*": 20, + "useGradient": 2, + ".76": 1, + "throw": 27, + "propName": 8, + "checked": 4, + "domManip": 1, + "this.col": 2, + "72": 1, + "it=": 7, + "t/2": 1, + "d.detachEvent": 1, + "specialSubmit": 3, + "WebSockets": 1, + ".HTTPParser": 1, + "i.minValue": 10, + "__extends": 6, + "i.offsetLeft": 1, + "eventSplitter": 2, + "e.ownerDocument": 1, + "c.namespace_re": 1, + "element.appendTo": 1, + "empty": 3, + "g.scrollLeft": 1, + "hasClass": 2, + "model.idAttribute": 2, + "checkOn": 4, + "measureText": 4, + "ot": 43, + "h.nodeType": 4, + "s.body.removeChild": 1, + "focusout": 11, + "value.length": 1, + "n.shadowColor": 2, + "isEmptyObject": 7, + "i.get": 1, + "range": 2, + "leftMatch": 2, + "target.data": 1, + "or.restore": 1, + "c.support.submitBubbles": 1, + "c.currentTarget": 2, + ".push": 3, + "clone": 5, + "url": 23, + "top": 12, + "<=1&&a&&f.isFunction(a.promise)?a:f.Deferred();if(d>": 1, + "http": 6, + "i.width*.5": 2, + "b.currentStyle": 2, + "doesAddBorderForTableAndCells": 1, + "f.attrHooks.name": 1, + "cn": 1, + "i": 853, + "": 1, + "bb": 2, + "order": 1, + "c.call": 3, + "href=": 2, + "": 1, + "OutgoingMessage.prototype._renderHeaders": 1, + "et.height": 1, + "f.hasData": 2, + "string": 41, + "er.getContext": 1, + "n.lineWidth": 30, + "tom.move": 2, + "a.outerHTML": 1, + "I.beforeactivate": 1, + "when": 20, + "UNICODE": 1, + ".7875*t": 4, + "l.match.PSEUDO.test": 1, + "c.fn.triggerHandler": 1, + "tokcol": 1, + "n.fillRect": 16, + "iu": 14, + "copied": 1, + "s.addEventListener": 3, + "dashed": 1, + ".unload": 1, + "": 1, + "hi": 15, + "setOffset": 1, + "u.length": 3, + "a.contentWindow.document": 1, + "OutgoingMessage.prototype.addTrailers": 1, + "self._emitData": 1, + "<=f[n].stop){t=et[n],i=ut[n];break}u.drawImage(t,0,0),kt(a,i)},this.repaint(),this},wr=function(n,t){t=t||{};var>": 1, + "hi.height": 3, + "content": 5, + "emptyGet": 3, + "k.style.width": 1, + "TEXT": 1, + "f.canvas.height*.27": 2, + "deferred.resolveWith": 5, + "rowSpan": 2, + "length": 48, + "bg.th": 1, + "ufff0": 1, + "h.replace": 2, + "*lt": 9, + "GET": 1, + "reference": 5, + "certain": 2, + "continually": 2, + "b.dataTypes": 2, + "eE": 4, + "frameborder": 2, + "a.href": 2, + "j.optDisabled": 1, + "CRLF": 13, + "parse_zeroEscapeSequence": 3, + "s*.32": 1, + "v.done": 1, + "document.body": 8, + "keyCode=": 1, + "f.expando": 23, + "namedParam": 2, + "executing": 1, + "support.shrinkWrapBlocks": 1, + "handler.route.test": 1, + "c.getResponseHeader": 1, + "Chrome": 2, + "wu.repaint": 1, + "oi/2": 2, + "n.createLinearGradient": 17, + "same": 1, + "class.": 1, + "visible": 1, + "M": 9, + "window.applicationCache": 1, + "errorPosition": 1, + "arc": 2, + "wt.decimalForeColor": 1, + "bF": 1, + "xhr": 1, + "vt.getContext": 1, + "options": 56, + "_.bind": 2, + "this.checked": 1, + "b.textContent": 2, + "call": 9, + "": 2, + "err.stack": 1, + "tfoot": 1, + "setValueAnimatedAverage=": 1, + "ft.length": 2, + "able": 1, + "toElement": 5, + "d.call": 3, + "returns": 1, + "other": 3, + "ret": 62, + "detachEvent": 2, + "object.constructor.prototype": 1, + "yt.height": 2, + "k/2": 1, + "this.sub": 2, + "is_alphanumeric_char": 3, + "e.fragment": 1, + "_bindRoutes": 1, + "b.handle.elem": 2, + "/http/.test": 1, + "clearInterval": 6, + "a.call": 17, + "o.test": 1, + "t*.82": 1, + "ai.getContext": 2, + "live.": 2, + "elements": 9, + "D.apply": 1, + "cleanExpected": 2, + "di.getContext": 2, + "jQuery.noop": 2, + "deferred.done.apply": 2, + "fragment": 27, + "Last": 2, + "char_": 9, + "f*.1": 5, + "u*.093457": 10, + "notxml": 8, + "obj.nodeType": 2, + "absolute": 2, + "j.getAttribute": 2, + "getByName": 3, + "fadeIn": 1, + "OutgoingMessage.call": 2, + "ni.textColor": 2, + "n.createRadialGradient": 4, + "n.textAlign": 12, + "c.support.hrefNormalized": 1, + "ClientRequest.prototype.setSocketKeepAlive": 1, + "er": 19, + "beginPath": 12, + "done": 10, + "browserMatch.browser": 2, + "Not": 4, + "testProps": 3, + "345794": 3, + "df": 3, + "contains": 8, + "1": 97, + "bP.test": 1, + "c.getElementsByTagName": 1, + "selectorDelegate": 2, + "b.indexOf": 2, + "cb.test": 1, + "c.preventDefault": 3, + "STANDARD_GREEN": 1, + "e*.4": 1, + "vu": 10, + ".fail.apply": 1, + "state=": 1, + "z": 21, + "reportFailures": 64, + "130841": 1, + "ui": 31, + "option.parentNode.disabled": 2, + "screenY": 4, + "a.fireEvent": 1, + "bs": 2, + "params.processData": 1, + "halted": 1, + "parserOnHeaders": 2, + "h.scrollLeft": 2, + "f.support.reliableHiddenOffsets": 1, + "f.nodeName": 16, + "i=": 31, + "this.addListener": 2, + "h1": 5, + "v.createRadialGradient": 2, + "ui.getContext": 4, + "b.contentType": 1, + "

": 2, + "calls": 1, + "a.responseFields": 1, + "ctrlKey": 6, + "maxSockets": 1, + "onMotionChanged=": 2, + "textOrientationFixed": 2, + "83": 1, + "marginRight": 2, + "was": 6, + "s.clearRect": 3, + "12864": 2, + "frame": 23, + "marks": 1, + "d.parentNode": 4, + "useMap": 2, + "window.location.pathname": 1, + "v.complete": 1, + "Necessary": 1, + "t.getGreen": 4, + "a.parentNode.firstChild": 1, + ".nodeName": 2, + "uFEFF": 1, + "k.drawImage": 3, + "Math.PI/3": 1, + "steelseries.BackgroundColor.DARK_GRAY": 7, + "ab.test": 1, + "shiftKey": 4, + "Fire": 1, + "//if": 2, + "void": 1, + "is_identifier_char": 1, + "pu": 9, + "_.exec": 2, + "just": 2, + "this._renderHeaders": 3, + "ServerResponse.prototype._implicitHeader": 1, + "495327": 2, + "steelseries.BackgroundColor.PUNCHED_SHEET": 2, + "i.getContext": 2, + "oi": 23, + "i.knobType": 4, + "ie6/7": 1, + "e.offsetTop": 4, + "input.substr": 9, + "S.newline_before": 3, + "tokline": 1, + "s/vt": 1, + "a.navigator": 1, + "c.each": 2, + "i.resolveWith": 1, + "style.cssRules": 3, + "domPrefixes": 3, + "a.dataTypes": 2, + "c.merge": 4, + ".06*f": 2, + "ui/2": 1, + "*st": 1, + "character": 3, + "we": 25, + "triggerHandler": 1, + "q.push": 1, + "Agent.defaultMaxSockets": 2, + "shouldSendKeepAlive": 2, + "71028": 1, + "d.nodeValue": 3, + "bb.test": 2, + "cc": 2, + "jQuery.prototype": 2, + "utcDate": 2, + "i.getBlue": 1, + "FF4": 1, + "Backbone.Router.extend": 1, + "unless": 2, + ".before": 1, + "bW": 5, + "i.shift": 1, + "f._data": 15, + "setSection=": 1, + "et.save": 1, + "k*.514018": 2, + ".closest": 4, + "elvis": 4, + "num": 23, + "a.url": 1, + "ServerResponse.prototype.writeHead": 1, + "slice.call": 3, + "n.setAttribute": 1, + "required": 1, + "k.parentNode": 1, + "t.exec": 1, + "h.setRequestHeader": 1, + "e.style.top": 2, + "a.cloneNode": 3, + ".698039": 1, + "this.setValueColor": 3, + "both": 2, + "jquery": 3, + "options.headers": 7, + "token.value": 1, + "nt.restore": 1, + "jsonpCallback": 1, + "parseXML": 1, + "u00c0": 2, + "counter": 2, + "parsers": 2, + "begin.rawText": 2, + "it.labelColor": 2, + "kt.save": 1, + "jQuerySub.superclass": 1, + "e.handle": 2, + "rr.length": 1, + "a.fn.init": 2, + "/html/": 1, + "": 1, + "ya": 2, + "fail": 10, + "cache=": 1, + "execute": 4, + "setValueAverage=": 1, + "rect": 3, + "k.length": 2, + "c.data": 12, + "s*.565": 1, + "deferred.promise": 1, + "jQuery.prop": 2, + "this._wantsPushState": 3, + "c.xhrFields": 3, + "a.fragment.cloneNode": 1, + "non": 8, + "this.emit": 5, + "wt.getContext": 1, + "v=": 5, + "s.attachEvent": 3, + "B": 5, + "OutgoingMessage": 5, + "kt.translate": 2, + "n.font": 34, + "g.resolveWith": 3, + "f.grep": 3, + "self.socket.writable": 1, + "CONNECT": 1, + "i*.45": 4, + "n.shadowOffsetX": 4, + "n.rotate": 53, + "lr": 19, + "cl.body.appendChild": 1, + "options.hostname": 1, + "t.width*.1": 2, + "kf": 3, + "Accept": 1, + "jQuerySub.fn.constructor": 1, + "e.fn.init.prototype": 1, + "keys.length": 5, + "parser.onIncoming": 3, + "ownerDocument.createElement": 3, + "has_e": 3, + ".12*f": 2, + "e.orig": 1, + "ya.call": 1, + "this.tagName": 1, + "ajaxPrefilter": 1, + "a.appendChild": 3, + "offsetSupport.doesNotIncludeMarginInBodyOffset": 1, + "contentLengthExpression": 1, + "odo": 1, + "p/r": 1, + "e.hide": 2, + "forcePushState": 2, + "className": 4, + "sa": 2, + "We": 6, + "e.prototype": 1, + "port": 29, + "len.toString": 2, + "sentConnectionHeader": 3, + "exports.PRECEDENCE": 1, + "4c4c4c": 1, + ".65*u": 1, + "plain": 2, + "count": 4, + "f.offset": 1, + "shrinkWrapBlocks": 2, + "Array.prototype.indexOf": 4, + "size": 6, + "continue/i": 1, + "this._source": 1, + "f*": 5, + "attrChange": 4, + "p=": 5, + ".0214*t": 13, + "e/ut": 1, + "i.customLayer": 4, + "internalCache": 3, + "attrFix": 1, + "PUNC_BEFORE_EXPRESSION": 2, + "b.save": 1, + "f*.012135/2": 1, + "ht*yi": 1, + "inner.style.top": 2, + "bodyHead": 4, + "parser.onHeadersComplete": 1, + "rightmostFailuresExpected": 1, + "setPointSymbols=": 1, + "f.ajaxSetup": 3, + "Styles": 1, + "column": 8, + "se.drawImage": 1, + "c.isPropagationStopped": 1, + "isArray": 10, + "encoding": 26, + "&": 13, + "readOnly": 2, + "rule.split": 1, + "read_while": 2, + ".0467*f": 1, + "wt.medium.getRgbaColor": 3, + "r.setAlpha": 8, + "against": 1, + "list.length": 5, + "readyState": 1, + "Backbone.sync": 1, + "i.test": 1, + "this.socket.once": 1, + "obj.length": 1, + ".86*t": 4, + "et.translate": 2, + "/255": 1, + "now=": 1, + "always": 6, + "a.nodeType": 27, + "i*.856796": 2, + "h.toFixed": 3, + "ct": 34, + "o": 322, + "thisCache": 15, + "contentEditable": 2, + "inspect": 1, + "Ya": 2, + "onSocket": 3, + "this._deferToConnect": 3, + "this.column": 1, + "f/10": 1, + "ft.height": 1, + "bh": 1, + "c.unshift": 1, + "window.Modernizr": 1, + "k*.13": 2, + "i.events": 2, + "res.on": 1, + "localAddress": 15, + "Tween.elasticEaseOut": 1, + "f.save": 5, + "94": 1, + "nextUntil": 1, + "args": 31, + "h.setAttribute": 2, + "c.makeArray": 3, + "v.abort": 1, + "exports.KEYWORDS_ATOM": 1, + "h/ht": 1, + "g.left": 1, + "isPlainObject": 4, + "k.error": 2, + "h.responseText": 1, + "own": 4, + "i.titleString": 10, + "this.nodeName.toLowerCase": 1, + "elem": 101, + "/i": 22, + "pipe": 2, + "toUpperCase": 1, + "j.attr": 1, + "jQuery.Callbacks": 2, + "div.style.overflow": 2, + "t*.19857": 1, + "e*.35514": 2, + "wt.decimalBackColor": 1, + "i.threshold": 10, + "xml": 3, + "Unique": 1, + "self._renderHeaders": 1, + "li=": 1, + "": 1, + "autoplay": 1, + "collection.": 1, + "Sa": 2, + "R.apply": 1, + ".trigger": 3, + "yr": 17, + "e.document.compatMode": 1, + "a.elem": 2, + "Object.prototype.toString": 7, + "tagName": 3, + "s*.38": 2, + "incorrectly": 1, + "35": 1, + "Top": 1, + "<<": 4, + "RE_HEX_NUMBER.test": 1, + "t*.053": 1, + "f.toFixed": 1, + "S": 8, + "outer": 2, + "appended": 2, + "h*t": 1, + "ifModified": 1, + "rwebkit.exec": 1, + "bL": 1, + "offsetWidth/Height": 3, + "isNaN": 6, + "steelseries.BackgroundColor.CARBON": 2, + "bi*.9": 1, + "attributes": 14, + "jQuery.isWindow": 2, + "_.isRegExp": 1, + "UNICODE.space_combining_mark.test": 1, + "lineWidth": 1, + "ni.width": 2, + "st.width": 1, + "l.top": 1, + "week": 1, + "ua.indexOf": 1, + "T.find": 1, + ".call": 10, + "Mark": 1, + "1_=": 1, + "onError": 3, + "this.pushStack": 12, + "sr": 21, + "central": 2, + "trimming": 2, + "f.attrFn": 3, + "textarea": 8, + ".support.transition": 1, + "e*.504672": 4, + "rf": 5, + "inserted": 1, + "available": 1, + "flag": 1, + "a.options": 2, + "l.style": 1, + "70588": 4, + "856796": 4, + "current": 7, + "exports.RESERVED_WORDS": 1, + "#10870": 1, + "only": 10, + "search": 5, + "params.beforeSend": 1, + "onRemove": 3, + "XXX": 1, + "this.finished": 4, + "i.thresholdVisible": 8, + "offset": 21, + "many": 3, + ".55": 1, + "setData": 3, + "a.mimeType": 1, + "f*.856796": 2, + "f*.7": 2, + "*ue": 1, + "Call": 1, + "fast": 1, + "_mark": 2, + "jQuery.attrHooks": 2, + "Handle": 14, + "regex": 3, + "a.selectedIndex": 3, + "readyState=": 1, + "f.fn.css": 1, + "marginDiv.style.marginRight": 1, + "Modernizr._prefixes": 1, + "ex": 3, + "yt.stop": 1, + "at/kt": 1, + "maybe": 2, + "flags": 13, + "h.namespace": 2, + "_.uniqueId": 1, + ".selected": 1, + "f.support.deleteExpando": 3, + "st=": 3, + "i.addColorStop": 27, + "parse_comment": 3, + "g.document.body": 1, + "a.unit": 1, + "ms": 2, + "g.className": 4, + "parseInt": 12, + "i.style.marginRight": 1, + "bt=": 3, + "t.createLinearGradient": 2, + "u.toFixed": 2, + "k.isXML": 4, + "names": 2, + "select.appendChild": 1, + "exports.createServer": 1, + "connector_punctuation": 1, + "i.tickLabelOrientation": 4, + "Avoid": 1, + "f.data": 25, + "return": 944, + "v.set": 5, + "h.resolveWith": 1, + "info.shouldKeepAlive": 1, + "steelseries.Orientation.WEST": 6, + "by": 12, + "queue=": 2, + "elements.split": 1, + "h*.006": 1, + "n/255": 1, + "possible": 3, + "c.body.appendChild": 1, + "Trigger": 2, + "odd": 2, + "beforeactivate": 1, + ".proxy": 1, + "pt.width": 1, + "": 1, + "trimLeft": 4, + "f.valHooks.button": 1, + "ctor": 6, + "Modernizr.mq": 1, + "h*.44": 3, + "animatedProperties=": 1, + "jQuery.support.deleteExpando": 3, + "way": 2, + "insertAfter": 1, + "a.document": 3, + "repaint=": 2, + "yi.width": 1, + "detach": 1, + "parser.incoming._emitEnd": 1, + "/checked": 1, + "container.appendChild": 1, + "Modernizr.testAllProps": 1, + "gt": 32, + "c.style": 1, + "req.parser": 1, + "defaultView.getComputedStyle": 2, + "S.text.charAt": 2, + "removeEvent=": 1, + "delegateEvents": 1, + "_toggle": 2, + "#10080": 1, + "this.repaint": 126, + "n.relative": 5, + "parser.socket.resume": 1, + "feature.toLowerCase": 2, + "315": 1, + "g.body": 1, + "n.length": 1, + "k.cloneNode": 1, + "f.support.tbody": 1, + "this.socket.writable": 2, + "hasOwnProperty": 5, + "k.labelColor": 1, + ".115*t": 5, + "bodyStyle": 1, + "K.call": 2, + "d.concat": 1, + "HTML": 9, + "c.support.checkClone": 2, + "u0000": 1, + "tok": 1, + "t*.45": 4, + "f.canvas.width": 3, + "yf.repaint": 1, + "i.minMeasuredValueVisible": 8, + "cellpadding": 1, + "this.firstChild": 1, + "sentContentLengthHeader": 4, + "t.fill": 2, + "yi.pause": 1, + "ri.getContext": 6, + "ci": 29, + "d": 771, + "f.appendChild": 1, + "exports.request": 2, + "options.elements": 1, + "end.data.charCodeAt": 1, + "of.state": 1, + "k.top": 1, + "internalKey": 12, + "null/undefined": 2, + "f.event.add": 2, + "a.ActiveXObject": 3, + "opt": 2, + ".142857": 5, + "d.toFixed": 1, + "a.querySelectorAll": 1, + "winner": 6, + "elem.canPlayType": 10, + "solid": 2, + "ecmascript/": 1, + "f.cache": 5, + "
": 1, + "td.offsetTop": 1, + "element.parent": 1, + "s.translate": 6, + "lcdDecimals": 4, + "c.attachEvent": 3, + "window.getComputedStyle": 6, + "attrHandle": 2, + "<-90&&e>": 2, + "ft/": 1, + "c.fragments": 2, + "batch": 2, + "g.indexOf": 2, + "fetch": 4, + "maxLength": 2, + "o.firstChild": 2, + "end.data": 1, + "String": 2, + "necessary": 1, + "Snake.name": 1, + "modElem.style": 1, + "i.alarmSound": 10, + "d.top": 2, + "e.merge": 3, + "slice": 10, + "f.isFunction": 21, + "this._pendings.length": 1, + "u.digitalFont": 2, + "205607": 1, + "this.offsetParent": 2, + "this.subtractsBorderForOverflowNotVisible": 1, + "body.firstChild": 1, + "e.toPrecision": 1, + "reliableMarginRight": 2, + "F.call": 1, + "that.": 3, + "46": 1, + "u/2": 5, + "u*255": 1, + "g.clientLeft": 1, + "e.removeChild": 1, + ".map": 1, + "this.getUTCDate": 1, + "dateExpression.test": 1, + ".298039": 1, + "it.labelColor.setAlpha": 1, + "Math.abs": 19, + "switch": 30, + "namespace": 1, + "not": 26, + "inputElem.style.WebkitAppearance": 1, + "ot.getContext": 3, + "support.deleteExpando": 1, + "clean": 3, + "method.": 3, + "animatedProperties": 2, + "a.type": 14, + "H": 8, + "ropera.exec": 1, + "a.insertBefore": 2, + "i.done": 1, + "Backbone.History": 2, + "g.splice": 2, + "": 1, + ".listen": 1, + "ServerResponse.prototype.assignSocket": 1, + "valueForeColor": 1, + "this.doesNotAddBorder": 1, + "bA": 3, + "container.style.zoom": 2, + "Unicode": 1, + "h.type": 1, + "b.id": 1, + "msg": 4, + "nothing": 2, + "bt.getContext": 1, + "pos=": 1, + "None": 1, + "tbody/i": 1, + ".toLowerCase": 7, + "navigate": 2, + "e*.22": 3, + "s*.336448": 1, + "a.crossDomain": 2, + "test/unit/core.js": 2, + "self.has": 1, + "a.data": 2, + "s.documentElement.doScroll": 2, + "getAllResponseHeaders": 1, + "kf.repaint": 1, + "t.format": 7, + "thing": 2, + "e.overflow": 2, + "camelCased": 1, + "JSON.parse": 1, + "stop": 7, + "firstly": 2, + "pass": 7, + "options.path": 2, + "node.hidden": 1, + "ropera": 2, + "g.parentNode": 2, + "hasContent": 2, + "cases": 4, + "this.valueLatest": 1, + "s.createDocumentFragment": 1, + "j.removeAttribute": 2, + "c.removeEventListener": 2, + "block": 4, + "this.getUTCMinutes": 1, + "._last": 1, + "ColorDef": 2, + "62": 1, + "f.push.apply": 1, + "change.": 1, + "Server": 6, + "k.get": 1, + "toLowerCase": 3, + "frameBorder": 2, + "f*i*at/": 1, + "this._remove": 1, + ".eq": 1, + "this.statusCode": 3, + "logger": 2, + "it.width": 1, + "t.restore": 2, + "clearTimeout": 2, + "replace": 8, + "h.statusText": 1, + "exports.member": 1, + "REGEXP_MODIFIERS": 1, + "u.lcdColor": 2, + "kt/at": 2, + "nt": 75, + "b.map": 1, + "through": 3, + "da": 1, + "this.socket.destroy": 3, + "s*.085": 1, + "canvas": 22, + "": 1, + "f.isArray": 8, + "df.type": 1, + "i.section": 8, + "d.getElementsByTagName": 6, + "e.access": 1, + "offsetY": 4, + ".data": 3, + "elems": 9, + "newValue": 3, + "n.fill": 17, + "#8421": 1, + "D.call": 4, + "u": 304, + "this._pendings": 1, + "Modernizr._cssomPrefixes": 1, + "ni.length": 2, + "s*.06": 1, + "steelseries.GaugeType.TYPE4": 2, + "webkit": 6, + "this.context": 17, + "a.style": 8, + "bn": 2, + "longer": 2, + "b.offsetTop": 2, + "src": 7, + "g.ownerDocument": 1, + "ab": 1, + "catch/finally": 1, + ".82": 2, + "u.drawImage": 22, + "cellSpacing": 2, + "bp.test": 1, + "continuing": 1, + "checkUrl": 1, + "blocks": 1, + "***": 1, + "285046": 5, + "s*.3": 1, + "T.call": 1, + "null": 427, + "buildMessage": 2, + "f*.53271": 6, + "u*.58": 1, + "tr.getContext": 1, + "sliceDeferred.call": 2, + "c.top": 4, + "area": 2, + "window.history.pushState": 2, + "disabled": 11, + "getElements": 2, + "mod": 12, + "u*.12864": 3, + "hu": 11, + "c.url": 2, + "Bulk": 1, + "maxlength": 2, + "this._flush": 1, + "u.area": 2, + "gi": 26, + "b.removeChild": 3, + "resize": 3, + "set": 22, + "AGENT": 2, + "req.emit": 8, + ".shift": 1, + "expected.slice": 1, + "result3": 35, + "toArray": 2, + "a.cache": 2, + "conMarginTop": 3, + "routes": 4, + "Backbone.Events": 2, + "globalEval": 2, + "u*.003": 2, + "lt*fr": 1, + "prop=": 3, + "prop": 24, + "this.parser": 2, + "vi.getStart": 1, + "*kt": 5, + ".scrollTop": 1, + "formatted": 2, + "uncatchable": 1, + "rmozilla.exec": 1, + "_data": 3, + "e.value": 1, + "table": 6, + "g.childNodes.length": 1, + ".TEST": 2, + "j.nodeName.toLowerCase": 1, + "error.code": 1, + "OutgoingMessage.prototype.end": 1, + "FreeList": 2, + ".32*f": 2, + "f.rotate": 5, + "steelseries.ColorDef.BLUE.dark.getRgbaColor": 6, + "errorDeferred": 1, + "c.support.boxModel": 1, + "f.propHooks": 1, + "n.unbind": 1, + "e*.495327": 4, + ".03*t": 2, + "existed": 1, + "b.length": 12, + "req.httpVersionMinor": 2, + "b.clearRect": 1, + ".856796": 2, + "i.odometerUseValue": 2, + "Animal.prototype.move": 2, + "support.inlineBlockNeedsLayout": 1, + "jQuerySub.fn.init": 2, + "Y": 3, + "atom": 5, + "oi*.9": 1, + "timeStamp=": 1, + "bR": 2, + "abortIncoming": 3, + "TAGNAMES": 2, + "tokenizer": 2, + "": 2, + "privateCache.events": 1, + "escapable": 1, + ".filter": 2, + "self.options.maxSockets": 1, + "peek": 5, + "s.drawImage": 8, + "light": 5, + "deferred.reject": 1, + "f.offset.setOffset": 2, + "multiple": 7, + "manipulated": 1, + "": 5, + "gt.getContext": 3, + "occur": 1, + "jQuery.extend": 11, + "": 1, + "modal": 4, + ".047058": 2, + "t.getContext": 2, + "ie": 2, + "setAttribute": 1, + "failDeferred.cancel": 1, + "a.button": 2, + "setForegroundType=": 1, + "y.canvas.height": 3, + ".apply": 7, + "/#.*": 1, + "#5145": 1, + "": 1, + "d.selector": 2, + "shown": 2, + "socketCloseListener": 2, + "u/10": 2, + "this.getMinValue": 3, + "support.noCloneChecked": 1, + "this.trigger": 2, + "f.css": 24, + "fA": 2, + "delay": 4, + "c.uaMatch": 1, + "this.options": 6, + "dt.playing": 2, + "this.startTime": 2, + "Extend": 2, + "s.exec": 1, + "while": 53, + "this._sent100": 2, + "57": 1, + "n.arc": 6, + "window": 16, + "Backbone.history": 2, + "p.lastChild": 1, + "parse_error": 3, + "w*.121428": 2, + "f*.36": 4, + "t/255": 1, + "End": 1, + "a.ownerDocument": 1, + "unbind": 2, + "u*.15": 2, + "this.setPointerColor": 4, + "d.fireEvent": 1, + "expression": 4, + "success": 2, + "t.setValue": 1, + "dr": 16, + "f.contains": 5, + "uFFFF": 2, + "this.slice": 5, + "parse_lowerCaseLetter": 2, + "my": 1, + "fires.": 2, + "/compatible/.test": 1, + "info.method": 2, + "KEYWORDS": 2, + "or/2": 1, + "l.relative": 6, + "executed": 1, + "cssomPrefixes": 2, + "pos2": 22, + "7fd5f0": 2, + "h*1.17/2": 1, + "at/yt*h": 1, + "f.swap": 2, + "h.cloneNode": 1, + "th": 1, + ".0875*t": 3, + "uu": 13, + "matches=": 1, + "c.value": 1, + "checked=": 1, + "jQuery.fn.jquery": 1, + "ActiveXObject": 1, + "input": 25, + "t*.012135": 1, + "rr.drawImage": 1, + "aspect": 1, + "as": 11, + "o.innerHTML": 1, + "Backbone.View.prototype": 1, + "a.push": 2, + "lineJoin=": 5, + "180": 26, + "728155": 2, + "i.createDocumentFragment": 1, + "d.filter": 1, + "Width": 1, + "right": 3, + "p.abort": 1, + "h=": 19, + "f.uuid": 1, + "this.connection._httpMessage": 3, + ".815*t": 1, + "_extractParameters": 1, + "h.push": 1, + "et.clearRect": 1, + "Math.floor": 26, + "S/": 4, + "_configure": 1, + "hex_bytes": 3, + "isHeadResponse": 2, + "Animal.name": 1, + "relatedTarget": 6, + "init": 7, + "bg.thead": 1, + "f.setAlpha": 8, + "fn": 14, + ".appendChild": 1, + "e.style.opacity": 1, + ".marginRight": 2, + "c.dequeue": 4, + "obj.push": 1, + "/SVGClipPath/.test": 1, + "ou": 13, + "ai/": 2, + "jQuery.isFunction": 6, + "Backbone.View": 1, + "this.nextSibling": 2, + "visibility": 3, + ".ownerDocument": 5, + "Flash": 1, + "u.knobType": 4, + "ni": 30, + "hooks": 14, + "f.prevObject": 1, + "does": 9, + "options.setHost": 1, + "s/ut": 1, + ".getTime": 3, + "r/g": 2, + "a.split": 4, + "f.concat": 1, + "Backbone.emulateJSON": 2, + "inputs": 3, + "224299": 1, + "lineWidth=": 6, + "c.queue": 3, + "c.fx.speeds": 1, + "die": 3, + "d.userAgent": 1, + "html5": 3, + "ve": 3, + "co": 5, + "j": 265, + "off": 1, + "bc": 1, + "deleteExpando": 3, + "Array": 3, + "ei=": 1, + "yt.getColorAt": 2, + "y.restore": 1, + "f.cssHooks.marginRight": 1, + "ft.push": 1, + "ajaxSend": 1, + "saveClones": 1, + "rule": 5, + "f*.528037": 2, + "restore": 14, + "n.background": 22, + "doing": 3, + "v.statusText": 1, + "e.extend": 2, + "this.isLocal": 1, + "k*.8": 1, + "n.trend": 4, + "i.niceScale": 10, + "selector.length": 4, + "rmozilla": 2, + "IncomingMessage.prototype._addHeaderLine": 1, + ".775*t": 3, + "dt.start": 2, + "mousemove": 3, + "e.fn.init": 1, + "given": 3, + "#5443": 4, + "u00b0": 8, + "pe": 2, + "parents": 2, + "the": 107, + "comment": 3, + "bs.test": 1, + "cd.test": 2, + "value.toLowerCase": 2, + "inputElem.checkValidity": 2, + "window.WebGLRenderingContext": 1, + "prefixed": 7, + "e*.88": 2, + "ui.width": 2, + "slideToggle": 1, + "H=": 1, + "try": 44, + "#6781": 2, + "this.click": 1, + "f*.871012": 2, + ".66*u": 1, + "document.attachEvent": 6, + "g.substring": 1, + "document.readyState": 4, + "isImmediatePropagationStopped=": 1, + "q.handler": 1, + ".34": 1, + "p.save": 2, + "Horse": 12, + "xa": 3, + "e.fn.trigger": 1, + "Q.push": 1, + "key": 85, + "div.firstChild.namespaceURI": 1, + "stat": 1, + "i*.114285": 1, + "self.method": 3, + "e.canvas.height": 2, + "Reset": 1, + "N": 2, + "loadUrl": 1, + "module.deprecate": 2, + "chunkExpression": 1, + "": 1, + "bG": 3, + "u=": 12, + "b.test": 1, + "this.childNodes": 1, + "c.documentElement": 4, + "firingStart": 3, + ".charAt": 1, + "jQuery": 48, + "upgraded": 1, + "f.canvas.height": 3, + "kr": 17, + "Has": 1, + "marginLeft": 2, + "o._default.call": 1, + "d.promise": 1, + "incoming.push": 1, + "p.addColorStop": 4, + "e*.28": 1, + "f*.046728": 1, + "own.": 2, + "localStorage.removeItem": 1, + "jQuery._Deferred": 3, + "name": 161, + "/mg": 1, + "e.guid": 3, + "b.remove": 1, + "parse_hexEscapeSequence": 3, + "read_string": 1, + "ra": 1, + "z.test": 3, + "sizset": 2, + "b.slice": 1, + "err": 5, + "beforeunload": 1, + "hooks.set": 2, + "t*.871012": 1, + "vi.width": 1, + "#4512": 1, + "#x2F": 1, + "pos": 197, + "unitString": 4, + "k.contains": 5, + "toplevel": 7, + "o=": 13, + "parse_hexDigit": 7, + "newline_before": 1, + "f*.2": 1, + "163551": 5, + "k.save": 1, + "b.defaultChecked": 1, + "f.support.checkOn": 1, + "parser.reinitialize": 1, + "line": 14, + ".845*t": 1, + "i.foregroundType": 6, + "hide": 8, + "c.isFunction": 9, + "deal": 2, + "_unmark": 3, + "f.etag": 1, + "c.documentElement.currentStyle": 1, + "Array.prototype.slice": 6, + "postfix": 1, + "shadowOffsetY=": 1, + "2": 66, + "this.handlers.unshift": 1, + "c.support.noCloneEvent": 1, + "runners": 6, + "a.replace": 7, + "p.add": 1, + "k*.32": 1, + "n.odo": 2, + "v.exec": 1, + "unrecognized": 3, + "c.fn.init.prototype": 1, + "f.support.style": 1, + "testDOMProps": 2, + "e*.5": 10, + "Tween": 11, + "input.checked": 1, + "Modified": 1, + "s.detachEvent": 1, + "div": 28, + "node.offsetHeight": 2, + "resolved": 1, + "g.clientTop": 1, + "{": 2736, + "08": 1, + "Xa": 1, + "t.test": 2, + "bt": 42, + "n.canvas.width/2": 6, + "wt.digits": 2, + "send": 2, + ".join": 14, + "expectExpression.test": 1, + "h2": 5, + "s.body": 2, + "manipulation": 1, + "matchMedia": 3, + "after_e": 5, + ".substring": 2, + "": 1, + "it.addColorStop": 4, + ".65*e": 1, + "this.setValue": 7, + "84": 1, + "hasDuplicate": 1, + "Actual": 2, + "Remember": 2, + "f.cssHooks": 3, + "scripts": 2, + "Add": 4, + "": 1, + "quote": 3, + "/u": 3, + "j.noCloneEvent": 1, + "fireWith": 1, + "h.concat.apply": 1, + "this.outputEncodings": 2, + "u*r": 1, + "fromElement=": 1, + "routes.unshift": 1, + "clientLeft": 2, + "frameDesign": 4, + "": 1, + "c.documentElement.contains": 1, + "b.addColorStop": 4, + "it/2": 2, + ".mouseleave": 1, + "u*.009": 1, + ".width": 2, + "bubbling": 1, + "jQuery.fn.init.call": 1, + "Ra": 2, + "g.html": 1, + "k.selectors": 1, + "x0B": 1, + "this.getValue": 7, + "i.odometerParams": 2, + "metaKey=": 1, + "a.target.disabled": 1, + "b.call": 4, + "d.jquery": 1, + "parser.incoming._paused": 2, + "006": 1, + "": 1, + "ni.getContext": 4, + "h*.0375": 1, + "ei.labelColor.getRgbaColor": 2, + "PI": 54, + "this.options.pushState": 2, + "avoid": 5, + "new": 86, + "": 4, + "d.handler": 1, + "element.trigger": 1, + "read_name": 1, + "decimalBackColor": 1, + "wf": 4, + "f*255": 1, + "f.disabled": 1, + "f.access": 3, + "__slice.call": 2, + "userAgent": 3, + "e*.53271": 2, + "steelseries.LedColor.RED_LED": 7, + "bodyOffset": 1, + "j.getComputedStyle": 2, + "mouseover": 12, + "never": 2, + "document.documentElement.doScroll": 4, + "b*100": 1, + "cd": 3, + "_": 9, + "contents": 4, + "exports.Client": 1, + "req.res": 8, + "t*.12864": 1, + "bX": 8, + "smile": 4, + "kr.type": 1, + "baseHasDuplicate": 2, + "f.propFix": 6, + "f.event.trigger": 6, + "3c4439": 2, + "ti.onMotionChanged": 1, + "start": 20, + "k.getText": 1, + "a.defaultSelected": 1, + "u.splice": 1, + "siblings": 1, + "requestListener": 6, + "this.httpVersion": 1, + "tt=": 3, + "_context": 1, + "cors": 1, + "rmultiDash": 3, + "c.support.deleteExpando": 2, + "ua.test": 1 + }, + "XC": { + "<:>": 1, + "main": 1, + "return": 1, + "chan": 1, + "int": 2, + "}": 2, + "0": 1, + "par": 1, + "c": 3, + ";": 4, + "x": 3, + "{": 2, + ")": 1, + "(": 1 + }, + "Matlab": { + "overrideSettings": 3, + "vy0": 2, + "parallel": 2, + "Definition": 1, + "data.system.B": 1, + "area": 1, + "close": 4, + "h2": 5, + "plotyy": 3, + "dArrow1": 2, + "ones": 6, + "analytic.D": 1, + "dy": 5, + "j": 242, + "x_T": 25, + "goodness": 1, + "Frequency": 2, + "defaultSettings.": 1, + "red": 1, + "k2*h/2": 1, + "bops": 7, + "YTickLabel": 1, + "steerAngle": 4, + "currentGuess": 2, + "@fH": 1, + "input": 14, + "opts.PhaseMatchingValue": 2, + "Setting": 1, + "h_r/2": 4, + "_H": 1, + "openLoops.Y.num": 1, + "y_r": 6, + "contents": 1, + "TODO": 1, + "E_T": 11, + "create_ieee_paper_plots": 2, + "resultPlantTwo": 1, + "dataPlantOne": 3, + "openLoops": 1, + "nominalData": 1, + "YTick": 1, + "dbstack": 1, + "defaultSettings.inputs": 1, + "xn": 4, + "sigma": 6, + "delta_E": 7, + "history": 7, + "eye": 9, + "VX_T": 4, + "CPU": 1, + "plantOneSlopeOffset": 3, + "grid_max": 3, + "type": 4, + "Hands": 1, + "parser.parse": 1, + "Lateral": 1, + "xl1": 13, + "rad/sec": 1, + "args": 1, + "sprintf": 11, + "vx_0_max": 8, + "grid_width": 1, + "-": 672, + "@cr3bp_jac": 1, + "parser.addParamValue": 3, + "numeric.OutputName": 1, + "OutputName": 1, + "vx_gpu": 3, + "yl4": 9, + "lines": 17, + "downSlope": 3, + "kP1": 4, + "primary": 1, + "defaultSettings.states": 1, + "x_a": 10, + "w": 3, + ".2f": 5, + "removeStates": 1, + "bicycle.OutputName": 4, + "data.modelPar.B": 1, + "come": 1, + "each": 2, + "else": 23, + "sum": 2, + "statefcn": 2, + "w_r": 5, + "aux.plantFirst": 2, + "gains.Fisher.Slow": 1, + "ok": 2, + "gray": 7, + "find": 24, + "Diagrams": 1, + "Handling.eps": 1, + "metricLine": 1, + "yellow": 1, + "A": 11, + "k2": 3, + "nominalData.": 2, + "rollData.speed": 1, + "&": 4, + "settings.outputs": 1, + "set": 43, + "max": 9, + "sense": 2, + "vy_gpu": 3, + "system_state_space": 2, + "convert_variable": 1, + "function": 32, + "Kinetic": 2, + "y_0.": 2, + "bikes": 24, + "options": 14, + "p": 7, + "path": 3, + "sqrt": 14, + "y_gpu": 3, + "@getState": 1, + "plantTwoSlopeOffset": 3, + "colorbar": 1, + "change": 1, + "RK4": 3, + "how": 1, + "odeset": 4, + "y_min": 3, + "px_0": 2, + "struct": 1, + "XColor": 1, + "directory": 2, + "PaperUnits": 3, + "uses": 1, + "Check": 6, + "axes": 9, + "defaultSettings.outputs": 1, + "/abs": 3, + "gain": 1, + "From": 1, + "/2": 3, + "sg": 1, + "phiDotNum": 2, + "squeeze": 1, + "coords": 2, + "columns": 4, + "dataAdapting": 3, + "args.detrend": 1, + "data.system.A": 1, + "choose_plant": 4, + "Metric": 2, + "many": 1, + "settings.inputs": 1, + "legLines": 1, + "h1": 5, + "setting": 4, + "<=>": 1, + "iirFilter": 1, + "analytic.C": 1, + "black": 1, + "dataPlantTwo": 3, + "data.bicycle.inputs": 1, + "yShift": 16, + "interesting": 4, + "dx": 6, + "num2str": 10, + "i": 334, + "@iirFilter": 1, + "loop": 1, + "obj.R": 2, + "Szebehely": 1, + "N": 9, + "numeric.InputName": 1, + "delta_E0": 1, + "equations": 2, + "resides": 2, + "human": 1, + "gainChanges": 2, + "box": 4, + "xlim": 8, + "results": 1, + "vOut": 2, + "data.forceTF.PhiDot.den": 1, + "end": 147, + "Distance": 1, + "zeros": 60, + "bodeplot": 6, + "YColor": 2, + "varargin_to_structure": 2, + "keepStates": 2, + "calcolare": 2, + "*Omega": 5, + "none": 1, + "keep": 1, + "InputName": 1, + "sort": 1, + "rollData.time": 1, + "}": 157, + "Conditions": 1, + "zeroIndices": 3, + "bops.FreqUnits": 1, + "Saving": 4, + "Jacobian": 3, + "b": 12, + "gains.Benchmark.Medium": 1, + "isreal": 8, + "G": 1, + "range": 2, + "tolerance": 2, + "Color": 13, + "energy": 8, + "compute": 2, + "resultPlantTwo.fit.par": 1, + "ecc": 2, + "Southeast": 1, + "*phi": 2, + "also": 1, + "matrice": 1, + "at": 3, + "@f_reg": 1, + "filesep": 14, + "opts.PhaseMatching": 2, + "t3": 1, + "./": 1, + "Lagr": 6, + "yl3": 8, + "unit": 1, + "figWidth": 24, + "inputParser": 1, + "LineStyle": 2, + "subplot": 3, + "setoptions": 2, + "plotAxes": 22, + "adapting_structural_model": 2, + "v": 12, + "data.modelPar.A": 1, + "paths.eps": 1, + "bikeData": 2, + "[": 309, + "largest": 1, + "average": 1, + "filtfcn": 2, + "x0": 4, + "ylabel": 4, + "text": 11, + "keepOutputs": 2, + "bicycle.InputName": 2, + "filename": 21, + "@": 1, + "nu": 2, + "parfor": 5, + "k1": 4, + "slope": 3, + "warning": 1, + "ss2tf": 2, + "teoricamente": 1, + "rad/s": 4, + "arrayfun": 2, + "%": 552, + "write_gains": 1, + "twentyPercent.": 2, + "Offset": 2, + "opts.Title.String": 2, + "distance": 6, + "py_T": 4, + "In": 1, + "gains.Browser.Slow": 1, + "*e_0": 3, + "Call": 2, + "ylim": 2, + "openLoops.Y.den": 1, + "pints": 1, + "inches": 3, + "f_x_t": 2, + "data.forceTF.PhiDot.num": 1, + "y_res": 7, + "non": 2, + "floatSpec": 3, + "openLoops.Phi.num": 1, + "*T": 3, + "Bode": 1, + "T": 22, + "gains.Browserins.Fast": 1, + "La": 1, + "system": 2, + "phi": 13, + "par_text_to_struct": 4, + "mod": 3, + "pathLength": 3, + "filter": 14, + "conditions": 3, + "delta_e": 3, + "yh": 2, + "self": 2, + "Short": 1, + "openBode.eps": 1, + "vx_f": 3, + "Manual": 2, + "gains.Yellow.Fast": 1, + "mass": 2, + "resultPlantTwo.fit": 1, + "analytic.B": 1, + "h*k3": 1, + "wc": 14, + "*log": 2, + "h": 19, + "RelTol": 2, + "data.bicycle.outputs": 1, + "vx_0": 37, + "line.": 2, + "and": 7, + "deltaNum": 2, + "*Potential": 5, + "Omega": 7, + "io": 7, + "gains.Yellowrev.Medium": 1, + "setxor": 1, + "to": 9, + "chil": 2, + ".file": 1, + "Compute": 3, + "C_L1": 3, + "idnlgrey": 1, + "possible": 1, + "from": 2, + "arg": 2, + "prettyNames": 3, + "generate_data": 5, + "visualize": 2, + "e_0": 7, + "@cross_y": 1, + "aux.plantSecond": 2, + "save": 2, + "this": 2, + "nvx": 32, + "mai": 1, + "/length": 1, + "difference": 2, + "gains.Benchmark.Slow": 1, + ".handlingMetric.num": 1, + "xlabel": 8, + "speeds": 21, + "x_f": 3, + "fit": 6, + "|": 2, + "x_0_max": 8, + "Location": 2, + "display": 10, + "resultPlantOne.fit": 1, + "variables": 2, + "a": 17, + "green": 1, + "advected_y": 12, + "Computation": 9, + "var": 3, + "Moon": 2, + "get": 11, + "EastOutside": 1, + "x_0": 45, + "guess.plantTwo": 2, + "linspace": 14, + "Plot": 1, + "th": 1, + "lambda_max": 2, + "ftle": 10, + "ss": 3, + "+": 169, + "ischar": 1, + "variable": 10, + "first": 3, + "aux.b": 3, + "maxLine": 7, + "numeric.D": 1, + "Energy": 4, + "direzione": 1, + "*E_L1": 1, + "as": 4, + "settings.states": 3, + "It": 1, + "stored": 1, + "E_0": 4, + "t2": 6, + "yl2": 8, + "Y_T": 4, + "contents.colheaders": 1, + "output": 7, + "log": 2, + "gains.Yellow.Medium": 1, + "not": 3, + "u": 3, + "command": 2, + "points": 11, + "phiDotDen": 2, + "nome": 2, + "_n": 2, + "lane_change": 1, + "gainSlopeOffset": 6, + "resultPlantOne.fit.par": 1, + "pzplot": 1, + "states": 7, + "inline": 1, + "equal": 2, + "figure": 17, + "elseif": 14, + "closedLoops": 1, + "result": 5, + "gains.": 1, + "speedsInFile": 5, + "par": 7, + "Y0": 6, + "all": 15, + "yn": 2, + "eigenvalue": 2, + "C_L1/2": 1, + "Integration": 2, + "wnm": 11, + "xLimits": 6, + "xy": 7, + "bicycle_state_space": 1, + "store": 4, + "clear": 13, + "settings.": 1, + "zetanm": 5, + "decide": 1, + "holder": 2, + "notGiven": 5, + "*ds_vx": 2, + "n": 102, + "matrix": 3, + "aux.timeDelay": 2, + "pathToFile": 11, + "mkdir": 1, + "||": 3, + "*n": 2, + "meaningless": 2, + "whipple_pull_force_ABCD": 1, + "S": 5, + "Quality": 2, + "col": 5, + "result.": 2, + "matlab_class": 2, + "deps2c": 3, + "magnitudes": 1, + "free": 1, + "guessPlantOne": 4, + "Lagrangian": 3, + "frontWheel": 3, + "vy_T": 12, + "sameSpeedIndices": 5, + "filtro_1": 12, + "arrays": 1, + "benchmark": 1, + "gca": 8, + "validation": 2, + "minLine": 4, + "grid_min": 3, + "dim": 2, + "parser.Results": 1, + "u.": 1, + "oneSpeed.time": 2, + "Range": 1, + "detrend": 1, + "fclose": 2, + "normalized": 1, + "width": 3, + "analytic.A": 3, + "randomGuess": 1, + "g": 5, + "Ys": 1, + "h_a": 5, + "rectangle": 2, + "resultPlantOne": 1, + "xl5": 8, + "l2": 2, + "in": 8, + "data.Browser": 1, + "makeFilter": 1, + "varargin": 25, + "1": 1, + "Transforming": 1, + "vals": 2, + "motion": 2, + "fopen": 2, + "oneSpeed.speed": 2, + "initial": 5, + "Data": 2, + "grid_spacing": 5, + "pad": 10, + "conservation": 2, + "maxValue": 4, + "Back": 1, + "y_T": 17, + "var_xvx_": 2, + "*ds": 4, + "time": 21, + "obj": 2, + "isterminal": 2, + "ode45": 6, + "position": 2, + "FIXME": 1, + "la": 2, + "positions": 2, + "inset": 3, + "maxEvals": 4, + "@RKF45_FILE_gpu": 1, + "x_gpu": 3, + "wfs": 1, + "gains.Benchmark.Fast": 1, + "inputs": 14, + "{": 157, + "deps2": 1, + "feedback": 1, + "integrator": 2, + "opts.YLim": 3, + "find_structural_gains": 2, + "eigenValues": 1, + ".fit.par": 1, + "handling_all_bikes": 1, + "advected_x": 12, + "linestyles": 15, + "E": 8, + "min": 1, + "integrare": 2, + "properties": 1, + "*E": 2, + "eVals": 5, + "gainsInFile": 3, + "magenta": 1, + "VY_T": 3, + "sr": 1, + "*": 46, + "closedLoops.PhiDot.num": 1, + "mu./": 1, + "bicycle": 7, + "openLoops.Phi.den": 1, + "openBode": 3, + "double": 1, + "numeric.C": 1, + "legends": 3, + "oneSpeed": 3, + "Compute_FILE_gpu": 1, + "t1": 6, + "yl1": 12, + "dArrow": 2, + "dphi*dphi": 1, + "plantNum": 1, + "i/n": 1, + "size": 8, + "*grid_width/": 4, + "t": 32, + "plot_io": 1, + "integrating": 1, + "startOfSlope": 3, + "essere": 1, + "plantNum.plantOne": 2, + "off": 10, + "raise": 19, + "value2": 4, + "like": 1, + "Y": 19, + "*ds_x": 2, + "rollData.inputs": 1, + "obj.B": 2, + "Handling": 2, + "numbers": 2, + "plot": 26, + "spostamento": 1, + "gains.Browserins.Medium": 1, + "both": 1, + "results.mat": 1, + "y_a": 10, + "tspan": 7, + "fillColors": 1, + "Integrate_FTLE_Gawlick_ell": 1, + "bikeData.handlingMetric.den": 1, + "xShift": 3, + "deltaDen": 2, + "arguments": 7, + "parser.addRequired": 1, + "tic": 7, + "curPos2": 4, + "measure": 1, + "textscan": 1, + "gains.Browser.Fast": 1, + "overrideNames": 2, + "closedLoops.Delta.den": 1, + "pcolor": 2, + "x_r": 6, + "manual": 3, + "grid": 1, + "contourf": 2, + "m": 44, + "typ": 3, + "numeric": 2, + "methods": 1, + "get_variables": 2, + "it": 1, + "VAF": 2, + "vx_0_min": 8, + "loopNames": 4, + ".handlingMetric.den": 1, + "R": 1, + "colors": 13, + "contents.data": 2, + "*mu": 6, + "ci": 9, + "v_y": 3, + "gains.Fisher.Medium": 1, + "iddata": 1, + "ds_x": 1, + "neuroDen": 2, + "tf2ss": 1, + "bikeData.modelPar.": 1, + "units": 3, + "secData.": 1, + "gather": 4, + "axis": 5, + "c3": 3, + "pem": 1, + "py_0": 2, + "true": 2, + "num": 24, + "f": 13, + "abs": 12, + "ticks": 4, + "StateName": 1, + "Dimensionless": 1, + "y0": 2, + "order": 11, + "gains.Fisher.Fast": 1, + "xl4": 10, + "l1": 2, + "phisically": 2, + "classdef": 1, + "FTLE": 14, + "w_a": 7, + "Position": 6, + "speedInd": 12, + "Hill": 1, + "gains.Browserins.Slow": 1, + "rollData.path": 1, + "round": 1, + "suppresses": 2, + "load_data": 4, + "xAxis": 12, + "ne": 29, + "plot_io_roll": 3, + "transfer": 1, + "are": 1, + "var_": 2, + "k1*h/2": 1, + "gains.Pista.Slow": 1, + "ax": 15, + "speedNames": 12, + "line": 15, + "defaultNames": 2, + "mag": 4, + "minStates": 2, + "bicycle.StateName": 2, + "*vx_0": 1, + "appear": 2, + "LineWidth": 2, + "vx0": 2, + "memory": 1, + "E_L1": 4, + "useful": 9, + "z": 3, + "bikeData.handlingMetric.num": 1, + "oneSpeed.": 3, + "ret": 3, + "meaningful": 6, + "*k3": 1, + "start": 4, + "r2": 3, + "_": 2, + "closedLoops.Delta.num": 1, + "laneLength": 4, + "bottomRow": 1, + "bikeData.": 2, + "&&": 13, + "on": 13, + "allGains": 4, + "if": 52, + "freq": 12, + "m/s": 6, + "D": 7, + "global": 6, + "ny": 29, + "tf": 18, + "db2": 2, + "load_bikes": 2, + "total": 6, + "guess.": 2, + "Points": 2, + "fix_ps_linestyle": 6, + "speed": 20, + "plantNum.plantTwo": 2, + ")": 1358, + "dvx": 3, + "only": 7, + "while": 1, + "numeric.B": 1, + "data.bicycle.states": 1, + "options.": 1, + "clc": 1, + "neuroNum": 2, + "CURRENT_DIRECTORY": 2, + "names": 6, + "t0": 6, + "phase": 2, + "field": 2, + "C/2": 1, + "tempo": 4, + "data": 27, + "filter_ftle": 11, + "single": 1, + "maxMag": 2, + "s": 13, + "vy": 2, + "guessPlantTwo": 3, + "parser": 1, + "t_integr": 1, + "dphi": 12, + "plant": 4, + "value1": 4, + "solutions": 2, + "X": 6, + "approach": 1, + "twentyPercent.modelPar.": 1, + "plots/": 1, + "semicolon": 2, + "rollAngle": 4, + "final": 2, + "figHeight": 19, + "waitbar": 6, + "h/6*": 1, + "ecc*cos": 1, + "@dg": 1, + "white": 1, + "Selection": 1, + "enumeration": 1, + "rollData.outputs": 3, + "guesses": 1, + "length": 49, + "gcf": 17, + "Fontsize": 4, + "data.system.D": 1, + "strtrim": 2, + "plots": 4, + "curPos1": 4, + "one": 3, + "denominatore": 1, + "legWords": 3, + "findobj": 5, + "fun": 5, + "gains.Browser.Medium": 1, + "l": 64, + "fid": 7, + "advected": 2, + "Look": 2, + "coordinates": 6, + "Y_0": 4, + "w_r/2": 4, + "_e": 1, + "error": 14, + "is": 7, + "E_cin": 4, + "str2num": 1, + "fieldnames": 5, + "Southwest": 1, + "getState": 1, + "bode": 5, + "rollData": 8, + "@f": 6, + "defaultSettings": 3, + "aux.m": 3, + "index": 6, + "goldenRatio": 12, + "x_0_min": 8, + "y_max": 3, + "ye": 9, + "raw": 1, + "allSpeeds": 4, + "RK4_par": 1, + "c2": 5, + "Xlabel": 1, + "closedBode": 3, + "closedLoops.PhiDot.den": 1, + "loop_shape_example": 3, + "bikeData.openLoops": 1, + "Linewidth": 7, + ".png": 1, + "e": 14, + "print": 6, + "Kutta": 1, + "inf": 1, + "data/": 1, + "xl3": 8, + "getoptions": 2, + "l0": 1, + "il": 1, + "Hamiltonian": 1, + "gains": 12, + "vy_f": 3, + "bikeData.closedLoops": 1, + "settings": 3, + "ode00": 2, + "/": 59, + "AbsTol": 2, + "closed": 1, + "endOfSlope": 1, + "ndgrid": 2, + "vy_0": 22, + "leg2": 2, + "openLoops.Psi.den": 1, + "would": 2, + "x_min": 3, + "guess.plantOne": 3, + "y": 22, + "Latex": 1, + "through": 1, + "place": 2, + "importdata": 1, + "data.modelPar.D": 1, + "grid_y": 3, + "px_T": 4, + "sections": 13, + "*k2": 1, + "handling.eps": 1, + "The": 6, + "r1": 3, + "hold": 23, + "obj.G": 2, + "overwrite_settings": 2, + "annotation": 13, + "cleaning": 1, + "grid_width/": 1, + "ie": 2, + "Double": 1, + "C": 13, + "nx": 32, + "k4": 4, + "energy_tol": 6, + "te": 2, + "userSettings": 3, + "Inf": 1, + "xLab": 8, + "db1": 4, + "eig": 6, + "y_f": 3, + "Edgecolor": 1, + "(": 1357, + "Linestyle": 6, + "positive": 2, + "rollTorque": 4, + "fprintf": 18, + "numeric.A": 2, + "xData": 3, + "whipple_pull_force_abcd": 2, + "integrated": 5, + "Potential": 1, + "closeLeg": 2, + "Path": 1, + "y_0": 29, + "legend": 7, + "disp": 8, + "phase_portraits": 2, + "shading": 3, + "r": 2, + "computation": 2, + "vx": 2, + "orbit": 1, + "Initial": 3, + "textX": 3, + "Yc": 5, + "twentyPercent": 1, + "of": 35, + "with": 2, + "name": 4, + "<": 9, + "gains.Yellowrev.Slow": 1, + "analytic": 3, + "opts": 4, + "den": 15, + "C_star": 1, + "ridotta": 1, + "PaperPositionMode": 3, + "i/nx": 2, + "load": 1, + "mandatory": 2, + "data.system.C": 1, + "integration": 9, + "args.sampleTime": 1, + "mine": 1, + "EnergyH": 1, + "value": 2, + "dArrow2": 2, + "toc": 5, + "arg1": 1, + "parameter": 2, + ".vaf": 1, + "per": 5, + "Construction": 1, + "because": 1, + "metricLines": 2, + "ode113": 2, + "k": 75, + "open_loop_all_bikes": 1, + "ismember": 15, + "openLoops.Psi.num": 1, + "direction": 2, + "they": 2, + "f.": 2, + "regexp": 1, + "portrait": 3, + "lane.": 1, + "prod": 3, + "dello": 1, + "real": 3, + "raw.theta": 1, + "args.directory": 1, + "Level": 6, + "mu": 73, + "Choice": 2, + "par.": 1, + "negative": 1, + "lane": 4, + "task": 1, + "roots": 3, + "c1": 5, + "Ys.den": 1, + "PaperSize": 3, + "exist": 1, + "aux": 3, + "data.Benchmark.Medium": 2, + "the": 14, + "Runge": 1, + "number": 2, + "gains.Yellowrev.Fast": 1, + "d": 3, + "Yp": 2, + "fileparts": 1, + "ds": 1, + "gains.Yellow.Slow": 1, + "xl2": 9, + "filtro": 15, + "ylabels": 2, + "data.": 6, + "X_T": 4, + "ds_vx": 1, + "gpuArray": 4, + "PaperOrientation": 3, + "Earth": 2, + "GPU": 3, + "point": 14, + ".": 13, + "velocity": 2, + "vx_0.": 2, + "x_res": 7, + "gains.Pista.Fast": 1, + "leg1": 2, + "yl5": 8, + "Units": 1, + "Parallel": 2, + "outputs": 10, + "Deviation": 1, + "kP2": 3, + "back": 1, + "pathToParFile": 2, + "steps": 2, + "bad": 4, + "x": 42, + "spiegarsi": 1, + "xlabels": 2, + "h_r": 5, + "data.modelPar.C": 1, + "PaperPosition": 3, + "for": 77, + "...": 162, + "grid_x": 3, + "same": 2, + "cyan": 1, + "aux.pars": 3, + "]": 309, + "needs": 1, + "raw.theta_c": 1, + "x2": 1, + "plot.": 1, + "bodeoptions": 1, + "data.Ts": 6, + "which": 2, + "location": 1, + "flat": 3, + "eigenvalues": 2, + "x_max": 3, + "B": 9, + "k3": 3, + "matlab_function": 5, + "Elements": 1, + "ftle_norm": 1, + "strcmp": 24, + "row": 6, + "Open": 1, + "@f_ell": 1, + "into": 1, + "blue": 1, + "whichLines": 3, + "h/2": 2, + "xySource": 7, + "wShift": 5, + "depends": 1, + "guess": 1, + ".*": 2, + "Integrate": 6, + "vx_T": 22, + "loc": 3, + "tau": 1, + "pu": 1, + "Loop": 1, + "definition": 2, + "gains.Pista.Medium": 1, + "path_plots": 1, + "Ys.num": 1, + "de": 4, + "str": 2, + "compare": 3, + "loose": 4, + "e_T": 7, + "Integrate_FILE": 1, + "numeric.StateName": 1, + ";": 891, + "Consider": 1, + "np": 8, + "identified": 1, + "t_integrazione": 3, + "removeInputs": 2 + }, + "XQuery": { + "dflag": 1, + "primary": 1, + "declare": 24, + "c": 1, + "for": 1, + "sort": 1, + "validate": 1, + "const": 1, + "serialized_result": 2, + "name": 1, + "list": 1, + "control": 1, + "": 1, + "options": 2, + "version": 1, + "{": 5, + "name=": 1, + "declared": 1, + "AST": 2, + "": 1, + "p": 2, + "option": 1, + "import": 4, + "err": 1, + "xquery": 1, + "parse/*": 1, + "entry": 2, + "variable": 13, + "all": 1, + "parse/@*": 1, + "namespaces": 5, + "and": 3, + "encoding": 1, + "points": 1, + ")": 38, + "u": 2, + "output": 1, + "imports": 1, + "eval_result": 1, + "}": 5, + "viewport": 1, + "try": 1, + "library": 1, + "eval": 3, + "return": 2, + "II": 1, + "type": 1, + "each": 1, + "pipeline": 8, + "boundary": 1, + "group": 1, + "results": 1, + "preprocess": 1, + "I": 1, + "enum": 3, + "at": 4, + "saxon": 1, + "core": 1, + "serialize": 1, + "element": 1, + "tflag": 1, + "xqm": 1, + "catch": 1, + "": 1, + "module": 6, + "parse": 8, + "functions": 1, + "namespace": 8, + "ast": 1, + "function": 3, + "run": 2, + "III": 1, + "stdin": 1, + "point": 1, + "(": 38, + ";": 25, + "explicit": 3, + "contains": 1, + "ns": 1, + "let": 6, + "xproc": 17, + "": 1, + "space": 1, + "functions.": 1, + "preserve": 1, + "STEP": 3, + "-": 486, + "run#6": 1, + "util": 1, + "xproc.xqm": 1, + "bindings": 2, + "step": 5, + "choose": 1 }, "C": { - "#include": 149, - "const": 357, - "char": 529, - "*blob_type": 2, - ";": 5439, - "struct": 359, - "blob": 6, - "*lookup_blob": 2, - "(": 6213, - "unsigned": 140, - "*sha1": 16, - ")": 6215, - "{": 1528, - "object": 10, - "*obj": 9, - "lookup_object": 2, - "sha1": 20, - "if": 1015, - "obj": 48, - "return": 529, - "create_object": 2, - "OBJ_BLOB": 3, - "alloc_blob_node": 1, - "-": 1803, - "type": 36, - "error": 96, - "sha1_to_hex": 8, - "typename": 2, - "NULL": 330, - "}": 1544, - "*": 253, - "int": 446, - "parse_blob_buffer": 2, - "*item": 10, - "void": 279, - "*buffer": 6, - "long": 105, - "size": 120, - "item": 24, - "object.parsed": 4, - "#ifndef": 84, - "BLOB_H": 2, - "#define": 911, - "extern": 37, - "#endif": 236, - "git_cache_init": 1, - "git_cache": 4, - "*cache": 4, - "size_t": 52, - "git_cached_obj_freeptr": 1, - "free_ptr": 2, - "<": 219, - "git__size_t_powerof2": 1, - "cache": 26, - "size_mask": 6, - "lru_count": 1, - "free_obj": 4, - "git_mutex_init": 1, - "&": 442, - "lock": 6, - "nodes": 10, - "git__malloc": 3, - "sizeof": 71, - "git_cached_obj": 5, - "GITERR_CHECK_ALLOC": 3, - "memset": 4, - "git_cache_free": 1, - "i": 410, - "for": 88, - "+": 551, - "[": 597, - "]": 597, - "git_cached_obj_decref": 3, - "git__free": 15, - "*git_cache_get": 1, - "git_oid": 7, - "*oid": 2, - "uint32_t": 144, - "hash": 12, - "*node": 2, - "*result": 1, - "memcpy": 34, - "oid": 17, - "id": 13, - "git_mutex_lock": 2, - "node": 9, - "&&": 248, - "git_oid_cmp": 6, - "git_cached_obj_incref": 3, - "result": 48, - "git_mutex_unlock": 2, - "*git_cache_try_store": 1, - "*_entry": 1, - "*entry": 2, - "_entry": 1, - "entry": 17, - "else": 190, - "save_commit_buffer": 3, - "*commit_type": 2, - "static": 454, - "commit": 59, - "*check_commit": 1, - "quiet": 5, - "OBJ_COMMIT": 5, - "*lookup_commit_reference_gently": 2, - "deref_tag": 1, - "parse_object": 1, - "check_commit": 2, - "*lookup_commit_reference": 2, - "lookup_commit_reference_gently": 1, - "*lookup_commit_or_die": 2, - "*ref_name": 2, - "*c": 69, - "lookup_commit_reference": 2, - "c": 252, - "die": 5, - "_": 3, - "ref_name": 2, - "hashcmp": 2, - "object.sha1": 8, - "warning": 1, - "*lookup_commit": 2, - "alloc_commit_node": 1, - "*lookup_commit_reference_by_name": 2, - "*name": 12, - "*commit": 10, - "get_sha1": 1, - "name": 28, - "||": 141, - "parse_commit": 3, - "parse_commit_date": 2, - "*buf": 10, - "*tail": 2, - "*dateptr": 1, - "buf": 57, - "tail": 12, - "memcmp": 6, - "while": 70, - "dateptr": 2, - "strtoul": 2, - "commit_graft": 13, - "**commit_graft": 1, - "commit_graft_alloc": 4, - "commit_graft_nr": 5, - "commit_graft_pos": 2, - "lo": 6, - "hi": 5, - "mi": 5, - "/": 9, - "*graft": 3, - "cmp": 9, - "graft": 10, - "register_commit_graft": 2, - "ignore_dups": 2, - "pos": 7, - "free": 62, - "alloc_nr": 1, - "xrealloc": 2, - "parse_commit_buffer": 3, - "buffer": 10, - "*bufptr": 1, - "parent": 7, - "commit_list": 35, - "**pptr": 1, - "<=>": 16, - "bufptr": 12, - "46": 1, - "tree": 3, - "5": 1, - "45": 1, - "n": 70, - "bogus": 1, - "s": 154, - "get_sha1_hex": 2, - "lookup_tree": 1, - "pptr": 5, - "parents": 4, - "lookup_commit_graft": 1, - "*new_parent": 2, - "48": 1, - "7": 1, - "47": 1, - "bad": 1, - "in": 11, - "nr_parent": 3, - "grafts_replace_parents": 1, - "continue": 20, - "new_parent": 6, - "lookup_commit": 2, - "commit_list_insert": 2, - "next": 8, - "date": 5, - "enum": 29, - "object_type": 1, - "ret": 142, - "read_sha1_file": 1, - "find_commit_subject": 2, - "*commit_buffer": 2, - "**subject": 2, - "*eol": 1, - "*p": 9, - "commit_buffer": 1, - "a": 80, - "b_date": 3, - "b": 66, - "a_date": 2, - "*commit_list_get_next": 1, - "*a": 9, - "commit_list_set_next": 1, - "*next": 6, - "commit_list_sort_by_date": 2, - "**list": 5, - "*list": 2, - "llist_mergesort": 1, - "peel_to_type": 1, - "util": 3, - "merge_remote_desc": 3, - "*desc": 1, - "desc": 5, - "xmalloc": 2, - "strdup": 1, - "**commit_list_append": 2, - "**next": 2, - "*new": 1, - "new": 4, - "COMMIT_H": 2, - "*util": 1, - "indegree": 1, - "*parents": 4, - "*tree": 3, - "decoration": 1, - "name_decoration": 3, - "*commit_list_insert": 1, - "commit_list_count": 1, - "*l": 1, - "*commit_list_insert_by_date": 1, - "free_commit_list": 1, - "cmit_fmt": 3, - "CMIT_FMT_RAW": 1, - "CMIT_FMT_MEDIUM": 2, - "CMIT_FMT_DEFAULT": 1, - "CMIT_FMT_SHORT": 1, - "CMIT_FMT_FULL": 1, - "CMIT_FMT_FULLER": 1, - "CMIT_FMT_ONELINE": 1, - "CMIT_FMT_EMAIL": 1, - "CMIT_FMT_USERFORMAT": 1, - "CMIT_FMT_UNSPECIFIED": 1, - "pretty_print_context": 6, - "fmt": 4, - "abbrev": 1, - "*subject": 1, - "*after_subject": 1, - "preserve_subject": 1, - "date_mode": 2, - "date_mode_explicit": 1, - "need_8bit_cte": 2, - "show_notes": 1, - "reflog_walk_info": 1, - "*reflog_info": 1, - "*output_encoding": 2, - "userformat_want": 2, - "notes": 1, - "has_non_ascii": 1, - "*text": 1, - "rev_info": 2, - "*logmsg_reencode": 1, - "*reencode_commit_message": 1, - "**encoding_p": 1, - "get_commit_format": 1, - "*arg": 1, - "*format_subject": 1, - "strbuf": 12, - "*sb": 7, - "*msg": 6, - "*line_separator": 1, - "userformat_find_requirements": 1, - "*fmt": 2, - "*w": 2, - "format_commit_message": 1, - "*format": 2, - "*context": 1, - "pretty_print_commit": 1, - "*pp": 4, - "pp_commit_easy": 1, - "pp_user_info": 1, - "*what": 1, - "*line": 1, - "*encoding": 2, - "pp_title_line": 1, - "**msg_p": 2, - "pp_remainder": 1, - "indent": 1, - "*pop_most_recent_commit": 1, - "mark": 3, - "*pop_commit": 1, - "**stack": 1, - "clear_commit_marks": 1, - "clear_commit_marks_for_object_array": 1, - "object_array": 2, - "sort_in_topological_order": 1, - "**": 6, - "list": 1, - "lifo": 1, - "FLEX_ARRAY": 1, - "typedef": 189, - "*read_graft_line": 1, - "len": 30, - "*lookup_commit_graft": 1, - "*get_merge_bases": 1, - "*rev1": 1, - "*rev2": 1, - "cleanup": 12, - "*get_merge_bases_many": 1, - "*one": 1, - "**twos": 1, - "*get_octopus_merge_bases": 1, - "*in": 1, - "register_shallow": 1, - "unregister_shallow": 1, - "for_each_commit_graft": 1, - "each_commit_graft_fn": 1, - "is_repository_shallow": 1, - "*get_shallow_commits": 1, - "*heads": 2, - "depth": 2, - "shallow_flag": 1, - "not_shallow_flag": 1, - "is_descendant_of": 1, - "in_merge_bases": 1, - "interactive_add": 1, - "argc": 26, - "**argv": 6, - "*prefix": 7, - "patch": 1, - "run_add_interactive": 1, - "*revision": 1, - "*patch_mode": 1, - "**pathspec": 1, - "inline": 3, - "single_parent": 1, - "*reduce_heads": 1, - "commit_extra_header": 7, - "*key": 5, - "*value": 5, - "append_merge_tag_headers": 1, - "***tail": 1, - "commit_tree": 1, - "*ret": 20, - "*author": 2, - "*sign_commit": 2, - "commit_tree_extended": 1, - "*read_commit_extra_headers": 1, - "*read_commit_extra_header_lines": 1, - "free_commit_extra_headers": 1, - "*extra": 1, - "merge_remote_util": 1, - "*get_merge_parent": 1, - "parse_signed_commit": 1, - "*message": 1, - "*signature": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "#ifdef": 64, - "CONFIG_SMP": 1, - "DEFINE_MUTEX": 1, - "cpu_add_remove_lock": 3, - "cpu_maps_update_begin": 9, - "mutex_lock": 5, - "cpu_maps_update_done": 9, - "mutex_unlock": 6, - "RAW_NOTIFIER_HEAD": 1, - "cpu_chain": 4, - "cpu_hotplug_disabled": 7, - "CONFIG_HOTPLUG_CPU": 2, - "task_struct": 5, - "*active_writer": 1, - "mutex": 1, - "refcount": 2, - "cpu_hotplug": 1, - ".active_writer": 1, - ".lock": 1, - "__MUTEX_INITIALIZER": 1, - "cpu_hotplug.lock": 8, - ".refcount": 1, - "get_online_cpus": 2, - "might_sleep": 1, - "cpu_hotplug.active_writer": 6, - "current": 5, - "cpu_hotplug.refcount": 3, - "EXPORT_SYMBOL_GPL": 4, - "put_online_cpus": 2, - "unlikely": 54, - "wake_up_process": 1, - "cpu_hotplug_begin": 4, - "likely": 22, - "break": 244, - "__set_current_state": 1, - "TASK_UNINTERRUPTIBLE": 1, - "schedule": 1, - "cpu_hotplug_done": 4, - "#else": 94, - "__ref": 6, - "register_cpu_notifier": 2, - "notifier_block": 3, - "*nb": 3, - "raw_notifier_chain_register": 1, - "nb": 2, - "__cpu_notify": 6, - "val": 20, - "*v": 3, - "nr_to_call": 2, - "*nr_calls": 1, - "__raw_notifier_call_chain": 1, - "v": 11, - "nr_calls": 9, - "notifier_to_errno": 1, - "cpu_notify": 5, - "cpu_notify_nofail": 4, - "BUG_ON": 4, - "EXPORT_SYMBOL": 8, - "unregister_cpu_notifier": 2, - "raw_notifier_chain_unregister": 1, - "clear_tasks_mm_cpumask": 1, - "cpu": 57, - "WARN_ON": 1, - "cpu_online": 5, - "rcu_read_lock": 1, - "for_each_process": 2, - "p": 60, - "*t": 2, - "t": 32, - "find_lock_task_mm": 1, - "cpumask_clear_cpu": 5, - "mm_cpumask": 1, - "mm": 1, - "task_unlock": 1, - "rcu_read_unlock": 1, - "check_for_tasks": 2, - "write_lock_irq": 1, - "tasklist_lock": 2, - "task_cpu": 1, - "state": 104, - "TASK_RUNNING": 1, - "utime": 1, - "stime": 1, - "printk": 12, - "KERN_WARNING": 3, - "comm": 1, - "task_pid_nr": 1, - "flags": 89, - "write_unlock_irq": 1, - "take_cpu_down_param": 3, - "mod": 13, - "*hcpu": 3, - "take_cpu_down": 2, - "*_param": 1, - "*param": 1, - "_param": 1, - "err": 38, - "__cpu_disable": 1, - "CPU_DYING": 1, - "|": 132, - "param": 2, - "hcpu": 10, - "_cpu_down": 3, - "tasks_frozen": 4, - "CPU_TASKS_FROZEN": 2, - "tcd_param": 2, - ".mod": 1, - ".hcpu": 1, - "num_online_cpus": 2, - "EBUSY": 3, - "EINVAL": 6, - "CPU_DOWN_PREPARE": 1, - "CPU_DOWN_FAILED": 2, - "__func__": 2, - "goto": 159, - "out_release": 3, - "__stop_machine": 1, - "cpumask_of": 1, - "idle_cpu": 1, - "cpu_relax": 1, - "__cpu_die": 1, - "CPU_DEAD": 1, - "CPU_POST_DEAD": 1, - "cpu_down": 2, - "out": 18, - "__cpuinit": 3, - "_cpu_up": 3, - "*idle": 1, - "cpu_present": 1, - "idle": 4, - "idle_thread_get": 1, - "IS_ERR": 1, - "PTR_ERR": 1, - "CPU_UP_PREPARE": 1, - "out_notify": 3, - "__cpu_up": 1, - "CPU_ONLINE": 1, - "CPU_UP_CANCELED": 1, - "cpu_up": 2, - "CONFIG_MEMORY_HOTPLUG": 2, - "nid": 5, - "pg_data_t": 1, - "*pgdat": 1, - "cpu_possible": 1, - "KERN_ERR": 5, - "#if": 92, - "defined": 42, - "CONFIG_IA64": 1, - "cpu_to_node": 1, - "node_online": 1, - "mem_online_node": 1, - "pgdat": 3, - "NODE_DATA": 1, - "ENOMEM": 4, - "node_zonelists": 1, - "_zonerefs": 1, - "zone": 1, - "zonelists_mutex": 2, - "build_all_zonelists": 1, - "CONFIG_PM_SLEEP_SMP": 2, - "cpumask_var_t": 1, - "frozen_cpus": 9, - "__weak": 4, - "arch_disable_nonboot_cpus_begin": 2, - "arch_disable_nonboot_cpus_end": 2, - "disable_nonboot_cpus": 1, - "first_cpu": 3, - "cpumask_first": 1, - "cpu_online_mask": 3, - "cpumask_clear": 2, - "for_each_online_cpu": 1, - "cpumask_set_cpu": 5, - "arch_enable_nonboot_cpus_begin": 2, - "arch_enable_nonboot_cpus_end": 2, - "enable_nonboot_cpus": 1, - "cpumask_empty": 1, - "KERN_INFO": 2, - "for_each_cpu": 1, - "__init": 2, - "alloc_frozen_cpus": 2, - "alloc_cpumask_var": 1, - "GFP_KERNEL": 1, - "__GFP_ZERO": 1, - "core_initcall": 2, - "cpu_hotplug_disable_before_freeze": 2, - "cpu_hotplug_enable_after_thaw": 2, - "cpu_hotplug_pm_callback": 2, - "action": 2, - "*ptr": 1, - "switch": 46, - "case": 273, - "PM_SUSPEND_PREPARE": 1, - "PM_HIBERNATION_PREPARE": 1, - "PM_POST_SUSPEND": 1, - "PM_POST_HIBERNATION": 1, - "default": 33, - "NOTIFY_DONE": 1, - "NOTIFY_OK": 1, - "cpu_hotplug_pm_sync_init": 2, - "pm_notifier": 1, - "notify_cpu_starting": 1, - "CPU_STARTING": 1, - "cpumask_test_cpu": 1, - "CPU_STARTING_FROZEN": 1, - "MASK_DECLARE_1": 3, - "x": 57, - "UL": 1, - "<<": 56, - "MASK_DECLARE_2": 3, - "MASK_DECLARE_4": 3, - "MASK_DECLARE_8": 9, - "cpu_bit_bitmap": 2, - "BITS_PER_LONG": 2, - "BITS_TO_LONGS": 1, - "NR_CPUS": 2, - "DECLARE_BITMAP": 6, - "cpu_all_bits": 2, - "CPU_BITS_ALL": 2, - "CONFIG_INIT_ALL_POSSIBLE": 1, - "cpu_possible_bits": 6, - "CONFIG_NR_CPUS": 5, - "__read_mostly": 5, - "cpumask": 7, - "*const": 4, - "cpu_possible_mask": 2, - "to_cpumask": 15, - "cpu_online_bits": 5, - "cpu_present_bits": 5, - "cpu_present_mask": 2, - "cpu_active_bits": 4, - "cpu_active_mask": 2, - "set_cpu_possible": 1, - "bool": 6, - "possible": 2, - "set_cpu_present": 1, - "present": 2, - "set_cpu_online": 1, - "online": 2, - "set_cpu_active": 1, - "active": 2, - "init_cpu_present": 1, - "*src": 3, - "cpumask_copy": 3, - "src": 16, - "init_cpu_possible": 1, - "init_cpu_online": 1, - "*diff_prefix_from_pathspec": 1, - "git_strarray": 2, - "*pathspec": 2, - "git_buf": 3, - "prefix": 34, - "GIT_BUF_INIT": 3, - "*scan": 2, - "git_buf_common_prefix": 1, - "pathspec": 15, - "scan": 4, - "prefix.ptr": 2, - "git__iswildcard": 1, - "git_buf_truncate": 1, - "prefix.size": 1, - "git_buf_detach": 1, - "git_buf_free": 4, - "diff_pathspec_is_interesting": 2, - "*str": 1, - "count": 17, - "false": 77, - "true": 73, - "str": 162, - "strings": 5, - "diff_path_matches_pathspec": 3, - "git_diff_list": 17, - "*diff": 8, - "*path": 2, - "git_attr_fnmatch": 4, - "*match": 3, - "diff": 93, - "pathspec.length": 1, - "git_vector_foreach": 4, - "match": 16, - "p_fnmatch": 1, - "pattern": 3, - "path": 20, - "FNM_NOMATCH": 1, - "GIT_ATTR_FNMATCH_HASWILD": 1, - "strncmp": 1, - "length": 58, - "GIT_ATTR_FNMATCH_NEGATIVE": 1, - "git_diff_delta": 19, - "*diff_delta__alloc": 1, - "git_delta_t": 5, - "status": 57, - "*delta": 6, - "git__calloc": 3, - "delta": 54, - "old_file.path": 12, - "git_pool_strdup": 3, - "pool": 12, - "new_file.path": 6, - "opts.flags": 8, - "GIT_DIFF_REVERSE": 3, - "GIT_DELTA_ADDED": 4, - "GIT_DELTA_DELETED": 7, - "*diff_delta__dup": 1, - "*d": 1, - "git_pool": 4, - "*pool": 3, - "d": 16, - "fail": 19, - "*diff_delta__merge_like_cgit": 1, - "*b": 6, - "*dup": 1, - "diff_delta__dup": 3, - "dup": 15, - "new_file.oid": 7, - "git_oid_cpy": 5, - "new_file.mode": 4, - "new_file.size": 3, - "new_file.flags": 4, - "old_file.oid": 3, - "GIT_DELTA_UNTRACKED": 5, - "GIT_DELTA_IGNORED": 5, - "GIT_DELTA_UNMODIFIED": 11, - "diff_delta__from_one": 5, - "git_index_entry": 8, - "GIT_DIFF_INCLUDE_IGNORED": 1, - "GIT_DIFF_INCLUDE_UNTRACKED": 1, - "diff_delta__alloc": 2, - "assert": 41, - "GIT_DELTA_MODIFIED": 3, - "old_file.mode": 2, - "mode": 11, - "old_file.size": 1, - "file_size": 6, - "old_file.flags": 2, - "GIT_DIFF_FILE_VALID_OID": 4, - "git_vector_insert": 4, - "deltas": 8, - "diff_delta__from_two": 2, - "*old_entry": 1, - "*new_entry": 1, - "*new_oid": 1, - "GIT_DIFF_INCLUDE_UNMODIFIED": 1, - "*temp": 1, - "old_entry": 5, - "new_entry": 5, - "temp": 11, - "new_oid": 3, - "git_oid_iszero": 2, - "*diff_strdup_prefix": 1, - "strlen": 17, - "git_pool_strcat": 1, - "git_pool_strndup": 1, - "diff_delta__cmp": 3, - "*da": 1, - "*db": 3, - "strcmp": 20, - "da": 2, - "db": 10, - "config_bool": 5, - "git_config": 3, - "*cfg": 2, - "defvalue": 2, - "git_config_get_bool": 1, - "cfg": 6, - "giterr_clear": 1, - "*git_diff_list_alloc": 1, - "git_repository": 7, - "*repo": 7, - "git_diff_options": 7, - "*opts": 6, - "repo": 23, - "git_vector_init": 3, - "git_pool_init": 2, - "git_repository_config__weakptr": 1, - "diffcaps": 13, - "GIT_DIFFCAPS_HAS_SYMLINKS": 2, - "GIT_DIFFCAPS_ASSUME_UNCHANGED": 2, - "GIT_DIFFCAPS_TRUST_EXEC_BIT": 2, - "GIT_DIFFCAPS_TRUST_CTIME": 2, - "opts": 24, - "opts.pathspec": 2, - "opts.old_prefix": 4, - "diff_strdup_prefix": 2, - "old_prefix": 2, - "DIFF_OLD_PREFIX_DEFAULT": 1, - "opts.new_prefix": 4, - "new_prefix": 2, - "DIFF_NEW_PREFIX_DEFAULT": 1, - "*swap": 1, - "swap": 9, - "pathspec.count": 2, - "*pattern": 1, - "pathspec.strings": 1, - "GIT_ATTR_FNMATCH_ALLOWSPACE": 1, - "git_attr_fnmatch__parse": 1, - "GIT_ENOTFOUND": 1, - "git_diff_list_free": 3, - "deltas.contents": 1, - "git_vector_free": 3, - "pathspec.contents": 1, - "git_pool_clear": 2, - "oid_for_workdir_item": 2, - "full_path": 3, - "git_buf_joinpath": 1, - "git_repository_workdir": 1, - "S_ISLNK": 2, - "git_odb__hashlink": 1, - "full_path.ptr": 2, - "git__is_sizet": 1, - "giterr_set": 1, - "GITERR_OS": 1, - "fd": 34, - "git_futils_open_ro": 1, - "git_odb__hashfd": 1, - "GIT_OBJ_BLOB": 1, - "p_close": 1, - "EXEC_BIT_MASK": 3, - "maybe_modified": 2, - "git_iterator": 8, - "*old_iter": 2, - "*oitem": 2, - "*new_iter": 2, - "*nitem": 2, - "noid": 4, - "*use_noid": 1, - "omode": 8, - "oitem": 29, - "nmode": 10, - "nitem": 32, - "GIT_UNUSED": 1, - "old_iter": 8, - "S_ISREG": 1, - "GIT_MODE_TYPE": 3, - "GIT_MODE_PERMS_MASK": 1, - "flags_extended": 2, - "GIT_IDXENTRY_INTENT_TO_ADD": 1, - "GIT_IDXENTRY_SKIP_WORKTREE": 1, - "new_iter": 13, - "GIT_ITERATOR_WORKDIR": 2, - "ctime.seconds": 2, - "mtime.seconds": 2, - "GIT_DIFFCAPS_USE_DEV": 1, - "dev": 2, - "ino": 2, - "uid": 2, - "gid": 2, - "S_ISGITLINK": 1, - "git_submodule": 1, - "*sub": 1, - "GIT_DIFF_IGNORE_SUBMODULES": 1, - "git_submodule_lookup": 1, - "sub": 12, - "ignore": 1, - "GIT_SUBMODULE_IGNORE_ALL": 1, - "use_noid": 2, - "diff_from_iterators": 5, - "**diff_ptr": 1, - "ignore_prefix": 6, - "git_diff_list_alloc": 1, - "old_src": 1, - "new_src": 3, - "git_iterator_current": 2, - "git_iterator_advance": 5, - "delta_type": 8, - "git_buf_len": 1, - "git__prefixcmp": 2, - "git_buf_cstr": 1, - "S_ISDIR": 1, - "GIT_DIFF_RECURSE_UNTRACKED_DIRS": 1, - "git_iterator_current_is_ignored": 2, - "git_buf_sets": 1, - "git_iterator_advance_into_directory": 1, - "git_iterator_free": 4, - "*diff_ptr": 2, - "git_diff_tree_to_tree": 1, - "git_tree": 4, - "*old_tree": 3, - "*new_tree": 1, - "**diff": 4, - "diff_prefix_from_pathspec": 4, - "old_tree": 5, - "new_tree": 2, - "git_iterator_for_tree_range": 4, - "git_diff_index_to_tree": 1, - "git_iterator_for_index_range": 2, - "git_diff_workdir_to_index": 1, - "git_iterator_for_workdir_range": 2, - "git_diff_workdir_to_tree": 1, - "git_diff_merge": 1, - "*onto": 1, - "*from": 1, - "onto_pool": 7, - "git_vector": 1, - "onto_new": 6, - "j": 206, - "onto": 7, - "from": 16, - "deltas.length": 4, - "*o": 8, - "GIT_VECTOR_GET": 2, - "*f": 2, - "f": 184, - "o": 80, - "diff_delta__merge_like_cgit": 1, - "git_vector_swap": 1, - "git_pool_swap": 1, - "git_usage_string": 2, - "git_more_info_string": 2, - "N_": 1, - "startup_info": 3, - "git_startup_info": 2, - "use_pager": 8, - "pager_config": 3, - "*cmd": 5, - "want": 3, - "pager_command_config": 2, - "*var": 1, - "*data": 12, - "data": 69, - "prefixcmp": 3, - "var": 7, - "cmd": 46, - "git_config_maybe_bool": 1, - "value": 9, - "xstrdup": 2, - "check_pager_config": 3, - "c.cmd": 1, - "c.want": 2, - "c.value": 3, - "pager_program": 1, - "commit_pager_choice": 4, - "setenv": 1, - "setup_pager": 1, - "handle_options": 2, - "***argv": 2, - "*argc": 1, - "*envchanged": 1, - "**orig_argv": 1, - "*argv": 6, - "new_argv": 7, - "option_count": 1, - "alias_command": 4, - "trace_argv_printf": 3, - "*argcp": 4, - "subdir": 3, - "chdir": 2, - "die_errno": 3, - "errno": 20, - "saved_errno": 1, - "git_version_string": 1, - "GIT_VERSION": 1, - "RUN_SETUP": 81, - "RUN_SETUP_GENTLY": 16, - "USE_PAGER": 3, - "NEED_WORK_TREE": 18, - "cmd_struct": 4, - "option": 9, - "run_builtin": 2, - "help": 4, - "stat": 3, - "st": 2, - "argv": 54, - "setup_git_directory": 1, - "nongit_ok": 2, - "setup_git_directory_gently": 1, - "have_repository": 1, - "trace_repo_setup": 1, - "setup_work_tree": 1, - "fn": 5, - "fstat": 1, - "fileno": 1, - "stdout": 5, - "S_ISFIFO": 1, - "st.st_mode": 2, - "S_ISSOCK": 1, - "fflush": 2, - "ferror": 2, - "fclose": 5, - "handle_internal_command": 3, - "commands": 3, - "cmd_add": 2, - "cmd_annotate": 1, - "cmd_apply": 1, - "cmd_archive": 1, - "cmd_bisect__helper": 1, - "cmd_blame": 2, - "cmd_branch": 1, - "cmd_bundle": 1, - "cmd_cat_file": 1, - "cmd_check_attr": 1, - "cmd_check_ref_format": 1, - "cmd_checkout": 1, - "cmd_checkout_index": 1, - "cmd_cherry": 1, - "cmd_cherry_pick": 1, - "cmd_clean": 1, - "cmd_clone": 1, - "cmd_column": 1, - "cmd_commit": 1, - "cmd_commit_tree": 1, - "cmd_config": 1, - "cmd_count_objects": 1, - "cmd_describe": 1, - "cmd_diff": 1, - "cmd_diff_files": 1, - "cmd_diff_index": 1, - "cmd_diff_tree": 1, - "cmd_fast_export": 1, - "cmd_fetch": 1, - "cmd_fetch_pack": 1, - "cmd_fmt_merge_msg": 1, - "cmd_for_each_ref": 1, - "cmd_format_patch": 1, - "cmd_fsck": 2, - "cmd_gc": 1, - "cmd_get_tar_commit_id": 1, - "cmd_grep": 1, - "cmd_hash_object": 1, - "cmd_help": 1, - "cmd_index_pack": 1, - "cmd_init_db": 2, - "cmd_log": 1, - "cmd_ls_files": 1, - "cmd_ls_remote": 2, - "cmd_ls_tree": 1, - "cmd_mailinfo": 1, - "cmd_mailsplit": 1, - "cmd_merge": 1, - "cmd_merge_base": 1, - "cmd_merge_file": 1, - "cmd_merge_index": 1, - "cmd_merge_ours": 1, - "cmd_merge_recursive": 4, - "cmd_merge_tree": 1, - "cmd_mktag": 1, - "cmd_mktree": 1, - "cmd_mv": 1, - "cmd_name_rev": 1, - "cmd_notes": 1, - "cmd_pack_objects": 1, - "cmd_pack_redundant": 1, - "cmd_pack_refs": 1, - "cmd_patch_id": 1, - "cmd_prune": 1, - "cmd_prune_packed": 1, - "cmd_push": 1, - "cmd_read_tree": 1, - "cmd_receive_pack": 1, - "cmd_reflog": 1, - "cmd_remote": 1, - "cmd_remote_ext": 1, - "cmd_remote_fd": 1, - "cmd_replace": 1, - "cmd_repo_config": 1, - "cmd_rerere": 1, - "cmd_reset": 1, - "cmd_rev_list": 1, - "cmd_rev_parse": 1, - "cmd_revert": 1, - "cmd_rm": 1, - "cmd_send_pack": 1, - "cmd_shortlog": 1, - "cmd_show": 1, - "cmd_show_branch": 1, - "cmd_show_ref": 1, - "cmd_status": 1, - "cmd_stripspace": 1, - "cmd_symbolic_ref": 1, - "cmd_tag": 1, - "cmd_tar_tree": 1, - "cmd_unpack_file": 1, - "cmd_unpack_objects": 1, - "cmd_update_index": 1, - "cmd_update_ref": 1, - "cmd_update_server_info": 1, - "cmd_upload_archive": 1, - "cmd_upload_archive_writer": 1, - "cmd_var": 1, - "cmd_verify_pack": 1, - "cmd_verify_tag": 1, - "cmd_version": 1, - "cmd_whatchanged": 1, - "cmd_write_tree": 1, - "ext": 4, - "STRIP_EXTENSION": 1, - "*argv0": 1, - "argv0": 2, - "ARRAY_SIZE": 1, - "exit": 20, - "execv_dashed_external": 2, - "STRBUF_INIT": 1, - "*tmp": 1, - "strbuf_addf": 1, - "tmp": 6, - "cmd.buf": 1, - "run_command_v_opt": 1, - "RUN_SILENT_EXEC_FAILURE": 1, - "RUN_CLEAN_ON_EXIT": 1, - "ENOENT": 3, - "strbuf_release": 1, - "run_argv": 2, - "done_alias": 4, - "argcp": 2, - "handle_alias": 1, - "main": 3, - "git_extract_argv0_path": 1, - "git_setup_gettext": 1, - "printf": 4, - "list_common_cmds_help": 1, - "setup_path": 1, - "done_help": 3, - "was_alias": 3, - "fprintf": 18, - "stderr": 15, - "help_unknown_cmd": 1, - "strerror": 4, - "PPC_SHA1": 1, - "git_hash_ctx": 7, - "SHA_CTX": 3, - "*git_hash_new_ctx": 1, - "*ctx": 5, - "ctx": 16, - "SHA1_Init": 4, - "git_hash_free_ctx": 1, - "git_hash_init": 1, - "git_hash_update": 1, - "SHA1_Update": 3, - "git_hash_final": 1, - "*out": 3, - "SHA1_Final": 3, - "git_hash_buf": 1, - "git_hash_vec": 1, - "git_buf_vec": 1, - "*vec": 1, - "vec": 2, - ".data": 1, - ".len": 3, - "": 7, - "HELLO_H": 2, - "hello": 1, - "": 5, - "": 2, - "": 3, - "": 3, - "": 4, - "": 2, - "ULLONG_MAX": 10, - "MIN": 3, - "HTTP_PARSER_DEBUG": 4, - "SET_ERRNO": 47, - "e": 4, - "do": 21, - "parser": 334, - "http_errno": 11, - "error_lineno": 3, - "__LINE__": 50, - "CALLBACK_NOTIFY_": 3, - "FOR": 11, - "ER": 4, - "HTTP_PARSER_ERRNO": 10, - "HPE_OK": 10, - "settings": 6, - "on_##FOR": 4, - "HPE_CB_##FOR": 2, - "CALLBACK_NOTIFY": 10, - "CALLBACK_NOTIFY_NOADVANCE": 2, - "CALLBACK_DATA_": 4, - "LEN": 2, - "FOR##_mark": 7, - "CALLBACK_DATA": 10, - "CALLBACK_DATA_NOADVANCE": 6, - "MARK": 7, - "PROXY_CONNECTION": 4, - "CONNECTION": 4, - "CONTENT_LENGTH": 4, - "TRANSFER_ENCODING": 4, - "UPGRADE": 4, - "CHUNKED": 4, - "KEEP_ALIVE": 4, - "CLOSE": 4, - "*method_strings": 1, - "XX": 63, - "num": 24, - "string": 18, - "#string": 1, - "HTTP_METHOD_MAP": 3, - "#undef": 7, - "tokens": 5, - "int8_t": 3, - "unhex": 3, - "HTTP_PARSER_STRICT": 5, - "uint8_t": 6, - "normal_url_char": 3, - "T": 3, - "s_dead": 10, - "s_start_req_or_res": 4, - "s_res_or_resp_H": 3, - "s_start_res": 5, - "s_res_H": 3, - "s_res_HT": 4, - "s_res_HTT": 3, - "s_res_HTTP": 3, - "s_res_first_http_major": 3, - "s_res_http_major": 3, - "s_res_first_http_minor": 3, - "s_res_http_minor": 3, - "s_res_first_status_code": 3, - "s_res_status_code": 3, - "s_res_status": 3, - "s_res_line_almost_done": 4, - "s_start_req": 6, - "s_req_method": 4, - "s_req_spaces_before_url": 5, - "s_req_schema": 6, - "s_req_schema_slash": 6, - "s_req_schema_slash_slash": 6, - "s_req_host_start": 8, - "s_req_host_v6_start": 7, - "s_req_host_v6": 7, - "s_req_host_v6_end": 7, - "s_req_host": 8, - "s_req_port_start": 7, - "s_req_port": 6, - "s_req_path": 8, - "s_req_query_string_start": 8, - "s_req_query_string": 7, - "s_req_fragment_start": 7, - "s_req_fragment": 7, - "s_req_http_start": 3, - "s_req_http_H": 3, - "s_req_http_HT": 3, - "s_req_http_HTT": 3, - "s_req_http_HTTP": 3, - "s_req_first_http_major": 3, - "s_req_http_major": 3, - "s_req_first_http_minor": 3, - "s_req_http_minor": 3, - "s_req_line_almost_done": 4, - "s_header_field_start": 12, - "s_header_field": 4, - "s_header_value_start": 4, - "s_header_value": 5, - "s_header_value_lws": 3, - "s_header_almost_done": 6, - "s_chunk_size_start": 4, - "s_chunk_size": 3, - "s_chunk_parameters": 3, - "s_chunk_size_almost_done": 4, - "s_headers_almost_done": 4, - "s_headers_done": 4, - "s_chunk_data": 3, - "s_chunk_data_almost_done": 3, - "s_chunk_data_done": 3, - "s_body_identity": 3, - "s_body_identity_eof": 4, - "s_message_done": 3, - "PARSING_HEADER": 2, - "header_states": 1, - "h_general": 23, - "0": 11, - "h_C": 3, - "h_CO": 3, - "h_CON": 3, - "h_matching_connection": 3, - "h_matching_proxy_connection": 3, - "h_matching_content_length": 3, - "h_matching_transfer_encoding": 3, - "h_matching_upgrade": 3, - "h_connection": 6, - "h_content_length": 5, - "h_transfer_encoding": 5, - "h_upgrade": 4, - "h_matching_transfer_encoding_chunked": 3, - "h_matching_connection_keep_alive": 3, - "h_matching_connection_close": 3, - "h_transfer_encoding_chunked": 4, - "h_connection_keep_alive": 4, - "h_connection_close": 4, - "Macros": 1, - "character": 11, - "classes": 1, - "depends": 1, - "on": 4, - "strict": 2, - "define": 14, - "CR": 18, - "r": 58, - "LF": 21, - "LOWER": 7, - "0x20": 1, - "IS_ALPHA": 5, - "z": 47, - "IS_NUM": 14, - "9": 1, - "IS_ALPHANUM": 3, - "IS_HEX": 2, - "TOKEN": 4, - "IS_URL_CHAR": 6, - "IS_HOST_CHAR": 4, - "0x80": 1, - "endif": 6, - "start_state": 1, - "HTTP_REQUEST": 7, - "cond": 1, - "HPE_STRICT": 1, - "HTTP_STRERROR_GEN": 3, - "#n": 1, - "*description": 1, - "http_strerror_tab": 7, - "HTTP_ERRNO_MAP": 3, - "http_message_needs_eof": 4, - "http_parser": 13, - "*parser": 9, - "parse_url_char": 5, - "ch": 145, - "http_parser_execute": 2, - "http_parser_settings": 5, - "*settings": 2, - "unhex_val": 7, - "*header_field_mark": 1, - "*header_value_mark": 1, - "*url_mark": 1, - "*body_mark": 1, - "message_complete": 7, - "HPE_INVALID_EOF_STATE": 1, - "header_field_mark": 2, - "header_value_mark": 2, - "url_mark": 2, - "nread": 7, - "HTTP_MAX_HEADER_SIZE": 2, - "HPE_HEADER_OVERFLOW": 1, - "reexecute_byte": 7, - "HPE_CLOSED_CONNECTION": 1, - "content_length": 27, - "message_begin": 3, - "HTTP_RESPONSE": 3, - "HPE_INVALID_CONSTANT": 3, - "method": 39, - "HTTP_HEAD": 2, - "index": 58, - "STRICT_CHECK": 15, - "HPE_INVALID_VERSION": 12, - "http_major": 11, - "http_minor": 11, - "HPE_INVALID_STATUS": 3, - "status_code": 8, - "HPE_INVALID_METHOD": 4, - "http_method": 4, - "HTTP_CONNECT": 4, - "HTTP_DELETE": 1, - "HTTP_GET": 1, - "HTTP_LOCK": 1, - "HTTP_MKCOL": 2, - "HTTP_NOTIFY": 1, - "HTTP_OPTIONS": 1, - "HTTP_POST": 2, - "HTTP_REPORT": 1, - "HTTP_SUBSCRIBE": 2, - "HTTP_TRACE": 1, - "HTTP_UNLOCK": 2, - "*matcher": 1, - "matcher": 3, - "method_strings": 2, - "HTTP_CHECKOUT": 1, - "HTTP_COPY": 1, - "HTTP_MOVE": 1, - "HTTP_MERGE": 1, - "HTTP_MSEARCH": 1, - "HTTP_MKACTIVITY": 1, - "HTTP_SEARCH": 1, - "HTTP_PROPFIND": 2, - "HTTP_PUT": 2, - "HTTP_PATCH": 1, - "HTTP_PURGE": 1, - "HTTP_UNSUBSCRIBE": 1, - "HTTP_PROPPATCH": 1, - "url": 4, - "HPE_INVALID_URL": 4, - "HPE_LF_EXPECTED": 1, - "HPE_INVALID_HEADER_TOKEN": 2, - "header_field": 5, - "header_state": 42, - "header_value": 6, - "F_UPGRADE": 3, - "HPE_INVALID_CONTENT_LENGTH": 4, - "uint64_t": 8, - "F_CONNECTION_KEEP_ALIVE": 3, - "F_CONNECTION_CLOSE": 3, - "F_CHUNKED": 11, - "F_TRAILING": 3, - "NEW_MESSAGE": 6, - "upgrade": 3, - "on_headers_complete": 3, - "F_SKIPBODY": 4, - "HPE_CB_headers_complete": 1, - "to_read": 6, - "body": 6, - "body_mark": 2, - "HPE_INVALID_CHUNK_SIZE": 2, - "HPE_INVALID_INTERNAL_STATE": 1, - "1": 2, - "HPE_UNKNOWN": 1, - "Does": 1, - "the": 91, - "need": 5, - "to": 37, - "see": 2, - "an": 2, - "EOF": 26, - "find": 1, - "end": 48, - "of": 44, - "message": 3, - "http_should_keep_alive": 2, - "http_method_str": 1, - "m": 8, - "http_parser_init": 2, - "http_parser_type": 3, - "http_errno_name": 1, - "/sizeof": 4, - ".name": 1, - "http_errno_description": 1, - ".description": 1, - "http_parser_parse_url": 2, - "buflen": 3, - "is_connect": 4, - "http_parser_url": 3, - "*u": 2, - "http_parser_url_fields": 2, - "uf": 14, - "old_uf": 4, - "u": 18, - "port": 7, - "field_set": 5, - "UF_MAX": 3, - "UF_SCHEMA": 2, - "UF_HOST": 3, - "UF_PORT": 5, - "UF_PATH": 2, - "UF_QUERY": 2, - "UF_FRAGMENT": 2, - "field_data": 5, - ".off": 2, - "xffff": 1, - "uint16_t": 12, - "http_parser_pause": 2, - "paused": 3, - "HPE_PAUSED": 2, - "http_parser_h": 2, - "__cplusplus": 18, - "HTTP_PARSER_VERSION_MAJOR": 1, - "HTTP_PARSER_VERSION_MINOR": 1, - "": 2, - "_WIN32": 3, - "__MINGW32__": 1, - "_MSC_VER": 5, - "__int8": 2, - "__int16": 2, - "int16_t": 1, - "__int32": 2, - "int32_t": 112, - "__int64": 3, - "int64_t": 2, - "ssize_t": 1, - "": 1, - "*1024": 4, - "DELETE": 2, - "GET": 2, - "HEAD": 2, - "POST": 2, - "PUT": 2, - "CONNECT": 2, - "OPTIONS": 2, - "TRACE": 2, - "COPY": 2, - "LOCK": 2, - "MKCOL": 2, - "MOVE": 2, - "PROPFIND": 2, - "PROPPATCH": 2, - "SEARCH": 3, - "UNLOCK": 2, - "REPORT": 2, - "MKACTIVITY": 2, - "CHECKOUT": 2, - "MERGE": 2, - "MSEARCH": 1, - "M": 1, - "NOTIFY": 2, - "SUBSCRIBE": 2, - "UNSUBSCRIBE": 2, - "PATCH": 2, - "PURGE": 2, - "HTTP_##name": 1, - "HTTP_BOTH": 1, - "OK": 1, - "CB_message_begin": 1, - "CB_url": 1, - "CB_header_field": 1, - "CB_header_value": 1, - "CB_headers_complete": 1, - "CB_body": 1, - "CB_message_complete": 1, - "INVALID_EOF_STATE": 1, - "HEADER_OVERFLOW": 1, - "CLOSED_CONNECTION": 1, - "INVALID_VERSION": 1, - "INVALID_STATUS": 1, - "INVALID_METHOD": 1, - "INVALID_URL": 1, - "INVALID_HOST": 1, - "INVALID_PORT": 1, - "INVALID_PATH": 1, - "INVALID_QUERY_STRING": 1, - "INVALID_FRAGMENT": 1, - "LF_EXPECTED": 1, - "INVALID_HEADER_TOKEN": 1, - "INVALID_CONTENT_LENGTH": 1, - "INVALID_CHUNK_SIZE": 1, - "INVALID_CONSTANT": 1, - "INVALID_INTERNAL_STATE": 1, - "STRICT": 1, - "PAUSED": 1, - "UNKNOWN": 1, - "HTTP_ERRNO_GEN": 3, - "HPE_##n": 1, - "HTTP_PARSER_ERRNO_LINE": 2, - "short": 6, - "http_cb": 3, - "on_message_begin": 1, - "http_data_cb": 4, - "on_url": 1, - "on_header_field": 1, - "on_header_value": 1, - "on_body": 1, - "on_message_complete": 1, - "off": 8, - "*http_method_str": 1, - "*http_errno_name": 1, - "*http_errno_description": 1, - "strncasecmp": 2, - "_strnicmp": 1, - "REF_TABLE_SIZE": 1, - "BUFFER_BLOCK": 5, - "BUFFER_SPAN": 9, - "MKD_LI_END": 1, - "gperf_case_strncmp": 1, - "s1": 6, - "s2": 6, - "GPERF_DOWNCASE": 1, - "GPERF_CASE_STRNCMP": 1, - "link_ref": 2, - "*link": 1, - "*title": 1, - "sd_markdown": 6, - "tag": 1, - "tag_len": 3, - "w": 6, - "is_empty": 4, - "htmlblock_end": 3, - "*curtag": 2, - "*rndr": 4, - "start_of_line": 2, - "tag_size": 3, - "curtag": 8, - "end_tag": 4, - "block_lines": 3, - "htmlblock_end_tag": 1, - "rndr": 25, - "parse_htmlblock": 1, - "*ob": 3, - "do_render": 4, - "tag_end": 7, - "work": 4, - "find_block_tag": 1, - "work.size": 5, - "cb.blockhtml": 6, - "ob": 14, - "opaque": 8, - "parse_table_row": 1, - "columns": 3, - "*col_data": 1, - "header_flag": 3, - "col": 9, - "*row_work": 1, - "cb.table_cell": 3, - "cb.table_row": 2, - "row_work": 4, - "rndr_newbuf": 2, - "cell_start": 5, - "cell_end": 6, - "*cell_work": 1, - "cell_work": 3, - "_isspace": 3, - "parse_inline": 1, - "col_data": 2, - "rndr_popbuf": 2, - "empty_cell": 2, - "parse_table_header": 1, - "*columns": 2, - "**column_data": 1, - "pipes": 23, - "header_end": 7, - "under_end": 1, - "*column_data": 1, - "calloc": 1, - "beg": 10, - "doc_size": 6, - "document": 9, - "UTF8_BOM": 1, - "is_ref": 1, - "md": 18, - "refs": 2, - "expand_tabs": 1, - "text": 22, - "bufputc": 2, - "bufgrow": 1, - "MARKDOWN_GROW": 1, - "cb.doc_header": 2, - "parse_block": 1, - "cb.doc_footer": 2, - "bufrelease": 3, - "free_link_refs": 1, - "work_bufs": 8, - ".size": 2, - "sd_markdown_free": 1, - "*md": 1, - ".asize": 2, - ".item": 2, - "stack_free": 2, - "sd_version": 1, - "*ver_major": 2, - "*ver_minor": 2, - "*ver_revision": 2, - "SUNDOWN_VER_MAJOR": 1, - "SUNDOWN_VER_MINOR": 1, - "SUNDOWN_VER_REVISION": 1, - "": 4, - "": 2, - "": 1, - "": 1, - "": 2, - "__APPLE__": 2, - "TARGET_OS_IPHONE": 1, - "**environ": 1, - "uv__chld": 2, - "EV_P_": 1, - "ev_child*": 1, - "watcher": 4, - "revents": 2, - "rstatus": 1, - "exit_status": 3, - "term_signal": 3, - "uv_process_t": 1, - "*process": 1, - "process": 19, - "child_watcher": 5, - "EV_CHILD": 1, - "ev_child_stop": 2, - "EV_A_": 1, - "WIFEXITED": 1, - "WEXITSTATUS": 2, - "WIFSIGNALED": 2, - "WTERMSIG": 2, - "exit_cb": 3, - "uv__make_socketpair": 2, - "fds": 20, - "SOCK_NONBLOCK": 2, - "fl": 8, - "SOCK_CLOEXEC": 1, - "UV__F_NONBLOCK": 5, - "socketpair": 2, - "AF_UNIX": 2, - "SOCK_STREAM": 2, - "uv__cloexec": 4, - "uv__nonblock": 5, - "uv__make_pipe": 2, - "__linux__": 3, - "UV__O_CLOEXEC": 1, - "UV__O_NONBLOCK": 1, - "uv__pipe2": 1, - "ENOSYS": 1, - "pipe": 1, - "uv__process_init_stdio": 2, - "uv_stdio_container_t*": 4, - "container": 17, - "writable": 8, - "UV_IGNORE": 2, - "UV_CREATE_PIPE": 4, - "UV_INHERIT_FD": 3, - "UV_INHERIT_STREAM": 2, - "data.stream": 7, - "UV_NAMED_PIPE": 2, - "data.fd": 1, - "uv__process_stdio_flags": 2, - "uv_pipe_t*": 1, - "ipc": 1, - "UV_STREAM_READABLE": 2, - "UV_STREAM_WRITABLE": 2, - "uv__process_open_stream": 2, - "child_fd": 3, - "close": 13, - "uv__stream_open": 1, - "uv_stream_t*": 2, - "uv__process_close_stream": 2, - "uv__stream_close": 1, - "uv__process_child_init": 2, - "uv_process_options_t": 2, - "options": 62, - "stdio_count": 7, - "int*": 22, - "options.flags": 4, - "UV_PROCESS_DETACHED": 2, - "setsid": 2, - "close_fd": 2, - "use_fd": 7, - "open": 4, - "O_RDONLY": 1, - "O_RDWR": 2, - "perror": 5, - "_exit": 6, - "dup2": 4, - "options.cwd": 2, - "UV_PROCESS_SETGID": 2, - "setgid": 1, - "options.gid": 1, - "UV_PROCESS_SETUID": 2, - "setuid": 1, - "options.uid": 1, - "environ": 4, - "options.env": 1, - "execvp": 1, - "options.file": 2, - "options.args": 1, - "SPAWN_WAIT_EXEC": 5, - "uv_spawn": 1, - "uv_loop_t*": 1, - "loop": 9, - "uv_process_t*": 3, - "char**": 7, - "save_our_env": 3, - "options.stdio_count": 4, - "malloc": 3, - "signal_pipe": 7, - "pollfd": 1, - "pfd": 2, - "pid_t": 2, - "pid": 13, - "UV_PROCESS_WINDOWS_VERBATIM_ARGUMENTS": 1, - "uv__handle_init": 1, - "uv_handle_t*": 1, - "UV_PROCESS": 1, - "counters.process_init": 1, - "uv__handle_start": 1, - "options.exit_cb": 1, - "options.stdio": 3, - "fork": 2, - "pfd.fd": 1, - "pfd.events": 1, - "POLLIN": 1, - "POLLHUP": 1, - "pfd.revents": 1, - "poll": 1, - "EINTR": 1, - "ev_child_init": 1, - "ev_child_start": 1, - "ev": 2, - "child_watcher.data": 1, - "uv__set_sys_error": 2, - "uv_process_kill": 1, - "signum": 4, - "kill": 4, - "uv_err_t": 1, - "uv_kill": 1, - "uv__new_sys_error": 1, - "uv_ok_": 1, - "uv__process_close": 1, - "handle": 10, - "uv__handle_stop": 1, - "VALUE": 13, - "rb_cRDiscount": 4, - "rb_rdiscount_to_html": 2, - "self": 9, - "*res": 2, - "szres": 8, - "encoding": 14, - "rb_funcall": 14, - "rb_intern": 15, - "rb_str_buf_new": 2, - "Check_Type": 2, - "T_STRING": 2, - "rb_rdiscount__get_flags": 3, - "MMIOT": 2, - "*doc": 2, - "mkd_string": 2, - "RSTRING_PTR": 2, - "RSTRING_LEN": 2, - "mkd_compile": 2, - "doc": 6, - "mkd_document": 1, - "res": 4, - "rb_str_cat": 4, - "mkd_cleanup": 2, - "rb_respond_to": 1, - "rb_rdiscount_toc_content": 2, - "mkd_toc": 1, - "ruby_obj": 11, - "MKD_TABSTOP": 1, - "MKD_NOHEADER": 1, - "Qtrue": 10, - "MKD_NOPANTS": 1, - "MKD_NOHTML": 1, - "MKD_TOC": 1, - "MKD_NOIMAGE": 1, - "MKD_NOLINKS": 1, - "MKD_NOTABLES": 1, - "MKD_STRICT": 1, - "MKD_AUTOLINK": 1, - "MKD_SAFELINK": 1, - "MKD_NO_EXT": 1, - "Init_rdiscount": 1, - "rb_define_class": 1, - "rb_cObject": 1, - "rb_define_method": 2, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 2, - "": 1, - "": 1, - "": 3, - "": 1, - "sharedObjectsStruct": 1, - "shared": 1, - "double": 126, - "R_Zero": 2, - "R_PosInf": 2, - "R_NegInf": 2, - "R_Nan": 2, - "redisServer": 1, - "server": 1, - "redisCommand": 6, - "*commandTable": 1, - "redisCommandTable": 5, - "getCommand": 1, - "setCommand": 1, - "noPreloadGetKeys": 6, - "setnxCommand": 1, - "setexCommand": 1, - "psetexCommand": 1, - "appendCommand": 1, - "strlenCommand": 1, - "delCommand": 1, - "existsCommand": 1, - "setbitCommand": 1, - "getbitCommand": 1, - "setrangeCommand": 1, - "getrangeCommand": 2, - "incrCommand": 1, - "decrCommand": 1, - "mgetCommand": 1, - "rpushCommand": 1, - "lpushCommand": 1, - "rpushxCommand": 1, - "lpushxCommand": 1, - "linsertCommand": 1, - "rpopCommand": 1, - "lpopCommand": 1, - "brpopCommand": 1, - "brpoplpushCommand": 1, - "blpopCommand": 1, - "llenCommand": 1, - "lindexCommand": 1, - "lsetCommand": 1, - "lrangeCommand": 1, - "ltrimCommand": 1, - "lremCommand": 1, - "rpoplpushCommand": 1, - "saddCommand": 1, - "sremCommand": 1, - "smoveCommand": 1, - "sismemberCommand": 1, - "scardCommand": 1, - "spopCommand": 1, - "srandmemberCommand": 1, - "sinterCommand": 2, - "sinterstoreCommand": 1, - "sunionCommand": 1, - "sunionstoreCommand": 1, - "sdiffCommand": 1, - "sdiffstoreCommand": 1, - "zaddCommand": 1, - "zincrbyCommand": 1, - "zremCommand": 1, - "zremrangebyscoreCommand": 1, - "zremrangebyrankCommand": 1, - "zunionstoreCommand": 1, - "zunionInterGetKeys": 4, - "zinterstoreCommand": 1, - "zrangeCommand": 1, - "zrangebyscoreCommand": 1, - "zrevrangebyscoreCommand": 1, - "zcountCommand": 1, - "zrevrangeCommand": 1, - "zcardCommand": 1, - "zscoreCommand": 1, - "zrankCommand": 1, - "zrevrankCommand": 1, - "hsetCommand": 1, - "hsetnxCommand": 1, - "hgetCommand": 1, - "hmsetCommand": 1, - "hmgetCommand": 1, - "hincrbyCommand": 1, - "hincrbyfloatCommand": 1, - "hdelCommand": 1, - "hlenCommand": 1, - "hkeysCommand": 1, - "hvalsCommand": 1, - "hgetallCommand": 1, - "hexistsCommand": 1, - "incrbyCommand": 1, - "decrbyCommand": 1, - "incrbyfloatCommand": 1, - "getsetCommand": 1, - "msetCommand": 1, - "msetnxCommand": 1, - "randomkeyCommand": 1, - "selectCommand": 1, - "moveCommand": 1, - "renameCommand": 1, - "renameGetKeys": 2, - "renamenxCommand": 1, - "expireCommand": 1, - "expireatCommand": 1, - "pexpireCommand": 1, - "pexpireatCommand": 1, - "keysCommand": 1, - "dbsizeCommand": 1, - "authCommand": 3, - "pingCommand": 2, - "echoCommand": 2, - "saveCommand": 1, - "bgsaveCommand": 1, - "bgrewriteaofCommand": 1, - "shutdownCommand": 2, - "lastsaveCommand": 1, - "typeCommand": 1, - "multiCommand": 2, - "execCommand": 2, - "discardCommand": 2, - "syncCommand": 1, - "flushdbCommand": 1, - "flushallCommand": 1, - "sortCommand": 1, - "infoCommand": 4, - "monitorCommand": 2, - "ttlCommand": 1, - "pttlCommand": 1, - "persistCommand": 1, - "slaveofCommand": 2, - "debugCommand": 1, - "configCommand": 1, - "subscribeCommand": 2, - "unsubscribeCommand": 2, - "psubscribeCommand": 2, - "punsubscribeCommand": 2, - "publishCommand": 1, - "watchCommand": 2, - "unwatchCommand": 1, - "clusterCommand": 1, - "restoreCommand": 1, - "migrateCommand": 1, - "askingCommand": 1, - "dumpCommand": 1, - "objectCommand": 1, - "clientCommand": 1, - "evalCommand": 1, - "evalShaCommand": 1, - "slowlogCommand": 1, - "scriptCommand": 2, - "timeCommand": 2, - "bitopCommand": 1, - "bitcountCommand": 1, - "redisLogRaw": 3, - "level": 12, - "syslogLevelMap": 2, - "LOG_DEBUG": 1, - "LOG_INFO": 1, - "LOG_NOTICE": 1, - "LOG_WARNING": 1, - "FILE": 3, - "*fp": 3, - "rawmode": 2, - "REDIS_LOG_RAW": 2, - "xff": 3, - "server.verbosity": 4, - "fp": 13, - "server.logfile": 8, - "fopen": 3, - "msg": 10, - "timeval": 4, - "tv": 8, - "gettimeofday": 4, - "strftime": 1, - "localtime": 1, - "tv.tv_sec": 4, - "snprintf": 2, - "tv.tv_usec/1000": 1, - "getpid": 7, - "server.syslog_enabled": 3, - "syslog": 1, - "redisLog": 33, - "...": 127, - "va_list": 3, - "ap": 4, - "REDIS_MAX_LOGMSG_LEN": 1, - "va_start": 3, - "vsnprintf": 1, - "va_end": 3, - "redisLogFromHandler": 2, - "server.daemonize": 5, - "O_APPEND": 2, - "O_CREAT": 2, - "O_WRONLY": 2, - "STDOUT_FILENO": 2, - "ll2string": 3, - "write": 7, - "time": 10, - "oom": 3, - "REDIS_WARNING": 19, - "sleep": 1, - "abort": 1, - "ustime": 7, - "ust": 7, - "*1000000": 1, - "tv.tv_usec": 3, - "mstime": 5, - "/1000": 1, - "exitFromChild": 1, - "retcode": 3, - "COVERAGE_TEST": 1, - "dictVanillaFree": 1, - "*privdata": 8, - "*val": 4, - "DICT_NOTUSED": 6, - "privdata": 8, - "zfree": 2, - "dictListDestructor": 2, - "listRelease": 1, - "list*": 1, - "dictSdsKeyCompare": 6, - "*key1": 4, - "*key2": 4, - "l1": 4, - "l2": 3, - "sdslen": 14, - "sds": 13, - "key1": 5, - "key2": 5, - "dictSdsKeyCaseCompare": 2, - "strcasecmp": 13, - "dictRedisObjectDestructor": 7, - "decrRefCount": 6, - "dictSdsDestructor": 4, - "sdsfree": 2, - "dictObjKeyCompare": 2, - "robj": 7, - "*o1": 2, - "*o2": 2, - "o1": 7, - "ptr": 18, - "o2": 7, - "dictObjHash": 2, - "key": 9, - "dictGenHashFunction": 5, - "dictSdsHash": 4, - "char*": 166, - "dictSdsCaseHash": 2, - "dictGenCaseHashFunction": 1, - "dictEncObjKeyCompare": 4, - "robj*": 3, - "REDIS_ENCODING_INT": 4, - "getDecodedObject": 3, - "dictEncObjHash": 4, - "REDIS_ENCODING_RAW": 1, - "dictType": 8, - "setDictType": 1, - "zsetDictType": 1, - "dbDictType": 2, - "keyptrDictType": 2, - "commandTableDictType": 2, - "hashDictType": 1, - "keylistDictType": 4, - "clusterNodesDictType": 1, - "htNeedsResize": 3, - "dict": 11, - "*dict": 5, - "used": 10, - "dictSlots": 3, - "dictSize": 10, - "DICT_HT_INITIAL_SIZE": 2, - "used*100/size": 1, - "REDIS_HT_MINFILL": 1, - "tryResizeHashTables": 2, - "server.dbnum": 8, - "server.db": 23, - ".dict": 9, - "dictResize": 2, - ".expires": 8, - "incrementallyRehash": 2, - "dictIsRehashing": 2, - "dictRehashMilliseconds": 2, - "updateDictResizePolicy": 2, - "server.rdb_child_pid": 12, - "server.aof_child_pid": 10, - "dictEnableResize": 1, - "dictDisableResize": 1, - "activeExpireCycle": 2, - "iteration": 6, - "start": 10, - "timelimit": 5, - "*REDIS_EXPIRELOOKUPS_TIME_PERC/REDIS_HZ/100": 1, - "expired": 4, - "redisDb": 3, - "expires": 3, - "slots": 2, - "now": 5, - "num*100/slots": 1, - "REDIS_EXPIRELOOKUPS_PER_CRON": 2, - "dictEntry": 2, - "*de": 2, - "de": 12, - "dictGetRandomKey": 4, - "dictGetSignedIntegerVal": 1, - "dictGetKey": 4, - "*keyobj": 2, - "createStringObject": 11, - "propagateExpire": 2, - "keyobj": 6, - "dbDelete": 2, - "server.stat_expiredkeys": 3, - "xf": 1, - "REDIS_EXPIRELOOKUPS_PER_CRON/4": 1, - "updateLRUClock": 3, - "server.lruclock": 2, - "server.unixtime/REDIS_LRU_CLOCK_RESOLUTION": 1, - "REDIS_LRU_CLOCK_MAX": 1, - "trackOperationsPerSecond": 2, - "server.ops_sec_last_sample_time": 3, - "ops": 1, - "server.stat_numcommands": 4, - "server.ops_sec_last_sample_ops": 3, - "ops_sec": 3, - "ops*1000/t": 1, - "server.ops_sec_samples": 4, - "server.ops_sec_idx": 4, - "%": 2, - "REDIS_OPS_SEC_SAMPLES": 3, - "getOperationsPerSecond": 2, - "sum": 3, - "clientsCronHandleTimeout": 2, - "redisClient": 12, - "time_t": 4, - "server.unixtime": 10, - "server.maxidletime": 3, - "REDIS_SLAVE": 3, - "REDIS_MASTER": 2, - "REDIS_BLOCKED": 2, - "pubsub_channels": 2, - "listLength": 14, - "pubsub_patterns": 2, - "lastinteraction": 3, - "REDIS_VERBOSE": 3, - "freeClient": 1, - "bpop.timeout": 2, - "addReply": 13, - "shared.nullmultibulk": 2, - "unblockClientWaitingData": 1, - "clientsCronResizeQueryBuffer": 2, - "querybuf_size": 3, - "sdsAllocSize": 1, - "querybuf": 6, - "idletime": 2, - "REDIS_MBULK_BIG_ARG": 1, - "querybuf_size/": 1, - "querybuf_peak": 2, - "sdsavail": 1, - "sdsRemoveFreeSpace": 1, - "clientsCron": 2, - "numclients": 3, - "server.clients": 7, - "iterations": 4, - "numclients/": 1, - "REDIS_HZ*10": 1, - "listNode": 4, - "*head": 1, - "listRotate": 1, - "head": 3, - "listFirst": 2, - "listNodeValue": 3, - "run_with_period": 6, - "_ms_": 2, - "loops": 2, - "/REDIS_HZ": 2, - "serverCron": 2, - "aeEventLoop": 2, - "*eventLoop": 2, - "*clientData": 1, - "server.cronloops": 3, - "REDIS_NOTUSED": 5, - "eventLoop": 2, - "clientData": 1, - "server.watchdog_period": 3, - "watchdogScheduleSignal": 1, - "zmalloc_used_memory": 8, - "server.stat_peak_memory": 5, - "server.shutdown_asap": 3, - "prepareForShutdown": 2, - "REDIS_OK": 23, - "vkeys": 8, - "server.activerehashing": 2, - "server.slaves": 9, - "server.aof_rewrite_scheduled": 4, - "rewriteAppendOnlyFileBackground": 2, "statloc": 5, - "wait3": 1, - "WNOHANG": 1, - "exitcode": 3, - "bysignal": 4, - "backgroundSaveDoneHandler": 1, - "backgroundRewriteDoneHandler": 1, - "server.saveparamslen": 3, - "saveparam": 1, - "*sp": 1, - "server.saveparams": 2, - "server.dirty": 3, - "sp": 4, - "changes": 2, - "server.lastsave": 3, - "seconds": 2, - "REDIS_NOTICE": 13, - "rdbSaveBackground": 1, - "server.rdb_filename": 4, - "server.aof_rewrite_perc": 3, - "server.aof_current_size": 2, - "server.aof_rewrite_min_size": 2, - "base": 1, - "server.aof_rewrite_base_size": 4, - "growth": 3, - "server.aof_current_size*100/base": 1, - "server.aof_flush_postponed_start": 2, - "flushAppendOnlyFile": 2, - "server.masterhost": 7, - "freeClientsInAsyncFreeQueue": 1, - "replicationCron": 1, - "server.cluster_enabled": 6, - "clusterCron": 1, - "beforeSleep": 2, - "*ln": 3, - "server.unblocked_clients": 4, - "ln": 8, - "redisAssert": 1, - "listDelNode": 1, - "REDIS_UNBLOCKED": 1, - "server.current_client": 3, - "processInputBuffer": 1, - "createSharedObjects": 2, - "shared.crlf": 2, - "createObject": 31, - "REDIS_STRING": 31, - "sdsnew": 27, - "shared.ok": 3, - "shared.err": 1, - "shared.emptybulk": 1, - "shared.czero": 1, - "shared.cone": 1, - "shared.cnegone": 1, - "shared.nullbulk": 1, - "shared.emptymultibulk": 1, - "shared.pong": 2, - "shared.queued": 2, - "shared.wrongtypeerr": 1, - "shared.nokeyerr": 1, - "shared.syntaxerr": 2, - "shared.sameobjecterr": 1, - "shared.outofrangeerr": 1, - "shared.noscripterr": 1, - "shared.loadingerr": 2, - "shared.slowscripterr": 2, - "shared.masterdownerr": 2, - "shared.bgsaveerr": 2, - "shared.roslaveerr": 2, - "shared.oomerr": 2, - "shared.space": 1, - "shared.colon": 1, - "shared.plus": 1, - "REDIS_SHARED_SELECT_CMDS": 1, - "shared.select": 1, - "sdscatprintf": 24, - "sdsempty": 8, - "shared.messagebulk": 1, - "shared.pmessagebulk": 1, - "shared.subscribebulk": 1, - "shared.unsubscribebulk": 1, - "shared.psubscribebulk": 1, - "shared.punsubscribebulk": 1, - "shared.del": 1, - "shared.rpop": 1, - "shared.lpop": 1, - "REDIS_SHARED_INTEGERS": 1, - "shared.integers": 2, - "void*": 135, - "REDIS_SHARED_BULKHDR_LEN": 1, - "shared.mbulkhdr": 1, - "shared.bulkhdr": 1, - "initServerConfig": 2, - "getRandomHexChars": 1, - "server.runid": 3, - "REDIS_RUN_ID_SIZE": 2, - "server.arch_bits": 3, - "server.port": 7, - "REDIS_SERVERPORT": 1, - "server.bindaddr": 2, - "server.unixsocket": 7, - "server.unixsocketperm": 2, - "server.ipfd": 9, - "server.sofd": 9, - "REDIS_DEFAULT_DBNUM": 1, - "REDIS_MAXIDLETIME": 1, - "server.client_max_querybuf_len": 1, - "REDIS_MAX_QUERYBUF_LEN": 1, - "server.loading": 4, - "server.syslog_ident": 2, - "zstrdup": 5, - "server.syslog_facility": 2, - "LOG_LOCAL0": 1, - "server.aof_state": 7, - "REDIS_AOF_OFF": 5, - "server.aof_fsync": 1, - "AOF_FSYNC_EVERYSEC": 1, - "server.aof_no_fsync_on_rewrite": 1, - "REDIS_AOF_REWRITE_PERC": 1, - "REDIS_AOF_REWRITE_MIN_SIZE": 1, - "server.aof_last_fsync": 1, - "server.aof_rewrite_time_last": 2, - "server.aof_rewrite_time_start": 2, - "server.aof_delayed_fsync": 2, - "server.aof_fd": 4, - "server.aof_selected_db": 1, - "server.pidfile": 3, - "server.aof_filename": 3, - "server.requirepass": 4, - "server.rdb_compression": 1, - "server.rdb_checksum": 1, - "server.maxclients": 6, - "REDIS_MAX_CLIENTS": 1, - "server.bpop_blocked_clients": 2, - "server.maxmemory": 6, - "server.maxmemory_policy": 11, - "REDIS_MAXMEMORY_VOLATILE_LRU": 3, - "server.maxmemory_samples": 3, - "server.hash_max_ziplist_entries": 1, - "REDIS_HASH_MAX_ZIPLIST_ENTRIES": 1, - "server.hash_max_ziplist_value": 1, - "REDIS_HASH_MAX_ZIPLIST_VALUE": 1, - "server.list_max_ziplist_entries": 1, - "REDIS_LIST_MAX_ZIPLIST_ENTRIES": 1, - "server.list_max_ziplist_value": 1, - "REDIS_LIST_MAX_ZIPLIST_VALUE": 1, - "server.set_max_intset_entries": 1, - "REDIS_SET_MAX_INTSET_ENTRIES": 1, - "server.zset_max_ziplist_entries": 1, - "REDIS_ZSET_MAX_ZIPLIST_ENTRIES": 1, - "server.zset_max_ziplist_value": 1, - "REDIS_ZSET_MAX_ZIPLIST_VALUE": 1, - "server.repl_ping_slave_period": 1, - "REDIS_REPL_PING_SLAVE_PERIOD": 1, - "server.repl_timeout": 1, - "REDIS_REPL_TIMEOUT": 1, - "server.cluster.configfile": 1, - "server.lua_caller": 1, - "server.lua_time_limit": 1, - "REDIS_LUA_TIME_LIMIT": 1, - "server.lua_client": 1, - "server.lua_timedout": 2, - "resetServerSaveParams": 2, - "appendServerSaveParams": 3, - "*60": 1, - "server.masterauth": 1, - "server.masterport": 2, - "server.master": 3, - "server.repl_state": 6, - "REDIS_REPL_NONE": 1, - "server.repl_syncio_timeout": 1, - "REDIS_REPL_SYNCIO_TIMEOUT": 1, - "server.repl_serve_stale_data": 2, - "server.repl_slave_ro": 2, - "server.repl_down_since": 2, - "server.client_obuf_limits": 9, - "REDIS_CLIENT_LIMIT_CLASS_NORMAL": 3, - ".hard_limit_bytes": 3, - ".soft_limit_bytes": 3, - ".soft_limit_seconds": 3, - "REDIS_CLIENT_LIMIT_CLASS_SLAVE": 3, - "*1024*256": 1, - "*1024*64": 1, - "REDIS_CLIENT_LIMIT_CLASS_PUBSUB": 3, - "*1024*32": 1, - "*1024*8": 1, - "/R_Zero": 2, - "R_Zero/R_Zero": 1, - "server.commands": 1, - "dictCreate": 6, - "populateCommandTable": 2, - "server.delCommand": 1, - "lookupCommandByCString": 3, - "server.multiCommand": 1, - "server.lpushCommand": 1, - "server.slowlog_log_slower_than": 1, - "REDIS_SLOWLOG_LOG_SLOWER_THAN": 1, - "server.slowlog_max_len": 1, - "REDIS_SLOWLOG_MAX_LEN": 1, - "server.assert_failed": 1, - "server.assert_file": 1, - "server.assert_line": 1, - "server.bug_report_start": 1, - "adjustOpenFilesLimit": 2, - "rlim_t": 3, - "maxfiles": 6, - "rlimit": 1, - "limit": 3, - "getrlimit": 1, - "RLIMIT_NOFILE": 2, - "oldlimit": 5, - "limit.rlim_cur": 2, - "limit.rlim_max": 1, - "setrlimit": 1, - "initServer": 2, - "signal": 2, - "SIGHUP": 1, - "SIG_IGN": 2, - "SIGPIPE": 1, - "setupSignalHandlers": 2, - "openlog": 1, - "LOG_PID": 1, - "LOG_NDELAY": 1, - "LOG_NOWAIT": 1, - "listCreate": 6, - "server.clients_to_close": 1, - "server.monitors": 2, - "server.el": 7, - "aeCreateEventLoop": 1, - "zmalloc": 2, - "*server.dbnum": 1, - "anetTcpServer": 1, - "server.neterr": 4, - "ANET_ERR": 2, - "unlink": 3, - "anetUnixServer": 1, - ".blocking_keys": 1, - ".watched_keys": 1, - ".id": 1, - "server.pubsub_channels": 2, - "server.pubsub_patterns": 4, - "listSetFreeMethod": 1, - "freePubsubPattern": 1, - "listSetMatchMethod": 1, - "listMatchPubsubPattern": 1, - "aofRewriteBufferReset": 1, - "server.aof_buf": 3, - "server.rdb_save_time_last": 2, - "server.rdb_save_time_start": 2, - "server.stat_numconnections": 2, - "server.stat_evictedkeys": 3, - "server.stat_starttime": 2, - "server.stat_keyspace_misses": 2, - "server.stat_keyspace_hits": 2, - "server.stat_fork_time": 2, - "server.stat_rejected_conn": 2, - "server.lastbgsave_status": 3, - "server.stop_writes_on_bgsave_err": 2, - "aeCreateTimeEvent": 1, - "aeCreateFileEvent": 2, - "AE_READABLE": 2, - "acceptTcpHandler": 1, - "AE_ERR": 2, - "acceptUnixHandler": 1, - "REDIS_AOF_ON": 2, - "LL*": 1, - "REDIS_MAXMEMORY_NO_EVICTION": 2, - "clusterInit": 1, - "scriptingInit": 1, - "slowlogInit": 1, - "bioInit": 1, - "numcommands": 5, - "sflags": 1, - "retval": 3, - "arity": 3, - "addReplyErrorFormat": 1, - "authenticated": 3, - "proc": 14, - "addReplyError": 6, - "getkeys_proc": 1, - "firstkey": 1, - "hashslot": 3, - "server.cluster.state": 1, - "REDIS_CLUSTER_OK": 1, - "ask": 3, - "clusterNode": 1, - "*n": 1, - "getNodeByQuery": 1, - "server.cluster.myself": 1, - "addReplySds": 3, - "ip": 4, - "freeMemoryIfNeeded": 2, - "REDIS_CMD_DENYOOM": 1, - "REDIS_ERR": 5, - "REDIS_CMD_WRITE": 2, - "REDIS_REPL_CONNECTED": 3, - "tolower": 2, - "REDIS_MULTI": 1, - "queueMultiCommand": 1, - "call": 1, - "REDIS_CALL_FULL": 1, - "save": 2, - "REDIS_SHUTDOWN_SAVE": 1, - "nosave": 2, - "REDIS_SHUTDOWN_NOSAVE": 1, - "SIGKILL": 2, - "rdbRemoveTempFile": 1, - "aof_fsync": 1, - "rdbSave": 1, - "addReplyBulk": 1, - "addReplyMultiBulkLen": 1, - "addReplyBulkLongLong": 2, - "bytesToHuman": 3, - "*s": 3, - "sprintf": 10, - "n/": 3, - "LL*1024*1024": 2, - "LL*1024*1024*1024": 1, - "genRedisInfoString": 2, - "*section": 2, - "info": 64, - "uptime": 2, - "rusage": 1, - "self_ru": 2, - "c_ru": 2, - "lol": 3, - "bib": 3, - "allsections": 12, - "defsections": 11, - "sections": 11, - "section": 14, - "getrusage": 2, - "RUSAGE_SELF": 1, - "RUSAGE_CHILDREN": 1, - "getClientsMaxBuffers": 1, - "utsname": 1, - "sdscat": 14, - "uname": 1, - "REDIS_VERSION": 4, - "redisGitSHA1": 3, - "strtol": 2, - "redisGitDirty": 3, - "name.sysname": 1, - "name.release": 1, - "name.machine": 1, - "aeGetApiName": 1, - "__GNUC__": 7, - "__GNUC_MINOR__": 2, - "__GNUC_PATCHLEVEL__": 1, - "uptime/": 1, - "*24": 1, - "hmem": 3, - "peak_hmem": 3, - "zmalloc_get_rss": 1, - "lua_gc": 1, - "server.lua": 1, - "LUA_GCCOUNT": 1, - "*1024LL": 1, - "zmalloc_get_fragmentation_ratio": 1, - "ZMALLOC_LIB": 2, - "aofRewriteBufferSize": 2, - "bioPendingJobsOfType": 1, - "REDIS_BIO_AOF_FSYNC": 1, - "perc": 3, - "eta": 4, - "elapsed": 3, - "off_t": 1, - "remaining_bytes": 1, - "server.loading_total_bytes": 3, - "server.loading_loaded_bytes": 3, - "server.loading_start_time": 2, - "elapsed*remaining_bytes": 1, - "/server.loading_loaded_bytes": 1, - "REDIS_REPL_TRANSFER": 2, - "server.repl_transfer_left": 1, - "server.repl_transfer_lastio": 1, - "slaveid": 3, - "listIter": 2, - "li": 6, - "listRewind": 2, - "listNext": 2, - "*slave": 2, - "*state": 1, - "anetPeerToString": 1, - "slave": 3, - "replstate": 1, - "REDIS_REPL_WAIT_BGSAVE_START": 1, - "REDIS_REPL_WAIT_BGSAVE_END": 1, - "REDIS_REPL_SEND_BULK": 1, - "REDIS_REPL_ONLINE": 1, - "float": 26, - "self_ru.ru_stime.tv_sec": 1, - "self_ru.ru_stime.tv_usec/1000000": 1, - "self_ru.ru_utime.tv_sec": 1, - "self_ru.ru_utime.tv_usec/1000000": 1, - "c_ru.ru_stime.tv_sec": 1, - "c_ru.ru_stime.tv_usec/1000000": 1, - "c_ru.ru_utime.tv_sec": 1, - "c_ru.ru_utime.tv_usec/1000000": 1, - "calls": 4, - "microseconds": 1, - "microseconds/c": 1, - "keys": 4, - "REDIS_MONITOR": 1, - "slaveseldb": 1, - "listAddNodeTail": 1, - "mem_used": 9, - "mem_tofree": 3, - "mem_freed": 4, - "slaves": 3, - "obuf_bytes": 3, - "getClientOutputBufferMemoryUsage": 1, - "k": 15, - "keys_freed": 3, - "bestval": 5, - "bestkey": 9, - "REDIS_MAXMEMORY_ALLKEYS_LRU": 2, - "REDIS_MAXMEMORY_ALLKEYS_RANDOM": 2, - "REDIS_MAXMEMORY_VOLATILE_RANDOM": 1, - "thiskey": 7, - "thisval": 8, - "dictFind": 1, - "dictGetVal": 2, - "estimateObjectIdleTime": 1, - "REDIS_MAXMEMORY_VOLATILE_TTL": 1, - "flushSlavesOutputBuffers": 1, - "linuxOvercommitMemoryValue": 2, - "fgets": 1, - "atoi": 3, - "linuxOvercommitMemoryWarning": 2, - "createPidFile": 2, - "daemonize": 2, - "STDIN_FILENO": 1, - "STDERR_FILENO": 2, - "version": 4, - "usage": 2, - "redisAsciiArt": 2, - "*16": 2, - "ascii_logo": 1, - "sigtermHandler": 2, - "sig": 2, - "sigaction": 6, - "act": 6, - "sigemptyset": 2, - "act.sa_mask": 2, - "act.sa_flags": 2, - "act.sa_handler": 1, - "SIGTERM": 1, - "HAVE_BACKTRACE": 1, - "SA_NODEFER": 1, - "SA_RESETHAND": 1, - "SA_SIGINFO": 1, - "act.sa_sigaction": 1, - "sigsegvHandler": 1, - "SIGSEGV": 1, - "SIGBUS": 1, - "SIGFPE": 1, - "SIGILL": 1, - "memtest": 2, - "megabytes": 1, - "passes": 1, - "zmalloc_enable_thread_safeness": 1, - "srand": 1, - "dictSetHashFunctionSeed": 1, - "*configfile": 1, - "configfile": 2, - "sdscatrepr": 1, - "loadServerConfig": 1, - "loadAppendOnlyFile": 1, - "/1000000": 2, - "rdbLoad": 1, - "aeSetBeforeSleepProc": 1, - "aeMain": 1, - "aeDeleteEventLoop": 1, - "": 1, - "": 2, - "": 2, - "//": 257, - "rfUTF8_IsContinuationbyte": 1, - "e.t.c.": 1, - "rfFReadLine_UTF8": 5, - "FILE*": 64, - "utf8": 36, - "uint32_t*": 34, - "byteLength": 197, - "bufferSize": 6, - "eof": 53, - "bytesN": 98, - "bIndex": 5, - "RF_NEWLINE_CRLF": 1, - "newLineFound": 1, - "*bufferSize": 1, - "RF_OPTION_FGETS_READBYTESN": 5, - "RF_MALLOC": 47, - "tempBuff": 6, - "RF_LF": 10, - "buff": 95, - "RF_SUCCESS": 14, - "RE_FILE_EOF": 22, - "found": 20, - "*eofReached": 14, - "LOG_ERROR": 64, - "RF_HEXEQ_UI": 7, - "rfFgetc_UTF32BE": 3, - "else//": 14, - "undo": 5, - "peek": 5, - "ahead": 5, - "file": 6, - "pointer": 5, - "fseek": 19, - "SEEK_CUR": 19, - "rfFgets_UTF32LE": 2, - "eofReached": 4, - "rfFgetc_UTF32LE": 4, - "rfFgets_UTF16BE": 2, - "rfFgetc_UTF16BE": 4, - "rfFgets_UTF16LE": 2, - "rfFgetc_UTF16LE": 4, - "rfFgets_UTF8": 2, - "rfFgetc_UTF8": 3, - "RF_HEXEQ_C": 9, - "fgetc": 9, - "check": 8, - "RE_FILE_READ": 2, - "cp": 12, - "c2": 13, - "c3": 9, - "c4": 5, - "i_READ_CHECK": 20, - "///": 4, - "success": 4, - "cc": 24, - "we": 10, - "more": 2, - "bytes": 225, - "xC0": 3, - "xC1": 1, - "RE_UTF8_INVALID_SEQUENCE_INVALID_BYTE": 6, - "RE_UTF8_INVALID_SEQUENCE_END": 6, - "rfUTF8_IsContinuationByte": 12, - "RE_UTF8_INVALID_SEQUENCE_CONBYTE": 6, - "decoded": 3, - "codepoint": 47, - "F": 38, - "xE0": 2, - "xF": 5, - "decode": 6, - "xF0": 2, - "RF_HEXGE_C": 1, - "xBF": 2, - "//invalid": 1, - "byte": 6, - "are": 6, - "xFF": 1, - "//if": 1, - "needing": 1, - "than": 5, - "swapE": 21, - "v1": 38, - "v2": 26, - "rfUTILS_Endianess": 24, - "RF_LITTLE_ENDIAN": 23, - "fread": 12, - "endianess": 40, - "needed": 10, - "rfUTILS_SwapEndianUS": 10, - "RF_HEXGE_US": 4, - "xD800": 8, - "RF_HEXLE_US": 4, - "xDFFF": 8, - "RF_HEXL_US": 8, - "RF_HEXG_US": 8, - "xDBFF": 4, - "RE_UTF16_INVALID_SEQUENCE": 20, - "RE_UTF16_NO_SURRPAIR": 2, - "xDC00": 4, - "user": 2, - "wants": 2, - "ff": 10, - "uint16_t*": 11, - "surrogate": 4, - "pair": 4, - "existence": 2, - "RF_BIG_ENDIAN": 10, - "rfUTILS_SwapEndianUI": 11, - "rfFback_UTF32BE": 2, - "i_FSEEK_CHECK": 14, - "rfFback_UTF32LE": 2, - "rfFback_UTF16BE": 2, - "rfFback_UTF16LE": 2, - "rfFback_UTF8": 2, - "depending": 1, - "number": 19, - "read": 1, - "backwards": 1, - "RE_UTF8_INVALID_SEQUENCE": 2, - "REFU_IO_H": 2, - "": 2, - "opening": 2, - "bracket": 4, - "calling": 4, - "C": 14, - "xA": 1, - "RF_CR": 1, - "xD": 1, - "REFU_WIN32_VERSION": 1, - "i_PLUSB_WIN32": 2, - "foff_rft": 2, - "off64_t": 1, - "///Fseek": 1, - "and": 15, - "Ftelll": 1, - "definitions": 1, - "rfFseek": 2, - "i_FILE_": 16, - "i_OFFSET_": 4, - "i_WHENCE_": 4, - "_fseeki64": 1, - "rfFtell": 2, - "_ftelli64": 1, - "fseeko64": 1, - "ftello64": 1, - "i_DECLIMEX_": 121, - "rfFReadLine_UTF16BE": 6, - "rfFReadLine_UTF16LE": 4, - "rfFReadLine_UTF32BE": 1, - "rfFReadLine_UTF32LE": 4, - "rfFgets_UTF32BE": 1, - "RF_IAMHERE_FOR_DOXYGEN": 22, - "rfPopen": 2, - "command": 2, - "i_rfPopen": 2, - "i_CMD_": 2, - "i_MODE_": 2, - "i_rfLMS_WRAP2": 5, - "rfPclose": 1, - "stream": 3, - "///closing": 1, - "#endif//include": 1, - "guards": 2, - "": 1, - "": 2, - "local": 5, - "stack": 6, - "memory": 4, - "RF_OPTION_DEFAULT_ARGUMENTS": 24, - "RF_String*": 222, - "rfString_Create": 4, - "i_rfString_Create": 3, - "READ_VSNPRINTF_ARGS": 5, - "rfUTF8_VerifySequence": 7, - "RF_FAILURE": 24, - "RE_STRING_INIT_FAILURE": 8, - "buffAllocated": 11, - "RF_String": 27, - "i_NVrfString_Create": 3, - "i_rfString_CreateLocal1": 3, - "RF_OPTION_SOURCE_ENCODING": 30, - "RF_UTF8": 8, - "characterLength": 16, - "*codepoints": 2, - "rfLMS_MacroEvalPtr": 2, - "RF_LMS": 6, - "RF_UTF16_LE": 9, - "RF_UTF16_BE": 7, - "codepoints": 44, - "i/2": 2, - "#elif": 14, - "RF_UTF32_LE": 3, - "RF_UTF32_BE": 3, - "UTF16": 4, - "rfUTF16_Decode": 5, - "rfUTF16_Decode_swap": 5, - "RF_UTF16_BE//": 2, - "RF_UTF32_LE//": 2, - "copy": 4, - "UTF32": 4, - "into": 8, - "RF_UTF32_BE//": 2, - "": 2, - "any": 3, - "other": 16, - "UTF": 17, - "8": 15, - "encode": 2, - "them": 3, - "rfUTF8_Encode": 4, - "While": 2, - "attempting": 2, - "create": 2, - "temporary": 4, - "given": 5, - "sequence": 6, - "could": 2, - "not": 6, - "be": 6, - "properly": 2, - "encoded": 2, - "RE_UTF8_ENCODING": 2, - "End": 2, - "Non": 2, - "code=": 2, - "normally": 1, - "since": 5, - "here": 5, - "have": 2, - "validity": 2, - "get": 4, - "Error": 2, - "at": 3, - "String": 11, - "Allocation": 2, - "due": 2, - "invalid": 2, - "rfLMS_Push": 4, - "Memory": 4, - "allocation": 3, - "Local": 2, - "Stack": 2, - "failed": 2, - "Insufficient": 2, - "space": 4, - "Consider": 2, - "compiling": 2, - "library": 3, - "with": 9, - "bigger": 3, - "Quitting": 2, - "proccess": 2, - "RE_LOCALMEMSTACK_INSUFFICIENT": 8, - "i_NVrfString_CreateLocal": 3, - "during": 1, - "rfString_Init": 3, - "i_rfString_Init": 3, - "i_NVrfString_Init": 3, - "rfString_Create_cp": 2, - "rfString_Init_cp": 3, - "RF_HEXLE_UI": 8, - "RF_HEXGE_UI": 6, - "C0": 3, - "ffff": 4, - "xFC0": 4, - "xF000": 2, - "xE": 2, - "F000": 2, - "C0000": 2, - "E": 11, - "RE_UTF8_INVALID_CODE_POINT": 2, - "rfString_Create_i": 2, - "numLen": 8, - "max": 4, - "is": 17, - "most": 3, - "environment": 3, - "so": 4, - "chars": 3, - "will": 3, - "certainly": 3, - "fit": 3, - "it": 12, - "strcpy": 4, - "rfString_Init_i": 2, - "rfString_Create_f": 2, - "rfString_Init_f": 2, - "rfString_Create_UTF16": 2, - "rfString_Init_UTF16": 3, - "utf8ByteLength": 34, - "last": 1, - "utf": 1, - "null": 4, - "termination": 3, - "byteLength*2": 1, - "allocate": 1, - "same": 1, - "as": 4, - "different": 1, - "RE_INPUT": 1, - "ends": 3, - "rfString_Create_UTF32": 2, - "rfString_Init_UTF32": 3, - "codeBuffer": 9, - "xFEFF": 1, - "big": 14, - "endian": 20, - "xFFFE0000": 1, - "little": 7, - "according": 1, - "standard": 1, - "no": 4, - "BOM": 1, - "means": 1, - "rfUTF32_Length": 1, - "i_rfString_Assign": 3, - "dest": 7, - "sourceP": 2, - "source": 8, - "RF_REALLOC": 9, - "rfString_Assign_char": 2, - "<5)>": 1, - "rfString_Create_nc": 3, - "i_rfString_Create_nc": 3, - "bytesWritten": 2, - "i_NVrfString_Create_nc": 3, - "rfString_Init_nc": 4, - "i_rfString_Init_nc": 3, - "i_NVrfString_Init_nc": 3, - "rfString_Destroy": 2, - "rfString_Deinit": 3, - "rfString_ToUTF16": 4, - "charsN": 5, - "rfUTF8_Decode": 2, - "rfUTF16_Encode": 1, - "rfString_ToUTF32": 4, - "rfString_Length": 5, - "RF_STRING_ITERATE_START": 9, - "RF_STRING_ITERATE_END": 9, - "rfString_GetChar": 2, - "thisstr": 210, - "codePoint": 18, - "RF_STRING_INDEX_OUT_OF_BOUNDS": 2, - "rfString_BytePosToCodePoint": 7, - "rfString_BytePosToCharPos": 4, - "thisstrP": 32, - "bytepos": 12, - "before": 4, - "charPos": 8, - "byteI": 7, - "i_rfString_Equal": 3, - "s1P": 2, - "s2P": 2, - "i_rfString_Find": 5, - "sstrP": 6, - "optionsP": 11, - "sstr": 39, - "*optionsP": 8, - "RF_BITFLAG_ON": 5, - "RF_CASE_IGNORE": 2, - "strstr": 2, - "RF_MATCH_WORD": 5, - "exact": 6, - "": 1, - "0x5a": 1, - "0x7a": 1, - "substring": 5, - "search": 1, - "zero": 2, - "equals": 1, - "then": 1, - "okay": 1, - "rfString_Equal": 4, - "RFS_": 8, - "ERANGE": 1, - "RE_STRING_TOFLOAT_UNDERFLOW": 1, - "RE_STRING_TOFLOAT": 1, - "rfString_Copy_OUT": 2, - "srcP": 6, - "rfString_Copy_IN": 2, - "dst": 15, - "rfString_Copy_chars": 2, - "bytePos": 23, - "terminate": 1, - "i_rfString_ScanfAfter": 3, - "afterstrP": 2, - "format": 4, - "afterstr": 5, - "sscanf": 1, - "<=0)>": 1, - "Counts": 1, - "how": 1, - "many": 1, - "times": 1, - "occurs": 1, - "inside": 2, - "i_rfString_Count": 5, - "sstr2": 2, - "move": 12, - "rfString_FindBytePos": 10, - "rfString_Tokenize": 2, - "sep": 3, - "tokensN": 2, - "RF_String**": 2, - "*tokensN": 1, - "rfString_Count": 4, - "lstr": 6, - "lstrP": 1, - "rstr": 24, - "rstrP": 5, - "rfString_After": 4, - "rfString_Beforev": 4, - "parNP": 6, - "i_rfString_Beforev": 16, - "parN": 10, - "*parNP": 2, - "minPos": 17, - "thisPos": 8, - "argList": 8, - "va_arg": 2, - "i_rfString_Before": 5, - "i_rfString_After": 5, - "afterP": 2, - "after": 6, - "rfString_Afterv": 4, - "i_rfString_Afterv": 16, - "minPosLength": 3, - "go": 8, - "i_rfString_Append": 3, - "otherP": 4, - "strncat": 1, - "rfString_Append_i": 2, - "rfString_Append_f": 2, - "i_rfString_Prepend": 3, - "goes": 1, - "i_rfString_Remove": 6, - "numberP": 1, - "*numberP": 1, - "occurences": 5, - "done": 1, - "<=thisstr->": 1, - "i_rfString_KeepOnly": 3, - "keepstrP": 2, - "keepLength": 2, - "charValue": 12, - "*keepChars": 1, - "keepstr": 5, - "exists": 6, - "charBLength": 5, - "keepChars": 4, - "*keepLength": 1, - "rfString_Iterate_Start": 6, - "rfString_Iterate_End": 4, - "": 1, - "does": 1, - "exist": 2, - "back": 1, - "cover": 1, - "that": 9, - "effectively": 1, - "gets": 1, - "deleted": 1, - "rfUTF8_FromCodepoint": 1, - "this": 5, - "kind": 1, - "non": 1, - "clean": 1, - "way": 1, - "macro": 2, - "internally": 1, - "uses": 1, - "byteIndex_": 12, - "variable": 1, - "use": 1, - "determine": 1, - "backs": 1, - "memmove": 1, - "by": 1, - "contiuing": 1, - "make": 3, - "sure": 2, - "position": 1, - "won": 1, - "array": 1, - "rfString_PruneStart": 2, - "nBytePos": 23, - "rfString_PruneEnd": 2, - "RF_STRING_ITERATEB_START": 2, - "RF_STRING_ITERATEB_END": 2, - "rfString_PruneMiddleB": 2, - "pBytePos": 15, - "indexing": 1, - "works": 1, - "pbytePos": 2, - "pth": 2, - "include": 6, - "rfString_PruneMiddleF": 2, - "got": 1, - "all": 2, - "i_rfString_Replace": 6, - "numP": 1, - "*numP": 1, - "RF_StringX": 2, - "just": 1, - "finding": 1, - "foundN": 10, - "bSize": 4, - "bytePositions": 17, - "bSize*sizeof": 1, - "rfStringX_FromString_IN": 1, - "temp.bIndex": 2, - "temp.bytes": 1, - "temp.byteLength": 1, - "rfStringX_Deinit": 1, - "replace": 3, - "removed": 2, - "one": 2, - "orSize": 5, - "nSize": 4, - "number*diff": 1, - "strncpy": 3, - "smaller": 1, - "diff*number": 1, - "remove": 1, - "equal": 1, - "i_rfString_StripStart": 3, - "subP": 7, - "RF_String*sub": 2, - "noMatch": 8, - "*subValues": 2, - "subLength": 6, - "subValues": 8, - "*subLength": 2, - "i_rfString_StripEnd": 3, - "lastBytePos": 4, - "testity": 2, - "i_rfString_Strip": 3, - "res1": 2, - "rfString_StripStart": 3, - "res2": 2, - "rfString_StripEnd": 3, - "rfString_Create_fUTF8": 2, - "rfString_Init_fUTF8": 3, - "unused": 3, - "rfString_Assign_fUTF8": 2, - "FILE*f": 2, - "utf8BufferSize": 4, - "function": 6, - "rfString_Append_fUTF8": 2, - "rfString_Append": 5, - "rfString_Create_fUTF16": 2, - "rfString_Init_fUTF16": 3, - "rfString_Assign_fUTF16": 2, - "rfString_Append_fUTF16": 2, - "char*utf8": 3, - "rfString_Create_fUTF32": 2, - "rfString_Init_fUTF32": 3, - "<0)>": 1, - "Failure": 1, - "initialize": 1, - "reading": 1, - "Little": 1, - "Endian": 1, - "32": 1, - "bytesN=": 1, - "rfString_Assign_fUTF32": 2, - "rfString_Append_fUTF32": 2, - "i_rfString_Fwrite": 5, - "sP": 2, - "encodingP": 1, - "*utf32": 1, - "utf16": 11, - "*encodingP": 1, - "fwrite": 5, - "logging": 5, - "utf32": 10, - "i_WRITE_CHECK": 1, - "RE_FILE_WRITE": 1, - "REFU_USTRING_H": 2, - "": 1, - "RF_MODULE_STRINGS//": 1, - "included": 2, - "module": 3, - "": 1, - "argument": 1, - "wrapping": 1, - "functionality": 1, - "": 1, - "unicode": 2, - "xFF0FFFF": 1, - "rfUTF8_IsContinuationByte2": 1, - "b__": 3, - "0xBF": 1, - "pragma": 1, - "pack": 2, - "push": 1, - "internal": 4, - "author": 1, - "Lefteris": 1, - "09": 1, - "12": 1, - "2010": 1, - "endinternal": 1, - "brief": 1, - "A": 11, - "representation": 2, - "The": 1, - "Refu": 2, - "Unicode": 1, - "has": 2, - "two": 1, - "versions": 1, - "One": 1, - "ref": 1, - "what": 1, - "operations": 1, - "can": 2, - "performed": 1, - "extended": 3, - "Strings": 2, - "Functions": 1, - "convert": 1, - "but": 1, - "always": 2, - "Once": 1, - "been": 1, - "created": 1, - "assumed": 1, - "valid": 1, - "every": 1, - "performs": 1, - "unless": 1, - "otherwise": 1, - "specified": 1, - "All": 1, - "functions": 2, - "which": 1, - "isinherited": 1, - "StringX": 2, - "their": 1, - "description": 1, - "safely": 1, - "specific": 1, - "or": 1, - "needs": 1, - "manipulate": 1, - "Extended": 1, - "To": 1, - "documentation": 1, - "even": 1, - "clearer": 1, - "should": 2, - "marked": 1, - "notinherited": 1, - "cppcode": 1, - "constructor": 1, - "i_StringCHandle": 1, - "@endcpp": 1, - "@endinternal": 1, - "*/": 1, - "#pragma": 1, - "pop": 1, - "i_rfString_CreateLocal": 2, - "__VA_ARGS__": 66, - "RP_SELECT_FUNC_IF_NARGIS": 5, - "i_SELECT_RF_STRING_CREATE": 1, - "i_SELECT_RF_STRING_CREATE1": 1, - "i_SELECT_RF_STRING_CREATE0": 1, - "///Internal": 1, - "creates": 1, - "i_SELECT_RF_STRING_CREATELOCAL": 1, - "i_SELECT_RF_STRING_CREATELOCAL1": 1, - "i_SELECT_RF_STRING_CREATELOCAL0": 1, - "i_SELECT_RF_STRING_INIT": 1, - "i_SELECT_RF_STRING_INIT1": 1, - "i_SELECT_RF_STRING_INIT0": 1, - "code": 6, - "i_SELECT_RF_STRING_CREATE_NC": 1, - "i_SELECT_RF_STRING_CREATE_NC1": 1, - "i_SELECT_RF_STRING_CREATE_NC0": 1, - "i_SELECT_RF_STRING_INIT_NC": 1, - "i_SELECT_RF_STRING_INIT_NC1": 1, - "i_SELECT_RF_STRING_INIT_NC0": 1, - "//@": 1, - "rfString_Assign": 2, - "i_DESTINATION_": 2, - "i_SOURCE_": 2, - "rfString_ToUTF8": 2, - "i_STRING_": 2, - "rfString_ToCstr": 2, - "uint32_t*length": 1, - "string_": 9, - "startCharacterPos_": 4, - "characterUnicodeValue_": 4, - "j_": 6, - "//Two": 1, - "macros": 1, - "accomplish": 1, - "going": 1, - "backwards.": 1, - "This": 1, - "its": 1, - "pair.": 1, - "rfString_IterateB_Start": 1, - "characterPos_": 5, - "b_index_": 6, - "c_index_": 3, - "rfString_IterateB_End": 1, - "i_STRING1_": 2, - "i_STRING2_": 2, - "i_rfLMSX_WRAP2": 4, - "rfString_Find": 3, - "i_THISSTR_": 60, - "i_SEARCHSTR_": 26, - "i_OPTIONS_": 28, - "i_rfLMS_WRAP3": 4, - "i_RFI8_": 54, - "RF_SELECT_FUNC_IF_NARGGT": 10, - "i_NPSELECT_RF_STRING_FIND": 1, - "i_NPSELECT_RF_STRING_FIND1": 1, - "RF_COMPILE_ERROR": 33, - "i_NPSELECT_RF_STRING_FIND0": 1, - "RF_SELECT_FUNC": 10, - "i_SELECT_RF_STRING_FIND": 1, - "i_SELECT_RF_STRING_FIND2": 1, - "i_SELECT_RF_STRING_FIND3": 1, - "i_SELECT_RF_STRING_FIND1": 1, - "i_SELECT_RF_STRING_FIND0": 1, - "rfString_ToInt": 1, - "int32_t*": 1, - "rfString_ToDouble": 1, - "double*": 1, - "rfString_ScanfAfter": 2, - "i_AFTERSTR_": 8, - "i_FORMAT_": 2, - "i_VAR_": 2, - "i_rfLMSX_WRAP4": 11, - "i_NPSELECT_RF_STRING_COUNT": 1, - "i_NPSELECT_RF_STRING_COUNT1": 1, - "i_NPSELECT_RF_STRING_COUNT0": 1, - "i_SELECT_RF_STRING_COUNT": 1, - "i_SELECT_RF_STRING_COUNT2": 1, - "i_rfLMSX_WRAP3": 5, - "i_SELECT_RF_STRING_COUNT3": 1, - "i_SELECT_RF_STRING_COUNT1": 1, - "i_SELECT_RF_STRING_COUNT0": 1, - "rfString_Between": 3, - "i_rfString_Between": 4, - "i_NPSELECT_RF_STRING_BETWEEN": 1, - "i_NPSELECT_RF_STRING_BETWEEN1": 1, - "i_NPSELECT_RF_STRING_BETWEEN0": 1, - "i_SELECT_RF_STRING_BETWEEN": 1, - "i_SELECT_RF_STRING_BETWEEN4": 1, - "i_LEFTSTR_": 6, - "i_RIGHTSTR_": 6, - "i_RESULT_": 12, - "i_rfLMSX_WRAP5": 9, - "i_SELECT_RF_STRING_BETWEEN5": 1, - "i_SELECT_RF_STRING_BETWEEN3": 1, - "i_SELECT_RF_STRING_BETWEEN2": 1, - "i_SELECT_RF_STRING_BETWEEN1": 1, - "i_SELECT_RF_STRING_BETWEEN0": 1, - "i_NPSELECT_RF_STRING_BEFOREV": 1, - "i_NPSELECT_RF_STRING_BEFOREV1": 1, - "RF_SELECT_FUNC_IF_NARGGT2": 2, - "i_LIMSELECT_RF_STRING_BEFOREV": 1, - "i_NPSELECT_RF_STRING_BEFOREV0": 1, - "i_LIMSELECT_RF_STRING_BEFOREV1": 1, - "i_LIMSELECT_RF_STRING_BEFOREV0": 1, - "i_SELECT_RF_STRING_BEFOREV": 1, - "i_SELECT_RF_STRING_BEFOREV5": 1, - "i_ARG1_": 56, - "i_ARG2_": 56, - "i_ARG3_": 56, - "i_ARG4_": 56, - "i_RFUI8_": 28, - "i_SELECT_RF_STRING_BEFOREV6": 1, - "i_rfLMSX_WRAP6": 2, - "i_SELECT_RF_STRING_BEFOREV7": 1, - "i_rfLMSX_WRAP7": 2, - "i_SELECT_RF_STRING_BEFOREV8": 1, - "i_rfLMSX_WRAP8": 2, - "i_SELECT_RF_STRING_BEFOREV9": 1, - "i_rfLMSX_WRAP9": 2, - "i_SELECT_RF_STRING_BEFOREV10": 1, - "i_rfLMSX_WRAP10": 2, - "i_SELECT_RF_STRING_BEFOREV11": 1, - "i_rfLMSX_WRAP11": 2, - "i_SELECT_RF_STRING_BEFOREV12": 1, - "i_rfLMSX_WRAP12": 2, - "i_SELECT_RF_STRING_BEFOREV13": 1, - "i_rfLMSX_WRAP13": 2, - "i_SELECT_RF_STRING_BEFOREV14": 1, - "i_rfLMSX_WRAP14": 2, - "i_SELECT_RF_STRING_BEFOREV15": 1, - "i_rfLMSX_WRAP15": 2, - "i_SELECT_RF_STRING_BEFOREV16": 1, - "i_rfLMSX_WRAP16": 2, - "i_SELECT_RF_STRING_BEFOREV17": 1, - "i_rfLMSX_WRAP17": 2, - "i_SELECT_RF_STRING_BEFOREV18": 1, - "i_rfLMSX_WRAP18": 2, - "rfString_Before": 3, - "i_NPSELECT_RF_STRING_BEFORE": 1, - "i_NPSELECT_RF_STRING_BEFORE1": 1, - "i_NPSELECT_RF_STRING_BEFORE0": 1, - "i_SELECT_RF_STRING_BEFORE": 1, - "i_SELECT_RF_STRING_BEFORE3": 1, - "i_SELECT_RF_STRING_BEFORE4": 1, - "i_SELECT_RF_STRING_BEFORE2": 1, - "i_SELECT_RF_STRING_BEFORE1": 1, - "i_SELECT_RF_STRING_BEFORE0": 1, - "i_NPSELECT_RF_STRING_AFTER": 1, - "i_NPSELECT_RF_STRING_AFTER1": 1, - "i_NPSELECT_RF_STRING_AFTER0": 1, - "i_SELECT_RF_STRING_AFTER": 1, - "i_SELECT_RF_STRING_AFTER3": 1, - "i_OUTSTR_": 6, - "i_SELECT_RF_STRING_AFTER4": 1, - "i_SELECT_RF_STRING_AFTER2": 1, - "i_SELECT_RF_STRING_AFTER1": 1, - "i_SELECT_RF_STRING_AFTER0": 1, - "i_NPSELECT_RF_STRING_AFTERV": 1, - "i_NPSELECT_RF_STRING_AFTERV1": 1, - "i_LIMSELECT_RF_STRING_AFTERV": 1, - "i_NPSELECT_RF_STRING_AFTERV0": 1, - "i_LIMSELECT_RF_STRING_AFTERV1": 1, - "i_LIMSELECT_RF_STRING_AFTERV0": 1, - "i_SELECT_RF_STRING_AFTERV": 1, - "i_SELECT_RF_STRING_AFTERV5": 1, - "i_SELECT_RF_STRING_AFTERV6": 1, - "i_SELECT_RF_STRING_AFTERV7": 1, - "i_SELECT_RF_STRING_AFTERV8": 1, - "i_SELECT_RF_STRING_AFTERV9": 1, - "i_SELECT_RF_STRING_AFTERV10": 1, - "i_SELECT_RF_STRING_AFTERV11": 1, - "i_SELECT_RF_STRING_AFTERV12": 1, - "i_SELECT_RF_STRING_AFTERV13": 1, - "i_SELECT_RF_STRING_AFTERV14": 1, - "i_SELECT_RF_STRING_AFTERV15": 1, - "i_SELECT_RF_STRING_AFTERV16": 1, - "i_SELECT_RF_STRING_AFTERV17": 1, - "i_SELECT_RF_STRING_AFTERV18": 1, - "i_OTHERSTR_": 4, - "rfString_Prepend": 2, - "rfString_Remove": 3, - "i_NPSELECT_RF_STRING_REMOVE": 1, - "i_NPSELECT_RF_STRING_REMOVE1": 1, - "i_NPSELECT_RF_STRING_REMOVE0": 1, - "i_SELECT_RF_STRING_REMOVE": 1, - "i_SELECT_RF_STRING_REMOVE2": 1, - "i_REPSTR_": 16, - "i_RFUI32_": 8, - "i_SELECT_RF_STRING_REMOVE3": 1, - "i_NUMBER_": 12, - "i_SELECT_RF_STRING_REMOVE4": 1, - "i_SELECT_RF_STRING_REMOVE1": 1, - "i_SELECT_RF_STRING_REMOVE0": 1, - "rfString_KeepOnly": 2, - "I_KEEPSTR_": 2, - "rfString_Replace": 3, - "i_NPSELECT_RF_STRING_REPLACE": 1, - "i_NPSELECT_RF_STRING_REPLACE1": 1, - "i_NPSELECT_RF_STRING_REPLACE0": 1, - "i_SELECT_RF_STRING_REPLACE": 1, - "i_SELECT_RF_STRING_REPLACE3": 1, - "i_SELECT_RF_STRING_REPLACE4": 1, - "i_SELECT_RF_STRING_REPLACE5": 1, - "i_SELECT_RF_STRING_REPLACE2": 1, - "i_SELECT_RF_STRING_REPLACE1": 1, - "i_SELECT_RF_STRING_REPLACE0": 1, - "i_SUBSTR_": 6, - "rfString_Strip": 2, - "rfString_Fwrite": 2, - "i_NPSELECT_RF_STRING_FWRITE": 1, - "i_NPSELECT_RF_STRING_FWRITE1": 1, - "i_NPSELECT_RF_STRING_FWRITE0": 1, - "i_SELECT_RF_STRING_FWRITE": 1, - "i_SELECT_RF_STRING_FWRITE3": 1, - "i_STR_": 8, - "i_ENCODING_": 4, - "i_SELECT_RF_STRING_FWRITE2": 1, - "i_SELECT_RF_STRING_FWRITE1": 1, - "i_SELECT_RF_STRING_FWRITE0": 1, - "rfString_Fwrite_fUTF8": 1, - "closing": 1, - "#error": 4, - "Attempted": 1, - "manipulation": 1, - "flag": 1, - "off.": 1, - "Rebuild": 1, - "added": 1, - "you": 1, - "#endif//": 1, - "PY_SSIZE_T_CLEAN": 1, - "Py_PYTHON_H": 1, - "Python": 2, - "headers": 1, - "compile": 1, - "extensions": 1, - "please": 1, - "install": 1, - "development": 1, - "Python.": 1, - "PY_VERSION_HEX": 11, - "Cython": 1, - "requires": 1, - ".": 1, - "offsetof": 2, - "member": 2, - "type*": 1, + "getDecodedObject": 3, + "setenv": 1, "WIN32": 2, - "MS_WINDOWS": 2, - "__stdcall": 2, - "__cdecl": 2, - "__fastcall": 2, - "DL_IMPORT": 2, - "DL_EXPORT": 2, - "PY_LONG_LONG": 5, - "LONG_LONG": 1, - "Py_HUGE_VAL": 2, - "HUGE_VAL": 1, - "PYPY_VERSION": 1, - "CYTHON_COMPILING_IN_PYPY": 3, - "CYTHON_COMPILING_IN_CPYTHON": 6, - "Py_ssize_t": 35, - "PY_SSIZE_T_MAX": 1, - "INT_MAX": 1, - "PY_SSIZE_T_MIN": 1, - "INT_MIN": 1, - "PY_FORMAT_SIZE_T": 1, - "CYTHON_FORMAT_SSIZE_T": 2, - "PyInt_FromSsize_t": 6, - "PyInt_FromLong": 3, - "PyInt_AsSsize_t": 3, - "__Pyx_PyInt_AsInt": 2, - "PyNumber_Index": 1, - "PyNumber_Check": 2, - "PyFloat_Check": 2, - "PyNumber_Int": 1, - "PyErr_Format": 4, - "PyExc_TypeError": 4, - "Py_TYPE": 7, - "tp_name": 4, - "PyObject*": 24, - "__Pyx_PyIndex_Check": 3, - "PyComplex_Check": 1, - "PyIndex_Check": 2, - "PyErr_WarnEx": 1, - "category": 2, - "stacklevel": 1, - "PyErr_Warn": 1, - "__PYX_BUILD_PY_SSIZE_T": 2, - "Py_REFCNT": 1, - "ob_refcnt": 1, - "ob_type": 7, - "Py_SIZE": 1, - "PyVarObject*": 1, - "ob_size": 1, - "PyVarObject_HEAD_INIT": 1, - "PyObject_HEAD_INIT": 1, - "PyType_Modified": 1, - "PyObject": 276, - "itemsize": 1, - "readonly": 1, - "ndim": 2, - "*shape": 1, - "*strides": 1, - "*suboffsets": 1, - "*internal": 1, - "Py_buffer": 6, - "PyBUF_SIMPLE": 1, - "PyBUF_WRITABLE": 3, - "PyBUF_FORMAT": 3, - "PyBUF_ND": 2, - "PyBUF_STRIDES": 6, - "PyBUF_C_CONTIGUOUS": 1, - "PyBUF_F_CONTIGUOUS": 1, - "PyBUF_ANY_CONTIGUOUS": 1, - "PyBUF_INDIRECT": 2, - "PyBUF_RECORDS": 1, - "PyBUF_FULL": 1, - "PY_MAJOR_VERSION": 13, - "__Pyx_BUILTIN_MODULE_NAME": 2, - "__Pyx_PyCode_New": 2, - "l": 7, - "fv": 4, - "cell": 4, - "fline": 4, - "lnos": 4, - "PyCode_New": 2, - "PY_MINOR_VERSION": 1, - "PyUnicode_FromString": 2, - "PyUnicode_Decode": 1, - "Py_TPFLAGS_CHECKTYPES": 1, - "Py_TPFLAGS_HAVE_INDEX": 1, - "Py_TPFLAGS_HAVE_NEWBUFFER": 1, - "PyUnicode_KIND": 1, - "CYTHON_PEP393_ENABLED": 2, - "__Pyx_PyUnicode_READY": 2, - "op": 8, - "PyUnicode_IS_READY": 1, - "_PyUnicode_Ready": 1, - "__Pyx_PyUnicode_GET_LENGTH": 2, - "PyUnicode_GET_LENGTH": 1, - "__Pyx_PyUnicode_READ_CHAR": 2, - "PyUnicode_READ_CHAR": 1, - "__Pyx_PyUnicode_READ": 2, - "PyUnicode_READ": 1, - "PyUnicode_GET_SIZE": 1, - "Py_UCS4": 2, - "PyUnicode_AS_UNICODE": 1, - "Py_UNICODE*": 1, - "PyBaseString_Type": 1, - "PyUnicode_Type": 2, - "PyStringObject": 2, - "PyUnicodeObject": 1, - "PyString_Type": 2, - "PyString_Check": 2, - "PyUnicode_Check": 1, - "PyString_CheckExact": 2, - "PyUnicode_CheckExact": 1, - "PyBytesObject": 1, - "PyBytes_Type": 1, - "PyBytes_Check": 1, - "PyBytes_CheckExact": 1, - "PyBytes_FromString": 2, - "PyString_FromString": 2, - "PyBytes_FromStringAndSize": 1, - "PyString_FromStringAndSize": 1, - "PyBytes_FromFormat": 1, - "PyString_FromFormat": 1, - "PyBytes_DecodeEscape": 1, - "PyString_DecodeEscape": 1, - "PyBytes_AsString": 2, - "PyString_AsString": 1, - "PyBytes_AsStringAndSize": 1, - "PyString_AsStringAndSize": 1, - "PyBytes_Size": 1, - "PyString_Size": 1, - "PyBytes_AS_STRING": 1, - "PyString_AS_STRING": 1, - "PyBytes_GET_SIZE": 1, - "PyString_GET_SIZE": 1, - "PyBytes_Repr": 1, - "PyString_Repr": 1, - "PyBytes_Concat": 1, - "PyString_Concat": 1, - "PyBytes_ConcatAndDel": 1, - "PyString_ConcatAndDel": 1, - "PySet_Check": 1, - "PyObject_TypeCheck": 3, - "PySet_Type": 2, - "PyFrozenSet_Check": 1, - "PyFrozenSet_Type": 1, - "PySet_CheckExact": 2, - "__Pyx_TypeCheck": 1, - "PyTypeObject": 25, - "PyIntObject": 1, - "PyLongObject": 2, - "PyInt_Type": 1, - "PyLong_Type": 1, - "PyInt_Check": 1, - "PyLong_Check": 1, - "PyInt_CheckExact": 1, - "PyLong_CheckExact": 1, - "PyInt_FromString": 1, - "PyLong_FromString": 1, - "PyInt_FromUnicode": 1, - "PyLong_FromUnicode": 1, - "PyLong_FromLong": 1, - "PyInt_FromSize_t": 1, - "PyLong_FromSize_t": 1, - "PyLong_FromSsize_t": 1, - "PyInt_AsLong": 2, - "PyLong_AsLong": 1, - "PyInt_AS_LONG": 1, - "PyLong_AS_LONG": 1, - "PyLong_AsSsize_t": 1, - "PyInt_AsUnsignedLongMask": 1, - "PyLong_AsUnsignedLongMask": 1, - "PyInt_AsUnsignedLongLongMask": 1, - "PyLong_AsUnsignedLongLongMask": 1, - "PyBoolObject": 1, - "Py_hash_t": 1, - "__Pyx_PyInt_FromHash_t": 2, - "__Pyx_PyInt_AsHash_t": 2, - "__Pyx_PySequence_GetSlice": 2, - "PySequence_GetSlice": 2, - "__Pyx_PySequence_SetSlice": 2, - "PySequence_SetSlice": 2, - "__Pyx_PySequence_DelSlice": 2, - "PySequence_DelSlice": 2, - "PyErr_SetString": 3, - "PyExc_SystemError": 3, - "tp_as_mapping": 3, - "PyMethod_New": 2, - "func": 3, - "klass": 1, - "PyInstanceMethod_New": 1, - "__Pyx_GetAttrString": 2, - "PyObject_GetAttrString": 2, - "__Pyx_SetAttrString": 2, - "PyObject_SetAttrString": 2, - "__Pyx_DelAttrString": 2, - "PyObject_DelAttrString": 2, - "__Pyx_NAMESTR": 2, - "__Pyx_DOCSTR": 2, - "__Pyx_PyNumber_Divide": 2, - "y": 14, - "PyNumber_TrueDivide": 1, - "__Pyx_PyNumber_InPlaceDivide": 2, - "PyNumber_InPlaceTrueDivide": 1, - "PyNumber_Divide": 1, - "PyNumber_InPlaceDivide": 1, - "__PYX_EXTERN_C": 3, - "_USE_MATH_DEFINES": 1, - "__PYX_HAVE__sklearn__linear_model__sgd_fast": 1, - "__PYX_HAVE_API__sklearn__linear_model__sgd_fast": 1, - "_OPENMP": 1, - "": 1, - "PYREX_WITHOUT_ASSERTIONS": 1, - "CYTHON_WITHOUT_ASSERTIONS": 1, - "CYTHON_INLINE": 65, - "__inline__": 1, - "__inline": 1, - "__STDC_VERSION__": 2, - "L": 1, - "CYTHON_UNUSED": 14, - "**p": 1, - "is_unicode": 1, - "is_str": 1, - "intern": 1, - "__Pyx_StringTabEntry": 2, - "__Pyx_PyBytes_FromUString": 1, - "__Pyx_PyBytes_AsUString": 1, - "__Pyx_Owned_Py_None": 1, - "Py_INCREF": 10, - "Py_None": 8, - "__Pyx_PyBool_FromLong": 1, - "Py_True": 2, - "Py_False": 2, - "__Pyx_PyObject_IsTrue": 1, - "__Pyx_PyNumber_Int": 1, - "__Pyx_PyIndex_AsSsize_t": 1, - "__Pyx_PyInt_FromSize_t": 1, - "__Pyx_PyInt_AsSize_t": 1, - "__pyx_PyFloat_AsDouble": 12, - "PyFloat_CheckExact": 1, - "PyFloat_AS_DOUBLE": 1, - "PyFloat_AsDouble": 2, - "__pyx_PyFloat_AsFloat": 1, - "__builtin_expect": 2, - "*__pyx_m": 1, - "*__pyx_b": 1, - "*__pyx_empty_tuple": 1, - "*__pyx_empty_bytes": 1, - "__pyx_lineno": 58, - "__pyx_clineno": 58, - "__pyx_cfilenm": 1, - "__FILE__": 4, - "*__pyx_filename": 7, - "CYTHON_CCOMPLEX": 12, - "_Complex_I": 3, - "": 1, - "": 1, - "__sun__": 1, - "fj": 1, - "*__pyx_f": 1, - "IS_UNSIGNED": 1, - "__Pyx_StructField_": 2, - "__PYX_BUF_FLAGS_PACKED_STRUCT": 1, - "__Pyx_StructField_*": 1, - "fields": 1, - "arraysize": 1, - "typegroup": 1, - "is_unsigned": 1, - "__Pyx_TypeInfo": 2, - "__Pyx_TypeInfo*": 2, - "offset": 1, - "__Pyx_StructField": 2, - "__Pyx_StructField*": 1, - "field": 1, - "parent_offset": 1, - "__Pyx_BufFmt_StackElem": 1, - "root": 1, - "__Pyx_BufFmt_StackElem*": 2, - "fmt_offset": 1, - "new_count": 1, - "enc_count": 1, - "struct_alignment": 1, - "is_complex": 1, - "enc_type": 1, - "new_packmode": 1, - "enc_packmode": 1, - "is_valid_array": 1, - "__Pyx_BufFmt_Context": 1, - "npy_int8": 1, - "__pyx_t_5numpy_int8_t": 1, - "npy_int16": 1, - "__pyx_t_5numpy_int16_t": 1, - "npy_int32": 1, - "__pyx_t_5numpy_int32_t": 4, - "npy_int64": 1, - "__pyx_t_5numpy_int64_t": 1, - "npy_uint8": 1, - "__pyx_t_5numpy_uint8_t": 1, - "npy_uint16": 1, - "__pyx_t_5numpy_uint16_t": 1, - "npy_uint32": 1, - "__pyx_t_5numpy_uint32_t": 1, - "npy_uint64": 1, - "__pyx_t_5numpy_uint64_t": 1, - "npy_float32": 1, - "__pyx_t_5numpy_float32_t": 1, - "npy_float64": 1, - "__pyx_t_5numpy_float64_t": 4, - "npy_long": 1, - "__pyx_t_5numpy_int_t": 1, - "npy_longlong": 2, - "__pyx_t_5numpy_long_t": 1, - "__pyx_t_5numpy_longlong_t": 1, - "npy_ulong": 1, - "__pyx_t_5numpy_uint_t": 1, - "npy_ulonglong": 2, - "__pyx_t_5numpy_ulong_t": 1, - "__pyx_t_5numpy_ulonglong_t": 1, - "npy_intp": 1, - "__pyx_t_5numpy_intp_t": 1, - "npy_uintp": 1, - "__pyx_t_5numpy_uintp_t": 1, - "npy_double": 2, - "__pyx_t_5numpy_float_t": 1, - "__pyx_t_5numpy_double_t": 1, - "npy_longdouble": 1, - "__pyx_t_5numpy_longdouble_t": 1, - "__pyx_t_7sklearn_5utils_13weight_vector_DOUBLE": 2, - "__pyx_t_7sklearn_5utils_13weight_vector_INTEGER": 1, - "__pyx_t_7sklearn_5utils_11seq_dataset_DOUBLE": 7, - "__pyx_t_7sklearn_5utils_11seq_dataset_INTEGER": 7, - "__pyx_t_7sklearn_12linear_model_8sgd_fast_DOUBLE": 4, - "__pyx_t_7sklearn_12linear_model_8sgd_fast_INTEGER": 3, - "std": 8, - "complex": 2, - "__pyx_t_float_complex": 27, - "_Complex": 2, - "real": 2, - "imag": 2, - "__pyx_t_double_complex": 27, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_LossFunction": 15, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Regression": 11, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Huber": 6, - "__pyx_obj_7sklearn_5utils_11seq_dataset_SequentialDataset": 5, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_EpsilonInsensitive": 6, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Classification": 7, - "__pyx_obj_7sklearn_5utils_11seq_dataset_CSRDataset": 2, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Log": 5, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Hinge": 6, - "__pyx_obj_7sklearn_5utils_11seq_dataset_ArrayDataset": 2, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_SquaredHinge": 6, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_ModifiedHuber": 5, - "__pyx_obj_7sklearn_5utils_13weight_vector_WeightVector": 3, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_SquaredLoss": 5, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_SquaredEpsilonInsensitive": 6, - "npy_cfloat": 1, - "__pyx_t_5numpy_cfloat_t": 1, - "npy_cdouble": 2, - "__pyx_t_5numpy_cdouble_t": 1, - "npy_clongdouble": 1, - "__pyx_t_5numpy_clongdouble_t": 1, - "__pyx_t_5numpy_complex_t": 1, - "PyObject_HEAD": 3, - "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_LossFunction": 5, - "*__pyx_vtab": 3, - "__pyx_base": 18, - "__pyx_vtabstruct_7sklearn_5utils_11seq_dataset_SequentialDataset": 4, - "n_samples": 1, - "epsilon": 2, - "current_index": 2, - "stride": 2, - "*X_data_ptr": 2, - "*X_indptr_ptr": 1, - "*X_indices_ptr": 1, - "*Y_data_ptr": 2, - "PyArrayObject": 8, - "*feature_indices": 2, - "*feature_indices_ptr": 2, - "*index": 2, - "*index_data_ptr": 2, - "*sample_weight_data": 2, - "threshold": 2, - "n_features": 2, - "__pyx_vtabstruct_7sklearn_5utils_13weight_vector_WeightVector": 3, - "*w_data_ptr": 1, - "wscale": 1, - "sq_norm": 1, - "*__pyx_vtabptr_7sklearn_5utils_11seq_dataset_SequentialDataset": 1, - "__pyx_vtabstruct_7sklearn_5utils_11seq_dataset_ArrayDataset": 2, - "*__pyx_vtabptr_7sklearn_5utils_11seq_dataset_ArrayDataset": 1, - "__pyx_vtabstruct_7sklearn_5utils_11seq_dataset_CSRDataset": 2, - "*__pyx_vtabptr_7sklearn_5utils_11seq_dataset_CSRDataset": 1, - "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_EpsilonInsensitive": 2, - "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_Regression": 3, - "*__pyx_vtabptr_7sklearn_12linear_model_8sgd_fast_EpsilonInsensitive": 1, - "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_SquaredHinge": 2, - "*__pyx_vtabptr_7sklearn_12linear_model_8sgd_fast_SquaredHinge": 1, - "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_Huber": 2, - "*__pyx_vtabptr_7sklearn_12linear_model_8sgd_fast_Huber": 1, - "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_Hinge": 2, - "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_Classification": 1, - "*__pyx_vtabptr_7sklearn_12linear_model_8sgd_fast_Hinge": 1, - "*__pyx_vtabptr_7sklearn_5utils_13weight_vector_WeightVector": 1, - "CYTHON_REFNANNY": 3, - "__Pyx_RefNannyAPIStruct": 3, - "*__Pyx_RefNanny": 1, - "*__Pyx_RefNannyImportAPI": 1, - "*modname": 1, - "__Pyx_RefNannyDeclarations": 11, - "*__pyx_refnanny": 1, - "WITH_THREAD": 1, - "__Pyx_RefNannySetupContext": 12, - "acquire_gil": 4, - "PyGILState_STATE": 1, - "__pyx_gilstate_save": 2, - "PyGILState_Ensure": 1, - "__pyx_refnanny": 8, - "__Pyx_RefNanny": 8, - "SetupContext": 3, - "PyGILState_Release": 1, - "__Pyx_RefNannyFinishContext": 14, - "FinishContext": 1, - "__Pyx_INCREF": 6, - "INCREF": 1, - "__Pyx_DECREF": 20, - "DECREF": 1, - "__Pyx_GOTREF": 24, - "GOTREF": 1, - "__Pyx_GIVEREF": 9, - "GIVEREF": 1, - "__Pyx_XINCREF": 2, - "__Pyx_XDECREF": 20, - "__Pyx_XGOTREF": 2, - "__Pyx_XGIVEREF": 5, - "Py_DECREF": 2, - "Py_XINCREF": 1, - "Py_XDECREF": 1, - "__Pyx_CLEAR": 1, - "__Pyx_XCLEAR": 1, - "*__Pyx_GetName": 1, - "__Pyx_ErrRestore": 1, - "*type": 4, - "*tb": 2, - "__Pyx_ErrFetch": 1, - "**type": 1, - "**value": 1, - "**tb": 1, - "__Pyx_Raise": 4, - "*cause": 1, - "__Pyx_RaiseArgtupleInvalid": 7, - "func_name": 2, - "num_min": 1, - "num_max": 1, - "num_found": 1, - "__Pyx_RaiseDoubleKeywordsError": 1, - "kw_name": 1, - "__Pyx_ParseOptionalKeywords": 4, - "*kwds": 1, - "**argnames": 1, - "*kwds2": 1, - "*values": 1, - "num_pos_args": 1, - "function_name": 1, - "__Pyx_ArgTypeTest": 1, - "none_allowed": 1, - "__Pyx_GetBufferAndValidate": 1, - "Py_buffer*": 2, - "dtype": 1, - "nd": 1, - "cast": 1, - "__Pyx_SafeReleaseBuffer": 1, - "__Pyx_TypeTest": 1, - "__Pyx_RaiseBufferFallbackError": 1, - "*__Pyx_GetItemInt_Generic": 1, - "*r": 7, - "PyObject_GetItem": 1, - "__Pyx_GetItemInt_List": 1, - "to_py_func": 6, - "__Pyx_GetItemInt_List_Fast": 1, - "__Pyx_GetItemInt_Generic": 6, - "*__Pyx_GetItemInt_List_Fast": 1, - "PyList_GET_SIZE": 5, - "PyList_GET_ITEM": 3, - "PySequence_GetItem": 3, - "__Pyx_GetItemInt_Tuple": 1, - "__Pyx_GetItemInt_Tuple_Fast": 1, - "*__Pyx_GetItemInt_Tuple_Fast": 1, - "PyTuple_GET_SIZE": 14, - "PyTuple_GET_ITEM": 15, - "__Pyx_GetItemInt": 1, - "__Pyx_GetItemInt_Fast": 2, - "PyList_CheckExact": 1, - "PyTuple_CheckExact": 1, - "PySequenceMethods": 1, - "*m": 1, - "tp_as_sequence": 1, - "sq_item": 2, - "sq_length": 2, - "PySequence_Check": 1, - "__Pyx_RaiseTooManyValuesError": 1, - "expected": 2, - "__Pyx_RaiseNeedMoreValuesError": 1, - "__Pyx_RaiseNoneNotIterableError": 1, - "__Pyx_IterFinish": 1, - "__Pyx_IternextUnpackEndCheck": 1, - "*retval": 1, - "shape": 1, - "strides": 1, - "suboffsets": 1, - "__Pyx_Buf_DimInfo": 2, - "pybuffer": 1, - "__Pyx_Buffer": 2, - "*rcbuffer": 1, - "diminfo": 1, - "__Pyx_LocalBuf_ND": 1, - "__Pyx_GetBuffer": 2, - "*view": 2, - "__Pyx_ReleaseBuffer": 2, - "PyObject_GetBuffer": 1, - "PyBuffer_Release": 1, - "__Pyx_zeros": 1, - "__Pyx_minusones": 1, - "*__Pyx_Import": 1, - "*from_list": 1, - "__Pyx_RaiseImportError": 1, - "__Pyx_Print": 1, - "__pyx_print": 1, - "__pyx_print_kwargs": 1, - "__Pyx_PrintOne": 1, - "__Pyx_CREAL": 4, - ".real": 3, - "__Pyx_CIMAG": 4, - ".imag": 3, - "__real__": 1, - "__imag__": 1, - "__Pyx_SET_CREAL": 2, - "__Pyx_SET_CIMAG": 2, - "__pyx_t_float_complex_from_parts": 1, - "__Pyx_c_eqf": 2, - "__Pyx_c_sumf": 2, - "__Pyx_c_difff": 2, - "__Pyx_c_prodf": 2, - "__Pyx_c_quotf": 2, - "__Pyx_c_negf": 2, - "__Pyx_c_is_zerof": 3, - "__Pyx_c_conjf": 3, - "conj": 3, - "__Pyx_c_absf": 3, - "abs": 2, - "__Pyx_c_powf": 3, - "pow": 2, "conjf": 1, - "cabsf": 1, - "cpowf": 1, - "__pyx_t_double_complex_from_parts": 1, - "__Pyx_c_eq": 2, - "__Pyx_c_sum": 2, - "__Pyx_c_diff": 2, - "__Pyx_c_prod": 2, - "__Pyx_c_quot": 2, - "__Pyx_c_neg": 2, - "__Pyx_c_is_zero": 3, - "__Pyx_c_conj": 3, - "__Pyx_c_abs": 3, - "__Pyx_c_pow": 3, - "cabs": 1, - "cpow": 1, - "__Pyx_PyInt_AsUnsignedChar": 1, - "__Pyx_PyInt_AsUnsignedShort": 1, - "__Pyx_PyInt_AsUnsignedInt": 1, - "__Pyx_PyInt_AsChar": 1, - "__Pyx_PyInt_AsShort": 1, - "signed": 5, - "__Pyx_PyInt_AsSignedChar": 1, - "__Pyx_PyInt_AsSignedShort": 1, - "__Pyx_PyInt_AsSignedInt": 1, - "__Pyx_PyInt_AsLongDouble": 1, - "__Pyx_PyInt_AsUnsignedLong": 1, - "__Pyx_PyInt_AsUnsignedLongLong": 1, - "__Pyx_PyInt_AsLong": 1, - "__Pyx_PyInt_AsLongLong": 1, - "__Pyx_PyInt_AsSignedLong": 1, - "__Pyx_PyInt_AsSignedLongLong": 1, - "__Pyx_WriteUnraisable": 4, - "clineno": 1, - "lineno": 1, - "*filename": 2, - "__Pyx_check_binary_version": 1, - "__Pyx_SetVtable": 1, - "*vtable": 1, - "__Pyx_PyIdentifier_FromString": 3, - "*__Pyx_ImportModule": 1, - "*__Pyx_ImportType": 1, - "*module_name": 1, - "*class_name": 1, - "__Pyx_GetVtable": 1, - "code_line": 4, - "PyCodeObject*": 2, - "code_object": 2, - "__Pyx_CodeObjectCacheEntry": 1, - "__Pyx_CodeObjectCache": 2, - "max_count": 1, - "__Pyx_CodeObjectCacheEntry*": 2, - "entries": 2, - "__pyx_code_cache": 1, - "__pyx_bisect_code_objects": 1, - "PyCodeObject": 1, - "*__pyx_find_code_object": 1, - "__pyx_insert_code_object": 1, - "__Pyx_AddTraceback": 7, - "*funcname": 1, - "c_line": 1, - "py_line": 1, - "__Pyx_InitStrings": 1, - "*__pyx_ptype_7cpython_4type_type": 1, - "*__pyx_ptype_5numpy_dtype": 1, - "*__pyx_ptype_5numpy_flatiter": 1, - "*__pyx_ptype_5numpy_broadcast": 1, - "*__pyx_ptype_5numpy_ndarray": 1, - "*__pyx_ptype_5numpy_ufunc": 1, - "*__pyx_f_5numpy__util_dtypestring": 1, - "PyArray_Descr": 1, - "*__pyx_ptype_7sklearn_5utils_13weight_vector_WeightVector": 1, - "*__pyx_ptype_7sklearn_5utils_11seq_dataset_SequentialDataset": 1, - "*__pyx_ptype_7sklearn_5utils_11seq_dataset_ArrayDataset": 1, - "*__pyx_ptype_7sklearn_5utils_11seq_dataset_CSRDataset": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_LossFunction": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Regression": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Classification": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_ModifiedHuber": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Hinge": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_SquaredHinge": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Log": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_SquaredLoss": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Huber": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_EpsilonInsensitive": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_SquaredEpsilonInsensitive": 1, - "__pyx_f_7sklearn_12linear_model_8sgd_fast_max": 1, - "__pyx_f_7sklearn_12linear_model_8sgd_fast_min": 1, - "__pyx_f_7sklearn_12linear_model_8sgd_fast_sqnorm": 1, - "__pyx_f_7sklearn_12linear_model_8sgd_fast_l1penalty": 1, - "__Pyx_TypeInfo_nn___pyx_t_7sklearn_12linear_model_8sgd_fast_DOUBLE": 1, - "__Pyx_MODULE_NAME": 1, - "__pyx_module_is_main_sklearn__linear_model__sgd_fast": 1, - "*__pyx_builtin_NotImplementedError": 1, - "*__pyx_builtin_range": 1, - "*__pyx_builtin_ValueError": 1, - "*__pyx_builtin_RuntimeError": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12LossFunction_loss": 2, - "*__pyx_v_self": 52, - "__pyx_v_p": 46, - "__pyx_v_y": 46, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12LossFunction_2dloss": 2, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_10Regression_loss": 2, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_10Regression_2dloss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_14Classification_loss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_14Classification_2dloss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_13ModifiedHuber_loss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_13ModifiedHuber_2dloss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_13ModifiedHuber_4__reduce__": 1, - "__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Hinge___init__": 1, - "__pyx_v_threshold": 2, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Hinge_2loss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Hinge_4dloss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Hinge_6__reduce__": 1, - "__pyx_pf_7sklearn_12linear_model_8sgd_fast_12SquaredHinge___init__": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12SquaredHinge_2loss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12SquaredHinge_4dloss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12SquaredHinge_6__reduce__": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_3Log_loss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_3Log_2dloss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_3Log_4__reduce__": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_11SquaredLoss_loss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_11SquaredLoss_2dloss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_11SquaredLoss_4__reduce__": 1, - "__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Huber___init__": 1, - "__pyx_v_c": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Huber_2loss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Huber_4dloss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Huber_6__reduce__": 1, - "__pyx_pf_7sklearn_12linear_model_8sgd_fast_18EpsilonInsensitive___init__": 1, - "__pyx_v_epsilon": 2, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_18EpsilonInsensitive_2loss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_18EpsilonInsensitive_4dloss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_18EpsilonInsensitive_6__reduce__": 1, - "__pyx_pf_7sklearn_12linear_model_8sgd_fast_25SquaredEpsilonInsensitive___init__": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_25SquaredEpsilonInsensitive_2loss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_25SquaredEpsilonInsensitive_4dloss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_25SquaredEpsilonInsensitive_6__reduce__": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_plain_sgd": 1, - "*__pyx_self": 1, - "*__pyx_v_weights": 1, - "__pyx_v_intercept": 1, - "*__pyx_v_loss": 1, - "__pyx_v_penalty_type": 1, - "__pyx_v_alpha": 1, - "__pyx_v_C": 1, - "__pyx_v_rho": 1, - "*__pyx_v_dataset": 1, - "__pyx_v_n_iter": 1, - "__pyx_v_fit_intercept": 1, - "__pyx_v_verbose": 1, - "__pyx_v_shuffle": 1, - "*__pyx_v_seed": 1, - "__pyx_v_weight_pos": 1, - "__pyx_v_weight_neg": 1, - "__pyx_v_learning_rate": 1, - "__pyx_v_eta0": 1, - "__pyx_v_power_t": 1, - "__pyx_v_t": 1, - "__pyx_v_intercept_decay": 1, - "__pyx_pf_5numpy_7ndarray___getbuffer__": 1, - "*__pyx_v_info": 2, - "__pyx_v_flags": 1, - "__pyx_pf_5numpy_7ndarray_2__releasebuffer__": 1, - "__pyx_k_1": 1, - "__pyx_k_2": 1, - "__pyx_k_3": 1, - "__pyx_k_4": 1, - "__pyx_k_6": 1, - "__pyx_k_8": 1, - "__pyx_k_10": 1, - "__pyx_k_12": 1, - "__pyx_k_13": 1, - "__pyx_k_16": 1, - "__pyx_k_20": 1, - "__pyx_k_21": 1, - "__pyx_k__B": 1, - "__pyx_k__C": 1, - "__pyx_k__H": 1, - "__pyx_k__I": 1, - "__pyx_k__L": 1, - "__pyx_k__O": 1, - "__pyx_k__Q": 1, - "__pyx_k__b": 1, - "__pyx_k__c": 1, - "__pyx_k__d": 1, - "__pyx_k__f": 1, - "__pyx_k__g": 1, - "__pyx_k__h": 1, - "__pyx_k__i": 1, - "__pyx_k__l": 1, - "__pyx_k__p": 1, - "__pyx_k__q": 1, - "__pyx_k__t": 1, - "__pyx_k__u": 1, - "__pyx_k__w": 1, - "__pyx_k__y": 1, - "__pyx_k__Zd": 1, - "__pyx_k__Zf": 1, - "__pyx_k__Zg": 1, - "__pyx_k__np": 1, - "__pyx_k__any": 1, - "__pyx_k__eta": 1, - "__pyx_k__rho": 1, - "__pyx_k__sys": 1, - "__pyx_k__eta0": 1, - "__pyx_k__loss": 1, - "__pyx_k__seed": 1, - "__pyx_k__time": 1, - "__pyx_k__xnnz": 1, - "__pyx_k__alpha": 1, - "__pyx_k__count": 1, - "__pyx_k__dloss": 1, - "__pyx_k__dtype": 1, - "__pyx_k__epoch": 1, - "__pyx_k__isinf": 1, - "__pyx_k__isnan": 1, - "__pyx_k__numpy": 1, - "__pyx_k__order": 1, - "__pyx_k__range": 1, - "__pyx_k__shape": 1, - "__pyx_k__zeros": 1, - "__pyx_k__n_iter": 1, - "__pyx_k__update": 1, - "__pyx_k__dataset": 1, - "__pyx_k__epsilon": 1, - "__pyx_k__float64": 1, - "__pyx_k__nonzero": 1, - "__pyx_k__power_t": 1, - "__pyx_k__shuffle": 1, - "__pyx_k__sumloss": 1, - "__pyx_k__t_start": 1, - "__pyx_k__verbose": 1, - "__pyx_k__weights": 1, - "__pyx_k____main__": 1, - "__pyx_k____test__": 1, - "__pyx_k__is_hinge": 1, - "__pyx_k__intercept": 1, - "__pyx_k__n_samples": 1, - "__pyx_k__plain_sgd": 1, - "__pyx_k__threshold": 1, - "__pyx_k__x_ind_ptr": 1, - "__pyx_k__ValueError": 1, - "__pyx_k__n_features": 1, - "__pyx_k__q_data_ptr": 1, - "__pyx_k__weight_neg": 1, - "__pyx_k__weight_pos": 1, - "__pyx_k__x_data_ptr": 1, - "__pyx_k__RuntimeError": 1, - "__pyx_k__class_weight": 1, - "__pyx_k__penalty_type": 1, - "__pyx_k__fit_intercept": 1, - "__pyx_k__learning_rate": 1, - "__pyx_k__sample_weight": 1, - "__pyx_k__intercept_decay": 1, - "__pyx_k__NotImplementedError": 1, - "*__pyx_kp_s_1": 1, - "*__pyx_kp_u_10": 1, - "*__pyx_kp_u_12": 1, - "*__pyx_kp_u_13": 1, - "*__pyx_kp_u_16": 1, - "*__pyx_kp_s_2": 1, - "*__pyx_kp_s_20": 1, - "*__pyx_n_s_21": 1, - "*__pyx_kp_s_3": 1, - "*__pyx_kp_s_4": 1, - "*__pyx_kp_u_6": 1, - "*__pyx_kp_u_8": 1, - "*__pyx_n_s__C": 1, - "*__pyx_n_s__NotImplementedError": 1, - "*__pyx_n_s__RuntimeError": 1, - "*__pyx_n_s__ValueError": 1, - "*__pyx_n_s____main__": 1, - "*__pyx_n_s____test__": 1, - "*__pyx_n_s__alpha": 1, - "*__pyx_n_s__any": 1, - "*__pyx_n_s__c": 1, - "*__pyx_n_s__class_weight": 1, - "*__pyx_n_s__count": 1, - "*__pyx_n_s__dataset": 1, - "*__pyx_n_s__dloss": 1, - "*__pyx_n_s__dtype": 1, - "*__pyx_n_s__epoch": 1, - "*__pyx_n_s__epsilon": 1, - "*__pyx_n_s__eta": 1, - "*__pyx_n_s__eta0": 1, - "*__pyx_n_s__fit_intercept": 1, - "*__pyx_n_s__float64": 1, - "*__pyx_n_s__i": 1, - "*__pyx_n_s__intercept": 1, - "*__pyx_n_s__intercept_decay": 1, - "*__pyx_n_s__is_hinge": 1, - "*__pyx_n_s__isinf": 1, - "*__pyx_n_s__isnan": 1, - "*__pyx_n_s__learning_rate": 1, - "*__pyx_n_s__loss": 1, - "*__pyx_n_s__n_features": 1, - "*__pyx_n_s__n_iter": 1, - "*__pyx_n_s__n_samples": 1, - "*__pyx_n_s__nonzero": 1, - "*__pyx_n_s__np": 1, - "*__pyx_n_s__numpy": 1, - "*__pyx_n_s__order": 1, - "*__pyx_n_s__p": 1, - "*__pyx_n_s__penalty_type": 1, - "*__pyx_n_s__plain_sgd": 1, - "*__pyx_n_s__power_t": 1, - "*__pyx_n_s__q": 1, - "*__pyx_n_s__q_data_ptr": 1, - "*__pyx_n_s__range": 1, - "*__pyx_n_s__rho": 1, - "*__pyx_n_s__sample_weight": 1, - "*__pyx_n_s__seed": 1, - "*__pyx_n_s__shape": 1, - "*__pyx_n_s__shuffle": 1, - "*__pyx_n_s__sumloss": 1, - "*__pyx_n_s__sys": 1, - "*__pyx_n_s__t": 1, - "*__pyx_n_s__t_start": 1, - "*__pyx_n_s__threshold": 1, - "*__pyx_n_s__time": 1, - "*__pyx_n_s__u": 1, - "*__pyx_n_s__update": 1, - "*__pyx_n_s__verbose": 1, - "*__pyx_n_s__w": 1, - "*__pyx_n_s__weight_neg": 1, - "*__pyx_n_s__weight_pos": 1, - "*__pyx_n_s__weights": 1, - "*__pyx_n_s__x_data_ptr": 1, - "*__pyx_n_s__x_ind_ptr": 1, - "*__pyx_n_s__xnnz": 1, - "*__pyx_n_s__y": 1, - "*__pyx_n_s__zeros": 1, - "*__pyx_int_15": 1, - "*__pyx_k_tuple_5": 1, - "*__pyx_k_tuple_7": 1, - "*__pyx_k_tuple_9": 1, - "*__pyx_k_tuple_11": 1, - "*__pyx_k_tuple_14": 1, - "*__pyx_k_tuple_15": 1, - "*__pyx_k_tuple_17": 1, - "*__pyx_k_tuple_18": 1, - "*__pyx_k_codeobj_19": 1, - "*__pyx_pw_7sklearn_12linear_model_8sgd_fast_12LossFunction_1loss": 3, - "*__pyx_args": 9, - "*__pyx_kwds": 9, - "__pyx_f_7sklearn_12linear_model_8sgd_fast_12LossFunction_loss": 1, - "__pyx_skip_dispatch": 6, - "__pyx_r": 39, - "*__pyx_t_1": 6, - "*__pyx_t_2": 3, - "*__pyx_t_3": 3, - "*__pyx_t_4": 3, - "__pyx_t_5": 12, - "__pyx_v_self": 15, - "tp_dictoffset": 3, - "__pyx_t_1": 69, - "PyObject_GetAttr": 3, - "__pyx_n_s__loss": 2, - "__pyx_filename": 51, - "__pyx_f": 42, - "__pyx_L1_error": 33, - "PyCFunction_Check": 3, - "PyCFunction_GET_FUNCTION": 3, - "PyCFunction": 3, - "__pyx_pw_7sklearn_12linear_model_8sgd_fast_12LossFunction_1loss": 1, - "__pyx_t_2": 21, - "PyFloat_FromDouble": 9, - "__pyx_t_3": 39, - "__pyx_t_4": 27, - "PyTuple_New": 3, - "PyTuple_SET_ITEM": 6, - "PyObject_Call": 6, - "PyErr_Occurred": 9, - "__pyx_L0": 18, - "__pyx_builtin_NotImplementedError": 3, - "__pyx_empty_tuple": 3, - "__pyx_doc_7sklearn_12linear_model_8sgd_fast_12LossFunction_loss": 1, - "*__pyx_r": 6, - "**__pyx_pyargnames": 3, - "__pyx_n_s__p": 6, - "__pyx_n_s__y": 6, - "values": 30, - "__pyx_kwds": 15, - "kw_args": 15, - "pos_args": 12, - "__pyx_args": 21, - "__pyx_L5_argtuple_error": 12, - "PyDict_Size": 3, - "PyDict_GetItem": 6, - "__pyx_L3_error": 18, - "__pyx_pyargnames": 3, - "__pyx_L4_argument_unpacking_done": 6, - "__pyx_pf_7sklearn_12linear_model_8sgd_fast_12LossFunction_loss": 1, - "__pyx_vtab": 2, - "loss": 1, - "*__pyx_pw_7sklearn_12linear_model_8sgd_fast_12LossFunction_3dloss": 3, - "__pyx_f_7sklearn_12linear_model_8sgd_fast_12LossFunction_dloss": 1, - "__pyx_n_s__dloss": 1, - "__pyx_pw_7sklearn_12linear_model_8sgd_fast_12LossFunction_3dloss": 1, - "__pyx_doc_7sklearn_12linear_model_8sgd_fast_12LossFunction_2dloss": 1, - "__pyx_pf_7sklearn_12linear_model_8sgd_fast_12LossFunction_2dloss": 1, - "dloss": 1, - "*__pyx_pw_7sklearn_12linear_model_8sgd_fast_10Regression_1loss": 3, - "__pyx_f_7sklearn_12linear_model_8sgd_fast_10Regression_loss": 1, - "__pyx_pw_7sklearn_12linear_model_8sgd_fast_10Regression_1loss": 1, - "__pyx_pf_7sklearn_12linear_model_8sgd_fast_10Regression_loss": 1, - "__pyx_base.__pyx_vtab": 1, - "__pyx_base.loss": 1, - "__wglew_h__": 2, - "__WGLEW_H__": 1, - "__wglext_h_": 2, - "wglext.h": 1, - "wglew.h": 1, - "WINAPI": 119, - "": 1, - "GLEW_STATIC": 1, - "WGL_3DFX_multisample": 2, - "WGL_SAMPLE_BUFFERS_3DFX": 1, - "WGL_SAMPLES_3DFX": 1, - "WGLEW_3DFX_multisample": 1, - "WGLEW_GET_VAR": 49, - "__WGLEW_3DFX_multisample": 2, - "WGL_3DL_stereo_control": 2, - "WGL_STEREO_EMITTER_ENABLE_3DL": 1, - "WGL_STEREO_EMITTER_DISABLE_3DL": 1, - "WGL_STEREO_POLARITY_NORMAL_3DL": 1, - "WGL_STEREO_POLARITY_INVERT_3DL": 1, - "BOOL": 84, - "PFNWGLSETSTEREOEMITTERSTATE3DLPROC": 2, - "HDC": 65, - "hDC": 33, - "UINT": 30, - "uState": 1, - "wglSetStereoEmitterState3DL": 1, - "WGLEW_GET_FUN": 120, - "__wglewSetStereoEmitterState3DL": 2, - "WGLEW_3DL_stereo_control": 1, - "__WGLEW_3DL_stereo_control": 2, - "WGL_AMD_gpu_association": 2, - "WGL_GPU_VENDOR_AMD": 1, - "F00": 1, - "WGL_GPU_RENDERER_STRING_AMD": 1, - "F01": 1, - "WGL_GPU_OPENGL_VERSION_STRING_AMD": 1, - "F02": 1, - "WGL_GPU_FASTEST_TARGET_GPUS_AMD": 1, - "A2": 2, - "WGL_GPU_RAM_AMD": 1, - "A3": 2, - "WGL_GPU_CLOCK_AMD": 1, - "A4": 2, - "WGL_GPU_NUM_PIPES_AMD": 1, - "A5": 3, - "WGL_GPU_NUM_SIMD_AMD": 1, - "A6": 2, - "WGL_GPU_NUM_RB_AMD": 1, - "A7": 2, - "WGL_GPU_NUM_SPI_AMD": 1, - "A8": 2, - "VOID": 6, - "PFNWGLBLITCONTEXTFRAMEBUFFERAMDPROC": 2, - "HGLRC": 14, - "dstCtx": 1, - "GLint": 18, - "srcX0": 1, - "srcY0": 1, - "srcX1": 1, - "srcY1": 1, - "dstX0": 1, - "dstY0": 1, - "dstX1": 1, - "dstY1": 1, - "GLbitfield": 1, - "mask": 1, - "GLenum": 8, - "filter": 1, - "PFNWGLCREATEASSOCIATEDCONTEXTAMDPROC": 2, - "PFNWGLCREATEASSOCIATEDCONTEXTATTRIBSAMDPROC": 2, - "hShareContext": 2, - "attribList": 2, - "PFNWGLDELETEASSOCIATEDCONTEXTAMDPROC": 2, - "hglrc": 5, - "PFNWGLGETCONTEXTGPUIDAMDPROC": 2, - "PFNWGLGETCURRENTASSOCIATEDCONTEXTAMDPROC": 2, - "PFNWGLGETGPUIDSAMDPROC": 2, - "maxCount": 1, - "UINT*": 6, - "ids": 1, - "INT": 3, + "SUNDOWN_VER_MAJOR": 1, + "got": 1, + "*state": 1, + "snprintf": 2, + "rfString_Assign_fUTF32": 2, + "__linux__": 3, + "HVIDEOOUTPUTDEVICENV*": 1, + "run_command_v_opt": 1, + "git_pool_swap": 1, + "thisstr": 210, + "WGL_GENERIC_ACCELERATION_EXT": 1, + "bgsaveCommand": 1, + "s_req_fragment": 7, + "redisServer": 1, + "*commit": 10, + "*X_data_ptr": 2, "PFNWGLGETGPUINFOAMDPROC": 2, - "property": 1, - "dataType": 1, - "PFNWGLMAKEASSOCIATEDCONTEXTCURRENTAMDPROC": 2, - "wglBlitContextFramebufferAMD": 1, - "__wglewBlitContextFramebufferAMD": 2, - "wglCreateAssociatedContextAMD": 1, - "__wglewCreateAssociatedContextAMD": 2, - "wglCreateAssociatedContextAttribsAMD": 1, - "__wglewCreateAssociatedContextAttribsAMD": 2, - "wglDeleteAssociatedContextAMD": 1, - "__wglewDeleteAssociatedContextAMD": 2, - "wglGetContextGPUIDAMD": 1, - "__wglewGetContextGPUIDAMD": 2, - "wglGetCurrentAssociatedContextAMD": 1, - "__wglewGetCurrentAssociatedContextAMD": 2, - "wglGetGPUIDsAMD": 1, - "__wglewGetGPUIDsAMD": 2, - "wglGetGPUInfoAMD": 1, - "__wglewGetGPUInfoAMD": 2, - "wglMakeAssociatedContextCurrentAMD": 1, - "__wglewMakeAssociatedContextCurrentAMD": 2, - "WGLEW_AMD_gpu_association": 1, - "__WGLEW_AMD_gpu_association": 2, - "WGL_ARB_buffer_region": 2, - "WGL_FRONT_COLOR_BUFFER_BIT_ARB": 1, - "WGL_BACK_COLOR_BUFFER_BIT_ARB": 1, - "WGL_DEPTH_BUFFER_BIT_ARB": 1, - "WGL_STENCIL_BUFFER_BIT_ARB": 1, - "HANDLE": 14, - "PFNWGLCREATEBUFFERREGIONARBPROC": 2, - "iLayerPlane": 5, - "uType": 1, - "PFNWGLDELETEBUFFERREGIONARBPROC": 2, - "hRegion": 3, - "PFNWGLRESTOREBUFFERREGIONARBPROC": 2, - "width": 3, - "height": 3, - "xSrc": 1, - "ySrc": 1, - "PFNWGLSAVEBUFFERREGIONARBPROC": 2, - "wglCreateBufferRegionARB": 1, - "__wglewCreateBufferRegionARB": 2, - "wglDeleteBufferRegionARB": 1, - "__wglewDeleteBufferRegionARB": 2, - "wglRestoreBufferRegionARB": 1, - "__wglewRestoreBufferRegionARB": 2, - "wglSaveBufferRegionARB": 1, - "__wglewSaveBufferRegionARB": 2, - "WGLEW_ARB_buffer_region": 1, - "__WGLEW_ARB_buffer_region": 2, - "WGL_ARB_create_context": 2, - "WGL_CONTEXT_DEBUG_BIT_ARB": 1, - "WGL_CONTEXT_FORWARD_COMPATIBLE_BIT_ARB": 1, - "WGL_CONTEXT_MAJOR_VERSION_ARB": 1, - "WGL_CONTEXT_MINOR_VERSION_ARB": 1, - "WGL_CONTEXT_LAYER_PLANE_ARB": 1, - "WGL_CONTEXT_FLAGS_ARB": 1, - "ERROR_INVALID_VERSION_ARB": 1, - "ERROR_INVALID_PROFILE_ARB": 1, - "PFNWGLCREATECONTEXTATTRIBSARBPROC": 2, - "wglCreateContextAttribsARB": 1, - "__wglewCreateContextAttribsARB": 2, + "__Pyx_AddTraceback": 7, + "__pyx_obj_7sklearn_5utils_13weight_vector_WeightVector": 3, + "free_commit_extra_headers": 1, + "HTTP_MKACTIVITY": 1, + "okay": 1, + "uint64_t": 8, + "__pyx_k__shape": 1, + "*__pyx_n_s__c": 1, "WGLEW_ARB_create_context": 1, - "__WGLEW_ARB_create_context": 2, - "WGL_ARB_create_context_profile": 2, - "WGL_CONTEXT_CORE_PROFILE_BIT_ARB": 1, - "WGL_CONTEXT_COMPATIBILITY_PROFILE_BIT_ARB": 1, - "WGL_CONTEXT_PROFILE_MASK_ARB": 1, - "WGLEW_ARB_create_context_profile": 1, - "__WGLEW_ARB_create_context_profile": 2, - "WGL_ARB_create_context_robustness": 2, - "WGL_CONTEXT_ROBUST_ACCESS_BIT_ARB": 1, - "WGL_LOSE_CONTEXT_ON_RESET_ARB": 1, - "WGL_CONTEXT_RESET_NOTIFICATION_STRATEGY_ARB": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_13ModifiedHuber_4__reduce__": 1, + "HTTP_##name": 1, + "cmd_verify_pack": 1, + "default": 33, + "WGL_DIGITAL_VIDEO_CURSOR_ALPHA_VALUE_I3D": 1, + "PyFrozenSet_Check": 1, + "i_NPSELECT_RF_STRING_REMOVE1": 1, + "diff_pathspec_is_interesting": 2, + "equals": 1, + "invalid": 2, + "refcount": 2, + "rb_str_cat": 4, + "WGL_GENLOCK_SOURCE_EDGE_BOTH_I3D": 1, + "__Pyx_StringTabEntry": 2, + "C": 14, + "*f": 2, + "msetCommand": 1, + "__pyx_k_21": 1, + "SUNDOWN_VER_REVISION": 1, + "i_rfLMSX_WRAP6": 2, + "diff_from_iterators": 5, + "during": 1, + "Consider": 2, + "i_NVrfString_Init": 3, + "PyBUF_RECORDS": 1, + "__pyx_f_7sklearn_12linear_model_8sgd_fast_12LossFunction_loss": 1, + "__pyx_k__n_samples": 1, + "node": 9, + "i_SELECT_RF_STRING_INIT_NC1": 1, + "HTTP_PROPFIND": 2, + "*description": 1, + "LF": 21, + "lookupCommandByCString": 3, + "__Pyx_c_is_zerof": 3, + "git_cache": 4, + "*graft": 3, + "PyVarObject_HEAD_INIT": 1, + "b__": 3, + "AE_ERR": 2, + "cmd_receive_pack": 1, + "rfString_ToUTF8": 2, + "*__pyx_n_s__q_data_ptr": 1, + "passes": 1, + "__pyx_t_5numpy_int32_t": 4, + "PyInt_AS_LONG": 1, + "lexer": 4, + "hSrcRC": 1, + "git_futils_open_ro": 1, + "__Pyx_PyInt_FromHash_t": 2, + "WGL_DIGITAL_VIDEO_CURSOR_INCLUDED_I3D": 1, + "yajl_bs_init": 1, + "WARN_ON": 1, + "o2": 7, + "WGLEW_NV_gpu_affinity": 1, + "GIT_DIFFCAPS_HAS_SYMLINKS": 2, + "yajl_set_default_alloc_funcs": 1, + "WGL_GPU_NUM_RB_AMD": 1, + "HTTP_SEARCH": 1, + "zstrdup": 5, + "rfUTF8_IsContinuationbyte": 1, + "pollfd": 1, + "__Pyx_c_prod": 2, + "yajl_do_parse": 1, + "server.repl_syncio_timeout": 1, + "REDIS_ENCODING_RAW": 1, + "WGL_TYPE_COLORINDEX_EXT": 1, + "numLen": 8, + "old_file.mode": 2, + "cmd_init_db": 2, + "static": 454, + "HPE_PAUSED": 2, + "CPU_UP_CANCELED": 1, + "user": 2, + "WGL_GPU_NUM_SIMD_AMD": 1, + "no": 4, + "PFNWGLCHOOSEPIXELFORMATARBPROC": 2, "WGL_NO_RESET_NOTIFICATION_ARB": 1, - "WGLEW_ARB_create_context_robustness": 1, - "__WGLEW_ARB_create_context_robustness": 2, - "WGL_ARB_extensions_string": 2, - "PFNWGLGETEXTENSIONSSTRINGARBPROC": 2, - "hdc": 16, - "wglGetExtensionsStringARB": 1, - "__wglewGetExtensionsStringARB": 2, - "WGLEW_ARB_extensions_string": 1, - "__WGLEW_ARB_extensions_string": 2, - "WGL_ARB_framebuffer_sRGB": 2, - "WGL_FRAMEBUFFER_SRGB_CAPABLE_ARB": 1, - "A9": 2, - "WGLEW_ARB_framebuffer_sRGB": 1, - "__WGLEW_ARB_framebuffer_sRGB": 2, - "WGL_ARB_make_current_read": 2, - "ERROR_INVALID_PIXEL_TYPE_ARB": 1, - "ERROR_INCOMPATIBLE_DEVICE_CONTEXTS_ARB": 1, - "PFNWGLGETCURRENTREADDCARBPROC": 2, - "PFNWGLMAKECONTEXTCURRENTARBPROC": 2, - "hDrawDC": 2, - "hReadDC": 2, + "*REDIS_EXPIRELOOKUPS_TIME_PERC/REDIS_HZ/100": 1, + "pointer": 5, + "include": 6, + "__Pyx_RefNanny": 8, + "__WGLEW_ARB_make_current_read": 2, + "rfFgetc_UTF32BE": 3, + "Strings": 2, "wglGetCurrentReadDCARB": 1, - "__wglewGetCurrentReadDCARB": 2, + "WGL_FULL_ACCELERATION_EXT": 1, + "i_NPSELECT_RF_STRING_BEFORE0": 1, + "This": 1, + "subLength": 6, + "dictVanillaFree": 1, + "uv_process_options_t": 2, + "wglGetExtensionsStringEXT": 1, + "PFNWGLCREATECONTEXTATTRIBSARBPROC": 2, + "Py_SIZE": 1, + "p": 60, + "**pathspec": 1, + "HDC": 65, + "cell_work": 3, + "rb_funcall": 14, + "charValue": 12, + "REDIS_MAXMEMORY_NO_EVICTION": 2, + "__wglewWaitForSbcOML": 2, + "cmd_format_patch": 1, + "__pyx_k__power_t": 1, + "item": 24, + "__pyx_k__isnan": 1, + ".active_writer": 1, + "sdscat": 14, + "__wglewDXUnregisterObjectNV": 2, + "*feature_indices_ptr": 2, + "clusterCommand": 1, + "fseek": 19, + "ignore": 1, + "git_iterator_free": 4, + "local": 5, + "wake_up_process": 1, + "POLLHUP": 1, + "__Pyx_GetItemInt_Generic": 6, + "WGL_TEXTURE_CUBE_MAP_POSITIVE_X_ARB": 1, + "*curtag": 2, + "rstrP": 5, + "buffAllocated": 11, + "listRelease": 1, + "PAUSED": 1, + "__real__": 1, + "complex": 2, + "A0": 3, + "server.lua_caller": 1, + "redisCommand": 6, + "WGL_ACCESS_READ_ONLY_NV": 1, + "*__pyx_args": 9, + "git_cache_free": 1, + "0xBF": 1, + "__wglew_h__": 2, + "i_SELECT_RF_STRING_FWRITE": 1, + "Qtrue": 10, + "pexpireatCommand": 1, + "zremrangebyrankCommand": 1, + "WEXITSTATUS": 2, + "have_repository": 1, + "*__pyx_n_s__zeros": 1, + "__Pyx_PyObject_IsTrue": 1, + "s_chunk_size_start": 4, + "PM_HIBERNATION_PREPARE": 1, + "revents": 2, + "To": 1, + "I_KEEPSTR_": 2, + "status": 57, + "WGL_ALPHA_SHIFT_EXT": 1, + "MKD_NOLINKS": 1, + "Error": 2, + "numclients/": 1, + "dictEncObjKeyCompare": 4, + "existence": 2, + "abs": 2, + "**pptr": 1, + "__Pyx_StructField": 2, + "*argv0": 1, + "NEW_MESSAGE": 6, + "lpGpuDevice": 1, + "functions": 2, + "*__pyx_n_s__t": 1, + "_param": 1, + "appendServerSaveParams": 3, + "noPreloadGetKeys": 6, + "wglIsEnabledFrameLockI3D": 1, + "WGL_EXT_pbuffer": 2, + "PyBUF_STRIDES": 6, + "author": 1, + "end": 48, + "WGL_VIDEO_OUT_ALPHA_NV": 1, + "srcX": 1, + "func_name": 2, + "*__pyx_n_s__class_weight": 1, + "handle_alias": 1, + "__Pyx_RaiseNoneNotIterableError": 1, + "NEED_WORK_TREE": 18, + "STRICT_CHECK": 15, + "T": 3, + "REDIS_REPL_PING_SLAVE_PERIOD": 1, + "server.aof_rewrite_time_last": 2, + "STRICT": 1, + "rfString_Count": 4, + "*w": 2, + "PyObject_DelAttrString": 2, + "WGL_TEXTURE_RGBA_ARB": 1, + "hRegion": 3, + "*diff_ptr": 2, + "buf": 57, + "i_rfString_Afterv": 16, + "getClientsMaxBuffers": 1, + "__pyx_k_16": 1, + "WGLEW_ARB_pixel_format_float": 1, + "appendCommand": 1, + "environ": 4, + "dstName": 1, + "git_buf_len": 1, + "i_SELECT_RF_STRING_BEFORE4": 1, + "dstY0": 1, + "*what": 1, + "GIT_DIFF_INCLUDE_UNTRACKED": 1, + ".id": 1, + "server.cronloops": 3, + "PFNWGLBINDSWAPBARRIERNVPROC": 2, + "epsilon": 2, + "*codepoints": 2, + "cmd_mailsplit": 1, + "__pyx_k____main__": 1, + "deref_tag": 1, + "i_StringCHandle": 1, + "i_STRING2_": 2, + "__pyx_k__B": 1, + "new_argv": 7, + "*header_value_mark": 1, + "stime": 1, + "server.ops_sec_samples": 4, + "PyBytes_Check": 1, + "PyInt_FromSize_t": 1, + "#elif": 14, + "assert": 41, + "is_ref": 1, + "RF_UTF32_LE//": 2, + "self_ru.ru_utime.tv_usec/1000000": 1, + "their": 1, + "wglCreateDisplayColorTableEXT": 1, + "i_SELECT_RF_STRING_CREATE_NC0": 1, + "The": 1, + "WGL_OPTIMAL_PBUFFER_HEIGHT_EXT": 1, + "Local": 2, + "shared.noscripterr": 1, + "__pyx_k__penalty_type": 1, + "wglQueryPbufferARB": 1, + "PFNWGLDISABLEGENLOCKI3DPROC": 2, + "REDIS_SLAVE": 3, + "uint16_t*": 11, + "i_SEARCHSTR_": 26, + "__wglewLoadDisplayColorTableEXT": 2, + "document": 9, + "base": 1, + "new_src": 3, + "HTTP_POST": 2, + "REDIS_REPL_WAIT_BGSAVE_START": 1, + "*phGpu": 1, + "GLboolean": 53, + "yajl_status_ok": 1, + "tree": 3, + "*__Pyx_ImportType": 1, + "SUNDOWN_VER_MINOR": 1, + "DECLARE_BITMAP": 6, + "__WGLEW_EXT_multisample": 2, + "free_ptr": 2, + "8": 15, + "R_Zero/R_Zero": 1, + "psubscribeCommand": 2, + "state": 104, + "i_rfString_Before": 5, + "__Pyx_PyUnicode_READY": 2, + "commit_tree_extended": 1, + "spopCommand": 1, + "*w_data_ptr": 1, + "HPE_INVALID_VERSION": 12, + "sig": 2, + "server.masterauth": 1, + "tp_as_sequence": 1, + "rfFReadLine_UTF32LE": 4, + "alloc_cpumask_var": 1, + "C4": 1, + "PFNWGLGENLOCKSOURCEDELAYI3DPROC": 2, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_SquaredEpsilonInsensitive": 1, + "tmp": 6, + "wglBindDisplayColorTableEXT": 1, + "PyString_Check": 2, + "keepstrP": 2, + "big": 14, + "linuxOvercommitMemoryValue": 2, + "REDIS_LIST_MAX_ZIPLIST_ENTRIES": 1, + "iGpuIndex": 2, + "an": 2, + "cmp": 9, + "cpumask_test_cpu": 1, + "num_pos_args": 1, + "yajl_free_error": 1, + "nid": 5, + "LOG_PID": 1, + "decrRefCount": 6, + "*message": 1, + "i_NPSELECT_RF_STRING_FWRITE1": 1, + "__Pyx_ErrFetch": 1, + "i_rfString_KeepOnly": 3, + "is_str": 1, + "PROXY_CONNECTION": 4, + "DeviceName": 1, + "WGL_I3D_swap_frame_lock": 2, + "*__pyx_k_tuple_17": 1, + "__pyx_args": 21, + "WGL_PBUFFER_HEIGHT_EXT": 1, + "": 1, + "dictResize": 2, + "on_message_begin": 1, + "HTTP_OPTIONS": 1, + "sunionstoreCommand": 1, + "on_url": 1, + "__Pyx_c_eqf": 2, + "strings": 5, + "op": 8, + "HPBUFFEREXT": 6, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Huber_6__reduce__": 1, + "clineno": 1, + "nd": 1, + "__pyx_k__shuffle": 1, + "git_iterator_for_workdir_range": 2, + "ust": 7, + "PyDict_Size": 3, + "PFNWGLRELEASEPBUFFERDCEXTPROC": 2, + "*data": 12, + "__pyx_v_C": 1, + "yajl_handle": 10, + "addReplyMultiBulkLen": 1, + "sleep": 1, + "uv_process_t*": 3, + "GIT_SUBMODULE_IGNORE_ALL": 1, + "__Pyx_IterFinish": 1, + "*msg": 6, + "col": 9, + "e": 4, + "SET_ERRNO": 47, + "": 1, + "FLEX_ARRAY": 1, + "WGL_STEREO_EMITTER_DISABLE_3DL": 1, + "dst": 15, + "__pyx_clineno": 58, + "__wglewGetExtensionsStringEXT": 2, + "PyObject_HEAD": 3, + "redisLogRaw": 3, + "child_fd": 3, + "UV_CREATE_PIPE": 4, + "INVALID_CHUNK_SIZE": 1, + "PFNWGLENABLEFRAMELOCKI3DPROC": 2, + "__wglewReleaseImageBufferEventsI3D": 2, + "__builtin_expect": 2, + "PyNumber_InPlaceTrueDivide": 1, + "Py_TPFLAGS_HAVE_NEWBUFFER": 1, + "use_pager": 8, + "REF_TABLE_SIZE": 1, + "__init": 2, + "server.requirepass": 4, + "bufferSize": 6, + "i_rfString_Find": 5, + "WGL_DEPTH_BITS_ARB": 1, + "zmalloc_enable_thread_safeness": 1, + "pfd.fd": 1, + "has": 2, + "rfFReadLine_UTF16BE": 6, + "getsetCommand": 1, + "is_connect": 4, + "*pointer": 1, + "B1": 1, + "Py_False": 2, + "wglGetSwapIntervalEXT": 1, + "*__pyx_self": 1, + "int*": 22, + "WGL_TEXTURE_FORMAT_ARB": 1, + "git_pool_strndup": 1, + "cmd_gc": 1, + "RF_UTF32_LE": 3, + "__wglewIsEnabledFrameLockI3D": 2, + "__Pyx_c_sumf": 2, + "*desc": 1, + "#else": 94, + "__Pyx_PyInt_AsLong": 1, + "REDIS_MAX_LOGMSG_LEN": 1, + "WGL_AUX2_ARB": 1, + "wglSetDigitalVideoParametersI3D": 1, + "PFNWGLGETCONTEXTGPUIDAMDPROC": 2, + "done_alias": 4, + "cb.blockhtml": 6, + "cpu_hotplug.refcount": 3, + "usage": 2, + "zrangebyscoreCommand": 1, + "__wglewDXCloseDeviceNV": 2, + "cmd_clone": 1, + "WGL_NUMBER_UNDERLAYS_EXT": 1, + "act": 6, + "CB_message_complete": 1, + "__pyx_vtabstruct_7sklearn_5utils_13weight_vector_WeightVector": 3, + "__wglext_h_": 2, + "RF_HEXLE_UI": 8, + "counters.process_init": 1, + "yajl_status_client_canceled": 1, + "*new_entry": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_18EpsilonInsensitive_4dloss": 1, + "parNP": 6, + "rfUTF16_Decode": 5, + "server.aof_current_size*100/base": 1, + "dictSdsDestructor": 4, + "*__pyx_n_s__i": 1, + "xSrc": 1, + "*PGPU_DEVICE": 1, + "47": 1, + "dateptr": 2, + "dup": 15, + "rfFgetc_UTF8": 3, + "cmd_ls_tree": 1, + "array": 1, + "determine": 1, + "bgrewriteaofCommand": 1, + "options.stdio_count": 4, + "http_parser_parse_url": 2, + "i_SELECT_RF_STRING_AFTERV13": 1, + "else": 190, + "PyTuple_GET_SIZE": 14, + "__pyx_pw_7sklearn_12linear_model_8sgd_fast_12LossFunction_3dloss": 1, + "idle_thread_get": 1, + "<5)>": 1, + "ask": 3, + "llenCommand": 1, + "PFNWGLGETPIXELFORMATATTRIBIVEXTPROC": 2, + "__pyx_k__zeros": 1, + "**subject": 2, + "*l": 1, + "bSize*sizeof": 1, + "SA_RESETHAND": 1, + "/sizeof": 4, + "REDIS_AOF_ON": 2, + "dumpCommand": 1, + "i_FSEEK_CHECK": 14, + "INVALID_URL": 1, + "DWORD": 5, + "__pyx_v_p": 46, + "void*": 135, + "cmd_write_tree": 1, + "rfString_Init_fUTF16": 3, + "server.el": 7, + "signum": 4, + "__wglewGenlockSourceI3D": 2, + "git_hash_ctx": 7, + "RF_COMPILE_ERROR": 33, + "opts.flags": 8, + "cmd_mktree": 1, + "PyString_FromFormat": 1, + "fclose": 5, + "***tail": 1, + "*__pyx_ptype_7cpython_4type_type": 1, + "__wglewBlitContextFramebufferAMD": 2, + "endif": 6, + "WGL_DOUBLE_BUFFER_EXT": 1, + "*__pyx_vtabptr_7sklearn_5utils_11seq_dataset_SequentialDataset": 1, + "PyUnicode_AS_UNICODE": 1, + "__Pyx_RaiseTooManyValuesError": 1, + "*rev2": 1, + "variable": 1, + "server.hash_max_ziplist_value": 1, + "num*100/slots": 1, + "*fp": 3, + "rfUTILS_SwapEndianUI": 11, + "CE": 1, + "YA_MALLOC": 1, + "WGL_AUX3_ARB": 1, + "i_SELECT_RF_STRING_BEFOREV15": 1, + "cpu_hotplug_begin": 4, + "put_online_cpus": 2, + "c_ru.ru_stime.tv_sec": 1, + "*__pyx_ptype_5numpy_broadcast": 1, + "WGL_ALPHA_BITS_EXT": 1, + "float": 26, + "REDIS_MAX_CLIENTS": 1, + "DELETE": 2, + "__pyx_k__update": 1, + "WGL_EXT_pixel_format_packed_float": 2, + "handle_options": 2, + "HTTP_COPY": 1, + "message_complete": 7, + "MARK": 7, + "Allocation": 2, + "": 1, + "cell_end": 6, + "existsCommand": 1, + "eofReached": 4, + "*pulCounterOutputVideo": 1, + "i_rfString_Init_nc": 3, + "arraysize": 1, + "macros": 1, + "server.set_max_intset_entries": 1, + "server.ops_sec_last_sample_ops": 3, + "WTERMSIG": 2, + "nodes": 10, + "KERN_INFO": 2, + "*16": 2, + "anetTcpServer": 1, + "REDIS_NOTUSED": 5, + "__wglewEnumerateVideoCaptureDevicesNV": 2, + "GIT_UNUSED": 1, + "commit_tree": 1, + "git_oid_cmp": 6, + "server.aof_selected_db": 1, + "lookup_tree": 1, + "decoration": 1, + "for_each_cpu": 1, + "SA_NODEFER": 1, + "server.rdb_compression": 1, + "wglGetSyncValuesOML": 1, + "WGL_TEXTURE_FLOAT_R_NV": 1, + "CMIT_FMT_ONELINE": 1, + "WGL_ACCUM_GREEN_BITS_ARB": 1, + "__pyx_t_5numpy_float_t": 1, + "rfString_Init_fUTF32": 3, + "cmd_apply": 1, + "graft": 10, + "*__pyx_t_4": 3, + "*subValues": 2, + "c2": 13, + "options.uid": 1, + "-": 1803, + "CYTHON_UNUSED": 14, + "entry": 17, + "db": 10, + "prepareForShutdown": 2, + "mi": 5, + "rfString_Init_cp": 3, + "new_file.size": 3, + "lru_count": 1, + "s_req_spaces_before_url": 5, + "mkd_compile": 2, + "ipc": 1, + "INVALID_HOST": 1, + "real": 2, + "yajl_state_start": 1, + "WGL_ARB_create_context": 2, + "old_file.flags": 2, + "discardCommand": 2, + "WGL_NUM_VIDEO_SLOTS_NV": 1, + "*new_parent": 2, + "v": 11, + "cmd_help": 1, + "func": 3, + "*cell_work": 1, + "WGLEW_3DFX_multisample": 1, + "*ref_name": 2, + "s_req_query_string_start": 8, + "*clientData": 1, + "save_our_env": 3, + "PyObject_GetBuffer": 1, + "PyBUF_ND": 2, + "PFNWGLDXCLOSEDEVICENVPROC": 2, + "i_SELECT_RF_STRING_BEFOREV": 1, + "*__pyx_v_info": 2, + "offsetof": 2, + "PFNWGLGENLOCKSAMPLERATEI3DPROC": 2, + "bytesWritten": 2, + "i_SELECT_RF_STRING_BETWEEN1": 1, + "npy_longlong": 2, + "**environ": 1, + "*swap": 1, + "read_sha1_file": 1, + "A6": 2, + "*read_commit_extra_header_lines": 1, + "__pyx_n_s__p": 6, + "ZMALLOC_LIB": 2, + "http_major": 11, + "__pyx_k__d": 1, + "HANDLE": 14, + "__Pyx_ReleaseBuffer": 2, + "*get_octopus_merge_bases": 1, + "HPE_INVALID_METHOD": 4, + "__wglewQueryCurrentContextNV": 2, + "WGL_ARB_extensions_string": 2, + "diff_delta__dup": 3, + "cpu_hotplug_done": 4, + "vkeys": 8, + "*uMaxPixelDelay": 1, + "__Pyx_GetItemInt_Tuple_Fast": 1, + "been": 1, + "cpumask": 7, + "": 1, + "*patch_mode": 1, + "GLEW_STATIC": 1, + "rb_intern": 15, + "ustime": 7, + "than": 5, + "UV_PROCESS_DETACHED": 2, + "target_msc": 3, + "cmd_tag": 1, + "hpVideoDevice": 1, + "__WGLEW_NV_render_texture_rectangle": 2, + "": 5, + "long": 105, + "cmd_config": 1, + "PFNWGLGETGAMMATABLEPARAMETERSI3DPROC": 2, + "cmd_push": 1, + "__wglewGetPbufferDCARB": 2, + "setup_git_directory": 1, + "jsonTextLen": 4, + "obuf_bytes": 3, + "*sp": 1, + "RUN_CLEAN_ON_EXIT": 1, + "unsigned": 140, + "__pyx_k__fit_intercept": 1, + "_ms_": 2, + "hlenCommand": 1, + "npy_uint64": 1, + "*old_entry": 1, + "PTR_ERR": 1, + "ptr": 18, + "server.syslog_enabled": 3, + "pack": 2, + "__Pyx_RaiseImportError": 1, + "*cause": 1, + "": 1, + "server.maxidletime": 3, + "wglBeginFrameTrackingI3D": 1, + "__WGLEW_I3D_swap_frame_lock": 2, + "git_diff_list_free": 3, + "rfString_Deinit": 3, + "rb_rdiscount__get_flags": 3, + "WGLEW_NV_copy_image": 1, + "*__pyx_n_s__alpha": 1, + "__wglewGenlockSampleRateI3D": 2, + "utf16": 11, + "code=": 2, + "shared.emptybulk": 1, + "rfString_Append_fUTF8": 2, + "npy_cdouble": 2, + "__wglewReleaseVideoDeviceNV": 2, + "if": 1015, + "convert": 1, + "BITS_TO_LONGS": 1, + "pair": 4, + "WGL_LOSE_CONTEXT_ON_RESET_ARB": 1, + "S_ISGITLINK": 1, + "PyGILState_Ensure": 1, + "__pyx_k__H": 1, + "__Pyx_RaiseArgtupleInvalid": 7, + "WGL_NO_ACCELERATION_EXT": 1, + "*keepChars": 1, + "lremCommand": 1, + "*__pyx_n_s__xnnz": 1, + "otherwise": 1, + "///Internal": 1, + "b_index_": 6, + "PFNWGLGETPIXELFORMATATTRIBIVARBPROC": 2, + "git_cached_obj_incref": 3, + "rfString_StripEnd": 3, + "": 1, + "**diff": 4, + "npy_float32": 1, + "i_NPSELECT_RF_STRING_BETWEEN": 1, + "HPE_INVALID_CHUNK_SIZE": 2, + "server.syslog_facility": 2, + "ssize_t": 1, + "temporary": 4, + "h_matching_proxy_connection": 3, + "due": 2, + "ob_refcnt": 1, + "parse_url_char": 5, + "watchdogScheduleSignal": 1, + "unsubscribeCommand": 2, + "WGL_NV_video_capture": 2, + "__pyx_k__xnnz": 1, + "clear_commit_marks_for_object_array": 1, + "__Pyx_c_abs": 3, + "WGL_ATI_render_texture_rectangle": 2, + "*a": 9, + "WGL_NV_vertex_array_range": 2, + "WGL_BIND_TO_TEXTURE_RECTANGLE_DEPTH_NV": 1, + "PyLong_AsSsize_t": 1, + "ER": 4, + "": 1, + "utf32": 10, + "ln": 8, + "UV__O_CLOEXEC": 1, + "PFNWGLDXLOCKOBJECTSNVPROC": 2, + "i_SELECT_RF_STRING_BEFORE": 1, + "npy_ulong": 1, + "PyDict_GetItem": 6, + "rfString_PruneEnd": 2, + "cmd.buf": 1, + "self_ru": 2, + "saveCommand": 1, + "hDC": 33, + "RF_UTF16_LE": 9, + "va_start": 3, + "TARGET_OS_IPHONE": 1, + "__wglewDXOpenDeviceNV": 2, + "*__pyx_kp_s_3": 1, + "__Pyx_GetItemInt_List_Fast": 1, + "unregister_shallow": 1, + "indexing": 1, + "slaves": 3, + "bpop.timeout": 2, + "at": 3, + "**argv": 6, + "uDelay": 2, + "*__pyx_n_s__eta": 1, + "file_size": 6, + "RF_HEXGE_C": 1, + "wglDXUnlockObjectsNV": 1, + "*__pyx_kwds": 9, + "PyLong_Type": 1, + "DL_IMPORT": 2, + "*get_shallow_commits": 1, + "__Pyx_PyInt_AsInt": 2, + "*ver_revision": 2, + "shared.nokeyerr": 1, + "server.slaves": 9, + "gettimeofday": 4, + "process": 19, + "PFNWGLENUMERATEVIDEODEVICESNVPROC": 2, + "__pyx_t_5numpy_complex_t": 1, + "performed": 1, + "PyBytes_FromStringAndSize": 1, + "i_SELECT_RF_STRING_AFTERV7": 1, + "PARSING_HEADER": 2, + "HPVIDEODEV*": 1, + "__Pyx_PyInt_AsShort": 1, + "WGL_ARB_pixel_format_float": 2, + "url_mark": 2, + "": 1, + "": 1, + "WGL_NV_video_output": 2, + "valid": 1, + "__WGLEW_ARB_create_context_profile": 2, + "*from": 1, + "__pyx_k__u": 1, + "TASK_UNINTERRUPTIBLE": 1, + "old_tree": 5, + "i_SOURCE_": 2, + "*__pyx_n_s__any": 1, + "All": 1, + "cache": 26, + "__STDC_VERSION__": 2, + "create": 2, + "timeval": 4, + "INVALID_STATUS": 1, + "__pyx_k__intercept": 1, + "WGL_3DFX_multisample": 2, + "mem_freed": 4, + "server.loading_start_time": 2, + "*key": 5, + "parent_offset": 1, + "pAddress": 2, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12SquaredHinge_6__reduce__": 1, + "CPU_STARTING_FROZEN": 1, + "": 1, + "WGLEW_OML_sync_control": 1, + "cmd_rev_parse": 1, + "i_rfString_StripStart": 3, + "s_body_identity": 3, + "PM_POST_HIBERNATION": 1, + "REDIS_BIO_AOF_FSYNC": 1, + "addReplyBulk": 1, + "uv_ok_": 1, + "exit_status": 3, + "hObjects": 2, + "__pyx_f_7sklearn_12linear_model_8sgd_fast_12LossFunction_dloss": 1, + "int32_t": 112, + "__wglewGetPixelFormatAttribfvEXT": 2, + "HTTP_CHECKOUT": 1, + "subP": 7, + "more": 2, + "open": 4, + "cmit_fmt": 3, + "*opts": 6, + "*__Pyx_GetItemInt_List_Fast": 1, + "__pyx_k__np": 1, + "characterLength": 16, + "http_parser_pause": 2, + "__wglewGetSyncValuesOML": 2, + "srcY0": 1, + "__pyx_v_flags": 1, + "uint32_t*": 34, + "cp": 12, + "k": 15, + "server.lua": 1, + "growth": 3, + "": 2, + "*__pyx_v_loss": 1, + "*ret": 20, + "__pyx_t_7sklearn_12linear_model_8sgd_fast_INTEGER": 3, + "commit_pager_choice": 4, + "__pyx_t_4": 27, + "len": 30, + "WGL_FULL_ACCELERATION_ARB": 1, + "s_req_schema_slash": 6, + "dictSdsCaseHash": 2, + "INVALID_CONTENT_LENGTH": 1, + "check_commit": 2, + "PFNWGLGETPIXELFORMATATTRIBFVARBPROC": 2, + "wglGetExtensionsStringARB": 1, + "alloc_commit_node": 1, + "needs": 1, + "cpu_possible_bits": 6, + "updateDictResizePolicy": 2, + "SPAWN_WAIT_EXEC": 5, + "uv__process_child_init": 2, + "PFNWGLENUMGPUSFROMAFFINITYDCNVPROC": 2, + "B7": 1, + "wglext.h": 1, + "i_NPSELECT_RF_STRING_REPLACE": 1, + "loss": 1, + "object_array": 2, + "*__pyx_refnanny": 1, + "rfString_Create_f": 2, + "repo": 23, + "WGLEW_EXT_create_context_es2_profile": 1, + "rlim_t": 3, + "": 1, + "wglGetGenlockSampleRateI3D": 1, + "i_SELECT_RF_STRING_AFTER3": 1, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Log": 5, + "__Pyx_PyInt_AsLongLong": 1, + "i_SELECT_RF_STRING_CREATE0": 1, + "PFNWGLMAKECONTEXTCURRENTARBPROC": 2, + "dloss": 1, + "ERROR_INVALID_PIXEL_TYPE_EXT": 1, + "i_rfLMSX_WRAP14": 2, + "noid": 4, + "h_content_length": 5, + "take_cpu_down_param": 3, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_3Log_2dloss": 1, + "cmd_patch_id": 1, + "*1024*256": 1, + "__wglewDXObjectAccessNV": 2, + "__wglewQueryFrameLockMasterI3D": 2, + "get_online_cpus": 2, + "loops": 2, + "__pyx_L0": 18, + "WGL_ALPHA_SHIFT_ARB": 1, + "RUN_SETUP_GENTLY": 16, + "object.sha1": 8, + "cmd_count_objects": 1, + "check_pager_config": 3, + "http_message_needs_eof": 4, + "REDIS_WARNING": 19, + "http_minor": 11, + "lookup_object": 2, + "*pfValues": 2, + "sd_version": 1, + "arch_disable_nonboot_cpus_end": 2, + "sstr2": 2, + "sdscatrepr": 1, + "i_NPSELECT_RF_STRING_AFTER0": 1, + "*r": 7, + "i_SELECT_RF_STRING_REPLACE": 1, + "node_zonelists": 1, + "mutex_unlock": 6, + "RF_String*sub": 2, + "server.ops_sec_idx": 4, + "__pyx_t_double_complex_from_parts": 1, + "are": 6, + "typename": 2, + ".hard_limit_bytes": 3, + "idletime": 2, + "message": 3, + "RF_SELECT_FUNC": 10, + "i_SELECT_RF_STRING_REPLACE2": 1, + ".expires": 8, + "PFNWGLQUERYSWAPGROUPNVPROC": 2, + "RF_SELECT_FUNC_IF_NARGGT": 10, + "i_SELECT_RF_STRING_BEFOREV9": 1, + "server.syslog_ident": 2, + "incrCommand": 1, + "GIT_DIFFCAPS_TRUST_CTIME": 2, + "**stack": 1, + "cmd_rm": 1, + "header_flag": 3, + "clear_tasks_mm_cpumask": 1, + "uname": 1, + "wglQuerySwapGroupNV": 1, + "__pyx_kwds": 15, + "fmt": 4, + "uType": 1, + "WGL_SWAP_UNDEFINED_EXT": 1, + "cmd_unpack_file": 1, + "yajl_status": 4, + "*feature_indices": 2, + "*__pyx_n_s__epoch": 1, + "__pyx_doc_7sklearn_12linear_model_8sgd_fast_12LossFunction_loss": 1, + "error": 96, + "server.unixtime/REDIS_LRU_CLOCK_RESOLUTION": 1, + "setgid": 1, + "__pyx_k__plain_sgd": 1, + "_MSC_VER": 5, + "struct": 359, + "WGL_ACCUM_ALPHA_BITS_EXT": 1, + "PyBUF_WRITABLE": 3, + "PyLong_AsUnsignedLongMask": 1, + "single_parent": 1, + "wglCreatePbufferEXT": 1, + "unwatchCommand": 1, + "lstr": 6, + "pptr": 5, + "rfUTF8_IsContinuationByte": 12, + "*__pyx_n_s__intercept_decay": 1, + "get_sha1_hex": 2, + "cpu_hotplug": 1, + "shared.punsubscribebulk": 1, + "bitopCommand": 1, + "lastsaveCommand": 1, + "brpoplpushCommand": 1, + "RF_HEXEQ_C": 9, + "WGL_MAX_PBUFFER_PIXELS_EXT": 1, + "date_mode": 2, + "GL_RGBA_FLOAT_MODE_ATI": 1, + "__Pyx_Raise": 4, + "__cpu_notify": 6, + "Init_rdiscount": 1, + "dictGenCaseHashFunction": 1, + "xF": 5, + "SOCK_STREAM": 2, + "argument": 1, + "__pyx_k__count": 1, + "*new": 1, + "h_connection": 6, + "REDIS_NOTICE": 13, + "cmd_cat_file": 1, + "git_diff_list": 17, + "get_sha1": 1, + "cmd_update_index": 1, + "h_matching_upgrade": 3, + "moveCommand": 1, + "UF_FRAGMENT": 2, + "INVALID_INTERNAL_STATE": 1, + "gid": 2, + "create_object": 2, + "///closing": 1, + "GL_COLOR_CLEAR_UNCLAMPED_VALUE_ATI": 1, + "yajl_parser_config": 1, + "function": 6, + "goto": 159, + "*title": 1, + "shared.loadingerr": 2, + "|": 132, + "__Pyx_PyBytes_FromUString": 1, + "Py_HUGE_VAL": 2, + "PM_SUSPEND_PREPARE": 1, + "EBUSY": 3, + "termination": 3, + "operations": 1, + "09": 1, + "*util": 1, + "&&": 248, + "bib": 3, + "free_commit_list": 1, + "__Pyx_TypeInfo_nn___pyx_t_7sklearn_12linear_model_8sgd_fast_DOUBLE": 1, + "RF_MODULE_STRINGS//": 1, + "*ob": 3, + "settings": 6, + "server.loading_total_bytes": 3, + "case": 273, + "*onto": 1, + "GIT_IDXENTRY_SKIP_WORKTREE": 1, + "s_headers_almost_done": 4, + "server.stat_numconnections": 2, + "replicationCron": 1, + "__wglewReleaseVideoCaptureDeviceNV": 2, + "GPU_DEVICE": 1, + "itemsize": 1, + "free_obj": 4, + "*X_indices_ptr": 1, + "*__pyx_ptype_5numpy_dtype": 1, + "execv_dashed_external": 2, + "REDIS_SHUTDOWN_NOSAVE": 1, + "server.aof_fsync": 1, + "F_TRAILING": 3, + "PFNWGLISENABLEDFRAMELOCKI3DPROC": 2, + "dstX": 1, + "wglGetCurrentAssociatedContextAMD": 1, + "*__pyx_n_s__penalty_type": 1, + "PFNWGLQUERYPBUFFEREXTPROC": 2, + "rb_rdiscount_to_html": 2, + "processInputBuffer": 1, + "isinherited": 1, + "SHA1_Final": 3, + "sdiffCommand": 1, + "PFNWGLENDFRAMETRACKINGI3DPROC": 2, + "fd": 34, + "cmd_describe": 1, + "deltas.contents": 1, + "sdscatprintf": 24, + "*eventLoop": 2, + "WGL_PBUFFER_HEIGHT_ARB": 1, + "WGL_IMAGE_BUFFER_MIN_ACCESS_I3D": 1, + "__pyx_k__sumloss": 1, + "PyBUF_FULL": 1, + "*encodingP": 1, + "PyArrayObject": 8, + "memcmp": 6, + "__int64": 3, + "that": 9, + "inside": 2, + "setnxCommand": 1, + "wglEnableFrameLockI3D": 1, + "WGLEW_EXT_extensions_string": 1, + "__Pyx_TypeTest": 1, + "PyCFunction_GET_FUNCTION": 3, + "__Pyx_GetBuffer": 2, + "subscribeCommand": 2, + "WGL_TYPE_RGBA_FLOAT_ATI": 1, + "rfString_Strip": 2, + "*__pyx_kp_u_10": 1, + "*const": 4, + "pbytePos": 2, + "zrevrangeCommand": 1, + "WGL_VIDEO_OUT_COLOR_AND_ALPHA_NV": 1, + "pFlag": 3, + "defined": 42, + "ltrimCommand": 1, + "INVALID_PORT": 1, + "cmd_upload_archive": 1, + "*blob_type": 2, + "shared.err": 1, + "__wglewBindVideoImageNV": 2, + "PFNWGLDXOPENDEVICENVPROC": 2, + "i_rfString_Fwrite": 5, + "WGL_TEXTURE_CUBE_MAP_NEGATIVE_X_ARB": 1, + "*retval": 1, + "MKD_NOPANTS": 1, + "__wglewGetExtensionsStringARB": 2, + "RF_HEXGE_UI": 6, + "*__Pyx_Import": 1, + "dstX0": 1, + "git__free": 15, + "WGL_PBUFFER_LARGEST_EXT": 1, + "i_SELECT_RF_STRING_FWRITE1": 1, + "bestval": 5, + "REDIS_BLOCKED": 2, + "WGL_I3D_genlock": 2, + "date": 5, + "cpu_possible_mask": 2, + "cpu_maps_update_begin": 9, + "server.master": 3, + "server.zset_max_ziplist_entries": 1, + "REDIS_OPS_SEC_SAMPLES": 3, + "WGL_NV_copy_image": 2, + "__pyx_t_5numpy_intp_t": 1, + "i_STRING1_": 2, + "__Pyx_GIVEREF": 9, + "wglGetDigitalVideoParametersI3D": 1, + "*scan": 2, + "*server.dbnum": 1, + "setCommand": 1, + "REPORT": 2, + "commit": 59, + "parent": 7, + "__wglewGetGammaTableI3D": 2, + "n_samples": 1, + "PFNWGLGENLOCKSOURCEI3DPROC": 2, + "CMIT_FMT_MEDIUM": 2, + "ENOENT": 3, + "__Pyx_SET_CIMAG": 2, + "git_version_string": 1, + "yajl_handle_t": 1, + "REDIS_MAXMEMORY_ALLKEYS_RANDOM": 2, + "oid": 17, + "DIFF_NEW_PREFIX_DEFAULT": 1, + "subdir": 3, + "WGL_PIXEL_TYPE_EXT": 1, + "stateStack": 3, + "CONFIG_MEMORY_HOTPLUG": 2, + "*1024*8": 1, + "git_iterator_advance_into_directory": 1, "wglMakeContextCurrentARB": 1, + "git_buf_detach": 1, + "dictSdsKeyCaseCompare": 2, + "delCommand": 1, + "CB_headers_complete": 1, + "*__pyx_builtin_NotImplementedError": 1, + "PyInt_FromString": 1, + "WGL_BIND_TO_TEXTURE_RECTANGLE_RGBA_NV": 1, + "FILE*": 64, + "D": 8, + "cmd_fetch": 1, + "*result": 1, + "http_strerror_tab": 7, + "": 1, + "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_EpsilonInsensitive": 2, + "rfString_ToUTF16": 4, + "tempBuff": 6, + "i_rfLMSX_WRAP7": 2, + "__pyx_t_5numpy_int8_t": 1, + "i_WHENCE_": 4, + "*__pyx_v_dataset": 1, + "file": 6, + "uv__nonblock": 5, + "INVALID_VERSION": 1, + "wscale": 1, + "__pyx_k__sample_weight": 1, + "N_": 1, + "rstatus": 1, + "to": 37, + "i_SELECT_RF_STRING_BEFOREV10": 1, + "evalCommand": 1, + "RE_UTF8_INVALID_SEQUENCE_END": 6, + "PyCodeObject": 1, + "openlog": 1, + "server.unixsocketperm": 2, + "listNode": 4, + "GLEWAPI": 6, + "shareHandle": 1, + "PFNWGLGETFRAMEUSAGEI3DPROC": 2, + "WGL_DOUBLE_BUFFER_ARB": 1, + "Py_PYTHON_H": 1, + "PyList_CheckExact": 1, + "ev_child_stop": 2, + "__pyx_k__learning_rate": 1, + "createSharedObjects": 2, + "i_rfPopen": 2, + "Attempted": 1, + "wglDisableGenlockI3D": 1, + "WGL_ALPHA_BITS_ARB": 1, + "EXPORT_SYMBOL_GPL": 4, + "cpu_hotplug_disabled": 7, + "scriptingInit": 1, + "xD800": 8, + "fork": 2, + "out": 18, + "": 2, + "__Pyx_Print": 1, + "method_strings": 2, + "RSTRING_LEN": 2, + "server.cluster.myself": 1, + "shared.pong": 2, + "echoCommand": 2, + "PyGILState_STATE": 1, + "USE_PAGER": 3, + "__pyx_pyargnames": 3, + "WGL_MAX_PBUFFER_HEIGHT_EXT": 1, + "xFFFE0000": 1, + "HAVE_BACKTRACE": 1, + "wglReleaseVideoDeviceNV": 1, + "wglDXObjectAccessNV": 1, + "cmd_grep": 1, + "param": 2, + "changes": 2, + "found": 20, + "CMIT_FMT_UNSPECIFIED": 1, + "*index": 2, + "RF_OPTION_DEFAULT_ARGUMENTS": 24, + "rfString_ToUTF32": 4, + "*__pyx_n_s____main__": 1, + "uses": 1, + "slaveseldb": 1, + "*privdata": 8, + "PyBytes_Concat": 1, + "__pyx_f_7sklearn_12linear_model_8sgd_fast_l1penalty": 1, + "(": 6213, + "depth": 2, + "WGL_SWAP_EXCHANGE_EXT": 1, + "**msg_p": 2, + "md": 18, + "col_data": 2, + "__wglewCreateBufferRegionARB": 2, + "new_file.path": 6, + "*buf": 10, + "PyLong_AsLong": 1, + "strncmp": 1, + "REDIS_AOF_REWRITE_PERC": 1, + "wglFreeMemoryNV": 1, + "entries": 2, + "Py_UNICODE*": 1, + "i_NPSELECT_RF_STRING_BEFORE1": 1, + "WGL_TYPE_RGBA_ARB": 1, + "old_uf": 4, + "classes": 1, + "xFEFF": 1, + "surrogate": 4, + "*bufferSize": 1, + "D0": 1, + "*tail": 2, + "": 1, + "HPE_INVALID_URL": 4, + "PFNWGLALLOCATEMEMORYNVPROC": 2, + "WGL_ATI_pixel_format_float": 2, + "aeMain": 1, + "hDstRC": 1, + "opts.new_prefix": 4, + "interactive_add": 1, + "WGL_SAMPLES_EXT": 1, + "*__pyx_n_s__threshold": 1, + "curtag": 8, + "ENOMEM": 4, + "HPE_##n": 1, + "cmd_fmt_merge_msg": 1, + "*diff_prefix_from_pathspec": 1, + "pfd.events": 1, + "prefix.ptr": 2, + "*__pyx_n_s__loss": 1, + "peak_hmem": 3, + "A1": 1, + "i_OFFSET_": 4, + "": 1, + "priority": 1, + "PFNWGLENABLEGENLOCKI3DPROC": 2, + "strerror": 4, + "macro": 2, + "server.aof_current_size": 2, + "dup2": 4, + "_GPU_DEVICE": 1, + "ob_type": 7, + "RF_STRING_INDEX_OUT_OF_BOUNDS": 2, + "sep": 3, + "CPU_STARTING": 1, + "UINT": 30, + "*piFormats": 2, + "hAffinityDC": 1, + "__pyx_k__loss": 1, + "_Complex_I": 3, + "_Complex": 2, + "i_rfString_CreateLocal": 2, + "__Pyx_GetBufferAndValidate": 1, + "environment": 3, + "*__pyx_n_s__u": 1, + "git_delta_t": 5, + "*/": 1, + "*__pyx_n_s__isinf": 1, + "HTTP_NOTIFY": 1, + "CPU_BITS_ALL": 2, + "encoded": 2, + "server.aof_fd": 4, + "clientsCron": 2, + "srcY": 1, + "StringX": 2, + "PyInt_FromLong": 3, + "__wglewGetGenlockSourceI3D": 2, + "cmd_column": 1, + "PyNumber_Divide": 1, + "hand": 28, + "shallow_flag": 1, + "opts.old_prefix": 4, + "HPE_INVALID_CONSTANT": 3, + "s_start_req_or_res": 4, + "atoi": 3, + "tolower": 2, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_SquaredHinge": 6, + "*__pyx_k_tuple_7": 1, + "dwSize": 1, + "cpu_bit_bitmap": 2, + "rfLMS_Push": 4, + "sdsfree": 2, + "Rebuild": 1, + "i_LIMSELECT_RF_STRING_BEFOREV": 1, + "memset": 4, + "height": 3, + "lol": 3, + "server.aof_rewrite_base_size": 4, + "WGL_TEXTURE_TARGET_ARB": 1, + "wglCreateAssociatedContextAttribsAMD": 1, + "dstY1": 1, + "git__prefixcmp": 2, + "new_entry": 5, + "IS_URL_CHAR": 6, + "s_res_first_status_code": 3, + "WGL_TEXTURE_FLOAT_RGB_NV": 1, + "WGLEW_EXT_swap_control": 1, + "PyString_FromStringAndSize": 1, + "__int16": 2, + "wglEnumGpuDevicesNV": 1, + "WGL_MIPMAP_TEXTURE_ARB": 1, + "PFNWGLDELETEASSOCIATEDCONTEXTAMDPROC": 2, + "st": 2, + "cmd_checkout": 1, + "<=thisstr->": 1, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Hinge": 1, + "__pyx_k__C": 1, + "hcpu": 10, + "COVERAGE_TEST": 1, + "obj": 48, + "||": 141, + "set_cpu_online": 1, + "testity": 2, + ".blocking_keys": 1, + "wglJoinSwapGroupNV": 1, + "next": 8, + "__WGLEW_EXT_pixel_format": 2, + "rfString_Between": 3, + "i_SELECT_RF_STRING_CREATE_NC1": 1, + "rfPclose": 1, + "#ifdef": 64, + "redisGitSHA1": 3, + "uv__process_close_stream": 2, + "git_usage_string": 2, + "signal_pipe": 7, + "paused": 3, + "all": 2, + "ffff": 4, + "rfUTF16_Decode_swap": 5, + "ev_child_start": 1, + "FLOAT": 4, + "UV_PROCESS_SETUID": 2, + "specific": 1, + "9": 1, + "server.multiCommand": 1, + "INVALID_QUERY_STRING": 1, + "_PyUnicode_Ready": 1, + "__FILE__": 4, + "**orig_argv": 1, + "Does": 1, + "*__pyx_builtin_ValueError": 1, + "li": 6, + "__pyx_v_self": 15, + "WGL_STEREO_POLARITY_INVERT_3DL": 1, + "HTTP_HEAD": 2, + "__int32": 2, + "new_file.mode": 4, + "__Pyx_c_neg": 2, + "__pyx_k__n_features": 1, + "endian": 20, + "server.aof_no_fsync_on_rewrite": 1, + "C5": 1, + "PFNWGLGETSWAPINTERVALEXTPROC": 2, + "__wglewIsEnabledGenlockI3D": 2, + "yajl_parse_complete": 1, + "STDIN_FILENO": 1, + "shared.crlf": 2, + "UV_PROCESS_WINDOWS_VERBATIM_ARGUMENTS": 1, + "wglQueryVideoCaptureDeviceNV": 1, + "RAW_NOTIFIER_HEAD": 1, + "COPY": 2, + "MS_WINDOWS": 2, + "RF_STRING_ITERATEB_START": 2, + "nitem": 32, + "__Pyx_c_absf": 3, + "WGL_ACCUM_RED_BITS_EXT": 1, + "int32_t*": 1, + "cmd_mktag": 1, + "refs": 2, + "self_ru.ru_utime.tv_sec": 1, + "http_parser_settings": 5, + "wglEndFrameTrackingI3D": 1, + "__wglewSwapIntervalEXT": 2, + "source": 8, + "hash": 12, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_SquaredLoss": 1, + "strides": 1, + "s_req_fragment_start": 7, + "__wglewEndFrameTrackingI3D": 2, + "*dict": 5, + "__Pyx_BufFmt_Context": 1, + "hDrawDC": 2, + "temp": 11, + "*__pyx_k_tuple_18": 1, + "__pyx_k__p": 1, + "PyBytes_Repr": 1, + "sdsnew": 27, + "server.unblocked_clients": 4, + "cmd_unpack_objects": 1, + "FinishContext": 1, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Huber": 6, + "*col_data": 1, + "dictSetHashFunctionSeed": 1, + "clusterNodesDictType": 1, + "hashDictType": 1, + "*dup": 1, + "hShareContext": 2, + "old_entry": 5, + "RFS_": 8, + "fj": 1, + "R_Nan": 2, + "header_state": 42, + "__Pyx_c_quotf": 2, + "RF_String": 27, + "maxfiles": 6, + "WGL_GENLOCK_SOURCE_EDGE_RISING_I3D": 1, + "__cplusplus": 18, + "*git_cache_get": 1, + "__pyx_k__numpy": 1, + "threshold": 2, + "shared.integers": 2, + "phDeviceList": 2, + "WGL_I3D_swap_frame_usage": 2, + "WGL_CONTEXT_MAJOR_VERSION_ARB": 1, + "*__pyx_n_s__learning_rate": 1, + "pragma": 1, + "__Pyx_c_is_zero": 3, + "notifier_to_errno": 1, + "*__pyx_kp_u_16": 1, + "poll": 1, + "__MINGW32__": 1, + "cabsf": 1, + "f": 184, + "WGLEW_NV_render_texture_rectangle": 1, + "parse_signed_commit": 1, + "new_packmode": 1, + "": 4, + "type": 36, + "PyLong_FromSsize_t": 1, + "__wglewGetPixelFormatAttribfvARB": 2, + "lookup_commit_graft": 1, + "exist": 2, + "result": 48, + "RF_LF": 10, + "PFNWGLQUERYPBUFFERARBPROC": 2, + "h_matching_connection_keep_alive": 3, + "MKD_TABSTOP": 1, + "sdsavail": 1, + "__wglewGetVideoInfoNV": 2, + "PFNWGLBINDVIDEOIMAGENVPROC": 2, + "WGL_CONTEXT_FORWARD_COMPATIBLE_BIT_ARB": 1, + "diff_strdup_prefix": 2, + "format": 4, + "aeCreateFileEvent": 2, + "B2": 1, + "__WGLEW_I3D_genlock": 2, + "__pyx_module_is_main_sklearn__linear_model__sgd_fast": 1, + "PFNWGLGETGENLOCKSOURCEEDGEI3DPROC": 2, + "__wglewCreatePbufferARB": 2, + "__pyx_k__nonzero": 1, + "MASK_DECLARE_4": 3, + "rcu_read_unlock": 1, + "EV_CHILD": 1, + "PFNWGLQUERYGENLOCKMAXSOURCEDELAYI3DPROC": 2, + "accomplish": 1, + "hReadDC": 2, + "xFF": 1, + "SOCK_CLOEXEC": 1, + "PFNWGLQUERYFRAMECOUNTNVPROC": 2, + "__wglewReleasePbufferDCEXT": 2, + "CYTHON_PEP393_ENABLED": 2, + "const": 357, + "tokensN": 2, + "server.loading": 4, + "querybuf_size": 3, + "see": 2, + "*signature": 1, + "__Pyx_PyIdentifier_FromString": 3, + "*__pyx_n_s__NotImplementedError": 1, + "raw_notifier_chain_register": 1, + "WGLEW_NV_swap_group": 1, + "__pyx_v_power_t": 1, + "__WGLEW_I3D_gamma": 2, + "WGLEW_ARB_pbuffer": 1, + "finding": 1, + "ERROR_INVALID_PIXEL_TYPE_ARB": 1, + "WGL_GAMMA_TABLE_SIZE_I3D": 1, + "S_ISLNK": 2, + "nMaxFormats": 2, + "eof": 53, + "NODE_DATA": 1, + "MOVE": 2, + "__WGLEW_EXT_depth_float": 2, + "48": 1, + "__pyx_k__sys": 1, + "*__pyx_n_s__isnan": 1, + "rfString_Equal": 4, + "block_lines": 3, + "start_of_line": 2, + "act.sa_sigaction": 1, + "l1": 4, + "F_SKIPBODY": 4, + "__wglewWaitForMscOML": 2, + "pathspec.count": 2, + "#ifndef": 84, + "i_SELECT_RF_STRING_AFTERV14": 1, + "cpu_active_bits": 4, + "WGL_SHARE_DEPTH_EXT": 1, + "PYREX_WITHOUT_ASSERTIONS": 1, + "npy_cfloat": 1, + "*m": 1, + "RF_String*": 222, + "cpow": 1, + "__cpu_die": 1, + "sigsegvHandler": 1, + "WGL_NV_gpu_affinity": 2, + "__wglewMakeContextCurrentEXT": 2, + "diff_delta__cmp": 3, + "__pyx_t_5numpy_int16_t": 1, + "*check_commit": 1, + "git_cache_init": 1, + "OBJ_COMMIT": 5, + "*src": 3, + "Little": 1, + "SIGFPE": 1, + "*cmd": 5, + "filter": 1, + "server.assert_failed": 1, + "psetexCommand": 1, + "ignore_dups": 2, + "__Pyx_GOTREF": 24, + "lookup_commit_reference_gently": 1, + "CF": 1, + "__wglewQueryMaxSwapGroupsNV": 2, + "PyLong_Check": 1, + "bogus": 1, + "i_SELECT_RF_STRING_BEFOREV16": 1, + "git_hash_vec": 1, + "pBytePos": 15, + "adjustOpenFilesLimit": 2, + "PyNumber_TrueDivide": 1, + "anetUnixServer": 1, + "iterations": 4, + "propagateExpire": 2, + "__wglewQueryPbufferEXT": 2, + "PyErr_Warn": 1, + "__Pyx_PyNumber_Divide": 2, + "wglGetGenlockSourceEdgeI3D": 1, + "cpu_present": 1, + "pttlCommand": 1, + "__WGLEW_NV_render_depth_texture": 2, + "yajl_status_error": 1, + "i_AFTERSTR_": 8, + "wglCreateContextAttribsARB": 1, + "__GNUC_MINOR__": 2, + "PyBUF_INDIRECT": 2, + "git_startup_info": 2, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Hinge": 6, + "parse_htmlblock": 1, + "EINTR": 1, + "i_MODE_": 2, + "any": 3, + "__pyx_t_5numpy_double_t": 1, + "frozen_cpus": 9, + "could": 2, + "REDIS_VERBOSE": 3, + "ttlCommand": 1, + "*delta": 6, + "PyObject_GetItem": 1, + "sstr": 39, + "WGL_TEXTURE_CUBE_MAP_ARB": 1, + "rfFgetc_UTF16BE": 4, + "stacklevel": 1, + "REDIS_SET_MAX_INTSET_ENTRIES": 1, + "punsubscribeCommand": 2, + "xA": 1, + "wglDXCloseDeviceNV": 1, + "WGL_AUX4_ARB": 1, + "c3": 9, + "child_watcher.data": 1, + "PyFloat_FromDouble": 9, + "i_rfString_Between": 4, + ".": 1, + "HTTP_UNSUBSCRIBE": 1, + "*ptr": 1, + "i_WRITE_CHECK": 1, + "WGL_MAX_PBUFFER_PIXELS_ARB": 1, + "*__pyx_kp_u_8": 1, + "wglDestroyPbufferEXT": 1, + "*tokensN": 1, + "firstkey": 1, + "WGL_NUMBER_PIXEL_FORMATS_ARB": 1, + "git_pool_strdup": 3, + "mask": 1, + "rfFback_UTF32BE": 2, + "w": 6, + "shared.czero": 1, + "syslogLevelMap": 2, + "incrbyCommand": 1, + "*__Pyx_RefNannyImportAPI": 1, + "WGL_FRONT_COLOR_BUFFER_BIT_ARB": 1, + "__pyx_pf_5numpy_7ndarray___getbuffer__": 1, + "cmd_diff": 1, + "diff_path_matches_pathspec": 3, + "parse_blob_buffer": 2, + "uf": 14, + "xDFFF": 8, + "//invalid": 1, + "srcX0": 1, + "HTTP_PURGE": 1, + "zonelists_mutex": 2, + "HTTP_REQUEST": 7, + "__pyx_k__range": 1, + "shared.emptymultibulk": 1, + "PFNWGLENUMERATEVIDEOCAPTUREDEVICESNVPROC": 2, + "CYTHON_COMPILING_IN_PYPY": 3, + "__pyx_vtab": 2, + "data.fd": 1, + "CB_message_begin": 1, + "i_SELECT_RF_STRING_BETWEEN2": 1, + "git_oid_cpy": 5, + "dstCtx": 1, + "BUFFER_BLOCK": 5, + "sremCommand": 1, + "PyCodeObject*": 2, + "p_fnmatch": 1, + "__Pyx_XCLEAR": 1, + "A7": 2, + "yajl_parse": 2, + "*commandTable": 1, + "socketpair": 2, + "PFNWGLCREATEASSOCIATEDCONTEXTAMDPROC": 2, + "REDIS_LOG_RAW": 2, + "__Pyx_Owned_Py_None": 1, + "pager_command_config": 2, + "calling": 4, + "WGL_GREEN_BITS_ARB": 1, + "vec": 2, + "clientCommand": 1, + "PFNWGLQUERYFRAMETRACKINGI3DPROC": 2, + "i_SELECT_RF_STRING_CREATE": 1, + "fgets": 1, + "REDIS_HT_MINFILL": 1, + "": 1, + "i_rfString_Equal": 3, + "of": 44, + "__Pyx_ArgTypeTest": 1, + "assumed": 1, + "header_field": 5, + "server.slowlog_max_len": 1, + "*settings": 2, + "WGL_SWAP_COPY_EXT": 1, + "__wglewGetSwapIntervalEXT": 2, + "fstat": 1, + "*lookup_commit_reference_by_name": 2, + "sum": 3, + "getCommand": 1, + "uv__set_sys_error": 2, + "pathspec.length": 1, + "i_SELECT_RF_STRING_REMOVE0": 1, + "rfFseek": 2, + "[": 597, + "init_cpu_possible": 1, + "cpu_notify_nofail": 4, + "keys": 4, + "REDIS_CLIENT_LIMIT_CLASS_PUBSUB": 3, + "*context": 1, + "__wglewSetDigitalVideoParametersI3D": 2, + "decrCommand": 1, + "have": 2, + "c_line": 1, + "s1": 6, + "http_errno_name": 1, + "ULLONG_MAX": 10, + "keys_freed": 3, + "LOG_NOTICE": 1, + "use_fd": 7, + "SEARCH": 3, + "WGL_GREEN_SHIFT_EXT": 1, + "needed": 10, + "typedef": 189, + "*__Pyx_RefNanny": 1, + "yajl_alloc_funcs": 3, + "patch": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_18EpsilonInsensitive_6__reduce__": 1, + "__pyx_obj_7sklearn_5utils_11seq_dataset_ArrayDataset": 2, + "tag": 1, + "equal": 1, + "rfUTF16_Encode": 1, + "WIFEXITED": 1, + "PATCH": 2, + "__pyx_k__I": 1, + "Py_XINCREF": 1, + "npy_ulonglong": 2, + "s_res_first_http_major": 3, + "uv__handle_stop": 1, + "compile": 1, + "__pyx_t_5numpy_cfloat_t": 1, + "CONFIG_INIT_ALL_POSSIBLE": 1, + "T_STRING": 2, + "GIT_DIFF_FILE_VALID_OID": 4, + "git_cached_obj": 5, + "numberP": 1, + "name.sysname": 1, + "shared.rpop": 1, + "code_line": 4, + "PyLong_FromSize_t": 1, + "WGL_GENERIC_ACCELERATION_ARB": 1, + "WGLEW_NV_float_buffer": 1, + "WGL_NV_float_buffer": 2, + "__Pyx_PyIndex_Check": 3, + "rfUTF32_Length": 1, + "PFNWGLRELEASEVIDEOIMAGENVPROC": 2, + "__pyx_k__t_start": 1, + "pair.": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Hinge_6__reduce__": 1, + "Py_buffer*": 2, + "HTTP_PATCH": 1, + "cpu_chain": 4, + "yajl_lex_alloc": 1, + "__pyx_obj_7sklearn_5utils_11seq_dataset_CSRDataset": 2, + "*b": 6, + "cmd_merge_file": 1, + "__pyx_k__Zf": 1, + "ignore_prefix": 6, + "validity": 2, + "sdiffstoreCommand": 1, + "options.gid": 1, + "i_rfLMSX_WRAP2": 4, + "after": 6, + "lo": 6, + "typegroup": 1, + "cpumask_var_t": 1, + "bestkey": 9, + "__WGLEW_NV_copy_image": 2, + "PySet_Type": 2, + "under_end": 1, + "shared.ok": 3, + "wglSwapBuffersMscOML": 1, + "pUsage": 1, + "ref": 1, + "*__pyx_n_s__fit_intercept": 1, + "__wglewGetCurrentReadDCEXT": 2, + "new_count": 1, + "*__pyx_kp_s_4": 1, + "GIT_DELTA_UNMODIFIED": 11, + "s_res_status_code": 3, + "addReplyError": 6, + "*head": 1, + "HTTP_ERRNO_GEN": 3, + "__pyx_pf_7sklearn_12linear_model_8sgd_fast_12LossFunction_2dloss": 1, + "shared.roslaveerr": 2, + "http_should_keep_alive": 2, + "GIT_IDXENTRY_INTENT_TO_ADD": 1, + "*nb": 3, + "i_SELECT_RF_STRING_AFTERV8": 1, + "cmd_whatchanged": 1, + "createPidFile": 2, + "REDIS_MAXMEMORY_ALLKEYS_LRU": 2, + "dictRehashMilliseconds": 2, + "USHORT*": 2, + "sizeof": 71, + "cell": 4, + "hello": 1, + "*configfile": 1, + "WGLEW_NV_video_capture": 1, + "i_REPSTR_": 16, + "__Pyx_CLEAR": 1, + "WGL_RED_SHIFT_EXT": 1, + "": 1, + "shared.oomerr": 2, + "UNKNOWN": 1, + "*__pyx_n_s__C": 1, + "PySet_Check": 1, + "SHA_CTX": 3, + "checkUTF8": 1, + "*lookup_commit": 2, + "fp": 13, + "GIT_DELTA_DELETED": 7, + "you": 1, + "h_matching_connection_close": 3, + "c_ru": 2, + "__wglewSetGammaTableI3D": 2, + "WGL_SUPPORT_GDI_ARB": 1, + "WGL_MAX_PBUFFER_HEIGHT_ARB": 1, + "even": 1, + "GIT_ATTR_FNMATCH_ALLOWSPACE": 1, + "SUBSCRIBE": 2, + "*in": 1, + "*__pyx_pw_7sklearn_12linear_model_8sgd_fast_12LossFunction_3dloss": 3, + "rfUTF8_VerifySequence": 7, + "PFNWGLQUERYMAXSWAPGROUPSNVPROC": 2, + "PyObject_GetAttr": 3, + "old_iter": 8, + "WGLEW_EXT_display_color_table": 1, + "*match": 3, + "srcY1": 1, + "ERROR_INCOMPATIBLE_DEVICE_CONTEXTS_ARB": 1, + "str": 162, + "l": 7, + "pid": 13, + "rfFgets_UTF16LE": 2, + "constructor": 1, + "stream": 3, + "be": 6, + "**encoding_p": 1, + "PyBaseString_Type": 1, + "header_states": 1, + "s_req_query_string": 7, + "little": 7, + "ends": 3, + "used*100/size": 1, + "sortCommand": 1, + "__wglewDeleteAssociatedContextAMD": 2, + "__pyx_t_5": 12, + "off.": 1, + "WGL_ARB_create_context_profile": 2, + "__pyx_v_penalty_type": 1, + "sunionCommand": 1, + "B8": 1, + "WGL_CONTEXT_DEBUG_BIT_ARB": 1, + "BOOL": 84, + "iAttribute": 8, + "WGL_ACCUM_BITS_EXT": 1, + "WGL_SAMPLES_ARB": 1, + "Lefteris": 1, + "PFNWGLMAKEASSOCIATEDCONTEXTCURRENTAMDPROC": 2, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Huber_4dloss": 1, + "TRACE": 2, + "i_SELECT_RF_STRING_AFTER4": 1, + "WGL_ACCUM_BLUE_BITS_EXT": 1, + "WGL_GENLOCK_SOURCE_EXTERNAL_SYNC_I3D": 1, + "Py_None": 8, + "i_SELECT_RF_STRING_CREATE1": 1, + "help": 4, + "cmd_var": 1, + "field_data": 5, + "bufptr": 12, + "i_rfLMSX_WRAP15": 2, + "i_NVrfString_Create_nc": 3, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Regression": 11, + "hashcmp": 2, + "MKD_STRICT": 1, + "shared.select": 1, + "uv__process_close": 1, + "cmd_annotate": 1, + "internal": 4, + "*__pyx_n_s__p": 1, + "*__pyx_n_s__ValueError": 1, + "verbose": 2, + "**": 6, + "bytePositions": 17, + "server.zset_max_ziplist_value": 1, + "CB_header_field": 1, + "rfString_IterateB_Start": 1, + "*get_merge_parent": 1, + "*pop_most_recent_commit": 1, + "IS_HOST_CHAR": 4, + "HPE_OK": 10, + "32": 1, + "sub": 12, + "rfString_ScanfAfter": 2, + "code_object": 2, + "self_ru.ru_stime.tv_sec": 1, + "REDIS_SLOWLOG_LOG_SLOWER_THAN": 1, + "server.repl_down_since": 2, + "shared.outofrangeerr": 1, + "infoCommand": 4, + "WGL_VIDEO_OUT_COLOR_NV": 1, + "WGLEW_NV_multisample_coverage": 1, + "*s": 3, + "uMaxLineDelay": 1, + "__pyx_print": 1, + "strbuf": 12, + "git_diff_list_alloc": 1, + "i_NPSELECT_RF_STRING_AFTER1": 1, + "VALUE": 13, + "pth": 2, + "server.delCommand": 1, + "aeEventLoop": 2, + "content_length": 27, + "iBufferType": 1, + "prefix": 34, + "nAttributes": 4, + "WGL_STEREO_POLARITY_NORMAL_3DL": 1, + "WGL_SWAP_LAYER_BUFFERS_EXT": 1, + "WGL_BACK_RIGHT_ARB": 1, + "internally": 1, + "*60": 1, + "server.maxmemory_samples": 3, + "CMIT_FMT_FULL": 1, + "i_SELECT_RF_STRING_REPLACE3": 1, + "__pyx_v_learning_rate": 1, + "RUN_SILENT_EXEC_FAILURE": 1, + "__pyx_k_12": 1, + "i_SELECT_RF_STRING_BEFORE0": 1, + "*diff": 8, + "MKD_NO_EXT": 1, + "zrevrankCommand": 1, + "zrankCommand": 1, + "": 3, + "type*": 1, + "*__pyx_n_s__dataset": 1, + "done_help": 3, + "RF_STRING_ITERATE_END": 9, + "so": 4, + "server.dirty": 3, + "push": 1, + "pEvent": 1, + "xF0": 2, + "error_lineno": 3, + "WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_RGB_NV": 1, + "omode": 8, + "rfString_Assign": 2, + "__WGLEW_ARB_render_texture": 2, + "WGL_OPTIMAL_PBUFFER_WIDTH_EXT": 1, + "back": 1, + "configfile": 2, + "HPE_INVALID_HEADER_TOKEN": 2, + "execvp": 1, + "current_index": 2, + "setup_pager": 1, + "": 3, + "cmd_shortlog": 1, + "num_found": 1, + "backs": 1, + "server.lua_timedout": 2, + "server.current_client": 3, + "versions": 1, + "PyLong_FromString": 1, + "CMIT_FMT_SHORT": 1, + "rfString_Find": 3, + "getbitCommand": 1, + "__WGLEW_NV_present_video": 2, + "yajl_buf_free": 1, + "off64_t": 1, + "*subLength": 2, + "C0000": 2, + "ndim": 2, + "*argv": 6, + "PFNWGLCREATEDISPLAYCOLORTABLEEXTPROC": 2, + "cmd_read_tree": 1, + "BOM": 1, + "__wglewResetFrameCountNV": 2, + "WGL_CONTEXT_MINOR_VERSION_ARB": 1, + "listRotate": 1, + "*key1": 4, + "WGLEW_I3D_genlock": 1, + "*diff_strdup_prefix": 1, + "*__pyx_builtin_range": 1, + "SIGSEGV": 1, + "uv_err_t": 1, + "lock": 6, + "*header_field_mark": 1, + "minPosLength": 3, + "*_entry": 1, + "*vtable": 1, + "__pyx_k_6": 1, + "*sample_weight_data": 2, + "}": 1544, + "CPU_DYING": 1, + "aeCreateTimeEvent": 1, + "shared.queued": 2, + "multiCommand": 2, + "C0": 3, + "WGL_NV_render_texture_rectangle": 2, + "rfString_Init_i": 2, + "PFNWGLASSOCIATEIMAGEBUFFEREVENTSI3DPROC": 2, + "rfFback_UTF16LE": 2, + "exists": 6, + "work": 4, + "wglReleasePbufferDCEXT": 1, + "__pyx_k__intercept_decay": 1, + "klass": 1, + "GITERR_OS": 1, + "Stack": 2, + "rlimit": 1, + "DICT_HT_INITIAL_SIZE": 2, + "wglQueryCurrentContextNV": 1, + "rfFgets_UTF8": 2, + "cmd_repo_config": 1, + "RF_IAMHERE_FOR_DOXYGEN": 22, + "__wglewGetPixelFormatAttribivEXT": 2, + "hgetallCommand": 1, + "PFNWGLDXOBJECTACCESSNVPROC": 2, + "///Fseek": 1, + "__pyx_cfilenm": 1, + "__pyx_k__seed": 1, + "copy": 4, + "serverCron": 2, + "dstY": 1, + "rev_info": 2, + "interval": 1, + "git_buf_sets": 1, + "diff_delta__alloc": 2, + "commit_buffer": 1, + "HTTP_MSEARCH": 1, + "DICT_NOTUSED": 6, + "WGL_TRANSPARENT_ALPHA_VALUE_ARB": 1, + "argv0": 2, + "*oid": 2, + "GIT_DELTA_ADDED": 4, + "WGL_ACCUM_RED_BITS_ARB": 1, + "CALLBACK_NOTIFY_NOADVANCE": 2, + "char**": 7, + "s_req_host": 8, + "s_start_req": 6, + "WGL_ERROR_INCOMPATIBLE_AFFINITY_MASKS_NV": 1, + "*__pyx_n_s__RuntimeError": 1, + "__pyx_k__threshold": 1, + "*__pyx_n_s__update": 1, + "__WGLEW_ARB_extensions_string": 2, + "kill": 4, + "uint16_t": 12, + "util": 3, + "VOID": 6, + "here": 5, + "*msc": 3, + "__pyx_v_eta0": 1, + "i_STRING_": 2, + "from": 16, + "CONFIG_PM_SLEEP_SMP": 2, + "CPU_ONLINE": 1, + "WGL_BLUE_BITS_EXT": 1, + "a": 80, + "enc_count": 1, + "__pyx_k__weights": 1, + "i_SELECT_RF_STRING_FIND0": 1, + "GITERR_CHECK_ALLOC": 3, + "REDIS_REPL_TIMEOUT": 1, + "dbDelete": 2, + "RP_SELECT_FUNC_IF_NARGIS": 5, + "bytes": 225, + "*__pyx_n_s__rho": 1, + "i_STR_": 8, + "library": 3, + "s_chunk_size_almost_done": 4, + "PM_POST_SUSPEND": 1, + "REDIS_ENCODING_INT": 4, + "Python.": 1, + "npy_uintp": 1, + "i_NPSELECT_RF_STRING_BETWEEN0": 1, + "commit_list_set_next": 1, + "REDIS_LRU_CLOCK_MAX": 1, + "i_SELECT_RF_STRING_FWRITE2": 1, + "dstX1": 1, + "*rndr": 4, + "LEN": 2, + "*idle": 1, + "*_param": 1, + "utf8BufferSize": 4, + "position": 1, + "strftime": 1, + "writable": 8, + "WGL_BLUE_SHIFT_EXT": 1, + "rfString_Append_fUTF16": 2, + "userformat_want": 2, + "DeviceString": 1, + "*out": 3, + "WGL_NEED_PALETTE_EXT": 1, + "__pyx_k__O": 1, + "into": 8, + "char*": 166, + "memcpy": 34, + "ERROR_INVALID_PROFILE_ARB": 1, + "WGL_DEPTH_COMPONENT_NV": 1, + "wglDXLockObjectsNV": 1, + "__Pyx_GetItemInt": 1, + "**twos": 1, + "cmd_fsck": 2, + "goes": 1, + "WGL_TEXTURE_CUBE_MAP_POSITIVE_Z_ARB": 1, + "__pyx_t_double_complex": 27, + "*envchanged": 1, + "strdup": 1, + "WGL_NUMBER_UNDERLAYS_ARB": 1, + "git_buf_vec": 1, + "0x7a": 1, + "chars": 3, + "failed": 2, + "alloc_blob_node": 1, + "*subject": 1, + "GIT_MODE_TYPE": 3, + "wglDeleteAssociatedContextAMD": 1, + "PFNWGLISENABLEDGENLOCKI3DPROC": 2, + "IS_NUM": 14, + "Failure": 1, + "bysignal": 4, + "": 1, + "__Pyx_SetAttrString": 2, + "cmd_remote_ext": 1, + "iteration": 6, + "i_RFI8_": 54, + "s_header_field_start": 12, + "rfUTF8_Decode": 2, + "git_cached_obj_decref": 3, + "name_decoration": 3, + "PyVarObject*": 1, + "WGL_EXT_make_current_read": 2, + "WGL_MAX_PBUFFER_WIDTH_EXT": 1, + "*__pyx_ptype_7sklearn_5utils_11seq_dataset_CSRDataset": 1, + "server.clients": 7, + "E": 11, + "rfString_Copy_OUT": 2, + "fwrite": 5, + "server.rdb_save_time_start": 2, + "flushAppendOnlyFile": 2, + "RECT": 1, + "__wglewBeginFrameTrackingI3D": 2, + "SHA1_Update": 3, + "WGL_NEED_SYSTEM_PALETTE_ARB": 1, + "wglGetPbufferDCEXT": 1, + "WGL_AUX6_ARB": 1, + "save": 2, + "clusterInit": 1, + "REDIS_MAXMEMORY_VOLATILE_LRU": 3, + "askingCommand": 1, + "__wglewSwapLayerBuffersMscOML": 2, + "PyErr_SetString": 3, + "i_rfLMSX_WRAP8": 2, + "_isspace": 3, + "freeClientsInAsyncFreeQueue": 1, + "*__pyx_n_s__sumloss": 1, + "rfString_Append_fUTF32": 2, + "PyBUF_FORMAT": 3, + "__Pyx_PyInt_AsHash_t": 2, + "CA": 1, "__wglewMakeContextCurrentARB": 2, "WGLEW_ARB_make_current_read": 1, - "__WGLEW_ARB_make_current_read": 2, - "WGL_ARB_multisample": 2, - "WGL_SAMPLE_BUFFERS_ARB": 1, - "WGL_SAMPLES_ARB": 1, - "WGLEW_ARB_multisample": 1, - "__WGLEW_ARB_multisample": 2, - "WGL_ARB_pbuffer": 2, - "WGL_DRAW_TO_PBUFFER_ARB": 1, - "D": 8, - "WGL_MAX_PBUFFER_PIXELS_ARB": 1, - "WGL_MAX_PBUFFER_WIDTH_ARB": 1, - "WGL_MAX_PBUFFER_HEIGHT_ARB": 1, - "WGL_PBUFFER_LARGEST_ARB": 1, - "WGL_PBUFFER_WIDTH_ARB": 1, - "WGL_PBUFFER_HEIGHT_ARB": 1, - "WGL_PBUFFER_LOST_ARB": 1, - "DECLARE_HANDLE": 6, - "HPBUFFERARB": 12, - "PFNWGLCREATEPBUFFERARBPROC": 2, - "iPixelFormat": 6, - "iWidth": 2, - "iHeight": 2, - "piAttribList": 4, - "PFNWGLDESTROYPBUFFERARBPROC": 2, - "hPbuffer": 14, - "PFNWGLGETPBUFFERDCARBPROC": 2, - "PFNWGLQUERYPBUFFERARBPROC": 2, - "iAttribute": 8, - "piValue": 8, - "PFNWGLRELEASEPBUFFERDCARBPROC": 2, - "wglCreatePbufferARB": 1, - "__wglewCreatePbufferARB": 2, - "wglDestroyPbufferARB": 1, - "__wglewDestroyPbufferARB": 2, - "wglGetPbufferDCARB": 1, - "__wglewGetPbufferDCARB": 2, - "wglQueryPbufferARB": 1, + "i_SELECT_RF_STRING_BEFOREV11": 1, + "rfString_BytePosToCharPos": 4, + "cmd_merge_recursive": 4, + "s_req_port_start": 7, + "__GFP_ZERO": 1, + "CPU_DEAD": 1, + "MKD_SAFELINK": 1, + "for_each_commit_graft": 1, + "them": 3, + "new_oid": 3, + "sismemberCommand": 1, + "i_OTHERSTR_": 4, + "userformat_find_requirements": 1, + "__pyx_k__class_weight": 1, + "cmd_clean": 1, + "POST": 2, + "*git_diff_list_alloc": 1, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Huber": 1, + "cpu_hotplug_pm_callback": 2, + "CPU_UP_PREPARE": 1, + "server.rdb_save_time_last": 2, + "uv__make_pipe": 2, "__wglewQueryPbufferARB": 2, - "wglReleasePbufferDCARB": 1, - "__wglewReleasePbufferDCARB": 2, - "WGLEW_ARB_pbuffer": 1, - "__WGLEW_ARB_pbuffer": 2, - "WGL_ARB_pixel_format": 2, - "WGL_NUMBER_PIXEL_FORMATS_ARB": 1, - "WGL_DRAW_TO_WINDOW_ARB": 1, - "WGL_DRAW_TO_BITMAP_ARB": 1, - "WGL_ACCELERATION_ARB": 1, - "WGL_NEED_PALETTE_ARB": 1, - "WGL_NEED_SYSTEM_PALETTE_ARB": 1, - "WGL_SWAP_LAYER_BUFFERS_ARB": 1, - "WGL_SWAP_METHOD_ARB": 1, - "WGL_NUMBER_OVERLAYS_ARB": 1, - "WGL_NUMBER_UNDERLAYS_ARB": 1, - "WGL_TRANSPARENT_ARB": 1, - "WGL_SHARE_DEPTH_ARB": 1, - "WGL_SHARE_STENCIL_ARB": 1, - "WGL_SHARE_ACCUM_ARB": 1, - "WGL_SUPPORT_GDI_ARB": 1, - "WGL_SUPPORT_OPENGL_ARB": 1, - "WGL_DOUBLE_BUFFER_ARB": 1, - "WGL_STEREO_ARB": 1, - "WGL_PIXEL_TYPE_ARB": 1, - "WGL_COLOR_BITS_ARB": 1, - "WGL_RED_BITS_ARB": 1, - "WGL_RED_SHIFT_ARB": 1, - "WGL_GREEN_BITS_ARB": 1, - "WGL_GREEN_SHIFT_ARB": 1, - "WGL_BLUE_BITS_ARB": 1, - "WGL_BLUE_SHIFT_ARB": 1, - "WGL_ALPHA_BITS_ARB": 1, - "B": 9, - "WGL_ALPHA_SHIFT_ARB": 1, - "WGL_ACCUM_BITS_ARB": 1, - "WGL_ACCUM_RED_BITS_ARB": 1, - "WGL_ACCUM_GREEN_BITS_ARB": 1, - "WGL_ACCUM_BLUE_BITS_ARB": 1, - "WGL_ACCUM_ALPHA_BITS_ARB": 1, - "WGL_DEPTH_BITS_ARB": 1, - "WGL_STENCIL_BITS_ARB": 1, - "WGL_AUX_BUFFERS_ARB": 1, - "WGL_NO_ACCELERATION_ARB": 1, - "WGL_GENERIC_ACCELERATION_ARB": 1, - "WGL_FULL_ACCELERATION_ARB": 1, - "WGL_SWAP_EXCHANGE_ARB": 1, - "WGL_SWAP_COPY_ARB": 1, - "WGL_SWAP_UNDEFINED_ARB": 1, - "WGL_TYPE_RGBA_ARB": 1, - "WGL_TYPE_COLORINDEX_ARB": 1, - "WGL_TRANSPARENT_RED_VALUE_ARB": 1, - "WGL_TRANSPARENT_GREEN_VALUE_ARB": 1, - "WGL_TRANSPARENT_BLUE_VALUE_ARB": 1, - "WGL_TRANSPARENT_ALPHA_VALUE_ARB": 1, - "WGL_TRANSPARENT_INDEX_VALUE_ARB": 1, - "PFNWGLCHOOSEPIXELFORMATARBPROC": 2, - "piAttribIList": 2, - "FLOAT": 4, - "*pfAttribFList": 2, - "nMaxFormats": 2, - "*piFormats": 2, - "*nNumFormats": 2, - "PFNWGLGETPIXELFORMATATTRIBFVARBPROC": 2, - "nAttributes": 4, - "piAttributes": 4, - "*pfValues": 2, - "PFNWGLGETPIXELFORMATATTRIBIVARBPROC": 2, - "*piValues": 2, - "wglChoosePixelFormatARB": 1, - "__wglewChoosePixelFormatARB": 2, - "wglGetPixelFormatAttribfvARB": 1, - "__wglewGetPixelFormatAttribfvARB": 2, - "wglGetPixelFormatAttribivARB": 1, - "__wglewGetPixelFormatAttribivARB": 2, - "WGLEW_ARB_pixel_format": 1, - "__WGLEW_ARB_pixel_format": 2, - "WGL_ARB_pixel_format_float": 2, - "WGL_TYPE_RGBA_FLOAT_ARB": 1, - "A0": 3, - "WGLEW_ARB_pixel_format_float": 1, - "__WGLEW_ARB_pixel_format_float": 2, - "WGL_ARB_render_texture": 2, - "WGL_BIND_TO_TEXTURE_RGB_ARB": 1, - "WGL_BIND_TO_TEXTURE_RGBA_ARB": 1, - "WGL_TEXTURE_FORMAT_ARB": 1, - "WGL_TEXTURE_TARGET_ARB": 1, - "WGL_MIPMAP_TEXTURE_ARB": 1, - "WGL_TEXTURE_RGB_ARB": 1, - "WGL_TEXTURE_RGBA_ARB": 1, - "WGL_NO_TEXTURE_ARB": 2, - "WGL_TEXTURE_CUBE_MAP_ARB": 1, - "WGL_TEXTURE_1D_ARB": 1, - "WGL_TEXTURE_2D_ARB": 1, - "WGL_MIPMAP_LEVEL_ARB": 1, - "WGL_CUBE_MAP_FACE_ARB": 1, - "WGL_TEXTURE_CUBE_MAP_POSITIVE_X_ARB": 1, - "WGL_TEXTURE_CUBE_MAP_NEGATIVE_X_ARB": 1, - "WGL_TEXTURE_CUBE_MAP_POSITIVE_Y_ARB": 1, - "WGL_TEXTURE_CUBE_MAP_NEGATIVE_Y_ARB": 1, - "WGL_TEXTURE_CUBE_MAP_POSITIVE_Z_ARB": 1, - "WGL_TEXTURE_CUBE_MAP_NEGATIVE_Z_ARB": 1, - "WGL_FRONT_LEFT_ARB": 1, - "WGL_FRONT_RIGHT_ARB": 1, - "WGL_BACK_LEFT_ARB": 1, - "WGL_BACK_RIGHT_ARB": 1, - "WGL_AUX0_ARB": 1, - "WGL_AUX1_ARB": 1, - "WGL_AUX2_ARB": 1, - "WGL_AUX3_ARB": 1, - "WGL_AUX4_ARB": 1, - "WGL_AUX5_ARB": 1, - "WGL_AUX6_ARB": 1, - "WGL_AUX7_ARB": 1, - "WGL_AUX8_ARB": 1, - "WGL_AUX9_ARB": 1, - "PFNWGLBINDTEXIMAGEARBPROC": 2, - "iBuffer": 2, - "PFNWGLRELEASETEXIMAGEARBPROC": 2, - "PFNWGLSETPBUFFERATTRIBARBPROC": 2, - "wglBindTexImageARB": 1, - "__wglewBindTexImageARB": 2, - "wglReleaseTexImageARB": 1, - "__wglewReleaseTexImageARB": 2, - "wglSetPbufferAttribARB": 1, - "__wglewSetPbufferAttribARB": 2, - "WGLEW_ARB_render_texture": 1, - "__WGLEW_ARB_render_texture": 2, - "WGL_ATI_pixel_format_float": 2, - "WGL_TYPE_RGBA_FLOAT_ATI": 1, - "GL_RGBA_FLOAT_MODE_ATI": 1, - "GL_COLOR_CLEAR_UNCLAMPED_VALUE_ATI": 1, - "WGLEW_ATI_pixel_format_float": 1, - "__WGLEW_ATI_pixel_format_float": 2, - "WGL_ATI_render_texture_rectangle": 2, - "WGL_TEXTURE_RECTANGLE_ATI": 1, - "WGLEW_ATI_render_texture_rectangle": 1, - "__WGLEW_ATI_render_texture_rectangle": 2, - "WGL_EXT_create_context_es2_profile": 2, - "WGL_CONTEXT_ES2_PROFILE_BIT_EXT": 1, - "WGLEW_EXT_create_context_es2_profile": 1, - "__WGLEW_EXT_create_context_es2_profile": 2, - "WGL_EXT_depth_float": 2, - "WGL_DEPTH_FLOAT_EXT": 1, - "WGLEW_EXT_depth_float": 1, - "__WGLEW_EXT_depth_float": 2, - "WGL_EXT_display_color_table": 2, - "GLboolean": 53, - "PFNWGLBINDDISPLAYCOLORTABLEEXTPROC": 2, - "GLushort": 3, - "PFNWGLCREATEDISPLAYCOLORTABLEEXTPROC": 2, - "PFNWGLDESTROYDISPLAYCOLORTABLEEXTPROC": 2, - "PFNWGLLOADDISPLAYCOLORTABLEEXTPROC": 2, - "GLushort*": 1, - "table": 1, - "GLuint": 9, - "wglBindDisplayColorTableEXT": 1, - "__wglewBindDisplayColorTableEXT": 2, - "wglCreateDisplayColorTableEXT": 1, - "__wglewCreateDisplayColorTableEXT": 2, - "wglDestroyDisplayColorTableEXT": 1, - "__wglewDestroyDisplayColorTableEXT": 2, - "wglLoadDisplayColorTableEXT": 1, - "__wglewLoadDisplayColorTableEXT": 2, - "WGLEW_EXT_display_color_table": 1, - "__WGLEW_EXT_display_color_table": 2, - "WGL_EXT_extensions_string": 2, - "PFNWGLGETEXTENSIONSSTRINGEXTPROC": 2, - "wglGetExtensionsStringEXT": 1, - "__wglewGetExtensionsStringEXT": 2, - "WGLEW_EXT_extensions_string": 1, - "__WGLEW_EXT_extensions_string": 2, - "WGL_EXT_framebuffer_sRGB": 2, - "WGL_FRAMEBUFFER_SRGB_CAPABLE_EXT": 1, - "WGLEW_EXT_framebuffer_sRGB": 1, - "__WGLEW_EXT_framebuffer_sRGB": 2, - "WGL_EXT_make_current_read": 2, - "ERROR_INVALID_PIXEL_TYPE_EXT": 1, - "PFNWGLGETCURRENTREADDCEXTPROC": 2, - "PFNWGLMAKECONTEXTCURRENTEXTPROC": 2, - "wglGetCurrentReadDCEXT": 1, - "__wglewGetCurrentReadDCEXT": 2, - "wglMakeContextCurrentEXT": 1, - "__wglewMakeContextCurrentEXT": 2, - "WGLEW_EXT_make_current_read": 1, - "__WGLEW_EXT_make_current_read": 2, - "WGL_EXT_multisample": 2, - "WGL_SAMPLE_BUFFERS_EXT": 1, - "WGL_SAMPLES_EXT": 1, - "WGLEW_EXT_multisample": 1, - "__WGLEW_EXT_multisample": 2, - "WGL_EXT_pbuffer": 2, - "WGL_DRAW_TO_PBUFFER_EXT": 1, - "WGL_MAX_PBUFFER_PIXELS_EXT": 1, - "WGL_MAX_PBUFFER_WIDTH_EXT": 1, - "WGL_MAX_PBUFFER_HEIGHT_EXT": 1, - "WGL_OPTIMAL_PBUFFER_WIDTH_EXT": 1, - "WGL_OPTIMAL_PBUFFER_HEIGHT_EXT": 1, - "WGL_PBUFFER_LARGEST_EXT": 1, - "WGL_PBUFFER_WIDTH_EXT": 1, - "WGL_PBUFFER_HEIGHT_EXT": 1, - "HPBUFFEREXT": 6, - "PFNWGLCREATEPBUFFEREXTPROC": 2, - "PFNWGLDESTROYPBUFFEREXTPROC": 2, - "PFNWGLGETPBUFFERDCEXTPROC": 2, - "PFNWGLQUERYPBUFFEREXTPROC": 2, - "PFNWGLRELEASEPBUFFERDCEXTPROC": 2, - "wglCreatePbufferEXT": 1, - "__wglewCreatePbufferEXT": 2, - "wglDestroyPbufferEXT": 1, - "__wglewDestroyPbufferEXT": 2, - "wglGetPbufferDCEXT": 1, - "__wglewGetPbufferDCEXT": 2, - "wglQueryPbufferEXT": 1, - "__wglewQueryPbufferEXT": 2, - "wglReleasePbufferDCEXT": 1, - "__wglewReleasePbufferDCEXT": 2, - "WGLEW_EXT_pbuffer": 1, - "__WGLEW_EXT_pbuffer": 2, - "WGL_EXT_pixel_format": 2, - "WGL_NUMBER_PIXEL_FORMATS_EXT": 1, - "WGL_DRAW_TO_WINDOW_EXT": 1, - "WGL_DRAW_TO_BITMAP_EXT": 1, - "WGL_ACCELERATION_EXT": 1, - "WGL_NEED_PALETTE_EXT": 1, - "WGL_NEED_SYSTEM_PALETTE_EXT": 1, - "WGL_SWAP_LAYER_BUFFERS_EXT": 1, - "WGL_SWAP_METHOD_EXT": 1, - "WGL_NUMBER_OVERLAYS_EXT": 1, - "WGL_NUMBER_UNDERLAYS_EXT": 1, - "WGL_TRANSPARENT_EXT": 1, - "WGL_TRANSPARENT_VALUE_EXT": 1, - "WGL_SHARE_DEPTH_EXT": 1, - "WGL_SHARE_STENCIL_EXT": 1, - "WGL_SHARE_ACCUM_EXT": 1, - "WGL_SUPPORT_GDI_EXT": 1, - "WGL_SUPPORT_OPENGL_EXT": 1, - "WGL_DOUBLE_BUFFER_EXT": 1, - "WGL_STEREO_EXT": 1, - "WGL_PIXEL_TYPE_EXT": 1, - "WGL_COLOR_BITS_EXT": 1, - "WGL_RED_BITS_EXT": 1, - "WGL_RED_SHIFT_EXT": 1, - "WGL_GREEN_BITS_EXT": 1, - "WGL_GREEN_SHIFT_EXT": 1, - "WGL_BLUE_BITS_EXT": 1, - "WGL_BLUE_SHIFT_EXT": 1, - "WGL_ALPHA_BITS_EXT": 1, - "WGL_ALPHA_SHIFT_EXT": 1, - "WGL_ACCUM_BITS_EXT": 1, - "WGL_ACCUM_RED_BITS_EXT": 1, - "WGL_ACCUM_GREEN_BITS_EXT": 1, - "WGL_ACCUM_BLUE_BITS_EXT": 1, - "WGL_ACCUM_ALPHA_BITS_EXT": 1, - "WGL_DEPTH_BITS_EXT": 1, - "WGL_STENCIL_BITS_EXT": 1, - "WGL_AUX_BUFFERS_EXT": 1, - "WGL_NO_ACCELERATION_EXT": 1, - "WGL_GENERIC_ACCELERATION_EXT": 1, - "WGL_FULL_ACCELERATION_EXT": 1, - "WGL_SWAP_EXCHANGE_EXT": 1, - "WGL_SWAP_COPY_EXT": 1, - "WGL_SWAP_UNDEFINED_EXT": 1, - "WGL_TYPE_RGBA_EXT": 1, - "WGL_TYPE_COLORINDEX_EXT": 1, - "PFNWGLCHOOSEPIXELFORMATEXTPROC": 2, - "PFNWGLGETPIXELFORMATATTRIBFVEXTPROC": 2, - "PFNWGLGETPIXELFORMATATTRIBIVEXTPROC": 2, - "wglChoosePixelFormatEXT": 1, - "__wglewChoosePixelFormatEXT": 2, - "wglGetPixelFormatAttribfvEXT": 1, - "__wglewGetPixelFormatAttribfvEXT": 2, - "wglGetPixelFormatAttribivEXT": 1, - "__wglewGetPixelFormatAttribivEXT": 2, - "WGLEW_EXT_pixel_format": 1, - "__WGLEW_EXT_pixel_format": 2, - "WGL_EXT_pixel_format_packed_float": 2, - "WGL_TYPE_RGBA_UNSIGNED_FLOAT_EXT": 1, - "WGLEW_EXT_pixel_format_packed_float": 1, - "__WGLEW_EXT_pixel_format_packed_float": 2, - "WGL_EXT_swap_control": 2, - "PFNWGLGETSWAPINTERVALEXTPROC": 2, - "PFNWGLSWAPINTERVALEXTPROC": 2, - "interval": 1, - "wglGetSwapIntervalEXT": 1, - "__wglewGetSwapIntervalEXT": 2, - "wglSwapIntervalEXT": 1, - "__wglewSwapIntervalEXT": 2, - "WGLEW_EXT_swap_control": 1, - "__WGLEW_EXT_swap_control": 2, - "WGL_I3D_digital_video_control": 2, - "WGL_DIGITAL_VIDEO_CURSOR_ALPHA_FRAMEBUFFER_I3D": 1, - "WGL_DIGITAL_VIDEO_CURSOR_ALPHA_VALUE_I3D": 1, - "WGL_DIGITAL_VIDEO_CURSOR_INCLUDED_I3D": 1, - "WGL_DIGITAL_VIDEO_GAMMA_CORRECTED_I3D": 1, - "PFNWGLGETDIGITALVIDEOPARAMETERSI3DPROC": 2, - "PFNWGLSETDIGITALVIDEOPARAMETERSI3DPROC": 2, - "wglGetDigitalVideoParametersI3D": 1, - "__wglewGetDigitalVideoParametersI3D": 2, - "wglSetDigitalVideoParametersI3D": 1, - "__wglewSetDigitalVideoParametersI3D": 2, - "WGLEW_I3D_digital_video_control": 1, - "__WGLEW_I3D_digital_video_control": 2, - "WGL_I3D_gamma": 2, - "WGL_GAMMA_TABLE_SIZE_I3D": 1, - "WGL_GAMMA_EXCLUDE_DESKTOP_I3D": 1, - "PFNWGLGETGAMMATABLEI3DPROC": 2, - "iEntries": 2, - "USHORT*": 2, - "puRed": 2, - "USHORT": 4, - "*puGreen": 2, - "*puBlue": 2, - "PFNWGLGETGAMMATABLEPARAMETERSI3DPROC": 2, - "PFNWGLSETGAMMATABLEI3DPROC": 2, - "PFNWGLSETGAMMATABLEPARAMETERSI3DPROC": 2, - "wglGetGammaTableI3D": 1, - "__wglewGetGammaTableI3D": 2, - "wglGetGammaTableParametersI3D": 1, - "__wglewGetGammaTableParametersI3D": 2, - "wglSetGammaTableI3D": 1, - "__wglewSetGammaTableI3D": 2, - "wglSetGammaTableParametersI3D": 1, - "__wglewSetGammaTableParametersI3D": 2, - "WGLEW_I3D_gamma": 1, - "__WGLEW_I3D_gamma": 2, - "WGL_I3D_genlock": 2, - "WGL_GENLOCK_SOURCE_MULTIVIEW_I3D": 1, - "WGL_GENLOCK_SOURCE_EXTERNAL_SYNC_I3D": 1, - "WGL_GENLOCK_SOURCE_EXTERNAL_FIELD_I3D": 1, - "WGL_GENLOCK_SOURCE_EXTERNAL_TTL_I3D": 1, - "WGL_GENLOCK_SOURCE_DIGITAL_SYNC_I3D": 1, - "WGL_GENLOCK_SOURCE_DIGITAL_FIELD_I3D": 1, - "WGL_GENLOCK_SOURCE_EDGE_FALLING_I3D": 1, - "WGL_GENLOCK_SOURCE_EDGE_RISING_I3D": 1, - "WGL_GENLOCK_SOURCE_EDGE_BOTH_I3D": 1, - "PFNWGLDISABLEGENLOCKI3DPROC": 2, - "PFNWGLENABLEGENLOCKI3DPROC": 2, - "PFNWGLGENLOCKSAMPLERATEI3DPROC": 2, - "uRate": 2, - "PFNWGLGENLOCKSOURCEDELAYI3DPROC": 2, - "uDelay": 2, - "PFNWGLGENLOCKSOURCEEDGEI3DPROC": 2, - "uEdge": 2, - "PFNWGLGENLOCKSOURCEI3DPROC": 2, - "uSource": 2, - "PFNWGLGETGENLOCKSAMPLERATEI3DPROC": 2, - "PFNWGLGETGENLOCKSOURCEDELAYI3DPROC": 2, - "PFNWGLGETGENLOCKSOURCEEDGEI3DPROC": 2, - "PFNWGLGETGENLOCKSOURCEI3DPROC": 2, - "PFNWGLISENABLEDGENLOCKI3DPROC": 2, - "BOOL*": 3, - "pFlag": 3, - "PFNWGLQUERYGENLOCKMAXSOURCEDELAYI3DPROC": 2, - "uMaxLineDelay": 1, - "*uMaxPixelDelay": 1, - "wglDisableGenlockI3D": 1, - "__wglewDisableGenlockI3D": 2, - "wglEnableGenlockI3D": 1, - "__wglewEnableGenlockI3D": 2, - "wglGenlockSampleRateI3D": 1, - "__wglewGenlockSampleRateI3D": 2, - "wglGenlockSourceDelayI3D": 1, - "__wglewGenlockSourceDelayI3D": 2, - "wglGenlockSourceEdgeI3D": 1, - "__wglewGenlockSourceEdgeI3D": 2, - "wglGenlockSourceI3D": 1, - "__wglewGenlockSourceI3D": 2, - "wglGetGenlockSampleRateI3D": 1, - "__wglewGetGenlockSampleRateI3D": 2, - "wglGetGenlockSourceDelayI3D": 1, - "__wglewGetGenlockSourceDelayI3D": 2, - "wglGetGenlockSourceEdgeI3D": 1, - "__wglewGetGenlockSourceEdgeI3D": 2, - "wglGetGenlockSourceI3D": 1, - "__wglewGetGenlockSourceI3D": 2, - "wglIsEnabledGenlockI3D": 1, - "__wglewIsEnabledGenlockI3D": 2, - "wglQueryGenlockMaxSourceDelayI3D": 1, - "__wglewQueryGenlockMaxSourceDelayI3D": 2, - "WGLEW_I3D_genlock": 1, - "__WGLEW_I3D_genlock": 2, - "WGL_I3D_image_buffer": 2, - "WGL_IMAGE_BUFFER_MIN_ACCESS_I3D": 1, - "WGL_IMAGE_BUFFER_LOCK_I3D": 1, - "PFNWGLASSOCIATEIMAGEBUFFEREVENTSI3DPROC": 2, - "HANDLE*": 3, - "pEvent": 1, - "LPVOID": 3, - "*pAddress": 1, - "DWORD": 5, - "*pSize": 1, - "PFNWGLCREATEIMAGEBUFFERI3DPROC": 2, - "dwSize": 1, - "uFlags": 1, - "PFNWGLDESTROYIMAGEBUFFERI3DPROC": 2, - "pAddress": 2, - "PFNWGLRELEASEIMAGEBUFFEREVENTSI3DPROC": 2, - "LPVOID*": 1, - "wglAssociateImageBufferEventsI3D": 1, - "__wglewAssociateImageBufferEventsI3D": 2, - "wglCreateImageBufferI3D": 1, - "__wglewCreateImageBufferI3D": 2, - "wglDestroyImageBufferI3D": 1, - "__wglewDestroyImageBufferI3D": 2, - "wglReleaseImageBufferEventsI3D": 1, - "__wglewReleaseImageBufferEventsI3D": 2, - "WGLEW_I3D_image_buffer": 1, - "__WGLEW_I3D_image_buffer": 2, - "WGL_I3D_swap_frame_lock": 2, - "PFNWGLDISABLEFRAMELOCKI3DPROC": 2, - "PFNWGLENABLEFRAMELOCKI3DPROC": 2, - "PFNWGLISENABLEDFRAMELOCKI3DPROC": 2, - "PFNWGLQUERYFRAMELOCKMASTERI3DPROC": 2, - "wglDisableFrameLockI3D": 1, - "__wglewDisableFrameLockI3D": 2, - "wglEnableFrameLockI3D": 1, - "__wglewEnableFrameLockI3D": 2, - "wglIsEnabledFrameLockI3D": 1, - "__wglewIsEnabledFrameLockI3D": 2, - "wglQueryFrameLockMasterI3D": 1, - "__wglewQueryFrameLockMasterI3D": 2, - "WGLEW_I3D_swap_frame_lock": 1, - "__WGLEW_I3D_swap_frame_lock": 2, - "WGL_I3D_swap_frame_usage": 2, - "PFNWGLBEGINFRAMETRACKINGI3DPROC": 2, - "PFNWGLENDFRAMETRACKINGI3DPROC": 2, - "PFNWGLGETFRAMEUSAGEI3DPROC": 2, - "float*": 1, - "pUsage": 1, - "PFNWGLQUERYFRAMETRACKINGI3DPROC": 2, - "DWORD*": 1, - "pFrameCount": 1, - "*pMissedFrames": 1, - "*pLastMissedUsage": 1, - "wglBeginFrameTrackingI3D": 1, - "__wglewBeginFrameTrackingI3D": 2, - "wglEndFrameTrackingI3D": 1, - "__wglewEndFrameTrackingI3D": 2, - "wglGetFrameUsageI3D": 1, - "__wglewGetFrameUsageI3D": 2, - "wglQueryFrameTrackingI3D": 1, - "__wglewQueryFrameTrackingI3D": 2, - "WGLEW_I3D_swap_frame_usage": 1, - "__WGLEW_I3D_swap_frame_usage": 2, - "WGL_NV_DX_interop": 2, - "WGL_ACCESS_READ_ONLY_NV": 1, - "WGL_ACCESS_READ_WRITE_NV": 1, - "WGL_ACCESS_WRITE_DISCARD_NV": 1, - "PFNWGLDXCLOSEDEVICENVPROC": 2, - "hDevice": 9, - "PFNWGLDXLOCKOBJECTSNVPROC": 2, - "hObjects": 2, - "PFNWGLDXOBJECTACCESSNVPROC": 2, - "hObject": 2, - "access": 2, - "PFNWGLDXOPENDEVICENVPROC": 2, - "dxDevice": 1, - "PFNWGLDXREGISTEROBJECTNVPROC": 2, - "dxObject": 2, - "PFNWGLDXSETRESOURCESHAREHANDLENVPROC": 2, - "shareHandle": 1, - "PFNWGLDXUNLOCKOBJECTSNVPROC": 2, - "PFNWGLDXUNREGISTEROBJECTNVPROC": 2, - "wglDXCloseDeviceNV": 1, - "__wglewDXCloseDeviceNV": 2, - "wglDXLockObjectsNV": 1, - "__wglewDXLockObjectsNV": 2, - "wglDXObjectAccessNV": 1, - "__wglewDXObjectAccessNV": 2, - "wglDXOpenDeviceNV": 1, - "__wglewDXOpenDeviceNV": 2, - "wglDXRegisterObjectNV": 1, - "__wglewDXRegisterObjectNV": 2, - "wglDXSetResourceShareHandleNV": 1, - "__wglewDXSetResourceShareHandleNV": 2, - "wglDXUnlockObjectsNV": 1, - "__wglewDXUnlockObjectsNV": 2, - "wglDXUnregisterObjectNV": 1, - "__wglewDXUnregisterObjectNV": 2, - "WGLEW_NV_DX_interop": 1, - "__WGLEW_NV_DX_interop": 2, - "WGL_NV_copy_image": 2, - "PFNWGLCOPYIMAGESUBDATANVPROC": 2, - "hSrcRC": 1, - "srcName": 1, - "srcTarget": 1, - "srcLevel": 1, - "srcX": 1, - "srcY": 1, - "srcZ": 1, - "hDstRC": 1, - "dstName": 1, - "dstTarget": 1, - "dstLevel": 1, - "dstX": 1, - "dstY": 1, - "dstZ": 1, - "GLsizei": 4, - "wglCopyImageSubDataNV": 1, - "__wglewCopyImageSubDataNV": 2, - "WGLEW_NV_copy_image": 1, - "__WGLEW_NV_copy_image": 2, - "WGL_NV_float_buffer": 2, - "WGL_FLOAT_COMPONENTS_NV": 1, - "B0": 1, - "WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_R_NV": 1, - "B1": 1, - "WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_RG_NV": 1, - "B2": 1, - "WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_RGB_NV": 1, - "B3": 1, - "WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_RGBA_NV": 1, - "B4": 1, - "WGL_TEXTURE_FLOAT_R_NV": 1, - "B5": 1, - "WGL_TEXTURE_FLOAT_RG_NV": 1, - "B6": 1, - "WGL_TEXTURE_FLOAT_RGB_NV": 1, - "B7": 1, - "WGL_TEXTURE_FLOAT_RGBA_NV": 1, - "B8": 1, - "WGLEW_NV_float_buffer": 1, - "__WGLEW_NV_float_buffer": 2, - "WGL_NV_gpu_affinity": 2, - "WGL_ERROR_INCOMPATIBLE_AFFINITY_MASKS_NV": 1, - "D0": 1, - "WGL_ERROR_MISSING_AFFINITY_MASK_NV": 1, - "D1": 1, - "HGPUNV": 5, - "_GPU_DEVICE": 1, - "cb": 1, - "CHAR": 2, - "DeviceName": 1, - "DeviceString": 1, - "Flags": 1, - "RECT": 1, - "rcVirtualScreen": 1, - "GPU_DEVICE": 1, - "*PGPU_DEVICE": 1, - "PFNWGLCREATEAFFINITYDCNVPROC": 2, - "*phGpuList": 1, - "PFNWGLDELETEDCNVPROC": 2, - "PFNWGLENUMGPUDEVICESNVPROC": 2, - "hGpu": 1, - "iDeviceIndex": 1, - "PGPU_DEVICE": 1, - "lpGpuDevice": 1, - "PFNWGLENUMGPUSFROMAFFINITYDCNVPROC": 2, - "hAffinityDC": 1, - "iGpuIndex": 2, - "*hGpu": 1, - "PFNWGLENUMGPUSNVPROC": 2, - "*phGpu": 1, - "wglCreateAffinityDCNV": 1, - "__wglewCreateAffinityDCNV": 2, - "wglDeleteDCNV": 1, - "__wglewDeleteDCNV": 2, - "wglEnumGpuDevicesNV": 1, - "__wglewEnumGpuDevicesNV": 2, - "wglEnumGpusFromAffinityDCNV": 1, - "__wglewEnumGpusFromAffinityDCNV": 2, - "wglEnumGpusNV": 1, - "__wglewEnumGpusNV": 2, - "WGLEW_NV_gpu_affinity": 1, - "__WGLEW_NV_gpu_affinity": 2, - "WGL_NV_multisample_coverage": 2, - "WGL_COVERAGE_SAMPLES_NV": 1, - "WGL_COLOR_SAMPLES_NV": 1, - "B9": 1, - "WGLEW_NV_multisample_coverage": 1, - "__WGLEW_NV_multisample_coverage": 2, - "WGL_NV_present_video": 2, - "WGL_NUM_VIDEO_SLOTS_NV": 1, - "F0": 1, - "HVIDEOOUTPUTDEVICENV": 2, - "PFNWGLBINDVIDEODEVICENVPROC": 2, - "hDc": 6, - "uVideoSlot": 2, - "hVideoDevice": 4, - "PFNWGLENUMERATEVIDEODEVICESNVPROC": 2, - "HVIDEOOUTPUTDEVICENV*": 1, - "phDeviceList": 2, - "PFNWGLQUERYCURRENTCONTEXTNVPROC": 2, - "wglBindVideoDeviceNV": 1, - "__wglewBindVideoDeviceNV": 2, - "wglEnumerateVideoDevicesNV": 1, + "i_SELECT_RF_STRING_AFTERV": 1, + "http_parser_url": 3, "__wglewEnumerateVideoDevicesNV": 2, - "wglQueryCurrentContextNV": 1, - "__wglewQueryCurrentContextNV": 2, - "WGLEW_NV_present_video": 1, - "__WGLEW_NV_present_video": 2, - "WGL_NV_render_depth_texture": 2, - "WGL_BIND_TO_TEXTURE_DEPTH_NV": 1, - "WGL_BIND_TO_TEXTURE_RECTANGLE_DEPTH_NV": 1, - "WGL_DEPTH_TEXTURE_FORMAT_NV": 1, - "WGL_TEXTURE_DEPTH_COMPONENT_NV": 1, - "WGL_DEPTH_COMPONENT_NV": 1, - "WGLEW_NV_render_depth_texture": 1, - "__WGLEW_NV_render_depth_texture": 2, - "WGL_NV_render_texture_rectangle": 2, - "WGL_BIND_TO_TEXTURE_RECTANGLE_RGB_NV": 1, - "WGL_BIND_TO_TEXTURE_RECTANGLE_RGBA_NV": 1, - "A1": 1, - "WGL_TEXTURE_RECTANGLE_NV": 1, - "WGLEW_NV_render_texture_rectangle": 1, - "__WGLEW_NV_render_texture_rectangle": 2, - "WGL_NV_swap_group": 2, - "PFNWGLBINDSWAPBARRIERNVPROC": 2, - "group": 3, - "barrier": 1, - "PFNWGLJOINSWAPGROUPNVPROC": 2, - "PFNWGLQUERYFRAMECOUNTNVPROC": 2, - "GLuint*": 3, - "PFNWGLQUERYMAXSWAPGROUPSNVPROC": 2, - "maxGroups": 1, - "*maxBarriers": 1, - "PFNWGLQUERYSWAPGROUPNVPROC": 2, - "*barrier": 1, - "PFNWGLRESETFRAMECOUNTNVPROC": 2, - "wglBindSwapBarrierNV": 1, - "__wglewBindSwapBarrierNV": 2, - "wglJoinSwapGroupNV": 1, - "__wglewJoinSwapGroupNV": 2, - "wglQueryFrameCountNV": 1, - "__wglewQueryFrameCountNV": 2, - "wglQueryMaxSwapGroupsNV": 1, - "__wglewQueryMaxSwapGroupsNV": 2, - "wglQuerySwapGroupNV": 1, - "__wglewQuerySwapGroupNV": 2, - "wglResetFrameCountNV": 1, - "__wglewResetFrameCountNV": 2, - "WGLEW_NV_swap_group": 1, - "__WGLEW_NV_swap_group": 2, - "WGL_NV_vertex_array_range": 2, - "PFNWGLALLOCATEMEMORYNVPROC": 2, - "GLfloat": 3, - "readFrequency": 1, - "writeFrequency": 1, - "priority": 1, - "PFNWGLFREEMEMORYNVPROC": 2, - "*pointer": 1, - "wglAllocateMemoryNV": 1, - "__wglewAllocateMemoryNV": 2, - "wglFreeMemoryNV": 1, - "__wglewFreeMemoryNV": 2, - "WGLEW_NV_vertex_array_range": 1, - "__WGLEW_NV_vertex_array_range": 2, - "WGL_NV_video_capture": 2, - "WGL_UNIQUE_ID_NV": 1, - "CE": 1, - "WGL_NUM_VIDEO_CAPTURE_SLOTS_NV": 1, - "CF": 1, - "HVIDEOINPUTDEVICENV": 5, - "PFNWGLBINDVIDEOCAPTUREDEVICENVPROC": 2, - "PFNWGLENUMERATEVIDEOCAPTUREDEVICESNVPROC": 2, - "HVIDEOINPUTDEVICENV*": 1, - "PFNWGLLOCKVIDEOCAPTUREDEVICENVPROC": 2, - "PFNWGLQUERYVIDEOCAPTUREDEVICENVPROC": 2, - "PFNWGLRELEASEVIDEOCAPTUREDEVICENVPROC": 2, - "wglBindVideoCaptureDeviceNV": 1, - "__wglewBindVideoCaptureDeviceNV": 2, - "wglEnumerateVideoCaptureDevicesNV": 1, - "__wglewEnumerateVideoCaptureDevicesNV": 2, - "wglLockVideoCaptureDeviceNV": 1, - "__wglewLockVideoCaptureDeviceNV": 2, - "wglQueryVideoCaptureDeviceNV": 1, - "__wglewQueryVideoCaptureDeviceNV": 2, - "wglReleaseVideoCaptureDeviceNV": 1, - "__wglewReleaseVideoCaptureDeviceNV": 2, - "WGLEW_NV_video_capture": 1, - "__WGLEW_NV_video_capture": 2, - "WGL_NV_video_output": 2, - "WGL_BIND_TO_VIDEO_RGB_NV": 1, - "WGL_BIND_TO_VIDEO_RGBA_NV": 1, - "C1": 1, - "WGL_BIND_TO_VIDEO_RGB_AND_DEPTH_NV": 1, - "C2": 1, - "WGL_VIDEO_OUT_COLOR_NV": 1, - "C3": 1, - "WGL_VIDEO_OUT_ALPHA_NV": 1, - "C4": 1, - "WGL_VIDEO_OUT_DEPTH_NV": 1, - "C5": 1, - "WGL_VIDEO_OUT_COLOR_AND_ALPHA_NV": 1, - "C6": 1, - "WGL_VIDEO_OUT_COLOR_AND_DEPTH_NV": 1, - "C7": 1, - "WGL_VIDEO_OUT_FRAME": 1, - "C8": 1, - "WGL_VIDEO_OUT_FIELD_1": 1, - "C9": 1, - "WGL_VIDEO_OUT_FIELD_2": 1, - "CA": 1, - "WGL_VIDEO_OUT_STACKED_FIELDS_1_2": 1, - "CB": 1, - "WGL_VIDEO_OUT_STACKED_FIELDS_2_1": 1, - "CC": 1, - "HPVIDEODEV": 4, - "PFNWGLBINDVIDEOIMAGENVPROC": 2, - "iVideoBuffer": 2, - "PFNWGLGETVIDEODEVICENVPROC": 2, - "numDevices": 1, - "HPVIDEODEV*": 1, - "PFNWGLGETVIDEOINFONVPROC": 2, - "hpVideoDevice": 1, - "long*": 2, - "pulCounterOutputPbuffer": 1, - "*pulCounterOutputVideo": 1, - "PFNWGLRELEASEVIDEODEVICENVPROC": 2, - "PFNWGLRELEASEVIDEOIMAGENVPROC": 2, - "PFNWGLSENDPBUFFERTOVIDEONVPROC": 2, - "iBufferType": 1, - "pulCounterPbuffer": 1, - "bBlock": 1, - "wglBindVideoImageNV": 1, - "__wglewBindVideoImageNV": 2, - "wglGetVideoDeviceNV": 1, - "__wglewGetVideoDeviceNV": 2, - "wglGetVideoInfoNV": 1, - "__wglewGetVideoInfoNV": 2, - "wglReleaseVideoDeviceNV": 1, - "__wglewReleaseVideoDeviceNV": 2, - "wglReleaseVideoImageNV": 1, - "__wglewReleaseVideoImageNV": 2, - "wglSendPbufferToVideoNV": 1, - "__wglewSendPbufferToVideoNV": 2, - "WGLEW_NV_video_output": 1, - "__WGLEW_NV_video_output": 2, - "WGL_OML_sync_control": 2, - "PFNWGLGETMSCRATEOMLPROC": 2, - "INT32*": 1, - "numerator": 1, - "INT32": 1, - "*denominator": 1, - "PFNWGLGETSYNCVALUESOMLPROC": 2, - "INT64*": 3, - "INT64": 18, - "*msc": 3, - "*sbc": 3, - "PFNWGLSWAPBUFFERSMSCOMLPROC": 2, - "target_msc": 3, - "divisor": 3, - "remainder": 3, - "PFNWGLSWAPLAYERBUFFERSMSCOMLPROC": 2, - "fuPlanes": 1, - "PFNWGLWAITFORMSCOMLPROC": 2, - "PFNWGLWAITFORSBCOMLPROC": 2, - "target_sbc": 1, - "wglGetMscRateOML": 1, - "__wglewGetMscRateOML": 2, - "wglGetSyncValuesOML": 1, - "__wglewGetSyncValuesOML": 2, - "wglSwapBuffersMscOML": 1, - "__wglewSwapBuffersMscOML": 2, - "wglSwapLayerBuffersMscOML": 1, - "__wglewSwapLayerBuffersMscOML": 2, - "wglWaitForMscOML": 1, - "__wglewWaitForMscOML": 2, - "wglWaitForSbcOML": 1, - "__wglewWaitForSbcOML": 2, - "WGLEW_OML_sync_control": 1, - "__WGLEW_OML_sync_control": 2, - "GLEW_MX": 4, - "WGLEW_EXPORT": 167, - "GLEWAPI": 6, - "WGLEWContextStruct": 2, - "WGLEWContext": 1, - "wglewContextInit": 2, - "WGLEWContext*": 2, - "wglewContextIsSupported": 2, - "wglewInit": 1, - "wglewGetContext": 4, - "wglewIsSupported": 2, - "wglewGetExtension": 1, - "yajl_status_to_string": 1, - "yajl_status": 4, - "statStr": 6, - "yajl_status_ok": 1, - "yajl_status_client_canceled": 1, "yajl_status_insufficient_data": 1, - "yajl_status_error": 1, - "yajl_handle": 10, - "yajl_alloc": 1, - "yajl_callbacks": 1, - "callbacks": 3, - "yajl_parser_config": 1, - "config": 4, - "yajl_alloc_funcs": 3, - "afs": 8, - "allowComments": 4, - "validateUTF8": 3, - "hand": 28, - "afsBuffer": 3, - "realloc": 1, - "yajl_set_default_alloc_funcs": 1, - "YA_MALLOC": 1, - "yajl_handle_t": 1, - "alloc": 6, - "checkUTF8": 1, - "lexer": 4, - "yajl_lex_alloc": 1, - "bytesConsumed": 2, - "decodeBuf": 2, - "yajl_buf_alloc": 1, - "yajl_bs_init": 1, - "stateStack": 3, - "yajl_bs_push": 1, - "yajl_state_start": 1, - "yajl_reset_parser": 1, - "yajl_lex_realloc": 1, - "yajl_free": 1, - "yajl_bs_free": 1, - "yajl_buf_free": 1, - "yajl_lex_free": 1, - "YA_FREE": 2, - "yajl_parse": 2, - "jsonText": 4, - "jsonTextLen": 4, - "yajl_do_parse": 1, - "yajl_parse_complete": 1, - "yajl_get_error": 1, - "verbose": 2, - "yajl_render_error_string": 1, - "yajl_get_bytes_consumed": 1, - "yajl_free_error": 1 - }, - "C++": { - "class": 34, - "Bar": 2, - "{": 553, - "protected": 4, - "char": 122, - "*name": 6, - ";": 2308, - "public": 27, - "void": 152, - "hello": 2, - "(": 2438, - ")": 2440, - "}": 552, - "foo": 2, - "cudaArray*": 1, - "cu_array": 4, - "texture": 1, - "": 1, - "2": 1, - "cudaReadModeElementType": 1, - "tex": 4, - "cudaChannelFormatDesc": 1, - "description": 5, - "cudaCreateChannelDesc": 1, - "": 1, - "cudaMallocArray": 1, - "&": 148, - "width": 5, - "height": 5, - "cudaMemcpyToArray": 1, - "image": 1, - "width*height*sizeof": 1, - "float": 9, - "cudaMemcpyHostToDevice": 1, - "tex.addressMode": 2, - "[": 204, - "]": 204, - "cudaAddressModeClamp": 2, - "tex.filterMode": 1, - "cudaFilterModePoint": 1, - "tex.normalized": 1, - "false": 43, - "//": 239, - "do": 5, - "not": 2, - "normalize": 1, - "coordinates": 1, - "cudaBindTextureToArray": 1, - "dim3": 2, - "blockDim": 2, - "gridDim": 2, - "+": 55, - "blockDim.x": 2, - "-": 227, - "/": 15, - "blockDim.y": 2, - "kernel": 2, - "<<": 19, - "<": 56, - "d_data": 1, - "cudaUnbindTexture": 1, - "//end": 1, - "__global__": 1, - "float*": 1, - "odata": 2, - "int": 148, - "unsigned": 22, - "x": 48, - "blockIdx.x*blockDim.x": 1, - "threadIdx.x": 1, - "y": 16, - "blockIdx.y*blockDim.y": 1, - "threadIdx.y": 1, - "if": 296, - "&&": 24, - "c": 52, - "tex2D": 1, - "y*width": 1, - "#include": 106, - "": 1, - "": 1, - "": 2, - "static": 260, - "Env": 13, - "*env_instance": 1, - "*": 159, - "NULL": 108, - "*Env": 1, - "instance": 4, - "env_instance": 3, - "new": 9, - "return": 147, - "QObject": 2, - "QCoreApplication": 1, - "parse": 3, - "const": 166, - "**envp": 1, - "**env": 1, - "**": 2, - "QString": 20, - "envvar": 2, - "name": 21, - "value": 18, - "indexOfEquals": 5, - "for": 18, - "env": 3, - "envp": 4, - "*env": 1, - "envvar.indexOf": 1, - "continue": 2, - "envvar.left": 1, - "envvar.mid": 1, - "m_map.insert": 1, - "QVariantMap": 3, - "asVariantMap": 2, - "m_map": 2, - "#ifndef": 23, - "ENV_H": 3, - "#define": 190, - "": 1, - "Q_OBJECT": 1, - "*instance": 1, - "private": 12, - "#endif": 82, - "GDSDBREADER_H": 3, - "": 1, - "GDS_DIR": 1, - "enum": 6, - "level": 1, - "LEVEL_ONE": 1, - "LEVEL_TWO": 1, - "LEVEL_THREE": 1, - "dbDataStructure": 2, - "label": 1, - "quint32": 3, - "depth": 1, - "userIndex": 1, - "QByteArray": 1, - "data": 2, - "This": 6, - "is": 35, - "COMPRESSED": 1, - "optimize": 1, - "ram": 1, - "and": 14, - "disk": 1, - "space": 2, - "decompressed": 1, - "quint64": 1, - "uniqueID": 1, - "QVector": 2, - "": 1, - "nextItems": 1, - "": 1, - "nextItemsIndices": 1, - "dbDataStructure*": 1, - "father": 1, - "fatherIndex": 1, - "bool": 99, - "noFatherRoot": 1, - "Used": 1, - "to": 75, - "tell": 1, - "this": 22, - "node": 1, - "the": 178, - "root": 1, - "so": 1, - "hasn": 1, - "t": 13, - "in": 9, - "argument": 1, - "list": 2, - "of": 48, - "an": 3, - "operator": 10, - "overload.": 1, - "A": 1, - "friend": 10, - "stream": 5, - "myclass.label": 2, - "myclass.depth": 2, - "myclass.userIndex": 2, - "qCompress": 2, - "myclass.data": 4, - "myclass.uniqueID": 2, - "myclass.nextItemsIndices": 2, - "myclass.fatherIndex": 2, - "myclass.noFatherRoot": 2, - "myclass.fileName": 2, - "myclass.firstLineData": 4, - "myclass.linesNumbers": 2, - "QDataStream": 2, - "myclass": 1, - "//Don": 1, - "read": 1, - "it": 2, - "either": 1, - "qUncompress": 2, - "": 1, - "using": 1, - "namespace": 26, - "std": 49, - "main": 2, - "cout": 1, - "endl": 1, - "": 1, - "": 1, - "": 1, - "EC_KEY_regenerate_key": 1, - "EC_KEY": 3, - "*eckey": 2, - "BIGNUM": 9, - "*priv_key": 1, - "ok": 3, - "BN_CTX": 2, - "*ctx": 2, - "EC_POINT": 4, - "*pub_key": 1, - "eckey": 7, - "EC_GROUP": 2, - "*group": 2, - "EC_KEY_get0_group": 2, - "ctx": 26, - "BN_CTX_new": 2, - "goto": 156, - "err": 26, - "pub_key": 6, - "EC_POINT_new": 4, - "group": 12, - "EC_POINT_mul": 3, - "priv_key": 2, - "EC_KEY_set_private_key": 1, - "EC_KEY_set_public_key": 2, - "EC_POINT_free": 4, - "BN_CTX_free": 2, - "ECDSA_SIG_recover_key_GFp": 3, - "ECDSA_SIG": 3, - "*ecsig": 1, - "*msg": 2, - "msglen": 2, - "recid": 3, - "check": 2, - "ret": 24, - "*x": 1, - "*e": 1, - "*order": 1, - "*sor": 1, - "*eor": 1, - "*field": 1, - "*R": 1, - "*O": 1, - "*Q": 1, - "*rr": 1, - "*zero": 1, - "n": 28, - "i": 47, - "BN_CTX_start": 1, - "order": 8, - "BN_CTX_get": 8, - "EC_GROUP_get_order": 1, - "BN_copy": 1, - "BN_mul_word": 1, - "BN_add": 1, - "ecsig": 3, - "r": 36, - "field": 3, - "EC_GROUP_get_curve_GFp": 1, - "BN_cmp": 1, - "R": 6, - "EC_POINT_set_compressed_coordinates_GFp": 1, - "%": 4, - "O": 5, - "EC_POINT_is_at_infinity": 1, - "Q": 5, - "EC_GROUP_get_degree": 1, - "e": 14, - "BN_bin2bn": 3, - "msg": 1, - "*msglen": 1, - "BN_rshift": 1, - "zero": 3, - "BN_zero": 1, - "BN_mod_sub": 1, - "rr": 4, - "BN_mod_inverse": 1, - "sor": 3, - "BN_mod_mul": 2, - "s": 9, - "eor": 3, - "BN_CTX_end": 1, - "CKey": 26, - "SetCompressedPubKey": 4, - "EC_KEY_set_conv_form": 1, - "pkey": 14, - "POINT_CONVERSION_COMPRESSED": 1, - "fCompressedPubKey": 5, - "true": 39, - "Reset": 5, - "EC_KEY_new_by_curve_name": 2, - "NID_secp256k1": 2, - "throw": 4, - "key_error": 6, - "fSet": 7, - "b": 57, - "EC_KEY_dup": 1, - "b.pkey": 2, - "b.fSet": 2, - "EC_KEY_copy": 1, - "hash": 20, - "sizeof": 14, - "vchSig": 18, - "nSize": 2, - "vchSig.clear": 2, - "vchSig.resize": 2, - "Shrink": 1, - "fit": 1, - "actual": 1, - "size": 9, - "SignCompact": 2, - "uint256": 10, - "vector": 14, - "": 19, - "fOk": 3, - "*sig": 2, - "ECDSA_do_sign": 1, - "char*": 14, - "sig": 11, - "nBitsR": 3, - "BN_num_bits": 2, - "nBitsS": 3, - "nRecId": 4, - "<4;>": 1, - "keyRec": 5, - "1": 2, - "GetPubKey": 5, - "break": 34, - "BN_bn2bin": 2, - "/8": 2, - "ECDSA_SIG_free": 2, - "SetCompactSignature": 2, - "vchSig.size": 2, - "nV": 6, - "<27>": 1, - "ECDSA_SIG_new": 1, - "EC_KEY_free": 1, - "Verify": 2, - "ECDSA_verify": 1, - "VerifyCompact": 2, - "key": 23, - "key.SetCompactSignature": 1, - "key.GetPubKey": 1, - "IsValid": 4, - "fCompr": 3, - "CSecret": 4, - "secret": 2, - "GetSecret": 2, - "key2": 1, - "key2.SetSecret": 1, - "key2.GetPubKey": 1, - "BITCOIN_KEY_H": 2, - "": 1, - "": 2, - "": 1, - "definition": 1, - "runtime_error": 2, - "explicit": 3, - "string": 10, - "str": 2, - "CKeyID": 5, - "uint160": 8, - "CScriptID": 3, - "CPubKey": 11, - "vchPubKey": 6, - "vchPubKeyIn": 2, - "a": 84, - "a.vchPubKey": 3, - "b.vchPubKey": 3, - "IMPLEMENT_SERIALIZE": 1, - "READWRITE": 1, - "GetID": 1, - "Hash160": 1, - "GetHash": 1, - "Hash": 1, - "vchPubKey.begin": 1, - "vchPubKey.end": 1, - "vchPubKey.size": 3, - "||": 17, - "IsCompressed": 2, - "Raw": 1, - "typedef": 38, - "secure_allocator": 2, - "CPrivKey": 3, - "EC_KEY*": 1, - "IsNull": 1, - "MakeNewKey": 1, - "fCompressed": 3, - "SetPrivKey": 1, - "vchPrivKey": 1, - "SetSecret": 1, - "vchSecret": 1, - "GetPrivKey": 1, - "SetPubKey": 1, - "Sign": 1, - "#ifdef": 16, - "Q_OS_LINUX": 2, - "": 1, - "#if": 44, - "QT_VERSION": 1, - "QT_VERSION_CHECK": 1, - "#error": 9, - "Something": 1, - "wrong": 1, - "with": 6, - "setup.": 1, - "Please": 3, - "report": 2, - "mailing": 1, - "argc": 2, - "char**": 2, - "argv": 2, - "google_breakpad": 1, - "ExceptionHandler": 1, - "eh": 1, - "Utils": 4, - "exceptionHandler": 2, - "qInstallMsgHandler": 1, - "messageHandler": 2, - "QApplication": 1, - "app": 1, - "STATIC_BUILD": 1, - "Q_INIT_RESOURCE": 2, - "WebKit": 1, - "InspectorBackendStub": 1, - "app.setWindowIcon": 1, - "QIcon": 1, - "app.setApplicationName": 1, - "app.setOrganizationName": 1, - "app.setOrganizationDomain": 1, - "app.setApplicationVersion": 1, - "PHANTOMJS_VERSION_STRING": 1, - "Phantom": 1, - "phantom": 1, - "phantom.execute": 1, - "app.exec": 1, - "phantom.returnValue": 1, - "INTERNAL_SUPPRESS_PROTOBUF_FIELD_DEPRECATION": 1, - "": 1, - "": 2, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "persons": 4, - "google": 72, - "protobuf": 72, - "Descriptor*": 3, - "Person_descriptor_": 6, - "internal": 46, - "GeneratedMessageReflection*": 1, - "Person_reflection_": 4, - "protobuf_AssignDesc_protocol_2dbuffer_2eproto": 4, - "protobuf_AddDesc_protocol_2dbuffer_2eproto": 6, - "FileDescriptor*": 1, - "file": 6, - "DescriptorPool": 3, - "generated_pool": 2, - "FindFileByName": 1, - "GOOGLE_CHECK": 1, - "message_type": 1, - "Person_offsets_": 2, - "GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET": 3, - "Person": 65, - "name_": 30, - "GeneratedMessageReflection": 1, - "default_instance_": 8, - "_has_bits_": 14, - "_unknown_fields_": 5, - "MessageFactory": 3, - "generated_factory": 1, - "GOOGLE_PROTOBUF_DECLARE_ONCE": 1, - "protobuf_AssignDescriptors_once_": 2, - "inline": 39, - "protobuf_AssignDescriptorsOnce": 4, - "GoogleOnceInit": 1, - "protobuf_RegisterTypes": 2, - "InternalRegisterGeneratedMessage": 1, - "default_instance": 3, - "protobuf_ShutdownFile_protocol_2dbuffer_2eproto": 4, - "delete": 6, - "already_here": 3, - "GOOGLE_PROTOBUF_VERIFY_VERSION": 1, - "InternalAddGeneratedFile": 1, - "InternalRegisterGeneratedFile": 1, - "InitAsDefaultInstance": 3, - "OnShutdown": 1, - "struct": 8, - "StaticDescriptorInitializer_protocol_2dbuffer_2eproto": 2, - "static_descriptor_initializer_protocol_2dbuffer_2eproto_": 1, - "_MSC_VER": 3, - "kNameFieldNumber": 2, - "Message": 7, - "SharedCtor": 4, - "from": 25, - "MergeFrom": 9, - "_cached_size_": 7, - "const_cast": 3, - "string*": 11, - "kEmptyString": 12, - "memset": 2, - "SharedDtor": 3, - "SetCachedSize": 2, - "GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN": 2, - "GOOGLE_SAFE_CONCURRENT_WRITES_END": 2, - "descriptor": 2, - "*default_instance_": 1, - "Person*": 7, - "New": 4, - "Clear": 5, - "xffu": 3, - "has_name": 6, - "clear": 2, - "mutable_unknown_fields": 4, - "MergePartialFromCodedStream": 2, - "io": 4, - "CodedInputStream*": 2, - "input": 6, - "DO_": 4, - "EXPRESSION": 2, - "uint32": 2, - "tag": 6, - "while": 11, - "ReadTag": 1, - "switch": 3, - "WireFormatLite": 9, - "GetTagFieldNumber": 1, - "case": 33, - "GetTagWireType": 2, - "WIRETYPE_LENGTH_DELIMITED": 1, - "ReadString": 1, - "mutable_name": 3, - "WireFormat": 10, - "VerifyUTF8String": 3, - ".data": 3, - ".length": 3, - "PARSE": 1, - "else": 46, - "handle_uninterpreted": 2, - "ExpectAtEnd": 1, - "default": 4, - "WIRETYPE_END_GROUP": 1, - "SkipField": 1, - "#undef": 3, - "SerializeWithCachedSizes": 2, - "CodedOutputStream*": 2, - "output": 5, - "SERIALIZE": 2, - "WriteString": 1, - "unknown_fields": 7, - ".empty": 3, - "SerializeUnknownFields": 1, - "uint8*": 4, - "SerializeWithCachedSizesToArray": 2, - "target": 6, - "WriteStringToArray": 1, - "SerializeUnknownFieldsToArray": 1, - "ByteSize": 2, - "total_size": 5, - "StringSize": 1, - "ComputeUnknownFieldsSize": 1, - "GOOGLE_CHECK_NE": 2, - "source": 9, - "dynamic_cast_if_available": 1, - "": 12, - "ReflectionOps": 1, - "Merge": 1, - "from._has_bits_": 1, - "from.has_name": 1, - "set_name": 7, - "from.name": 1, - "from.unknown_fields": 1, - "CopyFrom": 5, - "IsInitialized": 3, - "Swap": 2, - "other": 7, - "swap": 3, - "_unknown_fields_.Swap": 1, - "Metadata": 3, - "GetMetadata": 2, - "metadata": 2, - "metadata.descriptor": 1, - "metadata.reflection": 1, - "PROTOBUF_protocol_2dbuffer_2eproto__INCLUDED": 3, - "": 1, - "GOOGLE_PROTOBUF_VERSION": 1, - "was": 3, - "generated": 2, - "by": 5, - "newer": 2, - "version": 4, - "protoc": 2, - "which": 2, - "incompatible": 2, - "your": 3, - "Protocol": 2, - "Buffer": 2, - "headers.": 3, - "update": 1, - "GOOGLE_PROTOBUF_MIN_PROTOC_VERSION": 1, - "older": 1, - "regenerate": 1, - "protoc.": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "virtual": 10, - "*this": 1, - "UnknownFieldSet": 2, - "UnknownFieldSet*": 1, - "GetCachedSize": 1, - "clear_name": 2, - "size_t": 5, - "release_name": 2, - "set_allocated_name": 2, - "set_has_name": 7, - "clear_has_name": 5, - "mutable": 1, - "u": 9, - "|": 8, - "*name_": 1, - "assign": 3, - "reinterpret_cast": 7, - "temp": 2, - "SWIG": 2, - "QSCICOMMAND_H": 2, - "__APPLE__": 4, - "extern": 4, - "": 1, - "": 2, - "": 1, - "QsciScintilla": 7, - "brief": 2, - "The": 8, - "QsciCommand": 7, - "represents": 1, - "editor": 1, - "command": 9, - "that": 7, - "may": 2, - "have": 1, - "one": 42, - "or": 10, - "two": 1, - "keys": 3, - "bound": 4, - "it.": 2, - "Methods": 1, - "are": 3, - "provided": 1, - "change": 1, - "remove": 1, - "binding.": 1, - "Each": 1, - "has": 2, - "user": 2, - "friendly": 2, - "use": 1, - "mapping": 1, - "dialogs.": 1, - "QSCINTILLA_EXPORT": 2, - "defines": 1, - "different": 1, - "commands": 1, - "can": 3, - "be": 9, - "assigned": 1, - "key.": 1, - "Command": 4, - "Move": 26, - "down": 12, - "line.": 33, - "LineDown": 1, - "QsciScintillaBase": 100, - "SCI_LINEDOWN": 1, - "Extend": 33, - "selection": 39, - "LineDownExtend": 1, - "SCI_LINEDOWNEXTEND": 1, - "rectangular": 9, - "LineDownRectExtend": 1, - "SCI_LINEDOWNRECTEXTEND": 1, - "Scroll": 5, - "view": 2, - "LineScrollDown": 1, - "SCI_LINESCROLLDOWN": 1, - "up": 13, - "LineUp": 1, - "SCI_LINEUP": 1, - "LineUpExtend": 1, - "SCI_LINEUPEXTEND": 1, - "LineUpRectExtend": 1, - "SCI_LINEUPRECTEXTEND": 1, - "LineScrollUp": 1, - "SCI_LINESCROLLUP": 1, - "start": 11, - "document.": 8, - "ScrollToStart": 1, - "SCI_SCROLLTOSTART": 1, - "end": 18, - "ScrollToEnd": 1, - "SCI_SCROLLTOEND": 1, - "vertically": 1, - "centre": 1, - "current": 9, - "VerticalCentreCaret": 1, - "SCI_VERTICALCENTRECARET": 1, - "paragraph.": 4, - "ParaDown": 1, - "SCI_PARADOWN": 1, - "ParaDownExtend": 1, - "SCI_PARADOWNEXTEND": 1, - "ParaUp": 1, - "SCI_PARAUP": 1, - "ParaUpExtend": 1, - "SCI_PARAUPEXTEND": 1, - "left": 7, - "character.": 9, - "CharLeft": 1, - "SCI_CHARLEFT": 1, - "CharLeftExtend": 1, - "SCI_CHARLEFTEXTEND": 1, - "CharLeftRectExtend": 1, - "SCI_CHARLEFTRECTEXTEND": 1, - "right": 8, - "CharRight": 1, - "SCI_CHARRIGHT": 1, - "CharRightExtend": 1, - "SCI_CHARRIGHTEXTEND": 1, - "CharRightRectExtend": 1, - "SCI_CHARRIGHTRECTEXTEND": 1, - "word.": 9, - "WordLeft": 1, - "SCI_WORDLEFT": 1, - "WordLeftExtend": 1, - "SCI_WORDLEFTEXTEND": 1, - "WordRight": 1, - "SCI_WORDRIGHT": 1, - "WordRightExtend": 1, - "SCI_WORDRIGHTEXTEND": 1, - "previous": 5, - "WordLeftEnd": 1, - "SCI_WORDLEFTEND": 1, - "WordLeftEndExtend": 1, - "SCI_WORDLEFTENDEXTEND": 1, - "next": 6, - "WordRightEnd": 1, - "SCI_WORDRIGHTEND": 1, - "WordRightEndExtend": 1, - "SCI_WORDRIGHTENDEXTEND": 1, - "word": 6, - "part.": 4, - "WordPartLeft": 1, - "SCI_WORDPARTLEFT": 1, - "WordPartLeftExtend": 1, - "SCI_WORDPARTLEFTEXTEND": 1, - "WordPartRight": 1, - "SCI_WORDPARTRIGHT": 1, - "WordPartRightExtend": 1, - "SCI_WORDPARTRIGHTEXTEND": 1, - "document": 16, - "Home": 1, - "SCI_HOME": 1, - "HomeExtend": 1, - "SCI_HOMEEXTEND": 1, - "HomeRectExtend": 1, - "SCI_HOMERECTEXTEND": 1, - "displayed": 10, - "HomeDisplay": 1, - "SCI_HOMEDISPLAY": 1, - "HomeDisplayExtend": 1, - "SCI_HOMEDISPLAYEXTEND": 1, - "HomeWrap": 1, - "SCI_HOMEWRAP": 1, - "HomeWrapExtend": 1, - "SCI_HOMEWRAPEXTEND": 1, - "first": 8, - "visible": 6, - "character": 8, - "VCHome": 1, - "SCI_VCHOME": 1, - "VCHomeExtend": 1, - "SCI_VCHOMEEXTEND": 1, - "VCHomeRectExtend": 1, - "SCI_VCHOMERECTEXTEND": 1, - "VCHomeWrap": 1, - "SCI_VCHOMEWRAP": 1, - "VCHomeWrapExtend": 1, - "SCI_VCHOMEWRAPEXTEND": 1, - "LineEnd": 1, - "SCI_LINEEND": 1, - "LineEndExtend": 1, - "SCI_LINEENDEXTEND": 1, - "LineEndRectExtend": 1, - "SCI_LINEENDRECTEXTEND": 1, - "LineEndDisplay": 1, - "SCI_LINEENDDISPLAY": 1, - "LineEndDisplayExtend": 1, - "SCI_LINEENDDISPLAYEXTEND": 1, - "LineEndWrap": 1, - "SCI_LINEENDWRAP": 1, - "LineEndWrapExtend": 1, - "SCI_LINEENDWRAPEXTEND": 1, - "DocumentStart": 1, - "SCI_DOCUMENTSTART": 1, - "DocumentStartExtend": 1, - "SCI_DOCUMENTSTARTEXTEND": 1, - "DocumentEnd": 1, - "SCI_DOCUMENTEND": 1, - "DocumentEndExtend": 1, - "SCI_DOCUMENTENDEXTEND": 1, - "page.": 13, - "PageUp": 1, - "SCI_PAGEUP": 1, - "PageUpExtend": 1, - "SCI_PAGEUPEXTEND": 1, - "PageUpRectExtend": 1, - "SCI_PAGEUPRECTEXTEND": 1, - "PageDown": 1, - "SCI_PAGEDOWN": 1, - "PageDownExtend": 1, - "SCI_PAGEDOWNEXTEND": 1, - "PageDownRectExtend": 1, - "SCI_PAGEDOWNRECTEXTEND": 1, - "Stuttered": 4, - "move": 2, - "StutteredPageUp": 1, - "SCI_STUTTEREDPAGEUP": 1, - "extend": 2, - "StutteredPageUpExtend": 1, - "SCI_STUTTEREDPAGEUPEXTEND": 1, - "StutteredPageDown": 1, - "SCI_STUTTEREDPAGEDOWN": 1, - "StutteredPageDownExtend": 1, - "SCI_STUTTEREDPAGEDOWNEXTEND": 1, - "Delete": 10, - "SCI_CLEAR": 1, - "DeleteBack": 1, - "SCI_DELETEBACK": 1, - "at": 4, - "DeleteBackNotLine": 1, - "SCI_DELETEBACKNOTLINE": 1, - "left.": 2, - "DeleteWordLeft": 1, - "SCI_DELWORDLEFT": 1, - "right.": 2, - "DeleteWordRight": 1, - "SCI_DELWORDRIGHT": 1, - "DeleteWordRightEnd": 1, - "SCI_DELWORDRIGHTEND": 1, - "line": 10, - "DeleteLineLeft": 1, - "SCI_DELLINELEFT": 1, - "DeleteLineRight": 1, - "SCI_DELLINERIGHT": 1, - "LineDelete": 1, - "SCI_LINEDELETE": 1, - "Cut": 2, - "clipboard.": 5, - "LineCut": 1, - "SCI_LINECUT": 1, - "Copy": 2, - "LineCopy": 1, - "SCI_LINECOPY": 1, - "Transpose": 1, - "lines.": 1, - "LineTranspose": 1, - "SCI_LINETRANSPOSE": 1, - "Duplicate": 2, - "LineDuplicate": 1, - "SCI_LINEDUPLICATE": 1, - "Select": 33, - "whole": 2, - "SelectAll": 1, - "SCI_SELECTALL": 1, - "selected": 2, - "lines": 3, - "MoveSelectedLinesUp": 1, - "SCI_MOVESELECTEDLINESUP": 1, - "MoveSelectedLinesDown": 1, - "SCI_MOVESELECTEDLINESDOWN": 1, - "selection.": 1, - "SelectionDuplicate": 1, - "SCI_SELECTIONDUPLICATE": 1, - "Convert": 2, - "lower": 1, - "case.": 2, - "SelectionLowerCase": 1, - "SCI_LOWERCASE": 1, - "upper": 1, - "SelectionUpperCase": 1, - "SCI_UPPERCASE": 1, - "SelectionCut": 1, - "SCI_CUT": 1, - "SelectionCopy": 1, - "SCI_COPY": 1, - "Paste": 2, - "SCI_PASTE": 1, - "Toggle": 1, - "insert/overtype.": 1, - "EditToggleOvertype": 1, - "SCI_EDITTOGGLEOVERTYPE": 1, - "Insert": 2, - "platform": 1, - "dependent": 1, - "newline.": 1, - "Newline": 1, - "SCI_NEWLINE": 1, - "formfeed.": 1, - "Formfeed": 1, - "SCI_FORMFEED": 1, - "Indent": 1, - "level.": 2, - "Tab": 1, - "SCI_TAB": 1, - "De": 1, - "indent": 1, - "Backtab": 1, - "SCI_BACKTAB": 1, - "Cancel": 2, - "any": 5, - "operation.": 1, - "SCI_CANCEL": 1, - "Undo": 2, - "last": 4, - "command.": 5, - "SCI_UNDO": 1, - "Redo": 2, - "SCI_REDO": 1, - "Zoom": 2, - "in.": 1, - "ZoomIn": 1, - "SCI_ZOOMIN": 1, - "out.": 1, - "ZoomOut": 1, - "SCI_ZOOMOUT": 1, - "Return": 3, - "will": 2, - "executed": 1, - "instance.": 2, - "scicmd": 2, - "Execute": 1, - "execute": 1, - "Binds": 2, - "If": 4, - "then": 6, - "binding": 3, - "removed.": 2, - "invalid": 5, - "unchanged.": 1, - "Valid": 1, - "control": 1, - "Key_Down": 1, - "Key_Up": 1, - "Key_Left": 1, - "Key_Right": 1, - "Key_Home": 1, - "Key_End": 1, - "Key_PageUp": 1, - "Key_PageDown": 1, - "Key_Delete": 1, - "Key_Insert": 1, - "Key_Escape": 1, - "Key_Backspace": 1, - "Key_Tab": 1, - "Key_Return.": 1, - "Keys": 1, - "modified": 2, - "combination": 1, - "SHIFT": 1, - "CTRL": 1, - "ALT": 1, - "META.": 1, - "sa": 8, - "setAlternateKey": 3, - "validKey": 3, - "setKey": 3, - "alternate": 3, - "altkey": 3, - "alternateKey": 3, - "currently": 2, - "returned.": 4, - "qkey": 2, - "qaltkey": 2, - "valid": 2, - "QsciCommandSet": 1, - "*qs": 1, - "cmd": 1, - "*desc": 1, - "bindKey": 1, - "qk": 1, - "scik": 1, - "*qsCmd": 1, - "scikey": 1, - "scialtkey": 1, - "*descCmd": 1, - "QSCIPRINTER_H": 2, - "": 1, - "": 1, - "QT_BEGIN_NAMESPACE": 1, - "QRect": 2, - "QPainter": 2, - "QT_END_NAMESPACE": 1, - "QsciPrinter": 9, - "sub": 2, - "Qt": 1, - "QPrinter": 3, - "able": 1, - "print": 4, - "text": 5, - "Scintilla": 2, - "further": 1, - "classed": 1, - "alter": 1, - "layout": 1, - "adding": 2, - "headers": 3, - "footers": 2, - "example.": 1, - "Constructs": 1, - "printer": 1, - "paint": 1, - "device": 1, - "mode": 4, - "mode.": 1, - "PrinterMode": 1, - "ScreenResolution": 1, - "Destroys": 1, - "Format": 1, - "page": 4, - "example": 1, - "before": 1, - "drawn": 2, - "on": 1, - "painter": 4, - "used": 4, - "add": 3, - "customised": 2, - "graphics.": 2, - "drawing": 4, - "actually": 1, - "being": 2, - "rather": 1, - "than": 1, - "sized.": 1, - "methods": 1, - "must": 1, - "only": 1, - "called": 1, - "when": 5, - "true.": 1, - "area": 5, - "draw": 1, - "text.": 3, - "should": 1, - "necessary": 1, - "reserve": 1, - "By": 1, - "relative": 1, - "printable": 1, - "Use": 1, - "setFullPage": 1, - "because": 2, - "calling": 1, - "printRange": 2, - "you": 1, - "want": 2, - "try": 1, - "over": 1, - "pagenr": 2, - "number": 3, - "numbered": 1, - "formatPage": 1, - "points": 2, - "each": 2, - "font": 2, - "printing.": 2, - "setMagnification": 2, - "magnification": 3, - "mag": 2, - "Sets": 2, - "printing": 2, - "magnification.": 1, - "Print": 1, - "range": 1, - "qsb.": 1, - "negative": 2, - "signifies": 2, - "returned": 2, - "there": 1, - "no": 1, - "error.": 1, - "*qsb": 1, - "wrap": 4, - "WrapWord.": 1, - "setWrapMode": 2, - "WrapMode": 3, - "wrapMode": 2, - "wmode.": 1, - "wmode": 1, - "v8": 9, - "Scanner": 16, - "UnicodeCache*": 4, - "unicode_cache": 3, - "unicode_cache_": 10, - "octal_pos_": 5, - "Location": 14, - "harmony_scoping_": 4, - "harmony_modules_": 4, - "Initialize": 4, - "Utf16CharacterStream*": 3, - "source_": 7, - "Init": 3, - "has_line_terminator_before_next_": 9, - "SkipWhiteSpace": 4, - "Scan": 5, - "uc32": 19, - "ScanHexNumber": 2, - "expected_length": 4, - "ASSERT": 17, - "prevent": 1, - "overflow": 1, - "digits": 3, - "c0_": 64, - "d": 8, - "HexValue": 2, - "j": 4, - "PushBack": 8, - "Advance": 44, - "STATIC_ASSERT": 5, - "Token": 212, - "NUM_TOKENS": 1, - "byte": 1, - "one_char_tokens": 2, - "ILLEGAL": 120, - "LPAREN": 2, - "RPAREN": 2, - "COMMA": 2, - "COLON": 2, - "SEMICOLON": 2, - "CONDITIONAL": 2, - "f": 5, - "LBRACK": 2, - "RBRACK": 2, - "LBRACE": 2, - "RBRACE": 2, - "BIT_NOT": 2, - "Value": 23, - "Next": 3, - "current_": 2, - "next_": 2, - "has_multiline_comment_before_next_": 5, - "static_cast": 7, - "token": 64, - "": 1, - "pos": 12, - "source_pos": 10, - "next_.token": 3, - "next_.location.beg_pos": 3, - "next_.location.end_pos": 4, - "current_.token": 4, - "IsByteOrderMark": 2, - "xFEFF": 1, - "xFFFE": 1, - "start_position": 2, - "IsWhiteSpace": 2, - "IsLineTerminator": 6, - "SkipSingleLineComment": 6, - "undo": 4, - "WHITESPACE": 6, - "SkipMultiLineComment": 3, - "ch": 5, - "ScanHtmlComment": 3, - "LT": 2, - "next_.literal_chars": 13, - "ScanString": 3, - "LTE": 1, - "ASSIGN_SHL": 1, - "SHL": 1, - "GTE": 1, - "ASSIGN_SAR": 1, - "ASSIGN_SHR": 1, - "SHR": 1, - "SAR": 1, - "GT": 1, - "EQ_STRICT": 1, - "EQ": 1, - "ASSIGN": 1, - "NE_STRICT": 1, - "NE": 1, - "NOT": 1, - "INC": 1, - "ASSIGN_ADD": 1, - "ADD": 1, - "DEC": 1, - "ASSIGN_SUB": 1, - "SUB": 1, - "ASSIGN_MUL": 1, - "MUL": 1, - "ASSIGN_MOD": 1, - "MOD": 1, - "ASSIGN_DIV": 1, - "DIV": 1, - "AND": 1, - "ASSIGN_BIT_AND": 1, - "BIT_AND": 1, - "OR": 1, - "ASSIGN_BIT_OR": 1, - "BIT_OR": 1, - "ASSIGN_BIT_XOR": 1, - "BIT_XOR": 1, - "IsDecimalDigit": 2, - "ScanNumber": 3, - "PERIOD": 1, - "IsIdentifierStart": 2, - "ScanIdentifierOrKeyword": 2, - "EOS": 1, - "SeekForward": 4, - "current_pos": 4, - "ASSERT_EQ": 1, - "ScanEscape": 2, - "IsCarriageReturn": 2, - "IsLineFeed": 2, - "fall": 2, - "through": 2, - "v": 3, - "xx": 1, - "xxx": 1, - "error": 1, - "immediately": 1, - "octal": 1, - "escape": 1, - "quote": 3, - "consume": 2, - "LiteralScope": 4, - "literal": 2, - ".": 2, - "X": 2, - "E": 3, - "l": 1, - "p": 5, - "w": 1, - "keyword": 1, - "Unescaped": 1, - "in_character_class": 2, - "AddLiteralCharAdvance": 3, - "literal.Complete": 2, - "ScanLiteralUnicodeEscape": 3, - "V8_SCANNER_H_": 3, - "ParsingFlags": 1, - "kNoParsingFlags": 1, - "kLanguageModeMask": 4, - "kAllowLazy": 1, - "kAllowNativesSyntax": 1, - "kAllowModules": 1, - "CLASSIC_MODE": 2, - "STRICT_MODE": 2, - "EXTENDED_MODE": 2, - "detect": 1, - "x16": 1, - "x36.": 1, - "Utf16CharacterStream": 3, - "pos_": 6, - "buffer_cursor_": 5, - "buffer_end_": 3, - "ReadBlock": 2, - "": 1, - "kEndOfInput": 2, - "code_unit_count": 7, - "buffered_chars": 2, - "SlowSeekForward": 2, - "int32_t": 1, - "code_unit": 6, - "uc16*": 3, - "UnicodeCache": 3, - "unibrow": 11, - "Utf8InputBuffer": 2, - "<1024>": 2, - "Utf8Decoder": 2, - "StaticResource": 2, - "": 2, - "utf8_decoder": 1, - "utf8_decoder_": 2, - "uchar": 4, - "kIsIdentifierStart.get": 1, - "IsIdentifierPart": 1, - "kIsIdentifierPart.get": 1, - "kIsLineTerminator.get": 1, - "kIsWhiteSpace.get": 1, - "Predicate": 4, - "": 1, - "128": 4, - "kIsIdentifierStart": 1, - "": 1, - "kIsIdentifierPart": 1, - "": 1, - "kIsLineTerminator": 1, - "": 1, - "kIsWhiteSpace": 1, - "DISALLOW_COPY_AND_ASSIGN": 2, - "LiteralBuffer": 6, - "is_ascii_": 10, - "position_": 17, - "backing_store_": 7, - "backing_store_.length": 4, - "backing_store_.Dispose": 3, - "INLINE": 2, - "AddChar": 2, - "uint32_t": 8, - "ExpandBuffer": 2, - "kMaxAsciiCharCodeU": 1, - "": 6, - "kASCIISize": 1, - "ConvertToUtf16": 2, - "*reinterpret_cast": 1, - "": 2, - "kUC16Size": 2, - "is_ascii": 3, - "Vector": 13, - "uc16": 5, - "utf16_literal": 3, - "backing_store_.start": 5, - "ascii_literal": 3, - "length": 8, - "kInitialCapacity": 2, - "kGrowthFactory": 2, - "kMinConversionSlack": 1, - "kMaxGrowth": 2, - "MB": 1, - "NewCapacity": 3, - "min_capacity": 2, - "capacity": 3, - "Max": 1, - "new_capacity": 2, - "Min": 1, - "new_store": 6, - "memcpy": 1, - "new_store.start": 3, - "new_content_size": 4, - "src": 2, - "": 1, - "dst": 2, - "Scanner*": 2, - "self": 5, - "scanner_": 5, - "complete_": 4, - "StartLiteral": 2, - "DropLiteral": 2, - "Complete": 1, - "TerminateLiteral": 2, - "beg_pos": 5, - "end_pos": 4, - "kNoOctalLocation": 1, - "scanner_contants": 1, - "current_token": 1, - "location": 4, - "current_.location": 2, - "literal_ascii_string": 1, - "ASSERT_NOT_NULL": 9, - "current_.literal_chars": 11, - "literal_utf16_string": 1, - "is_literal_ascii": 1, - "literal_length": 1, - "literal_contains_escapes": 1, - "source_length": 3, - "location.end_pos": 1, - "location.beg_pos": 1, - "STRING": 1, - "peek": 1, - "peek_location": 1, - "next_.location": 1, - "next_literal_ascii_string": 1, - "next_literal_utf16_string": 1, - "is_next_literal_ascii": 1, - "next_literal_length": 1, - "kCharacterLookaheadBufferSize": 3, - "ScanOctalEscape": 1, - "octal_position": 1, - "clear_octal_position": 1, - "HarmonyScoping": 1, - "SetHarmonyScoping": 1, - "scoping": 2, - "HarmonyModules": 1, - "SetHarmonyModules": 1, - "modules": 2, - "HasAnyLineTerminatorBeforeNext": 1, - "ScanRegExpPattern": 1, - "seen_equal": 1, - "ScanRegExpFlags": 1, - "IsIdentifier": 1, - "CharacterStream*": 1, - "buffer": 1, - "TokenDesc": 3, - "LiteralBuffer*": 2, - "literal_chars": 1, - "free_buffer": 3, - "literal_buffer1_": 3, - "literal_buffer2_": 2, - "AddLiteralChar": 2, - "tok": 2, - "else_": 2, - "ScanDecimalDigits": 1, - "seen_period": 1, - "ScanIdentifierSuffix": 1, - "LiteralScope*": 1, - "ScanIdentifierUnicodeEscape": 1, - "desc": 2, - "as": 1, - "look": 1, - "ahead": 1, - "UTILS_H": 3, - "": 1, - "": 1, - "": 1, - "QTemporaryFile": 1, - "showUsage": 1, - "QtMsgType": 1, - "type": 6, - "dump_path": 1, - "minidump_id": 1, - "void*": 1, - "context": 8, - "succeeded": 1, - "QVariant": 1, - "coffee2js": 1, - "script": 1, - "injectJsInFrame": 2, - "jsFilePath": 5, - "libraryPath": 5, - "QWebFrame": 4, - "*targetFrame": 4, - "startingScript": 2, - "Encoding": 3, - "jsFileEnc": 2, - "readResourceFileUtf8": 1, - "resourceFilePath": 1, - "loadJSForDebug": 2, - "autorun": 2, - "cleanupFromDebug": 1, - "findScript": 1, - "jsFromScriptFile": 1, - "scriptPath": 1, - "enc": 1, - "shouldn": 1, - "instantiated": 1, - "QTemporaryFile*": 2, - "m_tempHarness": 1, - "We": 1, - "make": 1, - "sure": 1, - "clean": 1, - "after": 1, - "ourselves": 1, - "m_tempWrapper": 1, - "V8_DECLARE_ONCE": 1, - "init_once": 2, - "V8": 21, - "is_running_": 6, - "has_been_set_up_": 4, - "has_been_disposed_": 6, - "has_fatal_error_": 5, - "use_crankshaft_": 6, - "List": 3, - "": 3, - "call_completed_callbacks_": 16, - "LazyMutex": 1, - "entropy_mutex": 1, - "LAZY_MUTEX_INITIALIZER": 1, - "EntropySource": 3, - "entropy_source": 4, - "Deserializer*": 2, - "des": 3, - "FlagList": 1, - "EnforceFlagImplications": 1, - "InitializeOncePerProcess": 4, - "Isolate": 9, - "CurrentPerIsolateThreadData": 4, - "EnterDefaultIsolate": 1, - "thread_id": 1, - ".Equals": 1, - "ThreadId": 1, - "Current": 5, - "isolate": 15, - "IsDead": 2, - "Isolate*": 6, - "SetFatalError": 2, - "TearDown": 5, - "IsDefaultIsolate": 1, - "ElementsAccessor": 2, - "LOperand": 2, - "TearDownCaches": 1, - "RegisteredExtension": 1, - "UnregisterAll": 1, - "OS": 3, - "seed_random": 2, - "uint32_t*": 2, - "state": 15, - "FLAG_random_seed": 2, - "val": 3, - "ScopedLock": 1, - "lock": 1, - "entropy_mutex.Pointer": 1, - "random": 1, - "random_base": 3, - "xFFFF": 2, - "FFFF": 1, - "SetEntropySource": 2, - "SetReturnAddressLocationResolver": 3, - "ReturnAddressLocationResolver": 2, - "resolver": 3, - "StackFrame": 1, - "Random": 3, - "Context*": 4, - "IsGlobalContext": 1, - "ByteArray*": 1, - "seed": 2, - "random_seed": 1, - "": 1, - "GetDataStartAddress": 1, - "RandomPrivate": 2, - "private_random_seed": 1, - "IdleNotification": 3, - "hint": 3, - "FLAG_use_idle_notification": 1, - "HEAP": 1, - "AddCallCompletedCallback": 2, - "CallCompletedCallback": 4, - "callback": 7, - "Lazy": 1, - "init.": 1, - "Add": 1, - "RemoveCallCompletedCallback": 2, - "Remove": 1, - "FireCallCompletedCallback": 2, - "HandleScopeImplementer*": 1, - "handle_scope_implementer": 5, - "CallDepthIsZero": 1, - "IncrementCallDepth": 1, - "DecrementCallDepth": 1, - "union": 1, - "double": 23, - "double_value": 1, - "uint64_t": 2, - "uint64_t_value": 1, - "double_int_union": 2, - "Object*": 4, - "FillHeapNumberWithRandom": 2, - "heap_number": 4, - "random_bits": 2, - "binary_million": 3, - "r.double_value": 3, - "r.uint64_t_value": 1, - "HeapNumber": 1, - "cast": 1, - "set_value": 1, - "InitializeOncePerProcessImpl": 3, - "SetUp": 4, - "FLAG_crankshaft": 1, - "Serializer": 1, - "enabled": 1, - "CPU": 2, - "SupportsCrankshaft": 1, - "PostSetUp": 1, - "RuntimeProfiler": 1, - "GlobalSetUp": 1, - "FLAG_stress_compaction": 1, - "FLAG_force_marking_deque_overflows": 1, - "FLAG_gc_global": 1, - "FLAG_max_new_space_size": 1, - "kPageSizeBits": 1, - "SetUpCaches": 1, - "SetUpJSCallerSavedCodeData": 1, - "SamplerRegistry": 1, - "ExternalReference": 1, - "CallOnce": 1, - "V8_V8_H_": 3, - "defined": 21, - "GOOGLE3": 2, - "DEBUG": 3, - "NDEBUG": 4, - "both": 1, - "set": 1, - "Deserializer": 1, - "AllStatic": 1, - "IsRunning": 1, - "UseCrankshaft": 1, - "FatalProcessOutOfMemory": 1, - "take_snapshot": 1, - "NilValue": 1, - "kNullValue": 1, - "kUndefinedValue": 1, - "EqualityKind": 1, - "kStrictEquality": 1, - "kNonStrictEquality": 1, - "PY_SSIZE_T_CLEAN": 1, - "Py_PYTHON_H": 1, - "Python": 1, - "needed": 1, - "compile": 1, - "C": 1, - "extensions": 1, - "please": 1, - "install": 1, - "development": 1, - "Python.": 1, - "#else": 24, - "": 1, - "offsetof": 2, - "member": 2, - "type*": 1, - "WIN32": 2, - "MS_WINDOWS": 2, - "__stdcall": 2, - "__cdecl": 2, - "__fastcall": 2, - "DL_IMPORT": 2, - "DL_EXPORT": 2, - "PY_LONG_LONG": 5, - "LONG_LONG": 1, - "PY_VERSION_HEX": 9, - "METH_COEXIST": 1, - "PyDict_CheckExact": 1, - "op": 6, - "Py_TYPE": 4, - "PyDict_Type": 1, - "PyDict_Contains": 1, - "o": 20, - "PySequence_Contains": 1, - "Py_ssize_t": 17, - "PY_SSIZE_T_MAX": 1, - "INT_MAX": 1, - "PY_SSIZE_T_MIN": 1, - "INT_MIN": 1, - "PY_FORMAT_SIZE_T": 1, - "PyInt_FromSsize_t": 2, - "z": 46, - "PyInt_FromLong": 13, - "PyInt_AsSsize_t": 2, - "PyInt_AsLong": 2, - "PyNumber_Index": 1, - "PyNumber_Int": 1, - "PyIndex_Check": 1, - "PyNumber_Check": 1, - "PyErr_WarnEx": 1, - "category": 2, - "message": 2, - "stacklevel": 1, - "PyErr_Warn": 1, - "Py_REFCNT": 1, - "ob": 6, - "PyObject*": 16, - "ob_refcnt": 1, - "ob_type": 7, - "Py_SIZE": 1, - "PyVarObject*": 1, - "ob_size": 1, - "PyVarObject_HEAD_INIT": 1, - "PyObject_HEAD_INIT": 1, - "PyType_Modified": 1, - "*buf": 1, - "PyObject": 221, - "*obj": 2, - "len": 1, - "itemsize": 2, - "readonly": 2, - "ndim": 2, - "*format": 1, - "*shape": 1, - "*strides": 1, - "*suboffsets": 1, - "*internal": 1, - "Py_buffer": 5, - "PyBUF_SIMPLE": 1, - "PyBUF_WRITABLE": 1, - "PyBUF_FORMAT": 1, - "PyBUF_ND": 2, - "PyBUF_STRIDES": 5, - "PyBUF_C_CONTIGUOUS": 3, - "PyBUF_F_CONTIGUOUS": 3, - "PyBUF_ANY_CONTIGUOUS": 1, - "PyBUF_INDIRECT": 1, - "PY_MAJOR_VERSION": 10, - "__Pyx_BUILTIN_MODULE_NAME": 2, - "Py_TPFLAGS_CHECKTYPES": 1, - "Py_TPFLAGS_HAVE_INDEX": 1, - "Py_TPFLAGS_HAVE_NEWBUFFER": 1, - "PyBaseString_Type": 1, - "PyUnicode_Type": 2, - "PyStringObject": 2, - "PyUnicodeObject": 1, - "PyString_Type": 2, - "PyString_Check": 2, - "PyUnicode_Check": 1, - "PyString_CheckExact": 2, - "PyUnicode_CheckExact": 1, - "PyBytesObject": 1, - "PyBytes_Type": 1, - "PyBytes_Check": 1, - "PyBytes_CheckExact": 1, - "PyBytes_FromString": 2, - "PyString_FromString": 1, - "PyBytes_FromStringAndSize": 1, - "PyString_FromStringAndSize": 1, - "PyBytes_FromFormat": 1, - "PyString_FromFormat": 1, - "PyBytes_DecodeEscape": 1, - "PyString_DecodeEscape": 1, - "PyBytes_AsString": 2, - "PyString_AsString": 1, - "PyBytes_AsStringAndSize": 1, - "PyString_AsStringAndSize": 1, - "PyBytes_Size": 1, - "PyString_Size": 1, - "PyBytes_AS_STRING": 1, - "PyString_AS_STRING": 1, - "PyBytes_GET_SIZE": 1, - "PyString_GET_SIZE": 1, - "PyBytes_Repr": 1, - "PyString_Repr": 1, - "PyBytes_Concat": 1, - "PyString_Concat": 1, - "PyBytes_ConcatAndDel": 1, - "PyString_ConcatAndDel": 1, - "PySet_Check": 1, - "obj": 42, - "PyObject_TypeCheck": 3, - "PySet_Type": 2, - "PyFrozenSet_Check": 1, - "PyFrozenSet_Type": 1, - "PySet_CheckExact": 2, - "__Pyx_TypeCheck": 1, - "PyTypeObject": 2, - "PyIntObject": 1, - "PyLongObject": 2, - "PyInt_Type": 1, - "PyLong_Type": 1, - "PyInt_Check": 1, - "PyLong_Check": 1, - "PyInt_CheckExact": 1, - "PyLong_CheckExact": 1, - "PyInt_FromString": 1, - "PyLong_FromString": 1, - "PyInt_FromUnicode": 1, - "PyLong_FromUnicode": 1, - "PyLong_FromLong": 1, - "PyInt_FromSize_t": 1, - "PyLong_FromSize_t": 1, - "PyLong_FromSsize_t": 1, - "PyLong_AsLong": 1, - "PyInt_AS_LONG": 1, - "PyLong_AS_LONG": 1, - "PyLong_AsSsize_t": 1, - "PyInt_AsUnsignedLongMask": 1, - "PyLong_AsUnsignedLongMask": 1, - "PyInt_AsUnsignedLongLongMask": 1, - "PyLong_AsUnsignedLongLongMask": 1, - "PyBoolObject": 1, - "__Pyx_PyNumber_Divide": 2, - "PyNumber_TrueDivide": 1, - "__Pyx_PyNumber_InPlaceDivide": 2, - "PyNumber_InPlaceTrueDivide": 1, - "PyNumber_Divide": 1, - "PyNumber_InPlaceDivide": 1, - "__Pyx_PySequence_GetSlice": 2, - "PySequence_GetSlice": 2, - "__Pyx_PySequence_SetSlice": 2, - "PySequence_SetSlice": 2, - "__Pyx_PySequence_DelSlice": 2, - "PySequence_DelSlice": 2, - "unlikely": 69, - "PyErr_SetString": 4, - "PyExc_SystemError": 3, - "likely": 15, - "tp_as_mapping": 3, - "PyErr_Format": 4, - "PyExc_TypeError": 5, - "tp_name": 4, - "PyMethod_New": 2, - "func": 3, - "klass": 1, - "PyInstanceMethod_New": 1, - "__Pyx_GetAttrString": 2, - "PyObject_GetAttrString": 3, - "__Pyx_SetAttrString": 2, - "PyObject_SetAttrString": 2, - "__Pyx_DelAttrString": 2, - "PyObject_DelAttrString": 2, - "__Pyx_NAMESTR": 3, - "__Pyx_DOCSTR": 3, - "__cplusplus": 10, - "__PYX_EXTERN_C": 2, - "_USE_MATH_DEFINES": 1, - "": 1, - "__PYX_HAVE_API__wrapper_inner": 1, - "PYREX_WITHOUT_ASSERTIONS": 1, - "CYTHON_WITHOUT_ASSERTIONS": 1, - "CYTHON_INLINE": 68, - "__GNUC__": 5, - "__inline__": 1, - "#elif": 3, - "__inline": 1, - "__STDC_VERSION__": 2, - "L": 1, - "CYTHON_UNUSED": 7, - "**p": 1, - "*s": 1, - "long": 5, - "encoding": 1, - "is_unicode": 1, - "is_str": 1, - "intern": 1, - "__Pyx_StringTabEntry": 1, - "__Pyx_PyBytes_FromUString": 1, - "__Pyx_PyBytes_AsUString": 1, - "__Pyx_PyBool_FromLong": 1, - "Py_INCREF": 3, - "Py_True": 2, - "Py_False": 2, - "__Pyx_PyObject_IsTrue": 8, - "__Pyx_PyNumber_Int": 1, - "__Pyx_PyIndex_AsSsize_t": 1, - "__Pyx_PyInt_FromSize_t": 1, - "__Pyx_PyInt_AsSize_t": 1, - "__pyx_PyFloat_AsDouble": 3, - "PyFloat_CheckExact": 1, - "PyFloat_AS_DOUBLE": 1, - "PyFloat_AsDouble": 1, - "__GNUC_MINOR__": 1, - "__builtin_expect": 2, - "*__pyx_m": 1, - "*__pyx_b": 1, - "*__pyx_empty_tuple": 1, - "*__pyx_empty_bytes": 1, - "__pyx_lineno": 80, - "__pyx_clineno": 80, - "__pyx_cfilenm": 1, - "__FILE__": 2, - "*__pyx_filename": 1, - "CYTHON_CCOMPLEX": 12, - "_Complex_I": 3, - "": 1, - "": 1, - "__sun__": 1, - "fj": 1, - "*__pyx_f": 1, - "npy_int8": 1, - "__pyx_t_5numpy_int8_t": 1, - "npy_int16": 1, - "__pyx_t_5numpy_int16_t": 1, - "npy_int32": 1, - "__pyx_t_5numpy_int32_t": 1, - "npy_int64": 1, - "__pyx_t_5numpy_int64_t": 1, + "git_iterator_current": 2, + "*__pyx_n_s__seed": 1, + "FILE*f": 2, + "server.bug_report_start": 1, + "i_SELECT_RF_STRING_CREATELOCAL0": 1, + "fv": 4, + "shared.bgsaveerr": 2, + "server.verbosity": 4, + "expireCommand": 1, + "__wglewReleaseVideoImageNV": 2, + "server.aof_child_pid": 10, + "srcName": 1, + ")": 6215, + "git_vector": 1, + "__Pyx_ParseOptionalKeywords": 4, + "*commit_list_insert_by_date": 1, + "MMIOT": 2, + "i_rfString_Remove": 6, + "*nNumFormats": 2, + "new_parent": 6, + "*__pyx_pw_7sklearn_12linear_model_8sgd_fast_10Regression_1loss": 3, + "__Pyx_RefNannySetupContext": 12, + "rfString_Create_nc": 3, + "WGL_EXT_extensions_string": 2, + "HEAD": 2, + "git_buf_free": 4, + "git_repository_config__weakptr": 1, + "st.st_mode": 2, + "GIT_DIFF_IGNORE_SUBMODULES": 1, + "__pyx_k__NotImplementedError": 1, + "quiet": 5, + "pybuffer": 1, + "linuxOvercommitMemoryWarning": 2, + "rpushxCommand": 1, + "D1": 1, + "__pyx_k__order": 1, "npy_uint8": 1, - "__pyx_t_5numpy_uint8_t": 1, - "npy_uint16": 1, - "__pyx_t_5numpy_uint16_t": 1, - "npy_uint32": 1, - "__pyx_t_5numpy_uint32_t": 1, - "npy_uint64": 1, + "r": 58, + "s_res_HT": 4, + "nBytePos": 23, + "sourceP": 2, + "XX": 63, + "*phGpuList": 1, + "cmd_merge_ours": 1, + "preserve_subject": 1, + "acquire_gil": 4, + "git_buf_common_prefix": 1, + "__PYX_HAVE__sklearn__linear_model__sgd_fast": 1, + "s_header_value": 5, + "cpu_present_bits": 5, + "utime": 1, + "addReplyBulkLongLong": 2, + "PFNWGLQUERYFRAMELOCKMASTERI3DPROC": 2, + "__Pyx_zeros": 1, + "diminfo": 1, + "enable_nonboot_cpus": 1, + "server.pidfile": 3, + "hmgetCommand": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_18EpsilonInsensitive_2loss": 1, + "wglQueryGenlockMaxSourceDelayI3D": 1, + "argv": 54, + "wglEnableGenlockI3D": 1, + "HVIDEOINPUTDEVICENV*": 1, + "WGLEW_NV_vertex_array_range": 1, + "*obj": 9, + "CONFIG_SMP": 1, + "PyInt_AsLong": 2, + "A2": 2, + "enc_packmode": 1, + "new_file.flags": 4, + "PFNWGLCREATEIMAGEBUFFERI3DPROC": 2, + "scardCommand": 1, + "_WIN32": 3, + "CMIT_FMT_FULLER": 1, + "PyInt_FromSsize_t": 6, "__pyx_t_5numpy_uint64_t": 1, - "npy_float32": 1, - "__pyx_t_5numpy_float32_t": 1, - "npy_float64": 1, - "__pyx_t_5numpy_float64_t": 1, - "npy_long": 1, - "__pyx_t_5numpy_int_t": 1, - "npy_longlong": 1, - "__pyx_t_5numpy_long_t": 1, - "npy_intp": 10, - "__pyx_t_5numpy_intp_t": 1, - "npy_uintp": 1, - "__pyx_t_5numpy_uintp_t": 1, - "npy_ulong": 1, - "__pyx_t_5numpy_uint_t": 1, - "npy_ulonglong": 1, - "__pyx_t_5numpy_ulong_t": 1, - "npy_double": 2, - "__pyx_t_5numpy_float_t": 1, - "__pyx_t_5numpy_double_t": 1, - "npy_longdouble": 1, - "__pyx_t_5numpy_longdouble_t": 1, - "complex": 2, - "__pyx_t_float_complex": 27, - "_Complex": 2, - "real": 2, - "imag": 2, - "__pyx_t_double_complex": 27, - "npy_cfloat": 1, - "__pyx_t_5numpy_cfloat_t": 1, - "npy_cdouble": 2, - "__pyx_t_5numpy_cdouble_t": 1, - "npy_clongdouble": 1, - "__pyx_t_5numpy_clongdouble_t": 1, - "__pyx_t_5numpy_complex_t": 1, - "CYTHON_REFNANNY": 3, - "__Pyx_RefNannyAPIStruct": 4, - "*__Pyx_RefNanny": 1, - "__Pyx_RefNannyImportAPI": 1, - "*modname": 1, - "*m": 1, - "*p": 1, - "*r": 1, - "m": 4, - "PyImport_ImportModule": 1, - "modname": 1, - "PyLong_AsVoidPtr": 1, - "Py_XDECREF": 3, - "__Pyx_RefNannySetupContext": 13, - "*__pyx_refnanny": 1, - "__Pyx_RefNanny": 6, - "SetupContext": 1, - "__LINE__": 84, - "__Pyx_RefNannyFinishContext": 12, - "FinishContext": 1, - "__pyx_refnanny": 5, - "__Pyx_INCREF": 36, - "INCREF": 1, - "__Pyx_DECREF": 66, - "DECREF": 1, - "__Pyx_GOTREF": 60, - "GOTREF": 1, - "__Pyx_GIVEREF": 10, - "GIVEREF": 1, - "__Pyx_XDECREF": 26, - "Py_DECREF": 1, - "__Pyx_XGIVEREF": 7, - "__Pyx_XGOTREF": 1, - "__Pyx_TypeTest": 4, - "*type": 3, - "*__Pyx_GetName": 1, - "*dict": 1, - "__Pyx_ErrRestore": 1, - "*value": 2, - "*tb": 2, - "__Pyx_ErrFetch": 1, - "**type": 1, - "**value": 1, - "**tb": 1, - "__Pyx_Raise": 8, - "__Pyx_RaiseNoneNotIterableError": 1, - "__Pyx_RaiseNeedMoreValuesError": 1, - "index": 2, - "__Pyx_RaiseTooManyValuesError": 1, - "expected": 1, - "__Pyx_UnpackTupleError": 2, - "*__Pyx_Import": 1, - "*from_list": 1, - "__Pyx_Print": 1, - "__pyx_print": 1, - "__pyx_print_kwargs": 1, - "__Pyx_PrintOne": 4, - "*o": 1, - "*__Pyx_PyInt_to_py_Py_intptr_t": 1, - "Py_intptr_t": 1, - "__Pyx_CREAL": 4, - ".real": 3, - "__Pyx_CIMAG": 4, - ".imag": 3, - "__real__": 1, - "__imag__": 1, - "_WIN32": 1, - "__Pyx_SET_CREAL": 2, - "__Pyx_SET_CIMAG": 2, - "__pyx_t_float_complex_from_parts": 1, - "__Pyx_c_eqf": 2, - "__Pyx_c_sumf": 2, - "__Pyx_c_difff": 2, - "__Pyx_c_prodf": 2, - "__Pyx_c_quotf": 2, - "__Pyx_c_negf": 2, - "__Pyx_c_is_zerof": 3, - "__Pyx_c_conjf": 3, - "conj": 3, - "__Pyx_c_absf": 3, - "abs": 2, - "__Pyx_c_powf": 3, - "pow": 2, - "conjf": 1, - "cabsf": 1, - "cpowf": 1, - "__pyx_t_double_complex_from_parts": 1, - "__Pyx_c_eq": 2, - "__Pyx_c_sum": 2, - "__Pyx_c_diff": 2, - "__Pyx_c_prod": 2, - "__Pyx_c_quot": 2, - "__Pyx_c_neg": 2, - "__Pyx_c_is_zero": 3, - "__Pyx_c_conj": 3, - "__Pyx_c_abs": 3, - "__Pyx_c_pow": 3, - "cabs": 1, - "cpow": 1, - "__Pyx_PyInt_AsUnsignedChar": 1, - "short": 3, - "__Pyx_PyInt_AsUnsignedShort": 1, - "__Pyx_PyInt_AsUnsignedInt": 1, - "__Pyx_PyInt_AsChar": 1, - "__Pyx_PyInt_AsShort": 1, - "__Pyx_PyInt_AsInt": 1, - "signed": 5, - "__Pyx_PyInt_AsSignedChar": 1, - "__Pyx_PyInt_AsSignedShort": 1, - "__Pyx_PyInt_AsSignedInt": 1, - "__Pyx_PyInt_AsLongDouble": 1, - "__Pyx_PyInt_AsUnsignedLong": 1, - "__Pyx_PyInt_AsUnsignedLongLong": 1, - "__Pyx_PyInt_AsLong": 1, - "__Pyx_PyInt_AsLongLong": 1, - "__Pyx_PyInt_AsSignedLong": 1, - "__Pyx_PyInt_AsSignedLongLong": 1, - "__Pyx_WriteUnraisable": 3, - "__Pyx_ExportFunction": 1, - "*__pyx_f_5numpy_PyArray_MultiIterNew2": 2, - "*__pyx_f_5numpy_PyArray_MultiIterNew3": 2, - "*__pyx_f_5numpy_PyArray_MultiIterNew4": 2, - "*__pyx_f_5numpy_PyArray_MultiIterNew5": 2, - "*__pyx_f_5numpy__util_dtypestring": 2, - "PyArray_Descr": 6, - "__pyx_f_5numpy_set_array_base": 1, - "PyArrayObject": 19, - "*__pyx_f_5numpy_get_array_base": 1, - "inner_work_1d": 2, - "inner_work_2d": 2, - "__Pyx_MODULE_NAME": 1, - "__pyx_module_is_main_wrapper_inner": 1, - "*__pyx_builtin_ValueError": 1, - "*__pyx_builtin_range": 1, - "*__pyx_builtin_RuntimeError": 1, - "__pyx_k_1": 1, - "__pyx_k_2": 1, - "__pyx_k_3": 1, - "__pyx_k_5": 1, - "__pyx_k_7": 1, - "__pyx_k_9": 1, - "__pyx_k_11": 1, - "__pyx_k_12": 1, - "__pyx_k_15": 1, - "__pyx_k__B": 2, - "__pyx_k__H": 2, - "__pyx_k__I": 2, - "__pyx_k__L": 2, - "__pyx_k__O": 2, - "__pyx_k__Q": 2, - "__pyx_k__b": 2, - "__pyx_k__d": 2, - "__pyx_k__f": 2, - "__pyx_k__g": 2, - "__pyx_k__h": 2, - "__pyx_k__i": 2, - "__pyx_k__l": 2, - "__pyx_k__q": 2, - "__pyx_k__Zd": 2, - "__pyx_k__Zf": 2, - "__pyx_k__Zg": 2, - "__pyx_k__np": 1, - "__pyx_k__buf": 1, - "__pyx_k__obj": 1, - "__pyx_k__base": 1, - "__pyx_k__ndim": 1, - "__pyx_k__ones": 1, - "__pyx_k__descr": 1, - "__pyx_k__names": 1, - "__pyx_k__numpy": 1, - "__pyx_k__range": 1, - "__pyx_k__shape": 1, - "__pyx_k__fields": 1, - "__pyx_k__format": 1, - "__pyx_k__strides": 1, - "__pyx_k____main__": 1, - "__pyx_k____test__": 1, - "__pyx_k__itemsize": 1, - "__pyx_k__readonly": 1, - "__pyx_k__type_num": 1, - "__pyx_k__byteorder": 1, - "__pyx_k__ValueError": 1, - "__pyx_k__suboffsets": 1, - "__pyx_k__work_module": 1, - "__pyx_k__RuntimeError": 1, - "__pyx_k__pure_py_test": 1, - "__pyx_k__wrapper_inner": 1, - "__pyx_k__do_awesome_work": 1, - "*__pyx_kp_s_1": 1, - "*__pyx_kp_u_11": 1, - "*__pyx_kp_u_12": 1, - "*__pyx_kp_u_15": 1, - "*__pyx_kp_s_2": 1, - "*__pyx_kp_s_3": 1, - "*__pyx_kp_u_5": 1, - "*__pyx_kp_u_7": 1, - "*__pyx_kp_u_9": 1, - "*__pyx_n_s__RuntimeError": 1, - "*__pyx_n_s__ValueError": 1, - "*__pyx_n_s____main__": 1, - "*__pyx_n_s____test__": 1, - "*__pyx_n_s__base": 1, - "*__pyx_n_s__buf": 1, - "*__pyx_n_s__byteorder": 1, - "*__pyx_n_s__descr": 1, - "*__pyx_n_s__do_awesome_work": 1, - "*__pyx_n_s__fields": 1, - "*__pyx_n_s__format": 1, - "*__pyx_n_s__itemsize": 1, - "*__pyx_n_s__names": 1, - "*__pyx_n_s__ndim": 1, - "*__pyx_n_s__np": 1, - "*__pyx_n_s__numpy": 1, - "*__pyx_n_s__obj": 1, - "*__pyx_n_s__ones": 1, - "*__pyx_n_s__pure_py_test": 1, - "*__pyx_n_s__range": 1, - "*__pyx_n_s__readonly": 1, - "*__pyx_n_s__shape": 1, - "*__pyx_n_s__strides": 1, - "*__pyx_n_s__suboffsets": 1, - "*__pyx_n_s__type_num": 1, - "*__pyx_n_s__work_module": 1, - "*__pyx_n_s__wrapper_inner": 1, - "*__pyx_int_5": 1, - "*__pyx_int_15": 1, - "*__pyx_k_tuple_4": 1, - "*__pyx_k_tuple_6": 1, - "*__pyx_k_tuple_8": 1, - "*__pyx_k_tuple_10": 1, - "*__pyx_k_tuple_13": 1, - "*__pyx_k_tuple_14": 1, - "*__pyx_k_tuple_16": 1, - "__pyx_v_num_x": 4, - "*__pyx_v_data_ptr": 2, - "*__pyx_v_answer_ptr": 2, - "__pyx_v_nd": 6, - "*__pyx_v_dims": 2, - "__pyx_v_typenum": 6, - "*__pyx_v_data_np": 2, - "__pyx_v_sum": 6, - "__pyx_t_1": 154, - "*__pyx_t_2": 4, - "*__pyx_t_3": 4, - "*__pyx_t_4": 3, - "__pyx_t_5": 75, - "__pyx_kp_s_1": 1, - "__pyx_filename": 79, - "__pyx_f": 79, - "__pyx_L1_error": 88, - "__pyx_v_dims": 4, - "NPY_DOUBLE": 3, - "__pyx_t_2": 120, - "PyArray_SimpleNewFromData": 2, - "__pyx_v_data_ptr": 2, - "Py_None": 38, - "__pyx_ptype_5numpy_ndarray": 2, - "__pyx_v_data_np": 10, - "__Pyx_GetName": 4, - "__pyx_m": 4, - "__pyx_n_s__work_module": 3, - "__pyx_t_3": 113, - "PyObject_GetAttr": 4, - "__pyx_n_s__do_awesome_work": 3, - "PyTuple_New": 4, - "PyTuple_SET_ITEM": 4, - "__pyx_t_4": 35, - "PyObject_Call": 11, - "PyErr_Occurred": 2, - "__pyx_v_answer_ptr": 2, - "__pyx_L0": 24, - "__pyx_v_num_y": 2, - "__pyx_kp_s_2": 1, - "*__pyx_pf_13wrapper_inner_pure_py_test": 2, - "*__pyx_self": 2, - "*unused": 2, - "PyMethodDef": 1, - "__pyx_mdef_13wrapper_inner_pure_py_test": 1, - "PyCFunction": 1, - "__pyx_pf_13wrapper_inner_pure_py_test": 1, - "METH_NOARGS": 1, - "*__pyx_v_data": 1, - "*__pyx_r": 7, - "*__pyx_t_1": 8, - "__pyx_self": 2, - "__pyx_v_data": 7, - "__pyx_kp_s_3": 1, - "__pyx_n_s__np": 1, - "__pyx_n_s__ones": 1, - "__pyx_k_tuple_4": 1, - "__pyx_r": 39, - "__Pyx_AddTraceback": 7, - "__pyx_pf_5numpy_7ndarray___getbuffer__": 2, - "*__pyx_v_self": 4, - "*__pyx_v_info": 4, - "__pyx_v_flags": 4, - "__pyx_v_copy_shape": 5, - "__pyx_v_i": 6, - "__pyx_v_ndim": 6, - "__pyx_v_endian_detector": 6, - "__pyx_v_little_endian": 8, - "__pyx_v_t": 29, - "*__pyx_v_f": 2, - "*__pyx_v_descr": 2, - "__pyx_v_offset": 9, - "__pyx_v_hasfields": 4, - "__pyx_t_6": 40, - "__pyx_t_7": 9, - "*__pyx_t_8": 1, - "*__pyx_t_9": 1, - "__pyx_v_info": 33, - "__pyx_v_self": 16, - "PyArray_NDIM": 1, - "__pyx_L5": 6, - "PyArray_CHKFLAGS": 2, - "NPY_C_CONTIGUOUS": 1, - "__pyx_builtin_ValueError": 5, - "__pyx_k_tuple_6": 1, - "__pyx_L6": 6, - "NPY_F_CONTIGUOUS": 1, - "__pyx_k_tuple_8": 1, - "__pyx_L7": 2, - "buf": 1, - "PyArray_DATA": 1, - "strides": 5, - "malloc": 2, - "shape": 3, - "PyArray_STRIDES": 2, - "PyArray_DIMS": 2, - "__pyx_L8": 2, - "suboffsets": 1, - "PyArray_ITEMSIZE": 1, - "PyArray_ISWRITEABLE": 1, - "__pyx_v_f": 31, - "descr": 2, - "__pyx_v_descr": 10, - "PyDataType_HASFIELDS": 2, - "__pyx_L11": 7, - "type_num": 2, - "byteorder": 4, - "__pyx_k_tuple_10": 1, - "__pyx_L13": 2, - "NPY_BYTE": 2, - "__pyx_L14": 18, - "NPY_UBYTE": 2, - "NPY_SHORT": 2, - "NPY_USHORT": 2, - "NPY_INT": 2, - "NPY_UINT": 2, - "NPY_LONG": 1, - "NPY_ULONG": 1, - "NPY_LONGLONG": 1, - "NPY_ULONGLONG": 1, - "NPY_FLOAT": 1, - "NPY_LONGDOUBLE": 1, - "NPY_CFLOAT": 1, - "NPY_CDOUBLE": 1, - "NPY_CLONGDOUBLE": 1, - "NPY_OBJECT": 1, - "__pyx_t_8": 16, - "PyNumber_Remainder": 1, - "__pyx_kp_u_11": 1, - "format": 6, - "__pyx_L12": 2, - "__pyx_t_9": 7, - "__pyx_f_5numpy__util_dtypestring": 1, - "__pyx_L2": 2, - "__pyx_pf_5numpy_7ndarray_1__releasebuffer__": 2, - "PyArray_HASFIELDS": 1, - "free": 2, - "*__pyx_f_5numpy_PyArray_MultiIterNew1": 1, - "*__pyx_v_a": 5, - "PyArray_MultiIterNew": 5, - "__pyx_v_a": 5, - "*__pyx_v_b": 4, - "__pyx_v_b": 4, - "*__pyx_v_c": 3, - "__pyx_v_c": 3, - "*__pyx_v_d": 2, - "__pyx_v_d": 2, - "*__pyx_v_e": 1, - "__pyx_v_e": 1, - "*__pyx_v_end": 1, - "*__pyx_v_offset": 1, - "*__pyx_v_child": 1, - "*__pyx_v_fields": 1, - "*__pyx_v_childname": 1, - "*__pyx_v_new_offset": 1, - "*__pyx_v_t": 1, - "*__pyx_t_5": 1, - "__pyx_t_10": 7, - "*__pyx_t_11": 1, - "__pyx_v_child": 8, - "__pyx_v_fields": 7, - "__pyx_v_childname": 4, - "__pyx_v_new_offset": 5, - "names": 2, - "PyTuple_GET_SIZE": 2, - "PyTuple_GET_ITEM": 3, - "PyObject_GetItem": 1, - "fields": 1, - "PyTuple_CheckExact": 1, - "tuple": 3, - "__pyx_ptype_5numpy_dtype": 1, - "__pyx_v_end": 2, - "PyNumber_Subtract": 2, - "PyObject_RichCompare": 8, - "__pyx_int_15": 1, - "Py_LT": 2, - "__pyx_builtin_RuntimeError": 2, - "__pyx_k_tuple_13": 1, - "__pyx_k_tuple_14": 1, - "elsize": 1, - "__pyx_k_tuple_16": 1, - "__pyx_L10": 2, - "Py_EQ": 6 - }, - "Ceylon": { - "doc": 2, - "by": 1, - "shared": 5, - "void": 1, - "test": 1, - "(": 4, - ")": 4, - "{": 3, - "print": 1, - ";": 4, - "}": 3, - "class": 1, - "Test": 2, - "name": 4, - "satisfies": 1, - "Comparable": 1, - "": 1, - "String": 2, - "actual": 2, - "string": 1, - "Comparison": 1, - "compare": 1, - "other": 1, - "return": 1, - "<=>": 1, - "other.name": 1 - }, - "COBOL": { - "program": 1, - "-": 19, - "id.": 1, - "hello.": 3, - "procedure": 1, - "division.": 1, - "display": 1, - ".": 3, - "stop": 1, - "run.": 1, - "IDENTIFICATION": 2, - "DIVISION.": 4, - "PROGRAM": 2, - "ID.": 2, - "PROCEDURE": 2, - "DISPLAY": 2, - "STOP": 2, - "RUN.": 2, - "COBOL": 7, - "TEST": 2, - "RECORD.": 1, - "USAGES.": 1, - "COMP": 5, - "PIC": 5, - "S9": 4, - "(": 5, - ")": 5, - "COMP.": 3, - "COMP2": 2 - }, - "CoffeeScript": { - "CoffeeScript": 1, - "require": 21, - "CoffeeScript.require": 1, - "CoffeeScript.eval": 1, - "(": 193, - "code": 20, - "options": 16, - "{": 31, - "}": 34, - ")": 196, - "-": 107, - "options.bare": 2, - "on": 3, - "eval": 2, - "CoffeeScript.compile": 2, - "CoffeeScript.run": 3, - "Function": 1, - "return": 29, - "unless": 19, - "window": 1, - "CoffeeScript.load": 2, - "url": 2, - "callback": 35, - "xhr": 2, - "new": 12, - "window.ActiveXObject": 1, - "or": 22, - "XMLHttpRequest": 1, - "xhr.open": 1, - "true": 8, - "xhr.overrideMimeType": 1, - "if": 102, - "of": 7, - "xhr.onreadystatechange": 1, - "xhr.readyState": 1, - "is": 36, - "xhr.status": 1, - "in": 32, - "[": 134, - "]": 134, - "xhr.responseText": 1, - "else": 53, - "throw": 3, - "Error": 1, - "xhr.send": 1, - "null": 15, - "runScripts": 3, - "scripts": 2, - "document.getElementsByTagName": 1, - "coffees": 2, - "s": 10, - "for": 14, - "when": 16, - "s.type": 1, - "index": 4, - "length": 4, - "coffees.length": 1, - "do": 2, - "execute": 3, - "script": 7, - "+": 31, - ".type": 1, - "script.src": 2, - "script.innerHTML": 1, - "window.addEventListener": 1, - "addEventListener": 1, - "no": 3, - "attachEvent": 1, - "class": 11, - "Animal": 3, - "constructor": 6, - "@name": 2, - "move": 3, - "meters": 2, - "alert": 4, - "Snake": 2, - "extends": 6, - "super": 4, - "Horse": 2, - "sam": 1, - "tom": 1, - "sam.move": 1, - "tom.move": 1, - "#": 35, - "fs": 2, - "path": 3, - "Lexer": 3, - "RESERVED": 3, - "parser": 1, - "vm": 1, - "require.extensions": 3, - "module": 1, - "filename": 6, - "content": 4, - "compile": 5, - "fs.readFileSync": 1, - "module._compile": 1, - "require.registerExtension": 2, - "exports.VERSION": 1, - "exports.RESERVED": 1, - "exports.helpers": 2, - "exports.compile": 1, - "merge": 1, - "try": 3, - "js": 5, - "parser.parse": 3, - "lexer.tokenize": 3, - ".compile": 1, - "options.header": 1, - "catch": 2, - "err": 20, - "err.message": 2, - "options.filename": 5, - "header": 1, - "exports.tokens": 1, - "exports.nodes": 1, - "source": 5, - "typeof": 2, - "exports.run": 1, - "mainModule": 1, - "require.main": 1, - "mainModule.filename": 4, - "process.argv": 1, - "then": 24, - "fs.realpathSync": 2, - "mainModule.moduleCache": 1, - "and": 20, - "mainModule.paths": 1, - "._nodeModulePaths": 1, - "path.dirname": 2, - "path.extname": 1, - "isnt": 7, - "mainModule._compile": 2, - "exports.eval": 1, - "code.trim": 1, - "Script": 2, - "vm.Script": 1, - "options.sandbox": 4, - "instanceof": 2, - "Script.createContext": 2, - ".constructor": 1, - "sandbox": 8, - "k": 4, - "v": 4, - "own": 2, - "sandbox.global": 1, - "sandbox.root": 1, - "sandbox.GLOBAL": 1, - "global": 3, - "sandbox.__filename": 3, - "||": 3, - "sandbox.__dirname": 1, - "sandbox.module": 2, - "sandbox.require": 2, - "Module": 2, - "_module": 3, - "options.modulename": 1, - "_require": 2, - "Module._load": 1, - "_module.filename": 1, - "r": 4, - "Object.getOwnPropertyNames": 1, - "_require.paths": 1, - "_module.paths": 1, - "Module._nodeModulePaths": 1, - "process.cwd": 1, - "_require.resolve": 1, - "request": 2, - "Module._resolveFilename": 1, - "o": 4, - "o.bare": 1, - "ensure": 1, - "value": 25, - "vm.runInThisContext": 1, - "vm.runInContext": 1, - "lexer": 1, - "parser.lexer": 1, - "lex": 1, - "tag": 33, - "@yytext": 1, - "@yylineno": 1, - "@tokens": 7, - "@pos": 2, - "setInput": 1, - "upcomingInput": 1, - "parser.yy": 1, - "console.log": 1, - "number": 13, - "opposite": 2, - "square": 4, - "x": 6, - "*": 21, - "list": 2, - "math": 1, - "root": 1, - "Math.sqrt": 1, - "cube": 1, - "race": 1, - "winner": 2, - "runners...": 1, - "print": 1, - "runners": 1, - "elvis": 1, - "cubes": 1, - "math.cube": 1, - "num": 2, - "Rewriter": 2, - "INVERSES": 2, - "count": 5, - "starts": 1, - "compact": 1, - "last": 3, - "exports.Lexer": 1, - "tokenize": 1, - "opts": 1, - "WHITESPACE.test": 1, - "code.replace": 1, - "/": 44, - "r/g": 1, - ".replace": 3, - "TRAILING_SPACES": 2, - "@code": 1, - "The": 7, - "remainder": 1, - "the": 4, - "code.": 1, - "@line": 4, - "opts.line": 1, - "current": 5, - "line.": 1, - "@indent": 3, - "indentation": 3, - "level.": 3, - "@indebt": 1, - "over": 1, - "at": 2, - "@outdebt": 1, - "under": 1, - "outdentation": 1, - "@indents": 1, - "stack": 4, - "all": 1, - "levels.": 1, - "@ends": 1, - "pairing": 1, - "up": 1, - "tokens.": 1, - "Stream": 1, - "parsed": 1, - "tokens": 5, - "form": 1, - "line": 6, - ".": 13, - "i": 8, - "while": 4, - "@chunk": 9, - "i..": 1, - "@identifierToken": 1, - "@commentToken": 1, - "@whitespaceToken": 1, - "@lineToken": 1, - "@heredocToken": 1, - "@stringToken": 1, - "@numberToken": 1, - "@regexToken": 1, - "@jsToken": 1, - "@literalToken": 1, - "@closeIndentation": 1, - "@error": 10, - "@ends.pop": 1, - "opts.rewrite": 1, - "off": 1, - ".rewrite": 1, - "identifierToken": 1, - "match": 23, - "IDENTIFIER.exec": 1, - "input": 1, - "id": 16, - "colon": 3, - "@tag": 3, - "@token": 12, - "id.length": 1, - "forcedIdentifier": 4, - "prev": 17, - "not": 4, - "prev.spaced": 3, - "JS_KEYWORDS": 1, - "COFFEE_KEYWORDS": 1, - "id.toUpperCase": 1, - "LINE_BREAK": 2, - "@seenFor": 4, - "yes": 5, - "UNARY": 4, - "RELATION": 3, - "@value": 1, - "@tokens.pop": 1, - "JS_FORBIDDEN": 1, - "String": 1, - "id.reserved": 1, - "COFFEE_ALIAS_MAP": 1, - "COFFEE_ALIASES": 1, - "switch": 7, - "input.length": 1, - "numberToken": 1, - "NUMBER.exec": 1, - "BOX": 1, - "/.test": 4, - "/E/.test": 1, - "x/.test": 1, - "d*": 1, - "d": 2, - "lexedLength": 2, - "number.length": 1, - "octalLiteral": 2, - "/.exec": 2, - "parseInt": 5, - ".toString": 3, - "binaryLiteral": 2, - "b": 1, - "stringToken": 1, - "@chunk.charAt": 3, - "SIMPLESTR.exec": 1, - "string": 9, - "MULTILINER": 2, - "@balancedString": 1, - "<": 6, - "string.indexOf": 1, - "@interpolateString": 2, - "@escapeLines": 1, - "octalEsc": 1, - "|": 21, - "string.length": 1, - "heredocToken": 1, - "HEREDOC.exec": 1, - "heredoc": 4, - "quote": 5, - "heredoc.charAt": 1, - "doc": 11, - "@sanitizeHeredoc": 2, - "indent": 7, - "<=>": 1, - "indexOf": 1, - "interpolateString": 1, - "token": 1, - "STRING": 2, - "makeString": 1, - "n": 16, - "Matches": 1, - "consumes": 1, - "comments": 1, - "commentToken": 1, - "@chunk.match": 1, - "COMMENT": 2, - "comment": 2, - "here": 3, - "herecomment": 4, - "Array": 1, - ".join": 2, - "comment.length": 1, - "jsToken": 1, - "JSTOKEN.exec": 1, - "script.length": 1, - "regexToken": 1, - "HEREGEX.exec": 1, - "@heregexToken": 1, - "NOT_REGEX": 2, - "NOT_SPACED_REGEX": 2, - "REGEX.exec": 1, - "regex": 5, - "flags": 2, - "..1": 1, - "match.length": 1, - "heregexToken": 1, - "heregex": 1, - "body": 2, - "body.indexOf": 1, - "re": 1, - "body.replace": 1, - "HEREGEX_OMIT": 3, - "//g": 1, - "re.match": 1, - "*/": 2, - "heregex.length": 1, - "@tokens.push": 1, - "tokens.push": 1, - "value...": 1, - "continue": 3, - "value.replace": 2, - "/g": 3, - "spaced": 1, - "reserved": 1, - "word": 1, - "value.length": 2, - "MATH": 3, - "COMPARE": 3, - "COMPOUND_ASSIGN": 2, - "SHIFT": 3, - "LOGIC": 3, - ".spaced": 1, - "CALLABLE": 2, - "INDEXABLE": 2, - "@ends.push": 1, - "@pair": 1, - "sanitizeHeredoc": 1, - "HEREDOC_ILLEGAL.test": 1, - "doc.indexOf": 1, - "HEREDOC_INDENT.exec": 1, - "attempt": 2, - "attempt.length": 1, - "indent.length": 1, - "doc.replace": 2, - "///": 12, - "///g": 1, - "n/": 1, - "tagParameters": 1, - "this": 6, - "tokens.length": 1, - "tok": 5, - "stack.push": 1, - "stack.length": 1, - "stack.pop": 2, - "closeIndentation": 1, - "@outdentToken": 1, - "balancedString": 1, - "str": 1, - "end": 2, - "continueCount": 3, - "str.length": 1, - "letter": 1, - "str.charAt": 1, - "missing": 1, - "starting": 1, - "Hello": 1, - "name.capitalize": 1, - "OUTDENT": 1, - "THROW": 1, - "EXTENDS": 1, - "&": 4, - "false": 4, - "delete": 1, - "break": 1, - "debugger": 1, - "finally": 2, - "undefined": 1, - "until": 1, - "loop": 1, - "by": 1, - "&&": 1, - "case": 1, - "default": 1, - "function": 2, - "var": 1, - "void": 1, - "with": 1, - "const": 1, - "let": 2, - "enum": 1, - "export": 1, - "import": 1, - "native": 1, - "__hasProp": 1, - "__extends": 1, - "__slice": 1, - "__bind": 1, - "__indexOf": 1, - "implements": 1, - "interface": 1, - "package": 1, - "private": 1, - "protected": 1, - "public": 1, - "static": 1, - "yield": 1, - "arguments": 1, - "S": 10, - "OPERATOR": 1, - "%": 1, - "compound": 1, - "assign": 1, - "compare": 1, - "zero": 1, - "fill": 1, - "right": 1, - "shift": 2, - "doubles": 1, - "logic": 1, - "soak": 1, - "access": 1, - "range": 1, - "splat": 1, - "WHITESPACE": 1, - "###": 3, - "s*#": 1, - "##": 1, - ".*": 1, - "CODE": 1, - "MULTI_DENT": 1, - "SIMPLESTR": 1, - "JSTOKEN": 1, - "REGEX": 1, - "disallow": 1, - "leading": 1, - "whitespace": 1, - "equals": 1, - "signs": 1, - "every": 1, - "other": 1, - "thing": 1, - "anything": 1, - "escaped": 1, - "character": 1, - "imgy": 2, - "w": 2, - "HEREGEX": 1, - "#.*": 1, - "n/g": 1, - "HEREDOC_INDENT": 1, - "HEREDOC_ILLEGAL": 1, - "//": 1, - "LINE_CONTINUER": 1, - "s*": 1, - "BOOL": 1, - "NOT_REGEX.concat": 1, - "CALLABLE.concat": 1, - "async": 1, - "nack": 1, - "bufferLines": 3, - "pause": 2, - "sourceScriptEnv": 3, - "join": 8, - "exists": 5, - "basename": 2, - "resolve": 2, - "module.exports": 1, - "RackApplication": 1, - "@configuration": 1, - "@root": 8, - "@firstHost": 1, - "@logger": 1, - "@configuration.getLogger": 1, - "@readyCallbacks": 3, - "@quitCallbacks": 3, - "@statCallbacks": 3, - "ready": 1, - "@state": 11, - "@readyCallbacks.push": 1, - "@initialize": 2, - "quit": 1, - "@quitCallbacks.push": 1, - "@terminate": 2, - "queryRestartFile": 1, - "fs.stat": 1, - "stats": 1, - "@mtime": 5, - "lastMtime": 2, - "stats.mtime.getTime": 1, - "setPoolRunOnceFlag": 1, - "@statCallbacks.length": 1, - "alwaysRestart": 2, - "@pool.runOnce": 1, - "statCallback": 2, - "@statCallbacks.push": 1, - "loadScriptEnvironment": 1, - "env": 18, - "async.reduce": 1, - "scriptExists": 2, - "loadRvmEnvironment": 1, - "rvmrcExists": 2, - "rvm": 1, - "@configuration.rvmPath": 1, - "rvmExists": 2, - "libexecPath": 1, - "before": 2, - ".trim": 1, - "loadEnvironment": 1, - "@queryRestartFile": 2, - "@loadScriptEnvironment": 1, - "@configuration.env": 1, - "@loadRvmEnvironment": 1, - "initialize": 1, - "@quit": 3, - "@loadEnvironment": 1, - "@logger.error": 3, - "@pool": 2, - "nack.createPool": 1, - "size": 1, - ".POW_WORKERS": 1, - "@configuration.workers": 1, - "idle": 1, - ".POW_TIMEOUT": 1, - "@configuration.timeout": 1, - "@pool.stdout": 1, - "@logger.info": 1, - "@pool.stderr": 1, - "@logger.warning": 1, - "@pool.on": 2, - "process": 2, - "@logger.debug": 2, - "readyCallback": 2, - "terminate": 1, - "@ready": 3, - "@pool.quit": 1, - "quitCallback": 2, - "handle": 1, - "req": 4, - "res": 3, - "next": 3, - "resume": 2, - "@setPoolRunOnceFlag": 1, - "@restartIfNecessary": 1, - "req.proxyMetaVariables": 1, - "SERVER_PORT": 1, - "@configuration.dstPort.toString": 1, - "@pool.proxy": 1, - "restart": 1, - "restartIfNecessary": 1, - "mtimeChanged": 2, - "@restart": 1, - "writeRvmBoilerplate": 1, - "powrc": 3, - "boilerplate": 2, - "@constructor.rvmBoilerplate": 1, - "fs.readFile": 1, - "contents": 2, - "contents.indexOf": 1, - "fs.writeFile": 1, - "@rvmBoilerplate": 1, - "dnsserver": 1, - "exports.Server": 1, - "Server": 2, - "dnsserver.Server": 1, - "NS_T_A": 3, - "NS_T_NS": 2, - "NS_T_CNAME": 1, - "NS_T_SOA": 2, - "NS_C_IN": 5, - "NS_RCODE_NXDOMAIN": 2, - "domain": 6, - "@rootAddress": 2, - "@domain": 3, - "domain.toLowerCase": 1, - "@soa": 2, - "createSOA": 2, - "@on": 1, - "@handleRequest": 1, - "handleRequest": 1, - "question": 5, - "req.question": 1, - "subdomain": 10, - "@extractSubdomain": 1, - "question.name": 3, - "isARequest": 2, - "res.addRR": 2, - "subdomain.getAddress": 1, - ".isEmpty": 1, - "isNSRequest": 2, - "res.header.rcode": 1, - "res.send": 1, - "extractSubdomain": 1, - "name": 5, - "Subdomain.extract": 1, - "question.type": 2, - "question.class": 2, - "mname": 2, - "rname": 2, - "serial": 2, - "Date": 1, - ".getTime": 1, - "refresh": 2, - "retry": 2, - "expire": 2, - "minimum": 2, - "dnsserver.createSOA": 1, - "exports.createServer": 1, - "address": 4, - "exports.Subdomain": 1, - "Subdomain": 4, - "@extract": 1, - "name.toLowerCase": 1, - "offset": 4, - "name.length": 1, - "domain.length": 1, - "name.slice": 2, - "@for": 2, - "IPAddressSubdomain.pattern.test": 1, - "IPAddressSubdomain": 2, - "EncodedSubdomain.pattern.test": 1, - "EncodedSubdomain": 2, - "@subdomain": 1, - "@address": 2, - "@labels": 2, - ".split": 1, - "@length": 3, - "@labels.length": 1, - "isEmpty": 1, - "getAddress": 3, - "@pattern": 2, - "@labels.slice": 1, - "a": 2, - "z0": 2, - "decode": 2, - "exports.encode": 1, - "encode": 1, - "ip": 2, - "byte": 2, - "ip.split": 1, - "<<": 1, - "PATTERN": 1, - "exports.decode": 1, - "PATTERN.test": 1, - "ip.push": 1, - "xFF": 1, - "ip.join": 1 - }, - "Coq": { - "Inductive": 41, - "day": 9, - "Type": 86, - "|": 457, - "monday": 5, - "tuesday": 3, - "wednesday": 3, - "thursday": 3, - "friday": 3, - "saturday": 3, - "sunday": 2, - "day.": 1, - "Definition": 46, - "next_weekday": 3, - "(": 1248, - "d": 6, - ")": 1249, - "match": 70, - "with": 223, - "end.": 52, - "Example": 37, - "test_next_weekday": 1, - "tuesday.": 1, - "Proof.": 208, - "simpl.": 70, - "reflexivity.": 199, - "Qed.": 194, - "bool": 38, - "true": 68, - "false": 48, - "bool.": 1, - "negb": 10, - "b": 89, - "andb": 8, - "b1": 35, - "b2": 23, - "orb": 8, - "test_orb1": 1, - "true.": 16, - "test_orb2": 1, - "false.": 12, - "test_orb3": 1, - "test_orb4": 1, - "nandb": 5, - "end": 16, - "test_nandb1": 1, - "test_nandb2": 1, - "test_nandb3": 1, - "test_nandb4": 1, - "andb3": 5, - "b3": 2, - "test_andb31": 1, - "test_andb32": 1, - "test_andb33": 1, - "test_andb34": 1, - "Module": 11, - "Playground1.": 5, - "nat": 108, - "O": 98, - "S": 186, - "-": 508, - "nat.": 4, - "pred": 3, - "n": 369, - "minustwo": 1, - "Fixpoint": 36, - "evenb": 5, - "oddb": 5, - ".": 433, - "test_oddb1": 1, - "test_oddb2": 1, - "plus": 10, - "m": 201, - "mult": 3, - "minus": 3, - "_": 67, - "exp": 2, - "base": 3, - "power": 2, - "p": 81, - "factorial": 2, - "test_factorial1": 1, - "Notation": 39, - "x": 266, - "y": 116, - "at": 17, - "level": 11, - "left": 6, - "associativity": 7, - "nat_scope.": 3, - "beq_nat": 24, - "forall": 248, - "+": 227, - "n.": 44, - "Theorem": 115, - "plus_O_n": 1, - "intros": 258, - "plus_1_1": 1, - "mult_0_1": 1, - "*": 59, - "O.": 5, - "plus_id_example": 1, - "m.": 21, - "H.": 100, - "rewrite": 241, - "plus_id_exercise": 1, - "o": 25, - "o.": 4, - "H": 76, - "mult_0_plus": 1, - "plus_O_n.": 1, - "mult_1_plus": 1, - "plus_1_1.": 1, - "mult_1": 1, - "induction": 81, - "as": 77, - "[": 170, - "plus_1_neq_0": 1, - "destruct": 94, - "]": 173, - "Case": 51, - "IHn": 12, - "plus_comm": 3, - "plus_distr.": 1, - "beq_nat_refl": 3, - "plus_rearrange": 1, - "q": 15, - "q.": 2, - "assert": 68, - "plus_comm.": 3, - "plus_swap": 2, - "p.": 9, - "plus_assoc.": 4, - "H2": 12, - "H2.": 20, - "plus_swap.": 2, - "<->": 31, - "IHm": 2, - "reflexivity": 16, - "Qed": 23, - "mult_comm": 2, - "Proof": 12, - "0": 5, - "simpl": 116, - "mult_0_r.": 4, - "mult_distr": 1, - "mult_1_distr.": 1, - "mult_1.": 1, - "bad": 1, - "zero_nbeq_S": 1, - "andb_false_r": 1, - "plus_ble_compat_1": 1, - "ble_nat": 6, - "IHp.": 2, - "S_nbeq_0": 1, - "mult_1_1": 1, - "plus_0_r.": 1, - "all3_spec": 1, - "c": 70, - "c.": 5, - "b.": 14, - "Lemma": 51, - "mult_plus_1": 1, - "IHm.": 1, - "mult_mult": 1, - "IHn.": 3, - "mult_plus_1.": 1, - "mult_plus_distr_r": 1, - "mult_mult.": 3, - "H1": 18, - "plus_assoc": 1, - "H1.": 31, - "H3": 4, - "H3.": 5, - "mult_assoc": 1, - "mult_plus_distr_r.": 1, - "bin": 9, - "BO": 4, - "D": 9, - "M": 4, - "bin.": 1, - "incbin": 2, - "bin2un": 3, - "bin_comm": 1, - "End": 15, - "Require": 17, - "Import": 11, - "List": 2, - "Multiset": 2, - "PermutSetoid": 1, - "Relations": 2, - "Sorting.": 1, - "Section": 4, - "defs.": 2, - "Variable": 7, - "A": 113, - "Type.": 3, - "leA": 25, - "relation": 19, - "A.": 6, - "eqA": 29, - "Let": 8, - "gtA": 1, - "y.": 15, - "Hypothesis": 7, - "leA_dec": 4, - "{": 39, - "}": 35, - "eqA_dec": 26, - "leA_refl": 1, - "leA_trans": 2, - "z": 14, - "z.": 6, - "leA_antisym": 1, - "Hint": 9, - "Resolve": 5, - "leA_refl.": 1, - "Immediate": 1, - "leA_antisym.": 1, - "emptyBag": 4, - "EmptyBag": 2, - "singletonBag": 10, - "SingletonBag": 2, - "eqA_dec.": 2, - "Tree": 24, - "Tree_Leaf": 9, - "Tree_Node": 11, - "Tree.": 1, - "leA_Tree": 16, - "a": 207, - "t": 93, - "True": 1, - "T1": 25, - "T2": 20, - "leA_Tree_Leaf": 5, - "Tree_Leaf.": 1, - ";": 375, - "auto": 73, - "datatypes.": 47, - "leA_Tree_Node": 1, - "G": 6, - "is_heap": 18, - "Prop": 17, - "nil_is_heap": 5, - "node_is_heap": 7, - "invert_heap": 3, - "/": 41, - "T2.": 1, - "inversion": 104, - "is_heap_rect": 1, - "P": 32, - "T": 49, - "T.": 9, - "simple": 7, - "PG": 2, - "PD": 2, - "PN.": 2, - "elim": 21, - "H4": 7, - "intros.": 27, - "apply": 340, - "X0": 2, - "is_heap_rec": 1, - "Set": 4, - "X": 191, - "low_trans": 3, - "merge_lem": 3, - "l1": 89, - "l2": 73, - "list": 78, - "merge_exist": 5, - "l": 379, - "Sorted": 5, - "meq": 15, - "list_contents": 30, - "munion": 18, - "HdRel": 4, - "l2.": 8, - "Morphisms.": 2, - "Instance": 7, - "Equivalence": 2, - "@meq": 4, - "constructor": 6, - "red.": 1, - "meq_trans.": 1, - "Defined.": 1, - "Proper": 5, - "@munion": 1, - "now": 24, - "meq_congr.": 1, - "merge": 5, - "fix": 2, - "l1.": 5, - "rename": 2, - "into": 2, - "l.": 26, - "revert": 5, - "H0.": 24, - "a0": 15, - "l0": 7, - "Sorted_inv": 2, - "in": 221, - "H0": 16, - "clear": 7, - "merge0.": 2, - "using": 18, - "cons_sort": 2, - "cons_leA": 2, - "munion_ass.": 2, - "cons_leA.": 2, - "@HdRel_inv": 2, - "trivial": 15, - "merge0": 1, - "setoid_rewrite": 2, - "munion_ass": 1, - "munion_comm.": 2, - "repeat": 11, - "munion_comm": 1, - "contents": 12, - "multiset": 2, - "t1": 48, - "t2": 51, - "equiv_Tree": 1, - "insert_spec": 3, - "insert_exist": 4, - "insert": 2, - "unfold": 58, - "T0": 2, - "treesort_twist1": 1, - "T3": 2, - "HeapT3": 1, - "ConT3": 1, - "LeA.": 1, - "LeA": 1, - "treesort_twist2": 1, - "build_heap": 3, - "heap_exist": 3, - "list_to_heap": 2, - "nil": 46, - "exact": 4, - "nil_is_heap.": 1, - "i": 11, - "meq_trans": 10, - "meq_right": 2, - "meq_sym": 2, - "flat_spec": 3, - "flat_exist": 3, - "heap_to_list": 2, - "h": 14, - "s1": 20, - "i1": 15, - "m1": 1, - "s2": 2, - "i2": 10, - "m2.": 1, - "meq_congr": 1, - "munion_rotate.": 1, - "treesort": 1, - "&": 21, - "permutation": 43, - "intro": 27, - "permutation.": 1, - "exists": 60, - "Export": 10, - "SfLib.": 2, - "AExp.": 2, - "aexp": 30, - "ANum": 18, - "APlus": 14, - "AMinus": 9, - "AMult": 9, - "aexp.": 1, - "bexp": 22, - "BTrue": 10, - "BFalse": 11, - "BEq": 9, - "BLe": 9, - "BNot": 9, - "BAnd": 10, - "bexp.": 1, - "aeval": 46, - "e": 53, - "a1": 56, - "a2": 62, - "test_aeval1": 1, - "beval": 16, - "optimize_0plus": 15, - "e2": 54, - "e1": 58, - "test_optimize_0plus": 1, - "optimize_0plus_sound": 4, - "e.": 15, - "e1.": 1, - "SCase": 24, - "SSCase": 3, - "IHe2.": 10, - "IHe1.": 11, - "aexp_cases": 3, - "try": 17, - "IHe1": 6, - "IHe2": 6, - "optimize_0plus_all": 2, - "Tactic": 9, - "tactic": 9, - "first": 18, - "ident": 9, - "Case_aux": 38, - "optimize_0plus_all_sound": 1, - "bexp_cases": 4, - "optimize_and": 5, - "optimize_and_sound": 1, - "IHe": 2, - "aevalR_first_try.": 2, - "aevalR": 18, - "E_Anum": 1, - "E_APlus": 2, - "n1": 45, - "n2": 41, - "E_AMinus": 2, - "E_AMult": 2, - "Reserved": 4, - "E_ANum": 1, - "where": 6, - "bevalR": 11, - "E_BTrue": 1, - "E_BFalse": 1, - "E_BEq": 1, - "E_BLe": 1, - "E_BNot": 1, - "E_BAnd": 1, - "aeval_iff_aevalR": 9, - "split.": 17, - "subst": 7, - "generalize": 13, - "dependent": 6, - "IHa1": 1, - "IHa2": 1, - "beval_iff_bevalR": 1, - "*.": 110, - "subst.": 43, - "IHbevalR": 1, - "IHbevalR1": 1, - "IHbevalR2": 1, - "a.": 6, - "constructor.": 16, - "<": 76, - "remember": 12, - "IHa.": 1, - "IHa1.": 1, - "IHa2.": 1, - "silly_presburger_formula": 1, - "<=>": 12, - "3": 2, - "omega": 7, - "Id": 7, - "id": 7, - "id.": 1, - "beq_id": 14, - "id1": 2, - "id2": 2, - "beq_id_refl": 1, - "i.": 2, - "beq_nat_refl.": 1, - "beq_id_eq": 4, - "i2.": 8, - "i1.": 3, - "beq_nat_eq": 2, - "beq_id_false_not_eq": 1, - "C.": 3, - "n0": 5, - "beq_false_not_eq": 1, - "not_eq_beq_id_false": 1, - "not_eq_beq_false.": 1, - "beq_nat_sym": 2, - "AId": 4, - "com_cases": 1, - "SKIP": 5, - "IFB": 4, - "WHILE": 5, - "c1": 14, - "c2": 9, - "e3": 1, - "cl": 1, - "st": 113, - "E_IfTrue": 2, - "THEN": 3, - "ELSE": 3, - "FI": 3, - "E_WhileEnd": 2, - "DO": 4, - "END": 4, - "E_WhileLoop": 2, - "ceval_cases": 1, - "E_Skip": 1, - "E_Ass": 1, - "E_Seq": 1, - "E_IfFalse": 1, - "assignment": 1, - "command": 2, - "if": 10, - "st1": 2, - "IHi1": 3, - "Heqst1": 1, - "Hceval.": 4, - "Hceval": 2, - "assumption.": 61, - "bval": 2, - "ceval_step": 3, - "Some": 21, - "ceval_step_more": 7, - "x1.": 3, - "omega.": 7, - "x2.": 2, - "IHHce.": 2, - "%": 3, - "IHHce1.": 1, - "IHHce2.": 1, - "x0": 14, - "plus2": 1, - "nx": 3, - "Y": 38, - "ny": 2, - "XtimesYinZ": 1, - "Z": 11, - "ny.": 1, - "loop": 2, - "contra.": 19, - "loopdef.": 1, - "Heqloopdef.": 8, - "contra1.": 1, - "IHcontra2.": 1, - "no_whiles": 15, - "com": 5, - "ct": 2, - "cf": 2, - "no_Whiles": 10, - "noWhilesSKIP": 1, - "noWhilesAss": 1, - "noWhilesSeq": 1, - "noWhilesIf": 1, - "no_whiles_eqv": 1, - "noWhilesSKIP.": 1, - "noWhilesAss.": 1, - "noWhilesSeq.": 1, - "IHc1.": 2, - "auto.": 47, - "eauto": 10, - "andb_true_elim1": 4, - "IHc2.": 2, - "andb_true_elim2": 4, - "noWhilesIf.": 1, - "andb_true_intro.": 2, - "no_whiles_terminate": 1, - "state": 6, - "st.": 7, - "update": 2, - "IHc1": 2, - "IHc2": 2, - "H5.": 1, - "x1": 11, - "r": 11, - "r.": 3, - "symmetry": 4, - "Heqr.": 1, - "H4.": 2, - "s": 13, - "Heqr": 3, - "H8.": 1, - "H10": 1, - "assumption": 10, - "beval_short_circuit": 5, - "beval_short_circuit_eqv": 1, - "sinstr": 8, - "SPush": 8, - "SLoad": 6, - "SPlus": 10, - "SMinus": 11, - "SMult": 11, - "sinstr.": 1, - "s_execute": 21, - "stack": 7, - "prog": 2, - "cons": 26, - "al": 3, - "bl": 3, - "s_execute1": 1, - "empty_state": 2, - "s_execute2": 1, - "s_compile": 36, - "v": 28, - "s_compile1": 1, - "execute_theorem": 1, - "other": 20, - "other.": 4, - "app_ass.": 6, - "s_compile_correct": 1, - "app_nil_end.": 1, - "execute_theorem.": 1, - "Eqdep_dec.": 1, - "Arith.": 2, - "eq_rect_eq_nat": 2, - "Q": 3, - "eq_rect": 3, - "h.": 1, - "K_dec_set": 1, - "eq_nat_dec.": 1, - "Scheme": 1, - "le_ind": 1, - "replace": 4, - "le_n": 4, - "fun": 17, - "refl_equal": 4, - "pattern": 2, - "case": 2, - "trivial.": 14, - "contradiction": 8, - "le_Sn_n": 5, - "le_S": 6, - "Heq": 8, - "m0": 1, - "HeqS": 3, - "injection": 4, - "HeqS.": 2, - "eq_rect_eq_nat.": 1, - "IHp": 2, - "dep_pair_intro": 2, - "Hx": 20, - "Hy": 14, - "<=n),>": 1, - "x=": 1, - "exist": 7, - "Hy.": 3, - "Heq.": 6, - "le_uniqueness_proof": 1, - "Hy0": 1, - "card": 2, - "f": 108, - "card_interval": 1, - "<=n}>": 1, - "proj1_sig": 1, - "proj2_sig": 1, - "Hp": 5, - "Hq": 3, - "Hpq.": 1, - "Hmn.": 1, - "Hmn": 1, - "interval_dec": 1, - "left.": 3, - "dep_pair_intro.": 3, - "right.": 9, - "discriminate": 3, - "le_Sn_le": 2, - "eq_S.": 1, - "Hneq.": 2, - "card_inj_aux": 1, - "g": 6, - "False.": 1, - "Hfbound": 1, - "Hfinj": 1, - "Hgsurj.": 1, - "Hgsurj": 3, - "Hfx": 2, - "le_n_O_eq.": 2, - "Hfbound.": 2, - "Hx.": 5, - "le_lt_dec": 9, - "xSn": 21, - "then": 9, - "else": 9, - "is": 4, - "bounded": 1, - "injective": 6, - "Hlefx": 1, - "Hgefx": 1, - "Hlefy": 1, - "Hgefy": 1, - "Hfinj.": 3, - "sym_not_eq.": 2, - "Heqf.": 2, - "Hneqy.": 2, - "le_lt_trans": 2, - "le_O_n.": 2, - "le_neq_lt": 2, - "Hneqx.": 2, - "pred_inj.": 1, - "lt_O_neq": 2, - "neq_dep_intro": 2, - "inj_restrict": 1, - "Heqf": 1, - "surjective": 1, - "Hlep.": 3, - "Hle": 1, - "Hlt": 3, - "Hfsurj": 2, - "le_n_S": 1, - "Hlep": 4, - "Hneq": 7, - "Heqx.": 2, - "Heqx": 4, - "Hle.": 1, - "le_not_lt": 1, - "lt_trans": 4, - "lt_n_Sn.": 1, - "Hlt.": 1, - "lt_irrefl": 2, - "lt_le_trans": 1, - "pose": 2, - "let": 3, - "Hneqx": 1, - "Hneqy": 1, - "Heqg": 1, - "Hdec": 3, - "Heqy": 1, - "Hginj": 1, - "HSnx.": 1, - "HSnx": 1, - "interval_discr": 1, - "<=m}>": 1, - "card_inj": 1, - "interval_dec.": 1, - "card_interval.": 2, - "Basics.": 2, - "NatList.": 2, - "natprod": 5, - "pair": 7, - "natprod.": 1, - "fst": 3, - "snd": 3, - "swap_pair": 1, - "surjective_pairing": 1, - "count": 7, - "remove_one": 3, - "test_remove_one1": 1, - "remove_all": 2, - "bag": 3, - "app_ass": 1, - "l3": 12, - "natlist": 7, - "l3.": 1, - "remove_decreases_count": 1, - "s.": 4, - "ble_n_Sn.": 1, - "IHs.": 2, - "natoption": 5, - "None": 9, - "natoption.": 1, - "index": 3, - "option_elim": 2, - "hd_opt": 8, - "test_hd_opt1": 2, - "None.": 2, - "test_hd_opt2": 2, - "option_elim_hd": 1, - "head": 1, - "beq_natlist": 5, - "v1": 7, - "r1": 2, - "v2": 2, - "r2": 2, - "test_beq_natlist1": 1, - "test_beq_natlist2": 1, - "beq_natlist_refl": 1, - "IHl.": 7, - "silly1": 1, - "eq1": 6, - "eq2.": 9, - "eq2": 1, - "silly2a": 1, - "eq1.": 5, - "silly_ex": 1, - "silly3": 1, - "symmetry.": 2, - "rev_exercise": 1, - "rev_involutive.": 1, - "Setoid": 1, - "Compare_dec": 1, - "ListNotations.": 1, - "Implicit": 15, - "Arguments.": 2, - "Permutation.": 2, - "Permutation": 38, - "perm_nil": 1, - "perm_skip": 1, - "Local": 7, - "Constructors": 3, - "Permutation_nil": 2, - "HF.": 3, - "@nil": 1, - "HF": 2, - "||": 1, - "Permutation_nil_cons": 1, - "discriminate.": 2, - "Permutation_refl": 1, - "Permutation_sym": 1, - "Hperm": 7, - "perm_trans": 1, - "Permutation_trans": 4, - "Logic.eq": 2, - "@Permutation": 5, - "iff": 1, - "@In": 1, - "red": 6, - "Permutation_in.": 2, - "Permutation_app_tail": 2, - "tl": 8, - "eapply": 8, - "Permutation_app_head": 2, - "app_comm_cons": 5, - "Permutation_app": 3, - "Hpermmm": 1, - "idtac": 1, - "Global": 5, - "@app": 1, - "Permutation_app.": 1, - "Permutation_add_inside": 1, - "Permutation_cons_append": 1, - "IHl": 8, - "Permutation_cons_append.": 3, - "Permutation_app_comm": 3, - "app_nil_r": 1, - "app_assoc": 2, - "Permutation_cons_app": 3, - "Permutation_middle": 2, - "Permutation_rev": 3, - "rev": 7, - "1": 1, - "@rev": 1, - "2": 1, - "Permutation_length": 2, - "length": 21, - "transitivity": 4, - "@length": 1, - "Permutation_length.": 1, - "Permutation_ind_bis": 2, - "Hnil": 1, - "Hskip": 3, - "Hswap": 2, - "Htrans.": 1, - "Htrans": 1, - "eauto.": 7, - "Ltac": 1, - "break_list": 5, - "Permutation_nil_app_cons": 1, - "l4": 3, - "P.": 5, - "IH": 3, - "Permutation_middle.": 3, - "perm_swap.": 2, - "perm_swap": 1, - "eq_refl": 2, - "In_split": 1, - "Permutation_app_inv": 1, - "NoDup": 4, - "incl": 3, - "N.": 1, - "E": 7, - "Ha": 6, - "In": 6, - "N": 1, - "Hal": 1, - "Hl": 1, - "exfalso.": 1, - "NoDup_Permutation_bis": 2, - "inversion_clear": 6, - "intuition.": 2, - "Permutation_NoDup": 1, - "Permutation_map": 1, - "Hf": 15, - "injective_bounded_surjective": 1, - "set": 1, - "seq": 2, - "map": 4, - "x.": 3, - "in_map_iff.": 2, - "in_seq": 4, - "arith": 4, - "NoDup_cardinal_incl": 1, - "injective_map_NoDup": 2, - "seq_NoDup": 1, - "map_length": 1, - "by": 7, - "in_map_iff": 1, - "split": 14, - "nat_bijection_Permutation": 1, - "BD.": 1, - "seq_NoDup.": 1, - "map_length.": 1, - "Injection": 1, - "Permutation_alt": 1, - "Alternative": 1, - "characterization": 1, - "of": 4, - "via": 1, - "nth_error": 7, - "and": 1, - "nth": 2, - "adapt": 4, - "adapt_injective": 1, - "adapt.": 2, - "EQ.": 2, - "LE": 11, - "LT": 14, - "eq_add_S": 2, - "Hf.": 1, - "Lt.le_lt_or_eq": 3, - "LE.": 3, - "EQ": 8, - "lt": 3, - "LT.": 5, - "Lt.S_pred": 3, - "Lt.lt_not_le": 2, - "adapt_ok": 2, - "nth_error_app1": 1, - "nth_error_app2": 1, - "arith.": 8, - "Minus.minus_Sn_m": 1, - "Permutation_nth_error": 2, - "IHP": 2, - "IHP2": 1, - "Hg": 2, - "E.": 2, - "L12": 2, - "app_length.": 2, - "plus_n_Sm.": 1, - "adapt_injective.": 1, - "nth_error_None": 4, - "Hn": 1, - "Hf2": 1, - "Hf3": 2, - "Lt.le_or_lt": 1, - "Lt.lt_irrefl": 2, - "Lt.lt_le_trans": 2, - "Hf1": 1, - "do": 4, - "congruence.": 1, - "Permutation_alt.": 1, - "Permutation_app_swap": 1, - "only": 3, - "parsing": 3, - "Omega": 1, - "SetoidList.": 1, - "nil.": 2, - "..": 4, - "Permut.": 1, - "eqA_equiv": 1, - "eqA.": 1, - "list_contents_app": 5, - "permut_refl": 1, - "permut_sym": 4, - "permut_trans": 5, - "permut_cons_eq": 3, - "meq_left": 1, - "meq_singleton": 1, - "permut_cons": 5, - "permut_app": 1, - "specialize": 6, - "a0.": 1, - "decide": 1, - "permut_add_inside_eq": 1, - "permut_add_cons_inside": 3, - "permut_add_inside": 1, - "permut_middle": 1, - "permut_refl.": 5, - "permut_sym_app": 1, - "permut_rev": 1, - "permut_add_cons_inside.": 1, - "app_nil_end": 1, - "results": 1, - "permut_conv_inv": 1, - "plus_reg_l.": 1, - "permut_app_inv1": 1, - "list_contents_app.": 1, - "plus_reg_l": 1, - "multiplicity": 6, - "Fact": 3, - "if_eqA_then": 1, - "B": 6, - "if_eqA_refl": 3, - "decide_left": 1, - "if_eqA": 1, - "contradict": 3, - "A1": 2, - "if_eqA_rewrite_r": 1, - "A2": 4, - "Hxx": 1, - "multiplicity_InA": 4, - "InA": 8, - "multiplicity_InA_O": 2, - "multiplicity_InA_S": 1, - "multiplicity_NoDupA": 1, - "NoDupA": 3, - "NEQ": 1, - "compatible": 1, - "permut_InA_InA": 3, - "multiplicity_InA.": 1, - "meq.": 2, - "permut_cons_InA": 3, - "permut_nil": 3, - "Abs": 2, - "permut_length_1": 1, - "permut_length_2": 1, - "permut_length_1.": 2, - "@if_eqA_rewrite_l": 2, - "permut_length": 1, - "InA_split": 1, - "h2": 1, - "plus_n_Sm": 1, - "f_equal.": 1, - "app_length": 1, - "IHl1": 1, - "permut_remove_hd": 1, - "f_equal": 1, - "if_eqA_rewrite_l": 1, - "NoDupA_equivlistA_permut": 1, - "Equivalence_Reflexive.": 1, - "change": 1, - "Equivalence_Reflexive": 1, - "Forall2": 2, - "permutation_Permutation": 1, - "Forall2.": 1, - "proof": 1, - "IHA": 2, - "Forall2_app_inv_r": 1, - "Hl1": 1, - "Hl2": 1, - "Forall2_app": 1, - "Forall2_cons": 1, - "Permutation_impl_permutation": 1, - "permut_eqA": 1, - "Permut_permut.": 1, - "permut_right": 1, - "permut_tran": 1, - "Lists.": 1, - "X.": 4, - "app": 5, - "snoc": 9, - "Arguments": 11, - "list123": 1, - "right": 2, - "test_repeat1": 1, - "nil_app": 1, - "rev_snoc": 1, - "snoc_with_append": 1, - "v.": 1, - "IHl1.": 1, - "prod": 3, - "Y.": 1, - "type_scope.": 1, - "combine": 3, - "lx": 4, - "ly": 4, - "tx": 2, - "ty": 7, - "tp": 2, - "option": 6, - "xs": 7, - "plus3": 2, - "prod_curry": 3, - "prod_uncurry": 3, - "uncurry_uncurry": 1, - "curry_uncurry": 1, - "filter": 3, - "test": 4, - "countoddmembers": 1, - "k": 7, - "fmostlytrue": 5, - "override": 5, - "ftrue": 1, - "override_example1": 1, - "override_example2": 1, - "override_example3": 1, - "override_example4": 1, - "override_example": 1, - "constfun": 1, - "unfold_example_bad": 1, - "plus3.": 1, - "override_eq": 1, - "f.": 1, - "override.": 2, - "override_neq": 1, - "x2": 3, - "k1": 5, - "k2": 4, - "eq.": 11, - "silly4": 1, - "silly5": 1, - "sillyex1": 1, - "j": 6, - "j.": 1, - "silly6": 1, - "silly7": 1, - "sillyex2": 1, - "assertion": 3, - "Hl.": 1, - "eq": 4, - "beq_nat_O_l": 1, - "beq_nat_O_r": 1, - "double_injective": 1, - "double": 2, - "fold_map": 2, - "fold": 1, - "total": 2, - "fold_map_correct": 1, - "fold_map.": 1, - "forallb": 4, - "existsb": 3, - "existsb2": 2, - "existsb_correct": 1, - "existsb2.": 1, - "index_okx": 1, - "mumble": 5, - "mumble.": 1, - "grumble": 3, - "Logic.": 1, - "Prop.": 1, - "partial_function": 6, - "R": 54, - "y1": 6, - "y2": 5, - "y2.": 3, - "next_nat_partial_function": 1, - "next_nat.": 1, - "partial_function.": 5, - "Q.": 2, - "le_not_a_partial_function": 1, - "le": 1, - "not.": 3, - "Nonsense.": 4, - "le_n.": 6, - "le_S.": 4, - "total_relation_not_partial_function": 1, - "total_relation": 1, - "total_relation1.": 2, - "empty_relation_not_partial_funcion": 1, - "empty_relation.": 1, - "reflexive": 5, - "le_reflexive": 1, - "le.": 4, - "reflexive.": 1, - "transitive": 8, - "le_trans": 4, - "Hnm": 3, - "Hmo.": 4, - "Hnm.": 3, - "IHHmo.": 1, - "lt.": 2, - "transitive.": 1, - "Hm": 1, - "le_S_n": 2, - "Sn_le_Sm__n_le_m.": 1, - "not": 1, - "TODO": 1, - "Hmo": 1, - "symmetric": 2, - "antisymmetric": 3, - "le_antisymmetric": 1, - "Sn_le_Sm__n_le_m": 2, - "IHb": 1, - "equivalence": 1, - "order": 2, - "preorder": 1, - "le_order": 1, - "order.": 1, - "le_reflexive.": 1, - "le_antisymmetric.": 1, - "le_trans.": 1, - "clos_refl_trans": 8, - "rt_step": 1, - "rt_refl": 1, - "rt_trans": 3, - "next_nat_closure_is_le": 1, - "next_nat": 1, - "rt_refl.": 2, - "IHle.": 1, - "rt_step.": 2, - "nn.": 1, - "IHclos_refl_trans1.": 2, - "IHclos_refl_trans2.": 2, - "refl_step_closure": 11, - "rsc_refl": 1, - "rsc_step": 4, - "rsc_R": 2, - "rsc_refl.": 4, - "rsc_trans": 4, - "IHrefl_step_closure": 1, - "rtc_rsc_coincide": 1, - "IHrefl_step_closure.": 1, - "Imp.": 1, - "Relations.": 1, - "tm": 43, - "tm_const": 45, - "tm_plus": 30, - "tm.": 3, - "SimpleArith0.": 2, - "eval": 8, - "SimpleArith1.": 2, - "E_Const": 2, - "E_Plus": 2, - "test_step_1": 1, - "ST_Plus1.": 2, - "ST_PlusConstConst.": 3, - "test_step_2": 1, - "ST_Plus2.": 2, - "step_deterministic": 1, - "step.": 3, - "Hy1": 2, - "Hy2.": 2, - "step_cases": 4, - "Hy2": 3, - "SCase.": 3, - "Hy1.": 5, - "IHHy1": 2, - "SimpleArith2.": 1, - "value": 25, - "v_const": 4, - "step": 9, - "ST_PlusConstConst": 3, - "ST_Plus1": 2, - "strong_progress": 2, - "value_not_same_as_normal_form": 2, - "normal_form": 3, - "t.": 4, - "normal_form.": 2, - "v_funny.": 1, - "Temp1.": 1, - "Temp2.": 1, - "ST_Funny": 1, - "Temp3.": 1, - "Temp4.": 2, - "tm_true": 8, - "tm_false": 5, - "tm_if": 10, - "v_true": 1, - "v_false": 1, - "tm_false.": 3, - "ST_IfTrue": 1, - "ST_IfFalse": 1, - "ST_If": 1, - "t3": 6, - "bool_step_prop4": 1, - "bool_step_prop4_holds": 1, - "bool_step_prop4.": 2, - "ST_ShortCut.": 1, - "IHt1.": 1, - "t2.": 4, - "t3.": 2, - "ST_If.": 2, - "Temp5.": 1, - "stepmany": 4, - "normalizing": 1, - "IHt2": 3, - "H11": 2, - "H12": 2, - "H21": 3, - "H22": 2, - "nf_same_as_value": 3, - "H12.": 1, - "H22.": 1, - "H11.": 1, - "stepmany_congr_1": 1, - "stepmany_congr2": 1, - "eval__value": 1, - "HE.": 1, - "eval_cases": 1, - "HE": 1, - "v_const.": 1, - "Sorted.": 1, - "Mergesort.": 1, - "STLC.": 1, - "ty_Bool": 10, - "ty_arrow": 7, - "ty.": 2, - "tm_var": 6, - "tm_app": 7, - "tm_abs": 9, - "idB": 2, - "idBB": 2, - "idBBBB": 2, - "v_abs": 1, - "t_true": 1, - "t_false": 1, - "value.": 1, - "ST_App2": 1, - "step_example3": 1, - "idB.": 1, - "rsc_step.": 2, - "ST_App1.": 2, - "ST_AppAbs.": 3, - "v_abs.": 2, - "context": 1, - "partial_map": 4, - "Context.": 1, - "empty": 3, - "extend": 1, - "Gamma": 10, - "has_type": 4, - "appears_free_in": 1, - "S.": 1, - "HT": 1, - "T_Var.": 1, - "extend_neq": 1, - "Heqe.": 3, - "T_Abs.": 1, - "context_invariance...": 2, - "Hafi.": 2, - "extend.": 2, - "IHt.": 1, - "Coiso1.": 2, - "Coiso2.": 3, - "HeqCoiso1.": 1, - "HeqCoiso2.": 1, - "beq_id_false_not_eq.": 1, - "ex_falso_quodlibet.": 1, - "preservation": 1, - "HT.": 1, - "substitution_preserves_typing": 1, - "T11.": 4, - "HT1.": 1, - "T_App": 2, - "IHHT1.": 1, - "IHHT2.": 1, - "tm_cases": 1, - "Ht": 1, - "Ht.": 3, - "IHt1": 2, - "T11": 2, - "ST_App2.": 1, - "ty_Bool.": 1, - "IHt3": 1, - "ST_IfTrue.": 1, - "ST_IfFalse.": 1, - "types_unique": 1, - "T12": 2, - "IHhas_type.": 1, - "IHhas_type1.": 1, - "IHhas_type2.": 1 - }, - "Creole": { - "Creole": 6, - "is": 3, - "a": 2, - "-": 5, - "to": 2, - "HTML": 1, - "converter": 2, - "for": 1, - "the": 5, - "lightweight": 1, - "markup": 1, - "language": 1, - "(": 5, - "http": 4, - "//wikicreole.org/": 1, - ")": 5, - ".": 1, - "Github": 1, - "uses": 1, - "this": 1, - "render": 1, - "*.creole": 1, - "files.": 1, - "Project": 1, - "page": 1, - "on": 2, - "github": 1, - "*": 5, - "//github.com/minad/creole": 1, - "Travis": 1, - "CI": 1, - "https": 1, - "//travis": 1, - "ci.org/minad/creole": 1, - "RDOC": 1, - "//rdoc.info/projects/minad/creole": 1, - "INSTALLATION": 1, - "{": 6, - "gem": 1, - "install": 1, - "creole": 1, - "}": 6, - "SYNOPSIS": 1, - "require": 1, - "html": 1, - "Creole.creolize": 1, - "BUGS": 1, - "If": 1, - "you": 1, - "found": 1, - "bug": 1, - "please": 1, - "report": 1, - "it": 1, - "at": 1, - "project": 1, - "s": 1, - "tracker": 1, - "GitHub": 1, - "//github.com/minad/creole/issues": 1, - "AUTHORS": 1, - "Lars": 2, - "Christensen": 2, - "larsch": 1, - "Daniel": 2, - "Mendler": 1, - "minad": 1, - "LICENSE": 1, - "Copyright": 1, - "c": 1, - "Mendler.": 1, - "It": 1, - "free": 1, - "software": 1, - "and": 1, - "may": 1, - "be": 1, - "redistributed": 1, - "under": 1, - "terms": 1, + "**p": 1, + "rb_define_class": 1, + "F000": 2, + "server.aof_rewrite_scheduled": 4, + "zfree": 2, + "wglAllocateMemoryNV": 1, + "PyString_CheckExact": 2, + "its": 1, + "saveparam": 1, + "PyInstanceMethod_New": 1, + "wglGetGPUInfoAMD": 1, + "WGL_GENLOCK_SOURCE_EXTERNAL_TTL_I3D": 1, + "cmd_branch": 1, + "is_empty": 4, + "*numP": 1, + "zmalloc_get_rss": 1, + "__Pyx_GetItemInt_Tuple": 1, + "use": 1, + "server.maxclients": 6, + "slots": 2, + "numDevices": 1, + "__WGLEW_NV_gpu_affinity": 2, "specified": 1, - "in": 1, - "README": 1, - "file": 1, - "of": 1, - "Ruby": 1, - "distribution.": 1 - }, - "CSS": { - ".clearfix": 8, - "{": 1661, - "*zoom": 48, - ";": 4219, - "}": 1705, - "before": 48, - "after": 96, - "display": 135, - "table": 44, - "content": 66, - "line": 97, - "-": 8839, - "height": 141, - "clear": 32, - "both": 30, - ".hide": 12, - "text": 129, - "font": 142, - "/0": 2, - "a": 268, - "color": 711, - "transparent": 148, - "shadow": 254, - "none": 128, - "background": 770, - "border": 912, - ".input": 216, - "block": 133, - "level": 2, - "width": 215, - "%": 366, - "min": 14, - "px": 2535, - "webkit": 364, - "box": 264, - "sizing": 27, - "moz": 316, - "article": 2, - "aside": 2, - "details": 2, - "figcaption": 2, - "figure": 2, - "footer": 2, - "header": 12, - "hgroup": 2, - "nav": 2, - "section": 2, - "audio": 4, - "canvas": 2, - "video": 4, - "inline": 116, - "*display": 20, - "not": 6, - "(": 748, - "[": 384, - "controls": 2, - "]": 384, - ")": 748, - "html": 4, - "size": 104, - "adjust": 6, - "ms": 13, - "focus": 232, - "outline": 30, - "thin": 8, - "dotted": 10, - "#333": 6, - "auto": 50, - "ring": 6, - "offset": 6, - "hover": 144, - "active": 46, - "sub": 4, - "sup": 4, - "position": 342, - "relative": 18, - "vertical": 56, - "align": 72, - "baseline": 4, - "top": 376, - "em": 6, - "bottom": 309, - "img": 14, - "max": 18, - "middle": 20, - "interpolation": 2, - "mode": 2, - "bicubic": 2, - "#map_canvas": 2, - ".google": 2, - "maps": 2, - "button": 18, - "input": 336, - "select": 90, - "textarea": 76, - "margin": 424, - "*overflow": 3, - "visible": 8, - "normal": 18, - "inner": 37, - "padding": 174, - "type": 174, - "appearance": 6, - "cursor": 30, - "pointer": 12, - "label": 20, - "textfield": 2, - "search": 66, - "decoration": 33, - "cancel": 2, - "overflow": 21, - "@media": 2, - "print": 4, - "*": 2, - "important": 18, - "#000": 2, - "visited": 2, - "underline": 6, - "href": 28, - "attr": 4, - "abbr": 6, - "title": 10, - ".ir": 2, - "pre": 16, - "blockquote": 14, - "solid": 93, - "#999": 6, - "page": 6, - "break": 12, - "inside": 4, - "avoid": 6, - "thead": 38, - "group": 120, - "tr": 92, - "@page": 2, - "cm": 2, - "p": 14, - "h2": 14, - "h3": 14, - "orphans": 2, - "widows": 2, - "body": 3, - "family": 10, - "Helvetica": 6, - "Arial": 6, - "sans": 6, - "serif": 6, - "#333333": 26, - "#ffffff": 136, - "#0088cc": 24, - "#005580": 8, - ".img": 6, - "rounded": 2, - "radius": 534, - "polaroid": 2, - "#fff": 10, - "#ccc": 13, - "rgba": 409, - "circle": 18, - ".row": 126, - "left": 489, - "class*": 100, - "float": 84, - ".container": 32, - ".navbar": 332, - "static": 14, - "fixed": 36, - ".span12": 4, - ".span11": 4, - ".span10": 4, - ".span9": 4, - ".span8": 4, - ".span7": 4, - ".span6": 4, - ".span5": 4, - ".span4": 4, - ".span3": 4, - ".span2": 4, - ".span1": 4, - ".offset12": 6, - ".offset11": 6, - ".offset10": 6, - ".offset9": 6, - ".offset8": 6, - ".offset7": 6, - ".offset6": 6, - ".offset5": 6, - ".offset4": 6, - ".offset3": 6, - ".offset2": 6, - ".offset1": 6, - "fluid": 126, - "*margin": 70, - "first": 179, - "child": 301, - ".controls": 28, - "row": 20, - "+": 105, - "*width": 26, - ".pull": 16, - "right": 258, - ".lead": 2, - "weight": 28, - "small": 66, - "strong": 2, - "bold": 14, - "style": 21, - "italic": 4, - "cite": 2, - ".muted": 2, - "#999999": 50, - "a.muted": 4, - "#808080": 2, - ".text": 14, - "warning": 33, - "#c09853": 14, - "a.text": 16, - "#a47e3c": 4, - "error": 10, - "#b94a48": 20, - "#953b39": 6, - "info": 37, - "#3a87ad": 18, - "#2d6987": 6, - "success": 35, - "#468847": 18, - "#356635": 6, - "center": 17, - "h1": 11, - "h4": 20, - "h5": 6, - "h6": 6, - "inherit": 8, - "rendering": 2, - "optimizelegibility": 2, - ".page": 2, - "#eeeeee": 31, - "ul": 84, - "ol": 10, - "li": 205, - "ul.unstyled": 2, - "ol.unstyled": 2, - "list": 44, - "ul.inline": 4, - "ol.inline": 4, - "dl": 2, - "dt": 6, - "dd": 6, - ".dl": 12, - "horizontal": 60, - "hidden": 9, - "ellipsis": 2, - "white": 25, - "space": 23, - "nowrap": 14, - "hr": 2, - "data": 2, - "original": 2, - "help": 2, - "abbr.initialism": 2, - "transform": 4, - "uppercase": 4, - "blockquote.pull": 10, - "q": 4, - "address": 2, + "new_tree": 2, + "readonly": 1, + "sdsempty": 8, + "WGLEW_NV_render_depth_texture": 1, + "srcZ": 1, + "i_ARG4_": 56, + "i_LEFTSTR_": 6, + "notifier_block": 3, + "shared.cone": 1, + "cmd_merge_tree": 1, + "WGL_CONTEXT_FLAGS_ARB": 1, + "microseconds/c": 1, + "i_SELECT_RF_STRING_COUNT0": 1, + "git_diff_options": 7, + "WGL_ARB_multisample": 2, + "rfString_Create_cp": 2, + "__weak": 4, + "mkd_toc": 1, + "RE_UTF16_INVALID_SEQUENCE": 20, + "ref_name": 2, + "REFU_USTRING_H": 2, + "__Pyx_c_conj": 3, + "fds": 20, + "divisor": 3, + "wglCreateAffinityDCNV": 1, + "__Pyx_Buffer": 2, + "yajl_bs_push": 1, + "CR": 18, + "zero": 2, + "hObject": 2, + "CYTHON_REFNANNY": 3, + "new_iter": 13, + "One": 1, + "int": 446, + "field": 1, + "kw_name": 1, + "WGLEW_EXT_framebuffer_sRGB": 1, + "s_header_field": 4, + "zremCommand": 1, + "setrlimit": 1, + "*de": 2, + "__pyx_t_5numpy_float64_t": 4, + "alias_command": 4, + "i_DESTINATION_": 2, + "WGLEW_ARB_multisample": 1, + "optionsP": 11, + "PFNWGLSWAPLAYERBUFFERSMSCOMLPROC": 2, + "__pyx_PyFloat_AsDouble": 12, + "cmd_show_branch": 1, + "__wglewSetPbufferAttribARB": 2, + "RE_FILE_EOF": 22, + "__PYX_BUF_FLAGS_PACKED_STRUCT": 1, + "*parents": 4, + "startCharacterPos_": 4, + "__Pyx_RaiseDoubleKeywordsError": 1, + "cpumask_copy": 3, + "utf8ByteLength": 34, + "/server.loading_loaded_bytes": 1, + "target_sbc": 1, + "rfString_After": 4, + "#n": 1, + ".refcount": 1, + "pipes": 23, + "*use_noid": 1, + ".real": 3, + "_USE_MATH_DEFINES": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_3Log_loss": 1, + "lpushxCommand": 1, + "INT64": 18, + "wglGetVideoInfoNV": 1, + "WGL_TEXTURE_FLOAT_RGBA_NV": 1, + "i_NPSELECT_RF_STRING_FIND0": 1, + "*values": 1, + "__Pyx_TypeInfo*": 2, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Regression": 1, + "s_res_H": 3, + "cpu_online_bits": 5, + "option_count": 1, + "append_merge_tag_headers": 1, + "git__iswildcard": 1, + "_entry": 1, + "CALLBACK_DATA_NOADVANCE": 6, + "idle": 4, + "shared.lpop": 1, + "dictListDestructor": 2, + "INT32*": 1, + "BOOL*": 3, + "PyInt_Type": 1, + "marked": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Huber_2loss": 1, + "*path": 2, + "do": 21, + "dbDictType": 2, + "persistCommand": 1, + "git_index_entry": 8, + "*lookup_commit_or_die": 2, + "PyType_Modified": 1, + "__WGLEW_EXT_display_color_table": 2, + "cpu_down": 2, + "REDIS_REPL_ONLINE": 1, + "UV_PROCESS": 1, + "*denominator": 1, + "PFNWGLSENDPBUFFERTOVIDEONVPROC": 2, + "PyIntObject": 1, + "__Pyx_StructField*": 1, + "defvalue": 2, + "HPE_CLOSED_CONNECTION": 1, + "s_req_method": 4, + "LOG_LOCAL0": 1, + "shared.pmessagebulk": 1, + "zsetDictType": 1, + "uv__chld": 2, + "__wglewJoinSwapGroupNV": 2, + "mark": 3, + "INCREF": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_3Log_4__reduce__": 1, + "": 1, + "redisAsciiArt": 2, + "server.watchdog_period": 3, + "": 1, + "C6": 1, + "REDIS_MONITOR": 1, + "RUSAGE_CHILDREN": 1, + "retval": 3, + "dictGetRandomKey": 4, + "ap": 4, + "i_LIMSELECT_RF_STRING_AFTERV0": 1, + "S_ISFIFO": 1, + "slaveofCommand": 2, + "standard": 1, + "server.aof_filename": 3, + "HVIDEOINPUTDEVICENV": 5, + "pos_args": 12, + "__wglewGenlockSourceEdgeI3D": 2, + "__Pyx_PyUnicode_GET_LENGTH": 2, + "header_value_mark": 2, + "rb_define_method": 2, + "occurs": 1, + "WGL_IMAGE_BUFFER_LOCK_I3D": 1, + "__pyx_k__q": 1, + "rfString_PruneMiddleF": 2, + "need": 5, + "*ver_major": 2, + "pubsub_channels": 2, + "UV_STREAM_WRITABLE": 2, + "WGL_ARB_create_context_robustness": 2, + "ev_child_init": 1, + "new_prefix": 2, + "performs": 1, + "wglDXRegisterObjectNV": 1, + "creates": 1, + "option": 9, + "git_oid_iszero": 2, + "or": 1, + "*new_oid": 1, + "bytesToHuman": 3, + "REDIS_ERR": 5, + "getrlimit": 1, + "exitcode": 3, + "dictEncObjHash": 4, + "rpoplpushCommand": 1, + "__wglewDXSetResourceShareHandleNV": 2, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_LossFunction": 15, + "**value": 1, + "ERROR_INVALID_VERSION_ARB": 1, + "__wglewGenlockSourceDelayI3D": 2, + "s_message_done": 3, + "REDIS_MULTI": 1, + "__wglewGetGenlockSampleRateI3D": 2, + "__inline": 1, + "git_pool_init": 2, + ".name": 1, + "__pyx_k__alpha": 1, + "CMIT_FMT_RAW": 1, + "cmd_fetch_pack": 1, + "ascii_logo": 1, + "rfUTILS_Endianess": 24, + "UF_QUERY": 2, + "REDIS_SERVERPORT": 1, + "rewriteAppendOnlyFileBackground": 2, + "git_iterator_for_tree_range": 4, + "i_SELECT_RF_STRING_INIT0": 1, + "RE_STRING_INIT_FAILURE": 8, + "wglDXOpenDeviceNV": 1, + "__Pyx_PyInt_AsSignedLongLong": 1, + "__pyx_k__is_hinge": 1, + "cabs": 1, + "cmd_pack_objects": 1, + "s_req_first_http_major": 3, + "listNodeValue": 3, + "HTTP_PARSER_DEBUG": 4, + "PFNWGLDXUNREGISTEROBJECTNVPROC": 2, + "size_t": 52, + "*after_subject": 1, + "tokens": 5, + "tv.tv_sec": 4, + "B3": 1, + "PyUnicode_GET_LENGTH": 1, + "text": 22, + "act.sa_flags": 2, + "server.repl_transfer_left": 1, + "is": 17, + "_OPENMP": 1, + "clusterNode": 1, + "server.rdb_checksum": 1, + "uv__cloexec": 4, + "__wglewDestroyImageBufferI3D": 2, + "server.saveparamslen": 3, + "": 4, + "WGL_ACCUM_BITS_ARB": 1, + "i_rfString_After": 5, + "PyString_AS_STRING": 1, + "is_descendant_of": 1, + "cpu_possible": 1, + "i_rfLMSX_WRAP10": 2, + "cmd_notes": 1, + "git_oid": 7, + "fgetc": 9, + "*__pyx_n_s__sys": 1, + "added": 1, + "WGL_ACCUM_BLUE_BITS_ARB": 1, + "__pyx_k__ValueError": 1, + "cmd_merge_index": 1, + "cpu_hotplug.active_writer": 6, + "substring": 5, + "utf": 1, + "space": 4, + "c_ru.ru_utime.tv_sec": 1, + "WGL_GENLOCK_SOURCE_EDGE_FALLING_I3D": 1, + "REDIS_CMD_WRITE": 2, + "rfString_ToCstr": 2, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_13ModifiedHuber_2dloss": 1, + "rfString_Before": 3, + "fline": 4, + "HPE_UNKNOWN": 1, + "__GNUC_PATCHLEVEL__": 1, + "now": 5, + "l2": 3, + "MERGE": 2, + "*__pyx_int_15": 1, + "i_LIMSELECT_RF_STRING_BEFOREV0": 1, + "i_SELECT_RF_STRING_AFTERV15": 1, + "*filename": 2, + "__Pyx_PyIndex_AsSsize_t": 1, + "*n": 1, + "PFNWGLGETVIDEOINFONVPROC": 2, + "wglSetGammaTableI3D": 1, + "limit.rlim_max": 1, + "server.repl_state": 6, + "UV_PROCESS_SETGID": 2, + "diffcaps": 13, + "val": 20, + "yajl_lex_realloc": 1, + "git_config_maybe_bool": 1, + "cmd_index_pack": 1, + "PFNWGLGETDIGITALVIDEOPARAMETERSI3DPROC": 2, + "*eofReached": 14, + "WGL_RED_BITS_EXT": 1, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_ModifiedHuber": 5, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_LossFunction": 1, + "__WGLEW_EXT_pixel_format_packed_float": 2, + "server.db": 23, + "*o1": 2, + "i_SELECT_RF_STRING_BEFOREV5": 1, + "callbacks": 3, + "__pyx_L4_argument_unpacking_done": 6, + "<0)>": 1, + "tv": 8, + "flushdbCommand": 1, + "": 1, + "WGL_NV_swap_group": 2, + "PFNWGLDISABLEFRAMELOCKI3DPROC": 2, + "i_SELECT_RF_STRING_BEFOREV17": 1, + "WGL_SWAP_LAYER_BUFFERS_ARB": 1, + "PFNWGLGETPBUFFERDCARBPROC": 2, + "REDIS_HASH_MAX_ZIPLIST_ENTRIES": 1, + "ev_child*": 1, + "__WGLEW_NV_vertex_array_range": 2, + "PyBUF_ANY_CONTIGUOUS": 1, + "__wglewChoosePixelFormatEXT": 2, + "__Pyx_StructField_*": 1, + "DL_EXPORT": 2, + "message_begin": 3, + "rdbLoad": 1, + "__wglewCreateAffinityDCNV": 2, + "__Pyx_CodeObjectCacheEntry": 1, + "npy_double": 2, + "REDIS_AOF_REWRITE_MIN_SIZE": 1, + "uv_kill": 1, + "cppcode": 1, + "i_rfString_Append": 3, + "": 1, + "pop": 1, + "wglLoadDisplayColorTableEXT": 1, + "GIT_DIFF_INCLUDE_UNMODIFIED": 1, + "": 1, + "dictDisableResize": 1, + "F_CONNECTION_KEEP_ALIVE": 3, + "__pyx_t_float_complex_from_parts": 1, + "iLayerPlane": 5, + "__Pyx_CREAL": 4, + "abbrev": 1, + "wglBlitContextFramebufferAMD": 1, + "s_req_host_v6": 7, "code": 6, - "Monaco": 2, - "Menlo": 2, - "Consolas": 2, - "monospace": 2, - "#d14": 2, - "#f7f7f9": 2, - "#e1e1e8": 2, - "word": 6, - "all": 10, - "wrap": 6, - "#f5f5f5": 26, - "pre.prettyprint": 2, - ".pre": 2, - "scrollable": 2, - "y": 2, - "scroll": 2, - ".label": 30, - ".badge": 30, - "empty": 7, - "a.label": 4, - "a.badge": 4, - "#f89406": 27, - "#c67605": 4, - "inverse": 110, - "#1a1a1a": 2, - ".btn": 506, - "mini": 34, - "collapse": 12, - "spacing": 3, - ".table": 180, - "th": 70, - "td": 66, - "#dddddd": 16, - "caption": 18, - "colgroup": 18, - "tbody": 68, - "condensed": 4, - "bordered": 76, - "separate": 4, - "*border": 8, - "topleft": 16, - "last": 118, - "topright": 16, - "tfoot": 12, - "bottomleft": 16, - "bottomright": 16, - "striped": 13, - "nth": 4, - "odd": 4, - "#f9f9f9": 12, - "cell": 2, - "td.span1": 2, - "th.span1": 2, - "td.span2": 2, - "th.span2": 2, - "td.span3": 2, - "th.span3": 2, - "td.span4": 2, - "th.span4": 2, - "td.span5": 2, - "th.span5": 2, - "td.span6": 2, - "th.span6": 2, - "td.span7": 2, - "th.span7": 2, - "td.span8": 2, - "th.span8": 2, - "td.span9": 2, - "th.span9": 2, - "td.span10": 2, - "th.span10": 2, - "td.span11": 2, - "th.span11": 2, - "td.span12": 2, - "th.span12": 2, - "tr.success": 4, - "#dff0d8": 6, - "tr.error": 4, - "#f2dede": 6, - "tr.warning": 4, - "#fcf8e3": 6, - "tr.info": 4, - "#d9edf7": 6, - "#d0e9c6": 2, - "#ebcccc": 2, - "#faf2cc": 2, - "#c4e3f3": 2, - "form": 38, - "fieldset": 2, - "legend": 6, - "#e5e5e5": 28, - ".uneditable": 80, - "#555555": 18, - "#cccccc": 18, - "inset": 132, - "transition": 36, - "linear": 204, - ".2s": 16, - "o": 48, - ".075": 12, - ".6": 6, - "multiple": 2, - "#fcfcfc": 2, - "allowed": 4, - "placeholder": 18, - ".radio": 26, - ".checkbox": 26, - ".radio.inline": 6, - ".checkbox.inline": 6, - "medium": 2, - "large": 40, - "xlarge": 2, - "xxlarge": 2, - "append": 120, - "prepend": 82, - "input.span12": 4, - "textarea.span12": 2, - "input.span11": 4, - "textarea.span11": 2, - "input.span10": 4, - "textarea.span10": 2, - "input.span9": 4, - "textarea.span9": 2, - "input.span8": 4, - "textarea.span8": 2, - "input.span7": 4, - "textarea.span7": 2, - "input.span6": 4, - "textarea.span6": 2, - "input.span5": 4, - "textarea.span5": 2, - "input.span4": 4, - "textarea.span4": 2, - "input.span3": 4, - "textarea.span3": 2, - "input.span2": 4, - "textarea.span2": 2, - "input.span1": 4, - "textarea.span1": 2, - "disabled": 36, - "readonly": 10, - ".control": 150, - "group.warning": 32, - ".help": 44, - "#dbc59e": 6, - ".add": 36, - "on": 36, - "group.error": 32, - "#d59392": 6, - "group.success": 32, - "#7aba7b": 6, - "group.info": 32, - "#7ab5d3": 6, - "invalid": 12, - "#ee5f5b": 18, - "#e9322d": 2, - "#f8b9b7": 6, - ".form": 132, - "actions": 10, - "#595959": 2, - ".dropdown": 126, - "menu": 42, - ".popover": 14, - "z": 12, - "index": 14, - "toggle": 84, - ".active": 86, - "#a9dba9": 2, - "#46a546": 2, - "prepend.input": 22, - "input.search": 2, - "query": 22, - ".search": 22, - "*padding": 36, - "image": 187, - "gradient": 175, - "#e6e6e6": 20, - "from": 40, - "to": 75, - "repeat": 66, - "x": 30, - "filter": 57, - "progid": 48, - "DXImageTransform.Microsoft.gradient": 48, - "startColorstr": 30, - "endColorstr": 30, - "GradientType": 30, - "#bfbfbf": 4, - "*background": 36, - "enabled": 18, - "false": 18, - "#b3b3b3": 2, - ".3em": 6, - ".2": 12, - ".05": 24, - ".btn.active": 8, - ".btn.disabled": 4, - "#d9d9d9": 4, - "s": 25, - ".15": 24, - "default": 12, - "opacity": 15, - "alpha": 7, - "class": 26, - "primary.active": 6, - "warning.active": 6, - "danger.active": 6, - "success.active": 6, - "info.active": 6, - "inverse.active": 6, - "primary": 14, - "#006dcc": 2, - "#0044cc": 20, - "#002a80": 2, - "primary.disabled": 2, - "#003bb3": 2, - "#003399": 2, - "#faa732": 3, - "#fbb450": 16, - "#ad6704": 2, - "warning.disabled": 2, - "#df8505": 2, - "danger": 21, - "#da4f49": 2, - "#bd362f": 20, - "#802420": 2, - "danger.disabled": 2, - "#a9302a": 2, - "#942a25": 2, - "#5bb75b": 2, - "#62c462": 16, - "#51a351": 20, - "#387038": 2, - "success.disabled": 2, - "#499249": 2, - "#408140": 2, - "#49afcd": 2, - "#5bc0de": 16, - "#2f96b4": 20, - "#1f6377": 2, - "info.disabled": 2, - "#2a85a0": 2, - "#24748c": 2, - "#363636": 2, - "#444444": 10, - "#222222": 32, - "#000000": 14, - "inverse.disabled": 2, - "#151515": 12, - "#080808": 2, - "button.btn": 4, - "button.btn.btn": 6, - ".btn.btn": 6, - "link": 28, - "url": 4, - "no": 2, - ".icon": 288, - ".nav": 308, - "pills": 28, - "submenu": 8, - "glass": 2, - "music": 2, - "envelope": 2, - "heart": 2, - "star": 4, - "user": 2, - "film": 2, - "ok": 6, - "remove": 6, - "zoom": 5, - "in": 10, - "out": 10, - "off": 4, - "signal": 2, - "cog": 2, - "trash": 2, - "home": 2, - "file": 2, - "time": 2, - "road": 2, - "download": 4, - "alt": 6, - "upload": 2, - "inbox": 2, - "play": 4, - "refresh": 2, - "lock": 2, - "flag": 2, - "headphones": 2, - "volume": 6, - "down": 12, - "up": 12, - "qrcode": 2, - "barcode": 2, - "tag": 2, - "tags": 2, - "book": 2, - "bookmark": 2, - "camera": 2, - "justify": 2, - "indent": 4, - "facetime": 2, - "picture": 2, - "pencil": 2, - "map": 2, - "marker": 2, - "tint": 2, - "edit": 2, - "share": 4, - "check": 2, - "move": 2, - "step": 4, - "backward": 6, - "fast": 4, - "pause": 2, - "stop": 32, - "forward": 6, - "eject": 2, - "chevron": 8, - "plus": 4, - "sign": 16, - "minus": 4, - "question": 2, - "screenshot": 2, - "ban": 2, - "arrow": 21, - "resize": 8, - "full": 2, - "asterisk": 2, - "exclamation": 2, - "gift": 2, - "leaf": 2, - "fire": 2, - "eye": 4, - "open": 4, - "close": 4, - "plane": 2, - "calendar": 2, - "random": 2, - "comment": 2, - "magnet": 2, - "retweet": 2, - "shopping": 2, - "cart": 2, - "folder": 4, - "hdd": 2, - "bullhorn": 2, - "bell": 2, - "certificate": 2, - "thumbs": 4, - "hand": 8, - "globe": 2, - "wrench": 2, - "tasks": 2, - "briefcase": 2, - "fullscreen": 2, - "toolbar": 8, - ".btn.large": 4, - ".large.dropdown": 2, - "group.open": 18, - ".125": 6, - ".btn.dropdown": 2, - "primary.dropdown": 2, - "warning.dropdown": 2, - "danger.dropdown": 2, - "success.dropdown": 2, - "info.dropdown": 2, - "inverse.dropdown": 2, - ".caret": 70, - ".dropup": 2, - ".divider": 8, - "tabs": 94, - "#ddd": 38, - "stacked": 24, - "tabs.nav": 12, - "pills.nav": 4, - ".dropdown.active": 4, - ".open": 8, - "li.dropdown.open.active": 14, - "li.dropdown.open": 14, - ".tabs": 62, - ".tabbable": 8, - ".tab": 8, - "below": 18, - "pane": 4, - ".pill": 6, - ".disabled": 22, - "*position": 2, - "*z": 2, - "#fafafa": 2, - "#f2f2f2": 22, - "#d4d4d4": 2, - "collapse.collapse": 2, - ".brand": 14, - "#777777": 12, - ".1": 24, - ".nav.pull": 2, - "navbar": 28, - "#ededed": 2, - "navbar.active": 8, - "navbar.disabled": 4, - "bar": 21, - "absolute": 8, - "li.dropdown": 12, - "li.dropdown.active": 8, - "menu.pull": 8, - "#1b1b1b": 2, - "#111111": 18, - "#252525": 2, - "#515151": 2, - "query.focused": 2, - "#0e0e0e": 2, - "#040404": 18, - ".breadcrumb": 8, - ".pagination": 78, - "span": 38, - "centered": 2, - ".pager": 34, - ".next": 4, - ".previous": 4, - ".thumbnails": 12, - ".thumbnail": 6, - "ease": 12, - "a.thumbnail": 4, - ".caption": 2, - ".alert": 34, - "#fbeed5": 2, - ".close": 2, - "#d6e9c6": 2, - "#eed3d7": 2, - "#bce8f1": 2, - "@": 8, - "keyframes": 8, - "progress": 15, - "stripes": 15, - "@keyframes": 2, - ".progress": 22, - "#f7f7f7": 3, - ".bar": 22, - "#0e90d2": 2, - "#149bdf": 11, - "#0480be": 10, - "deg": 20, - ".progress.active": 1, - "animation": 5, - "infinite": 5, - "#dd514c": 1, - "#c43c35": 5, - "danger.progress": 1, - "#5eb95e": 1, - "#57a957": 5, - "success.progress": 1, - "#4bb1cf": 1, - "#339bb9": 5, - "info.progress": 1, - "warning.progress": 1, - ".hero": 3, - "unit": 3, - "letter": 1, - ".media": 11, - "object": 1, - "heading": 1, - ".tooltip": 7, - "visibility": 1, - ".tooltip.in": 1, - ".tooltip.top": 2, - ".tooltip.right": 2, - ".tooltip.bottom": 2, - ".tooltip.left": 2, - "clip": 3, - ".popover.top": 3, - ".popover.right": 3, - ".popover.bottom": 3, - ".popover.left": 3, - "#ebebeb": 1, - ".arrow": 12, - ".modal": 5, - "backdrop": 2, - "backdrop.fade": 1, - "backdrop.fade.in": 1 - }, - "Dart": { - "class": 1, - "Point": 7, - "{": 3, - "(": 7, - "this.x": 1, - "this.y": 1, - ")": 7, - ";": 8, - "distanceTo": 1, - "other": 1, - "var": 3, - "dx": 3, - "x": 2, - "-": 2, - "other.x": 1, - "dy": 3, - "y": 2, - "other.y": 1, - "return": 1, - "Math.sqrt": 1, - "*": 2, - "+": 1, - "}": 3, - "main": 1, - "p": 1, - "new": 2, - "q": 1, - "print": 1 - }, - "Diff": { - "diff": 1, - "-": 5, - "git": 1, - "a/lib/linguist.rb": 2, - "b/lib/linguist.rb": 2, - "index": 1, - "d472341..8ad9ffb": 1, - "+": 3 - }, - "Ecl": { - "#option": 1, - "(": 32, - "true": 1, - ")": 32, - ";": 23, - "namesRecord": 4, - "RECORD": 1, - "string20": 1, - "surname": 1, - "string10": 2, - "forename": 1, - "integer2": 5, - "age": 2, - "dadAge": 1, - "mumAge": 1, - "END": 1, - "namesRecord2": 3, - "record": 1, - "extra": 1, - "end": 1, - "namesTable": 11, - "dataset": 2, - "FLAT": 2, - "namesTable2": 9, - "aveAgeL": 3, - "l": 1, - "l.dadAge": 1, - "+": 16, - "l.mumAge": 1, - "/2": 2, - "aveAgeR": 4, - "r": 1, - "r.dadAge": 1, - "r.mumAge": 1, - "output": 9, - "join": 11, - "left": 2, - "right": 3, - "//Several": 1, - "simple": 1, - "examples": 1, - "of": 1, - "sliding": 2, - "syntax": 1, - "left.age": 8, - "right.age": 12, - "-": 5, - "and": 10, - "<": 1, - "between": 7, - "//Same": 1, + "rfString_Copy_IN": 2, + "rfString_Destroy": 2, + "_ftelli64": 1, + "__pyx_builtin_NotImplementedError": 3, + "rb_cRDiscount": 4, + "self_ru.ru_stime.tv_usec/1000000": 1, + "wglWaitForSbcOML": 1, + "double*": 1, + "git_diff_merge": 1, + "cmd_mv": 1, + "c4": 5, + "*__pyx_n_s__intercept": 1, + "PYPY_VERSION": 1, + "/": 9, + "PFNWGLRELEASEIMAGEBUFFEREVENTSI3DPROC": 2, + "list*": 1, + "brief": 1, + "PySequence_DelSlice": 2, + "dictSize": 10, + "PFNWGLRESETFRAMECOUNTNVPROC": 2, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_EpsilonInsensitive": 6, + "root": 1, + "__Pyx_BufFmt_StackElem": 1, + "zone": 1, + "Once": 1, + "x": 57, + "i_NUMBER_": 12, + "RF_StringX": 2, + "rfString_Create_fUTF16": 2, + "__pyx_k_1": 1, + "srcX1": 1, + "allocation": 3, + "*1024LL": 1, + "wglewContextInit": 2, + "*maxBarriers": 1, + "WGLEW_EXT_make_current_read": 1, + "encode": 2, + "parN": 10, + "Extended": 1, + "i_SELECT_RF_STRING_BETWEEN3": 1, + "unregister_cpu_notifier": 2, + "RF_UTF32_BE//": 2, + "dictEntry": 2, + "INVALID_METHOD": 1, + "__wglewBindVideoCaptureDeviceNV": 2, + "A8": 2, + "__Pyx_XGOTREF": 2, + "s_req_http_start": 3, + "online": 2, + "cpu_notify": 5, + "afterP": 2, + "http_parser_h": 2, + "__wglewDXUnlockObjectsNV": 2, + "__pyx_k__f": 1, + "__wglewSetStereoEmitterState3DL": 2, + "__pyx_t_7sklearn_5utils_11seq_dataset_INTEGER": 7, + "GIT_DIFFCAPS_TRUST_EXEC_BIT": 2, + "thisstrP": 32, + "defsections": 11, + "rawmode": 2, + "WGL_DEPTH_TEXTURE_FORMAT_NV": 1, + "wglGetGammaTableParametersI3D": 1, + "__wglewGetPixelFormatAttribivARB": 2, + "char": 529, + "*value": 5, + "__Pyx_PyBytes_AsUString": 1, + "size_mask": 6, + "none_allowed": 1, + "parse_block": 1, + "timelimit": 5, + "WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_RG_NV": 1, + "i_NPSELECT_RF_STRING_REMOVE": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_10Regression_2dloss": 1, + "//Two": 1, + "*__pyx_n_s__t_start": 1, + "HELLO_H": 2, + "getOperationsPerSecond": 2, + "i_rfString_Init": 3, + "rfString_Create_fUTF32": 2, + "s_res_line_almost_done": 4, + "shared.nullmultibulk": 2, + "git_buf": 3, + "PyBUF_SIMPLE": 1, + "i_SELECT_RF_STRING_REMOVE1": 1, + "*shape": 1, + "__func__": 2, + "__pyx_vtabstruct_7sklearn_5utils_11seq_dataset_CSRDataset": 2, + "__LINE__": 50, + "__WGLEW_ARB_framebuffer_sRGB": 2, + "WGL_SAMPLE_BUFFERS_3DFX": 1, + "strbuf_release": 1, + "INT32": 1, + "*get_merge_bases": 1, + "wglGenlockSourceI3D": 1, + "rfString_BytePosToCodePoint": 7, + "WGL_CONTEXT_RESET_NOTIFICATION_STRATEGY_ARB": 1, + "RUN_SETUP": 81, + "ops*1000/t": 1, + "WGL_NV_multisample_coverage": 2, + "WGL_ERROR_MISSING_AFFINITY_MASK_NV": 1, + "PyBytes_AsStringAndSize": 1, + "s2": 6, + "cmd_show": 1, + "wglReleaseVideoCaptureDeviceNV": 1, + "*__pyx_ptype_5numpy_ndarray": 1, + "WGL_BLUE_BITS_ARB": 1, + "R_PosInf": 2, + "options.file": 2, + "date_mode_explicit": 1, + "pp_remainder": 1, + "WGL_ARB_pixel_format": 2, + "rdbSaveBackground": 1, + "WGL_BIND_TO_VIDEO_RGB_NV": 1, + "wglBindSwapBarrierNV": 1, + "git_buf_joinpath": 1, + "data": 69, + "*__pyx_find_code_object": 1, + "uState": 1, + "PFNWGLDELETEBUFFERREGIONARBPROC": 2, + "server.client_obuf_limits": 9, + "shared.syntaxerr": 2, + "xE0": 2, + "*piValues": 2, + "i_SELECT_RF_STRING_BETWEEN": 1, + "__pyx_pw_7sklearn_12linear_model_8sgd_fast_10Regression_1loss": 1, + "__pyx_base": 18, + "perror": 5, + "__wglewAssociateImageBufferEventsI3D": 2, + "WGL_BLUE_SHIFT_ARB": 1, + "__wglewSaveBufferRegionARB": 2, + "__pyx_k__q_data_ptr": 1, + "h_matching_transfer_encoding": 3, + "__wglewGetFrameUsageI3D": 2, + "__wglewDeleteBufferRegionARB": 2, + "WGL_NUMBER_OVERLAYS_EXT": 1, + "__wglewGetContextGPUIDAMD": 2, + "CYTHON_WITHOUT_ASSERTIONS": 1, + "i_RFUI32_": 8, + "remaining_bytes": 1, + "strlenCommand": 1, + "WGL_STENCIL_BITS_EXT": 1, + "piAttribIList": 2, + ".item": 2, + ".description": 1, + "HTTP_CONNECT": 4, + "*__pyx_n_s__shape": 1, + ".imag": 3, + "*__pyx_n_s__plain_sgd": 1, + "*tb": 2, + "rfUTF8_FromCodepoint": 1, + "REDIS_AOF_OFF": 5, + "uv__handle_init": 1, + "desc": 5, + "REDIS_MAX_QUERYBUF_LEN": 1, + "zrangeCommand": 1, + "EOF": 26, + "blob": 6, + "*__pyx_ptype_5numpy_flatiter": 1, + "info": 64, + "*argcp": 4, + "*c": 69, + "wglew.h": 1, + "iBuffer": 2, + "wglDeleteBufferRegionARB": 1, + "__pyx_k__Zg": 1, + "PFNWGLDESTROYPBUFFERARBPROC": 2, + "MKD_NOHEADER": 1, + "yajl_render_error_string": 1, + "WGL_MAX_PBUFFER_WIDTH_ARB": 1, + "i_rfLMSX_WRAP3": 5, + "PFNWGLGETPIXELFORMATATTRIBFVEXTPROC": 2, + "charsN": 5, + "listSetFreeMethod": 1, + "server.aof_last_fsync": 1, + "body": 6, + "wglSaveBufferRegionARB": 1, + "help_unknown_cmd": 1, + "char*utf8": 3, + "thiskey": 7, + "afs": 8, + "ftello64": 1, + "__Pyx_MODULE_NAME": 1, + "CPU_DOWN_PREPARE": 1, + "removed": 2, + "REDIS_CMD_DENYOOM": 1, + "getkeys_proc": 1, + "server.stat_numcommands": 4, + "__APPLE__": 2, + "enum": 29, + "headers": 1, + "__pyx_bisect_code_objects": 1, + "py_line": 1, + "uint32_t*length": 1, + "Endian": 1, + "sure": 2, + "run_with_period": 6, + "*1024": 4, + "i_SELECT_RF_STRING_AFTERV9": 1, + "**list": 5, + "functionality": 1, + "/REDIS_HZ": 2, + "PyGILState_Release": 1, + "n_features": 2, + "mode": 11, + "PFNWGLGETGPUIDSAMDPROC": 2, + "rfFgets_UTF32LE": 2, + "CHUNKED": 4, + "printk": 12, + "RF_HEXEQ_UI": 7, + "wglLockVideoCaptureDeviceNV": 1, + "i_NPSELECT_RF_STRING_COUNT": 1, + "fmt_offset": 1, + "__pyx_v_intercept": 1, + "cmd_symbolic_ref": 1, + "__pyx_k__w": 1, + "__Pyx_SET_CREAL": 2, + "*eol": 1, + "WGL_GENLOCK_SOURCE_MULTIVIEW_I3D": 1, + "http_method_str": 1, + "diff*number": 1, + "RE_STRING_TOFLOAT_UNDERFLOW": 1, + "version": 4, + "i_RESULT_": 12, + "__Pyx_GetAttrString": 2, + "nr_to_call": 2, + "rndr": 25, + "*__pyx_n_s__time": 1, + "WGL_DRAW_TO_BITMAP_EXT": 1, + "cmd_archive": 1, + "characterPos_": 5, + "PyString_AsString": 1, + "parse_commit_date": 2, + "OK": 1, + "WGL_TEXTURE_CUBE_MAP_POSITIVE_Y_ARB": 1, + "GLushort*": 1, + "each_commit_graft_fn": 1, + "": 1, + "sstrP": 6, + "dictGetVal": 2, + "m": 8, + "WGL_SWAP_EXCHANGE_ARB": 1, + "NOTIFY": 2, + "two": 1, + "__pyx_k__time": 1, + "PyMethod_New": 2, + "PFNWGLCHOOSEPIXELFORMATEXTPROC": 2, + "*fmt": 2, + "cmd_remote_fd": 1, + "PFNWGLCREATEPBUFFEREXTPROC": 2, + "PyExc_TypeError": 4, + "wrapping": 1, + "one": 2, + "__Pyx_PySequence_SetSlice": 2, + "encodingP": 1, + "linsertCommand": 1, + "WGLEW_NV_video_output": 1, + "B9": 1, + "__Pyx_PyCode_New": 2, + "rfString_Create_UTF16": 2, + "requires": 1, + "HPE_INVALID_EOF_STATE": 1, + "rfStringX_Deinit": 1, + "redisAssert": 1, + "diff_delta__from_one": 5, + "strbuf_addf": 1, + "0x80": 1, + "oldlimit": 5, + "va_list": 3, + "ahead": 5, + "WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_R_NV": 1, + "__WGLEW_ARB_pixel_format": 2, + "GIT_ITERATOR_WORKDIR": 2, + "evalShaCommand": 1, + "UF_PATH": 2, + "sha1": 20, + "cmd_fast_export": 1, + "s_req_http_HT": 3, + "yajl_reset_parser": 1, + "git_config_get_bool": 1, + "i_rfLMSX_WRAP16": 2, + "s_req_schema": 6, + "shared.mbulkhdr": 1, + "WGL_GPU_NUM_SPI_AMD": 1, + "config": 4, + "__Pyx_CodeObjectCache": 2, + "string_": 9, + "DIFF_OLD_PREFIX_DEFAULT": 1, + "work.size": 5, + "PyLong_FromLong": 1, + "git_vector_free": 3, + "*__pyx_n_s__q": 1, + "dictIsRehashing": 2, + "*__pyx_n_s__range": 1, + "since": 5, + "ext": 4, + "ll2string": 3, + "selectCommand": 1, + "hincrbyfloatCommand": 1, + "zrevrangebyscoreCommand": 1, + "pfd.revents": 1, + "definitions": 1, + "dest": 7, + "res1": 2, + "*http_method_str": 1, + "cleanup": 12, + "__pyx_insert_code_object": 1, + "*t": 2, + ".off": 2, + "0x20": 1, + "according": 1, + "READ_VSNPRINTF_ARGS": 5, + "RF_MALLOC": 47, + "*pLastMissedUsage": 1, + "var": 7, + "s_req_host_v6_end": 7, + "i_SELECT_RF_STRING_REPLACE4": 1, + "rfString_Create_UTF32": 2, + "__pyx_k_13": 1, + "HTTP_PUT": 2, + "sinterCommand": 2, + "nread": 7, + "i_SELECT_RF_STRING_BEFORE1": 1, + "i_CMD_": 2, + "S_ISSOCK": 1, + "PyBUF_F_CONTIGUOUS": 1, + "ERANGE": 1, + "lpushCommand": 1, + "__WGLEW_NV_float_buffer": 2, + "rfFReadLine_UTF16LE": 4, + "ino": 2, + "shared.space": 1, + "sp": 4, + "WGL_GPU_CLOCK_AMD": 1, + "WGL_AMD_gpu_association": 2, + "REDIS_EXPIRELOOKUPS_PER_CRON": 2, + "AF_UNIX": 2, + "PFNWGLFREEMEMORYNVPROC": 2, + "i_VAR_": 2, + "git_diff_index_to_tree": 1, + "p_close": 1, + "shape": 1, + "listIter": 2, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_10Regression_loss": 2, + "__pyx_t_5numpy_uint32_t": 1, + "*old_tree": 3, + "h_connection_keep_alive": 4, + "__cpu_disable": 1, + "addReply": 13, + "WGL_TEXTURE_CUBE_MAP_NEGATIVE_Z_ARB": 1, + "list_common_cmds_help": 1, + "PyInt_Check": 1, + "ctx": 16, + "cpu_active_mask": 2, + "RE_FILE_WRITE": 1, + "number*diff": 1, + "REDIS_MAXMEMORY_VOLATILE_TTL": 1, + "lastinteraction": 3, + "WGLEW_EXPORT": 167, + "__pyx_pf_7sklearn_12linear_model_8sgd_fast_18EpsilonInsensitive___init__": 1, + "__pyx_k__dtype": 1, + "backwards.": 1, + "PFNWGLWAITFORSBCOMLPROC": 2, + "PyNumber_Int": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12LossFunction_2dloss": 2, + "REFU_IO_H": 2, + "action": 2, + "check_for_tasks": 2, + "RF_BIG_ENDIAN": 10, + "INT64*": 3, + "Py_XDECREF": 1, + "__Pyx_CIMAG": 4, + "WGL_GPU_RENDERER_STRING_AMD": 1, + "uSource": 2, + "__WGLEW_ARB_create_context_robustness": 2, + "Counts": 1, + "authCommand": 3, + "ev": 2, + "GLsizei": 4, + "continue": 20, + "rfString_Init_UTF16": 3, + "server.aof_rewrite_min_size": 2, + "redisClient": 12, + "*__pyx_n_s__float64": 1, + "5": 1, + "TOKEN": 4, + "initServerConfig": 2, + "*key2": 4, + "blpopCommand": 1, + "PROPFIND": 2, + "tp_dictoffset": 3, + "IS_ALPHANUM": 3, + "NR_CPUS": 2, + "IS_ERR": 1, + "pexpireCommand": 1, + "__wglewDestroyPbufferEXT": 2, + "tv.tv_usec": 3, + "uv_loop_t*": 1, + "dxDevice": 1, + "__pyx_t_7sklearn_5utils_11seq_dataset_DOUBLE": 7, + "for": 88, + "is_unsigned": 1, + "__pyx_t_5numpy_uint16_t": 1, + "C1": 1, + "cmd_get_tar_commit_id": 1, + "__wglewEnableGenlockI3D": 2, + "WGL_TYPE_RGBA_UNSIGNED_FLOAT_EXT": 1, + "*reflog_info": 1, + "__pyx_pf_7sklearn_12linear_model_8sgd_fast_10Regression_loss": 1, + "*__pyx_n_s__verbose": 1, + "*pp": 4, + "rfString_Append_i": 2, + "yajl_get_error": 1, + "PyCode_New": 2, + "//": 257, + "setupSignalHandlers": 2, + "WGL_PBUFFER_WIDTH_EXT": 1, + "IS_UNSIGNED": 1, + "htmlblock_end": 3, + "SIG_IGN": 2, + "HTTP_PARSER_VERSION_MAJOR": 1, + "PySequence_SetSlice": 2, + "***argv": 2, + "__pyx_t_5numpy_float32_t": 1, + "RF_STRING_ITERATEB_END": 2, + "*parNP": 2, + "last": 1, + "PFNWGLJOINSWAPGROUPNVPROC": 2, + "and": 15, + "b_date": 3, + "i_NPSELECT_RF_STRING_AFTERV0": 1, + "__wglewCreateAssociatedContextAttribsAMD": 2, + "": 3, + "WGL_SHARE_STENCIL_EXT": 1, + "*lookup_commit_graft": 1, + "before": 4, + "acceptUnixHandler": 1, + "dstZ": 1, + "yajl_get_bytes_consumed": 1, + "Py_REFCNT": 1, + "*__pyx_k_tuple_14": 1, + "__pyx_k__l": 1, + "cpumask_first": 1, + "aeCreateEventLoop": 1, + "swapE": 21, + "UF_PORT": 5, + "rfString_Init_UTF32": 3, + "*author": 2, + "Py_hash_t": 1, + "__pyx_t_5numpy_clongdouble_t": 1, + "server.maxmemory": 6, + "LOG_INFO": 1, + "ff": 10, + "WGLEW_ARB_buffer_region": 1, + "git_odb__hashlink": 1, + "REDIS_MBULK_BIG_ARG": 1, + "va_end": 3, + "on_body": 1, + "git_pool": 4, + "PyBytes_FromString": 2, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_14Classification_2dloss": 1, + "buffer": 10, + "*__pyx_vtabptr_7sklearn_5utils_11seq_dataset_ArrayDataset": 1, + "cmd_reset": 1, + "*__pyx_ptype_5numpy_ufunc": 1, + "HTTP_UNLOCK": 2, + "manipulate": 1, + "used": 10, + "saved_errno": 1, + "__pyx_pf_5numpy_7ndarray_2__releasebuffer__": 1, + "mtime.seconds": 2, + "PFNWGLCREATEPBUFFERARBPROC": 2, + "key1": 5, + "PFNWGLGETMSCRATEOMLPROC": 2, + "maxGroups": 1, + "__Pyx_WriteUnraisable": 4, + "CYTHON_FORMAT_SSIZE_T": 2, + "*row_work": 1, + "cpu": 57, + "unused": 3, + "PFNWGLDXUNLOCKOBJECTSNVPROC": 2, + "REFU_WIN32_VERSION": 1, + "*__pyx_kp_u_12": 1, + "startup_info": 3, + "malloc": 3, + "s_chunk_size": 3, + "aofRewriteBufferReset": 1, + "PFNWGLGETSYNCVALUESOMLPROC": 2, + "i_ARG3_": 56, + "i_SELECT_RF_STRING_FIND1": 1, + "PFNWGLGETCURRENTASSOCIATEDCONTEXTAMDPROC": 2, + "git_config": 3, + "*__pyx_kp_s_20": 1, + "b": 66, + "elapsed": 3, + "server.neterr": 4, + "__WGLEW_OML_sync_control": 2, "but": 1, - "on": 1, - "strings.": 1, - "Also": 1, - "includes": 1, - "to": 1, - "ensure": 1, - "sort": 1, - "is": 1, + "WGL_FRONT_RIGHT_ARB": 1, + "randomkeyCommand": 1, + "*__Pyx_GetItemInt_Tuple_Fast": 1, + "i_rfString_Beforev": 16, + "lookup_commit_reference": 2, + "*__pyx_f_5numpy__util_dtypestring": 1, + "afsBuffer": 3, + "loadServerConfig": 1, + "genRedisInfoString": 2, + "GLEW_MX": 4, + "i_NPSELECT_RF_STRING_BETWEEN1": 1, + "GIT_ATTR_FNMATCH_HASWILD": 1, + "PyBUF_C_CONTIGUOUS": 1, + "RF_CASE_IGNORE": 2, + "__pyx_lineno": 58, + "slowlogCommand": 1, + "mgetCommand": 1, + "status_code": 8, + "i_SELECT_RF_STRING_FWRITE3": 1, + "wglGetGenlockSourceI3D": 1, + "__Pyx_SafeReleaseBuffer": 1, + "USHORT": 4, + "createObject": 31, + "deltas.length": 4, + "opts": 24, + "in": 11, + "PyStringObject": 2, + "WGL_DRAW_TO_WINDOW_EXT": 1, + "*section": 2, + "LF_EXPECTED": 1, + "dev": 2, + "*__pyx_n_s__epsilon": 1, + "can": 2, + "TASK_RUNNING": 1, + "thisval": 8, + "off_t": 1, + "freeClient": 1, + "first_cpu": 3, + "*extra": 1, + "__pyx_t_7sklearn_5utils_13weight_vector_INTEGER": 1, + "initialize": 1, + "i/2": 2, + "setup_git_directory_gently": 1, + "__wglewReleasePbufferDCARB": 2, + "full_path.ptr": 2, + "*heads": 2, + "CONFIG_NR_CPUS": 5, + "GIT_BUF_INIT": 3, + "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_SquaredHinge": 2, + "__pyx_pf_7sklearn_12linear_model_8sgd_fast_25SquaredEpsilonInsensitive___init__": 1, + "*class_name": 1, + "old_file.path": 12, + "sflags": 1, + "i_SELECT_RF_STRING_COUNT": 1, + "PFNWGLGETEXTENSIONSSTRINGARBPROC": 2, + "*pgdat": 1, + "SEEK_CUR": 19, + "commit_list_count": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_25SquaredEpsilonInsensitive_6__reduce__": 1, + "decodeBuf": 2, + "i_SELECT_RF_STRING_AFTERV10": 1, + "tp_name": 4, + "WGL_TYPE_COLORINDEX_ARB": 1, + "F": 38, + "on_header_field": 1, + "*__pyx_n_s__sample_weight": 1, + "commit_graft_pos": 2, + "__WGLEW_ARB_multisample": 2, + "SIGPIPE": 1, + "server.shutdown_asap": 3, + "vsnprintf": 1, + "__WGLEW_NV_swap_group": 2, + "*lookup_blob": 2, + "*new_tree": 1, + "i_rfLMSX_WRAP9": 2, + "WGL_GENLOCK_SOURCE_EXTERNAL_FIELD_I3D": 1, + "fields": 1, + "EXPORT_SYMBOL": 8, + "server.repl_slave_ro": 2, + "server.maxmemory_policy": 11, + "PUT": 2, + "git_pool_clear": 2, + "__pyx_n_s__dloss": 1, + "kw_args": 15, + "SIGBUS": 1, + "CB": 1, + "FNM_NOMATCH": 1, + "i_SELECT_RF_STRING_BEFOREV12": 1, + "list": 1, + "PyInt_FromUnicode": 1, + "__Pyx_c_sum": 2, + "s_res_status": 3, + "i_SELECT_RF_STRING_REMOVE": 1, + "rfString_Init": 3, + "then": 1, + "": 1, + "options.stdio": 3, + "c_index_": 3, + "__Pyx_SetVtable": 1, + "number": 19, + "restoreCommand": 1, + "*new_iter": 2, + "": 1, + "lua_gc": 1, + "htNeedsResize": 3, + "wglGetGenlockSourceDelayI3D": 1, + "expected": 2, + "RF_UTF8": 8, + "__Pyx_c_conjf": 3, + "do_render": 4, + "int16_t": 1, + "characterUnicodeValue_": 4, + "HTTP_MOVE": 1, + "http_parser_url_fields": 2, + "i_SELECT_RF_STRING_CREATELOCAL1": 1, + "server.stat_expiredkeys": 3, + "mstime": 5, + "uv__process_init_stdio": 2, + "get_commit_format": 1, + "__imag__": 1, + "__pyx_gilstate_save": 2, + "*__pyx_t_1": 6, + "MKD_LI_END": 1, + "RF_STRING_ITERATE_START": 9, + "utsname": 1, + "sdslen": 14, + "options.env": 1, + "F_CHUNKED": 11, + "yajl_bs_free": 1, + "*list": 2, + "*commit_type": 2, + "c.want": 2, + "*git_hash_new_ctx": 1, + "i_SELECT_RF_STRING_AFTER": 1, + "*": 253, + "EV_P_": 1, + "break": 244, + "fileno": 1, + "**column_data": 1, + "false": 77, + "s": 154, + "stderr": 15, + "__wglewGetGenlockSourceDelayI3D": 2, + "*pAddress": 1, + "wglDestroyPbufferARB": 1, + "git_hash_free_ctx": 1, + "limit": 3, + "shared.psubscribebulk": 1, + "zaddCommand": 1, + "": 1, + "cpu_up": 2, + "rcu_read_lock": 1, + "numcommands": 5, + "__wglewCreateContextAttribsARB": 2, + "s_req_http_minor": 3, + "__WGLEW_ARB_pixel_format_float": 2, + "INT_MAX": 1, + "values": 30, + "i_SELECT_RF_STRING_INIT_NC": 1, + "__pyx_v_weight_pos": 1, + "h_matching_transfer_encoding_chunked": 3, + "get": 4, + "wglGenlockSourceEdgeI3D": 1, + "A3": 2, + "PyCFunction": 3, + "F00": 1, + "*__pyx_n_s__x_data_ptr": 1, + "PyInt_AsUnsignedLongMask": 1, + "git__calloc": 3, + "has_non_ascii": 1, + "WGLEW_I3D_swap_frame_usage": 1, + "git_iterator_current_is_ignored": 2, + "alloc": 6, + "SIGTERM": 1, + "REDIS_VERSION": 4, + "npy_uint16": 1, + "WGL_TRANSPARENT_EXT": 1, + "tail": 12, + "HPE_HEADER_OVERFLOW": 1, + "__ref": 6, + "": 2, + "rfString_Prepend": 2, + "onto": 7, + "<=>": 16, + "pg_data_t": 1, + "STDOUT_FILENO": 2, + "uv__process_open_stream": 2, + "__wglewGetGPUInfoAMD": 2, + "ob": 14, + "GLushort": 3, + "doc_size": 6, + "initServer": 2, + "loop": 9, + "*__pyx_n_s__w": 1, + "indegree": 1, + "s2P": 2, + "server.lua_client": 1, + "PFNWGLGETVIDEODEVICENVPROC": 2, + "__pyx_t_5numpy_cdouble_t": 1, + "rpopCommand": 1, + "byte": 6, + "WGL_SWAP_COPY_ARB": 1, + "CONNECTION": 4, + "arch_disable_nonboot_cpus_begin": 2, + "server.pubsub_patterns": 4, + "/R_Zero": 2, + "*tmp": 1, + "#include": 149, + "__pyx_v_verbose": 1, + "*__pyx_vtabptr_7sklearn_12linear_model_8sgd_fast_EpsilonInsensitive": 1, + "i_SELECT_RF_STRING_COUNT1": 1, + "*__pyx_k_tuple_9": 1, + "i_FILE_": 16, + "nSize": 4, + "keyptrDictType": 2, + "timeCommand": 2, + "sha1_to_hex": 8, + "rfFReadLine_UTF8": 5, + "s_header_value_lws": 3, + "strncat": 1, + "npy_clongdouble": 1, + "ruby_obj": 11, + "REDIS_CLUSTER_OK": 1, + "dataType": 1, + "iHeight": 2, + "node_online": 1, + "cpu_online": 5, + "server.ipfd": 9, + "server.saveparams": 2, + "*line": 1, + "WGL_GPU_FASTEST_TARGET_GPUS_AMD": 1, + "cmd_bundle": 1, + "npy_uint32": 1, + "GFP_KERNEL": 1, + "dictSdsKeyCompare": 6, + "*__pyx_n_s__n_features": 1, + "*__pyx_n_s__eta0": 1, + "bigger": 3, + "CHAR": 2, + "WGL_AUX9_ARB": 1, + "*__pyx_empty_bytes": 1, + "sd_markdown": 6, + "pm_notifier": 1, + "_cpu_up": 3, + "move": 12, + "aeDeleteEventLoop": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_25SquaredEpsilonInsensitive_4dloss": 1, + "S_ISDIR": 1, + "PFNWGLRELEASETEXIMAGEARBPROC": 2, + "method": 39, + "what": 1, + "HUGE_VAL": 1, + "REDIS_ZSET_MAX_ZIPLIST_VALUE": 1, + "*__pyx_n_s__np": 1, + "__pyx_k__eta0": 1, + "syncCommand": 1, + "__WGLEW_I3D_swap_frame_usage": 2, + "i_NPSELECT_RF_STRING_FIND1": 1, + "trace_argv_printf": 3, + "HPE_STRICT": 1, + "sdsAllocSize": 1, + "buflen": 3, + "wglGetVideoDeviceNV": 1, + "wglReleaseImageBufferEventsI3D": 1, + "i_rfString_Create": 3, + "WGL_NUMBER_OVERLAYS_ARB": 1, + "validateUTF8": 3, + "will": 3, + "": 2, + "wglewGetExtension": 1, + ";": 5439, + "__PYX_BUILD_PY_SSIZE_T": 2, + "fopen": 3, + "object.parsed": 4, + "parse_object": 1, + "git_vector_foreach": 4, + "HPBUFFERARB": 12, + "PyNumber_Index": 1, + "PPC_SHA1": 1, + "__Pyx_RaiseBufferFallbackError": 1, + "buff": 95, + "incrbyfloatCommand": 1, + "new_file.oid": 7, + "commit_list_sort_by_date": 2, + "rdbRemoveTempFile": 1, + "C7": 1, + "__inline__": 1, + "@endcpp": 1, + "__Pyx_BufFmt_StackElem*": 2, + "peel_to_type": 1, + "szres": 8, + "remove": 1, + "server.repl_transfer_lastio": 1, + "*__pyx_ptype_7sklearn_5utils_11seq_dataset_SequentialDataset": 1, + "__WGLEW_H__": 1, + "unlikely": 54, + "WGL_ARB_render_texture": 2, + "i_LIMSELECT_RF_STRING_AFTERV1": 1, + "mkd_string": 2, + "cmd_update_ref": 1, + "__wglewGetCurrentReadDCARB": 2, + "...": 127, + "__pyx_v_n_iter": 1, + "": 1, + "doc": 6, + "*hGpu": 1, + "": 2, + "PyUnicode_Type": 2, + "task_struct": 5, + "__wglewBindVideoDeviceNV": 2, + "git_iterator": 8, + "cpu_add_remove_lock": 3, + "MKD_TOC": 1, + "*24": 1, + "REDIS_HZ*10": 1, + "options.flags": 4, + "printf": 4, + "gets": 1, + "anetPeerToString": 1, + "depending": 1, + "WGL_SHARE_ACCUM_EXT": 1, + "*dateptr": 1, + "PySequence_GetSlice": 2, + "git_diff_delta": 19, + "PyList_GET_ITEM": 3, + "NULL": 330, + "fflush": 2, + "PyFloat_Check": 2, + "listRewind": 2, + "hgetCommand": 1, + "fl": 8, + "cmd_pack_redundant": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_plain_sgd": 1, + "unicode": 2, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Classification": 1, + "WGL_RED_SHIFT_ARB": 1, + "run_builtin": 2, + "*pathspec": 2, + "shared.cnegone": 1, + "http_method": 4, + "*1024*64": 1, + "shared.bulkhdr": 1, + "term_signal": 3, + "RF_UTF16_BE//": 2, + "cfg": 6, + "*__Pyx_ImportModule": 1, + "max": 4, + "cmd_diff_tree": 1, + "cmd_diff_index": 1, + "__pyx_f": 42, + "*optionsP": 8, + "memtest": 2, + "act.sa_handler": 1, + "RF_HEXL_US": 8, + "PY_MINOR_VERSION": 1, + "piAttributes": 4, + "main": 3, + "i_SELECT_RF_STRING_INIT1": 1, + "server.stat_fork_time": 2, + "commit_graft_alloc": 4, + "included": 2, + "__pyx_t_1": 69, + "stdout": 5, + "means": 1, + "aofRewriteBufferSize": 2, + "iVideoBuffer": 2, + "DECLARE_HANDLE": 6, + "*pool": 3, + "**__pyx_pyargnames": 3, + "incrementallyRehash": 2, + "xDC00": 4, + "B4": 1, + "old_src": 1, + "ySrc": 1, + "WGL_I3D_image_buffer": 2, + "__pyx_k__epsilon": 1, + "REDIS_SHARED_INTEGERS": 1, + "wglQueryFrameCountNV": 1, + "it": 12, + "i_SELECT_RF_STRING_AFTER0": 1, + "__Pyx_ErrRestore": 1, + "PyTuple_SET_ITEM": 6, + "inline": 3, + "RE_LOCALMEMSTACK_INSUFFICIENT": 8, + "REDIS_REPL_SYNCIO_TIMEOUT": 1, + "PySequence_GetItem": 3, + "*__pyx_n_s__numpy": 1, + "": 1, + "*pop_commit": 1, + "WGL_ARB_pbuffer": 2, + "__pyx_PyFloat_AsFloat": 1, + "__raw_notifier_call_chain": 1, + "debugCommand": 1, + "WGLEWContextStruct": 2, + "wglQueryMaxSwapGroupsNV": 1, + "i_NPSELECT_RF_STRING_FWRITE": 1, + "setup_work_tree": 1, + "git_hash_buf": 1, + "i_rfLMSX_WRAP11": 2, + "beg": 10, + "s_req_first_http_minor": 3, + "*method_strings": 1, + "REDIS_REPL_TRANSFER": 2, + "proc": 14, + "i_READ_CHECK": 20, + "WITH_THREAD": 1, + "cmd_diff_files": 1, + "rb_cObject": 1, + "wglGetPixelFormatAttribfvEXT": 1, + "git_tree": 4, + "__Pyx_PrintOne": 1, + "on_message_complete": 1, + "__wglewAllocateMemoryNV": 2, + "i_rfString_ScanfAfter": 3, + "WGL_AUX1_ARB": 1, + "property": 1, + "gperf_case_strncmp": 1, + "matcher": 3, + "_cpu_down": 3, + "write_unlock_irq": 1, + "srcP": 6, + "time": 10, + "data.stream": 7, + "i_SELECT_RF_STRING_AFTERV16": 1, + "*sb": 7, + "PyTuple_New": 3, + "i_LIMSELECT_RF_STRING_BEFOREV1": 1, + "PFNWGLGETCURRENTREADDCEXTPROC": 2, + "server.unixtime": 10, + "cmd_for_each_ref": 1, + "L": 1, + "*__pyx_n_s__dtype": 1, + "*o": 8, + "server.cluster.state": 1, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_ModifiedHuber": 1, + "CMIT_FMT_DEFAULT": 1, + "exact": 6, + "link_ref": 2, + "cpu_hotplug_disable_before_freeze": 2, + "tasks_frozen": 4, + "server.stat_keyspace_misses": 2, + "*revision": 1, + "rfFReadLine_UTF32BE": 1, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Classification": 7, + "warning": 1, + "imag": 2, + "*o2": 2, + "SOCK_NONBLOCK": 2, + "WGL_TYPE_RGBA_FLOAT_ARB": 1, + "*__pyx_n_s__n_samples": 1, + "i_SELECT_RF_STRING_BEFOREV6": 1, + "arch_enable_nonboot_cpus_end": 2, + "res": 4, + "bSize": 4, + "redisGitDirty": 3, + "i_SELECT_RF_STRING_BEFOREV18": 1, + "WINAPI": 119, + "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_Regression": 3, + "s_dead": 10, + "HVIDEOOUTPUTDEVICENV": 2, + "uEdge": 2, + "llist_mergesort": 1, + "strict": 2, + "prefixcmp": 3, + "PyList_GET_SIZE": 5, + "LOWER": 7, + "seconds": 2, + "zremrangebyscoreCommand": 1, + "uv__pipe2": 1, + "*vec": 1, + "*__pyx_vtab": 3, + "CYTHON_CCOMPLEX": 12, + "memory": 4, + "INT": 3, + "delta": 54, + "self": 9, + "cpumask_clear_cpu": 5, + "SIGILL": 1, + "STRBUF_INIT": 1, + "cmd_cherry": 1, + "__sun__": 1, + "pp_title_line": 1, + "out_notify": 3, + "n/": 3, + "WGL_TEXTURE_1D_ARB": 1, + "__wglewMakeAssociatedContextCurrentAMD": 2, + "__pyx_n_s__loss": 2, + "xrealloc": 2, + "find_block_tag": 1, + "__cpu_up": 1, + "comm": 1, + "0": 11, + "de": 12, + "ob_size": 1, + "cmd_tar_tree": 1, + "git_diff_workdir_to_tree": 1, + "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_Hinge": 2, + "dictCreate": 6, + "sharedObjectsStruct": 1, + "UF_MAX": 3, + "pathspec.strings": 1, + "REDIS_MASTER": 2, + "objectCommand": 1, + "match": 16, + "wglSendPbufferToVideoNV": 1, + "WGL_VIDEO_OUT_STACKED_FIELDS_2_1": 1, + "git_vector_swap": 1, + "cmd_ls_remote": 2, + "__Pyx_PyInt_AsSize_t": 1, + "bad": 1, + "__pyx_k_2": 1, + "y": 14, + "s_req_http_HTT": 3, + "REDIS_DEFAULT_DBNUM": 1, + "renameCommand": 1, + "__Pyx_DOCSTR": 2, + "cmd_remote": 1, + "configCommand": 1, + "srcLevel": 1, + "__wglewDestroyPbufferARB": 2, + "PFNWGLSWAPINTERVALEXTPROC": 2, + "__pyx_k__weight_neg": 1, + "git__size_t_powerof2": 1, + "bufgrow": 1, + "UTF8_BOM": 1, + "GPERF_CASE_STRNCMP": 1, + "While": 2, + "F_UPGRADE": 3, + "PFNWGLDESTROYIMAGEBUFFERI3DPROC": 2, + "path": 20, + "zincrbyCommand": 1, + "*bufptr": 1, + "i_SELECT_RF_STRING_BETWEEN4": 1, + "Insufficient": 2, + "hashslot": 3, + "getRandomHexChars": 1, + "*http_errno_description": 1, + "WGL_ACCELERATION_EXT": 1, + "#define": 911, + "A9": 2, + "eventLoop": 2, + "WGL_TEXTURE_RECTANGLE_NV": 1, + "WGLEW_NV_present_video": 1, + "__wglewGetGPUIDsAMD": 2, + "WGL_PBUFFER_WIDTH_ARB": 1, + "__GNUC__": 7, + "__pyx_k__g": 1, + "server.aof_flush_postponed_start": 2, + "expires": 3, + "wglCreateAssociatedContextAMD": 1, + "WGL_EXT_create_context_es2_profile": 2, + "**tb": 1, + "Py_buffer": 6, + "server.pubsub_channels": 2, + "install": 1, + "in_merge_bases": 1, + "WGL_NO_ACCELERATION_ARB": 1, + "PyCFunction_Check": 3, + "pretty_print_commit": 1, + "PyObject": 276, + "WGL_TEXTURE_CUBE_MAP_NEGATIVE_Y_ARB": 1, + "cpu_present_mask": 2, + "hGpu": 1, + "__pyx_k__dloss": 1, + "__pyx_k__weight_pos": 1, + "c_ru.ru_stime.tv_usec/1000000": 1, + "i_SELECT_RF_STRING_REMOVE2": 1, + "rfFgetc_UTF32LE": 4, + "swap": 9, + "CALLBACK_NOTIFY": 10, + "/1000000": 2, + "dict": 11, + "cb": 1, + "bool": 6, + "*kwds2": 1, + "extern": 37, + "]": 597, + "server.rdb_filename": 4, + "h_upgrade": 4, + "__wglewQuerySwapGroupNV": 2, + "is_complex": 1, + "git_extract_argv0_path": 1, + "show_notes": 1, + "cmd_rev_list": 1, + "depends": 1, + "task_cpu": 1, + "server.port": 7, + "iEntries": 2, + "parse_commit_buffer": 3, + "yajl_free": 1, + "BITS_PER_LONG": 2, + "__MUTEX_INITIALIZER": 1, + "value": 9, + "*__pyx_f": 1, + "npy_float64": 1, + "*link": 1, + ".mod": 1, + "srand": 1, + "WGL_BIND_TO_TEXTURE_RECTANGLE_RGB_NV": 1, + "piAttribList": 4, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_SquaredLoss": 5, + "double": 126, + "__Pyx_PyUnicode_READ": 2, + "WGL_TRANSPARENT_BLUE_VALUE_ARB": 1, + "rb_respond_to": 1, + "server.cluster.configfile": 1, + "__wglewDisableFrameLockI3D": 2, + "WGL_PBUFFER_LARGEST_ARB": 1, + "uRate": 2, + "CMIT_FMT_EMAIL": 1, + "h_transfer_encoding": 5, + "*param": 1, + "PFNWGLBINDVIDEODEVICENVPROC": 2, + "wglEnumGpusNV": 1, + "cmd_bisect__helper": 1, + "kind": 1, + "rfLMS_MacroEvalPtr": 2, + "PFNWGLGETCURRENTREADDCARBPROC": 2, + "description": 1, + "merge_remote_util": 1, + "WGLEW_I3D_gamma": 1, + "rfString_Iterate_End": 4, + "WGL_DRAW_TO_WINDOW_ARB": 1, + "server.repl_serve_stale_data": 2, + "__Pyx_RaiseNeedMoreValuesError": 1, + "*sbc": 3, + "stack": 6, + "WGLEW_NV_DX_interop": 1, + "__pyx_t_5numpy_longlong_t": 1, + "BLOB_H": 2, + "*funcname": 1, + "__WGLEW_ATI_pixel_format_float": 2, + "Py_ssize_t": 35, + "KERN_ERR": 5, + "task_unlock": 1, + "zcountCommand": 1, + "wglCreateImageBufferI3D": 1, + "*d": 1, + "*str": 1, + "i_rfLMS_WRAP2": 5, + "A": 11, + "abort": 1, + "__wglewBindSwapBarrierNV": 2, + "__pyx_pw_7sklearn_12linear_model_8sgd_fast_12LossFunction_1loss": 1, + "__Pyx_PyInt_AsLongDouble": 1, + "flags_extended": 2, + "*index_data_ptr": 2, + "i_rfLMSX_WRAP4": 11, + "header_value": 6, + "sprintf": 10, + "*1024*32": 1, + "setrangeCommand": 1, + "git_vector_insert": 4, + "grafts_replace_parents": 1, + "WGL_CONTEXT_COMPATIBILITY_PROFILE_BIT_ARB": 1, + "__Pyx_PyInt_AsUnsignedShort": 1, + "rfString_IterateB_End": 1, + "strlen": 17, + "i_RFUI8_": 28, + "sections": 11, + "clientData": 1, + "enc_type": 1, + "PFNWGLSETGAMMATABLEI3DPROC": 2, + "true": 73, + "rndr_newbuf": 2, + "cpu_hotplug_pm_sync_init": 2, + "bitcountCommand": 1, + "wglDestroyImageBufferI3D": 1, + "rfString_Assign_char": 2, + "going": 1, + "afterstrP": 2, + "container": 17, + "WGL_I3D_digital_video_control": 2, + "**commit_graft": 1, + "__pyx_k__n_iter": 1, + "UL": 1, + "cmd_cherry_pick": 1, + "foff_rft": 2, + "for_each_online_cpu": 1, + "Functions": 1, + "PFNWGLSETPBUFFERATTRIBARBPROC": 2, + "__Pyx_DECREF": 20, + "*line_separator": 1, + "__WGLEW_ARB_pbuffer": 2, + "querybuf": 6, + "PFNWGLRELEASEVIDEODEVICENVPROC": 2, + "wglMakeContextCurrentEXT": 1, + "*format": 2, + "REDIS_CALL_FULL": 1, + "server.cluster_enabled": 6, + "HTTP_PARSER_STRICT": 5, + "rfString_KeepOnly": 2, + "rfString_Copy_chars": 2, + "__pyx_k__dataset": 1, + "pretty_print_context": 6, + "RF_REALLOC": 9, + "else//": 14, + "wglBindVideoCaptureDeviceNV": 1, + "*sub": 1, + "representation": 2, + "how": 1, + "%": 2, + "WGL_GENLOCK_SOURCE_DIGITAL_SYNC_I3D": 1, + "git_hash_update": 1, + "pattern": 3, + "most": 3, + "*arg": 1, + "sequence": 6, + "SIGKILL": 2, + "read": 1, + "": 2, + "wglSetPbufferAttribARB": 1, + "elapsed*remaining_bytes": 1, + "bBlock": 1, + "n": 70, + "*reduce_heads": 1, + "rfString_Tokenize": 2, + "*format_subject": 1, + "exit": 20, + "addReplySds": 3, + "i_ARG2_": 56, + "s_res_or_resp_H": 3, + "eta": 4, + "REDIS_UNBLOCKED": 1, + "execCommand": 2, + "OBJ_BLOB": 3, + "PyErr_Format": 4, + "#endif": 236, + "WGL_DIGITAL_VIDEO_GAMMA_CORRECTED_I3D": 1, + "handle": 10, + "diff_delta__from_two": 2, + "options.cwd": 2, + "long*": 2, + "attribList": 2, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Log": 1, + "rfString_ToInt": 1, + "PyBytes_GET_SIZE": 1, + "sigtermHandler": 2, + "http_cb": 3, + "HTTP_PARSER_ERRNO_LINE": 2, + "yajl_lex_free": 1, + "occurences": 5, + "close": 13, + "__pyx_v_rho": 1, + "PyBytes_DecodeEscape": 1, + "INT_MIN": 1, + "rfString_PruneStart": 2, + "rfString_Create_i": 2, + "GIT_DIFFCAPS_USE_DEV": 1, + "bioPendingJobsOfType": 1, + "*ctx": 5, + "WGL_GPU_RAM_AMD": 1, + "CALLBACK_NOTIFY_": 3, + "uv__stream_close": 1, + "__PYX_EXTERN_C": 3, + "num_min": 1, + "WGL_SAMPLE_BUFFERS_EXT": 1, + "WGL_SWAP_UNDEFINED_ARB": 1, + "intern": 1, + "i_rfLMSX_WRAP17": 2, + "on_headers_complete": 3, + "__pyx_empty_tuple": 3, + "server.client_max_querybuf_len": 1, + "shared": 1, + "__WGLEW_NV_video_output": 2, + "WGL_VIDEO_OUT_STACKED_FIELDS_1_2": 1, + "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_Classification": 1, + "WGL_ACCUM_ALPHA_BITS_ARB": 1, + "parse_commit": 3, + "wglCreatePbufferARB": 1, + "WGL_TYPE_RGBA_EXT": 1, + "WGL_TRANSPARENT_ARB": 1, + "UPGRADE": 4, + "TRANSFER_ENCODING": 4, + "proccess": 2, + "privdata": 8, + "WGLEWContext": 1, + "commit_list_insert": 2, + "robj*": 3, + "__wglewCreateImageBufferI3D": 2, + "utf8": 36, + "__pyx_t_5numpy_int64_t": 1, + "byteLength": 197, + "notify_cpu_starting": 1, + "res2": 2, + "keylistDictType": 4, + "*u": 2, + "indent": 1, + "cpowf": 1, + "wglChoosePixelFormatEXT": 1, + "server.aof_delayed_fsync": 2, + "MKCOL": 2, + "__pyx_v_y": 46, + "git_iterator_advance": 5, + "set_cpu_present": 1, + "resetServerSaveParams": 2, + "shared.slowscripterr": 2, + ".len": 3, + "PyUnicode_READ": 1, + "i_SELECT_RF_STRING_REPLACE5": 1, + "*read_graft_line": 1, + "WGLEW_ARB_create_context_profile": 1, + "i_SELECT_RF_STRING_BEFORE2": 1, + "server.list_max_ziplist_value": 1, + "REDIS_HASH_MAX_ZIPLIST_VALUE": 1, + "child_watcher": 5, + "__wglewQueryVideoCaptureDeviceNV": 2, + "member": 2, + "__pyx_v_fit_intercept": 1, + "parser": 334, + "server.hash_max_ziplist_entries": 1, + "server.logfile": 8, + "cmd_mailinfo": 1, + "__pyx_vtabstruct_7sklearn_5utils_11seq_dataset_ArrayDataset": 2, + "*tree": 3, + "__pyx_base.loss": 1, + "time_t": 4, + "syslog": 1, + "RF_HEXG_US": 8, + "bIndex": 5, + "*da": 1, + "body_mark": 2, + "HTTP_LOCK": 1, + "different": 1, + "exit_cb": 3, + "CMIT_FMT_USERFORMAT": 1, + "#endif//include": 1, + "s_body_identity_eof": 4, + "UNSUBSCRIBE": 2, + "__Pyx_PyInt_AsUnsignedChar": 1, + "oid_for_workdir_item": 2, + "write": 7, + "__pyx_base.__pyx_vtab": 1, + "lineno": 1, + "__Pyx_c_difff": 2, + "pow": 2, + "WGL_SUPPORT_OPENGL_EXT": 1, + "logging": 5, + "section": 14, + "setsid": 2, + "level": 12, + "index": 58, + "server.slowlog_log_slower_than": 1, + "signed": 5, + "/1000": 1, + "SHA1_Init": 4, + "should": 2, + "v1": 38, + "WGL_BIND_TO_TEXTURE_DEPTH_NV": 1, + "__WGLEW_I3D_image_buffer": 2, + "REDIS_SHARED_SELECT_CMDS": 1, + "git_attr_fnmatch": 4, + "__wglewGetGammaTableParametersI3D": 2, + "i_FORMAT_": 2, + "*__pyx_k_codeobj_19": 1, + "sd_markdown_free": 1, + "task_pid_nr": 1, + "lsetCommand": 1, + "options.exit_cb": 1, + "uv_stream_t*": 2, + "PFNWGLENUMGPUDEVICESNVPROC": 2, + "*temp": 1, + "__pyx_k_8": 1, + "WGL_CONTEXT_ES2_PROFILE_BIT_EXT": 1, + "LPVOID": 3, + "short": 6, + "*oitem": 2, + "": 1, + "C2": 1, + "development": 1, + "PyObject_TypeCheck": 3, + "PyString_FromString": 2, + "deltas": 8, + "PFNWGLLOCKVIDEOCAPTUREDEVICENVPROC": 2, + "width": 3, + "i_SELECT_RF_STRING_FIND": 1, + "": 1, + "reflog_walk_info": 1, + "*__pyx_n_s__dloss": 1, + "h_connection_close": 4, + "stdio_count": 7, + "wglEnumGpusFromAffinityDCNV": 1, + "": 7, + "cmd_prune": 1, + "Py_UCS4": 2, + "WGL_TRANSPARENT_VALUE_EXT": 1, + "i_NPSELECT_RF_STRING_AFTERV1": 1, + "__Pyx_XINCREF": 2, + "__pyx_n_s__y": 6, + "times": 1, + "WGL_COLOR_SAMPLES_NV": 1, + "PyExc_SystemError": 3, + "cmd_hash_object": 1, + "*__pyx_k_tuple_15": 1, + "full_path": 3, + "*reencode_commit_message": 1, + "rfString_PruneMiddleB": 2, + "GLuint*": 3, + "check": 8, + "WGL_GPU_VENDOR_AMD": 1, + "parse_table_row": 1, + "WNOHANG": 1, + "renamenxCommand": 1, + "wglEnumerateVideoCaptureDevicesNV": 1, + "head": 3, + "@endinternal": 1, + "every": 1, + "WGLEW_ATI_render_texture_rectangle": 1, + "s_start_res": 5, + "init_cpu_present": 1, + "microseconds": 1, + "on": 4, + "to_cpumask": 15, + "nb": 2, + "perc": 3, + "WGL_VIDEO_OUT_FRAME": 1, + "WGLEW_EXT_pbuffer": 1, + "WGL_SHARE_ACCUM_ARB": 1, + "__Pyx_c_powf": 3, + "rfString_Replace": 3, + "key2": 5, + "*diff_delta__alloc": 1, + "__WGLEW_ARB_create_context": 2, + "rb_str_buf_new": 2, + "s1P": 2, + "__WGLEW_EXT_create_context_es2_profile": 2, + "want": 3, + "*__pyx_kp_u_13": 1, + "rfString_Fwrite_fUTF8": 1, + "*__pyx_vtabptr_7sklearn_5utils_13weight_vector_WeightVector": 1, + "__Pyx_PyInt_AsUnsignedLongLong": 1, + "tag_len": 3, + "ch": 145, + "zmalloc_get_fragmentation_ratio": 1, + "watchCommand": 2, + "i_SELECT_RF_STRING_FIND2": 1, + "WGL_PIXEL_TYPE_ARB": 1, + "WGL_SAMPLES_3DFX": 1, + "c": 252, + "this": 5, + "Py_TPFLAGS_HAVE_INDEX": 1, + "cpumask_empty": 1, + "server.aof_buf": 3, + "ops": 1, + "GIT_DELTA_UNTRACKED": 5, + "WGL_VIDEO_OUT_FIELD_1": 1, + "__Pyx_PyInt_AsUnsignedLong": 1, + "uptime": 2, + "PURGE": 2, + "puRed": 2, + "cmd_check_ref_format": 1, + "MASK_DECLARE_1": 3, + "bytesN=": 1, + "daemonize": 2, + "msetnxCommand": 1, + "cmd_replace": 1, + "PFNWGLRELEASEPBUFFERDCARBPROC": 2, + "*__pyx_v_seed": 1, + "s_req_line_almost_done": 4, + "LOG_ERROR": 64, + "upgrade": 3, + "__VA_ARGS__": 66, + "#undef": 7, + "__pyx_k__Q": 1, + "git_buf_cstr": 1, + "unhex": 3, + "dictSlots": 3, + "likely": 22, + "wglReleaseTexImageARB": 1, + "<=0)>": 1, + "setbitCommand": 1, + "which": 1, + "__Pyx_XDECREF": 20, + "*commit_list_get_next": 1, + "PyUnicode_CheckExact": 1, + "properly": 2, + "*ln": 3, + "saddCommand": 1, + "wglGetFrameUsageI3D": 1, + "__pyx_t_5numpy_longdouble_t": 1, + "uint32_t": 144, + "WGL_NO_TEXTURE_ARB": 2, + "pgdat": 3, + "PyErr_Occurred": 9, + "WGL_TEXTURE_RECTANGLE_ATI": 1, + "object": 10, + "rfString_StripStart": 3, + "__Pyx_PyInt_AsSignedInt": 1, + "fseeko64": 1, + "WGL_3DL_stereo_control": 2, + "die_errno": 3, + "*__pyx_n_s__x_ind_ptr": 1, + "*__pyx_pw_7sklearn_12linear_model_8sgd_fast_12LossFunction_1loss": 3, + "__pyx_k__float64": 1, + "BUG_ON": 4, + "dictObjKeyCompare": 2, + "keysCommand": 1, + "pulCounterPbuffer": 1, + "45": 1, + "GIT_DIFF_INCLUDE_IGNORED": 1, + "PFNWGLGETGENLOCKSOURCEDELAYI3DPROC": 2, + "shutdownCommand": 2, + "RF_LITTLE_ENDIAN": 23, + "uv_pipe_t*": 1, + "make": 3, + "i_SELECT_RF_STRING_AFTERV11": 1, + "wglGetPixelFormatAttribfvARB": 1, + "mm_cpumask": 1, + "rfString_FindBytePos": 10, + "rfUTF8_Encode": 4, + "*read_commit_extra_headers": 1, + "__pyx_pf_7sklearn_12linear_model_8sgd_fast_12SquaredHinge___init__": 1, + "cmd_add": 2, + "WGL_DRAW_TO_PBUFFER_EXT": 1, + "CLOSED_CONNECTION": 1, + "scan": 4, + "free": 62, + "aeSetBeforeSleepProc": 1, + "WGL_UNIQUE_ID_NV": 1, + "please": 1, + "i_THISSTR_": 60, + "iPixelFormat": 6, + "smaller": 1, + "RF_BITFLAG_ON": 5, + "RE_UTF8_INVALID_CODE_POINT": 2, + "pubsub_patterns": 2, + "setDictType": 1, + "UV_INHERIT_FD": 3, + "*lookup_commit_reference": 2, + "__Pyx_Buf_DimInfo": 2, + "MARKDOWN_GROW": 1, + "to_read": 6, + "INVALID_EOF_STATE": 1, + "CC": 1, + "__WGLEW_NV_video_capture": 2, + "WGL_NV_DX_interop": 2, + "j_": 6, + "i_SELECT_RF_STRING_BEFOREV13": 1, + "rfFback_UTF16BE": 2, + "rfString_Fwrite": 2, + "was_alias": 3, + "works": 1, + "server.stop_writes_on_bgsave_err": 2, + "LOG_WARNING": 1, + "npy_longdouble": 1, + "__wglewBindTexImageARB": 2, + "**commit_list_append": 2, + "cpu_hotplug.lock": 8, + "WGLEW_I3D_swap_frame_lock": 1, + "*strides": 1, + "WGL_DIGITAL_VIDEO_CURSOR_ALPHA_FRAMEBUFFER_I3D": 1, + "parse_inline": 1, + "freeMemoryIfNeeded": 2, + "listMatchPubsubPattern": 1, + "": 2, + "pfd": 2, + "__pyx_t_5numpy_uint_t": 1, + "i_NPSELECT_RF_STRING_BEFOREV0": 1, + "WGL_AUX5_ARB": 1, + "__Pyx_PyInt_FromSize_t": 1, + "num_online_cpus": 2, + "getrangeCommand": 2, + "cmd_log": 1, + "__fastcall": 2, + "git_odb__hashfd": 1, + "terminate": 1, + "name.release": 1, + "PY_FORMAT_SIZE_T": 1, + "bytesN": 98, + "UV__F_NONBLOCK": 5, + "__pyx_f_7sklearn_12linear_model_8sgd_fast_max": 1, + "diff": 93, + "__pyx_pf_7sklearn_12linear_model_8sgd_fast_12LossFunction_loss": 1, + "HPE_INVALID_STATUS": 3, + "*active_writer": 1, + "REDIS_OK": 23, + "git_strarray": 2, + "*__pyx_n_s__shuffle": 1, + "codeBuffer": 9, + "Non": 2, + "zunionInterGetKeys": 4, + "git_submodule": 1, + "*__pyx_t_2": 3, + "merge_remote_desc": 3, + "WGL_CUBE_MAP_FACE_ARB": 1, + "KEEP_ALIVE": 4, + "__pyx_L1_error": 33, + "+": 551, + "i_rfString_Create_nc": 3, + "find": 1, + "http_data_cb": 4, + "Py_INCREF": 10, + "PyFloat_AsDouble": 2, + "rstr": 24, + "jsonText": 4, + "HPE_LF_EXPECTED": 1, + "__pyx_r": 39, + "numerator": 1, + "PyString_ConcatAndDel": 1, + "t": 32, + "HPE_INVALID_CONTENT_LENGTH": 4, + "watcher": 4, + "PFNWGLSWAPBUFFERSMSCOMLPROC": 2, + "__wglewCreateDisplayColorTableEXT": 2, + "is_valid_array": 1, + "*prefix": 7, + "FOR": 11, + "allsections": 12, + "cmd_name_rev": 1, + "PY_SSIZE_T_CLEAN": 1, + "GLbitfield": 1, + "__pyx_t_float_complex": 27, + "free_link_refs": 1, + "out_release": 3, + "take_cpu_down": 2, + "argList": 8, + "server.loading_loaded_bytes": 3, + "PyTuple_CheckExact": 1, + "WGL_EXT_multisample": 2, + "#error": 4, + "__WGLEW_3DL_stereo_control": 2, + "end_tag": 4, + "A4": 2, + "F01": 1, + "zunionstoreCommand": 1, + "PFNWGLQUERYVIDEOCAPTUREDEVICENVPROC": 2, + "access": 2, + "__wglewGetGenlockSourceEdgeI3D": 2, + "__pyx_k__b": 1, + "tasklist_lock": 2, + "hincrbyCommand": 1, + "__pyx_v_threshold": 2, + "cmd_stripspace": 1, + "cmd_send_pack": 1, + "__pyx_L5_argtuple_error": 12, + "s_req_http_HTTP": 3, + "hkeysCommand": 1, + "UNLOCK": 2, + "wglewContextIsSupported": 2, + "readFrequency": 1, + "pFrameCount": 1, + "WGL_ACCELERATION_ARB": 1, + "HTTP_GET": 1, + "xC0": 3, + "PROPPATCH": 2, + "i_SUBSTR_": 6, + "created": 1, + "PyObject_GetAttrString": 2, + "__Pyx_PySequence_DelSlice": 2, + "tag_size": 3, + "*keepLength": 1, + "RLIMIT_NOFILE": 2, + "WGL_NUMBER_PIXEL_FORMATS_EXT": 1, + "config_bool": 5, + "cell_start": 5, + "thisPos": 8, + "*name": 12, + "server.dbnum": 8, + "pulCounterOutputPbuffer": 1, + "Flags": 1, + "server.runid": 3, + "http_parser": 13, + "__wglewQueryFrameCountNV": 2, + "*Y_data_ptr": 2, + "i_SELECT_RF_STRING_COUNT2": 1, + "wglRestoreBufferRegionARB": 1, + "WGL_STEREO_EXT": 1, + "WGL_PBUFFER_LOST_ARB": 1, + "__pyx_k__x_ind_ptr": 1, + "_exit": 6, + "pp_commit_easy": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_13ModifiedHuber_loss": 1, + "*modname": 1, + "loadAppendOnlyFile": 1, + "*__pyx_n_s__is_hinge": 1, + "strcmp": 20, + "PFNWGLSETSTEREOEMITTERSTATE3DLPROC": 2, + "wglMakeAssociatedContextCurrentAMD": 1, + "cpu_hotplug_enable_after_thaw": 2, + "*doc": 2, + "PFNWGLGETEXTENSIONSSTRINGEXTPROC": 2, + "rfUTF8_IsContinuationByte2": 1, + "PySequenceMethods": 1, + "arch_enable_nonboot_cpus_begin": 2, + "AOF_FSYNC_EVERYSEC": 1, + "PFNWGLCREATEAFFINITYDCNVPROC": 2, + "yajl_alloc": 1, + "id": 13, + "PyErr_WarnEx": 1, + "WGLEW_ARB_pixel_format": 1, + "PFNWGLSETGAMMATABLEPARAMETERSI3DPROC": 2, + "strncasecmp": 2, + "shared.unsubscribebulk": 1, + "server.lruclock": 2, + "__Pyx_PySequence_GetSlice": 2, + "h_matching_connection": 3, + "wglBindVideoDeviceNV": 1, + "PyUnicode_FromString": 2, + "WGL_EXT_framebuffer_sRGB": 2, + "wglCreateBufferRegionARB": 1, + "s_chunk_parameters": 3, + "listLength": 14, + "barrier": 1, + "float*": 1, + "errno": 20, + "EXEC_BIT_MASK": 3, + "Py_TPFLAGS_CHECKTYPES": 1, + "__stop_machine": 1, + "dictFind": 1, + "///": 4, + "PFNWGLSAVEBUFFERREGIONARBPROC": 2, + "PFNWGLBLITCONTEXTFRAMEBUFFERAMDPROC": 2, + "PyFrozenSet_Type": 1, + "__Pyx_LocalBuf_ND": 1, + "xDBFF": 4, + "PyFloat_AS_DOUBLE": 1, + "*get_merge_bases_many": 1, + "WGL_MIPMAP_LEVEL_ARB": 1, + "i_NVrfString_Create": 3, + "WGL_FRONT_LEFT_ARB": 1, + "WGL_STENCIL_BITS_ARB": 1, + "*cfg": 2, + "PyBytes_ConcatAndDel": 1, + "HTTP_RESPONSE": 3, + "GIT_ENOTFOUND": 1, + "PFNWGLGETPBUFFERDCEXTPROC": 2, + "__Pyx_XGIVEREF": 5, + "<": 219, + "s_req_host_start": 8, + "set_cpu_active": 1, + "SA_SIGINFO": 1, + "name.machine": 1, + "retcode": 3, + "__pyx_v_c": 1, + "active": 2, + "server.bpop_blocked_clients": 2, + "beforeSleep": 2, + "__pyx_k__x_data_ptr": 1, + "with": 9, + "mutex_lock": 5, + "UV_IGNORE": 2, + "*__pyx_n_s__weight_pos": 1, + "wglGenlockSampleRateI3D": 1, + "__pyx_code_cache": 1, + "REDIS_REPL_WAIT_BGSAVE_END": 1, + "zscoreCommand": 1, + "UV_INHERIT_STREAM": 2, + "C8": 1, + "__pyx_filename": 51, + "PyString_Type": 2, + "*__pyx_builtin_RuntimeError": 1, + "*__pyx_kp_s_1": 1, + "dxObject": 2, + ".asize": 2, + "cpu_relax": 1, + "WGLEW_ARB_extensions_string": 1, + "opaque": 8, + "server.stat_keyspace_hits": 2, + "i_SELECT_RF_STRING_AFTERV5": 1, + "i_NPSELECT_RF_STRING_REPLACE0": 1, + "__Pyx_PyInt_AsSignedLong": 1, + "wglGetGammaTableI3D": 1, + "strtoul": 2, + "*__Pyx_GetItemInt_Generic": 1, + ".size": 2, + "CALLBACK_DATA_": 4, + "dictObjHash": 2, + "*__pyx_empty_tuple": 1, + "WGL_AUX_BUFFERS_EXT": 1, + "wglSetGammaTableParametersI3D": 1, + "to_py_func": 6, + "__wglewBindDisplayColorTableEXT": 2, + "*__pyx_v_weights": 1, + "__read_mostly": 5, + "effectively": 1, + "clusterCron": 1, + "zcardCommand": 1, + "PFNWGLCREATEBUFFERREGIONARBPROC": 2, + "__Pyx_INCREF": 6, + "*parser": 9, + "PyUnicode_Decode": 1, + "UV_STREAM_READABLE": 2, + "__wglewDXLockObjectsNV": 2, + "*logmsg_reencode": 1, + "PyUnicode_Check": 1, + "WGL_DEPTH_BUFFER_BIT_ARB": 1, + "rfString_ToDouble": 1, + "h_matching_content_length": 3, + "clear_commit_marks": 1, + "uid": 2, + "__Pyx_c_pow": 3, + "unlink": 3, + "*val": 4, + "*process": 1, + "npy_intp": 1, + "GPERF_DOWNCASE": 1, + "url": 4, + "on_##FOR": 4, + "write_lock_irq": 1, + "mkd_document": 1, + "strstr": 2, + "WGL_DRAW_TO_BITMAP_ARB": 1, + "*entry": 2, + "WGL_TRANSPARENT_INDEX_VALUE_ARB": 1, + "CYTHON_COMPILING_IN_CPYTHON": 6, + "*repo": 7, + "hmem": 3, + "renameGetKeys": 2, + "wglDisableFrameLockI3D": 1, + "WGLEW_ATI_pixel_format_float": 1, + "12": 1, + "i": 410, + "work_bufs": 8, + "MKD_NOIMAGE": 1, + "RE_FILE_READ": 2, + "__pyx_skip_dispatch": 6, + "MKD_NOHTML": 1, + "*slave": 2, + "oom": 3, + "": 2, + "git_repository_workdir": 1, + "__pyx_t_2": 21, + "command": 2, + "__pyx_k__RuntimeError": 1, + "WGL_SHARE_DEPTH_ARB": 1, + "__pyx_doc_7sklearn_12linear_model_8sgd_fast_12LossFunction_2dloss": 1, + "string": 18, + "columns": 3, + "HPE_CB_headers_complete": 1, + ".soft_limit_seconds": 3, + "dictGenHashFunction": 5, + "uv_handle_t*": 1, + "ids": 1, + "GIT_VERSION": 1, + "git_setup_gettext": 1, + "*__pyx_n_s__n_iter": 1, + "SIGHUP": 1, + "B5": 1, + "dstLevel": 1, + "PyBytes_CheckExact": 1, + "*__pyx_r": 6, + "might_sleep": 1, + "O_WRONLY": 2, + "writeFrequency": 1, + "PyBytes_AsString": 2, + "__Pyx_c_quot": 2, + "PyObject_HEAD_INIT": 1, + "is_repository_shallow": 1, + "rpushCommand": 1, + "i_SELECT_RF_STRING_AFTER1": 1, + "i_ENCODING_": 4, + "hi": 5, + "__WGLEW_EXT_swap_control": 2, + "tag_end": 7, + ".lock": 1, + "WGL_SUPPORT_GDI_EXT": 1, + "length": 58, + "i_NVrfString_Init_nc": 3, + "i_rfLMSX_WRAP12": 2, + "HTTP_TRACE": 1, + "ANET_ERR": 2, + "GET": 2, + "WGL_TEXTURE_DEPTH_COMPONENT_NV": 1, + "//@": 1, + "i_NPSELECT_RF_STRING_AFTER": 1, + "*node": 2, + "calloc": 1, + "normal_url_char": 3, + "schedule": 1, + "rfString_Length": 5, + "__pyx_t_5numpy_int_t": 1, + "WGL_ARB_make_current_read": 2, + "argcp": 2, + "HTTP_DELETE": 1, + "h_transfer_encoding_chunked": 4, + "init_cpu_online": 1, + "wglewInit": 1, + "wglGetMscRateOML": 1, + "i_SELECT_RF_STRING_AFTERV17": 1, + "i_NPSELECT_RF_STRING_COUNT0": 1, + "i_rfString_Strip": 3, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_14Classification_loss": 1, + "same": 1, + "server.assert_file": 1, + "M": 1, + "WGL_TRANSPARENT_RED_VALUE_ARB": 1, + "*p": 9, + "WGLEW_GET_VAR": 49, + "HTTP_MKCOL": 2, + "server.aof_rewrite_time_start": 2, + "PFNWGLWAITFORMSCOMLPROC": 2, + "fprintf": 18, + "HANDLE*": 3, + "bytepos": 12, + "__pyx_v_t": 1, + "s_chunk_data_done": 3, + "call": 1, + "smoveCommand": 1, + "RF_SUCCESS": 14, + "i_SELECT_RF_STRING_REPLACE0": 1, + "options": 62, + "giterr_set": 1, + "wglChoosePixelFormatARB": 1, + "i_NPSELECT_RF_STRING_BEFOREV": 1, + "xffff": 1, + "numP": 1, + "i_OPTIONS_": 28, + "i_SELECT_RF_STRING_BEFOREV7": 1, + "__Pyx_PyBool_FromLong": 1, + "other": 16, + "ret": 142, + "__Pyx_IternextUnpackEndCheck": 1, + "h_C": 3, + "WGLEW_I3D_image_buffer": 1, + "server.stat_evictedkeys": 3, + "server": 1, + "wglewGetContext": 4, + "git_diff_workdir_to_index": 1, + "lstrP": 1, + "HTTP_BOTH": 1, + "HPVIDEODEV": 4, + "int64_t": 2, + "PyLong_CheckExact": 1, + "*md": 1, + "*view": 2, + "git_mutex_unlock": 2, + "cmd_upload_archive_writer": 1, + "*internal": 1, + "cpumask_set_cpu": 5, + "keepLength": 2, + "LL*": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Hinge_2loss": 1, + "i_NPSELECT_RF_STRING_BEFORE": 1, + "2010": 1, + "__cpuinit": 3, + "WGL_ACCUM_GREEN_BITS_EXT": 1, + "*item": 10, + "git_pool_strcat": 1, + "xD": 1, + "npy_int8": 1, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_SquaredHinge": 1, + "DECREF": 1, "done": 1, - "by": 1, + "hsetCommand": 1, + "UV_NAMED_PIPE": 2, + "http_errno": 11, + "HTTP_ERRNO_MAP": 3, + "WGL_SUPPORT_OPENGL_ARB": 1, + "*__pyx_n_s____test__": 1, + "xBF": 2, + "1": 2, + "hdc": 16, + "mm": 1, + "won": 1, + "WGL_FLOAT_COMPONENTS_NV": 1, + "__pyx_t_5numpy_ulong_t": 1, + "WGL_EXT_swap_control": 2, + "hglrc": 5, + "byteIndex_": 12, + "category": 2, + "sq_length": 2, + "HGLRC": 14, + "cmd_revert": 1, + "GLenum": 8, + "__pyx_k_3": 1, + "z": 47, + "*__pyx_vtabptr_7sklearn_12linear_model_8sgd_fast_SquaredHinge": 1, + "SetupContext": 3, + "RF_CR": 1, + "REDIS_REPL_CONNECTED": 3, + "listSetMatchMethod": 1, + "rfString_Init_f": 2, + "UINT*": 6, + "__wglewRestoreBufferRegionARB": 2, + "sP": 2, + "server.monitors": 2, + "server.commands": 1, + "dictEnableResize": 1, + "RE_UTF16_NO_SURRPAIR": 2, + "PyTypeObject": 25, + "i_ARG1_": 56, + "PyBytes_Type": 1, + "stride": 2, + "calls": 4, + "cmd_pack_refs": 1, + "__WGLEW_ARB_buffer_region": 2, + "bracket": 4, + "Py_TYPE": 7, + "uFlags": 1, + "": 1, + "estimateObjectIdleTime": 1, + "localtime": 1, + "i_SELECT_RF_STRING_BETWEEN5": 1, + "htmlblock_end_tag": 1, + "alloc_frozen_cpus": 2, + "cpumask_of": 1, + "EV_A_": 1, + "WGL_GREEN_SHIFT_ARB": 1, + "i_LIMSELECT_RF_STRING_AFTERV": 1, + "LL*1024*1024": 2, + "listDelNode": 1, + "WGL_OML_sync_control": 2, + "cmd_ls_files": 1, + "__pyx_k__h": 1, + "__Pyx_CodeObjectCacheEntry*": 2, + "foundN": 10, + "expireatCommand": 1, + "xFF0FFFF": 1, + "WGL_SHARE_STENCIL_ARB": 1, + "disable_nonboot_cpus": 1, + "just": 1, + "//if": 1, + "iDeviceIndex": 1, + "trace_repo_setup": 1, + "register_commit_graft": 2, + "_fseeki64": 1, + "void": 279, + "__WGLEW_AMD_gpu_association": 2, + "listFirst": 2, + "Cython": 1, + "CYTHON_INLINE": 65, + "safely": 1, + "PyTuple_GET_ITEM": 15, + "noMatch": 8, + "WGL_VIDEO_OUT_COLOR_AND_DEPTH_NV": 1, + "s_req_host_v6_start": 7, + "0x5a": 1, + "listNext": 2, + "server.repl_ping_slave_period": 1, + "HGPUNV": 5, + "git_cached_obj_freeptr": 1, + "PyLong_AsUnsignedLongLongMask": 1, + "CONFIG_IA64": 1, + "xF000": 2, + "we": 10, + "on_header_value": 1, + "character": 11, + "WGL_TEXTURE_2D_ARB": 1, + "*pfAttribFList": 2, + "STRIP_EXTENSION": 1, + "__Pyx_PyNumber_Int": 1, + "i_SELECT_RF_STRING_REMOVE3": 1, + "": 1, + "REDIS_CLIENT_LIMIT_CLASS_NORMAL": 3, + "cc": 24, + "CHECKOUT": 2, + "*__Pyx_GetName": 1, + "std": 8, + "PyString_Repr": 1, + "HPE_CB_##FOR": 2, + "*encoding": 2, + "git__is_sizet": 1, + "unless": 1, + "GIT_DIFF_REVERSE": 3, + "PySequence_Check": 1, + "Python": 2, + "temp.byteLength": 1, + "WGL_GPU_NUM_PIPES_AMD": 1, + "wglGetPixelFormatAttribivEXT": 1, + "minPos": 17, + "wglBindVideoImageNV": 1, + "GLfloat": 3, + "hDc": 6, + "old_file.size": 1, + "GLint": 18, + "num": 24, + "bufputc": 2, + "memmove": 1, + "slaveid": 3, + "aof_fsync": 1, + "dictType": 8, + "need_8bit_cte": 2, + "WGLEW_EXT_pixel_format_packed_float": 1, + "rfString_Append": 5, + "WGLEW_ARB_create_context_robustness": 1, + "*diff_delta__dup": 1, + "*pattern": 1, + "cpu_all_bits": 2, + "cpu_to_node": 1, + "LUA_GCCOUNT": 1, + "HEADER_OVERFLOW": 1, + "__wglewCreateAssociatedContextAMD": 2, + "*git_cache_try_store": 1, + "getrusage": 2, + "server.stat_peak_memory": 5, + "querybuf_peak": 2, + "close_fd": 2, + "__pyx_k__L": 1, + "delta_type": 8, + "bioInit": 1, + "wglDeleteDCNV": 1, + "pager_program": 1, + "*__pyx_ptype_7sklearn_5utils_11seq_dataset_ArrayDataset": 1, + "reexecute_byte": 7, + "aeGetApiName": 1, + "server.masterport": 2, + "server.bindaddr": 2, + "struct_alignment": 1, + "REDIS_SHUTDOWN_SAVE": 1, + "populateCommandTable": 2, + "publishCommand": 1, + "srandmemberCommand": 1, + "http_parser_execute": 2, + "GIT_OBJ_BLOB": 1, + "i_SELECT_RF_STRING_CREATELOCAL": 1, + "xmalloc": 2, + "slave": 3, + "unblockClientWaitingData": 1, + "zinterstoreCommand": 1, + "pool": 12, + "GIT_DELTA_MODIFIED": 3, + "__WGLEW_ATI_render_texture_rectangle": 2, + "fail": 19, + "**diff_ptr": 1, + "__PYX_HAVE_API__sklearn__linear_model__sgd_fast": 1, + "nr_calls": 9, + "mutex": 1, + "authenticated": 3, + "clientsCronResizeQueryBuffer": 2, + "WGLEW_3DL_stereo_control": 1, + "sq_item": 2, + "i_NPSELECT_RF_STRING_REMOVE0": 1, + "": 2, + "register_shallow": 1, "non": 1, - "before": 1, - "sliding.": 1, - "left.surname": 2, - "right.surname": 4, - "[": 4, - "]": 4, - "all": 1, - "//This": 1, - "should": 1, - "not": 1, - "generate": 1, - "a": 1, - "self": 1 + "LOG_DEBUG": 1, + "INVALID_FRAGMENT": 1, + "wglEnumerateVideoDevicesNV": 1, + "keepstr": 5, + "i_rfLMS_WRAP3": 4, + "rfString_Iterate_Start": 6, + "UTF": 17, + "__WGLEW_EXT_framebuffer_sRGB": 2, + "B": 9, + "xFC0": 4, + "RF_NEWLINE_CRLF": 1, + "__pyx_k_20": 1, + "CONNECT": 2, + "GIT_ATTR_FNMATCH_NEGATIVE": 1, + "rfString_Beforev": 4, + "*one": 1, + "i_rfLMSX_WRAP5": 9, + "*pSize": 1, + "LPVOID*": 1, + "nosave": 2, + "exitFromChild": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12SquaredHinge_2loss": 1, + "ARRAY_SIZE": 1, + "WGL_DRAW_TO_PBUFFER_ARB": 1, + "WGLEW_ARB_framebuffer_sRGB": 1, + "idle_cpu": 1, + "i_SELECT_RF_STRING_INIT_NC0": 1, + "__wglewDestroyDisplayColorTableEXT": 2, + "PFNWGLLOADDISPLAYCOLORTABLEEXTPROC": 2, + "wglIsEnabledGenlockI3D": 1, + "*matcher": 1, + "CONTENT_LENGTH": 4, + "NOTIFY_DONE": 1, + "server.lastbgsave_status": 3, + "setexCommand": 1, + "LOCK": 2, + "WGL_NV_render_depth_texture": 2, + "uVideoSlot": 2, + "i_NVrfString_CreateLocal": 3, + "wglGetContextGPUIDAMD": 1, + "shared.colon": 1, + "PFNWGLBINDTEXIMAGEARBPROC": 2, + "cast": 1, + "maxCount": 1, + "i_SELECT_RF_STRING_CREATE_NC": 1, + "cpu_online_mask": 3, + "MKD_AUTOLINK": 1, + "redisDb": 3, + "pingCommand": 2, + "port": 7, + "WGL_BACK_COLOR_BUFFER_BIT_ARB": 1, + "size": 120, + "count": 17, + "__WGLEW_EXT_extensions_string": 2, + "MSEARCH": 1, + "PFNWGLDXREGISTEROBJECTNVPROC": 2, + "hDevice": 9, + "*buffer": 6, + "megabytes": 1, + "REDIS_MAXIDLETIME": 1, + "o1": 7, + "PyObject*": 24, + "is_unicode": 1, + "i_rfString_Replace": 6, + "WGL_I3D_gamma": 2, + "setup_path": 1, + "PyUnicode_KIND": 1, + "__pyx_k__y": 1, + "REDIS_LUA_TIME_LIMIT": 1, + "REDIS_SHARED_BULKHDR_LEN": 1, + "rfString_Init_nc": 4, + "contiuing": 1, + "charPos": 8, + "WGL_TRANSPARENT_GREEN_VALUE_ARB": 1, + "PyInt_AsSsize_t": 3, + "WGL_BIND_TO_TEXTURE_RGB_ARB": 1, + "*__pyx_vtabptr_7sklearn_12linear_model_8sgd_fast_Hinge": 1, + "__WGLEW_EXT_make_current_read": 2, + "__pyx_f_7sklearn_12linear_model_8sgd_fast_min": 1, + "encoding": 14, + "WGL_NEED_SYSTEM_PALETTE_EXT": 1, + "sigaction": 6, + "dictGetKey": 4, + "&": 442, + "endinternal": 1, + "cmd_checkout_index": 1, + "deleted": 1, + "*var": 1, + "rfFtell": 2, + "WGL_CONTEXT_LAYER_PLANE_ARB": 1, + "lrangeCommand": 1, + "always": 2, + "yajl_status_to_string": 1, + "WGL_CONTEXT_PROFILE_MASK_ARB": 1, + "__Pyx_TypeInfo": 2, + "__wglewGetDigitalVideoParametersI3D": 2, + "": 2, + "o": 80, + "WGLEW_AMD_gpu_association": 1, + "not_shallow_flag": 1, + "PyBytes_Size": 1, + "s_header_almost_done": 6, + ".hcpu": 1, + "signal": 2, + "i_OUTSTR_": 6, + "*column_data": 1, + "NOTIFY_OK": 1, + "REDIS_LIST_MAX_ZIPLIST_VALUE": 1, + "__wglewLockVideoCaptureDeviceNV": 2, + "PFNWGLQUERYCURRENTCONTEXTNVPROC": 2, + "*__pyx_n_s__order": 1, + "ctime.seconds": 2, + "__Pyx_StructField_": 2, + "WGL_FRAMEBUFFER_SRGB_CAPABLE_EXT": 1, + "cb.table_cell": 3, + "temp.bytes": 1, + "uptime/": 1, + "REDIS_EXPIRELOOKUPS_PER_CRON/4": 1, + "PFNWGLDELETEDCNVPROC": 2, + "WGLEW_GET_FUN": 120, + "WGL_GAMMA_EXCLUDE_DESKTOP_I3D": 1, + "PyLong_FromUnicode": 1, + "PFNWGLGETGAMMATABLEI3DPROC": 2, + "sscanf": 1, + "PGPU_DEVICE": 1, + "pathspec": 15, + "decode": 6, + "pipe": 1, + "attempting": 2, + "replstate": 1, + "wglWaitForMscOML": 1, + "PY_SSIZE_T_MAX": 1, + "PyNumber_InPlaceDivide": 1, + "rndr_popbuf": 2, + "server.clients_to_close": 1, + "UF_HOST": 3, + "WGL_ARB_framebuffer_sRGB": 2, + "*commit_list_insert": 1, + "cpu_maps_update_done": 9, + "RF_OPTION_FGETS_READBYTESN": 5, + "fuPlanes": 1, + "i_rfLMSX_WRAP18": 2, + "WGL_EXT_display_color_table": 2, + "cover": 1, + "RUSAGE_SELF": 1, + "commandTableDictType": 2, + "RF_HEXLE_US": 4, + "rfFback_UTF8": 2, + "PFNWGLBINDDISPLAYCOLORTABLEEXTPROC": 2, + "commit_graft": 13, + "FOR##_mark": 7, + "find_lock_task_mm": 1, + "wglewIsSupported": 2, + "*pMissedFrames": 1, + "#endif//": 1, + "addReplyErrorFormat": 1, + "xf": 1, + "decrbyCommand": 1, + "__int8": 2, + "alloc_nr": 1, + "start_state": 1, + "present": 2, + "*__pyx_n_s__power_t": 1, + "*v": 3, + "__WGLEW_NV_multisample_coverage": 2, + "<<": 56, + "*__pyx_k_tuple_5": 1, + "__Pyx_PyUnicode_READ_CHAR": 2, + "s_req_http_H": 3, + "MKD_NOTABLES": 1, + "RE_UTF8_ENCODING": 2, + "*1000000": 1, + "GLuint": 9, + "strcasecmp": 13, + "__wglewGetMscRateOML": 2, + "wglResetFrameCountNV": 1, + "i_SELECT_RF_STRING_BEFORE3": 1, + "server.sofd": 9, + "rfUTILS_SwapEndianUS": 10, + "ENOSYS": 1, + "WGL_STEREO_ARB": 1, + "shared.nullbulk": 1, + "O_RDONLY": 1, + "FILE": 3, + "git_repository": 7, + "*db": 3, + "*__pyx_vtabptr_7sklearn_5utils_11seq_dataset_CSRDataset": 1, + "flag": 1, + "current": 5, + "RF_UTF32_BE": 3, + "RF_FAILURE": 24, + "REDIS_REPL_NONE": 1, + "scriptCommand": 2, + "giterr_clear": 1, + "a_date": 2, + "search": 1, + "shared.subscribebulk": 1, + "tryResizeHashTables": 2, + "wglReleasePbufferDCARB": 1, + "rfString_Afterv": 4, + "rfFgets_UTF32BE": 1, + "run_add_interactive": 1, + "__Pyx_DelAttrString": 2, + "many": 1, + "offset": 1, + "lifo": 1, + "Memory": 4, + "typeCommand": 1, + "http_parser_type": 3, + "wglGetGPUIDsAMD": 1, + "suboffsets": 1, + "shared.wrongtypeerr": 1, + "WGL_COLOR_BITS_EXT": 1, + "PFNWGLGENLOCKSOURCEEDGEI3DPROC": 2, + "nmode": 10, + "header_end": 7, + "O_CREAT": 2, + "save_commit_buffer": 3, + "PyInt_AsUnsignedLongLongMask": 1, + "flags": 89, + "bytePos": 23, + "v2": 26, + "wglReleaseVideoImageNV": 1, + "__Pyx_minusones": 1, + "7": 1, + "PFNWGLDESTROYDISPLAYCOLORTABLEEXTPROC": 2, + "*ver_minor": 2, + "h_general": 23, + "byteI": 7, + "CB_url": 1, + "PFNWGLENUMGPUSNVPROC": 2, + "__wglewReleaseTexImageARB": 2, + "oitem": 29, + "cmd_show_ref": 1, + "__pyx_t_7sklearn_12linear_model_8sgd_fast_DOUBLE": 4, + "REDIS_MAXMEMORY_VOLATILE_RANDOM": 1, + "REDIS_RUN_ID_SIZE": 2, + "CB_body": 1, + "srcTarget": 1, + "__WGLEW_EXT_pbuffer": 2, + "return": 529, + "rfFgets_UTF16BE": 2, + "by": 1, + "pid_t": 2, + "C3": 1, + "dtype": 1, + "possible": 2, + "shared.masterdownerr": 2, + "lindexCommand": 1, + "i_rfString_StripEnd": 3, + "PyNumber_Check": 2, + "use_noid": 2, + "HTTP_PROPPATCH": 1, + "raw_notifier_chain_unregister": 1, + "rcVirtualScreen": 1, + "s_res_HTTP": 3, + "way": 1, + "act.sa_mask": 2, + "robj": 7, + "__pyx_L3_error": 18, + "npy_int64": 1, + "run_argv": 2, + "i_NPSELECT_RF_STRING_FWRITE0": 1, + "mem_used": 9, + "extensions": 1, + "PY_VERSION_HEX": 11, + "rfString_Init_fUTF8": 3, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_11SquaredLoss_4__reduce__": 1, + "WGL_ACCESS_WRITE_DISCARD_NV": 1, + "__pyx_t_5numpy_ulonglong_t": 1, + "rfFgetc_UTF16LE": 4, + "__pyx_t_5numpy_long_t": 1, + "cond": 1, + "fit": 3, + "sds": 13, + "WGL_NEED_PALETTE_ARB": 1, + "c.cmd": 1, + "i_rfString_CreateLocal1": 3, + "*type": 4, + "STDERR_FILENO": 2, + "arity": 3, + "needing": 1, + "WGL_AUX_BUFFERS_ARB": 1, + "git_hash_final": 1, + "*__pyx_n_s__weights": 1, + "WGL_BIND_TO_TEXTURE_RGBA_ARB": 1, + "PFNWGLRELEASEVIDEOCAPTUREDEVICENVPROC": 2, + "cmd_version": 1, + "WGL_SWAP_METHOD_EXT": 1, + "old_file.oid": 3, + "PyComplex_Check": 1, + "wglSwapIntervalEXT": 1, + "__Pyx_InitStrings": 1, + "WGLEW_EXT_depth_float": 1, + "KERN_WARNING": 3, + "listAddNodeTail": 1, + "dictSdsHash": 4, + "WGL_GPU_OPENGL_VERSION_STRING_AMD": 1, + "cmd_check_attr": 1, + "*text": 1, + "rfFback_UTF32LE": 2, + "git_iterator_for_index_range": 2, + "nr_parent": 3, + "__Pyx_GetItemInt_List": 1, + "s_res_first_http_minor": 3, + "#string": 1, + "R_NegInf": 2, + "uv_process_kill": 1, + "uint8_t": 6, + "WGLEWContext*": 2, + "d": 16, + "__Pyx_RefNannyAPIStruct": 3, + "i_SELECT_RF_STRING_FIND3": 1, + "__wglewCopyImageSubDataNV": 2, + "afterstr": 5, + "*puBlue": 2, + "CPU_POST_DEAD": 1, + "CPU_TASKS_FROZEN": 2, + "numclients": 3, + "WGL_VIDEO_OUT_FIELD_2": 1, + "PFNWGLDXSETRESOURCESHAREHANDLENVPROC": 2, + "__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Huber___init__": 1, + "rfString_Remove": 3, + "Macros": 1, + "activeExpireCycle": 2, + "PyLong_AS_LONG": 1, + "wglGetPbufferDCARB": 1, + "options.args": 1, + "B0": 1, + "wglQueryFrameLockMasterI3D": 1, + "__pyx_t_5numpy_uintp_t": 1, + "*__pyx_n_s__nonzero": 1, + "sq_norm": 1, + "i_rfString_Count": 5, + "*__pyx_m": 1, + "unhex_val": 7, + "MASK_DECLARE_2": 3, + "ip": 4, + "__wglewDeleteDCNV": 2, + "git_buf_truncate": 1, + "allowComments": 4, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12LossFunction_loss": 2, + "h_CON": 3, + "PFNWGLCREATEASSOCIATEDCONTEXTATTRIBSAMDPROC": 2, + "*from_list": 1, + "String": 11, + "RE_UTF8_INVALID_SEQUENCE_CONBYTE": 6, + "wglDXSetResourceShareHandleNV": 1, + "*output_encoding": 2, + "*kwds": 1, + "git_attr_fnmatch__parse": 1, + "__WGLEW_I3D_digital_video_control": 2, + "__wglewEnumGpusFromAffinityDCNV": 2, + "piValue": 8, + "WGL_BACK_LEFT_ARB": 1, + "prefix.size": 1, + "normally": 1, + "e.t.c.": 1, + "function_name": 1, + "__pyx_k__any": 1, + ".watched_keys": 1, + "WIFSIGNALED": 2, + "remainder": 3, + "WGL_BIND_TO_VIDEO_RGB_AND_DEPTH_NV": 1, + "i_RIGHTSTR_": 6, + "WGL_STEREO_EMITTER_ENABLE_3DL": 1, + "46": 1, + "cb.table_row": 2, + "rfString_Create": 4, + "i_SELECT_RF_STRING_AFTERV12": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12SquaredHinge_4dloss": 1, + "not": 6, + "switch": 46, + "clean": 1, + "trackOperationsPerSecond": 2, + "lpopCommand": 1, + "R_Zero": 2, + "__pyx_t_5numpy_uint8_t": 1, + "Py_DECREF": 2, + "otherP": 4, + "RF_LMS": 6, + "uv__new_sys_error": 1, + "WGL_ACCESS_READ_WRITE_NV": 1, + "nongit_ok": 2, + "*module_name": 1, + "msg": 10, + "hmsetCommand": 1, + "WGL_TEXTURE_RGB_ARB": 1, + "PY_LONG_LONG": 5, + "Unicode": 1, + "WGL_CONTEXT_CORE_PROFILE_BIT_ARB": 1, + "*rev1": 1, + "keepChars": 4, + "wglSwapLayerBuffersMscOML": 1, + "i_SELECT_RF_STRING_BEFOREV14": 1, + "commit_graft_nr": 5, + "git_vector_init": 3, + "RF_OPTION_SOURCE_ENCODING": 30, + "WGL_COVERAGE_SAMPLES_NV": 1, + "cmd_merge": 1, + "limit.rlim_cur": 2, + "updateLRUClock": 3, + "createStringObject": 11, + "i_NPSELECT_RF_STRING_BEFOREV1": 1, + "__Pyx_PyInt_AsSignedShort": 1, + "__Pyx_RefNannyFinishContext": 14, + "pager_config": 3, + "YA_FREE": 2, + "wglDXUnregisterObjectNV": 1, + "Refu": 2, + "*__pyx_n_s__count": 1, + "s_chunk_data": 3, + "AE_READABLE": 2, + "migrateCommand": 1, + "INVALID_CONSTANT": 1, + "__cdecl": 2, + "old_prefix": 2, + "PyFloat_CheckExact": 1, + "PySet_CheckExact": 2, + "PyInt_CheckExact": 1, + "*body_mark": 1, + ".dict": 9, + "RE_UTF8_INVALID_SEQUENCE_INVALID_BYTE": 6, + "": 1, + "__Pyx_PyInt_AsChar": 1, + "wglAssociateImageBufferEventsI3D": 1, + "__pyx_print_kwargs": 1, + "__pyx_k____test__": 1, + "__wglewDisableGenlockI3D": 2, + "BUFFER_SPAN": 9, + "REDIS_STRING": 31, + "POLLIN": 1, + "GIT_VECTOR_GET": 2, + "cmd_commit_tree": 1, + "__Pyx_PyInt_AsUnsignedInt": 1, + "WGL_CONTEXT_ROBUST_ACCESS_BIT_ARB": 1, + "replace": 3, + "backgroundRewriteDoneHandler": 1, + "cmd_reflog": 1, + "*__pyx_t_3": 3, + "PyUnicode_GET_SIZE": 1, + "wglGetCurrentReadDCEXT": 1, + "server.lpushCommand": 1, + "O_APPEND": 2, + "HTTP_PARSER_ERRNO": 10, + "onto_pool": 7, + "da": 2, + "subValues": 8, + "flushallCommand": 1, + "*http_errno_name": 1, + "__Pyx_PyNumber_InPlaceDivide": 2, + "pp_user_info": 1, + "commit_extra_header": 7, + "RF_MATCH_WORD": 5, + "*__pyx_kp_u_6": 1, + "cb.doc_header": 2, + "http_errno_description": 1, + "__set_current_state": 1, + "clientsCronHandleTimeout": 2, + "i_SELECT_RF_STRING_INIT": 1, + ".data": 1, + "HPE_INVALID_INTERNAL_STATE": 1, + "group": 3, + "__WGLEW_3DFX_multisample": 2, + "__pyx_refnanny": 8, + "u": 18, + "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_Huber": 2, + "*cache": 4, + "i_NPSELECT_RF_STRING_AFTERV": 1, + "PFNWGLGETGENLOCKSAMPLERATEI3DPROC": 2, + "__pyx_obj_7sklearn_5utils_11seq_dataset_SequentialDataset": 5, + "lastBytePos": 4, + "": 1, + "server.arch_bits": 3, + "cmd_struct": 4, + "GIVEREF": 1, + "cmd": 46, + "src": 16, + "HTTP_MERGE": 1, + "RF_UTF16_BE": 7, + "shared.sameobjecterr": 1, + "__wglewEnumGpusNV": 2, + "PyArray_Descr": 1, + "*__pyx_n_s_21": 1, + "byteLength*2": 1, + "null": 4, + "flushSlavesOutputBuffers": 1, + "sdsRemoveFreeSpace": 1, + "dbsizeCommand": 1, + "cmd_merge_base": 1, + "PFNWGLRESTOREBUFFERREGIONARBPROC": 2, + "__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Hinge___init__": 1, + "PyUnicodeObject": 1, + "i_SELECT_RF_STRING_BETWEEN0": 1, + "WGL_EXT_pixel_format": 2, + "reading": 1, + "hdelCommand": 1, + "*nitem": 2, + "*suboffsets": 1, + "__pyx_f_7sklearn_12linear_model_8sgd_fast_sqnorm": 1, + "A5": 3, + "F02": 1, + "PyUnicode_IS_READY": 1, + "mod": 13, + "UTF16": 4, + "LOG_NDELAY": 1, + "find_commit_subject": 2, + "*__pyx_ptype_7sklearn_5utils_13weight_vector_WeightVector": 1, + "__pyx_k__c": 1, + "s_req_schema_slash_slash": 6, + "charBLength": 5, + "s_res_http_major": 3, + "acceptTcpHandler": 1, + "redisLog": 33, + "__Pyx_BUILTIN_MODULE_NAME": 2, + "PyBytes_FromFormat": 1, + "__pyx_f_7sklearn_12linear_model_8sgd_fast_10Regression_loss": 1, + "yajl_buf_alloc": 1, + "rfStringX_FromString_IN": 1, + "rdbSave": 1, + "listCreate": 6, + "xC1": 1, + "*__pyx_v_self": 52, + "**next": 2, + "cmd_verify_tag": 1, + "__Pyx_NAMESTR": 2, + "table": 1, + "*__pyx_n_s__y": 1, + "orSize": 5, + "F0": 1, + "maybe_modified": 2, + "__pyx_k__epoch": 1, + "__Pyx_PyInt_AsSignedChar": 1, + "*old_iter": 2, + "PyBytes_AS_STRING": 1, + "HTTP_SUBSCRIBE": 2, + "dstTarget": 1, + "npy_int16": 1, + "i_PLUSB_WIN32": 2, + "*nr_calls": 1, + "mkd_cleanup": 2, + "uv__stream_open": 1, + "WGL_BIND_TO_VIDEO_RGBA_NV": 1, + "cmd_update_server_info": 1, + "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_LossFunction": 5, + "__pyx_v_shuffle": 1, + "format_commit_message": 1, + "cmd_rerere": 1, + "compiling": 2, + "WGLEW_I3D_digital_video_control": 1, + "i_SELECT_RF_STRING_COUNT3": 1, + "F_CONNECTION_CLOSE": 3, + "GIT_MODE_PERMS_MASK": 1, + "handle_internal_command": 3, + "define": 14, + "xff": 3, + "peek": 5, + "CB_header_value": 1, + "*__pyx_filename": 7, + "PyObject_Call": 6, + "row_work": 4, + "MIN": 3, + "UTF32": 4, + "getClientOutputBufferMemoryUsage": 1, + "__wglewSwapBuffersMscOML": 2, + "PFNWGLBEGINFRAMETRACKINGI3DPROC": 2, + "*__pyx_b": 1, + "npy_long": 1, + "wglGetPixelFormatAttribivARB": 1, + "__pyx_v_epsilon": 2, + "i_NPSELECT_RF_STRING_FIND": 1, + "cmd_status": 1, + "endianess": 40, + "*__pyx_n_s__weight_neg": 1, + "wglGenlockSourceDelayI3D": 1, + "bufrelease": 3, + "RSTRING_PTR": 2, + "server.stat_rejected_conn": 2, + "getpid": 7, + "opts.pathspec": 2, + "__stdcall": 2, + "wglQueryPbufferEXT": 1, + "header_field_mark": 2, + "*utf32": 1, + "RE_INPUT": 1, + "server.ops_sec_last_sample_time": 3, + "c_ru.ru_utime.tv_usec/1000000": 1, + "redisLogFromHandler": 2, + "__wglewQueryFrameTrackingI3D": 2, + "h_CO": 3, + "rb_rdiscount_toc_content": 2, + "while": 70, + "PFNWGLSETDIGITALVIDEOPARAMETERSI3DPROC": 2, + "IS_ALPHA": 5, + "REDIS_SLOWLOG_MAX_LEN": 1, + "*lookup_commit_reference_gently": 2, + "npy_int32": 1, + "sort_in_topological_order": 1, + "End": 2, + "HTTP_METHOD_MAP": 3, + "WGL_NUM_VIDEO_CAPTURE_SLOTS_NV": 1, + "__Pyx_c_negf": 2, + "rfString_GetChar": 2, + "rfPopen": 2, + "strtol": 2, + "success": 4, + "uv_stdio_container_t*": 4, + "hVideoDevice": 4, + "*sign_commit": 2, + "__pyx_v_intercept_decay": 1, + "WGL_DEPTH_FLOAT_EXT": 1, + "module": 3, + "strcpy": 4, + "WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_RGBA_NV": 1, + "WGL_AUX8_ARB": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_25SquaredEpsilonInsensitive_2loss": 1, + "documentation": 1, + "__pyx_k__Zd": 1, + "git_hash_init": 1, + "__pyx_vtabstruct_7sklearn_5utils_11seq_dataset_SequentialDataset": 4, + "HTTP_MAX_HEADER_SIZE": 2, + "core_initcall": 2, + "RE_UTF8_INVALID_SEQUENCE": 2, + "rfString_Create_fUTF8": 2, + "guards": 2, + "C9": 1, + "__pyx_k__rho": 1, + "c.value": 3, + "*__pyx_kp_s_2": 1, + "PyBoolObject": 1, + "mem_online_node": 1, + "as": 4, + "PyIndex_Check": 2, + "certainly": 3, + "O_RDWR": 2, + "http_parser_init": 2, + "WGL_TEXTURE_FLOAT_RG_NV": 1, + "IS_HEX": 2, + "Check_Type": 2, + "setuid": 1, + "opening": 2, + "i_NPSELECT_RF_STRING_REPLACE1": 1, + "hPbuffer": 14, + "__Pyx_RefNannyDeclarations": 11, + "__Pyx_check_binary_version": 1, + "*diff_delta__merge_like_cgit": 1, + "i_SELECT_RF_STRING_AFTERV6": 1, + "__pyx_k__eta": 1, + "WGLEW_EXT_multisample": 1, + "": 1, + "codepoint": 47, + "__pyx_k__t": 1, + "i_rfString_Assign": 3, + "rfString_Assign_fUTF8": 2, + "": 2, + "diff_prefix_from_pathspec": 4, + "__Pyx_TypeCheck": 1, + "REDIS_REPL_SEND_BULK": 1, + "INVALID_HEADER_TOKEN": 1, + "__wglewFreeMemoryNV": 2, + "fn": 5, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Hinge_4dloss": 1, + "conj": 3, + "CLOSE": 4, + "MKACTIVITY": 2, + "PyString_GET_SIZE": 1, + "diff_delta__merge_like_cgit": 1, + "onto_new": 6, + "*argc": 1, + "s_req_path": 8, + "does": 1, + "wait3": 1, + "": 1, + "CONFIG_HOTPLUG_CPU": 2, + "__wglewGetVideoDeviceNV": 2, + "wglQueryFrameTrackingI3D": 1, + "notinherited": 1, + "die": 5, + "WGL_DEPTH_BITS_EXT": 1, + "*sha1": 16, + "parse_table_header": 1, + "_zonerefs": 1, + "server.repl_timeout": 1, + "off": 8, + "j": 206, + "notes": 1, + "COMMIT_H": 2, + "*res": 2, + "getNodeByQuery": 1, + "shared.del": 1, + "server.activerehashing": 2, + "WGL_VIDEO_OUT_DEPTH_NV": 1, + "cmd_blame": 2, + "": 1, + "RE_STRING_TOFLOAT": 1, + "LL*1024*1024*1024": 1, + "xstrdup": 2, + "__pyx_t_3": 39, + "__wglewCreatePbufferEXT": 2, + "LOG_NOWAIT": 1, + "commit_list": 35, + "extended": 3, + "bytesConsumed": 2, + "statStr": 6, + "RF_HEXGE_US": 4, + "B6": 1, + "__wglewSetGammaTableParametersI3D": 2, + "WGL_RED_BITS_ARB": 1, + "MASK_DECLARE_8": 9, + "CPU_DOWN_FAILED": 2, + "backwards": 1, + "#pragma": 1, + "__Pyx_c_prodf": 2, + "WGL_FRAMEBUFFER_SRGB_CAPABLE_ARB": 1, + "WGL_STENCIL_BUFFER_BIT_ARB": 1, + "i_SELECT_RF_STRING_AFTER2": 1, + "REDIS_ZSET_MAX_ZIPLIST_ENTRIES": 1, + "ops_sec": 3, + "expired": 4, + "hvalsCommand": 1, + "__wglewChoosePixelFormatARB": 2, + "given": 5, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_SquaredEpsilonInsensitive": 6, + "git_mutex_lock": 2, + "": 1, + "parents": 4, + "the": 91, + "i_rfLMSX_WRAP13": 2, + "__wglewQueryGenlockMaxSourceDelayI3D": 2, + "__Pyx_c_diff": 2, + "PY_SSIZE_T_MIN": 1, + "WGLEW_EXT_pixel_format": 1, + "*commit_buffer": 2, + "s_req_http_major": 3, + "register_cpu_notifier": 2, + "server.rdb_child_pid": 12, + "monitorCommand": 2, + "uv_process_t": 1, + "WGL_SAMPLE_BUFFERS_ARB": 1, + "cmd_commit": 1, + "__pyx_v_weight_neg": 1, + "WGL_AUX7_ARB": 1, + "codePoint": 18, + "allocate": 1, + "key": 9, + "S_ISREG": 1, + "WGL_ARB_buffer_region": 2, + "server.stat_starttime": 2, + "i_NPSELECT_RF_STRING_COUNT1": 1, + "PyUnicode_READ_CHAR": 1, + "WGLEW_ARB_render_texture": 1, + "stat": 3, + "__wglewGetCurrentAssociatedContextAMD": 2, + "i_SELECT_RF_STRING_AFTERV18": 1, + "PyString_Concat": 1, + "stack_free": 2, + "tcd_param": 2, + "slowlogInit": 1, + "uv_spawn": 1, + "LONG_LONG": 1, + "s_res_http_minor": 3, + "DEFINE_MUTEX": 1, + "hexistsCommand": 1, + "EINVAL": 6, + "INVALID_PATH": 1, + "int8_t": 3, + "__wglewDXRegisterObjectNV": 2, + "zmalloc": 2, + "__pyx_k_10": 1, + "wglSetStereoEmitterState3DL": 1, + "i_SELECT_RF_STRING_REPLACE1": 1, + "OPTIONS": 2, + "i_SELECT_RF_STRING_BEFOREV8": 1, + "PyString_AsStringAndSize": 1, + "zmalloc_used_memory": 8, + "__pyx_t_7sklearn_5utils_13weight_vector_DOUBLE": 2, + "WGL_AUX0_ARB": 1, + "GIT_DIFF_RECURSE_UNTRACKED_DIRS": 1, + "closing": 1, + "name": 28, + "**argnames": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_11SquaredLoss_loss": 1, + "git__malloc": 3, + "sigemptyset": 2, + "shared.messagebulk": 1, + "lnos": 4, + "__Pyx_GetItemInt_Fast": 2, + "queueMultiCommand": 1, + "server.unixsocket": 7, + "err": 38, + "ferror": 2, + "num_max": 1, + "s_res_HTT": 3, + "build_all_zonelists": 1, + "server.masterhost": 7, + "__wglewSendPbufferToVideoNV": 2, + "tp_as_mapping": 3, + "RF_SELECT_FUNC_IF_NARGGT2": 2, + "iWidth": 2, + "*url_mark": 1, + "strncpy": 3, + "pos": 7, + "__pyx_k__verbose": 1, + "*X_indptr_ptr": 1, + "*rcbuffer": 1, + "s_headers_done": 4, + "xE": 2, + "Quitting": 2, + "HTTP_PARSER_VERSION_MINOR": 1, + "Ftelll": 1, + "i_DECLIMEX_": 121, + "PyLongObject": 2, + "__Pyx_GetVtable": 1, + "uv__process_stdio_flags": 2, + "*puGreen": 2, + "commands": 3, + "yajl_callbacks": 1, + "object_type": 1, + "s_req_port": 6, + "CALLBACK_DATA": 10, + "freePubsubPattern": 1, + "shared.plus": 1, + "PFNWGLBINDVIDEOCAPTUREDEVICENVPROC": 2, + "git_more_info_string": 2, + "pathspec.contents": 1, + "*barrier": 1, + "WGL_COLOR_BITS_ARB": 1, + "PyString_Size": 1, + "server.aof_state": 7, + "fread": 12, + "uv__handle_start": 1, + "DWORD*": 1, + "wglDestroyDisplayColorTableEXT": 1, + "PyBytesObject": 1, + "*columns": 2, + "temp.bIndex": 2, + "rusage": 1, + "server.lastsave": 3, + "sinterstoreCommand": 1, + "wglCopyImageSubDataNV": 1, + "__pyx_k_4": 1, + "{": 1528, + "__pyx_k__isinf": 1, + "hsetnxCommand": 1, + "uv__make_socketpair": 2, + "WGL_NV_present_video": 2, + "__WGLEW_NV_DX_interop": 2, + "lookup_commit": 2, + "**type": 1, + "GIT_DIFFCAPS_ASSUME_UNCHANGED": 2, + "git_diff_tree_to_tree": 1, + "PyBuffer_Release": 1, + "GOTREF": 1, + "REDIS_CLIENT_LIMIT_CLASS_SLAVE": 3, + "redisCommandTable": 5, + "undo": 5, + "GIT_DELTA_IGNORED": 5, + "PyString_DecodeEscape": 1, + "rfString_Append_f": 2, + "PyObject_SetAttrString": 2, + "cb.doc_footer": 2, + "server.lua_time_limit": 1, + "UF_SCHEMA": 2, + "manipulation": 1, + "git_mutex_init": 1, + "s_chunk_data_almost_done": 3, + "realloc": 1, + "__pyx_v_alpha": 1, + "WGL_GREEN_BITS_EXT": 1, + "expand_tabs": 1, + "*numberP": 1, + "server.assert_line": 1, + "brpopCommand": 1, + ".soft_limit_bytes": 3, + "field_set": 5, + "RF_String**": 2, + "*__pyx_k_tuple_11": 1, + "__pyx_k__i": 1, + "#if": 92, + "WGL_EXT_depth_float": 2, + "go": 8, + "": 1, + "__Pyx_c_eq": 2, + "rfString_Assign_fUTF16": 2, + "__wglewGetPbufferDCEXT": 2, + "chdir": 2, + "WGL_GENLOCK_SOURCE_DIGITAL_FIELD_I3D": 1, + "empty_cell": 2, + "s_header_value_start": 4, + "tv.tv_usec/1000": 1, + "wants": 2, + "decoded": 3, + "__wglewEnumGpuDevicesNV": 2, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_11SquaredLoss_2dloss": 1, + "PFNWGLDESTROYPBUFFEREXTPROC": 2, + "wglBindTexImageARB": 1, + "PFNWGLMAKECONTEXTCURRENTEXTPROC": 2, + "HTTP_STRERROR_GEN": 3, + "cpumask_clear": 2, + "codepoints": 44, + "newLineFound": 1, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_EpsilonInsensitive": 1, + "mem_tofree": 3, + "backgroundSaveDoneHandler": 1, + "dictGetSignedIntegerVal": 1, + "new": 4, + "*__pyx_vtabptr_7sklearn_12linear_model_8sgd_fast_Huber": 1, + "_strnicmp": 1, + "va_arg": 2, + "PFNWGLCOPYIMAGESUBDATANVPROC": 2, + "__wglewEnableFrameLockI3D": 2, + "cmd_prune_packed": 1, + "i_SELECT_RF_STRING_REMOVE4": 1, + "i_rfString_Prepend": 3, + "for_each_process": 2, + "dictRedisObjectDestructor": 7, + "_": 3, + "*hcpu": 3, + "keyobj": 6, + "UV__O_NONBLOCK": 1, + "clearer": 1, + "*next": 6, + "WGL_SWAP_METHOD_ARB": 1, + "git_submodule_lookup": 1, + "HTTP_REPORT": 1, + "server.list_max_ziplist_entries": 1, + "querybuf_size/": 1, + "server.daemonize": 5, + "PY_MAJOR_VERSION": 13, + "Py_True": 2, + "PFNWGLGETGENLOCKSOURCEI3DPROC": 2, + "*keyobj": 2, + "start": 10, + "argc": 26, + "set_cpu_possible": 1, + "server.aof_rewrite_perc": 3, + "i_SELECT_RF_STRING_FWRITE0": 1, + "max_count": 1 + }, + "old-FORTRAN": { + "N.LT.0": 1, + "CNORMR": 2, + ".ne.": 1, + "S2I*CSR": 1, + "JSIZE": 1, + "CSRR": 9, + ".EQ.": 3, + "CONER": 8, + "NW.NE.0": 1, + ".LE.NVAL": 1, + "E0": 2, + "RZI*PTR": 3, + "clean": 1, + "detected": 1, + "dabs": 2, + "CKI": 17, + "NITMAX": 3, + "IN": 4, + "j": 1, + "dy": 14, + "LARGE": 1, + "C2R": 16, + "KEEP": 2, + "min.": 1, + "S2R*S1I": 2, + "DEXP": 3, + "input": 2, + "January": 1, + "MTYPES": 1, + "PTR": 18, + "CSPNI*S1R": 1, + "CSPNR*S1I": 1, + "WRTMP": 2, + "comment": 1, + "EXPANSION.": 1, + "REMAINDER": 2, + "*4": 1, + "CA.EQ.CB": 1, + "SGET24": 1, + "SUMI": 13, + "TMP1": 20, + "CSGNI*STR": 1, + "TMP2.LE.PIVMIN": 2, + "KL": 15, + "DO": 27, + ".ge.dmin": 2, + "KFLAG": 17, + ".NOT.": 3, + "FINAL_CMP_ERR_I": 2, + "than": 1, + "*D1MACH": 1, + "ZETA1R": 6, + "NZ": 19, + "STI*RAST*RAST": 3, + "AZEXP": 2, + "c": 29, + "SLATMS": 1, + "ZI": 8, + "or": 4, + "external": 1, + "KFNEW": 15, + "S2R*C1R": 1, + "H": 2, + "IDUMMA": 1, + "SLABAD": 1, + "RATIOS": 1, + "P1I": 17, + "PIV_GROWTH_I": 2, + "JI.GT.KFNEW": 1, + "-": 3285, + "NIUNIT": 2, + "Executable": 1, + "SDRVSX": 1, + "UNDERFLOW": 4, + "ELIM": 3, + "STR*P1R": 1, + "NTESTF": 1, + ".le.": 3, + "S2I*C1R": 1, + "GE.NBMIN": 1, + "JP": 8, + "incx.le.0": 1, + "letter": 1, + "S1R*CSSR": 2, + "incx.eq.1": 1, + "CS": 1, + "regardless": 1, + "else": 1, + "logical": 1, + "incx.lt.0": 1, + "P2R": 21, + "D*A": 1, + "NNWORK": 1, + "DOTYPE": 2, + "MIN": 11, + "A": 12, + "constant": 1, + "STI*AT*RAZ": 2, + "NRM_ERR_I": 2, + "Ltd.": 1, + "intrinsic": 1, + "D0/TOL": 1, + "AK": 7, + "NSLCT": 1, + "ZCODE.EQ.233": 2, + "auxiliary": 1, + "DLAEBZ": 1, + "CYI": 8, + "DSIN": 1, + "an": 1, + "FKK": 19, + "/93": 1, + "INTB.GE.145": 2, + "ZERO": 9, + "VS": 2, + "function": 3, + "JI": 103, + "Statements": 1, + "INU.LT.IAZ": 1, + "FLOPS": 1, + "DMAX1": 2, + "*incx": 1, + "INU": 10, + "ESTIMATE": 1, + "HALF*": 2, + "ZETA1D": 1, + "CRSC": 5, + "ITMP1": 15, + "value.": 1, + "S1R": 26, + "ALIM": 5, + "SLATME": 1, + "GO": 59, + "ZSYSVXX": 1, + "PLANE": 2, + "IFN": 3, + "SMLNUM": 4, + "PARAMETER": 8, + "NRHS": 9, + "INTB": 17, + "uses": 1, + "RZR": 8, + "da*dx": 6, + "INFO.EQ.0": 1, + "precision": 1, + "STR*RAST*RAST": 3, + "FLIP": 1, + "IL.EQ.0": 1, + ".GE.0.0": 1, + "CSGN": 2, + "ADD": 2, + "ZS1S2": 3, + "CHARACTER*3": 1, + "that": 1, + "ALGORITHM": 1, + "INTB.LE.250": 2, + "unrolled": 1, + "dx": 13, + "i": 27, + "AP.GT.TST*AK*AK": 1, + "BERR_I": 2, + ".eq.": 3, + "EQUED": 8, + "loop": 1, + "FN*RZI": 1, + "ANORM": 1, + "N": 57, + "incy": 3, + "case": 3, + "ZCODE": 7, + "TFNF/": 3, + "SGN": 3, + "LAST": 1, + "INTA.LE.169": 2, + "KFLAG.GE.3": 1, + ".FALSE.": 1, + "S2I*CSSR": 2, + "KK": 19, + "end": 4, + "EXPONENT": 2, + "UNIFORM": 1, + "S1I*CSSR": 2, + "KMODE": 1, + "TEST": 6, + "PHIR": 7, + "IDUM": 6, + "CY": 1, + "ON": 3, + "compilex": 1, + "IF": 164, + "ABS": 9, + "SQRT": 1, + "ITIME": 3, + "WERE": 1, + "IFNU.LE.0": 1, + "*RAZR": 2, + "SLATMR": 1, + "SUBROUTINE": 8, + "INTERMEDIATE": 2, + ".or.": 2, + "NW.EQ.0": 1, + "HALF": 4, + "increments": 4, + "ARE": 1, + "RZI*C2I": 1, + "RTULPI": 1, + "mp1": 3, + "C2M.LE.ASCLE": 2, + "Argonne": 1, + "APHI": 7, + "LOGIC": 1, + "APPROX.": 1, + "COMPLEX*16": 1, + "THRESH": 2, + "STR*AT*RAZ": 2, + "End": 1, + "WHOSE": 1, + "TST*DSQRT": 1, + "TST": 5, + "ZUNIK": 4, + "Berkeley": 1, + "RETURN": 21, + "N.GT.2": 1, + "modified": 3, + ".NOT.LSAME": 2, + "FLAM": 3, + "BETWEEN": 1, + "N.LT.IB": 1, + "FORWARD": 1, + "CKR*PTI": 2, + "ADDED": 2, + "LDX.LT.MAX": 1, + "one.": 1, + "dongarra": 2, + "daxpyf": 1, + "C2R.NE.0.0D0": 1, + "INTB.LE.153": 2, + "C1R*CSPNR": 1, + "KFLAG.NE.1": 1, + "ZBESI": 1, + "INTA.GE.129": 2, + "SELWI": 2, + "jack": 2, + "CALLED": 2, + "FNF*STI": 1, + "FUNCTION": 7, + "lower": 3, + "DABS": 16, + "ZUNK1": 4, + "NEUMANN": 1, + "PATH": 1, + "RWORK": 5, + "ZET1DI": 8, + "RS1.LT.0.0D0": 2, + "ZEROI": 14, + "IS": 1, + "SORT": 1, + "CSPNR": 8, + "PHID": 1, + "IJOB.EQ.3": 1, + "THEN": 51, + "WRT": 2, + "CK": 2, + "INT": 4, + "ADUMMA": 1, + "SCALE": 6, + "*9": 1, + "INTB.GE.162": 2, + "ZSYEQUB": 2, + "INTA": 17, + "ZLASCL2": 3, + "mod": 1, + "AZABS": 12, + "RHO2": 5, + "ITIME.EQ.2": 1, + "IJOB.GT.3": 1, + "n.eq.1": 1, + "CALL": 22, + "machines": 3, + "PHIDI*SUMDI": 1, + "PI": 3, + "Functions": 1, + "ONE": 7, + "INTB.LE.122": 2, + "ZRI": 12, + "OVFL": 1, + "IFLAG.NE.1": 1, + "XERBLA": 4, + "IL": 4, + "ERROR": 2, + "INTA.GE.225": 2, + ".EQ.ZEROR": 1, + "and": 2, + "M": 8, + "incx": 8, + "to": 16, + "equivalence": 1, + "LDX": 7, + "FUNCTIONS": 3, + "INDICATES": 1, + "FKAP": 3, + "CFN": 1, + "SLAMCH": 2, + "CNORMI": 2, + "vector.": 1, + "specify": 1, + "FNF*SGN": 1, + "ELSE": 25, + "RCOND_I": 2, + "THE": 15, + "CONEI": 4, + "SSLCT": 1, + "RZI*PTI": 3, + "INIT": 5, + "dmin": 5, + "a": 3, + "/3/93": 2, + "C2I": 16, + "DLOG": 3, + "RZR*C2R": 1, + "BE": 2, + "YR": 21, + "OCCUR": 1, + "AP": 6, + "PTI": 17, + "VS1": 2, + "ITMP1.LE.NVAL": 1, + "+": 159, + "DCOS": 1, + "CSSR": 5, + "CSGNI*STI": 1, + "as": 2, + "P2R*P1R": 1, + "KK.EQ.N": 1, + "..": 11, + "REFINE": 3, + "ZR.LT.0.0": 2, + "Use": 1, + "NORMALIZED": 1, + "AZLOG": 2, + "INTA.LE.137": 2, + "not": 2, + "OF": 5, + "DIRECTION": 1, + "ZETA1I": 6, + "AT*RAZ": 1, + "BY": 5, + "BIGNUM": 4, + "*SUMR": 2, + "Z": 5, + "SLASUM": 1, + "ZCODE.EQ.250": 2, + "RELTOL": 2, + "RAZR": 2, + "vector": 1, + "FLOAT": 11, + "equal": 7, + "PHIDR": 6, + "subroutine": 2, + "IFNU": 5, + "CSGNI": 2, + "ZET2DR": 8, + "IB.LT.N": 1, + "KLNEW.LT.MMAX": 1, + "ZR*RAZ": 2, + "KMAGN": 1, + "BACKWARD": 2, + "ZETA2": 1, + "WILL": 3, + "element": 1, + "ITMP1.GE.NVAL": 1, + "COMPILEX": 1, + "array": 4, + "ARITHMETIC": 2, + "ZLA_SYRPVGRW": 4, + "ZETA2R": 6, + "C1I*CSPNR": 1, + "ZCODE.EQ.122": 2, + "SUMDR": 4, + "/11/78.": 2, + "n": 12, + "IJOB.EQ.2": 1, + "test": 1, + "KLNEW": 17, + "P2I": 21, + "ZI*RAZ": 2, + "S": 9, + "STR": 34, + "California": 1, + "NAB": 33, + "TWO": 3, + "MMAX": 6, + "RAST": 4, + "EQUIL": 5, + "SMAX": 5, + "AB": 36, + "CSS": 1, + "SMIN.LE.ZERO": 1, + "INDEX": 1, + "INTA.EQ.INTB": 1, + "version": 1, + "IJOB": 2, + "BAR": 1, + "CHARACTER*1": 2, + "CKR*C2R": 1, + "INTEGER": 21, + "ANG": 4, + "RECURRENCE": 2, + "OVERFLOW.": 1, + "MR.NE.0": 1, + "BK": 13, + "ZLAQSY": 2, + "S1I": 25, + "TMP1.LT.MAX": 1, + "n.le.0": 1, + "ITMP1.EQ.NAB": 2, + "bit": 1, + ".GT.": 1, + "BERR": 3, + "ERR_BNDS_NORM": 3, + "N_ERR_BNDS": 3, + "D0/AZ": 1, + "RZI": 8, + "n.lt.1": 1, + "MINP": 5, + "assumed": 3, + "Arguments": 2, + ".OR.": 22, + "ICHAR": 12, + "ASCLE": 5, + "ISEED": 2, + "C***ROUTINES": 2, + "CONDS": 1, + "ZETA2D": 1, + "RS1": 20, + "LDA.LT.MAX": 1, + "SEQUENCE": 5, + "IPARD": 4, + "NW": 7, + "S1I*CSR": 1, + "REAL": 7, + "CWRKR": 5, + "S2R": 25, + "RESULT": 2, + "DGAMLN": 6, + "do": 5, + "NVAL": 6, + "iqaminf": 5, + "PROLOGUE": 5, + "then": 1, + "RZ": 2, + "E": 2, + "RHO*RHO": 2, + "RCEQU": 8, + "INFO.NE.0": 3, + "RZR*PTR": 3, + "D1MACH": 6, + "NMAX": 1, + "*": 129, + "returns": 3, + "double": 1, + "RS1.GT.0.0D0": 2, + "SELVAL": 2, + "Purpose": 1, + "Scalar": 1, + "SLASET": 1, + "COMMON": 2, + "FOR": 14, + "PHII": 7, + "CHARACTER": 5, + "SUM": 5, + "IAZ": 4, + "N.GT.0": 3, + "Y": 3, + ".LT.ALIM": 3, + "machine.": 1, + "PRECISION": 15, + "ACK/TOL": 1, + "Scalars": 1, + "LDAF": 9, + "EXTERNAL": 5, + "MR.EQ.0": 1, + "S2I*S1R": 1, + "AVOID": 1, + "both": 2, + "ZETA1": 1, + "OVERFLOW": 6, + "SET": 2, + "ULPINV": 1, + "return": 13, + "ZR.GE.0.0D0": 1, + "S1I*C1R": 1, + "RIGHT": 1, + "rather": 1, + "IJOB.EQ.1": 1, + "ZRR*RAZR": 1, + "m": 5, + "C***BEGIN": 2, + ".GE.": 1, + "INTA.GE.145": 2, + "MAX0": 1, + "Tennessee": 1, + "da": 3, + "FROM": 1, + "C1R*CSPNI": 1, + "RCDVIN": 1, + "increment": 2, + "character": 1, + "CSR": 4, + "linpack": 2, + "go": 7, + "TMP1.LE.ZERO": 2, + "LDB": 6, + "upper": 3, + "BWORK": 2, + "DIVISION": 1, + "ALTERED": 1, + "Test": 1, + "unequal": 1, + "INTA.GE.97": 2, + "ITS": 1, + "CSPNI": 8, + "Courant": 1, + "abs": 2, + "CONE": 2, + "CB": 10, + "*CNORMR": 2, + "INFO.GT.0": 1, + "S2R*CSRR": 2, + "UPLO": 12, + "ZSYCON": 1, + "LDAF.LT.MAX": 1, + "ZSYRFSX": 2, + "RCOND": 3, + "K": 16, + "qabs": 9, + "C2I.NE.0.0D0": 1, + "INTA.LE.250": 2, + "KDFLG": 11, + "LIMIT": 1, + "CONTINUE": 58, + "NOUNIT": 2, + "RE": 2, + "are": 2, + "BK*AK": 3, + "OUT": 2, + "ZCODE.EQ.90": 2, + "KK.EQ.IC": 1, + ".EQ.NAB": 2, + "WR": 2, + "NPARAMS": 3, + "ZKSCL": 1, + "DENOMINATOR": 1, + "ZCODE.EQ.218": 2, + "*MAX": 1, + "set.": 1, + "dble": 1, + ".not.": 1, + ".gt.": 1, + "KLNEW.LE.MMAX": 1, + "NTEST": 1, + ".AND.": 28, + "EXP": 2, + "RECUR": 2, + "RCDEIN": 1, + "D0": 31, + "PHIDR*SUMDR": 1, + "CKI*C2R": 1, + "IC": 2, + ".EQ.ZEROI": 1, + "INTENT": 1, + "on": 5, + ".NOT.NOFACT": 1, + "CKI*PTR": 2, + "University": 1, + "if": 18, + "C1R": 5, + "D": 14, + "up": 1, + "AN": 1, + "ISLCT": 1, + "IFLAG.GE.3": 1, + "KF.GT.KL": 1, + "*P1R": 3, + ")": 721, + "NEAR": 2, + "PT": 2, + "MEMBER": 1, + "S1R*CSR": 1, + "*RAZ": 3, + "RELATIVE": 2, + "CKR": 17, + "IINFO": 1, + "single": 1, + "MOUT": 6, + "characters": 3, + "int": 1, + "KTYPE": 2, + "ANALYTIC": 3, + "D0/AZABS": 1, + "CONTINUATION.": 1, + "DSQRT": 3, + "S2R*S1R": 2, + "X": 8, + "Rice": 1, + "NAG": 1, + "NSIZES": 2, + "RZR*C2I": 1, + "*CSSR": 2, + "INTB.GE.97": 2, + "INFEQU": 2, + "ROTATION": 1, + "YI": 21, + "SCOND": 5, + "EBCDIC": 3, + "SUMR": 13, + "MAX": 9, + "DIMENSION": 3, + "INTA.LE.153": 2, + "SCLE": 4, + "LAPACK": 1, + "P2I*P1R": 1, + "Local": 1, + "*C1": 1, + "E2": 5, + "SCALING": 1, + "NORMALIZING": 1, + "DSIGN": 1, + "MEANS": 2, + "P2": 3, + "BRY": 12, + "ASYMPTOTIC": 1, + "ZR": 9, + "INTB.LE.169": 2, + "FNU": 12, + "AP/AZABS": 1, + "is": 8, + "*SUMI": 2, + "IJOB.LE.2": 2, + "ZR.LT.0.0D0": 2, + "KDFLG.EQ.2": 2, + "NFAIL": 1, + "prologue": 1, + "SELDIM": 2, + "P1R": 18, + "ZUCHK": 3, + "*6": 2, + "PHIDI": 6, + ".ge.": 1, + "ZET2DI": 8, + "CTWO": 1, + "index": 1, + "LDA": 14, + "RHO/": 1, + "RAZ": 2, + "S1R*C1R": 1, + ".GT.0.0D0": 1, + ".NOT.EQUIL": 1, + "PIVMIN": 9, + "INTA.GE.162": 2, + "finds": 1, + "ULP": 1, + "ACK": 18, + "ZETA2I": 6, + "CASES": 1, + "S1I*CSPNI": 1, + "C1I*CSPNI": 1, + "HT": 2, + "SUMDI": 4, + "COND": 1, + "CA": 10, + "Intrinsic": 1, + "INTA.LE.122": 2, + "C2M": 3, + "STI": 26, + "J": 65, + "AT": 5, + ".and.": 1, + "CYR": 8, + "NBMIN.GT.0": 1, + "REAL*10": 2, + "/": 19, + "National": 1, + "ITYPE": 1, + "NRHS.LT.0": 1, + "SUMD": 1, + "Institute": 1, + "JCOL": 1, + "ABSTOL": 3, + "KK.EQ.IB": 1, + "END": 44, + "COMPLEX": 2, + "FN/AZABS": 3, + "FACT": 6, + "declarations": 2, + "RESP.": 1, + "INTB.GE.129": 2, + "CKR*C2I": 1, + "RELATION": 1, + "IB": 6, + "GREATER": 1, + "sngl": 1, + "INITD": 6, + "PARAMS": 3, + "RELTOL*TMP2": 1, + "KCONDS": 1, + "ABOVE": 1, + "TRUNCATION": 2, + "ASCII": 5, + "C": 102, + "INFEQU.EQ.0": 1, + "times": 1, + "FMR": 3, + "JIT": 2, + "S2": 1, + ".LT.": 1, + "(": 720, + "IFLAG": 17, + "be": 2, + "case.": 1, + "code": 7, + "loops": 1, + "I.EQ.1": 1, + "THAN": 1, + "LDVS": 4, + "UNFL": 1, + ".LT.0.0D0": 1, + "compared.": 1, + "N.EQ.1": 1, + "S2I*CSRR": 2, + "EXTREMES": 1, + "/TOL": 3, + ".LE.PIVMIN": 2, + "TST/TOL": 1, + "NERRS": 1, + "float": 1, + "C***REFER": 2, + "ACK*ACK": 2, + "CWRKI": 5, + "S2I": 25, + "ZLACPY": 3, + "FN*RZR": 1, + "ZSYTRF": 2, + "NN": 2, + "SMIN": 5, + "common": 1, + "KODE.EQ.2": 1, + "iy": 7, + "with": 1, + "FINAL_NRM_ERR_I": 2, + "of": 8, + "BESSEL": 1, + ".NE.": 1, + "AF": 8, + "RZR*PTI": 3, + "MILLER": 1, + "d0": 1, + "either": 3, + "D0/BRY": 1, + "BADNN": 1, + ".GE.NAB": 1, + "INTB.GE.225": 2, + "continue": 6, + "value": 1, + "parameter": 1, + "NRM_RCOND_I": 2, + "COMPUTE": 2, + "DOUBLE": 14, + "P1": 1, + "having": 1, + "SNGL": 4, + "integer": 4, + ".EQ.0": 1, + "CSPN": 2, + "KDFLG.EQ.1": 6, + "SERIES": 1, + "MR": 4, + "MAXTYP": 6, + "real": 1, + "UNDERFLOW.": 1, + "ASC": 4, + "CMP_ERR_I": 2, + "ZMLRI": 4, + "AZ": 3, + "PHI": 1, + "LEFT": 1, + "DLAMCH": 3, + "WIT": 2, + "SQUARING": 1, + "MOD": 1, + "S2I*S1I": 2, + "IJOB.LT.1": 1, + "IWK": 1, + "RZI*C2R": 1, + "RPVGRW": 5, + "EXTREMES.": 1, + "TMP2": 11, + "DBLE": 11, + "KM": 3, + "incx.eq.1.and.incy.eq.1": 1, + "RTULP": 1, + "Univ.": 2, + "ichar": 1, + "IUF": 4, + "the": 8, + "ZSYTRS": 2, + "C***END": 2, + "STR*DCOS": 2, + "NOFACT": 4, + "COMPUTES": 2, + ".LE.": 2, + "CKR*PTR": 2, + "AND": 14, + "LOGICAL": 8, + "ERR_BNDS_COMP": 3, + "IWORK": 18, + "I": 50, + ".LT.PIVMIN": 2, + "CWRK": 1, + ".LT.ELIM": 1, + "TFNF": 7, + "S1R*S2I": 1, + "CMP_RCOND_I": 2, + ".": 3, + "can": 1, + "FNF*STR": 1, + "FN": 12, + "SELWR": 2, + "RHO": 4, + "absolute": 1, + "DATA": 4, + "INTB.LE.137": 2, + "ZMLT": 2, + "KF": 12, + "DURING": 1, + "JTYPE": 1, + "CZERO": 2, + "STI*P1R": 1, + "DMIN1": 1, + "ZET1DR": 8, + "LWORK": 2, + "ZEROR": 14, + "AMAX": 3, + "same": 2, + "routine": 1, + "STR*DSIN": 2, + "CEXP": 1, + "for": 7, + "IOLDSD": 1, + "changed": 2, + "ZRI*RAZR": 1, + "*CNORMI": 2, + "COEFF": 1, + "S1R*CSPNR": 1, + "which": 2, + ".TRUE.": 1, + "FNF": 15, + "B": 5, + "Prime": 3, + "Lab": 1, + "ZCODE.EQ.169": 2, + "ZBESK": 2, + "IMODE": 1, + "S1": 2, + "so": 1, + "SERIES.": 1, + "alphabetic.": 1, + "KODE": 4, + "D0/AP": 1, + "LSAME": 19, + "SELOPT": 2, + "PHIDI*SUMDR": 1, + "WI": 2, + "TOL": 10, + "ZRR": 12, + "AP.LT.TST": 1, + ".GT.ELIM": 5, + ".lt.": 2, + "S2R*CSSR": 2, + "NTYPES": 2, + ".GE.NVAL": 1, + "CNORM": 1, + "FOO": 2, + "*incy": 1, + "CKI*C2I": 1, + "PARAMETERS": 1, + "PHIDR*SUMDI": 1, + "Now": 1, + "TO": 69, + "KODE.EQ.1": 5, + "NBMIN": 2, + "ix": 14, + "IPIV": 7, + "ITMP2": 3, + "ENDIF": 1, + "C2": 1, + "WORK": 18, + "CKI*PTI": 2, + "LDB.LT.MAX": 1, + "WITMP": 2, + "C1I": 3, + "CSCL": 5, + "INTRINSIC": 6, + "NTESTT": 1, + "incy.lt.0": 1, + "S2R*CSR": 1, + "QUANTITIES": 1, + "INFO": 29, + "CONTINUATION": 2, + "plus": 2, + "*P1I": 3 }, "edn": { - "[": 24, - "{": 22, - "db/id": 22, - "#db/id": 22, - "db.part/db": 6, - "]": 24, - "db/ident": 3, - "object/name": 18, - "db/doc": 4, - "db/valueType": 3, - "db.type/string": 2, - "db/index": 3, + "db.part/tx": 2, "true": 3, - "db/cardinality": 3, - "db.cardinality/one": 3, - "db.install/_attribute": 3, - "}": 22, + "db/index": 3, + "object/name": 18, + "db/id": 22, + "db.part/user": 17, "object/meanRadius": 18, + "db.install/_attribute": 3, + "db.type/string": 2, + "db/ident": 3, "db.type/double": 1, "data/source": 2, - "db.part/tx": 2, - "db.part/user": 17 + "db/valueType": 3, + "db/doc": 4, + "#db/id": 22, + "db.cardinality/one": 3, + "db.part/db": 6, + "db/cardinality": 3, + "}": 22, + "]": 24, + "{": 22, + "[": 24 }, - "Elm": { - "import": 3, - "List": 1, - "(": 119, - "intercalate": 2, - "intersperse": 3, - ")": 116, - "Website.Skeleton": 1, - "Website.ColorScheme": 1, - "addFolder": 4, - "folder": 2, - "lst": 6, - "let": 2, - "add": 2, - "x": 13, - "y": 7, - "+": 14, - "in": 2, - "f": 8, - "n": 2, - "xs": 9, - "map": 11, - "elements": 2, - "[": 31, - "]": 31, - "functional": 2, - "reactive": 2, - "-": 11, - "example": 3, - "name": 6, - "loc": 2, - "Text.link": 1, - "toText": 6, - "toLinks": 2, - "title": 2, - "links": 2, - "flow": 4, - "right": 8, - "width": 3, - "text": 4, - "italic": 1, - "bold": 2, - ".": 9, - "Text.color": 1, - "accent4": 1, - "insertSpace": 2, - "case": 5, - "of": 7, - "{": 1, - "spacer": 2, - ";": 1, - "}": 1, - "subsection": 2, - "w": 7, - "info": 2, - "down": 3, - "words": 2, - "markdown": 1, - "|": 3, - "###": 1, - "Basic": 1, - "Examples": 1, - "Each": 1, - "listed": 1, - "below": 1, - "focuses": 1, - "on": 1, - "a": 5, - "single": 1, - "function": 1, - "or": 1, - "concept.": 1, - "These": 1, - "examples": 1, - "demonstrate": 1, - "all": 1, - "the": 1, - "basic": 1, - "building": 1, - "blocks": 1, - "Elm.": 1, - "content": 2, - "exampleSets": 2, - "plainText": 1, - "main": 3, - "lift": 1, - "skeleton": 1, - "Window.width": 1, - "asText": 1, - "qsort": 4, - "filter": 2, - "<)x)>": 1, - "data": 1, - "Tree": 3, - "Node": 8, - "Empty": 8, - "empty": 2, - "singleton": 2, - "v": 8, - "insert": 4, - "tree": 7, - "left": 7, - "if": 2, - "then": 2, - "else": 2, - "<": 1, - "fromList": 3, - "foldl": 1, - "depth": 5, - "max": 1, - "t1": 2, - "t2": 3, - "display": 4, - "monospace": 1, - "concat": 1, - "show": 2 - }, - "Emacs Lisp": { - "(": 156, - "print": 1, - ")": 144, - ";": 333, - "ess": 48, - "-": 294, - "julia.el": 2, - "ESS": 5, - "julia": 39, - "mode": 12, - "and": 3, - "inferior": 13, - "interaction": 1, - "Copyright": 1, - "C": 2, - "Vitalie": 3, - "Spinu.": 1, - "Filename": 1, - "Author": 1, - "Spinu": 2, - "based": 1, - "on": 2, - "mode.el": 1, - "from": 3, - "lang": 1, - "project": 1, - "Maintainer": 1, - "Created": 1, - "Keywords": 1, - "This": 4, - "file": 10, - "is": 5, - "*NOT*": 1, - "part": 2, - "of": 8, - "GNU": 4, - "Emacs.": 1, - "program": 6, - "free": 1, - "software": 1, - "you": 1, - "can": 1, - "redistribute": 1, - "it": 3, - "and/or": 1, - "modify": 5, - "under": 1, - "the": 10, - "terms": 1, - "General": 3, - "Public": 3, - "License": 3, - "as": 1, - "published": 1, - "by": 1, - "Free": 2, - "Software": 2, - "Foundation": 2, - "either": 1, - "version": 2, - "any": 1, - "later": 1, - "version.": 1, - "distributed": 1, - "in": 3, - "hope": 1, - "that": 2, - "will": 1, - "be": 2, - "useful": 1, - "but": 2, - "WITHOUT": 1, - "ANY": 1, - "WARRANTY": 1, - "without": 1, - "even": 1, - "implied": 1, - "warranty": 1, - "MERCHANTABILITY": 1, - "or": 3, - "FITNESS": 1, - "FOR": 1, - "A": 1, - "PARTICULAR": 1, - "PURPOSE.": 1, - "See": 1, - "for": 8, - "more": 1, - "details.": 1, - "You": 1, - "should": 2, - "have": 1, - "received": 1, - "a": 4, - "copy": 2, - "along": 1, - "with": 4, - "this": 1, - "see": 2, - "COPYING.": 1, - "If": 1, - "not": 1, - "write": 2, - "to": 4, - "Inc.": 1, - "Franklin": 1, - "Street": 1, - "Fifth": 1, - "Floor": 1, - "Boston": 1, - "MA": 1, - "USA.": 1, - "Commentary": 1, - "customise": 1, - "name": 8, - "point": 6, - "your": 1, - "release": 1, - "basic": 1, - "start": 13, - "M": 2, - "x": 2, - "julia.": 2, - "require": 2, - "auto": 1, - "alist": 9, - "table": 9, - "character": 1, - "quote": 2, - "transpose": 1, - "syntax": 7, - "entry": 4, - ".": 40, - "Syntax": 3, - "inside": 1, - "char": 6, - "defvar": 5, - "let": 3, - "make": 4, - "defconst": 5, - "regex": 5, - "unquote": 1, - "forloop": 1, - "subset": 2, - "regexp": 6, - "font": 6, - "lock": 6, - "defaults": 2, - "list": 3, - "identity": 1, - "keyword": 2, - "face": 4, - "constant": 1, - "cons": 1, - "function": 7, - "keep": 2, - "string": 8, - "paragraph": 3, - "concat": 7, - "page": 2, - "delimiter": 2, - "separate": 1, - "ignore": 2, - "fill": 1, - "prefix": 2, - "t": 6, - "final": 1, - "newline": 1, - "comment": 6, - "add": 4, - "skip": 1, - "column": 1, - "indent": 8, - "S": 2, - "line": 5, - "calculate": 1, - "parse": 1, - "sexp": 1, - "comments": 1, - "style": 2, - "default": 1, - "ignored": 1, - "local": 6, - "process": 5, - "nil": 12, - "dump": 2, - "files": 1, - "_": 1, - "autoload": 1, - "defun": 5, - "send": 3, - "visibly": 1, - "temporary": 1, - "directory": 2, - "temp": 2, - "insert": 1, - "format": 3, - "load": 1, - "command": 5, - "get": 3, - "help": 3, - "topics": 1, - "&": 3, - "optional": 3, - "proc": 3, - "words": 1, - "vector": 1, - "com": 1, - "error": 6, - "s": 5, - "*in": 1, - "[": 3, - "n": 1, - "]": 3, - "*": 1, - "at": 5, - ".*": 2, - "+": 5, - "w*": 1, - "http": 1, - "//docs.julialang.org/en/latest/search/": 1, - "q": 1, - "%": 1, - "include": 1, - "funargs": 1, - "re": 2, - "args": 10, - "language": 1, - "STERM": 1, - "editor": 2, - "R": 2, - "pager": 2, - "versions": 1, - "Julia": 1, - "made": 1, - "available.": 1, - "String": 1, - "arguments": 2, - "used": 1, - "when": 2, - "starting": 1, - "group": 1, - "###autoload": 2, - "interactive": 2, - "setq": 2, - "customize": 5, - "emacs": 1, - "<": 1, - "hook": 4, - "complete": 1, - "object": 2, - "completion": 4, - "functions": 2, - "first": 1, - "if": 4, - "fboundp": 1, - "end": 1, - "workaround": 1, - "set": 3, - "variable": 3, - "post": 1, - "run": 2, - "settings": 1, - "notably": 1, - "null": 1, - "dribble": 1, - "buffer": 3, - "debugging": 1, - "only": 1, - "dialect": 1, - "current": 2, - "arg": 1, - "let*": 2, - "jl": 2, - "space": 1, - "just": 1, - "case": 1, - "read": 1, - "..": 3, - "multi": 1, - "...": 1, - "tb": 1, - "logo": 1, - "goto": 2, - "min": 1, - "while": 1, - "search": 1, - "forward": 1, - "replace": 1, - "match": 1, - "max": 1, - "inject": 1, - "code": 1, - "etc": 1, - "hooks": 1, - "busy": 1, - "funname": 5, - "eldoc": 1, - "show": 1, - "symbol": 2, - "aggressive": 1, - "car": 1, - "funname.start": 1, - "sequence": 1, - "nth": 1, - "W": 1, - "window": 2, - "width": 1, - "minibuffer": 1, - "length": 1, - "doc": 1, - "propertize": 1, - "use": 1, - "classes": 1, - "screws": 1, - "egrep": 1 - }, - "Erlang": { - "SHEBANG#!escript": 3, - "%": 134, - "-": 262, - "*": 9, - "erlang": 5, - "smp": 1, - "enable": 1, - "sname": 1, - "factorial": 1, - "mnesia": 1, - "debug": 1, - "verbose": 1, - "main": 4, - "(": 236, - "[": 66, - "String": 2, - "]": 61, - ")": 230, - "try": 2, - "N": 6, - "list_to_integer": 1, - "F": 16, - "fac": 4, - "io": 5, - "format": 7, - "catch": 2, - "_": 52, - "usage": 3, - "end": 3, - ";": 56, - ".": 37, - "halt": 2, - "export": 2, - "main/1": 1, - "For": 1, - "each": 1, - "header": 1, - "file": 6, - "it": 2, - "scans": 1, - "thru": 1, - "all": 1, - "records": 1, - "and": 8, - "create": 1, - "helper": 1, - "functions": 2, - "Helper": 1, - "are": 3, - "setters": 1, - "getters": 1, - "fields": 4, - "fields_atom": 4, - "type": 6, - "module": 2, - "record_helper": 1, - "make/1": 1, - "make/2": 1, - "make": 3, - "HeaderFiles": 5, - "atom_to_list": 18, - "X": 12, - "||": 6, - "<->": 5, - "hrl": 1, - "relative": 1, - "to": 2, - "current": 1, - "dir": 1, - "OutDir": 4, - "ModuleName": 3, - "HeaderComment": 2, - "ModuleDeclaration": 2, - "+": 214, - "<": 1, - "Src": 10, - "format_src": 8, - "lists": 11, - "sort": 1, - "flatten": 6, - "read": 2, - "generate_type_default_function": 2, - "write_file": 1, - "erl": 1, - "list_to_binary": 1, - "HeaderFile": 4, - "epp": 1, - "parse_file": 1, - "of": 9, - "{": 109, - "ok": 34, - "Tree": 4, - "}": 109, - "parse": 2, - "error": 4, - "Error": 4, - "catched_error": 1, - "end.": 3, - "|": 25, - "T": 24, - "when": 29, - "length": 6, - "Type": 3, - "A": 5, - "B": 4, - "NSrc": 4, - "_Type": 1, - "Type1": 2, - "parse_record": 3, - "attribute": 1, - "record": 4, - "RecordInfo": 2, - "RecordName": 41, - "RecordFields": 10, - "if": 1, - "generate_setter_getter_function": 5, - "generate_type_function": 3, - "true": 3, - "generate_fields_function": 2, - "generate_fields_atom_function": 2, - "parse_field_name": 5, - "record_field": 9, - "atom": 9, - "FieldName": 26, - "field": 4, - "_FieldName": 2, - "ParentRecordName": 8, - "parent_field": 2, - "parse_field_name_atom": 5, - "concat": 5, - "_S": 3, - "S": 6, - "concat_ext": 4, - "parse_field": 6, - "AccFields": 6, - "AccParentFields": 6, - "case": 3, - "Field": 2, - "PField": 2, - "parse_field_atom": 4, - "zzz": 1, - "Fields": 4, - "field_atom": 1, - "to_setter_getter_function": 5, - "setter": 2, - "getter": 2, - "This": 2, - "is": 1, - "auto": 1, - "generated": 1, - "file.": 1, - "Please": 1, - "don": 1, - "t": 1, - "edit": 1, - "record_utils": 1, - "compile": 2, - "export_all": 1, - "include": 1, - "abstract_message": 21, - "async_message": 12, - "clientId": 5, - "destination": 5, - "messageId": 5, - "timestamp": 5, - "timeToLive": 5, - "headers": 5, - "body": 5, - "correlationId": 5, - "correlationIdBytes": 5, - "get": 12, - "Obj": 49, - "is_record": 25, - "Obj#abstract_message.body": 1, - "Obj#abstract_message.clientId": 1, - "Obj#abstract_message.destination": 1, - "Obj#abstract_message.headers": 1, - "Obj#abstract_message.messageId": 1, - "Obj#abstract_message.timeToLive": 1, - "Obj#abstract_message.timestamp": 1, - "Obj#async_message.correlationId": 1, - "Obj#async_message.correlationIdBytes": 1, - "parent": 5, - "Obj#async_message.parent": 3, - "ParentProperty": 6, - "is_atom": 2, - "set": 13, - "Value": 35, - "NewObj": 20, - "Obj#abstract_message": 7, - "Obj#async_message": 3, - "NewParentObject": 2, - "undefined.": 1, - "Mode": 1, - "coding": 1, - "utf": 1, - "tab": 1, - "width": 1, - "c": 2, - "basic": 1, - "offset": 1, - "indent": 1, - "tabs": 1, - "mode": 2, - "BSD": 1, - "LICENSE": 1, - "Copyright": 1, - "Michael": 2, - "Truog": 2, - "": 1, - "at": 1, - "gmail": 1, - "dot": 1, - "com": 1, - "All": 2, - "rights": 1, - "reserved.": 1, - "Redistribution": 1, - "use": 2, - "in": 3, - "source": 2, - "binary": 2, - "forms": 1, - "with": 2, - "or": 3, - "without": 2, - "modification": 1, - "permitted": 1, - "provided": 2, - "that": 1, - "the": 9, - "following": 4, - "conditions": 3, - "met": 1, - "Redistributions": 2, + "LFE": { + "isn": 1, + "": 1, + "object": 16, + "preconds": 4, + "Mnesia": 2, + "define": 1, + "formatted": 1, + "Execute": 1, + "list": 13, + "existing": 1, + "First": 1, + "and": 7, "code": 2, - "must": 3, - "retain": 1, - "above": 2, - "copyright": 2, - "notice": 2, - "this": 4, - "list": 2, - "disclaimer.": 1, - "form": 1, - "reproduce": 1, - "disclaimer": 1, - "documentation": 1, - "and/or": 1, - "other": 1, - "materials": 2, - "distribution.": 1, - "advertising": 1, - "mentioning": 1, - "features": 1, - "software": 3, - "display": 1, - "acknowledgment": 1, - "product": 1, - "includes": 1, - "developed": 1, - "by": 1, - "The": 1, - "name": 1, - "author": 2, - "may": 1, - "not": 1, - "be": 1, - "used": 1, - "endorse": 1, - "promote": 1, - "products": 1, - "derived": 1, - "from": 1, - "specific": 1, - "prior": 1, - "written": 1, - "permission": 1, - "THIS": 2, - "SOFTWARE": 2, - "IS": 1, - "PROVIDED": 1, - "BY": 1, - "THE": 5, - "COPYRIGHT": 2, - "HOLDERS": 1, - "AND": 4, - "CONTRIBUTORS": 2, - "ANY": 4, - "EXPRESS": 1, - "OR": 8, - "IMPLIED": 2, - "WARRANTIES": 2, - "INCLUDING": 3, - "BUT": 2, - "NOT": 2, - "LIMITED": 2, - "TO": 2, - "OF": 8, - "MERCHANTABILITY": 1, - "FITNESS": 1, - "FOR": 2, - "PARTICULAR": 1, - "PURPOSE": 1, - "ARE": 1, - "DISCLAIMED.": 1, - "IN": 3, - "NO": 1, - "EVENT": 1, - "SHALL": 1, - "OWNER": 1, - "BE": 1, - "LIABLE": 1, - "DIRECT": 1, - "INDIRECT": 1, - "INCIDENTAL": 1, - "SPECIAL": 1, - "EXEMPLARY": 1, - "CONSEQUENTIAL": 1, - "DAMAGES": 1, - "PROCUREMENT": 1, - "SUBSTITUTE": 1, - "GOODS": 1, - "SERVICES": 1, - "LOSS": 1, - "USE": 2, - "DATA": 1, - "PROFITS": 1, - "BUSINESS": 1, - "INTERRUPTION": 1, - "HOWEVER": 1, - "CAUSED": 1, - "ON": 1, - "THEORY": 1, - "LIABILITY": 2, - "WHETHER": 1, - "CONTRACT": 1, - "STRICT": 1, - "TORT": 1, - "NEGLIGENCE": 1, - "OTHERWISE": 1, - "ARISING": 1, - "WAY": 1, - "OUT": 1, - "EVEN": 1, - "IF": 1, - "ADVISED": 1, - "POSSIBILITY": 1, - "SUCH": 1, - "DAMAGE.": 1, - "sys": 2, - "RelToolConfig": 5, - "target_dir": 2, - "TargetDir": 14, - "overlay": 2, - "OverlayConfig": 4, - "consult": 1, - "Spec": 2, - "reltool": 2, - "get_target_spec": 1, - "make_dir": 1, - "eexist": 1, - "exit_code": 3, - "eval_target_spec": 1, - "root_dir": 1, - "process_overlay": 2, - "shell": 3, - "Command": 3, - "Arguments": 3, - "CommandSuffix": 2, - "reverse": 4, - "os": 1, - "cmd": 1, - "io_lib": 2, - "boot_rel_vsn": 2, - "Config": 2, - "_RelToolConfig": 1, - "rel": 2, - "_Name": 1, - "Ver": 1, - "proplists": 1, - "lookup": 1, - "Ver.": 1, - "minimal": 2, - "parsing": 1, - "for": 1, - "handling": 1, - "mustache": 11, - "syntax": 1, - "Body": 2, - "Context": 11, - "Result": 10, - "_Context": 1, - "KeyStr": 6, - "mustache_key": 4, - "C": 4, - "Rest": 10, - "Key": 2, - "list_to_existing_atom": 1, - "dict": 2, - "find": 1, - "support": 1, - "based": 1, - "on": 1, - "rebar": 1, - "overlays": 1, - "BootRelVsn": 2, - "OverlayVars": 2, - "from_list": 1, - "erts_vsn": 1, - "system_info": 1, - "version": 1, - "rel_vsn": 1, - "hostname": 1, - "net_adm": 1, - "localhost": 1, - "BaseDir": 7, - "get_cwd": 1, - "execute_overlay": 6, - "_Vars": 1, - "_BaseDir": 1, - "_TargetDir": 1, - "mkdir": 1, - "Out": 4, - "Vars": 7, - "filename": 3, - "join": 3, - "copy": 1, - "In": 2, - "InFile": 3, - "OutFile": 2, - "filelib": 1, - "is_file": 1, - "ExitCode": 2, - "flush": 1 - }, - "fish": { - "#": 18, - "set": 49, - "-": 102, - "g": 1, - "IFS": 4, - "n": 5, - "t": 2, - "l": 15, - "configdir": 2, - "/.config": 1, - "if": 21, - "q": 9, - "XDG_CONFIG_HOME": 2, - "end": 33, - "not": 8, - "fish_function_path": 4, - "configdir/fish/functions": 1, - "__fish_sysconfdir/functions": 1, - "__fish_datadir/functions": 3, - "contains": 4, - "[": 13, - "]": 13, - "fish_complete_path": 4, - "configdir/fish/completions": 1, - "__fish_sysconfdir/completions": 1, - "__fish_datadir/completions": 3, - "test": 7, - "d": 3, - "/usr/xpg4/bin": 3, - "PATH": 6, - "path_list": 4, - "/bin": 1, - "/usr/bin": 1, - "/usr/X11R6/bin": 1, - "/usr/local/bin": 1, - "__fish_bin_dir": 1, - "switch": 3, - "USER": 1, - "case": 9, - "root": 1, - "/sbin": 1, - "/usr/sbin": 1, - "/usr/local/sbin": 1, - "for": 1, - "i": 5, - "in": 2, - "function": 6, - "fish_sigtrap_handler": 1, - "on": 2, - "signal": 1, - "TRAP": 1, - "no": 2, - "scope": 1, - "shadowing": 1, - "description": 2, - "breakpoint": 1, - "__fish_on_interactive": 2, - "event": 1, - "fish_prompt": 1, - "__fish_config_interactive": 1, - "functions": 5, - "e": 6, - "eval": 5, - "S": 1, - "If": 2, - "we": 2, - "are": 1, - "an": 1, - "interactive": 8, - "shell": 1, - "should": 2, - "enable": 1, - "full": 4, - "job": 5, - "control": 5, - "since": 1, - "it": 1, - "behave": 1, - "like": 2, - "the": 1, - "real": 1, - "code": 1, - "was": 1, - "executed.": 1, - "don": 1, - "do": 1, - "this": 1, - "commands": 1, - "that": 1, - "expect": 1, - "to": 1, - "be": 1, - "used": 1, - "interactively": 1, - "less": 1, - "wont": 1, - "work": 1, + "Code": 1, + ";": 213, + "obtain": 3, + "five/0": 2, + "Converted": 1, + "method": 7, + "Carp": 1, + "cd": 1, + "battery": 1, + "s": 19, + "in": 10, "using": 1, - "eval.": 1, - "mode": 5, - "status": 7, - "is": 3, - "else": 3, - "none": 1, - "echo": 3, - "|": 3, - ".": 2, + "compliance": 3, + "transaction": 2, + "demonstrate": 1, + "phone": 1, + "global": 2, + "software": 3, + "Robert": 3, + "Solver": 1, + "]": 3, + "Duncan": 4, + "Intelligence": 1, + "macros": 1, + "distributed": 6, + "defun": 20, + "mnesia_demo.lfe": 1, + "table": 2, + "instance": 2, + "three": 1, + "language": 3, + "with": 8, + "every": 1, + "defsyntax": 2, + "Version": 3, + "CONDITIONS": 3, "<": 1, - "&": 1, - "res": 2, - "return": 6, - "funced": 3, - "editor": 7, - "EDITOR": 1, - "funcname": 14, - "while": 2, - "argv": 9, - "h": 1, - "help": 1, - "__fish_print_help": 1, - "set_color": 4, - "red": 2, - "printf": 3, - "(": 7, - "_": 3, - ")": 7, - "normal": 2, - "begin": 2, - ";": 7, - "or": 3, - "init": 5, - "nend": 2, - "editor_cmd": 2, - "type": 1, - "f": 3, - "/dev/null": 2, - "fish": 3, - "z": 1, - "fish_indent": 2, - "indent": 1, - "prompt": 2, - "read": 1, - "p": 1, - "c": 1, - "s": 1, - "cmd": 2, - "TMPDIR": 2, - "/tmp": 1, - "tmpname": 8, - "%": 2, - "self": 2, - "random": 2, - "stat": 2, - "rm": 1 - }, - "Forth": { - "(": 88, - "Block": 2, - "words.": 6, - ")": 87, - "variable": 3, - "blk": 3, - "current": 5, - "-": 473, - "block": 8, - "n": 22, - "addr": 11, - ";": 61, - "buffer": 2, - "evaluate": 1, - "extended": 3, - "semantics": 3, - "flush": 1, - "load": 2, - "...": 4, - "dup": 10, - "save": 2, - "input": 2, - "in": 4, - "@": 13, - "source": 5, - "#source": 2, - "interpret": 1, - "restore": 1, - "buffers": 2, - "update": 1, - "extension": 4, - "empty": 2, - "scr": 2, - "list": 1, - "bounds": 1, - "do": 2, - "i": 5, - "emit": 2, - "loop": 4, - "refill": 2, - "thru": 1, - "x": 10, - "y": 5, - "+": 17, - "swap": 12, - "*": 9, - "forth": 2, - "Copyright": 3, - "Lars": 3, - "Brinkhoff": 3, - "Kernel": 4, - "#tib": 2, - "TODO": 12, - ".r": 1, - ".": 5, - "[": 16, - "char": 10, - "]": 15, - "parse": 5, - "type": 3, - "immediate": 19, - "<": 14, - "flag": 4, - "r": 18, - "x1": 5, - "x2": 5, - "R": 13, - "rot": 2, - "r@": 2, - "noname": 1, - "align": 2, - "here": 9, - "c": 3, - "allot": 2, - "lastxt": 4, - "SP": 1, - "query": 1, - "tib": 1, - "body": 1, - "true": 1, - "tuck": 2, - "over": 5, - "u.r": 1, - "u": 3, - "if": 9, - "drop": 4, - "false": 1, - "else": 6, - "then": 5, - "unused": 1, - "value": 1, - "create": 2, - "does": 5, - "within": 1, - "compile": 2, - "Forth2012": 2, - "core": 1, - "action": 1, - "of": 3, - "defer": 2, - "name": 1, - "s": 4, - "c@": 2, - "negate": 1, - "nip": 2, - "bl": 4, - "word": 9, - "ahead": 2, - "resolve": 4, - "literal": 4, - "postpone": 14, - "nonimmediate": 1, - "caddr": 1, - "C": 9, - "find": 2, - "cells": 1, - "postponers": 1, - "execute": 1, - "unresolved": 4, - "orig": 5, - "chars": 1, - "n1": 2, - "n2": 2, - "orig1": 1, - "orig2": 1, - "branch": 5, - "dodoes_code": 1, - "code": 3, - "begin": 2, - "dest": 5, - "while": 2, - "repeat": 2, - "until": 1, - "recurse": 1, - "pad": 3, - "If": 1, - "necessary": 1, - "and": 3, - "keep": 1, - "parsing.": 1, - "string": 3, - "cmove": 1, - "state": 2, - "cr": 3, - "abort": 3, - "": 1, - "Undefined": 1, + "here": 1, + "let": 6, + "only": 1, "ok": 1, - "HELLO": 4, - "KataDiversion": 1, - "Forth": 1, - "utils": 1, - "the": 7, - "stack": 3, - "EMPTY": 1, - "DEPTH": 2, - "IF": 10, - "BEGIN": 3, - "DROP": 5, - "UNTIL": 3, - "THEN": 10, - "power": 2, - "**": 2, - "n1_pow_n2": 1, - "SWAP": 8, - "DUP": 14, - "DO": 2, - "OVER": 2, - "LOOP": 2, - "NIP": 4, - "compute": 1, - "highest": 1, - "below": 1, - "N.": 1, - "e.g.": 2, - "MAXPOW2": 2, - "log2_n": 1, - "ABORT": 1, - "ELSE": 7, - "|": 4, - "I": 5, - "i*2": 1, - "/": 3, - "kata": 1, - "test": 1, - "given": 3, - "N": 6, - "has": 1, - "two": 2, - "adjacent": 2, - "bits": 3, - "NOT": 3, - "TWO": 3, - "ADJACENT": 3, - "BITS": 3, - "bool": 1, - "uses": 1, - "following": 1, - "algorithm": 1, - "return": 5, - "A": 5, - "X": 5, - "LOG2": 1, - "end": 1, - "OR": 1, - "INVERT": 1, - "maximum": 1, - "number": 4, - "which": 3, - "can": 2, - "be": 2, - "made": 2, - "with": 2, - "MAX": 2, - "NB": 3, - "m": 2, - "**n": 1, - "numbers": 1, - "or": 1, - "less": 1, - "have": 1, - "not": 1, - "bits.": 1, - "see": 1, - "http": 1, - "//www.codekata.com/2007/01/code_kata_fifte.html": 1, - "HOW": 1, - "MANY": 1, - "Tools": 2, - ".s": 1, - "depth": 1, - "traverse": 1, - "dictionary": 1, - "assembler": 1, - "kernel": 1, - "bye": 1, - "cs": 2, - "pick": 1, - "roll": 1, - "editor": 1, - "forget": 1, - "reveal": 1, - "tools": 1, - "nr": 1, - "synonym": 1, - "undefined": 2, - "defined": 1, - "invert": 1, - "/cell": 2, - "cell": 2 - }, - "GAS": { - ".cstring": 1, - "LC0": 2, - ".ascii": 2, - ".text": 1, - ".globl": 2, - "_main": 2, - "LFB3": 4, - "pushq": 1, - "%": 6, - "rbp": 2, - "LCFI0": 3, - "movq": 1, - "rsp": 1, - "LCFI1": 2, - "leaq": 1, - "(": 1, - "rip": 1, - ")": 1, - "rdi": 1, - "call": 1, - "_puts": 1, - "movl": 1, - "eax": 1, - "leave": 1, - "ret": 1, - "LFE3": 2, - ".section": 1, - "__TEXT": 1, - "__eh_frame": 1, - "coalesced": 1, - "no_toc": 1, - "+": 2, - "strip_static_syms": 1, - "live_support": 1, - "EH_frame1": 2, - ".set": 5, - "L": 10, - "set": 10, - "LECIE1": 2, - "-": 7, - "LSCIE1": 2, - ".long": 6, - ".byte": 20, - "xc": 1, - ".align": 2, - "_main.eh": 2, - "LSFDE1": 1, - "LEFDE1": 2, - "LASFDE1": 3, - ".quad": 2, - ".": 1, - "xe": 1, - "xd": 1, - ".subsections_via_symbols": 1 - }, - "GLSL": { - "////": 4, - "High": 1, - "quality": 2, - "(": 386, - "Some": 1, - "browsers": 1, - "may": 1, - "freeze": 1, - "or": 1, - "crash": 1, - ")": 386, - "//#define": 10, - "HIGHQUALITY": 2, - "Medium": 1, - "Should": 1, - "be": 1, - "fine": 1, - "on": 3, - "all": 1, - "systems": 1, - "works": 1, - "Intel": 1, - "HD2000": 1, - "Win7": 1, - "but": 1, - "quite": 1, - "slow": 1, - "MEDIUMQUALITY": 2, - "Defaults": 1, - "REFLECTIONS": 3, - "#define": 13, - "SHADOWS": 5, - "GRASS": 3, - "SMALL_WAVES": 4, - "RAGGED_LEAVES": 5, - "DETAILED_NOISE": 3, - "LIGHT_AA": 3, - "//": 36, - "sample": 2, - "SSAA": 2, - "HEAVY_AA": 2, - "x2": 5, - "RG": 1, - "TONEMAP": 5, - "Configurations": 1, - "#ifdef": 14, - "#endif": 14, - "const": 18, - "float": 103, - "eps": 5, - "e": 4, - "-": 108, - ";": 353, - "PI": 3, - "vec3": 165, - "sunDir": 5, - "skyCol": 4, - "sandCol": 2, - "treeCol": 2, - "grassCol": 2, - "leavesCol": 4, - "leavesPos": 4, - "sunCol": 5, - "#else": 5, - "exposure": 1, - "Only": 1, - "used": 1, - "when": 1, - "tonemapping": 1, - "mod289": 4, - "x": 11, - "{": 61, - "return": 47, - "floor": 8, - "*": 115, - "/": 24, - "}": 61, - "vec4": 72, - "permute": 4, - "x*34.0": 1, - "+": 108, - "*x": 3, - "taylorInvSqrt": 2, - "r": 14, - "snoise": 7, - "v": 8, - "vec2": 26, - "C": 1, - "/6.0": 1, - "/3.0": 1, - "D": 1, - "i": 38, - "dot": 30, - "C.yyy": 2, - "x0": 7, - "C.xxx": 2, - "g": 2, - "step": 2, - "x0.yzx": 1, - "x0.xyz": 1, - "l": 1, - "i1": 2, - "min": 11, - "g.xyz": 2, - "l.zxy": 2, - "i2": 2, - "max": 9, - "x1": 4, - "*C.x": 2, - "/3": 1, - "C.y": 1, - "x3": 4, - "D.yyy": 1, - "D.y": 1, - "p": 26, - "i.z": 1, - "i1.z": 1, - "i2.z": 1, - "i.y": 1, - "i1.y": 1, - "i2.y": 1, - "i.x": 1, - "i1.x": 1, - "i2.x": 1, - "n_": 2, - "/7.0": 1, - "ns": 4, - "D.wyz": 1, - "D.xzx": 1, - "j": 4, - "ns.z": 3, - "mod": 2, - "*7": 1, - "x_": 3, - "y_": 2, - "N": 1, - "*ns.x": 2, - "ns.yyyy": 2, - "y": 2, - "h": 21, - "abs": 2, - "b0": 3, - "x.xy": 1, - "y.xy": 1, - "b1": 3, - "x.zw": 1, - "y.zw": 1, - "//vec4": 3, - "s0": 2, - "lessThan": 2, - "*2.0": 4, - "s1": 2, - "sh": 1, - "a0": 1, - "b0.xzyw": 1, - "s0.xzyw*sh.xxyy": 1, - "a1": 1, - "b1.xzyw": 1, - "s1.xzyw*sh.zzww": 1, - "p0": 5, - "a0.xy": 1, - "h.x": 1, - "p1": 5, - "a0.zw": 1, - "h.y": 1, - "p2": 5, - "a1.xy": 1, - "h.z": 1, - "p3": 5, - "a1.zw": 1, - "h.w": 1, - "//Normalise": 1, - "gradients": 1, - "norm": 1, - "norm.x": 1, - "norm.y": 1, - "norm.z": 1, - "norm.w": 1, - "m": 8, - "m*m": 1, - "fbm": 2, - "final": 5, - "waterHeight": 4, - "d": 10, - "length": 7, - "p.xz": 2, - "sin": 8, - "iGlobalTime": 7, - "Island": 1, - "waves": 3, - "p*0.5": 1, - "Other": 1, - "bump": 2, - "pos": 42, - "rayDir": 43, - "s": 23, - "Fade": 1, - "out": 1, - "to": 1, - "reduce": 1, - "aliasing": 1, - "dist": 7, - "<": 23, - "sqrt": 6, - "Calculate": 1, - "normal": 7, - "from": 2, - "heightmap": 1, - "pos.x": 1, - "iGlobalTime*0.5": 1, - "pos.z": 2, - "*0.7": 1, - "*s": 4, - "normalize": 14, - "e.xyy": 1, - "e.yxy": 1, - "intersectSphere": 2, - "rpos": 5, - "rdir": 3, - "rad": 2, - "op": 5, - "b": 5, - "det": 11, - "b*b": 2, - "rad*rad": 2, - "if": 29, - "t": 44, - "rdir*t": 1, - "intersectCylinder": 1, - "rdir2": 2, - "rdir.yz": 1, - "op.yz": 3, - "rpos.yz": 2, - "rdir2*t": 2, - "pos.yz": 2, - "intersectPlane": 3, - "rayPos": 38, - "n": 18, - "sign": 1, - "rotate": 5, - "theta": 6, - "c": 6, - "cos": 4, - "p.x": 2, - "p.z": 2, - "p.y": 1, - "impulse": 2, - "k": 8, - "by": 1, - "iq": 2, - "k*x": 1, - "exp": 2, - "grass": 2, - "Optimization": 1, - "Avoid": 1, - "noise": 1, - "too": 1, - "far": 1, - "away": 1, - "pos.y": 8, - "tree": 2, - "pos.y*0.03": 2, - "mat2": 2, - "m*pos.xy": 1, - "width": 2, - "clamp": 4, - "scene": 7, - "vtree": 4, - "vgrass": 2, - ".x": 4, - "eps.xyy": 1, - "eps.yxy": 1, - "eps.yyx": 1, - "plantsShadow": 2, - "Soft": 1, - "shadow": 4, - "taken": 1, - "for": 7, - "int": 7, - "rayDir*t": 2, - "res": 6, - "res.x": 3, - "k*res.x/t": 1, - "s*s*": 1, - "intersectWater": 2, - "rayPos.y": 1, - "rayDir.y": 1, - "intersectSand": 3, - "intersectTreasure": 2, - "intersectLeaf": 2, - "openAmount": 4, - "dir": 2, - "offset": 5, - "rayDir*res.w": 1, - "pos*0.8": 2, - "||": 3, - "res.w": 6, - "res2": 2, - "dir.xy": 1, - "dir.z": 1, - "rayDir*res2.w": 1, - "res2.w": 3, - "&&": 10, - "leaves": 7, - "e20": 3, - "sway": 5, - "fract": 1, - "upDownSway": 2, - "angleOffset": 3, - "Left": 1, - "right": 1, - "alpha": 3, - "Up": 1, - "down": 1, - "k*10.0": 1, - "p.xzy": 1, - ".xzy": 2, - "d.xzy": 1, - "Shift": 1, - "Intersect": 11, - "individual": 1, - "leaf": 1, - "res.xyz": 1, - "sand": 2, - "resSand": 2, - "//if": 1, - "resSand.w": 4, - "plants": 6, - "resLeaves": 3, - "resLeaves.w": 10, - "e7": 3, - "light": 5, - "sunDir*0.01": 2, - "col": 32, - "n.y": 3, - "lightLeaves": 3, - "ao": 5, - "sky": 5, - "res.y": 2, - "uvFact": 2, - "uv": 12, - "n.x": 1, - "tex": 6, - "texture2D": 6, - "iChannel0": 3, - ".rgb": 2, - "e8": 1, - "traceReflection": 2, - "resPlants": 2, - "resPlants.w": 6, - "resPlants.xyz": 2, - "pos.xz": 2, - "leavesPos.xz": 2, - ".r": 3, - "resLeaves.xyz": 2, - "trace": 2, - "resSand.xyz": 1, - "treasure": 1, - "chest": 1, - "resTreasure": 1, - "resTreasure.w": 4, - "resTreasure.xyz": 1, - "water": 1, - "resWater": 1, - "resWater.w": 4, - "ct": 2, - "fresnel": 2, - "pow": 3, - "trans": 2, - "reflDir": 3, - "reflect": 1, - "refl": 3, - "resWater.t": 1, - "mix": 2, - "camera": 8, - "px": 4, - "rd": 1, - "iResolution.yy": 1, - "iResolution.x/iResolution.y*0.5": 1, - "rd.x": 1, - "rd.y": 1, - "void": 5, - "main": 3, - "gl_FragCoord.xy": 7, - "*0.25": 4, - "*0.5": 1, - "Optimized": 1, - "Haarm": 1, + "To": 1, + "GPS": 1, + "McGreggor": 4, + "id": 9, + "system": 1, + "getvar": 3, "Peter": 1, - "Duiker": 1, - "curve": 1, - "col*exposure": 1, - "x*": 2, - ".5": 1, - "gl_FragColor": 2, - "NUM_LIGHTS": 4, - "AMBIENT": 2, - "MAX_DIST": 3, - "MAX_DIST_SQUARED": 3, - "uniform": 7, - "lightColor": 3, - "[": 29, - "]": 29, - "varying": 3, - "fragmentNormal": 2, - "cameraVector": 2, - "lightVector": 4, - "initialize": 1, - "diffuse/specular": 1, - "lighting": 1, - "diffuse": 4, - "specular": 4, - "the": 1, - "fragment": 1, - "and": 2, - "direction": 1, - "cameraDir": 2, - "loop": 1, - "through": 1, - "each": 1, - "calculate": 1, - "distance": 1, - "between": 1, - "distFactor": 3, - "lightDir": 3, - "diffuseDot": 2, - "halfAngle": 2, - "specularColor": 2, - "specularDot": 2, - "sample.rgb": 1, - "sample.a": 1, - "#version": 1, - "kCoeff": 2, - "kCube": 2, - "uShift": 3, - "vShift": 3, - "chroma_red": 2, - "chroma_green": 2, - "chroma_blue": 2, - "bool": 1, - "apply_disto": 4, - "sampler2D": 1, - "input1": 4, - "adsk_input1_w": 4, - "adsk_input1_h": 3, - "adsk_input1_aspect": 1, - "adsk_input1_frameratio": 5, - "adsk_result_w": 3, - "adsk_result_h": 2, - "distortion_f": 3, - "f": 17, - "r*r": 1, - "inverse_f": 2, - "lut": 9, - "max_r": 2, - "incr": 2, - "lut_r": 5, - ".z": 5, - ".y": 2, - "aberrate": 4, - "chroma": 2, - "chromaticize_and_invert": 2, - "rgb_f": 5, - "px.x": 2, - "px.y": 2, - "uv.x": 11, - "uv.y": 7, - "*2": 2, - "uv.x*uv.x": 1, - "uv.y*uv.y": 1, - "else": 1, - "rgb_uvs": 12, - "rgb_f.rr": 1, - "rgb_f.gg": 1, - "rgb_f.bb": 1, - "sampled": 1, - "sampled.r": 1, - "sampled.g": 1, - ".g": 1, - "sampled.b": 1, - ".b": 1, - "gl_FragColor.rgba": 1, - "sampled.rgb": 1 - }, - "Gosu": { - "print": 4, - "(": 54, - ")": 55, - "<%!-->": 1, - "defined": 1, - "in": 3, - "Hello": 2, - "gst": 1, - "<": 1, - "%": 2, - "@": 1, - "params": 1, - "users": 2, - "Collection": 1, - "": 1, - "<%>": 2, - "for": 2, - "user": 1, - "{": 28, - "user.LastName": 1, - "}": 28, - "user.FirstName": 1, - "user.Department": 1, - "package": 2, - "example": 2, - "enhancement": 1, - "String": 6, - "function": 11, - "toPerson": 1, - "Person": 7, - "var": 10, - "vals": 4, - "this.split": 1, - "return": 4, - "new": 6, - "[": 4, - "]": 4, - "as": 3, + "Copyright": 4, + "pattern": 1, + "law": 3, + "mommy": 3, + "basic": 1, + "under": 9, + "Comprehensions": 1, + "not": 5, + "//lfe.github.io/user": 1, + "self": 6, + "feet": 1, + "telephone": 1, + "shop": 6, + "fun": 1, + "limit": 4, + "for": 5, + "verb": 2, + "following": 2, + "Licensed": 3, + "defmodule": 2, + "Programming": 1, + "spec": 1, + "does": 1, + "lc": 1, + "j": 2, + "together": 1, + "get": 21, "int": 2, - "Relationship.valueOf": 2, - "hello": 1, - "uses": 2, - "java.util.*": 1, - "java.io.File": 1, - "class": 1, - "extends": 1, - "Contact": 1, - "implements": 1, - "IEmailable": 2, - "_name": 4, - "_age": 3, - "Integer": 3, - "Age": 1, - "_relationship": 2, - "Relationship": 3, - "readonly": 1, - "RelationshipOfPerson": 1, - "delegate": 1, - "_emailHelper": 2, - "represents": 1, - "enum": 1, - "FRIEND": 1, - "FAMILY": 1, - "BUSINESS_CONTACT": 1, - "static": 7, - "ALL_PEOPLE": 2, - "HashMap": 1, - "": 1, - "construct": 1, - "name": 4, - "age": 4, - "relationship": 2, - "EmailHelper": 1, - "this": 1, - "property": 2, - "get": 1, - "Name": 3, - "set": 1, - "override": 1, - "getEmailName": 1, - "incrementAge": 1, + "Now": 1, + "#Fun": 1, + "*ops*": 1, + "General": 1, + "applicable": 3, + "very": 1, + "works": 1, + "school": 2, + "count": 7, + "implied.": 3, + "pa": 1, + "create": 4, + "may": 6, + "objects": 2, + "achieve": 1, + "gps": 1, + "v": 3, + "Artificial": 1, + "Unless": 3, + "BASIS": 3, + "integer": 2, + "if": 1, + "new": 2, + "(": 217, + "length": 1, + "update": 1, + "XXXX": 1, + "select": 1, + "License": 12, + "numerals": 1, + "tuple": 1, + "hack": 1, + "at": 4, + "person": 8, + "people": 1, + "Initialise": 1, + "his": 1, + "give": 1, + "church": 20, + "Demonstrating": 2, + "demo": 2, + "macro": 1, + "License.": 6, + "qlc": 2, + "used": 1, + "naughty": 1, + "name": 8, + "by_place_qlc": 2, + "son": 2, + "state": 4, + "was": 1, + "on": 4, + ")": 231, + "It": 1, + "ETS": 1, + "Problem": 1, + "express": 3, + "a": 8, + "funcall": 23, + "See": 3, + "which": 1, + "Start": 1, + "File": 4, + "four": 1, + "species": 7, + "have": 3, + "setvar": 2, + "LFE.": 1, + "WITHOUT": 3, + "by_place": 1, + "specifications": 1, + "variables": 1, + "put": 1, + "List": 2, + "version": 1, + "this": 3, + "x": 12, + "is": 5, + "distance": 2, + "call": 2, + "*": 6, + "This": 2, + "five": 1, + "children": 10, + "class": 3, + "calculus": 1, + "mnesia_demo": 1, + "export": 2, + "copy": 3, + "KIND": 3, + "cond": 1, + "": 2, + "necessary.": 1, + "Load": 1, + "defvar": 2, + "guide": 1, + "../bin/lfe": 1, + "other": 1, + "can": 1, + "difference": 1, + "section": 1, + "Here": 1, + "simple": 4, + "from": 2, + "A": 1, + "specific": 3, + "op": 8, + "we": 1, + "The": 4, + "records": 1, + "attributes": 1, + "Author": 3, + "fish": 6, + "../ebin": 1, + "that": 1, + "OOP": 1, + "how": 2, + "except": 3, + "church.lfe": 1, "+": 2, - "@Deprecated": 1, - "printPersonInfo": 1, - "addPerson": 4, - "p": 5, - "if": 4, - "ALL_PEOPLE.containsKey": 2, - ".Name": 1, - "throw": 1, - "IllegalArgumentException": 1, - "p.Name": 2, - "addAllPeople": 1, - "contacts": 2, - "List": 1, - "": 1, - "contact": 3, - "typeis": 1, - "and": 1, - "not": 1, - "contact.Name": 1, - "getAllPeopleOlderThanNOrderedByName": 1, - "allPeople": 1, - "ALL_PEOPLE.Values": 3, - "allPeople.where": 1, - "-": 3, - "p.Age": 1, - ".orderBy": 1, - "loadPersonFromDB": 1, - "id": 1, - "using": 2, - "conn": 1, - "DBConnectionManager.getConnection": 1, - "stmt": 1, - "conn.prepareStatement": 1, - "stmt.setInt": 1, - "result": 1, - "stmt.executeQuery": 1, - "result.next": 1, - "result.getString": 2, - "result.getInt": 1, - "loadFromFile": 1, - "file": 3, - "File": 2, - "file.eachLine": 1, - "line": 1, - "line.HasContent": 1, - "line.toPerson": 1, - "saveToFile": 1, - "writer": 2, - "FileWriter": 1, - "PersonCSVTemplate.renderToString": 1, - "PersonCSVTemplate.render": 1 + "n": 4, + "del": 5, + "*state*": 5, + "int1": 1, + "c": 4, + "all": 1, + "start": 1, + "strictly": 1, + "Note": 1, + "closures": 1, + "solved": 1, + "LFE": 4, + "user": 1, + "erlang": 1, + "money": 3, + "the": 36, + "gps1.lisp": 1, + "mnesia": 8, + "OF": 3, + "Apache": 3, + "job": 3, + "Mode": 1, + "Virding": 3, + "shows": 2, + "match": 5, + "Query": 2, + "guide/recursion/5.html": 1, + "of": 10, + "demonstrated": 1, + "object.lfe": 1, + "int2": 1, + "permissions": 3, + "ANY": 3, + "by_place_ms": 1, + "tables.": 1, + "place": 7, + "WARRANTIES": 3, + "Use": 1, + "schema.": 1, + "one": 1, + "OR": 3, + "Purpose": 3, + "http": 4, + "create_table": 1, + "or": 6, + "writing": 3, + "Norvig": 1, + "when": 1, + "those": 1, + "installs": 1, + "action": 3, + "Set": 1, + "-": 98, + "p": 2, + "union": 1, + "slurp": 2, + "either": 3, + "use": 6, + "to": 10, + "e": 1, + "communication": 2, + "val": 2, + "You": 3, + "agreed": 3, + "info": 1, + "When": 1, + "successor": 3, + "Paradigms": 1, + "defrecord": 1, + "memory": 1, + "an": 5, + "variable": 2, + "reproduce": 1, + "do": 2, + "drive": 1, + "set": 1, + "but": 1, + "table.": 1, + "Comprehensions.": 1, + "match_object": 1, + "q": 2, + "below": 3, + "by": 4, + "book": 1, + "current": 1, + "#": 3, + "you": 3, + "f": 3, + "inheritance.": 1, + "has": 1, + "conditions.": 1, + "goals": 2, + "[": 3, + "//www.apache.org/licenses/LICENSE": 3, + "limitations": 3, + "Define": 1, + "however": 1, + "methods": 5, + "make": 2, + "add": 3, + "some": 2, + "access.": 1, + "file": 6, + "usage": 1, + "car": 1, + "access": 1, + "numeral": 8, + "emp": 1, + "contains": 1, + "required": 3, + "swam": 1, + "move": 4, + "examples": 1, + "governing": 3, + "/": 1, + "lambda": 18, + "two": 1, + "successor/1": 1, + "zero": 2, + "example": 2, + "will": 1 }, - "Groovy": { - "task": 1, - "echoDirListViaAntBuilder": 1, - "(": 7, - ")": 7, - "{": 3, - "description": 1, - "//Docs": 1, - "http": 1, - "//ant.apache.org/manual/Types/fileset.html": 1, - "//Echo": 1, - "the": 3, - "Gradle": 1, - "project": 1, - "name": 1, - "via": 1, - "ant": 1, - "echo": 1, - "plugin": 1, - "ant.echo": 3, - "message": 1, - "project.name": 1, - "path": 2, - "//Gather": 1, + "AsciiDoc": { + "tag": 1, + "B*": 1, + "Versionen": 1, + "lteren": 1, + "https": 1, + "Redmine": 2, + "Item": 6, + "project": 2, + "for": 2, + "paragraph.": 4, + "": 1, + "Codierungen": 1, + "plugin": 2, + "Articles": 1, + "Page": 1, + ".Section": 1, + "*Section": 3, + "verr": 1, + "berschrift": 1, + "management": 2, + "A*": 2, + "idprefix": 1, + "Title": 1, + "rom": 2, + "users/foo": 1, + "the": 2, + "Gregory": 2, + "Example": 1, + "Section": 3, + "test": 1, + "NOTE": 1, + "Doc": 1, + "von": 1, + "ckt": 1, + "sind": 1, + "end": 1, + "an": 2, + "test.": 1, + "This": 1, + "Preamble": 1, + "id_": 1, + "gif": 1, + "vicmd": 1, + "has": 2, + "Rom": 2, + "Writer": 1, + "Ruby": 1, + "application.": 2, + "Home": 1, + "AsciiDoc": 3, "list": 1, - "of": 1, - "files": 1, - "in": 1, + "Subsection": 1, + "is": 1, + "Document": 1, + "auf": 1, + "]": 2, + "[": 2, + "//github.com/foo": 1, + "written": 2, + "-": 4, + "*": 4, + "B": 2, + "A": 2, "a": 1, - "subdirectory": 1, - "ant.fileScanner": 1, - "fileset": 1, - "dir": 1, - "}": 3, - ".each": 1, - "//Print": 1, - "each": 1, - "file": 1, + "only": 1 + }, + "TXL": { + "resolveAddition": 2, + "mulop": 2, + "where": 1, + "by": 6, + "NewE": 3, + "resolveMultiplication": 2, + "main": 1, + "rule": 12, + "addop": 2, + "not": 1, + "resolveSubtraction": 2, + "number": 10, + "replace": 6, + "end": 12, + "expression": 9, + "program": 1, + "define": 12, + "N2": 8, + "N1": 8, + "term": 6, + "N": 2, + "*": 2, + "+": 2, + "resolveParentheses": 2, + "resolveDivision": 2, + "construct": 1, + "E": 3, + "/": 3, + "-": 3, + ")": 2, + "(": 2, + "primary": 4, + "|": 3, + "]": 38, + "[": 38 + }, + "Xtend": { + "for": 2, + "if": 1, + "set": 1, + "foo": 1, + "number": 1, + "convenient.": 1, + "Long": 1, + ".length": 1, + "work": 1, + "Object": 1, + "double": 2, + "class": 4, + "int": 1, + "//": 11, + "make": 1, + "package": 2, + "b": 2, + "but": 1, + "example6": 1, + "which": 1, + "controlStructures": 1, + "Number": 1, "to": 1, - "screen": 1, - "with": 1, - "CWD": 1, - "projectDir": 1, - "removed.": 1, - "println": 2, - "it.toString": 1, - "-": 1, - "SHEBANG#!groovy": 1 + "title": 1, + "def": 7, + "iterator": 1, + "categories.contains": 1, + "{": 14, + "cascades.": 1, + "": 1, + "with": 2, + "There": 1, + "list.map": 1, + "newHashSet": 1, + "+": 6, + "segments.toSet": 1, + "set.filter": 1, + "(": 42, + "and": 1, + ".head": 1, + "true": 1, + "assertEquals": 14, + "i": 4, + "create": 1, + "decimals": 1, + "working": 1, + "map": 1, + "string": 1, + "list": 1, + ".sortBy": 1, + "numberOfActionMovies": 1, + "new": 2, + ".last.year": 1, + "newArrayList": 2, + "collections": 2, + "Never": 2, + "Java": 1, + "map.get": 1, + "parseInt": 1, + "line": 1, + "Movie": 2, + "java.io.FileReader": 1, + "..": 1, + "segments.next": 4, + "org.junit.Assert.*": 2, + ".size": 2, + "]": 9, + "movies": 3, + "year": 2, + "it": 2, + "|": 2, + "numberOfVotes": 2, + "big": 1, + "like": 1, + "BasicExpressions": 2, + "String": 2, + "long": 2, + "various": 1, + "@Data": 1, + "in": 2, + "categories": 1, + "iterator.hasNext": 1, + "s": 1, + "happens": 3, + "movies.filter": 2, + ")": 42, + "_229": 1, + "literals": 5, + "numerous": 1, + "toUpperCase": 1, + "void": 7, + "@Test": 7, + "boolean": 1, + "Double": 1, + "bd": 3, + "or": 1, + "methods": 2, + "looks": 1, + "yearOfBestMovieFrom80ies": 1, + "switch": 1, + "bar": 1, + "newHashMap": 1, + "extension": 2, + ".readLines.map": 1, + "Integer": 1, + "parseDouble": 1, + "line.split": 1, + "quotes": 1, + ".contains": 1, + ".take": 1, + "movies.sortBy": 1, + "loop": 2, + "loops": 1, + "segments": 1, + "a": 2, + "sumOfVotesOfTop2": 1, + "Movies": 1, + "java.util.Set": 1, + "return": 1, + "getClass": 1, + "are": 1, + "while": 2, + "someValue": 2, + "[": 9, + ".map": 1, + "org.junit.Test": 2, + ".reduce": 1, + "import": 7, + "example2": 1, + "single": 1, + "iterator.next": 1, + "}": 13, + "this": 1, + "counter": 8, + "var": 1, + "case": 1, + "false": 1, + "rating": 3, + "static": 4, + "text": 2, + "-": 5, + "them": 1, + "com.google.common.io.CharStreams.*": 1, + "val": 9, + "typeof": 1, + "*": 1, + "never": 1, + "FileReader": 1, + "Set": 1, + ".iterator": 2, + "parseLong": 1 + }, + "XML": { + "junit": 2, + "constructors": 12, + "Concurrency": 1, + "web": 6, + "ReactiveObject": 11, + "ViewModel": 8, + "": 120, + "unless": 1, + "would": 2, + "It": 1, + "same": 8, + "help": 1, + "file": 3, + "Covariant": 1, + "RegisterMessageSource": 4, + "which": 12, + "IReactiveNotifyPropertyChanged": 6, + "varables": 1, + "mean": 1, + "": 1, + "memoizing": 2, + "ItemChanging": 2, + "parameters.": 1, + "": 2, + "Reference": 1, + "completes": 4, + "expression": 3, + "additional": 3, + "observed": 1, + "upon": 1, + "/": 6, + "": 36, + "evaluate": 1, + "RxApp.DeferredScheduler": 2, + "log": 2, + "must": 2, + "your": 8, + "be": 57, + "": 2, + "download": 1, + "given": 11, + "more": 16, + "NOTE": 1, + "IMPORTANT": 1, + "file.": 1, + "performs": 1, + "-": 49, + "sending": 2, + "result.": 2, + "fixed": 1, + "In": 6, + "data": 1, + "default": 9, + "between": 15, + "module.ivy": 1, + "up": 25, + "backing": 9, + "arbitrarily": 2, + "that": 94, + "out": 4, + "easily": 1, + "Constructs": 4, + "Current": 1, + "after": 1, + "scenarios": 4, + "put": 2, + "filters": 1, + "particular": 2, + "them": 1, + "raiseAndSetIfChanged": 1, + "Setter": 2, + "server": 2, + "TaskpoolScheduler": 2, + "neither": 3, + "use": 5, + "coupled": 2, + "True.": 2, + "conf=": 1, + "provider": 1, + "properties": 29, + "recently": 3, + "Note": 7, + "*after*": 2, + "is": 123, + ")": 45, + "property": 74, + "ReactiveObject.": 1, + "configured": 1, + "calculationFunc": 2, + "ViewModels": 3, + "any": 11, + "T": 1, + "": 1, + "": 2, + "Pool": 1, + "faking": 4, + "convert": 2, + "Works": 2, + "changed": 18, + "": 121, + "size": 1, + "ItemChanging/ItemChanged.": 2, + "Functions": 2, + "bus.": 1, + "suffice.": 1, + "respective": 1, + "thread.": 3, + "caches": 2, + "queued": 1, + "Constructor": 2, + "name=": 223, + "result": 3, + "function.": 6, + "when": 38, + "": 3, + "": 1, + "IReactiveNotifyPropertyChanged.": 4, + "events.": 2, + "IObservedChange": 5, + "object": 42, + "test": 7, + "entire": 1, + "addition": 3, + "than": 5, + "Value": 3, + "still": 1, + "also": 17, + "based": 9, + "ObservableAsyncMRUCache.AsyncGet": 1, + "clean": 1, + "operations": 6, + "Tag": 1, + "org=": 1, + "": 1, + "manually": 4, + "INotifyPropertyChanged.": 1, + "If": 6, + "memoization": 2, + "send": 3, + "global": 1, + "services": 2, + "temporary": 1, + "keep": 1, + "ObservableForProperty.": 1, + "maintain": 1, + "": 1, + "": 2, + "write": 2, + "notification": 6, + "progress": 1, + "created": 2, + "explicitly": 1, + "running.": 1, + "derive": 1, + "keyword.": 2, + "anything": 2, + "may": 1, + "empty": 1, + "MRU": 1, + "contents": 2, + "heuristically": 1, + "named": 2, + "Selector": 1, + "list.": 2, + "existing": 3, + "implementing": 2, + "parameter.": 1, + "exposes": 1, + "found.": 1, + "convention": 2, + "unlike": 13, + "method.": 2, + "*before*": 2, + "Represents": 4, + "object.": 3, + "ChangeTrackingEnabled": 2, + "cannot": 1, + "similar": 3, + "selectors": 2, + "no": 4, + "has": 16, + "rebroadcast": 2, + "": 12, + "evaluated": 1, + "value=": 1, + "standard": 1, + "doesn": 1, + "Given": 3, + "async": 3, + "raised": 1, + "sense": 1, + "Return": 1, + "newly": 2, + "This.GetValue": 1, + "once": 4, + "output": 1, + "compile": 1, + "need": 12, + "WhenAny": 12, + "needs": 1, + "unpredictable.": 1, + "further": 1, + "extension": 2, + "communicate": 2, + "number": 9, + "plug": 1, + "Item": 4, + "per": 2, + "typed": 2, + "An": 26, + "send.": 4, + "Immediate": 1, + "ReactiveCollection.": 1, + "typically": 1, + "ItemChanged": 2, + "Specifying": 2, + "RaisePropertyChanged": 2, + "subscribed": 2, + "actual": 2, + "important": 6, + "disconnects": 1, + "notification.": 2, + "": 120, + "so": 1, + "initial": 28, + "s": 1, + "applies": 1, + "provided": 14, + "the": 260, + "Invalidate": 2, + "Message": 2, + "extensionOf=": 1, + "field.": 1, + "provide": 2, + "This": 21, + "as": 25, + "single": 2, + "reasons": 1, + "Use": 13, + "monitor": 1, + "passed": 1, + "onRelease": 1, + "instead": 2, + "or": 24, + "": 12, + "": 1, + "unit": 3, + "without": 1, + "fail.": 1, + "many": 1, + "enabled": 8, + "raisePropertyChanging": 4, + "always": 4, + "Creates": 3, + "defaults": 1, + "normally": 6, + "When": 5, + "multiple": 6, + "duplicate": 2, + "structure": 1, + "private": 1, + "IEnableLogger": 1, + "going": 4, + "Threadpool": 1, + "fake": 4, + "delete": 1, + "taken": 1, + "registered.": 2, + "optional": 2, + "about": 5, + "Sends": 2, + "providing": 20, + "on": 35, + "bindings": 13, + "optionnal": 1, + "simplify": 1, + "intended": 5, + "mirror": 1, + "Converts": 2, + "Evaluates": 1, + "purpose": 10, + "love": 1, + "Select": 3, + "Registers": 3, + "combination": 2, + "thrown": 1, + "disposed.": 3, + "gets": 1, + "Since": 1, + "InUnitTestRunner": 1, + "x.SomeProperty": 1, + "receives": 1, + "ObservableAsyncMRUCache": 2, + "adds": 2, + "called": 5, + "for": 59, + "method": 34, + "paths": 1, + "AsyncGet": 1, + "manage": 1, + "SendMessage.": 2, + "other": 9, + "changed.": 9, + "own": 2, + "normal": 2, + "previous": 2, + "casting": 1, + "": 1, + "i": 2, + "DeferredScheduler": 1, + "Conceptually": 1, + "service": 1, + "AddRange": 2, + "override": 1, + "ObservableForProperty": 14, + "able": 1, + "rest.": 2, + "property.": 12, + "future": 2, + "To": 4, + "with": 23, + "provided.": 5, + "": 1, + "custom": 4, + "Attempts": 1, + "sense.": 1, + "version": 3, + "framework": 1, + "WP7": 1, + "leak": 2, + "whenever": 18, + "not": 9, + "xmlns": 2, + "asynchronous": 4, + "contract.": 2, + "well": 2, + "PropertyChangedEventArgs.": 1, + "expression.": 1, + "several": 1, + "disk": 1, + "two": 1, + "Observables": 4, + "of": 75, + "directly": 1, + "another": 3, + "code": 4, + "UI": 2, + "cache.": 5, + "nor": 3, + "removed": 4, + "because": 2, + "posted": 3, + "parameter": 6, + "Type.": 2, + "onto": 1, + "Expression": 7, + "Count.": 4, + "items": 27, + "returned": 2, + "subscribing": 1, + "operation.": 1, + "reached": 2, + "times.": 4, + "Changed": 4, + "rev=": 1, + "": 2, + "framework.": 1, + "child": 2, + "wait": 3, + "will": 65, + "implement": 5, + "The": 74, + "reenables": 3, + "changes": 13, + "writing": 1, + "delay.": 2, + "false": 2, + "queues": 2, + "raise": 2, + "null.": 10, + "a": 127, + "visibility=": 2, + "tests.": 1, + "access": 3, + "either": 1, + "one": 27, + "non": 1, + "notify": 3, + "my": 2, + "schedule": 2, + "followed": 1, + "": 83, + "startup.": 1, + "": 1, + "asyncronous": 1, + "": 1, + "whose": 7, + "done": 2, + "version=": 4, + "only": 18, + "IMessageBus": 1, + "assumption": 4, + "Model": 1, + "populated": 4, + "withDelay": 2, + "Tracking": 2, + "selector.": 2, + "subsequent": 1, + "class": 11, + "Observable": 56, + "ReactiveUI": 2, + "determined": 1, + "available.": 1, + "limit": 5, + "traditional": 3, + "*always*": 1, + "want": 2, + "": 1, + "description=": 2, + "Task": 1, + "regardless": 2, + "never": 3, + "you": 20, + "attaching": 1, + "return": 11, + "populate": 1, + "attached.": 1, + "limited": 1, + "scheduler": 11, + "returned.": 2, + "too": 1, + "calculation": 8, + "maps": 1, + "memoized": 1, + "all": 4, + "full": 1, + "methods.": 2, + "Determins": 2, + "leave": 10, + "part": 2, + "Rx.Net.": 1, + "set.": 3, + "onChanged": 2, + "replaces": 1, + ".": 20, + "such": 5, + "": 1, + "mode": 2, + "ValueIfNotDefault": 1, + "Observable.Return": 1, + "called.": 1, + "Unit": 1, + "RaiseAndSetIfChanged": 2, + "operation": 2, + "backed": 1, + "item": 19, + "null": 4, + "name": 7, + "Ensure": 1, + "types": 10, + "one.": 1, + "server.": 2, + "image": 1, + "messages": 22, + "being": 1, + "": 36, + "stream": 7, + "interface": 4, + "this": 77, + "distinguish": 12, + "implements": 8, + "determine": 1, + "Timer.": 2, + "filled": 1, + "then": 3, + "mathematical": 2, + "RaisePropertyChanging": 2, + "target.property": 1, + "issue": 2, + "default.": 2, + "cache": 14, + "i.e.": 23, + "it": 16, + "call": 5, + "values": 4, + "retrieve": 3, + "provides": 6, + "next": 1, + "application": 2, + "save": 1, + "ObservableAsPropertyHelper": 6, + "on.": 6, + "action": 2, + "key": 12, + "collections": 1, + "INotifyPropertyChanged": 1, + "using": 9, + "additionnal": 1, + "customize": 1, + "binding.": 1, + "like": 2, + "ensure": 3, + "(": 52, + "sample": 2, + "creating": 2, + "calls.": 2, + "changes.": 2, + "Dispatcher": 3, + "read": 3, + "TPL": 1, + "almost": 2, + "potentially": 2, + "maximum": 2, + "returning": 1, + "": 1, + "": 1, + "target": 6, + "request": 3, + "add": 2, + "allow": 1, + "start": 1, + "java": 1, + "status=": 1, + "entry": 1, + "usually": 1, + "faster": 2, + "field": 10, + "TSender": 1, + "stream.": 3, + "slot": 1, + "new": 10, + "Provides": 4, + "": 120, + "revision=": 3, + "guarantees": 6, + "pass": 2, + "in": 45, + "": 2, + "step": 1, + "Sender.": 1, + "generic": 3, + "Enables": 2, + "fire": 11, + "listen": 6, + "module.ant": 1, + "work": 2, + "depends": 1, + "represents": 4, + "GetFieldNameForPropertyNameFunc.": 1, + "fetch": 1, + "run": 7, + "type": 23, + "ToProperty": 2, + "make": 2, + "compute": 1, + "been": 5, + "x": 1, + "otherwise": 1, + "resulting": 1, + "convenient.": 1, + "": 1, + "time": 3, + "last": 1, + "module=": 3, + "Collection.Select": 1, + "*must*": 1, + "Observable.": 6, + "requested": 1, + "can": 11, + "representing": 20, + "build": 1, + "DispatcherScheduler": 1, + "optionally": 2, + "checks.": 1, + "simple": 2, + "Changing/Changed": 1, + "awesome": 1, + "item.": 3, + "ensuring": 2, + "equivalent": 2, + "helper": 5, + "synchronous": 1, + "Log": 2, + "specified": 7, + "dummy": 1, + "string": 13, + "ObservableToProperty": 1, + "through": 3, + "": 1, + "change.": 12, + "into": 2, + "places": 1, + "finishes.": 1, + "discarded.": 4, + "client.": 2, + "set": 41, + "out.": 1, + "t": 2, + "RxApp.GetFieldNameForPropertyNameFunc.": 2, + "if": 27, + "takes": 1, + "before": 8, + "disposed": 4, + "old": 1, + "at": 2, + "designed": 1, + "common": 1, + "list": 1, + "SetValueToProperty": 1, + "running": 4, + "collection": 27, + "where": 4, + "to.": 7, + "results": 6, + "Listen": 4, + "loosely": 2, + "": 1, + "ObservableAsyncMRUCache.": 1, + "very": 2, + "way": 2, + "are": 13, + "RxApp": 1, + "": 84, + "ea=": 2, + "MessageBus.Current.": 1, + "invoke": 4, + "function": 13, + "queried": 1, + "easyant": 3, + "updated": 1, + "Issues": 1, + "semantically": 3, + "each": 7, + "have": 17, + "change": 26, + "setup.": 12, + "observe": 12, + "name.": 1, + "similarly": 1, + "base": 3, + "cached": 2, + "user": 2, + "post": 2, + "logger": 2, + "background": 1, + "first": 1, + "by": 13, + "added": 6, + "Observables.": 2, + "": 2, + "": 1, + "naming": 1, + "GetFieldNameForProperty": 1, + "already": 1, + "requests.": 2, + "itself": 2, + "identical": 11, + "representation": 1, + "Changing": 5, + "modes": 1, + "concurrently": 2, + "selector": 5, + "example": 2, + "an": 88, + "from": 12, + "A": 19, + "Changed.": 1, + "fires": 6, + "attempts": 1, + "Silverlight": 2, + "input": 2, + "expensive": 2, + "currently": 2, + "act": 2, + "": 1, + "making": 3, + "avoid": 2, + "type.": 3, + "Exception": 1, + "was": 6, + "notifications.": 5, + "and": 44, + "fully": 3, + "spamming": 2, + "flight": 2, + "message.": 1, + "simpler": 1, + "possible": 1, + "classes": 2, + "memoizes": 2, + "CPU": 1, + "versions": 2, + "to": 164, + "give": 1, + "mock": 4, + "SelectMany": 2, + "added.": 4, + "Returns": 5, + "": 1, + "updated.": 1, + "maxConcurrent": 1, + "does": 1, + "value.": 2, + "could": 1, + "apply": 3, + "take": 2, + "extended": 1, + "instance": 2, + "removed.": 4, + "Consider": 2, + "": 1, + "properties/methods": 1, + "Change": 2, + "x.Foo.Bar.Baz": 1, + "collection.": 6, + ";": 10, + "objects": 4, + "BindTo": 1, + "initialized": 2, + "Fires": 14, + "should": 10, + "response": 2, + "": 1, + "we": 1, + "ReactiveCollection": 1, + "useful": 2, + "overload": 2, + "current": 10, + "its": 4, + "defined": 1, + "pre": 1, + "evicted": 2, + "message": 30, + "go": 2, + "Set": 3, + "declare": 1, + "Another": 2, + "value": 44, + "via": 8, + "unique": 12, + "allows": 15, + "added/removed": 1, + "organisation=": 3, + "Test": 1, + "delay": 2, + "hundreds": 2, + "concurrent": 5, + "automatically": 3, + "complete": 1, + "IReactiveCollection": 3, + "until": 7, + "folder": 1, + "equivalently": 1, + "WebRequest": 1, + "returns": 5, + "but": 7, + "corresponding": 2, + "requests": 4, + "OAPH": 2, + "": 1, + "registered": 1, + "both": 2, + "specific": 8, + "performance": 1, + "True": 6, + "MakeObjectReactiveHelper.": 1, + "initialize": 1, + "flattened": 2, + "steps": 1, + "notifications": 22, + "used": 19, + "way.": 2, + "helps": 1, + "reflection": 1, + "adding": 2, + "immediately": 3, + "Type": 9, + "sent": 2, + "often": 3, + "target.": 1, + "compatible": 1, + "SelectMany.": 1, + "chained": 2, + "MessageBus": 3 + }, + "Sass": { + "padding": 2, + ".border": 2, + ".content": 1, + "blue": 7, + "color": 4, + "border": 3, + "#3bbfce": 2, + "px": 3, + "solid": 1, + "darken": 1, + ".content_navigation": 1, + "navigation": 1, + "margin": 8, + "}": 2, + "{": 2, + ";": 6, + "/": 4, + ")": 1, + "%": 1, + "(": 1, + "-": 3 }, "Groovy Server Pages": { - "": 4, - "": 4, - "": 4, - "http": 3, - "equiv=": 3, - "content=": 4, - "": 4, - "Testing": 3, - "with": 3, "SiteMesh": 2, - "and": 2, - "Resources": 2, - "": 4, - "name=": 1, "": 2, - "module=": 2, - "": 4, - "": 4, - "": 4, - "": 4, - "<%@>": 1, - "page": 2, - "contentType=": 1, - "Using": 1, - "directive": 1, - "tag": 1, - "": 2, - "Print": 1, - "{": 1, + "": 2, + "class=": 2, + "Download": 1, + "Using": 1, "example": 1, - "}": 1 + "": 4, + "Resources": 2, + "
": 2, + "": 4, + "": 4, + "and": 2, + "": 4, + "Print": 1, + "": 4, + "": 4, + "content=": 4, + "http": 3, + "id=": 2, + "directive": 1, + "name=": 1, + "</html>": 4, + "href=": 2, + "<a>": 2, + "module=": 2, + "Testing": 3, + "</body>": 4, + "<html>": 4, + "page": 2, + "}": 1, + "{": 1, + "with": 3, + "equiv=": 3 }, - "Haml": { - "%": 1, - "p": 1, + "CSS": { + "bell": 2, + "textarea.span1": 2, + "video": 4, + "linear": 204, + "figure": 2, + "textarea.span10": 2, + "inset": 132, + "help": 2, + "infinite": 5, + "file": 2, + "td.span1": 2, + "polaroid": 2, + "th.span10": 2, + ".offset9": 6, + "hr": 2, + "ring": 6, + "Menlo": 2, + ".page": 2, + "top": 376, + ".navbar": 332, + ".span9": 4, + "group.open": 18, + "camera": 2, + ".nav": 308, + ".active": 86, + "outline": 30, + "large": 40, + "original": 2, + "hidden": 9, + ".offset7": 6, + "backdrop": 2, + "#149bdf": 11, + ".progress": 22, + "below": 18, + "prepend.input": 22, + "#ee5f5b": 18, + "white": 25, + "#0e0e0e": 2, + ".caret": 70, + "#f8b9b7": 6, + ".add": 36, + ".span7": 4, + "ease": 12, + "download": 4, + ".offset5": 6, + "li": 205, + "inside": 4, + ".tooltip.left": 2, + "question": 2, + "#fbb450": 16, + "#7ab5d3": 6, + "-": 8839, + "default": 12, + ".span5": 4, + "#808080": 2, + "data": 2, + "fixed": 36, + "up": 12, + "upload": 2, + "out": 10, + "info.active": 6, + ".offset3": 6, + "label": 20, + "cite": 2, + "+": 105, + "after": 96, + "@page": 2, + "info": 37, + ".span3": 4, + "search": 66, + ".img": 6, + "heading": 1, + "eye": 4, + "plus": 4, + "#006dcc": 2, + "inherit": 8, + ".offset1": 6, + ".muted": 2, + "#da4f49": 2, + ".3em": 6, + "overflow": 21, + "clear": 32, + ")": 748, + ".span12": 4, + "#040404": 18, + "GradientType": 30, + ".span1": 4, + "table": 44, + "backdrop.fade.in": 1, + ".hero": 3, + "#fbeed5": 2, + "random": 2, + "calendar": 2, + "warning.active": 6, + "group.error": 32, + "#fcfcfc": 2, + "size": 104, + "ul": 84, + "danger.progress": 1, + "tabs": 94, + "certificate": 2, + "barcode": 2, + "inverse.active": 6, + ".span10": 4, + "controls": 2, + "*margin": 70, + "object": 1, + "canvas": 2, + "transparent": 148, + "#eeeeee": 31, + "#c09853": 14, + "thin": 8, + "caption": 18, + "}": 1705, + ".offset11": 6, + "*position": 2, + "li.dropdown.open.active": 14, + "group.info": 32, + "xlarge": 2, + "weight": 28, + "%": 366, + "#df8505": 2, + "title": 10, + "cart": 2, + "alpha": 7, + "invalid": 12, + "{": 1661, + ".6": 6, + "progress": 15, + ".breadcrumb": 8, + "#515151": 2, + "shadow": 254, + "bold": 14, + "keyframes": 8, + "asterisk": 2, + "tags": 2, + "Monaco": 2, + "*border": 8, + ".checkbox": 26, + "empty": 7, + "prepend": 82, + "input.span8": 4, + "dotted": 10, + ".controls": 28, + "y": 2, + "text": 129, + ".modal": 5, + "a.thumbnail": 4, + ".tabs": 62, + "no": 2, + "h5": 6, + "tr.success": 4, + ".divider": 8, + ".2": 12, + ".control": 150, + "success": 35, + "input.span6": 4, + ".row": 126, + "solid": 93, + "#f7f7f9": 2, + "forward": 6, + "#1a1a1a": 2, + "h3": 14, + ".table": 180, + "input.span4": 4, + "#f2dede": 6, + ".pre": 2, + "cursor": 30, + ".hide": 12, + "#f7f7f7": 3, + "magnet": 2, + "#151515": 12, + "box": 264, + "bicubic": 2, + "rendering": 2, + "input.span11": 4, + "important": 18, + "h1": 11, + "li.dropdown": 12, + "star": 4, + "primary": 14, + "s": 25, + "none": 128, + "th.span8": 2, + "#005580": 8, + "word": 6, + "input.span2": 4, + "#ffffff": 136, + "striped": 13, + ".popover.top": 3, + "span": 38, + "wrench": 2, + "#942a25": 2, + "#a9302a": 2, + "#bd362f": 20, + "*background": 36, + "block": 133, + ".tooltip.bottom": 2, + "navbar.active": 8, + "danger.active": 6, + "padding": 174, + "#d0e9c6": 2, + "#0088cc": 24, + ".text": 14, + "primary.disabled": 2, + "q": 4, + "th.span6": 2, + "unit": 3, + "#252525": 2, + ".popover.left": 3, + "enabled": 18, + "index": 14, + "a.text": 16, + "attr": 4, + "circle": 18, + "edit": 2, + "o": 48, + "th.span4": 2, + "multiple": 2, + "visited": 2, + "thead": 38, + ".tab": 8, + "gift": 2, + ".btn.btn": 6, + "#2a85a0": 2, + "#999": 6, + "center": 17, + "on": 36, + "readonly": 10, + "moz": 316, + "bordered": 76, + "#d9edf7": 6, + "th.span2": 2, + "check": 2, + "#d59392": 6, + ".lead": 2, + "align": 72, + "tr": 92, + "@": 8, + "#f2f2f2": 22, + "#080808": 2, + "#000": 2, + "resize": 8, + "chevron": 8, + "pause": 2, + "justify": 2, + "flag": 2, + "#499249": 2, + "uppercase": 4, + "display": 135, + "#b94a48": 20, + "ol": 10, + "#d6e9c6": 2, + ".btn.dropdown": 2, + "section": 2, + "exclamation": 2, + "endColorstr": 30, + "*padding": 36, + "normal": 18, + "pre.prettyprint": 2, + "animation": 5, + "pills.nav": 4, + "plane": 2, + "arrow": 21, + "#46a546": 2, + "optimizelegibility": 2, + "inverse": 110, + "print": 4, + ".tooltip.top": 2, + "retweet": 2, + "down": 12, + "link": 28, + "danger": 21, + ".btn.active": 8, + "menu": 42, + "underline": 6, + "eject": 2, + "#b3b3b3": 2, + "warning": 33, + "address": 2, + "style": 21, + "info.dropdown": 2, + "headphones": 2, + "repeat": 66, + ".search": 22, + "blockquote.pull": 10, + ".clearfix": 8, + "pointer": 12, + "not": 6, + ".tabbable": 8, + "#363636": 2, + "DXImageTransform.Microsoft.gradient": 48, + "textarea.span8": 2, + ".125": 6, + ".btn.large": 4, + "html": 4, + "nowrap": 14, + "row": 20, + "webkit": 364, + "code": 6, + "#eed3d7": 2, + "#777777": 12, + "hand": 8, + "book": 2, + "#408140": 2, + "td.span8": 2, + "home": 2, + ".2s": 16, + "textarea.span6": 2, + "tfoot": 12, + ".dropup": 2, + "comment": 2, + "envelope": 2, + "#e9322d": 2, + ".badge": 30, + "#e1e1e8": 2, + "alt": 6, + "button.btn": 4, + "#f5f5f5": 26, + "line": 97, + "sans": 6, + "child": 301, + "td.span6": 2, + "th": 70, + "#c43c35": 5, + "textarea.span4": 2, + "topright": 16, + "warning.progress": 1, + "info.progress": 1, + "false": 18, + "width": 215, + "Helvetica": 6, + "ellipsis": 2, + "baseline": 4, + ".075": 12, + "a": 268, + "collapse.collapse": 2, + "#7aba7b": 6, + "td.span11": 2, + "color": 711, + "aside": 2, + "td.span4": 2, + "border": 912, + "minus": 4, + "disabled": 36, + "textarea.span2": 2, + "audio": 4, + "middle": 20, + "bottomright": 16, + "textarea.span11": 2, + "select": 90, + ".popover.right": 3, + ".progress.active": 1, + "move": 2, + "inbox": 2, + "class": 26, + "td": 66, + "th.span11": 2, + "family": 10, + "td.span2": 2, + "page": 6, + ".pager": 34, + "tasks": 2, + "filter": 57, + "transition": 36, + "condensed": 4, + "fieldset": 2, + "#111111": 18, + "Arial": 6, + "#faf2cc": 2, + "]": 384, + "li.dropdown.active": 8, + "absolute": 8, + ".pill": 6, + "bookmark": 2, + "inverse.disabled": 2, + "success.active": 6, + "#d9d9d9": 4, + "break": 12, + "abbr": 6, + ".offset8": 6, + "class*": 100, + "transform": 4, + ".disabled": 22, + "li.dropdown.open": 14, + "submenu": 8, + "#cccccc": 18, + "#ebebeb": 1, + ".popover.bottom": 3, + "#0e90d2": 2, + "fast": 4, + "#5bb75b": 2, + ".15": 24, + "#e6e6e6": 20, + "[": 384, + ".ir": 2, + "maps": 2, + ".span8": 4, + ".next": 4, + "full": 2, + "all": 10, + "dt": 6, + ".offset6": 6, + "#d4d4d4": 2, + "ms": 13, + "body": 3, + "radius": 534, + ".dl": 12, + ".span6": 4, + "#ccc": 13, + "textarea": 76, + "#999999": 50, + "mini": 34, + "mode": 2, + "#57a957": 5, + "#2f96b4": 20, + ".offset4": 6, + "#468847": 18, + "cm": 2, + "heart": 2, + "image": 187, + ".popover": 14, + "scroll": 2, + "#map_canvas": 2, + ".media": 11, + "#003399": 2, + "hgroup": 2, + "#3a87ad": 18, + ".span4": 4, + "bottom": 309, + "xxlarge": 2, + ".input": 216, + "stripes": 15, + "zoom": 5, + "#faa732": 3, + "active": 46, + ".offset2": 6, + "ol.inline": 4, + "#953b39": 6, + "right": 258, + "backward": 6, + "volume": 6, + ".form": 132, + "#f89406": 27, + "medium": 2, + "topleft": 16, + "*": 2, + "margin": 424, + "nth": 4, + "orphans": 2, + "facetime": 2, + "#f9f9f9": 12, + ".span2": 4, + ".arrow": 12, + "centered": 2, + "#bfbfbf": 4, + "font": 142, + ".thumbnail": 6, + ".dropdown.active": 4, + "warning.dropdown": 2, + "tr.warning": 4, + "(": 748, + "ol.unstyled": 2, + ".span11": 4, + ".pull": 16, + "@media": 2, + ".offset12": 6, + "form": 38, + "dl": 2, + "cell": 2, + "a.badge": 4, + "height": 141, + "navbar.disabled": 4, + "tint": 2, + "#5bc0de": 16, + "warning.disabled": 2, + "widows": 2, + "space": 23, + "scrollable": 2, + ".alert": 34, + "a.muted": 4, + "tbody": 68, + "#c4e3f3": 2, + "#fcf8e3": 6, + ".caption": 2, + "bar": 21, + "stacked": 24, + "marker": 2, + "startColorstr": 30, + ".offset10": 6, + "#dddddd": 16, + "float": 84, + ".btn": 506, + "success.progress": 1, + "#ddd": 38, + "qrcode": 2, + "in": 10, + "wrap": 6, + "#333": 6, + "globe": 2, + "fire": 2, + "step": 4, + "refresh": 2, + "#222222": 32, + "sup": 4, + "textfield": 2, + "z": 12, + "ul.inline": 4, + "offset": 6, + "input.span9": 4, + "#dd514c": 1, + ".open": 8, + "pills": 28, + "serif": 6, + "hover": 144, + "#a47e3c": 4, + "type": 174, + ".previous": 4, + "trash": 2, + "signal": 2, + "toggle": 84, + "h6": 6, + "min": 14, + "max": 18, + "ban": 2, + "time": 2, + "x": 30, + "input.span7": 4, + "last": 118, + "adjust": 6, + ".tooltip.in": 1, + "hdd": 2, + "glass": 2, + "button.btn.btn": 6, + "group.success": 32, + "picture": 2, + ".dropdown": 126, + "h4": 20, + "append": 120, + "interpolation": 2, + "menu.pull": 8, + ".1": 24, + "pencil": 2, + "lock": 2, + "road": 2, + "#000000": 14, + "danger.disabled": 2, + "dd": 6, + "input.span5": 4, + "button": 18, + "fluid": 126, + "nav": 2, + "primary.dropdown": 2, + "separate": 4, + "figcaption": 2, + "em": 6, + "input.span12": 4, + "#62c462": 16, + "#595959": 2, + "small": 66, + "h2": 14, + "#4bb1cf": 1, + "deg": 20, + "thumbs": 4, + "#356635": 6, + "th.span9": 2, + "input.span3": 4, + "abbr.initialism": 2, + "#802420": 2, + "#a9dba9": 2, + "input.span10": 4, + "play": 4, + "query": 22, + "before": 48, + "vertical": 56, + "focus": 232, + "pane": 4, + "success.disabled": 2, + "#ad6704": 2, + "input.span1": 4, + "th.span7": 2, + "odd": 4, + ".brand": 14, + "success.dropdown": 2, + "stop": 32, + "group.warning": 32, + "list": 44, + "close": 4, + "map": 2, + "error": 10, + "blockquote": 14, + "strong": 2, + "img": 14, + "backdrop.fade": 1, + "remove": 6, + "#dbc59e": 6, + "p": 14, + "a.label": 4, + "th.span5": 2, + "article": 2, + "rgba": 409, + ".tooltip.right": 2, + "toolbar": 8, + "music": 2, + "monospace": 2, + "#333333": 26, + "*zoom": 48, + "briefcase": 2, + "sign": 16, + "user": 2, + ".label": 30, + ".radio": 26, + "italic": 4, + "static": 14, + "clip": 3, + "#339bb9": 5, + "#fafafa": 2, + "#24748c": 2, + "#51a351": 20, + "#003bb3": 2, + "background": 770, + "first": 179, + "th.span3": 2, + "indent": 4, + "placeholder": 18, + "px": 2535, + ".tooltip": 7, + "query.focused": 2, + "danger.dropdown": 2, + "fullscreen": 2, + "shopping": 2, + "progid": 48, + "from": 40, + "header": 12, + "sub": 4, + "level": 2, + ".thumbnails": 12, + "bullhorn": 2, + "#0044cc": 20, + "input.search": 2, + "th.span1": 2, + "info.disabled": 2, + "input": 336, + "visible": 8, + "/0": 2, + "#dff0d8": 6, + "auto": 50, + "#444444": 10, + "avoid": 6, + "left": 489, + "tr.error": 4, + "@keyframes": 2, + "navbar": 28, + "open": 4, + "ok": 6, + "#e5e5e5": 28, + "to": 75, + "Consolas": 2, + "legend": 6, + "#387038": 2, + "appearance": 6, + "*display": 20, + "content": 66, + "share": 4, + "#002a80": 2, + "tr.info": 4, + "collapse": 12, + "horizontal": 60, + "#c67605": 4, + "#fff": 10, + "inverse.dropdown": 2, + "rounded": 2, + ".google": 2, + "colgroup": 18, + "#555555": 18, + "#1b1b1b": 2, + "textarea.span9": 2, + "#ebcccc": 2, + "*width": 26, + ";": 4219, + "#0480be": 10, + "#ededed": 2, + "url": 4, + "#49afcd": 2, + "spacing": 3, + "#d14": 2, + "relative": 18, + "tabs.nav": 12, + "film": 2, + "td.span9": 2, + "footer": 2, + "sizing": 27, + ".pagination": 78, + ".large.dropdown": 2, + ".05": 24, + "textarea.span7": 2, + "position": 342, + "letter": 1, + "#bce8f1": 2, + "actions": 10, + "pre": 16, + "#2d6987": 6, + ".container": 32, + "#5eb95e": 1, + "*overflow": 3, + "td.span7": 2, + "*z": 2, + "cog": 2, + ".icon": 288, + ".help": 44, + ".uneditable": 80, + "textarea.span5": 2, + "decoration": 33, + "inline": 116, + "visibility": 1, + ".bar": 22, + "folder": 4, + "primary.active": 6, + "ul.unstyled": 2, + "leaf": 2, + "opacity": 15, + "group": 120, + "both": 30, + "href": 28, + "td.span12": 2, + "td.span5": 2, + ".close": 2, + "screenshot": 2, + "tag": 2, + "off": 4, + "#1f6377": 2, + ".btn.disabled": 4, + "details": 2, + "textarea.span3": 2, + ".nav.pull": 2, + "gradient": 175, + "textarea.span12": 2, + "inner": 37, + ".radio.inline": 6, + "cancel": 2, + ".checkbox.inline": 6, + "th.span12": 2, + "allowed": 4, + "td.span10": 2, + "td.span3": 2, + "bottomleft": 16 + }, + "Logtalk": { + "end_object.": 1, + "nl": 2, + "executed": 1, + "initialization/1": 1, + "hello_world": 1, + "when": 1, + "object": 2, + "memory": 1, + "loaded": 1, + "the": 2, + "write": 1, + "initialization": 1, + "automatically": 1, + "argument": 1, + "directive": 1, + "into": 1, + "is": 2, + "%": 2, + ".": 2, + ")": 4, + "(": 4, + "-": 3 + }, + "Org": { + "**": 1, + "most": 1, + "for": 3, + "that": 1, + "n": 1, + "Back": 1, + "orgmode.rb": 1, + "skip": 1, + "Orgmode": 2, + "folder": 1, + "conversion": 1, + "nil": 4, + "C": 1, + "register": 1, + "class": 1, + "library": 1, + "mode": 2, + "@": 1, + "input": 3, + "See": 1, + "<%=>": 2, + "creates": 1, + "easy.": 1, + "output": 2, + "opposed": 1, + "Description": 1, + "erb": 1, + "indented": 1, + "orgmode": 3, + "will": 1, + "gem": 1, + "lognotestate": 1, + "much": 1, + "title": 2, + "END_EXAMPLE": 1, + "site.": 1, + "to": 8, + "rubygems": 2, + "STARTUP": 1, + "now": 1, + "is": 5, + "Helpful": 1, + "parser": 1, + "PRIORITIES": 1, + "{": 1, + "as": 1, + "thing": 2, + "not": 1, + "created": 1, + ".": 1, + "orgfile": 1, + "Ruby": 1, + "page": 2, + "use": 1, + "makes": 1, + "+": 13, + "u": 1, + "Parser.new": 1, + "all": 1, + "bugs": 1, + "paragraph": 2, + "extracting": 1, + "c@": 1, + "(": 11, + "installed": 1, + "textile.": 1, + "have": 1, + "site": 1, + "handle": 1, + "ve": 1, + "i": 1, + "BEGIN_EXAMPLE": 2, + "DONE": 1, + "create": 1, + "lib/": 1, + "INPROGRESS": 1, + "Write": 1, + "part": 1, + "list": 1, + "today": 1, + "TODO": 1, + "f": 2, + "EMAIL": 1, + "A": 1, + "en": 1, + "multi": 1, + "first": 1, + "convert": 1, + "tags": 2, + "do": 2, + "new": 2, + "filter": 3, + "LANGUAGE": 1, + "c": 1, + "status": 2, + "example": 1, + "TeX": 1, + "there": 1, + "support": 1, + "from": 1, + "org": 10, + "Worg": 1, + "ruby": 6, + "customize": 1, + "files.": 1, + "Create": 1, + "Filters.register": 1, + "You": 1, + "it": 1, + "items.": 1, + "does": 1, + "Dewey": 1, + "|": 4, + "CATEGORY": 1, + "TITLE": 1, + "History": 1, + "optimized": 1, + "cannot": 1, + "The": 3, + "HTML.": 1, + "you": 2, + "Under": 1, + "into": 1, + "AUTHOR": 1, + "in": 2, + "Check": 1, + "end": 1, + "s": 1, + "For": 1, + "already": 1, + "OPTIONS": 1, + "the": 6, + ")": 11, + "w@": 1, + ".to_html": 1, + "sure": 1, + "bullet.": 1, + "Currently": 1, + "H": 1, + "In": 1, + "#": 13, + "textile": 1, + "routines": 1, + "Parser": 1, + "Proper": 1, + "B": 1, + "parsing": 1, + "SEQ_TODO": 1, + "num": 1, + "Update": 1, + "worg": 1, + "d": 2, + "require": 1, + "Webby": 3, + "CANCELED": 1, + "Version": 1, + "need": 1, + "a": 4, + "of": 2, + "your": 2, + "last": 1, + "HTML": 2, + "Status": 1, + "align": 1, + "wouldn": 1, + "conversion.": 1, + "translate": 1, + "This": 2, + "file": 1, + "code": 1, + "Brian": 1, + "TAGS": 1, + "nodlcheck": 1, + "toc": 2, + "this": 2, + "files": 1, + "significant": 1, + "HIDE": 1, + "bdewey@gmail.com": 1, + "Fixed": 1, + "development": 1, + "-": 30, + "w": 1, + "Make": 1, + "sudo": 1, + "LaTeX": 1, + "gets": 1, + "created_at": 1, + "t": 10, + "hidestars": 1, + "fold": 1, + "oddeven": 1, + "*": 3, + "supplied": 1, + "content.": 2, + "install": 1, + "WAITING": 1, + "Fix": 1 + }, + "Racket": { + "n": 8, + "//racket": 1, + "that": 2, + "source": 1, + "if": 1, + "documentation": 1, + "be": 2, + "can": 1, + "for": 3, + "textual": 1, + "efficient": 1, + "@index": 1, + "@": 3, + "scribble/bnf": 1, + "syntax": 1, + "printf": 2, + "library": 1, + "generally": 1, + "itself": 1, + "power": 1, + "any": 1, + "PDF": 1, + "collection": 1, + "see": 1, + "racket/string": 1, + "Racket": 2, + "Tool": 1, + "@author": 1, + "starting": 1, + "bottles": 4, + "to": 2, + "else": 1, + "sub1": 1, + "is": 3, + "{": 2, + "with": 1, + "@title": 1, + "racket/list": 1, + "write": 1, + "url": 3, + "typeset": 1, + "(": 25, + "and": 1, + "let": 1, + "SHEBANG#!sh": 1, + "books": 1, + "contents": 1, + "scribble.scrbl": 1, + "written": 1, + "displayln": 2, + "other": 1, + "link": 1, + "@filepath": 1, + ";": 3, + "prose": 2, + "form.": 1, + "@include": 8, + "using": 1, + "]": 16, + "#lang": 1, + "file.": 1, + "You": 1, + "programmatically.": 1, + "|": 2, + "its": 1, + "simple": 1, + "whether": 1, + "scheme": 1, + "at": 1, + "you": 1, + "The": 1, + "etc.": 1, + "racket/path": 1, + "documents": 1, + "Scribble.": 1, + "racket/base": 1, + "in": 3, + "racket/file": 1, + "the": 3, + ")": 25, + "More": 1, + "content": 2, + "s": 1, + "exec": 1, + "form": 1, + "define": 1, + "um": 1, + "#": 2, + "helps": 1, + "or": 2, + "Latex": 1, + "Clean": 1, + "Scribble": 3, + "papers": 1, + "require": 2, + "generated": 1, + "via": 1, + "a": 1, + "of": 4, + "lang.org/": 1, + "document": 1, + "HTML": 1, + "Documentation": 1, + "programs": 1, + "are": 1, + "[": 16, + "more": 2, + "This": 1, + "code": 1, + "creating": 1, + "}": 2, + "tools": 1, + "http": 1, + "case": 1, + "range": 1, + "-": 100, + "text": 1, + "scribble/manual": 1, + "@table": 1, + "racket": 1, + "*": 2, + "section": 9, + "rich": 1 + }, + "Prolog": { + "Children": 2, + "some_occurs": 3, + "and": 3, + "quickly": 1, + "S1": 2, + "list": 1, + "A/B/C/D/E/F/H/0/I": 1, + "F": 31, + "screen": 1, + "animate": 2, + "/A/C/D/E/F/H/I/J": 1, + "Bigger": 2, + ";": 9, + "Rs0": 6, + "positive": 1, + "s": 1, + "cheaper": 2, + "using": 2, + "Child": 2, + "negative": 1, + "s_aux": 14, + "Manhattan": 1, + "%": 334, + "h": 10, + "animation": 1, + "Object": 1, + "be": 1, + "bold": 1, + "Open1": 2, + "equal": 2, + "partition": 5, + "]": 109, + "evaluation": 1, + "R": 32, + "H.": 1, + "Nodes": 1, + "A/B/C/D/E/F/H/J/0": 1, + "stay": 1, + "get0": 2, + "A/B/C/D/E/F/H/0/J": 3, + "G": 7, + "S2": 2, + "yfx": 1, + "<": 11, + "A/B/C/D/E/F/H/I/0": 2, + "Rest": 4, + "D1": 5, + "heuristic": 1, + "h_function": 2, + "/B/C/A/E/F/H/I/J": 1, + "Rs1": 2, + "Pa": 2, + "mode": 22, + "State#D#_#S": 1, + "i": 10, + "depth": 1, + "john": 2, + "turing": 1, + "into": 1, + "disjunction": 1, + "Ynew": 6, + "not": 1, + "nl": 8, + "configuration": 1, + "A/E/C/D/0/F/H/I/J": 1, + "Open2": 2, + "repeat_node": 2, + "New": 2, + "cls": 2, + "S": 26, + "displayed": 17, + "A/0/B/D/E/F/H/I/J": 1, + "A/B/C/D/E/F/I/0/J": 1, + "H": 11, + "S3": 2, + "for": 1, + "parents": 4, + "Ls0": 6, + "bagof": 1, + "Soln": 3, + "plus_minus": 1, + "cursor": 7, + "expand": 2, + "Pb": 2, + "State#_#_#Soln": 1, + "State": 7, + "p_fcn": 2, + "/B/C/D/E/F/H/I/J": 2, + "S#D#F#A": 1, + "F1": 1, + "plain.": 1, + "Open3": 2, + "B1": 2, + "_": 21, + "T": 6, + "cnF": 1, + "...": 3, + "D/B/C/0/E/F/H/I/J": 1, + "Smaller": 2, + "female": 2, + "draw": 18, + "S4": 2, + "d1": 1, + "Smalls": 3, + "I": 5, + "Ls1": 4, + "Each": 1, + "location": 32, + "retractall": 1, + "tile": 5, + "peter": 3, + "sequence": 2, + "should": 1, + "objects": 1, + "reverse_video": 2, + "Put": 1, + "function": 4, + "v": 3, + "A/B/C/D/I/F/H/0/J": 1, + "Pc": 2, + "plus": 6, + "rule": 1, + "sequences": 1, + "A/B/C/E/0/F/H/I/J": 1, + "(": 585, + "goal": 2, + "deny": 10, + "if": 2, + "spot": 1, + "mem_plus": 2, + "A/B/C/D/E/0/H/I/J": 3, + "RsRest": 2, + "Tape": 2, + "U": 2, + "at": 1, + "message": 1, + "A/B/C/D/F/0/H/I/J": 1, + "_#_#F2#_": 1, + "J": 1, + "A/B/F/D/E/0/H/I/J": 1, + "S5": 2, + "_#_#F1#_": 1, + "cycle": 1, + "push": 20, + "affirm": 10, + "Pd": 2, + "state": 1, + "Algorithm": 1, + "write_list": 3, + "working": 1, + ")": 584, + "B/0/C/D/E/F/H/I/J": 1, + "a": 31, + "NormalClauses": 3, + "which": 1, + "A/B/C/D/E/F/H/I/J": 1, + "initialize": 2, + "up": 17, + "A/0/C/D/E/F/H/I/J": 3, + "s_fcn": 2, + "search": 4, + "eval": 7, + "V": 16, + "init": 11, + "make_clauses": 5, + "blink": 1, + "S6": 2, + "insert": 6, + "have": 2, + "Wff": 3, + "put": 16, + "action_module": 1, + "Puzz": 3, + "reverse": 2, + "@": 1, + "map": 2, + "location/3.": 1, + "Pe": 2, + "Move": 3, + "out": 4, + "node": 2, + "right": 22, + "is": 22, + "A/B/C/0/D/F/H/I/J": 1, + "vick": 2, + "Ls": 12, + "call": 1, + "graphics": 1, + "m": 16, + "A/B/C/D/0/E/H/I/J": 1, + "distance": 1, + "clear": 4, + "Action": 2, + "conVert": 1, + "hide_row": 4, + "character": 3, + "b": 12, + "solve": 2, + "christie": 3, + "false": 1, + "retracted": 1, + "value": 1, + "L": 2, + "S7": 2, + "A/B/C/D/0/F/H/I/J": 4, + "A/B/0/D/E/F/H/I/J": 2, + "A/B/C/D/E/F/G/H/I": 3, + "NewSym": 2, + "A*": 1, + "A": 40, + "make_sequence": 9, + "attributes": 1, + "minus": 5, + "The": 1, + "normal": 3, + "Pf": 2, + "op": 28, + "left": 26, + "+": 32, + "flatten_and": 5, + "down": 15, + "c": 10, + "X": 62, + "S9.": 1, + "insert_all": 4, + "append": 2, + "empty": 2, + "P#_#_#_": 2, + "M": 14, + "State#0#F#": 1, + "S8": 2, + "sequence_append": 5, + "/2/3/8/0/4/7/6/5": 1, + "B": 30, + "the": 15, + "Open": 7, + "A/B/C/D/0/F/H/E/J": 1, + "occurs": 4, + "hide": 10, + "character_map": 3, + "play_back": 5, + "f_function": 3, + "describes": 1, + "Pg": 3, + "brother": 1, + "symbol": 3, + "draw_row": 4, + "assert": 17, + "of": 5, + "i.e.": 3, + "where": 3, + "*D1": 2, + "d": 27, + "V1": 2, + "accumulator": 10, + "times": 4, + "N1": 2, + "literals": 1, + "nl.": 1, + "A/B/C/0/E/F/H/I/J": 3, + "Y": 34, + "X0": 10, + "N": 20, + "_X": 2, + "Xs": 5, + "S9": 1, + "A/B/C/H/E/F/0/I/J": 1, + "flatten_or": 6, + "normalize": 2, + "C": 21, + "Ph": 2, + "or": 1, + "lt": 1, + "{": 3, + "A/B/C/D/E/J/H/I/0": 1, + "action": 4, + "asserted": 1, + "-": 276, + "Child#D1#F#": 1, + "once": 1, + "tautology": 4, + "Y0": 10, + "to": 1, + "F2.": 1, + "use": 3, + "e": 10, + "Q0": 2, + "qf": 1, + "Obj": 26, + "write": 13, + "nop": 6, + "A/C/0/D/E/F/H/I/J": 1, + "arithmetic": 3, + "an": 1, + "X1": 8, + "Xnew": 6, + "O": 14, + "memory": 5, + "Pi.": 1, + "represents": 1, + "form": 2, + "Bigs": 3, + "make_clause": 5, + "P1": 2, + "conjunction": 1, + "retract": 8, + "dynamic": 1, + "mem_rec": 2, + "D": 37, + "*S.": 1, + "Sym": 6, + "|": 36, + "Pi": 1, + "ancestor": 1, + "Rs": 16, + "by": 1, + "plain": 1, + "A/0/C/D/B/F/H/I/J": 1, + "All_My_Children": 2, + "A/B/C/D/E/F/0/I/J": 2, + ".": 210, + "Tape0": 2, + "Y1": 8, + "video": 1, + "f": 10, + "Q1": 2, + "[": 110, + "puzzle": 4, + "solver": 1, + "make": 2, + "drawn": 2, + "Tile": 35, + "moves": 1, + "A/B/0/D/E/C/H/I/J": 1, + "P": 37, + "ESC": 1, + "A/B/C/0/E/F/D/I/J": 1, + "quicksort": 4, + "E": 3, + "perform": 4, + "way": 1, + "message.": 2, + "}": 3, + "two": 1, + "/": 2, + "Pivot": 4, + "calculator": 1, + "move": 7, + "male": 3, + "q0": 1, + "draw_all": 1, + "g": 10, + "cont": 3, + "VT100": 1, + "separate": 7, + "draw_all.": 1, + "A/B/C/D/E/0/H/I/F": 1, + "A/B/C/D/E/F/0/H/J": 1 + }, + "Arduino": { + "Serial.print": 1, + "loop": 1, + "Serial.begin": 1, + "setup": 1, + "void": 2, + "}": 2, + ";": 2, + "{": 2, + ")": 4, + "(": 4 + }, + "Nemerle": { + "WriteLine": 1, + "Program": 1, + "module": 1, + "using": 1, + "Main": 1, + "void": 1, + "System.Console": 1, + "}": 2, + ")": 2, + "(": 2, + "{": 2, + ";": 2 + }, + "PogoScript": { + "index": 1, + "*": 2, + "link": 2, + "for": 2, + "get": 2, + "sort": 2, + "async.map": 1, + "<link\\s[^>": 1, + "r/": 2, + "replacements": 6, + "/gi": 2, + "b.index": 1, + "while": 1, + "{": 3, + "/": 2, + "url": 5, + "]": 7, + ".concat": 1, + "err": 2, + "<script\\s[^>": 1, + "script": 2, + "httpism.get": 2, + "length": 1, + "m": 1, + "callback": 2, + ")": 38, + "b": 1, + "in": 11, + "<\\/link\\>": 1, + "replacement": 2, + "scripts": 2, + "elements": 5, + "}": 3, + "rep": 1, + "href": 1, + "elements.push": 1, + "tag": 3, + "each": 2, + "r": 1, + "*href": 1, + "html.substr": 1, + "m.0.length": 1, + "m.index": 1, + "<\\/script\\>": 1, + "parts": 3, + "resolve": 2, + ".resolve": 1, + "m.1": 1, + "squash": 2, + "links": 2, + "r.url": 1, + "+": 2, + "require": 3, + "matching": 3, + "replacements.sort": 1, + "rep.index": 1, + "reg.exec": 1, + "html": 15, + "(": 38, + "a": 1, + "httpism": 1, + "exports.squash": 1, + "reg": 5, + "replacement.url": 1, + "i": 3, + "|": 2, + ".body": 2, + "replace": 2, + "*src": 1, + "r.href": 1, + "a.index": 1, + "@": 6, + "-": 1, + "replacement.body": 1, + "rep.length": 1, + "[": 5, + "async": 1, + "as": 3, + "requested": 2, + "s*": 2 + }, + "Julia": { + "*dt": 2, + "for": 2, + "unoptimised": 1, + "Prices": 1, + "Wiener": 1, + "decomposition": 1, + "stock": 1, + "SimulPriceB": 5, + "/250": 1, + "rate": 1, + "Number": 2, + "chol": 1, + "Correlated": 1, + "end": 3, + "paths": 1, + "B": 1, + "CorrWiener": 1, + "information": 1, + "]": 20, + "Matrix": 2, + "from": 1, + "Wiener*UpperTriangle": 1, + "Dividend": 1, + "original": 1, + "Geometric": 1, + "days": 3, + "stockcorr": 1, + "*CorrWiener": 2, + "*sqrt": 2, + ")": 13, + "case": 1, + "two": 2, + "correlated": 1, + "years": 1, + "Define": 1, + "zeros": 2, + "simulations": 1, + "storages": 1, + "j": 7, + "UpperTriangle": 2, + "SimulPriceA": 5, + "Test": 1, + "Price": 2, + "return": 1, + "r": 3, + "simulate": 1, + "Time": 1, + "The": 1, + "free": 1, + "simulates": 1, + "stocks": 1, + "randn": 1, + "A": 1, + "T": 5, + "Market": 1, + "#STOCKCORR": 1, + "prices": 1, + "#": 11, + "to": 1, + "the": 2, + "+": 2, + "##": 5, + "of": 6, + "Cholesky": 1, + "Motion": 1, + "function": 1, + "Risk": 1, + "year": 1, + "/2": 2, + "Brownian": 1, + "(": 13, + "Corr": 2, + ";": 1, + "#445": 1, + "CurrentPrice": 3, + "i": 5, + "by": 2, + "Generating": 1, + "Simulated": 2, + "that": 1, + "Vol": 5, + "code": 1, + "Asset": 2, + "-": 11, + "Volatility": 1, + "asset": 1, + "dt": 3, + "Information": 1, + "Div": 3, + "*exp": 2, + "[": 20, + "n": 4, + "Issue": 1, + "assets": 1, + "Correlation": 1, + "Initial": 1, + "step": 1 + }, + "Omgrofl": { "Hello": 1, + "brb": 1, + "lool": 5, + "lmao": 1, + "rofl": 13, + "lol": 14, + "stfu": 1, + "w00t": 1, + "liek": 1, + "wtf": 1, + "iz": 11, + "loool": 6, "World": 1 }, - "Handlebars": { - "<div>": 5, - "class=": 5, - "<h1>": 3, - "{": 16, - "title": 1, - "}": 16, - "</h1>": 3, - "body": 3, - "</div>": 5, - "By": 2, - "fullName": 2, - "author": 2, - "Comments": 1, - "#each": 1, - "comments": 1, - "<h2>": 1, - "</h2>": 1, - "/each": 1 - }, - "INI": { - ";": 1, - "editorconfig.org": 1, - "root": 1, - "true": 3, - "[": 2, - "*": 1, + "Logos": { + "OptionalCondition": 1, + "init": 3, + "orig": 2, + "self": 1, + "group": 1, + "release": 1, + "NSObject": 1, + "DEF": 1, + "subclass": 1, + "ABC": 2, + "hook": 2, + "retain": 1, + "OptionalHooks": 2, + "RuntimeAccessibleClass": 1, + "log": 1, + "ctor": 1, + "end": 4, + "return": 2, + "if": 1, + "void": 1, + "alloc": 1, + "id": 2, "]": 2, - "indent_style": 1, - "space": 1, - "indent_size": 1, - "end_of_line": 1, - "lf": 1, - "charset": 1, - "utf": 1, - "-": 1, - "trim_trailing_whitespace": 1, - "insert_final_newline": 1, - "user": 1, - "name": 1, - "Josh": 1, - "Peek": 1, - "email": 1, - "josh@github.com": 1 + "c": 1, + "[": 2, + "}": 4, + "nil": 2, + ";": 8, + "{": 4, + "b": 1, + "B": 1, + "a": 1, + ")": 8, + "(": 8, + "-": 3, + "%": 15 + }, + "MoonScript": { + "object": 1, + "max_tmp_name": 5, + "body_idx": 3, + "list": 6, + "types": 2, + "and": 8, + "super": 1, + "conds": 3, + "ntype": 16, + "proxy": 2, + "stms": 4, + "next": 1, + "case_exps": 3, + "case": 13, + "in": 18, + "*find_assigns": 1, + "build.table": 2, + "named_assign": 2, + "expression/statement": 1, + "__mode": 1, + "look": 1, + "return": 11, + "build.group": 14, + "node.names": 3, + "is_slice": 2, + "]": 79, + "table": 2, + "transform": 2, + "with": 3, + "transformed": 2, + "node.iter": 1, + "last_exp_id": 3, + "parent_val": 1, + "type": 5, + "list_name": 6, + "unless": 6, + "expand_elseif_assign": 2, + "included": 1, + "t": 10, + "i": 15, + "into": 1, + "*body": 2, + "is_singular": 2, + "#ifstm": 1, + "not": 2, + "constructor.arrow": 1, + "mtype": 3, + "cls": 5, + "after": 1, + "@seen_nodes": 3, + "@transformers": 3, + "build.assign_one": 11, + "source_name": 3, + "self": 2, + "for": 20, + "node.body": 9, + "index": 2, + "ifstm": 5, + "apart": 1, + "expand": 1, + "last": 6, + "slice": 7, + "@transform.statement": 2, + "sindle": 1, + "cls_mt": 2, + "#real_name": 1, + "*stm": 1, + "@send": 1, + "root_stms": 1, + "_": 10, + "...": 10, + "source": 7, + "scope": 4, + "@listen": 1, + "setmetatable": 1, + "they": 1, + "..": 1, + "scope_name": 5, + "then": 2, + "parent_assign": 3, + "elseif": 1, + "*names": 3, + "build.declare": 1, + "with_continue_listener": 4, + "hoist": 1, + "@set": 1, + "clause": 4, + "inner": 2, + "#list": 1, + "new": 2, + "(": 54, + "value_is_singular": 3, + "current_stms": 7, + "if": 43, + "tuple": 8, + "are": 1, + "update": 1, + "__call": 1, + "transformer": 3, + "bind": 1, + "destructure": 1, + "Value": 1, + "name": 31, + "cls.name": 1, + "state": 2, + "on": 1, + "clauses": 4, + "decorated": 1, + "apply_to_last": 6, + ")": 54, + "dot": 1, + "item": 3, + "a": 4, + "bounds": 3, + "split": 4, + "up": 1, + "build": 7, + "smart_node": 7, + "string": 1, + "stubs": 1, + "reversed": 2, + "implicitly_return": 2, + "insert": 18, + "mutate": 1, + "statment": 1, + "body": 26, + "self.fn": 1, + "@": 1, + "values": 10, + "wrapped": 4, + "out": 9, + "idx": 4, + "node": 68, + "is": 2, + "stub": 4, + "call": 3, + "destructure.build_assign": 2, + "old": 1, + "types.is_value": 1, + "export": 1, + "class": 4, + "false": 2, + "..t": 1, + "construct_comprehension": 2, + "cond": 11, + "value": 7, + "sure": 1, + "extract": 1, + "table.remove": 2, + "@put_name": 2, + "fail": 5, + "from": 4, + "#body": 1, + "we": 1, + "key": 3, + "#node": 3, + "hoist_declarations": 1, + "exp": 17, + "nil": 8, + "op": 2, + "colon_stub": 1, + "@transform": 2, + "+": 2, + "*item": 1, + "assigns": 5, + "foreach": 1, + "true": 4, + "all": 1, + "ipairs": 3, + "stm": 16, + "arg_list": 1, + "base_name": 4, + "destructure.has_destructure": 2, + "op_final": 3, + "build.chain": 7, + "error": 4, + "require": 5, + "data": 1, + "puke": 1, + "assign": 9, + "build.fndef": 3, + "the": 4, + "first": 3, + "match": 1, + "args": 3, + "bodies": 1, + "of": 1, + "#stms": 1, + "#values": 1, + "build.do": 2, + "cls_name": 1, + "*properties": 1, + "statements": 4, + "constructor_name": 2, + "runs": 1, + "if_cond": 4, + "convert_cond": 2, + "while": 3, + "Run": 8, + "LocalName": 2, + "parens": 2, + "out_body": 1, + "arrow": 1, + "*conds": 1, + "or": 6, + "real_names": 4, + "{": 135, + "when": 12, + "-": 51, + "index_name": 3, + "break": 1, + "res": 3, + "action": 4, + "decorator": 1, + "names": 16, + "@fn": 1, + "Statement": 2, + "group": 1, + "thing": 4, + "dec": 6, + "types.cascading": 1, + "properties": 4, + "import": 5, + "util": 2, + "build.assign": 3, + "apply": 1, + "switch": 7, + "do": 2, + "local": 1, + "lines": 2, + "bubble": 1, + "real_name": 6, + "parent_cls_name": 5, + "plain": 1, + "fn": 3, + "ret": 16, + "iter": 2, + "cascading": 2, + "don": 1, + "cond_exp": 5, + "[": 79, + "*stubs": 2, + "unpack": 22, + "block": 2, + "destructure.split_assign": 1, + "destructures": 5, + "make": 1, + "comprehension": 1, + "table.insert": 3, + "NameProxy": 14, + "else": 22, + "assign_name": 1, + "self_name": 4, + "continue": 1, + "continue_name": 13, + "varargs": 2, + "class_lookup": 3, + "if_stm": 5, + "}": 136, + "find": 2, + "exp_name": 3, + "base": 8, + "find_assigns": 2, + "..op": 1, + "real": 1, + "convert": 1, + "Transformer": 2, + "constructor": 7, + "slice_var": 3, + "@splice": 1, + "can_transform": 1, + "will": 1 + }, + "Parrot Assembly": { + "SHEBANG#!parrot": 1, + "main": 2, + ".pcc_sub": 1, + "end": 1, + "say": 1 + }, + "JSON": { + "true": 3, + "]": 165, + "[": 165, + "}": 143, + "{": 143 }, "Ioke": { "SHEBANG#!ioke": 1, "println": 1 }, - "Java": { - "package": 6, - "clojure.asm": 1, - ";": 891, - "import": 66, - "java.lang.reflect.Constructor": 1, - "java.lang.reflect.Method": 1, - "public": 214, - "class": 12, - "Type": 42, - "{": 434, - "final": 78, - "static": 141, - "int": 62, - "VOID": 5, - "BOOLEAN": 6, - "CHAR": 6, - "BYTE": 6, - "SHORT": 6, - "INT": 6, - "FLOAT": 6, - "LONG": 7, - "DOUBLE": 7, - "ARRAY": 6, - "OBJECT": 7, - "VOID_TYPE": 3, - "new": 131, - "(": 1097, - ")": 1097, - "BOOLEAN_TYPE": 3, - "CHAR_TYPE": 3, - "BYTE_TYPE": 3, - "SHORT_TYPE": 3, - "INT_TYPE": 3, - "FLOAT_TYPE": 3, - "LONG_TYPE": 3, - "DOUBLE_TYPE": 3, - "private": 77, - "sort": 18, - "char": 13, - "[": 54, - "]": 54, - "buf": 43, - "off": 25, - "len": 24, - "this.sort": 2, - "this.len": 2, - "}": 434, - "this.buf": 2, - "this.off": 1, - "getType": 10, - "String": 33, - "typeDescriptor": 1, - "return": 267, - "typeDescriptor.toCharArray": 1, - "Class": 10, - "c": 21, - "if": 116, - "c.isPrimitive": 2, - "Integer.TYPE": 2, - "else": 33, - "Void.TYPE": 3, - "Boolean.TYPE": 2, - "Byte.TYPE": 2, - "Character.TYPE": 2, - "Short.TYPE": 2, - "Double.TYPE": 2, - "Float.TYPE": 2, - "getDescriptor": 15, - "getObjectType": 1, - "name": 10, - "l": 5, - "name.length": 2, - "+": 83, - "name.getChars": 1, - "getArgumentTypes": 2, - "methodDescriptor": 2, - "methodDescriptor.toCharArray": 2, - "size": 16, - "while": 10, - "true": 21, - "car": 18, - "break": 4, - "args": 6, - ".len": 1, - "Method": 3, - "method": 2, - "classes": 2, - "method.getParameterTypes": 1, - "types": 3, - "classes.length": 2, - "for": 16, - "i": 54, - "-": 15, - "getReturnType": 2, - "methodDescriptor.indexOf": 1, - "method.getReturnType": 1, - "switch": 6, - "case": 56, - "//": 16, - "default": 6, - "getSort": 1, - "getDimensions": 3, - "getElementType": 2, - "getClassName": 1, - "StringBuffer": 14, - "b": 7, - ".getClassName": 1, - "b.append": 1, - "b.toString": 1, - ".replace": 2, - "getInternalName": 2, - "buf.toString": 4, - "getMethodDescriptor": 2, - "returnType": 1, - "argumentTypes": 2, - "buf.append": 21, - "<": 13, - "argumentTypes.length": 1, - ".getDescriptor": 1, - "returnType.getDescriptor": 1, - "void": 25, - "c.getName": 1, - "getConstructorDescriptor": 1, - "Constructor": 1, - "parameters": 4, - "c.getParameterTypes": 1, - "parameters.length": 2, - ".toString": 1, - "m": 1, - "m.getParameterTypes": 1, - "m.getReturnType": 1, - "d": 10, - "d.isPrimitive": 1, - "d.isArray": 1, - "d.getComponentType": 1, - "d.getName": 1, - "name.charAt": 1, - "getSize": 1, - "||": 8, - "getOpcode": 1, - "opcode": 17, - "Opcodes.IALOAD": 1, - "Opcodes.IASTORE": 1, - "boolean": 36, - "equals": 2, - "Object": 31, - "o": 12, - "this": 16, - "instanceof": 19, - "false": 12, - "t": 6, - "t.sort": 1, - "Type.OBJECT": 2, - "Type.ARRAY": 2, - "t.len": 1, - "j": 9, - "t.off": 1, - "end": 4, - "t.buf": 1, - "hashCode": 1, - "hc": 4, - "*": 2, - "toString": 1, - "clojure.lang": 1, - "java.lang.ref.Reference": 1, - "java.math.BigInteger": 1, - "java.util.Map": 3, - "java.util.concurrent.ConcurrentHashMap": 1, - "java.lang.ref.SoftReference": 1, - "java.lang.ref.ReferenceQueue": 1, - "Util": 1, - "equiv": 17, - "k1": 40, - "k2": 38, - "null": 80, - "Number": 9, - "&&": 6, - "Numbers.equal": 1, - "IPersistentCollection": 5, - "pcequiv": 2, - "k1.equals": 2, - "long": 5, - "double": 4, - "c1": 2, - "c2": 2, - ".equiv": 2, - "identical": 1, - "classOf": 1, - "x": 8, - "x.getClass": 1, - "compare": 1, - "Numbers.compare": 1, - "Comparable": 1, - ".compareTo": 1, - "hash": 3, - "o.hashCode": 2, - "hasheq": 1, - "Numbers.hasheq": 1, - "IHashEq": 2, - ".hasheq": 1, - "hashCombine": 1, - "seed": 5, - "//a": 1, - "la": 1, - "boost": 1, - "e3779b9": 1, - "<<": 1, - "isPrimitive": 1, - "isInteger": 1, - "Integer": 2, - "Long": 1, - "BigInt": 1, - "BigInteger": 1, - "ret1": 2, - "ret": 4, - "nil": 2, - "ISeq": 2, - "<K,V>": 1, - "clearCache": 1, - "ReferenceQueue": 1, - "rq": 1, - "ConcurrentHashMap": 1, - "K": 2, - "Reference": 3, - "<V>": 3, - "cache": 1, - "//cleanup": 1, - "any": 1, - "dead": 1, - "entries": 1, - "rq.poll": 2, - "Map.Entry": 1, - "e": 31, - "cache.entrySet": 1, - "val": 3, - "e.getValue": 1, - "val.get": 1, - "cache.remove": 1, - "e.getKey": 1, - "RuntimeException": 5, - "runtimeException": 2, - "s": 10, - "Throwable": 4, - "sneakyThrow": 1, - "throw": 9, - "NullPointerException": 3, - "Util.": 1, - "<RuntimeException>": 1, - "sneakyThrow0": 2, - "@SuppressWarnings": 1, - "<T>": 1, - "extends": 10, - "throws": 26, - "T": 2, - "nokogiri.internals": 1, - "nokogiri.internals.NokogiriHelpers.getNokogiriClass": 1, - "nokogiri.internals.NokogiriHelpers.isNamespace": 1, - "nokogiri.internals.NokogiriHelpers.stringOrNil": 1, - "nokogiri.HtmlDocument": 1, - "nokogiri.NokogiriService": 1, - "nokogiri.XmlDocument": 1, - "org.apache.xerces.parsers.DOMParser": 1, - "org.apache.xerces.xni.Augmentations": 1, - "org.apache.xerces.xni.QName": 1, - "org.apache.xerces.xni.XMLAttributes": 1, - "org.apache.xerces.xni.XNIException": 1, - "org.apache.xerces.xni.parser.XMLDocumentFilter": 1, - "org.apache.xerces.xni.parser.XMLParserConfiguration": 1, - "org.cyberneko.html.HTMLConfiguration": 1, - "org.cyberneko.html.filters.DefaultFilter": 1, - "org.jruby.Ruby": 2, - "org.jruby.RubyClass": 2, - "org.jruby.runtime.ThreadContext": 1, - "org.jruby.runtime.builtin.IRubyObject": 2, - "org.w3c.dom.Document": 1, - "org.w3c.dom.NamedNodeMap": 1, - "org.w3c.dom.NodeList": 1, - "HtmlDomParserContext": 3, - "XmlDomParserContext": 1, - "Ruby": 43, - "runtime": 88, - "IRubyObject": 35, - "options": 4, - "super": 7, - "encoding": 2, - "@Override": 6, - "protected": 8, - "initErrorHandler": 1, - "options.strict": 1, - "errorHandler": 6, - "NokogiriStrictErrorHandler": 1, - "options.noError": 2, - "options.noWarning": 2, - "NokogiriNonStrictErrorHandler4NekoHtml": 1, - "initParser": 1, - "XMLParserConfiguration": 1, - "config": 2, - "HTMLConfiguration": 1, - "XMLDocumentFilter": 3, - "removeNSAttrsFilter": 2, - "RemoveNSAttrsFilter": 2, - "elementValidityCheckFilter": 3, - "ElementValidityCheckFilter": 3, - "//XMLDocumentFilter": 1, - "filters": 3, - "config.setErrorHandler": 1, - "this.errorHandler": 2, - "parser": 1, - "DOMParser": 1, - "setProperty": 4, - "java_encoding": 2, - "setFeature": 4, - "enableDocumentFragment": 1, - "XmlDocument": 8, - "getNewEmptyDocument": 1, - "ThreadContext": 2, - "context": 8, - "XmlDocument.rbNew": 1, - "getNokogiriClass": 1, - "context.getRuntime": 3, - "wrapDocument": 1, - "RubyClass": 92, - "klazz": 107, - "Document": 2, - "document": 5, - "HtmlDocument": 7, - "htmlDocument": 6, - "NokogiriService.HTML_DOCUMENT_ALLOCATOR.allocate": 1, - "htmlDocument.setDocumentNode": 1, - "ruby_encoding.isNil": 1, - "detected_encoding": 2, - "detected_encoding.isNil": 1, - "ruby_encoding": 3, - "charset": 2, - "tryGetCharsetFromHtml5MetaTag": 2, - "stringOrNil": 1, - "htmlDocument.setEncoding": 1, - "htmlDocument.setParsedEncoding": 1, - ".equalsIgnoreCase": 5, - "document.getDocumentElement": 2, - ".getNodeName": 4, - "NodeList": 2, - "list": 1, - ".getChildNodes": 2, - "list.getLength": 1, - "list.item": 2, - "headers": 1, - "headers.getLength": 1, - "headers.item": 2, - "NamedNodeMap": 1, - "nodeMap": 1, - ".getAttributes": 1, - "k": 5, - "nodeMap.getLength": 1, - "nodeMap.item": 2, - ".getNodeValue": 1, - "DefaultFilter": 2, - "startElement": 2, - "QName": 2, - "element": 3, - "XMLAttributes": 2, - "attrs": 4, - "Augmentations": 2, - "augs": 4, - "XNIException": 2, - "attrs.getLength": 1, - "isNamespace": 1, - "attrs.getQName": 1, - "attrs.removeAttributeAt": 1, - "element.uri": 1, - "super.startElement": 2, - "NokogiriErrorHandler": 2, - "element_names": 3, - "g": 1, - "r": 1, - "w": 1, - "y": 1, - "z": 1, - "isValid": 2, - "testee": 1, - "testee.toCharArray": 1, - "index": 4, - ".length": 1, - "testee.equals": 1, - "name.rawname": 2, - "errorHandler.getErrors": 1, - ".add": 1, - "Exception": 1, - "hudson.model": 1, - "hudson.ExtensionListView": 1, - "hudson.Functions": 1, - "hudson.Platform": 1, - "hudson.PluginManager": 1, - "hudson.cli.declarative.CLIResolver": 1, - "hudson.model.listeners.ItemListener": 1, - "hudson.slaves.ComputerListener": 1, - "hudson.util.CopyOnWriteList": 1, - "hudson.util.FormValidation": 1, - "jenkins.model.Jenkins": 1, - "org.jvnet.hudson.reactor.ReactorException": 1, - "org.kohsuke.stapler.QueryParameter": 1, - "org.kohsuke.stapler.Stapler": 1, - "org.kohsuke.stapler.StaplerRequest": 1, - "org.kohsuke.stapler.StaplerResponse": 1, - "javax.servlet.ServletContext": 1, - "javax.servlet.ServletException": 1, - "java.io.File": 1, - "java.io.IOException": 10, - "java.text.NumberFormat": 1, - "java.text.ParseException": 1, - "java.util.Collections": 2, - "java.util.List": 1, - "hudson.Util.fixEmpty": 1, - "Hudson": 5, - "Jenkins": 2, - "transient": 2, - "CopyOnWriteList": 4, - "<ItemListener>": 2, - "itemListeners": 2, - "ExtensionListView.createCopyOnWriteList": 2, - "ItemListener.class": 1, - "<ComputerListener>": 2, - "computerListeners": 2, - "ComputerListener.class": 1, - "@CLIResolver": 1, - "getInstance": 2, - "Jenkins.getInstance": 2, - "File": 2, - "root": 6, - "ServletContext": 2, - "IOException": 8, - "InterruptedException": 2, - "ReactorException": 2, - "PluginManager": 1, - "pluginManager": 2, - "getJobListeners": 1, - "getComputerListeners": 1, - "Slave": 3, - "getSlave": 1, - "Node": 1, - "n": 3, - "getNode": 1, - "List": 3, - "<Slave>": 2, - "getSlaves": 1, - "slaves": 3, - "setSlaves": 1, - "setNodes": 1, - "TopLevelItem": 3, - "getJob": 1, - "getItem": 1, - "getJobCaseInsensitive": 1, - "match": 2, - "Functions.toEmailSafeString": 2, - "item": 2, - "getItems": 1, - "item.getName": 1, - "synchronized": 1, - "doQuietDown": 2, - "StaplerResponse": 4, - "rsp": 6, - "ServletException": 3, - ".generateResponse": 2, - "doLogRss": 1, - "StaplerRequest": 4, - "req": 6, - "qs": 3, - "req.getQueryString": 1, - "rsp.sendRedirect2": 1, - "doFieldCheck": 3, - "fixEmpty": 8, - "req.getParameter": 4, - "FormValidation": 2, - "@QueryParameter": 4, - "value": 11, - "type": 3, - "errorText": 3, - "warningText": 3, - "FormValidation.error": 4, - "FormValidation.warning": 1, - "try": 26, - "type.equalsIgnoreCase": 2, - "NumberFormat.getInstance": 2, - ".parse": 2, - ".floatValue": 1, - "<=>": 1, - "0": 1, - "error": 1, - "Messages": 1, - "Hudson_NotAPositiveNumber": 1, - "equalsIgnoreCase": 1, - "number": 1, - "negative": 1, - "NumberFormat": 1, - "parse": 1, - "floatValue": 1, - "Messages.Hudson_NotANegativeNumber": 1, - "catch": 27, - "ParseException": 1, - "Messages.Hudson_NotANumber": 1, - "FormValidation.ok": 1, - "isWindows": 1, - "File.pathSeparatorChar": 1, - "isDarwin": 1, - "Platform.isDarwin": 1, - "adminCheck": 3, - "Stapler.getCurrentRequest": 1, - "Stapler.getCurrentResponse": 1, - "isAdmin": 4, - "rsp.sendError": 1, - "StaplerResponse.SC_FORBIDDEN": 1, - ".getACL": 1, - ".hasPermission": 1, - "ADMINISTER": 1, - "XSTREAM.alias": 1, - "Hudson.class": 1, - "MasterComputer": 1, - "Jenkins.MasterComputer": 1, - "CloudList": 3, - "Jenkins.CloudList": 1, - "h": 2, - "needed": 1, - "XStream": 1, - "deserialization": 1, - "nokogiri": 6, - "java.util.HashMap": 1, - "org.jruby.RubyArray": 1, - "org.jruby.RubyFixnum": 1, - "org.jruby.RubyModule": 1, - "org.jruby.runtime.ObjectAllocator": 1, - "org.jruby.runtime.load.BasicLibraryService": 1, - "NokogiriService": 1, - "implements": 3, - "BasicLibraryService": 1, - "nokogiriClassCacheGvarName": 1, - "Map": 1, - "<String,>": 2, - "nokogiriClassCache": 2, - "basicLoad": 1, - "ruby": 25, - "init": 2, - "createNokogiriClassCahce": 2, - "Collections.synchronizedMap": 1, - "HashMap": 1, - "nokogiriClassCache.put": 26, - "ruby.getClassFromPath": 26, - "RubyModule": 18, - "ruby.defineModule": 1, - "xmlModule": 7, - "nokogiri.defineModuleUnder": 3, - "xmlSaxModule": 3, - "xmlModule.defineModuleUnder": 1, - "htmlModule": 5, - "htmlSaxModule": 3, - "htmlModule.defineModuleUnder": 1, - "xsltModule": 3, - "createNokogiriModule": 2, - "createSyntaxErrors": 2, - "xmlNode": 5, - "createXmlModule": 2, - "createHtmlModule": 2, - "createDocuments": 2, - "createSaxModule": 2, - "createXsltModule": 2, - "encHandler": 1, - "nokogiri.defineClassUnder": 2, - "ruby.getObject": 13, - "ENCODING_HANDLER_ALLOCATOR": 2, - "encHandler.defineAnnotatedMethods": 1, - "EncodingHandler.class": 1, - "syntaxError": 2, - "ruby.getStandardError": 2, - ".getAllocator": 1, - "xmlSyntaxError": 4, - "xmlModule.defineClassUnder": 23, - "XML_SYNTAXERROR_ALLOCATOR": 2, - "xmlSyntaxError.defineAnnotatedMethods": 1, - "XmlSyntaxError.class": 1, - "node": 14, - "XML_NODE_ALLOCATOR": 2, - "node.defineAnnotatedMethods": 1, - "XmlNode.class": 1, - "attr": 1, - "XML_ATTR_ALLOCATOR": 2, - "attr.defineAnnotatedMethods": 1, - "XmlAttr.class": 1, - "attrDecl": 1, - "XML_ATTRIBUTE_DECL_ALLOCATOR": 2, - "attrDecl.defineAnnotatedMethods": 1, - "XmlAttributeDecl.class": 1, - "characterData": 3, - "comment": 1, - "XML_COMMENT_ALLOCATOR": 2, - "comment.defineAnnotatedMethods": 1, - "XmlComment.class": 1, - "text": 2, - "XML_TEXT_ALLOCATOR": 2, - "text.defineAnnotatedMethods": 1, - "XmlText.class": 1, - "cdata": 1, - "XML_CDATA_ALLOCATOR": 2, - "cdata.defineAnnotatedMethods": 1, - "XmlCdata.class": 1, - "dtd": 1, - "XML_DTD_ALLOCATOR": 2, - "dtd.defineAnnotatedMethods": 1, - "XmlDtd.class": 1, - "documentFragment": 1, - "XML_DOCUMENT_FRAGMENT_ALLOCATOR": 2, - "documentFragment.defineAnnotatedMethods": 1, - "XmlDocumentFragment.class": 1, - "XML_ELEMENT_ALLOCATOR": 2, - "element.defineAnnotatedMethods": 1, - "XmlElement.class": 1, - "elementContent": 1, - "XML_ELEMENT_CONTENT_ALLOCATOR": 2, - "elementContent.defineAnnotatedMethods": 1, - "XmlElementContent.class": 1, - "elementDecl": 1, - "XML_ELEMENT_DECL_ALLOCATOR": 2, - "elementDecl.defineAnnotatedMethods": 1, - "XmlElementDecl.class": 1, - "entityDecl": 1, - "XML_ENTITY_DECL_ALLOCATOR": 2, - "entityDecl.defineAnnotatedMethods": 1, - "XmlEntityDecl.class": 1, - "entityDecl.defineConstant": 6, - "RubyFixnum.newFixnum": 6, - "XmlEntityDecl.INTERNAL_GENERAL": 1, - "XmlEntityDecl.EXTERNAL_GENERAL_PARSED": 1, - "XmlEntityDecl.EXTERNAL_GENERAL_UNPARSED": 1, - "XmlEntityDecl.INTERNAL_PARAMETER": 1, - "XmlEntityDecl.EXTERNAL_PARAMETER": 1, - "XmlEntityDecl.INTERNAL_PREDEFINED": 1, - "entref": 1, - "XML_ENTITY_REFERENCE_ALLOCATOR": 2, - "entref.defineAnnotatedMethods": 1, - "XmlEntityReference.class": 1, - "namespace": 1, - "XML_NAMESPACE_ALLOCATOR": 2, - "namespace.defineAnnotatedMethods": 1, - "XmlNamespace.class": 1, - "nodeSet": 1, - "XML_NODESET_ALLOCATOR": 2, - "nodeSet.defineAnnotatedMethods": 1, - "XmlNodeSet.class": 1, - "pi": 1, - "XML_PROCESSING_INSTRUCTION_ALLOCATOR": 2, - "pi.defineAnnotatedMethods": 1, - "XmlProcessingInstruction.class": 1, - "reader": 1, - "XML_READER_ALLOCATOR": 2, - "reader.defineAnnotatedMethods": 1, - "XmlReader.class": 1, - "schema": 2, - "XML_SCHEMA_ALLOCATOR": 2, - "schema.defineAnnotatedMethods": 1, - "XmlSchema.class": 1, - "relaxng": 1, - "XML_RELAXNG_ALLOCATOR": 2, - "relaxng.defineAnnotatedMethods": 1, - "XmlRelaxng.class": 1, - "xpathContext": 1, - "XML_XPATHCONTEXT_ALLOCATOR": 2, - "xpathContext.defineAnnotatedMethods": 1, - "XmlXpathContext.class": 1, - "htmlElemDesc": 1, - "htmlModule.defineClassUnder": 3, - "HTML_ELEMENT_DESCRIPTION_ALLOCATOR": 2, - "htmlElemDesc.defineAnnotatedMethods": 1, - "HtmlElementDescription.class": 1, - "htmlEntityLookup": 1, - "HTML_ENTITY_LOOKUP_ALLOCATOR": 2, - "htmlEntityLookup.defineAnnotatedMethods": 1, - "HtmlEntityLookup.class": 1, - "xmlDocument": 5, - "XML_DOCUMENT_ALLOCATOR": 2, - "xmlDocument.defineAnnotatedMethods": 1, - "XmlDocument.class": 1, - "//RubyModule": 1, - "htmlDoc": 1, - "html.defineOrGetClassUnder": 1, - "HTML_DOCUMENT_ALLOCATOR": 2, - "htmlDocument.defineAnnotatedMethods": 1, - "HtmlDocument.class": 1, - "xmlSaxParserContext": 5, - "xmlSaxModule.defineClassUnder": 2, - "XML_SAXPARSER_CONTEXT_ALLOCATOR": 2, - "xmlSaxParserContext.defineAnnotatedMethods": 1, - "XmlSaxParserContext.class": 1, - "xmlSaxPushParser": 1, - "XML_SAXPUSHPARSER_ALLOCATOR": 2, - "xmlSaxPushParser.defineAnnotatedMethods": 1, - "XmlSaxPushParser.class": 1, - "htmlSaxParserContext": 4, - "htmlSaxModule.defineClassUnder": 1, - "HTML_SAXPARSER_CONTEXT_ALLOCATOR": 2, - "htmlSaxParserContext.defineAnnotatedMethods": 1, - "HtmlSaxParserContext.class": 1, - "stylesheet": 1, - "xsltModule.defineClassUnder": 1, - "XSLT_STYLESHEET_ALLOCATOR": 2, - "stylesheet.defineAnnotatedMethods": 1, - "XsltStylesheet.class": 2, - "xsltModule.defineAnnotatedMethod": 1, - "ObjectAllocator": 60, - "allocate": 30, - "EncodingHandler": 1, - "clone": 47, - "htmlDocument.clone": 1, - "clone.setMetaClass": 23, - "CloneNotSupportedException": 23, - "HtmlSaxParserContext": 5, - "htmlSaxParserContext.clone": 1, - "HtmlElementDescription": 1, - "HtmlEntityLookup": 1, - "XmlAttr": 5, - "xmlAttr": 3, - "xmlAttr.clone": 1, - "XmlCdata": 5, - "xmlCdata": 3, - "xmlCdata.clone": 1, - "XmlComment": 5, - "xmlComment": 3, - "xmlComment.clone": 1, - "xmlDocument.clone": 1, - "XmlDocumentFragment": 5, - "xmlDocumentFragment": 3, - "xmlDocumentFragment.clone": 1, - "XmlDtd": 5, - "xmlDtd": 3, - "xmlDtd.clone": 1, - "XmlElement": 5, - "xmlElement": 3, - "xmlElement.clone": 1, - "XmlElementDecl": 5, - "xmlElementDecl": 3, - "xmlElementDecl.clone": 1, - "XmlEntityReference": 5, - "xmlEntityRef": 3, - "xmlEntityRef.clone": 1, - "XmlNamespace": 5, - "xmlNamespace": 3, - "xmlNamespace.clone": 1, - "XmlNode": 5, - "xmlNode.clone": 1, - "XmlNodeSet": 5, - "xmlNodeSet": 5, - "xmlNodeSet.clone": 1, - "xmlNodeSet.setNodes": 1, - "RubyArray.newEmptyArray": 1, - "XmlProcessingInstruction": 5, - "xmlProcessingInstruction": 3, - "xmlProcessingInstruction.clone": 1, - "XmlReader": 5, - "xmlReader": 5, - "xmlReader.clone": 1, - "XmlAttributeDecl": 1, - "XmlEntityDecl": 1, - "runtime.newNotImplementedError": 1, - "XmlRelaxng": 5, - "xmlRelaxng": 3, - "xmlRelaxng.clone": 1, - "XmlSaxParserContext": 5, - "xmlSaxParserContext.clone": 1, - "XmlSaxPushParser": 1, - "XmlSchema": 5, - "xmlSchema": 3, - "xmlSchema.clone": 1, - "XmlSyntaxError": 5, - "xmlSyntaxError.clone": 1, - "XmlText": 6, - "xmlText": 3, - "xmlText.clone": 1, - "XmlXpathContext": 5, - "xmlXpathContext": 3, - "xmlXpathContext.clone": 1, - "XsltStylesheet": 4, - "xsltStylesheet": 3, - "xsltStylesheet.clone": 1, - "persons": 1, - "ProtocolBuffer": 2, - "registerAllExtensions": 1, - "com.google.protobuf.ExtensionRegistry": 2, - "registry": 1, - "interface": 1, - "PersonOrBuilder": 2, - "com.google.protobuf.MessageOrBuilder": 1, - "hasName": 5, - "java.lang.String": 15, - "getName": 3, - "com.google.protobuf.ByteString": 13, - "getNameBytes": 5, - "Person": 10, - "com.google.protobuf.GeneratedMessage": 1, - "com.google.protobuf.GeneratedMessage.Builder": 2, - "<?>": 1, - "builder": 4, - "this.unknownFields": 4, - "builder.getUnknownFields": 1, - "noInit": 1, - "com.google.protobuf.UnknownFieldSet.getDefaultInstance": 1, - "defaultInstance": 4, - "getDefaultInstance": 2, - "getDefaultInstanceForType": 2, - "com.google.protobuf.UnknownFieldSet": 2, - "unknownFields": 3, - "@java.lang.Override": 4, - "getUnknownFields": 3, - "com.google.protobuf.CodedInputStream": 5, - "input": 18, - "com.google.protobuf.ExtensionRegistryLite": 8, - "extensionRegistry": 16, - "com.google.protobuf.InvalidProtocolBufferException": 9, - "initFields": 2, - "mutable_bitField0_": 1, - "com.google.protobuf.UnknownFieldSet.Builder": 1, - "com.google.protobuf.UnknownFieldSet.newBuilder": 1, - "done": 4, - "tag": 3, - "input.readTag": 1, - "parseUnknownField": 1, - "bitField0_": 15, - "|": 5, - "name_": 18, - "input.readBytes": 1, - "e.setUnfinishedMessage": 1, - "e.getMessage": 1, - ".setUnfinishedMessage": 1, - "finally": 2, - "unknownFields.build": 1, - "makeExtensionsImmutable": 1, - "com.google.protobuf.Descriptors.Descriptor": 4, - "persons.ProtocolBuffer.internal_static_persons_Person_descriptor": 3, - "com.google.protobuf.GeneratedMessage.FieldAccessorTable": 4, - "internalGetFieldAccessorTable": 2, - "persons.ProtocolBuffer.internal_static_persons_Person_fieldAccessorTable": 2, - ".ensureFieldAccessorsInitialized": 2, - "persons.ProtocolBuffer.Person.class": 2, - "persons.ProtocolBuffer.Person.Builder.class": 2, - "com.google.protobuf.Parser": 2, - "<Person>": 3, - "PARSER": 2, - "com.google.protobuf.AbstractParser": 1, - "parsePartialFrom": 1, - "getParserForType": 1, - "NAME_FIELD_NUMBER": 1, - "java.lang.Object": 7, - "&": 7, - "ref": 16, - "bs": 1, - "bs.toStringUtf8": 1, - "bs.isValidUtf8": 1, - "com.google.protobuf.ByteString.copyFromUtf8": 2, - "byte": 4, - "memoizedIsInitialized": 4, - "isInitialized": 5, - "writeTo": 1, - "com.google.protobuf.CodedOutputStream": 2, - "output": 2, - "getSerializedSize": 2, - "output.writeBytes": 1, - ".writeTo": 1, - "memoizedSerializedSize": 3, - ".computeBytesSize": 1, - ".getSerializedSize": 1, - "serialVersionUID": 1, - "L": 1, - "writeReplace": 1, - "java.io.ObjectStreamException": 1, - "super.writeReplace": 1, - "persons.ProtocolBuffer.Person": 22, - "parseFrom": 8, - "data": 8, - "PARSER.parseFrom": 8, - "java.io.InputStream": 4, - "parseDelimitedFrom": 2, - "PARSER.parseDelimitedFrom": 2, - "Builder": 20, - "newBuilder": 5, - "Builder.create": 1, - "newBuilderForType": 2, - "prototype": 2, - ".mergeFrom": 2, - "toBuilder": 1, - "com.google.protobuf.GeneratedMessage.BuilderParent": 2, - "parent": 4, - "<Builder>": 1, - "persons.ProtocolBuffer.PersonOrBuilder": 1, - "maybeForceBuilderInitialization": 3, - "com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders": 1, - "create": 2, - "clear": 1, - "super.clear": 1, - "buildPartial": 3, - "getDescriptorForType": 1, - "persons.ProtocolBuffer.Person.getDefaultInstance": 2, - "build": 1, - "result": 5, - "result.isInitialized": 1, - "newUninitializedMessageException": 1, - "from_bitField0_": 2, - "to_bitField0_": 3, - "result.name_": 1, - "result.bitField0_": 1, - "onBuilt": 1, - "mergeFrom": 5, - "com.google.protobuf.Message": 1, - "other": 6, - "super.mergeFrom": 1, - "other.hasName": 1, - "other.name_": 1, - "onChanged": 4, - "this.mergeUnknownFields": 1, - "other.getUnknownFields": 1, - "parsedMessage": 5, - "PARSER.parsePartialFrom": 1, - "e.getUnfinishedMessage": 1, - ".toStringUtf8": 1, - "setName": 1, - "clearName": 1, - ".getName": 1, - "setNameBytes": 1, - "defaultInstance.initFields": 1, - "internal_static_persons_Person_descriptor": 3, - "internal_static_persons_Person_fieldAccessorTable": 2, - "com.google.protobuf.Descriptors.FileDescriptor": 5, - "descriptor": 3, - "descriptorData": 2, - "com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner": 2, - "assigner": 2, - "assignDescriptors": 1, - ".getMessageTypes": 1, - ".get": 1, - ".internalBuildGeneratedFileFrom": 1 - }, - "JavaScript": { - "function": 1210, - "(": 8513, - ")": 8521, - "{": 2736, - ";": 4052, - "//": 410, - "jshint": 1, - "_": 9, - "var": 910, - "Modal": 2, - "content": 5, - "options": 56, - "this.options": 6, - "this.": 2, - "element": 19, - ".delegate": 2, - ".proxy": 1, - "this.hide": 1, - "this": 577, - "}": 2712, - "Modal.prototype": 1, - "constructor": 8, - "toggle": 10, - "return": 944, - "[": 1459, - "this.isShown": 3, - "]": 1456, - "show": 10, - "that": 33, - "e": 663, - ".Event": 1, - "element.trigger": 1, - "if": 1230, - "||": 648, - "e.isDefaultPrevented": 2, - ".addClass": 1, - "true": 147, - "escape.call": 1, - "backdrop.call": 1, - "transition": 1, - ".support.transition": 1, - "&&": 1017, - "that.": 3, - "element.hasClass": 1, - "element.parent": 1, - ".length": 24, - "element.appendTo": 1, - "document.body": 8, - "//don": 1, - "in": 170, - "shown": 2, - "hide": 8, - "body": 22, - "modal": 4, - "-": 705, - "open": 2, - "fade": 4, - "hidden": 12, - "<div>": 4, - "class=": 5, - "static": 2, - "keyup.dismiss.modal": 2, - "object": 59, - "string": 41, - "click.modal.data": 1, - "api": 1, - "data": 145, - "target": 44, - "href": 9, - ".extend": 1, - "target.data": 1, - "this.data": 5, - "e.preventDefault": 1, - "target.modal": 1, - "option": 12, - "window.jQuery": 7, - "Animal": 12, - "Horse": 12, - "Snake": 12, - "sam": 4, - "tom": 4, - "__hasProp": 2, - "Object.prototype.hasOwnProperty": 6, - "__extends": 6, - "child": 17, - "parent": 15, - "for": 262, - "key": 85, - "__hasProp.call": 2, - "ctor": 6, - "this.constructor": 5, - "ctor.prototype": 3, - "parent.prototype": 6, - "child.prototype": 4, - "new": 86, - "child.__super__": 3, - "name": 161, - "this.name": 7, - "Animal.prototype.move": 2, - "meters": 4, - "alert": 11, - "+": 1135, - "Snake.__super__.constructor.apply": 2, - "arguments": 83, - "Snake.prototype.move": 2, - "Snake.__super__.move.call": 2, - "Horse.__super__.constructor.apply": 2, - "Horse.prototype.move": 2, - "Horse.__super__.move.call": 2, - "sam.move": 2, - "tom.move": 2, - ".call": 10, - ".hasOwnProperty": 2, - "Animal.name": 1, - "_super": 4, - "Snake.name": 1, - "Horse.name": 1, - "console.log": 3, - "util": 1, - "require": 9, - "net": 1, - "stream": 1, - "url": 23, - "EventEmitter": 3, - ".EventEmitter": 1, - "FreeList": 2, - ".FreeList": 1, - "HTTPParser": 2, - "process.binding": 1, - ".HTTPParser": 1, - "assert": 8, - ".ok": 1, - "END_OF_FILE": 3, - "debug": 15, - "process.env.NODE_DEBUG": 2, - "/http/.test": 1, - "x": 33, - "console.error": 3, - "else": 307, - "parserOnHeaders": 2, - "headers": 41, - "this.maxHeaderPairs": 2, - "<": 209, - "this._headers.length": 1, - "this._headers": 13, - "this._headers.concat": 1, - "this._url": 1, - "parserOnHeadersComplete": 2, - "info": 2, - "parser": 27, - "info.headers": 1, - "info.url": 1, - "parser._headers": 6, - "parser._url": 4, - "parser.incoming": 9, - "IncomingMessage": 4, - "parser.socket": 4, - "parser.incoming.httpVersionMajor": 1, - "info.versionMajor": 2, - "parser.incoming.httpVersionMinor": 1, - "info.versionMinor": 2, - "parser.incoming.httpVersion": 1, - "parser.incoming.url": 1, - "n": 874, - "headers.length": 2, - "parser.maxHeaderPairs": 4, - "Math.min": 5, - "i": 853, - "k": 302, - "v": 135, - "parser.incoming._addHeaderLine": 2, - "info.method": 2, - "parser.incoming.method": 1, - "parser.incoming.statusCode": 2, - "info.statusCode": 1, - "parser.incoming.upgrade": 4, - "info.upgrade": 2, - "skipBody": 3, - "false": 142, - "response": 3, - "to": 92, - "HEAD": 3, - "or": 38, - "CONNECT": 1, - "parser.onIncoming": 3, - "info.shouldKeepAlive": 1, - "parserOnBody": 2, - "b": 961, - "start": 20, - "len": 11, - "slice": 10, - "b.slice": 1, - "parser.incoming._paused": 2, - "parser.incoming._pendings.length": 2, - "parser.incoming._pendings.push": 2, - "parser.incoming._emitData": 1, - "parserOnMessageComplete": 2, - "parser.incoming.complete": 2, - "parser.incoming.readable": 1, - "parser.incoming._emitEnd": 1, - "parser.socket.readable": 1, - "parser.socket.resume": 1, - "parsers": 2, - "HTTPParser.REQUEST": 2, - "parser.onHeaders": 1, - "parser.onHeadersComplete": 1, - "parser.onBody": 1, - "parser.onMessageComplete": 1, - "exports.parsers": 1, - "CRLF": 13, - "STATUS_CODES": 2, - "exports.STATUS_CODES": 1, - "RFC": 16, - "obsoleted": 1, - "by": 12, - "connectionExpression": 1, - "/Connection/i": 1, - "transferEncodingExpression": 1, - "/Transfer": 1, - "Encoding/i": 1, - "closeExpression": 1, - "/close/i": 1, - "chunkExpression": 1, - "/chunk/i": 1, - "contentLengthExpression": 1, - "/Content": 1, - "Length/i": 1, - "dateExpression": 1, - "/Date/i": 1, - "expectExpression": 1, - "/Expect/i": 1, - "continueExpression": 1, - "/100": 2, - "continue/i": 1, - "dateCache": 5, - "utcDate": 2, - "d": 771, - "Date": 4, - "d.toUTCString": 1, - "setTimeout": 19, - "undefined": 328, - "d.getMilliseconds": 1, - "socket": 26, - "stream.Stream.call": 2, - "this.socket": 10, - "this.connection": 8, - "this.httpVersion": 1, - "null": 427, - "this.complete": 2, - "this.headers": 2, - "this.trailers": 2, - "this.readable": 1, - "this._paused": 3, - "this._pendings": 1, - "this._endEmitted": 3, - "this.url": 1, - "this.method": 2, - "this.statusCode": 3, - "this.client": 1, - "util.inherits": 7, - "stream.Stream": 2, - "exports.IncomingMessage": 1, - "IncomingMessage.prototype.destroy": 1, - "error": 20, - "this.socket.destroy": 3, - "IncomingMessage.prototype.setEncoding": 1, - "encoding": 26, - "StringDecoder": 2, - ".StringDecoder": 1, - "lazy": 1, - "load": 5, - "this._decoder": 2, - "IncomingMessage.prototype.pause": 1, - "this.socket.pause": 1, - "IncomingMessage.prototype.resume": 1, - "this.socket.resume": 1, - "this._emitPending": 1, - "IncomingMessage.prototype._emitPending": 1, - "callback": 23, - "this._pendings.length": 1, - "self": 17, - "process.nextTick": 1, - "while": 53, - "self._paused": 1, - "self._pendings.length": 2, - "chunk": 14, - "self._pendings.shift": 1, - "Buffer.isBuffer": 2, - "self._emitData": 1, - "self.readable": 1, - "self._emitEnd": 1, - "IncomingMessage.prototype._emitData": 1, - "this._decoder.write": 1, - "string.length": 1, - "this.emit": 5, - "IncomingMessage.prototype._emitEnd": 1, - "IncomingMessage.prototype._addHeaderLine": 1, - "field": 36, - "value": 98, - "dest": 12, - "field.toLowerCase": 1, - "switch": 30, - "case": 136, - ".push": 3, - "break": 111, - "default": 21, - "field.slice": 1, - "OutgoingMessage": 5, - "this.output": 3, - "this.outputEncodings": 2, - "this.writable": 1, - "this._last": 3, - "this.chunkedEncoding": 6, - "this.shouldKeepAlive": 4, - "this.useChunkedEncodingByDefault": 4, - "this.sendDate": 3, - "this._hasBody": 6, - "this._trailer": 5, - "this.finished": 4, - "exports.OutgoingMessage": 1, - "OutgoingMessage.prototype.destroy": 1, - "OutgoingMessage.prototype._send": 1, - "this._headerSent": 5, - "typeof": 132, - "this._header": 10, - "this.output.unshift": 1, - "this.outputEncodings.unshift": 1, - "this._writeRaw": 2, - "OutgoingMessage.prototype._writeRaw": 1, - "data.length": 3, - "this.connection._httpMessage": 3, - "this.connection.writable": 3, - "this.output.length": 5, - "this._buffer": 2, - "c": 775, - "this.output.shift": 2, - "this.outputEncodings.shift": 2, - "this.connection.write": 4, - "OutgoingMessage.prototype._buffer": 1, - "length": 48, - "this.output.push": 2, - "this.outputEncodings.push": 2, - "lastEncoding": 2, - "lastData": 2, - "data.constructor": 1, - "lastData.constructor": 1, - "OutgoingMessage.prototype._storeHeader": 1, - "firstLine": 2, - "sentConnectionHeader": 3, - "sentContentLengthHeader": 4, - "sentTransferEncodingHeader": 3, - "sentDateHeader": 3, - "sentExpect": 3, - "messageHeader": 7, - "store": 3, - "connectionExpression.test": 1, - "closeExpression.test": 1, - "self._last": 4, - "self.shouldKeepAlive": 4, - "transferEncodingExpression.test": 1, - "chunkExpression.test": 1, - "self.chunkedEncoding": 1, - "contentLengthExpression.test": 1, - "dateExpression.test": 1, - "expectExpression.test": 1, - "keys": 11, - "Object.keys": 5, - "isArray": 10, - "Array.isArray": 7, - "l": 312, - "keys.length": 5, - "j": 265, - "value.length": 1, - "shouldSendKeepAlive": 2, - "this.agent": 2, - "this._send": 8, - "OutgoingMessage.prototype.setHeader": 1, - "arguments.length": 18, - "throw": 27, - "Error": 16, - "name.toLowerCase": 6, - "this._headerNames": 5, - "OutgoingMessage.prototype.getHeader": 1, - "OutgoingMessage.prototype.removeHeader": 1, - "delete": 39, - "OutgoingMessage.prototype._renderHeaders": 1, - "OutgoingMessage.prototype.write": 1, - "this._implicitHeader": 2, - "TypeError": 2, - "chunk.length": 2, - "ret": 62, - "Buffer.byteLength": 2, - "len.toString": 2, - "OutgoingMessage.prototype.addTrailers": 1, - "OutgoingMessage.prototype.end": 1, - "hot": 3, - ".toString": 3, - "this.write": 1, - "Last": 2, - "chunk.": 1, - "this._finish": 2, - "OutgoingMessage.prototype._finish": 1, - "instanceof": 19, - "ServerResponse": 5, - "DTRACE_HTTP_SERVER_RESPONSE": 1, - "ClientRequest": 6, - "DTRACE_HTTP_CLIENT_REQUEST": 1, - "OutgoingMessage.prototype._flush": 1, - "this.socket.writable": 2, - "XXX": 1, - "Necessary": 1, - "this.socket.write": 1, - "req": 32, - "OutgoingMessage.call": 2, - "req.method": 5, - "req.httpVersionMajor": 2, - "req.httpVersionMinor": 2, - "exports.ServerResponse": 1, - "ServerResponse.prototype.statusCode": 1, - "onServerResponseClose": 3, - "this._httpMessage.emit": 2, - "ServerResponse.prototype.assignSocket": 1, - "socket._httpMessage": 9, - "socket.on": 2, - "this._flush": 1, - "ServerResponse.prototype.detachSocket": 1, - "socket.removeListener": 5, - "ServerResponse.prototype.writeContinue": 1, - "this._sent100": 2, - "ServerResponse.prototype._implicitHeader": 1, - "this.writeHead": 1, - "ServerResponse.prototype.writeHead": 1, - "statusCode": 7, - "reasonPhrase": 4, - "headerIndex": 4, - "obj": 40, - "this._renderHeaders": 3, - "obj.length": 1, - "obj.push": 1, - "statusLine": 2, - "statusCode.toString": 1, - "this._expect_continue": 1, - "this._storeHeader": 2, - "ServerResponse.prototype.writeHeader": 1, - "this.writeHead.apply": 1, - "Agent": 5, - "self.options": 2, - "self.requests": 6, - "self.sockets": 3, - "self.maxSockets": 1, - "self.options.maxSockets": 1, - "Agent.defaultMaxSockets": 2, - "self.on": 1, - "host": 29, - "port": 29, - "localAddress": 15, - ".shift": 1, - ".onSocket": 1, - "socket.destroy": 10, - "self.createConnection": 2, - "net.createConnection": 3, - "exports.Agent": 1, - "Agent.prototype.defaultPort": 1, - "Agent.prototype.addRequest": 1, - "this.sockets": 9, - "this.maxSockets": 1, - "req.onSocket": 1, - "this.createSocket": 2, - "this.requests": 5, - "Agent.prototype.createSocket": 1, - "util._extend": 1, - "options.port": 4, - "options.host": 4, - "options.localAddress": 3, - "s": 290, - "onFree": 3, - "self.emit": 9, - "s.on": 4, - "onClose": 3, - "err": 5, - "self.removeSocket": 2, - "onRemove": 3, - "s.removeListener": 3, - "Agent.prototype.removeSocket": 1, - "index": 5, - ".indexOf": 2, - ".splice": 5, - ".emit": 1, - "globalAgent": 3, - "exports.globalAgent": 1, - "cb": 16, - "self.agent": 3, - "options.agent": 3, - "defaultPort": 3, - "options.defaultPort": 1, - "options.hostname": 1, - "options.setHost": 1, - "setHost": 2, - "self.socketPath": 4, - "options.socketPath": 1, - "method": 30, - "self.method": 3, - "options.method": 2, - ".toUpperCase": 3, - "self.path": 3, - "options.path": 2, - "self.once": 2, - "options.headers": 7, - "self.setHeader": 1, - "this.getHeader": 2, - "hostHeader": 3, - "this.setHeader": 2, - "options.auth": 2, - "//basic": 1, - "auth": 1, - "Buffer": 1, - "self.useChunkedEncodingByDefault": 2, - "self._storeHeader": 2, - "self.getHeader": 1, - "self._renderHeaders": 1, - "options.createConnection": 4, - "self.onSocket": 3, - "self.agent.addRequest": 1, - "conn": 3, - "self._deferToConnect": 1, - "self._flush": 1, - "exports.ClientRequest": 1, - "ClientRequest.prototype._implicitHeader": 1, - "this.path": 1, - "ClientRequest.prototype.abort": 1, - "this._deferToConnect": 3, - "createHangUpError": 3, - "error.code": 1, - "freeParser": 9, - "parser.socket.onend": 1, - "parser.socket.ondata": 1, - "parser.socket.parser": 1, - "parsers.free": 1, - "req.parser": 1, - "socketCloseListener": 2, - "socket.parser": 3, - "req.emit": 8, - "req.res": 8, - "req.res.readable": 1, - "req.res.emit": 1, - "res": 14, - "req.res._emitPending": 1, - "res._emitEnd": 1, - "res.emit": 1, - "req._hadError": 3, - "parser.finish": 6, - "socketErrorListener": 2, - "err.message": 1, - "err.stack": 1, - "socketOnEnd": 1, - "this._httpMessage": 3, - "this.parser": 2, - "socketOnData": 1, - "end": 14, - "parser.execute": 2, - "bytesParsed": 4, - "socket.ondata": 3, - "socket.onend": 3, - "bodyHead": 4, - "d.slice": 2, - "eventName": 21, - "req.listeners": 1, - "req.upgradeOrConnect": 1, - "socket.emit": 1, - "parserOnIncomingClient": 1, - "shouldKeepAlive": 4, - "res.upgrade": 1, - "skip": 5, - "isHeadResponse": 2, - "res.statusCode": 1, - "Clear": 1, - "so": 8, - "we": 25, - "don": 5, - "continue": 18, - "ve": 3, - "been": 5, - "upgraded": 1, - "via": 2, - "WebSockets": 1, - "also": 5, - "shouldn": 2, - "AGENT": 2, - "socket.destroySoon": 2, - "keep": 1, - "alive": 1, - "close": 2, - "free": 1, - "number": 13, - "an": 12, - "important": 1, - "promisy": 1, - "thing": 2, - "all": 16, - "the": 107, - "onSocket": 3, - "self.socket.writable": 1, - "self.socket": 5, - ".apply": 7, - "arguments_": 2, - "self.socket.once": 1, - "ClientRequest.prototype.setTimeout": 1, - "msecs": 4, - "this.once": 2, - "emitTimeout": 4, - "this.socket.setTimeout": 1, - "this.socket.once": 1, - "this.setTimeout": 3, - "sock": 1, - "ClientRequest.prototype.setNoDelay": 1, - "ClientRequest.prototype.setSocketKeepAlive": 1, - "ClientRequest.prototype.clearTimeout": 1, - "exports.request": 2, - "url.parse": 1, - "options.protocol": 3, - "exports.get": 1, - "req.end": 1, - "ondrain": 3, - "httpSocketSetup": 2, - "Server": 6, - "requestListener": 6, - "net.Server.call": 1, - "allowHalfOpen": 1, - "this.addListener": 2, - "this.httpAllowHalfOpen": 1, - "connectionListener": 3, - "net.Server": 1, - "exports.Server": 1, - "exports.createServer": 1, - "outgoing": 2, - "incoming": 2, - "abortIncoming": 3, - "incoming.length": 2, - "incoming.shift": 2, - "serverSocketCloseListener": 3, - "socket.setTimeout": 1, - "*": 70, - "minute": 1, - "timeout": 2, - "socket.once": 1, - "parsers.alloc": 1, - "parser.reinitialize": 1, - "this.maxHeadersCount": 2, - "<<": 4, - "socket.addListener": 2, - "self.listeners": 2, - "req.socket": 1, - "self.httpAllowHalfOpen": 1, - "socket.writable": 2, - "socket.end": 2, - "outgoing.length": 2, - "._last": 1, - "socket._httpMessage._last": 1, - "incoming.push": 1, - "res.shouldKeepAlive": 1, - "DTRACE_HTTP_SERVER_REQUEST": 1, - "outgoing.push": 1, - "res.assignSocket": 1, - "res.on": 1, - "res.detachSocket": 1, - "res._last": 1, - "m": 76, - "outgoing.shift": 1, - "m.assignSocket": 1, - "req.headers": 2, - "continueExpression.test": 1, - "res._expect_continue": 1, - "res.writeContinue": 1, - "Not": 4, - "a": 1489, - "response.": 1, - "even": 3, - "exports._connectionListener": 1, - "Client": 6, - "this.host": 1, - "this.port": 1, - "maxSockets": 1, - "Client.prototype.request": 1, - "path": 5, - "self.host": 1, - "self.port": 1, - "c.on": 2, - "exports.Client": 1, - "module.deprecate": 2, - "exports.createClient": 1, - "cubes": 4, - "list": 21, - "math": 4, - "num": 23, - "opposite": 6, - "race": 4, - "square": 10, - "__slice": 2, - "Array.prototype.slice": 6, - "root": 5, - "Math.sqrt": 2, - "cube": 2, - "runners": 6, - "winner": 6, - "__slice.call": 2, - "print": 2, - "elvis": 4, - "_i": 10, - "_len": 6, - "_results": 6, - "list.length": 5, - "_results.push": 2, - "math.cube": 2, - ".slice": 6, - "A": 24, - "w": 110, - "ma": 3, - "c.isReady": 4, - "try": 44, - "s.documentElement.doScroll": 2, - "catch": 38, - "c.ready": 7, - "Qa": 1, - "b.src": 4, - "c.ajax": 1, - "async": 5, - "dataType": 6, - "c.globalEval": 1, - "b.text": 3, - "b.textContent": 2, - "b.innerHTML": 3, - "b.parentNode": 4, - "b.parentNode.removeChild": 2, - "X": 6, - "f": 666, - "a.length": 23, - "o": 322, - "c.isFunction": 9, - "d.call": 3, - "J": 5, - ".getTime": 3, - "Y": 3, - "Z": 6, - "na": 1, - ".type": 2, - "c.event.handle.apply": 1, - "oa": 1, - "r": 261, - "c.data": 12, - "a.liveFired": 4, - "i.live": 1, - "a.button": 2, - "a.type": 14, - "u": 304, - "i.live.slice": 1, - "u.length": 3, - "i.origType.replace": 1, - "O": 6, - "f.push": 5, - "i.selector": 3, - "u.splice": 1, - "a.target": 5, - ".closest": 4, - "a.currentTarget": 4, - "j.length": 2, - ".selector": 1, - ".elem": 1, - "i.preType": 2, - "a.relatedTarget": 2, - "d.push": 1, - "elem": 101, - "handleObj": 2, - "d.length": 8, - "j.elem": 2, - "a.data": 2, - "j.handleObj.data": 1, - "a.handleObj": 2, - "j.handleObj": 1, - "j.handleObj.origHandler.apply": 1, - "pa": 1, - "b.replace": 3, - "/": 290, - "./g": 2, - ".replace": 38, - "/g": 37, - "qa": 1, - "a.parentNode": 6, - "a.parentNode.nodeType": 2, - "ra": 1, - "b.each": 1, - "this.nodeName": 4, - ".nodeName": 2, - "f.events": 1, - "e.handle": 2, - "e.events": 2, - "c.event.add": 1, - ".data": 3, - "sa": 2, - ".ownerDocument": 5, - "ta.test": 1, - "c.support.checkClone": 2, - "ua.test": 1, - "c.fragments": 2, - "b.createDocumentFragment": 1, - "c.clean": 1, - "fragment": 27, - "cacheable": 2, - "K": 4, - "c.each": 2, - "va.concat.apply": 1, - "va.slice": 1, - "wa": 1, - "a.document": 3, - "a.nodeType": 27, - "a.defaultView": 2, - "a.parentWindow": 2, - "c.fn.init": 1, - "Ra": 2, - "A.jQuery": 3, - "Sa": 2, - "A.": 3, - "A.document": 1, - "T": 4, - "Ta": 1, - "<[\\w\\W]+>": 4, - "|": 206, - "#": 13, - "Ua": 1, - ".": 91, - "Va": 1, - "S/": 4, - "Wa": 2, - "u00A0": 2, - "Xa": 1, - "<(\\w+)\\s*\\/?>": 4, - "<\\/\\1>": 4, - "P": 4, - "navigator.userAgent": 3, - "xa": 3, - "Q": 6, - "L": 10, - "Object.prototype.toString": 7, - "aa": 1, - "ba": 3, - "Array.prototype.push": 4, - "R": 2, - "ya": 2, - "Array.prototype.indexOf": 4, - "c.fn": 2, - "c.prototype": 1, - "init": 7, - "this.context": 17, - "this.length": 40, - "s.body": 2, - "this.selector": 16, - "Ta.exec": 1, - "b.ownerDocument": 6, - "Xa.exec": 1, - "c.isPlainObject": 3, - "s.createElement": 10, - "c.fn.attr.call": 1, - "f.createElement": 1, - "a.cacheable": 1, - "a.fragment.cloneNode": 1, - "a.fragment": 1, - ".childNodes": 2, - "c.merge": 4, - "s.getElementById": 1, - "b.id": 1, - "T.find": 1, - "/.test": 19, - "s.getElementsByTagName": 2, - "b.jquery": 1, - ".find": 5, - "T.ready": 1, - "a.selector": 4, - "a.context": 2, - "c.makeArray": 3, - "selector": 40, - "jquery": 3, - "size": 6, - "toArray": 2, - "R.call": 2, - "get": 24, - "this.toArray": 3, - "this.slice": 5, - "pushStack": 4, - "c.isArray": 5, - "ba.apply": 1, - "f.prevObject": 1, - "f.context": 1, - "f.selector": 2, - "each": 17, - "ready": 31, - "c.bindReady": 1, - "a.call": 17, - "Q.push": 1, - "eq": 2, - "first": 10, - "this.eq": 4, - "last": 6, - "this.pushStack": 12, - "R.apply": 1, - ".join": 14, - "map": 7, - "c.map": 1, - "this.prevObject": 3, - "push": 11, - "sort": 4, - ".sort": 9, - "splice": 5, - "c.fn.init.prototype": 1, - "c.extend": 7, - "c.fn.extend": 4, - "noConflict": 4, - "isReady": 5, - "c.fn.triggerHandler": 1, - ".triggerHandler": 1, - "bindReady": 5, - "s.readyState": 2, - "s.addEventListener": 3, - "A.addEventListener": 1, - "s.attachEvent": 3, - "A.attachEvent": 1, - "A.frameElement": 1, - "isFunction": 12, - "isPlainObject": 4, - "a.setInterval": 2, - "a.constructor": 2, - "aa.call": 3, - "a.constructor.prototype": 2, - "isEmptyObject": 7, - "parseJSON": 4, - "c.trim": 3, - "a.replace": 7, - "@": 1, - "d*": 8, - "eE": 4, - "s*": 15, - "A.JSON": 1, - "A.JSON.parse": 2, - "Function": 3, - "c.error": 2, - "noop": 3, - "globalEval": 2, - "Va.test": 1, - "s.documentElement": 2, - "d.type": 2, - "c.support.scriptEval": 2, - "d.appendChild": 3, - "s.createTextNode": 2, - "d.text": 1, - "b.insertBefore": 3, - "b.firstChild": 5, - "b.removeChild": 3, - "nodeName": 20, - "a.nodeName": 12, - "a.nodeName.toUpperCase": 2, - "b.toUpperCase": 3, - "b.apply": 2, - "b.call": 4, - "trim": 5, - "makeArray": 3, - "ba.call": 1, - "inArray": 5, - "b.indexOf": 2, - "b.length": 12, - "merge": 2, - "grep": 6, - "f.length": 5, - "f.concat.apply": 1, - "guid": 5, - "proxy": 4, - "a.apply": 2, - "b.guid": 2, - "a.guid": 7, - "c.guid": 1, - "uaMatch": 3, - "a.toLowerCase": 4, - "webkit": 6, - "w.": 17, - "/.exec": 4, - "opera": 4, - ".*version": 4, - "msie": 4, - "/compatible/.test": 1, - "mozilla": 4, - ".*": 20, - "rv": 4, - "browser": 11, - "version": 10, - "c.uaMatch": 1, - "P.browser": 2, - "c.browser": 1, - "c.browser.version": 1, - "P.version": 1, - "c.browser.webkit": 1, - "c.browser.safari": 1, - "c.inArray": 2, - "ya.call": 1, - "s.removeEventListener": 1, - "s.detachEvent": 1, - "c.support": 2, - "d.style.display": 5, - "d.innerHTML": 2, - "d.getElementsByTagName": 6, - "e.length": 9, - "leadingWhitespace": 3, - "d.firstChild.nodeType": 1, - "tbody": 7, - "htmlSerialize": 3, - "style": 30, - "/red/.test": 1, - "j.getAttribute": 2, - "hrefNormalized": 3, - "opacity": 13, - "j.style.opacity": 1, - "cssFloat": 4, - "j.style.cssFloat": 1, - "checkOn": 4, - ".value": 1, - "optSelected": 3, - ".appendChild": 1, - ".selected": 1, - "parentNode": 10, - "d.removeChild": 1, - ".parentNode": 7, - "deleteExpando": 3, - "checkClone": 1, - "scriptEval": 1, - "noCloneEvent": 3, - "boxModel": 1, - "b.type": 4, - "b.appendChild": 1, - "a.insertBefore": 2, - "a.firstChild": 6, - "b.test": 1, - "c.support.deleteExpando": 2, - "a.removeChild": 2, - "d.attachEvent": 2, - "d.fireEvent": 1, - "c.support.noCloneEvent": 1, - "d.detachEvent": 1, - "d.cloneNode": 1, - ".fireEvent": 3, - "s.createDocumentFragment": 1, - "a.appendChild": 3, - "d.firstChild": 2, - "a.cloneNode": 3, - ".cloneNode": 4, - ".lastChild.checked": 2, - "k.style.width": 1, - "k.style.paddingLeft": 1, - "s.body.appendChild": 1, - "c.boxModel": 1, - "c.support.boxModel": 1, - "k.offsetWidth": 1, - "s.body.removeChild": 1, - ".style.display": 5, - "n.setAttribute": 1, - "c.support.submitBubbles": 1, - "c.support.changeBubbles": 1, - "c.props": 2, - "readonly": 3, - "maxlength": 2, - "cellspacing": 2, - "rowspan": 2, - "colspan": 2, - "tabindex": 4, - "usemap": 2, - "frameborder": 2, - "G": 11, - "Ya": 2, - "za": 3, - "cache": 45, - "expando": 14, - "noData": 3, - "embed": 3, - "applet": 2, - "c.noData": 2, - "a.nodeName.toLowerCase": 3, - "c.cache": 2, - "removeData": 8, - "c.isEmptyObject": 1, - "c.removeData": 2, - "c.expando": 2, - "a.removeAttribute": 3, - "this.each": 42, - "a.split": 4, - "this.triggerHandler": 6, - "this.trigger": 2, - ".each": 3, - "queue": 7, - "dequeue": 6, - "c.queue": 3, - "d.shift": 2, - "d.unshift": 2, - "f.call": 1, - "c.dequeue": 4, - "delay": 4, - "c.fx": 1, - "c.fx.speeds": 1, - "this.queue": 4, - "clearQueue": 2, - "Aa": 3, - "t": 436, - "ca": 6, - "Za": 2, - "r/g": 2, - "/href": 1, - "src": 7, - "style/": 1, - "ab": 1, - "button": 24, - "input": 25, - "/i": 22, - "bb": 2, - "select": 20, - "textarea": 8, - "area": 2, - "Ba": 3, - "/radio": 1, - "checkbox/": 1, - "attr": 13, - "c.attr": 4, - "removeAttr": 5, - "this.nodeType": 4, - "this.removeAttribute": 1, - "addClass": 2, - "r.addClass": 1, - "r.attr": 1, - ".split": 19, - "e.nodeType": 7, - "e.className": 14, - "j.indexOf": 1, - "removeClass": 2, - "n.removeClass": 1, - "n.attr": 1, - "j.replace": 2, - "toggleClass": 2, - "j.toggleClass": 1, - "j.attr": 1, - "i.hasClass": 1, - "this.className": 10, - "hasClass": 2, - "<d;b++)if((\">": 1, - "className": 4, - "replace": 8, - "indexOf": 5, - "val": 13, - "c.nodeName": 4, - "b.attributes.value": 1, - ".specified": 1, - "b.value": 4, - "b.selectedIndex": 2, - "b.options": 1, - "<d;j++){var>": 1, - "i=": 31, - "selected": 5, - "a=": 23, - "test": 21, - "type": 49, - "support": 13, - "getAttribute": 3, - "on": 37, - "o=": 13, - "n=": 10, - "r=": 18, - "nodeType=": 6, - "call": 9, - "checked=": 1, - "this.selected": 1, - ".val": 5, - "this.selectedIndex": 1, - "this.value": 4, - "attrFn": 2, - "css": 7, - "html": 10, - "text": 14, - "width": 32, - "height": 25, - "offset": 21, - "c.attrFn": 1, - "c.isXMLDoc": 1, - "a.test": 2, - "ab.test": 1, - "a.getAttributeNode": 7, - ".nodeValue": 1, - "b.specified": 2, - "bb.test": 2, - "cb.test": 1, - "a.href": 2, - "c.support.style": 1, - "a.style.cssText": 3, - "a.setAttribute": 7, - "c.support.hrefNormalized": 1, - "a.getAttribute": 11, - "c.style": 1, - "db": 1, - "handle": 15, - "click": 11, - "events": 18, - "altKey": 4, - "attrChange": 4, - "attrName": 4, - "bubbles": 4, - "cancelable": 4, - "charCode": 7, - "clientX": 6, - "clientY": 5, - "ctrlKey": 6, - "currentTarget": 4, - "detail": 3, - "eventPhase": 4, - "fromElement": 6, - "handler": 14, - "keyCode": 6, - "layerX": 3, - "layerY": 3, - "metaKey": 5, - "newValue": 3, - "offsetX": 4, - "offsetY": 4, - "originalTarget": 1, - "pageX": 4, - "pageY": 4, - "prevValue": 3, - "relatedNode": 4, - "relatedTarget": 6, - "screenX": 4, - "screenY": 4, - "shiftKey": 4, - "srcElement": 5, - "toElement": 5, - "view": 4, - "wheelDelta": 3, - "which": 8, - "mouseover": 12, - "mouseout": 12, - "form": 12, - "click.specialSubmit": 2, - "submit": 14, - "image": 5, - "keypress.specialSubmit": 2, - "password": 5, - ".specialSubmit": 2, - "radio": 17, - "checkbox": 14, - "multiple": 7, - "_change_data": 6, - "focusout": 11, - "change": 16, - "file": 5, - ".specialChange": 4, - "focusin": 9, - "bind": 3, - "one": 15, - "unload": 5, - "live": 8, - "lastToggle": 4, - "die": 3, - "hover": 3, - "mouseenter": 9, - "mouseleave": 9, - "focus": 7, - "blur": 8, - "resize": 3, - "scroll": 6, - "dblclick": 3, - "mousedown": 3, - "mouseup": 3, - "mousemove": 3, - "keydown": 4, - "keypress": 4, - "keyup": 3, - "onunload": 1, - "g": 441, - "h": 499, - "q": 34, - "h.nodeType": 4, - "p": 110, - "y": 101, - "S": 8, - "H": 8, - "M": 9, - "I": 7, - "f.exec": 2, - "p.push": 2, - "p.length": 10, - "r.exec": 1, - "n.relative": 5, - "ga": 2, - "p.shift": 4, - "n.match.ID.test": 2, - "k.find": 6, - "v.expr": 4, - "k.filter": 5, - "v.set": 5, - "expr": 2, - "p.pop": 4, - "set": 22, - "z": 21, - "h.parentNode": 3, - "D": 9, - "k.error": 2, - "j.call": 2, - ".nodeType": 9, - "E": 11, - "l.push": 2, - "l.push.apply": 1, - "k.uniqueSort": 5, - "B": 5, - "g.sort": 1, - "g.length": 2, - "g.splice": 2, - "k.matches": 1, - "n.order.length": 1, - "n.order": 1, - "n.leftMatch": 1, - ".exec": 2, - "q.splice": 1, - "y.substr": 1, - "y.length": 1, - "Syntax": 3, - "unrecognized": 3, - "expression": 4, - "ID": 8, - "NAME": 2, - "TAG": 2, - "u00c0": 2, - "uFFFF": 2, - "leftMatch": 2, - "attrMap": 2, - "attrHandle": 2, - "g.getAttribute": 1, - "relative": 4, - "W/.test": 1, - "h.toLowerCase": 2, - "<q;m++)if(p=g[m]){for(;(p=p.previousSibling)&&p.nodeType!==1;);g[m]=l||p&&p.nodeName.toLowerCase()===h?p||false:p===h}l&&k.filter(h,g,true)},\">": 1, - "previousSibling": 5, - "nth": 5, - "odd": 2, - "not": 26, - "reset": 2, - "contains": 8, - "only": 10, - "id": 38, - "class": 5, - "Array": 3, - "sourceIndex": 1, - "div": 28, - "script": 7, - "<a>": 4, - "name=": 2, - "href=": 2, - "</a>": 2, - "<p>": 2, - "</p>": 2, - ".TEST": 2, - "</div>": 3, - "CLASS": 1, - "HTML": 9, - "find": 7, - "filter": 10, - "nextSibling": 3, - "iframe": 3, - "</\"+d+\">": 1, - "<select>": 1, - "multiple=": 1, - "</select>": 1, - "<fieldset>": 1, - "</fieldset>": 1, - "<table>": 4, - "</table>": 5, - "<tbody>": 3, - "</tbody>": 3, - "<tr>": 2, - "</tr>": 2, - "<colgroup>": 1, - "</colgroup>": 1, - "<map>": 1, - "</map>": 1, - "before": 8, - "after": 7, - "position": 7, - "absolute": 2, - "top": 12, - "left": 14, - "margin": 8, - "border": 7, - "px": 31, - "solid": 2, - "#000": 2, - "padding": 4, - "<td>": 1, - "</td>": 1, - "fixed": 1, - "marginTop": 3, - "marginLeft": 2, - "using": 5, - "borderTopWidth": 1, - "borderLeftWidth": 1, - "Left": 1, - "Top": 1, - "pageXOffset": 2, - "pageYOffset": 1, - "Height": 1, - "Width": 1, - "inner": 2, - "outer": 2, - "scrollTo": 1, - "CSS1Compat": 1, - "client": 3, - "window": 16, - "document": 26, - "window.document": 2, - "navigator": 3, - "window.navigator": 2, - "location": 2, - "window.location": 5, - "jQuery": 48, - "context": 48, - "The": 9, - "is": 67, - "actually": 2, - "just": 2, - "jQuery.fn.init": 2, - "rootjQuery": 8, - "Map": 4, - "over": 7, - "of": 28, - "overwrite": 4, - "_jQuery": 4, - "window.": 6, - "central": 2, - "reference": 5, - "simple": 3, - "way": 2, - "check": 8, - "strings": 8, - "both": 2, - "optimize": 3, - "quickExpr": 2, - "Check": 10, - "has": 9, - "non": 8, - "whitespace": 7, - "character": 3, - "it": 112, - "rnotwhite": 2, - "Used": 3, - "trimming": 2, - "trimLeft": 4, - "trimRight": 4, - "digits": 3, - "rdigit": 1, - "d/": 3, - "Match": 3, - "standalone": 2, - "tag": 2, - "rsingleTag": 2, - "JSON": 5, - "RegExp": 12, - "rvalidchars": 2, - "rvalidescape": 2, - "rvalidbraces": 2, - "Useragent": 2, - "rwebkit": 2, - "ropera": 2, - "rmsie": 2, - "rmozilla": 2, - "Keep": 2, - "UserAgent": 2, - "use": 10, - "with": 18, - "jQuery.browser": 4, - "userAgent": 3, - "For": 5, - "matching": 3, - "engine": 2, - "and": 42, - "browserMatch": 3, - "deferred": 25, - "used": 13, - "DOM": 21, - "readyList": 6, - "event": 31, - "DOMContentLoaded": 14, - "Save": 2, - "some": 2, - "core": 2, - "methods": 8, - "toString": 4, - "hasOwn": 2, - "String.prototype.trim": 3, - "Class": 2, - "pairs": 2, - "class2type": 3, - "jQuery.fn": 4, - "jQuery.prototype": 2, - "match": 30, - "doc": 4, - "Handle": 14, - "DOMElement": 2, - "selector.nodeType": 2, - "exists": 9, - "once": 4, - "finding": 2, - "Are": 2, - "dealing": 2, - "selector.charAt": 4, - "selector.length": 4, - "Assume": 2, - "are": 18, - "regex": 3, - "quickExpr.exec": 2, - "Verify": 3, - "no": 19, - "was": 6, - "specified": 4, - "#id": 3, - "HANDLE": 2, - "array": 7, - "context.ownerDocument": 2, - "If": 21, - "single": 2, - "passed": 5, - "clean": 3, - "like": 5, - "method.": 3, - "jQuery.fn.init.prototype": 2, - "jQuery.extend": 11, - "jQuery.fn.extend": 4, - "copy": 16, - "copyIsArray": 2, - "clone": 5, - "deep": 12, - "situation": 2, - "boolean": 8, - "when": 20, - "something": 3, - "possible": 3, - "jQuery.isFunction": 6, - "extend": 13, - "itself": 4, - "argument": 2, - "Only": 5, - "deal": 2, - "null/undefined": 2, - "values": 10, - "Extend": 2, - "base": 2, - "Prevent": 2, - "never": 2, - "ending": 2, - "loop": 7, - "Recurse": 2, - "bring": 2, - "Return": 2, - "modified": 3, - "Is": 2, - "be": 12, - "Set": 4, - "occurs.": 2, - "counter": 2, - "track": 2, - "how": 2, - "many": 3, - "items": 2, - "wait": 12, - "fires.": 2, - "See": 9, - "#6781": 2, - "readyWait": 6, - "Hold": 2, - "release": 2, - "holdReady": 3, - "hold": 6, - "jQuery.readyWait": 6, - "jQuery.ready": 16, - "Either": 2, - "released": 2, - "DOMready/load": 2, - "yet": 2, - "jQuery.isReady": 6, - "Make": 17, - "sure": 18, - "at": 58, - "least": 4, - "IE": 28, - "gets": 6, - "little": 4, - "overzealous": 4, - "ticket": 4, - "#5443": 4, - "Remember": 2, - "normal": 2, - "Ready": 2, - "fired": 12, - "decrement": 2, - "need": 10, - "there": 6, - "functions": 6, - "bound": 8, - "execute": 4, - "readyList.resolveWith": 1, - "Trigger": 2, - "any": 12, - "jQuery.fn.trigger": 2, - ".trigger": 3, - ".unbind": 4, - "jQuery._Deferred": 3, - "Catch": 2, - "cases": 4, - "where": 2, - ".ready": 2, - "called": 2, - "already": 6, - "occurred.": 2, - "document.readyState": 4, - "asynchronously": 2, - "allow": 6, - "scripts": 2, - "opportunity": 2, - "Mozilla": 2, - "Opera": 2, - "nightlies": 3, - "currently": 4, - "document.addEventListener": 6, - "Use": 7, - "handy": 2, - "fallback": 4, - "window.onload": 4, - "will": 7, - "always": 6, - "work": 6, - "window.addEventListener": 2, - "model": 14, - "document.attachEvent": 6, - "ensure": 2, - "firing": 16, - "onload": 2, - "maybe": 2, - "late": 2, - "but": 4, - "safe": 3, - "iframes": 2, - "window.attachEvent": 2, - "frame": 23, - "continually": 2, - "see": 6, - "toplevel": 7, - "window.frameElement": 2, - "document.documentElement.doScroll": 4, - "doScrollCheck": 6, - "test/unit/core.js": 2, - "details": 3, - "concerning": 2, - "isFunction.": 2, - "Since": 3, - "aren": 5, - "pass": 7, - "through": 3, - "as": 11, - "well": 2, - "jQuery.type": 4, - "obj.nodeType": 2, - "jQuery.isWindow": 2, - "own": 4, - "property": 15, - "must": 4, - "Object": 4, - "obj.constructor": 2, - "hasOwn.call": 6, - "obj.constructor.prototype": 2, - "Own": 2, - "properties": 7, - "enumerated": 2, - "firstly": 2, - "speed": 4, - "up": 4, - "then": 8, - "own.": 2, - "msg": 4, - "leading/trailing": 2, - "removed": 3, - "can": 10, - "breaking": 1, - "spaces": 3, - "rnotwhite.test": 2, - "xA0": 7, - "document.removeEventListener": 2, - "document.detachEvent": 2, - "trick": 2, - "Diego": 2, - "Perini": 2, - "http": 6, - "//javascript.nwbox.com/IEContentLoaded/": 2, - "waiting": 2, - "Promise": 1, - "promiseMethods": 3, - "Static": 1, - "sliceDeferred": 1, - "Create": 1, - "callbacks": 10, - "_Deferred": 4, - "stored": 4, - "args": 31, - "avoid": 5, - "doing": 3, - "flag": 1, - "know": 3, - "cancelled": 5, - "done": 10, - "f1": 1, - "f2": 1, - "...": 1, - "_fired": 5, - "args.length": 3, - "deferred.done.apply": 2, - "callbacks.push": 1, - "deferred.resolveWith": 5, - "resolve": 7, - "given": 3, - "resolveWith": 4, - "make": 2, - "available": 1, - "#8421": 1, - "callbacks.shift": 1, - "finally": 3, - "Has": 1, - "resolved": 1, - "isResolved": 3, - "Cancel": 1, - "cancel": 6, - "Full": 1, - "fledged": 1, - "two": 1, - "Deferred": 5, - "func": 3, - "failDeferred": 1, - "promise": 14, - "Add": 4, - "errorDeferred": 1, - "doneCallbacks": 2, - "failCallbacks": 2, - "deferred.done": 2, - ".fail": 2, - ".fail.apply": 1, - "fail": 10, - "failDeferred.done": 1, - "rejectWith": 2, - "failDeferred.resolveWith": 1, - "reject": 4, - "failDeferred.resolve": 1, - "isRejected": 2, - "failDeferred.isResolved": 1, - "pipe": 2, - "fnDone": 2, - "fnFail": 2, - "jQuery.Deferred": 1, - "newDefer": 3, - "jQuery.each": 2, - "fn": 14, - "action": 3, - "returned": 4, - "fn.apply": 1, - "returned.promise": 2, - ".then": 3, - "newDefer.resolve": 1, - "newDefer.reject": 1, - ".promise": 5, - "Get": 4, - "provided": 1, - "aspect": 1, - "added": 1, - "promiseMethods.length": 1, - "failDeferred.cancel": 1, - "deferred.cancel": 2, - "Unexpose": 1, - "Call": 1, - "func.call": 1, - "helper": 1, - "firstParam": 6, - "count": 4, - "<=>": 1, - "1": 97, - "resolveFunc": 2, - "sliceDeferred.call": 2, - "Strange": 1, - "bug": 3, - "FF4": 1, - "Values": 1, - "changed": 3, - "onto": 2, - "sometimes": 1, - "outside": 2, - ".when": 1, - "Cloning": 2, - "into": 2, - "fresh": 1, - "solves": 1, - "issue": 1, - "deferred.reject": 1, - "deferred.promise": 1, - "jQuery.support": 1, - "document.createElement": 26, - "documentElement": 2, - "document.documentElement": 2, - "opt": 2, - "marginDiv": 5, - "bodyStyle": 1, - "tds": 6, - "isSupported": 7, - "Preliminary": 1, - "tests": 48, - "div.setAttribute": 1, - "div.innerHTML": 7, - "div.getElementsByTagName": 6, - "Can": 2, - "automatically": 2, - "inserted": 1, - "insert": 1, - "them": 3, - "empty": 3, - "tables": 1, - "link": 2, - "elements": 9, - "serialized": 3, - "correctly": 1, - "innerHTML": 1, - "This": 3, - "requires": 1, - "wrapper": 1, - "information": 5, - "from": 7, - "uses": 3, - ".cssText": 2, - "instead": 6, - "/top/.test": 2, - "URLs": 1, - "optgroup": 5, - "opt.selected": 1, - "Test": 3, - "setAttribute": 1, - "camelCase": 3, - "class.": 1, - "works": 1, - "attrFixes": 1, - "get/setAttribute": 1, - "ie6/7": 1, - "getSetAttribute": 3, - "div.className": 1, - "Will": 2, - "defined": 3, - "later": 1, - "submitBubbles": 3, - "changeBubbles": 3, - "focusinBubbles": 2, - "inlineBlockNeedsLayout": 3, - "shrinkWrapBlocks": 2, - "reliableMarginRight": 2, - "checked": 4, - "status": 3, - "properly": 2, - "cloned": 1, - "input.checked": 1, - "support.noCloneChecked": 1, - "input.cloneNode": 1, - ".checked": 2, - "inside": 3, - "disabled": 11, - "selects": 1, - "Fails": 2, - "Internet": 1, - "Explorer": 1, - "div.test": 1, - "support.deleteExpando": 1, - "div.addEventListener": 1, - "div.attachEvent": 2, - "div.fireEvent": 1, - "node": 23, - "being": 2, - "appended": 2, - "input.value": 5, - "input.setAttribute": 5, - "support.radioValue": 2, - "div.appendChild": 4, - "document.createDocumentFragment": 3, - "fragment.appendChild": 2, - "div.firstChild": 3, - "WebKit": 9, - "doesn": 2, - "inline": 3, - "display": 7, - "none": 4, - "GC": 2, - "references": 1, - "across": 1, - "JS": 7, - "boundary": 1, - "isNode": 11, - "elem.nodeType": 8, - "nodes": 14, - "global": 5, - "attached": 1, - "directly": 2, - "occur": 1, - "jQuery.cache": 3, - "defining": 1, - "objects": 7, - "its": 2, - "allows": 1, - "code": 2, - "shortcut": 1, - "same": 1, - "jQuery.expando": 12, - "Avoid": 1, - "more": 6, - "than": 3, - "trying": 1, - "pvt": 8, - "internalKey": 12, - "getByName": 3, - "unique": 2, - "since": 1, - "their": 3, - "ends": 1, - "jQuery.uuid": 1, - "TODO": 2, - "hack": 2, - "ONLY.": 2, - "Avoids": 2, - "exposing": 2, - "metadata": 2, - "plain": 2, - "JSON.stringify": 4, - ".toJSON": 4, - "jQuery.noop": 2, - "An": 1, - "jQuery.data": 15, - "key/value": 1, - "pair": 1, - "shallow": 1, - "copied": 1, - "existing": 1, - "thisCache": 15, - "Internal": 1, - "separate": 1, - "destroy": 1, - "unless": 2, - "internal": 8, - "had": 1, - "isEmptyDataObject": 3, - "internalCache": 3, - "Browsers": 1, - "deletion": 1, - "refuse": 1, - "expandos": 2, - "other": 3, - "browsers": 2, - "faster": 1, - "iterating": 1, - "persist": 1, - "existed": 1, - "Otherwise": 2, - "eliminate": 2, - "lookups": 2, - "entries": 2, - "longer": 2, - "exist": 2, - "does": 9, - "us": 2, - "nor": 2, - "have": 6, - "removeAttribute": 3, - "Document": 2, - "these": 2, - "jQuery.support.deleteExpando": 3, - "elem.removeAttribute": 6, - "only.": 2, - "_data": 3, - "determining": 3, - "acceptData": 3, - "elem.nodeName": 2, - "jQuery.noData": 2, - "elem.nodeName.toLowerCase": 2, - "elem.getAttribute": 7, - ".attributes": 2, - "attr.length": 2, - ".name": 3, - "name.indexOf": 2, - "jQuery.camelCase": 6, - "name.substring": 2, - "dataAttr": 6, - "parts": 28, - "key.split": 2, - "Try": 4, - "fetch": 4, - "internally": 5, - "jQuery.removeData": 2, - "nothing": 2, - "found": 10, - "HTML5": 3, - "attribute": 5, - "key.replace": 2, - "rmultiDash": 3, - ".toLowerCase": 7, - "jQuery.isNaN": 1, - "parseFloat": 30, - "rbrace.test": 2, - "jQuery.parseJSON": 2, - "isn": 2, - "option.selected": 2, - "jQuery.support.optDisabled": 2, - "option.disabled": 2, - "option.getAttribute": 2, - "option.parentNode.disabled": 2, - "jQuery.nodeName": 3, - "option.parentNode": 2, - "specific": 2, - "We": 6, - "get/set": 2, - "attributes": 14, - "comment": 3, - "nType": 8, - "jQuery.attrFn": 2, - "Fallback": 2, - "prop": 24, - "supported": 2, - "jQuery.prop": 2, - "hooks": 14, - "notxml": 8, - "jQuery.isXMLDoc": 2, - "Normalize": 1, - "needed": 2, - "jQuery.attrFix": 2, - "jQuery.attrHooks": 2, - "boolHook": 3, - "rboolean.test": 4, - "value.toLowerCase": 2, - "formHook": 3, - "forms": 1, - "certain": 2, - "characters": 6, - "rinvalidChar.test": 1, - "jQuery.removeAttr": 2, - "hooks.set": 2, - "elem.setAttribute": 2, - "hooks.get": 2, - "Non": 3, - "existent": 2, - "normalize": 2, - "propName": 8, - "jQuery.support.getSetAttribute": 1, - "jQuery.attr": 2, - "elem.removeAttributeNode": 1, - "elem.getAttributeNode": 1, - "corresponding": 2, - "jQuery.propFix": 2, - "attrHooks": 3, - "tabIndex": 4, - "readOnly": 2, - "htmlFor": 2, - "maxLength": 2, - "cellSpacing": 2, - "cellPadding": 2, - "rowSpan": 2, - "colSpan": 2, - "useMap": 2, - "frameBorder": 2, - "contentEditable": 2, - "auto": 3, - "&": 13, - "getData": 3, - "setData": 3, - "changeData": 3, - "bubbling": 1, - "live.": 2, - "hasDuplicate": 1, - "baseHasDuplicate": 2, - "rBackslash": 1, - "rNonWord": 1, - "W/": 2, - "Sizzle": 1, - "results": 4, - "seed": 1, - "origContext": 1, - "context.nodeType": 2, - "checkSet": 1, - "extra": 1, - "cur": 6, - "pop": 1, - "prune": 1, - "contextXML": 1, - "Sizzle.isXML": 1, - "soFar": 1, - "Reset": 1, - "cy": 4, - "f.isWindow": 2, - "cv": 2, - "cj": 4, - ".appendTo": 2, - "b.css": 1, - "b.remove": 1, - "ck": 5, - "c.createElement": 12, - "ck.frameBorder": 1, - "ck.width": 1, - "ck.height": 1, - "c.body.appendChild": 1, - "cl": 3, - "ck.createElement": 1, - "ck.contentWindow": 1, - "ck.contentDocument": 1, - ".document": 1, - "cl.write": 1, - "cl.createElement": 1, - "cl.body.appendChild": 1, - "f.css": 24, - "c.body.removeChild": 1, - "cu": 18, - "f.each": 21, - "cp.concat.apply": 1, - "cp.slice": 1, - "ct": 34, - "cq": 3, - "cs": 3, - "f.now": 2, - "ci": 29, - "a.ActiveXObject": 3, - "ch": 58, - "a.XMLHttpRequest": 1, - "a.dataFilter": 2, - "a.dataType": 1, - "a.dataTypes": 2, - "a.converters": 3, - "o.split": 1, - "f.error": 4, - "m.replace": 1, - "a.contents": 1, - "a.responseFields": 1, - "f.shift": 1, - "a.mimeType": 1, - "c.getResponseHeader": 1, - ".test": 1, - "f.unshift": 2, - "b_": 4, - "f.isArray": 8, - "bF.test": 1, - "c.dataTypes": 1, - "h.length": 3, - "bU": 4, - "c.dataTypes.unshift": 1, - "bZ": 3, - "f.isFunction": 21, - "b.toLowerCase": 3, - "bQ": 3, - "h.substr": 1, - "bD": 3, - "bx": 2, - "a.offsetWidth": 6, - "a.offsetHeight": 2, - "bn": 2, - "f.ajax": 3, - "f.globalEval": 2, - "bf": 6, - "bm": 3, - "f.nodeName": 16, - "bl": 3, - "a.getElementsByTagName": 9, - "f.grep": 3, - "a.defaultChecked": 1, - "a.checked": 4, - "bk": 5, - "a.querySelectorAll": 1, - "bj": 3, - "b.nodeType": 6, - "b.clearAttributes": 2, - "b.mergeAttributes": 2, - "b.nodeName.toLowerCase": 1, - "b.outerHTML": 1, - "a.outerHTML": 1, - "b.selected": 1, - "a.defaultSelected": 1, - "b.defaultValue": 1, - "a.defaultValue": 1, - "b.defaultChecked": 1, - "b.checked": 1, - "a.value": 8, - "b.removeAttribute": 3, - "f.expando": 23, - "bi": 27, - "f.hasData": 2, - "f.data": 25, - "d.events": 1, - "f.extend": 23, - "<j;i++)f.event.add(b,h+(g[h][i].namespace?\".\":\"\")+g[h][i].namespace,g[h][i],g[h][i].data)}}}}function>": 1, - "bh": 1, - "table": 6, - "getElementsByTagName": 1, - "0": 220, - "appendChild": 1, - "ownerDocument": 9, - "createElement": 3, - "b=": 25, - "e=": 21, - "nodeType": 1, - "d=": 15, - "W": 3, - "N": 2, - "f._data": 15, - "r.live": 1, - "a.target.disabled": 1, - "a.namespace": 1, - "a.namespace.split": 1, - "r.live.slice": 1, - "s.length": 2, - "g.origType.replace": 1, - "q.push": 1, - "g.selector": 3, - "s.splice": 1, - "m.selector": 1, - "n.test": 2, - "g.namespace": 1, - "m.elem.disabled": 1, - "m.elem": 1, - "g.preType": 3, - "f.contains": 5, - "level": 3, - "m.level": 1, - "<k;j++){e=p[j];if(c&&e.level>": 1, - "e.elem": 2, - "e.handleObj.data": 1, - "e.handleObj": 1, - "e.handleObj.origHandler.apply": 1, - "a.isPropagationStopped": 1, - "e.level": 1, - "a.isImmediatePropagationStopped": 1, - "e.type": 6, - "e.originalEvent": 1, - "e.liveFired": 1, - "f.event.handle.call": 1, - ".preventDefault": 1, - "F": 8, - "f.removeData": 4, - "i.resolve": 1, - "c.replace": 4, - "f.isNaN": 3, - "i.test": 1, - "f.parseJSON": 2, - "a.navigator": 1, - "a.location": 1, - "e.isReady": 1, - "c.documentElement.doScroll": 2, - "e.ready": 6, - "e.fn.init": 1, - "a.jQuery": 2, - "a.": 2, - "d.userAgent": 1, - "C": 4, - "e.fn": 2, - "e.prototype": 1, - "c.body": 4, - "a.charAt": 2, - "i.exec": 1, - "d.ownerDocument": 1, - "n.exec": 1, - "e.isPlainObject": 1, - "e.fn.attr.call": 1, - "k.createElement": 1, - "e.buildFragment": 1, - "j.cacheable": 1, - "e.clone": 1, - "j.fragment": 2, - "e.merge": 3, - "c.getElementById": 1, - "h.id": 1, - "f.find": 2, - "d.jquery": 1, - "e.isFunction": 5, - "f.ready": 1, - "e.makeArray": 1, - "D.call": 4, - "e.isArray": 2, - "C.apply": 1, - "d.prevObject": 1, - "d.context": 2, - "d.selector": 2, - "e.each": 2, - "e.bindReady": 1, - "y.done": 1, - "D.apply": 1, - "e.map": 1, - "e.fn.init.prototype": 1, - "e.extend": 2, - "e.fn.extend": 1, - "<k;j++)if((a=arguments[j])!=null)for(c>": 1, - "f=": 13, - "g=": 15, - "h=": 19, - "jQuery=": 2, - "isReady=": 1, - "y.resolveWith": 1, - "e.fn.trigger": 1, - "e._Deferred": 1, - "c.readyState": 2, - "c.addEventListener": 4, - "a.addEventListener": 4, - "c.attachEvent": 3, - "a.attachEvent": 6, - "a.frameElement": 1, - "isWindow": 2, - "isNaN": 6, - "m.test": 1, - "String": 2, - "A.call": 1, - "e.isWindow": 2, - "B.call": 3, - "e.trim": 1, - "a.JSON": 1, - "a.JSON.parse": 2, - "o.test": 1, - "e.error": 2, - "parseXML": 1, - "a.DOMParser": 1, - "DOMParser": 1, - "d.parseFromString": 1, - "ActiveXObject": 1, - "c.async": 4, - "c.loadXML": 1, - "c.documentElement": 4, - "d.nodeName": 4, - "j.test": 3, - "a.execScript": 1, - "a.eval.call": 1, - "c.apply": 2, - "c.call": 3, - "E.call": 1, - "C.call": 1, - "F.call": 1, - "c.length": 8, - "<g;f++)e=!!b(a[f],f),c!==e&&d.push(a[f]);return>": 1, - "j=": 14, - "k=": 11, - "h.concat.apply": 1, - "f.concat": 1, - "g.guid": 3, - "e.guid": 3, - "access": 2, - "e.access": 1, - "now": 5, - "s.exec": 1, - "t.exec": 1, - "u.exec": 1, - "a.indexOf": 2, - "v.exec": 1, - "sub": 4, - "a.fn.init": 2, - "a.superclass": 1, - "a.fn": 2, - "a.prototype": 1, - "a.fn.constructor": 1, - "a.sub": 1, - "this.sub": 2, - "e.fn.init.call": 1, - "a.fn.init.prototype": 1, - "e.uaMatch": 1, - "x.browser": 2, - "e.browser": 1, - "e.browser.version": 1, - "x.version": 1, - "e.browser.webkit": 1, - "e.browser.safari": 1, - "c.removeEventListener": 2, - "c.detachEvent": 1, - "<h;g++)i=c[g],j=f.type(i),j===\"array\"?e.done.apply(e,i):j===\"function\"&&a.push(i);k&&e.resolveWith(k[0],k[1])}return>": 1, - "c=": 24, - "shift": 1, - "apply": 8, - "h.call": 2, - "g.resolveWith": 3, - "<=1&&a&&f.isFunction(a.promise)?a:f.Deferred();if(d>": 1, - "g.reject": 1, - "g.promise": 1, - "f.support": 2, - "a.innerHTML": 7, - "f.appendChild": 1, - "a.firstChild.nodeType": 2, - "e.getAttribute": 2, - "e.style.opacity": 1, - "e.style.cssFloat": 1, - "h.value": 3, - "g.selected": 1, - "a.className": 1, - "h.checked": 2, - "j.noCloneChecked": 1, - "h.cloneNode": 1, - "f.disabled": 1, - "j.optDisabled": 1, - "g.disabled": 1, - "j.deleteExpando": 1, - "a.fireEvent": 1, - "j.noCloneEvent": 1, - "a.detachEvent": 1, - "h.setAttribute": 2, - "j.radioValue": 1, - "c.createDocumentFragment": 1, - "k.appendChild": 1, - "j.checkClone": 1, - "k.cloneNode": 1, - "a.style.width": 1, - "a.style.paddingLeft": 1, - "visibility": 3, - "background": 56, - "l.style": 1, - "l.appendChild": 1, - "j.appendChecked": 1, - "j.boxModel": 1, - "a.style": 8, - "a.style.display": 3, - "a.style.zoom": 1, - "j.inlineBlockNeedsLayout": 1, - "j.shrinkWrapBlocks": 1, - ".offsetHeight": 4, - "j.reliableHiddenOffsets": 1, - "c.defaultView": 2, - "c.defaultView.getComputedStyle": 3, - "i.style.width": 1, - "i.style.marginRight": 1, - "j.reliableMarginRight": 1, - "parseInt": 12, - "marginRight": 2, - ".marginRight": 2, - "l.innerHTML": 1, - "f.boxModel": 1, - "f.support.boxModel": 4, - "uuid": 2, - "f.fn.jquery": 1, - "Math.random": 2, - "D/g": 2, - "hasData": 2, - "f.cache": 5, - "f.acceptData": 4, - "f.uuid": 1, - "f.noop": 4, - "f.camelCase": 5, - ".events": 1, - "f.support.deleteExpando": 3, - "f.noData": 2, - "f.fn.extend": 9, - "g.indexOf": 2, - "g.substring": 1, - "b.triggerHandler": 2, - "_mark": 2, - "_unmark": 3, - "f.makeArray": 5, - "e.push": 3, - "f.queue": 3, - "c.shift": 2, - "c.unshift": 1, - "f.dequeue": 4, - "f.fx": 2, - "f.fx.speeds": 1, - "d.resolveWith": 1, - "f.Deferred": 2, - "f._Deferred": 2, - "l.done": 1, - "d.promise": 1, - "rea": 1, - "autofocus": 1, - "autoplay": 1, - "controls": 1, - "defer": 1, - "required": 1, - "scoped": 1, - "f.access": 3, - "f.attr": 2, - "f.removeAttr": 3, - "f.prop": 2, - "removeProp": 1, - "f.propFix": 6, - "c.addClass": 1, - "f.trim": 2, - "c.removeClass": 1, - "g.nodeType": 6, - "g.className": 4, - "h.replace": 2, - "d.toggleClass": 1, - "d.attr": 1, - "h.hasClass": 1, - "<d;c++)if((\">": 1, - "f.valHooks": 7, - "e.nodeName.toLowerCase": 1, - "c.get": 1, - "e.value": 1, - "e.val": 1, - "f.map": 5, - "this.nodeName.toLowerCase": 1, - "this.type": 3, - "c.set": 1, - "valHooks": 1, - "a.attributes.value": 1, - "a.text": 1, - "a.selectedIndex": 3, - "a.options": 2, - "<i;h++){var>": 3, - "optDisabled": 1, - "selected=": 1, - "attrFix": 1, - "f.attrFn": 3, - "f.isXMLDoc": 4, - "f.attrFix": 3, - "f.attrHooks": 5, - "t.test": 2, - "d.toLowerCase": 1, - "c.toLowerCase": 4, - "u.test": 1, - "i.set": 1, - "i.get": 1, - "f.support.getSetAttribute": 2, - "a.removeAttributeNode": 1, - "q.test": 1, - "f.support.radioValue": 1, - "c.specified": 1, - "c.value": 1, - "r.test": 1, - "s.test": 1, - "propFix": 1, - "cellpadding": 1, - "contenteditable": 1, - "f.propHooks": 1, - "h.set": 1, - "h.get": 1, - "propHooks": 1, - "f.attrHooks.value": 1, - "v.get": 1, - "f.attrHooks.name": 1, - "f.valHooks.button": 1, - "d.nodeValue": 3, - "f.support.hrefNormalized": 1, - "f.support.style": 1, - "f.attrHooks.style": 1, - "a.style.cssText.toLowerCase": 1, - "f.support.optSelected": 1, - "f.propHooks.selected": 2, - "b.parentNode.selectedIndex": 1, - "f.support.checkOn": 1, - "f.inArray": 4, - "s.": 1, - "f.event": 2, - "add": 15, - "d.handler": 1, - "g.handler": 1, - "d.guid": 4, - "f.guid": 3, - "i.events": 2, - "i.handle": 2, - "f.event.triggered": 3, - "f.event.handle.apply": 1, - "k.elem": 2, - "c.split": 2, - "l.indexOf": 1, - "l.split": 1, - "n.shift": 1, - "h.namespace": 2, - "n.slice": 1, - "h.type": 1, - "h.guid": 2, - "f.event.special": 5, - "p.setup": 1, - "p.setup.call": 1, - "p.add": 1, - "p.add.call": 1, - "h.handler.guid": 2, - "o.push": 1, - "f.event.global": 2, - "remove": 9, - "s.events": 1, - "c.type": 9, - "c.handler": 1, - "c.charAt": 1, - "f.event.remove": 5, - "h.indexOf": 3, - "h.split": 2, - "m.shift": 1, - "m.slice": 1, - "q.namespace": 1, - "q.handler": 1, - "p.splice": 1, - "<p.length;j++){q=p[j];if(d.guid===q.guid){if(l||n.test(q.namespace))e==null&&p.splice(j--,1),o.remove&&o.remove.call(a,q);if(e!=null)break}}if(p.length===0||e!=null&&p.length===1)(!o.teardown||o.teardown.call(a,m)===!1)&&f.removeEvent(a,h,s.handle),g=null,delete>": 1, - "u=": 12, - "elem=": 4, - "customEvent": 1, - "trigger": 4, - "h.slice": 1, - "i.shift": 1, - "i.sort": 1, - "f.event.customEvent": 1, - "f.Event": 2, - "c.exclusive": 2, - "c.namespace": 2, - "i.join": 2, - "c.namespace_re": 1, - "c.preventDefault": 3, - "c.stopPropagation": 1, - "b.events": 4, - "f.event.trigger": 6, - "b.handle.elem": 2, - "c.result": 3, - "c.target": 3, - "do": 15, - "c.currentTarget": 2, - "m.apply": 1, - "k.parentNode": 1, - "k.ownerDocument": 1, - "c.target.ownerDocument": 1, - "c.isPropagationStopped": 1, - "c.isDefaultPrevented": 2, - "o._default": 1, - "o._default.call": 1, - "e.ownerDocument": 1, - "f.event.fix": 2, - "a.event": 1, - "Array.prototype.slice.call": 1, - "namespace_re": 1, - "namespace": 1, - "handler=": 1, - "data=": 2, - "handleObj=": 1, - "result=": 1, - "preventDefault": 4, - "stopPropagation": 5, - "isImmediatePropagationStopped": 2, - "result": 9, - "props": 21, - "split": 4, - "fix": 1, - "Event": 3, - "target=": 2, - "relatedTarget=": 1, - "fromElement=": 1, - "pageX=": 2, - "scrollLeft": 2, - "clientLeft": 2, - "pageY=": 1, - "scrollTop": 2, - "clientTop": 2, - "which=": 3, - "metaKey=": 1, - "2": 66, - "3": 13, - "4": 4, - "1e8": 1, - "special": 3, - "setup": 5, - "teardown": 6, - "origType": 2, - "beforeunload": 1, - "onbeforeunload=": 3, - "removeEvent=": 1, - "removeEventListener": 3, - "detachEvent": 2, - "Event=": 1, - "originalEvent=": 1, - "type=": 5, - "isDefaultPrevented=": 2, - "defaultPrevented": 1, - "returnValue=": 2, - "getPreventDefault": 2, - "timeStamp=": 1, - "prototype=": 2, - "originalEvent": 2, - "isPropagationStopped=": 1, - "cancelBubble=": 1, - "stopImmediatePropagation": 1, - "isImmediatePropagationStopped=": 1, - "isDefaultPrevented": 1, - "isPropagationStopped": 1, - "G=": 1, - "H=": 1, - "submit=": 1, - "specialSubmit": 3, - "closest": 3, - "keyCode=": 1, - "J=": 1, - "selectedIndex": 1, - "a.selected": 1, - "z.test": 3, - "d.readOnly": 1, - "c.liveFired": 1, - "f.event.special.change": 1, - "filters": 1, - "beforedeactivate": 1, - "K.call": 2, - "a.keyCode": 2, - "beforeactivate": 1, - "f.event.add": 2, - "f.event.special.change.filters": 1, - "I.focus": 1, - "I.beforeactivate": 1, - "f.support.focusinBubbles": 1, - "c.originalEvent": 1, - "a.preventDefault": 3, - "f.fn": 9, - "e.apply": 1, - "this.one": 1, - "unbind": 2, - "this.unbind": 2, - "delegate": 1, - "this.live": 1, - "undelegate": 1, - "this.die": 1, - "triggerHandler": 1, - "%": 26, - ".guid": 1, - "this.click": 1, - "this.mouseenter": 1, - ".mouseleave": 1, - "g.charAt": 1, - "n.unbind": 1, - "y.exec": 1, - "a.push": 2, - "n.length": 1, - "<q;p++)f.event.add(n[p],\"live.\"+O(h,m),{data:d,selector:m,handler:e,origType:h,origHandler:e,preType:l});else>": 1, - "this.bind": 2, - "<h;g++){var>": 2, - "sizcache=": 4, - "sizset": 2, - "sizset=": 2, - "toLowerCase": 3, - "d.nodeType": 5, - "k.isXML": 4, - "a.exec": 2, - "x.push": 1, - "x.length": 8, - "m.exec": 1, - "l.relative": 6, - "x.shift": 4, - "l.match.ID.test": 2, - "q.expr": 4, - "q.set": 4, - "x.pop": 4, - "d.parentNode": 4, - "e.call": 1, - "f.push.apply": 1, - "k.contains": 5, - "a.sort": 1, - "<a.length;b++)a[b]===a[b-1]&&a.splice(b--,1)}return>": 1, - "matches=": 1, - "matchesSelector=": 1, - "l.order.length": 1, - "l.order": 1, - "l.leftMatch": 1, - "j.substr": 1, - "<g;f++)if(h=a[f]){while((h=h.previousSibling)&&h.nodeType!==1);a[f]=e||h&&h.nodeName.toLowerCase()===b?h||!1:h===b}e&&k.filter(b,a,!0)},\">": 1, - "__sizzle__": 1, - "sizzle": 1, - "l.match.PSEUDO.test": 1, - "a.document.nodeType": 1, - "a.getElementsByClassName": 3, - "a.lastChild.className": 1, - "l.order.splice": 1, - "l.find.CLASS": 1, - "b.getElementsByClassName": 2, - "c.documentElement.contains": 1, - "a.contains": 2, - "c.documentElement.compareDocumentPosition": 1, - "a.compareDocumentPosition": 1, - "a.ownerDocument": 1, - ".documentElement": 1, - "b.nodeName": 2, - "l.match.PSEUDO.exec": 1, - "l.match.PSEUDO": 1, - "f.expr": 4, - "k.selectors": 1, - "f.expr.filters": 3, - "f.unique": 4, - "f.text": 2, - "k.getText": 1, - "/Until": 1, - "parents": 2, - "prevUntil": 2, - "prevAll": 2, - "U": 1, - "f.expr.match.POS": 1, - "V": 2, - "children": 3, - "contents": 4, - "next": 9, - "prev": 2, - ".filter": 2, - "<d;c++){g=e.length,f.find(a,this[c],e);if(c>": 1, - "e.splice": 1, - "this.filter": 2, - "<c;a++)if(f.contains(this,b[a]))return!0})},not:function(a){return>": 1, - "<e;d++)i=a[d],j[i]||(j[i]=U.test(i)?f(i,b||this.context):i);while(g&&g.ownerDocument&&g!==b){for(i>": 1, - ".is": 2, - "c.push": 3, - "g.parentNode": 2, - "U.test": 1, - "<e;d++){g=this[d];while(g){if(l?l.index(g)>": 1, - "f.find.matchesSelector": 2, - "g.ownerDocument": 1, - "this.parent": 2, - ".children": 1, - "a.jquery": 2, - "f.merge": 2, - "this.get": 1, - "andSelf": 1, - "this.add": 1, - "f.dir": 6, - "parentsUntil": 1, - "f.nth": 2, - "nextAll": 1, - "nextUntil": 1, - "siblings": 1, - "f.sibling": 2, - "a.parentNode.firstChild": 1, - "a.contentDocument": 1, - "a.contentWindow.document": 1, - "a.childNodes": 1, - "T.call": 1, - "P.test": 1, - "f.filter": 2, - "R.test": 1, - "Q.test": 1, - "e.reverse": 1, - "g.join": 1, - "f.find.matches": 1, - "dir": 1, - "sibling": 1, - "a.nextSibling": 1, - "<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\\w:]+)[^>": 1, - "/ig": 3, - "tbody/i": 1, - "bc": 1, - "bd": 1, - "/checked": 1, - "s*.checked.": 1, - "java": 1, - "ecma": 1, - "script/i": 1, - "CDATA": 1, - "bg": 3, - "legend": 1, - "thead": 2, - "tr": 23, - "td": 3, - "col": 7, - "_default": 5, - "bg.optgroup": 1, - "bg.option": 1, - "bg.tbody": 1, - "bg.tfoot": 1, - "bg.colgroup": 1, - "bg.caption": 1, - "bg.thead": 1, - "bg.th": 1, - "bg.td": 1, - "f.support.htmlSerialize": 1, - "bg._default": 2, - "c.text": 2, - "this.empty": 3, - ".append": 6, - ".createTextNode": 1, - "wrapAll": 1, - ".wrapAll": 2, - ".eq": 1, - ".clone": 1, - "b.map": 1, - "wrapInner": 1, - ".wrapInner": 1, - "b.contents": 1, - "c.wrapAll": 1, - "b.append": 1, - "wrap": 2, - "unwrap": 1, - ".replaceWith": 1, - "this.childNodes": 1, - ".end": 1, - "append": 1, - "this.domManip": 4, - "this.appendChild": 1, - "prepend": 1, - "this.insertBefore": 1, - "this.firstChild": 1, - "this.parentNode.insertBefore": 2, - "a.push.apply": 2, - "this.nextSibling": 2, - ".toArray": 1, - "f.cleanData": 4, - "d.parentNode.removeChild": 1, - "b.getElementsByTagName": 1, - "this.map": 3, - "f.clone": 2, - ".innerHTML.replace": 1, - "bc.test": 2, - "f.support.leadingWhitespace": 2, - "Z.test": 2, - "_.exec": 2, - ".getElementsByTagName": 2, - ".innerHTML": 3, - "c.html": 3, - "replaceWith": 1, - "c.replaceWith": 1, - ".detach": 1, - "this.parentNode": 1, - ".remove": 2, - ".before": 1, - "detach": 1, - "this.remove": 1, - "domManip": 1, - "f.support.checkClone": 2, - "bd.test": 2, - ".domManip": 1, - "g.html": 1, - "g.domManip": 1, - "j.parentNode": 1, - "f.support.parentNode": 1, - "i.nodeType": 1, - "i.childNodes.length": 1, - "f.buildFragment": 2, - "e.fragment": 1, - "h.childNodes.length": 1, - "h.firstChild": 2, - "<m;l++)d.call(c?bh(this[l],g):this[l],e.cacheable||m>": 1, - "k.length": 2, - ".charAt": 1, - "f.fragments": 3, - "i.createDocumentFragment": 1, - "f.clean": 1, - "appendTo": 1, - "prependTo": 1, - "insertBefore": 1, - "insertAfter": 1, - "replaceAll": 1, - "g.childNodes.length": 1, - "this.clone": 1, - ".get": 3, - "d.concat": 1, - "e.selector": 1, - "f.support.noCloneEvent": 1, - "f.support.noCloneChecked": 1, - "b.createElement": 2, - "b.createTextNode": 2, - "k.replace": 2, - "o.innerHTML": 1, - "o.lastChild": 1, - "f.support.tbody": 1, - "ba.test": 1, - "o.firstChild": 2, - "o.firstChild.childNodes": 1, - "o.childNodes": 2, - "q.length": 1, - ".childNodes.length": 1, - ".parentNode.removeChild": 2, - "o.insertBefore": 1, - "Z.exec": 1, - "f.support.appendChecked": 1, - "k.nodeType": 1, - "h.push": 1, - "be.test": 1, - ".type.toLowerCase": 1, - "h.splice.apply": 1, - ".concat": 3, - "cleanData": 1, - "j.nodeName": 1, - "j.nodeName.toLowerCase": 1, - "f.removeEvent": 1, - "b.handle": 2, - "j.removeAttribute": 2, - "bo": 2, - "/alpha": 1, - "bp": 1, - "/opacity": 1, - "bq": 2, - "br": 19, - "ms": 2, - "bs": 2, - "bt": 42, - "bu": 11, - "bv": 2, - "de": 1, - "bw": 2, - "bz": 7, - "bA": 3, - "bB": 5, - "bC": 2, - "f.fn.css": 1, - "f.style": 4, - "cssHooks": 1, - "a.style.opacity": 2, - "cssNumber": 3, - "zIndex": 1, - "fontWeight": 1, - "zoom": 1, - "lineHeight": 1, - "widows": 1, - "orphans": 1, - "cssProps": 1, - "f.support.cssFloat": 1, - "f.cssHooks": 3, - "f.cssProps": 2, - "k.get": 1, - "bu.test": 1, - "d.replace": 1, - "f.cssNumber": 1, - "k.set": 1, - "g.get": 1, - "swap": 1, - "f.curCSS": 1, - "f.swap": 2, - "<0||e==null){e=a.style[b];return>": 1, - "0px": 1, - "f.support.opacity": 1, - "f.cssHooks.opacity": 1, - "bp.test": 1, - "a.currentStyle": 4, - "a.currentStyle.filter": 1, - "a.style.filter": 1, - "RegExp.": 1, - "c.zoom": 1, - "b*100": 1, - "d.filter": 1, - "c.filter": 2, - "bo.test": 1, - "g.replace": 1, - "f.support.reliableMarginRight": 1, - "f.cssHooks.marginRight": 1, - "a.style.marginRight": 1, - "a.ownerDocument.defaultView": 1, - "e.getComputedStyle": 1, - "g.getPropertyValue": 1, - "a.ownerDocument.documentElement": 1, - "c.documentElement.currentStyle": 1, - "a.runtimeStyle": 2, - "bs.test": 1, - "bt.test": 1, - "f.left": 3, - "a.runtimeStyle.left": 2, - "a.currentStyle.left": 1, - "f.pixelLeft": 1, - "f.expr.filters.hidden": 2, - "f.support.reliableHiddenOffsets": 1, - "f.expr.filters.visible": 1, - "bE": 2, - "bF": 1, - "bG": 3, - "n/g": 1, - "bH": 2, - "/#.*": 1, - "bI": 1, - "/mg": 1, - "bJ": 1, - "color": 4, - "date": 1, - "datetime": 1, - "email": 2, - "month": 1, - "range": 2, - "search": 5, - "tel": 2, - "time": 1, - "week": 1, - "bK": 1, - "about": 1, - "app": 2, - "storage": 1, - "extension": 1, - "widget": 1, - "bL": 1, - "GET": 1, - "bM": 2, - "bN": 2, - "bO": 2, - "<\\/script>": 2, - "/gi": 2, - "bP": 1, - "bR": 2, - "*/": 2, - "bS": 1, - "bT": 2, - "f.fn.load": 1, - "bV": 3, - "bW": 5, - "bX": 8, - "e.href": 1, - "bY": 1, - "bW.href": 2, - "bS.exec": 1, - "bW.toLowerCase": 1, - "bT.apply": 1, - "a.slice": 2, - "f.param": 2, - "f.ajaxSettings.traditional": 2, - "complete": 6, - "a.responseText": 1, - "a.isResolved": 1, - "a.done": 1, - "i.html": 1, - "i.each": 1, - "serialize": 1, - "this.serializeArray": 1, - "serializeArray": 1, - "this.elements": 2, - "this.disabled": 1, - "this.checked": 1, - "bP.test": 1, - "bJ.test": 1, - ".map": 1, - "b.name": 2, - "success": 2, - "getScript": 1, - "f.get": 2, - "getJSON": 1, - "ajaxSetup": 1, - "f.ajaxSettings": 4, - "ajaxSettings": 1, - "isLocal": 1, - "bK.test": 1, - "contentType": 4, - "processData": 3, - "accepts": 5, - "xml": 3, - "json": 2, - "/xml/": 1, - "/html/": 1, - "/json/": 1, - "responseFields": 1, - "converters": 2, - "a.String": 1, - "f.parseXML": 1, - "ajaxPrefilter": 1, - "ajaxTransport": 1, - "ajax": 2, - "clearTimeout": 2, - "v.readyState": 1, - "d.ifModified": 1, - "v.getResponseHeader": 2, - "f.lastModified": 1, - "f.etag": 1, - "v.status": 1, - "v.statusText": 1, - "h.resolveWith": 1, - "h.rejectWith": 1, - "v.statusCode": 2, - "g.trigger": 2, - "i.resolveWith": 1, - "f.active": 1, - "f.ajaxSetup": 3, - "d.statusCode": 1, - "readyState": 1, - "setRequestHeader": 6, - "getAllResponseHeaders": 1, - "getResponseHeader": 1, - "bI.exec": 1, - "overrideMimeType": 1, - "d.mimeType": 1, - "abort": 4, - "p.abort": 1, - "h.promise": 1, - "v.success": 1, - "v.done": 1, - "v.error": 1, - "v.fail": 1, - "v.complete": 1, - "i.done": 1, - "<2)for(b>": 1, - "url=": 1, - "dataTypes=": 1, - "crossDomain=": 2, - "exec": 8, - "80": 2, - "443": 2, - "param": 3, - "traditional": 1, - "s=": 12, - "t=": 19, - "toUpperCase": 1, - "hasContent=": 1, - "active": 2, - "ajaxStart": 1, - "hasContent": 2, - "cache=": 1, - "x=": 1, - "y=": 5, - "1_=": 1, - "_=": 1, - "Content": 1, - "Type": 1, - "ifModified": 1, - "lastModified": 3, - "Modified": 1, - "etag": 3, - "None": 1, - "Accept": 1, - "dataTypes": 4, - "q=": 1, - "01": 1, - "beforeSend": 2, - "p=": 5, - "No": 1, - "Transport": 1, - "readyState=": 1, - "ajaxSend": 1, - "v.abort": 1, - "d.timeout": 1, - "p.send": 1, - "encodeURIComponent": 2, - "f.isPlainObject": 1, - "d.join": 1, - "cc": 2, - "cd": 3, - "jsonp": 1, - "jsonpCallback": 1, - "f.ajaxPrefilter": 2, - "b.contentType": 1, - "b.data": 5, - "b.dataTypes": 2, - "b.jsonp": 3, - "cd.test": 2, - "b.url": 4, - "b.jsonpCallback": 4, - "d.always": 1, - "b.converters": 1, - "/javascript": 1, - "ecmascript/": 1, - "a.cache": 2, - "a.crossDomain": 2, - "a.global": 1, - "f.ajaxTransport": 2, - "c.head": 1, - "c.getElementsByTagName": 1, - "send": 2, - "d.async": 1, - "a.scriptCharset": 2, - "d.charset": 1, - "d.src": 1, - "a.url": 1, - "d.onload": 3, - "d.onreadystatechange": 2, - "d.readyState": 2, - "/loaded": 1, - "complete/.test": 1, - "e.removeChild": 1, - "e.insertBefore": 1, - "e.firstChild": 1, - "ce": 6, - "cg": 7, - "cf": 7, - "f.ajaxSettings.xhr": 2, - "this.isLocal": 1, - "cors": 1, - "f.support.ajax": 1, - "c.crossDomain": 3, - "f.support.cors": 1, - "c.xhr": 1, - "c.username": 2, - "h.open": 2, - "c.url": 2, - "c.password": 1, - "c.xhrFields": 3, - "c.mimeType": 2, - "h.overrideMimeType": 2, - "h.setRequestHeader": 1, - "h.send": 1, - "c.hasContent": 1, - "h.readyState": 3, - "h.onreadystatechange": 2, - "h.abort": 1, - "h.status": 1, - "h.getAllResponseHeaders": 1, - "h.responseXML": 1, - "n.documentElement": 1, - "m.xml": 1, - "m.text": 2, - "h.responseText": 1, - "h.statusText": 1, - "c.isLocal": 1, - ".unload": 1, - "cm": 2, - "cn": 1, - "co": 5, - "cp": 1, - "cr": 20, - "a.webkitRequestAnimationFrame": 1, - "a.mozRequestAnimationFrame": 1, - "a.oRequestAnimationFrame": 1, - "this.animate": 2, - "d.style": 3, - ".style": 1, - "<e;d++)this[d].style&&(this[d].style.display=\"none\");return>": 1, - "_toggle": 2, - "animate": 4, - "fadeTo": 1, - "queue=": 2, - "animatedProperties=": 1, - "animatedProperties": 2, - "specialEasing": 2, - "easing": 3, - "swing": 2, - "overflow=": 2, - "overflow": 2, - "overflowX": 1, - "overflowY": 1, - "float": 3, - "display=": 3, - "zoom=": 1, - "fx": 10, - "l=": 10, - "m=": 2, - "custom": 5, - "stop": 7, - "timers": 3, - "slideDown": 1, - "slideUp": 1, - "slideToggle": 1, - "fadeIn": 1, - "fadeOut": 1, - "fadeToggle": 1, - "duration": 4, - "duration=": 2, - "off": 1, - "speeds": 4, - "old=": 1, - "complete=": 1, - "old": 2, - "linear": 1, - "Math": 51, - "cos": 1, - "PI": 54, - "5": 23, - "options=": 1, - "prop=": 3, - "orig=": 1, - "orig": 3, - "step": 7, - "startTime=": 1, - "start=": 1, - "end=": 1, - "unit=": 1, - "unit": 1, - "now=": 1, - "pos=": 1, - "state=": 1, - "co=": 2, - "tick": 3, - "interval": 3, - "show=": 1, - "hide=": 1, - "e.duration": 3, - "this.startTime": 2, - "this.now": 3, - "this.end": 2, - "this.pos": 4, - "this.state": 3, - "this.update": 2, - "e.animatedProperties": 5, - "this.prop": 2, - "e.overflow": 2, - "f.support.shrinkWrapBlocks": 1, - "e.hide": 2, - ".hide": 2, - "e.show": 1, - "e.orig": 1, - "e.complete.call": 1, - "Infinity": 1, - "h/e.duration": 1, - "f.easing": 1, - "this.start": 2, - "*this.pos": 1, - "f.timers": 2, - "a.splice": 1, - "f.fx.stop": 1, - "clearInterval": 6, - "slow": 1, - "fast": 1, - "a.elem": 2, - "a.now": 4, - "a.elem.style": 3, - "a.prop": 5, - "Math.max": 10, - "a.unit": 1, - "f.expr.filters.animated": 1, - "b.elem": 1, - "cw": 1, - "able": 1, - "cx": 2, - "f.fn.offset": 2, - "f.offset.setOffset": 2, - "b.ownerDocument.body": 2, - "f.offset.bodyOffset": 2, - "b.getBoundingClientRect": 1, - "e.documentElement": 4, - "c.top": 4, - "c.left": 4, - "e.body": 3, - "g.clientTop": 1, - "h.clientTop": 1, - "g.clientLeft": 1, - "h.clientLeft": 1, - "i.pageYOffset": 1, - "g.scrollTop": 1, - "h.scrollTop": 2, - "i.pageXOffset": 1, - "g.scrollLeft": 1, - "h.scrollLeft": 2, - "f.offset.initialize": 3, - "b.offsetParent": 2, - "g.documentElement": 1, - "g.body": 1, - "g.defaultView": 1, - "j.getComputedStyle": 2, - "b.currentStyle": 2, - "b.offsetTop": 2, - "b.offsetLeft": 2, - "f.offset.supportsFixedPosition": 2, - "k.position": 4, - "b.scrollTop": 1, - "b.scrollLeft": 1, - "f.offset.doesNotAddBorder": 1, - "f.offset.doesAddBorderForTableAndCells": 1, - "cw.test": 1, - "c.borderTopWidth": 2, - "c.borderLeftWidth": 2, - "f.offset.subtractsBorderForOverflowNotVisible": 1, - "c.overflow": 1, - "i.offsetTop": 1, - "i.offsetLeft": 1, - "i.scrollTop": 1, - "i.scrollLeft": 1, - "f.offset": 1, - "initialize": 3, - "b.style": 1, - "d.nextSibling.firstChild.firstChild": 1, - "this.doesNotAddBorder": 1, - "e.offsetTop": 4, - "this.doesAddBorderForTableAndCells": 1, - "h.offsetTop": 1, - "e.style.position": 2, - "e.style.top": 2, - "this.supportsFixedPosition": 1, - "d.style.overflow": 1, - "d.style.position": 1, - "this.subtractsBorderForOverflowNotVisible": 1, - "this.doesNotIncludeMarginInBodyOffset": 1, - "a.offsetTop": 2, - "bodyOffset": 1, - "a.offsetLeft": 1, - "f.offset.doesNotIncludeMarginInBodyOffset": 1, - "setOffset": 1, - "a.style.position": 1, - "e.offset": 1, - "e.position": 1, - "l.top": 1, - "l.left": 1, - "b.top": 2, - "k.top": 1, - "g.top": 1, - "b.left": 2, - "k.left": 1, - "g.left": 1, - "b.using.call": 1, - "e.css": 1, - "this.offsetParent": 2, - "this.offset": 2, - "cx.test": 2, - "b.offset": 1, - "d.top": 2, - "d.left": 2, - "offsetParent": 1, - "a.offsetParent": 1, - "g.document.documentElement": 1, - "g.document.body": 1, - "g.scrollTo": 1, - ".scrollLeft": 1, - ".scrollTop": 1, - "e.document.documentElement": 1, - "e.document.compatMode": 1, - "e.document.body": 1, - "this.css": 1, - "Prioritize": 1, - "<tag>": 1, - "XSS": 1, - "location.hash": 1, - "#9521": 1, - "Matches": 1, - "dashed": 1, - "camelizing": 1, - "rdashAlpha": 1, - "rmsPrefix": 1, - "fcamelCase": 1, - "letter": 3, - "readyList.fireWith": 1, - ".off": 1, - "jQuery.Callbacks": 2, - "IE8": 2, - "exceptions": 2, - "#9897": 1, - "elems": 9, - "chainable": 4, - "emptyGet": 3, - "bulk": 3, - "elems.length": 1, - "Sets": 3, - "jQuery.access": 2, - "Optionally": 1, - "executed": 1, - "Bulk": 1, - "operations": 1, - "iterate": 1, - "executing": 1, - "exec.call": 1, - "they": 2, - "run": 1, - "against": 1, - "entire": 1, - "fn.call": 2, - "value.call": 1, - "Gets": 2, - "frowned": 1, - "upon.": 1, - "More": 1, - "//docs.jquery.com/Utilities/jQuery.browser": 1, - "ua": 6, - "ua.toLowerCase": 1, - "rwebkit.exec": 1, - "ropera.exec": 1, - "rmsie.exec": 1, - "ua.indexOf": 1, - "rmozilla.exec": 1, - "jQuerySub": 7, - "jQuerySub.fn.init": 2, - "jQuerySub.superclass": 1, - "jQuerySub.fn": 2, - "jQuerySub.prototype": 1, - "jQuerySub.fn.constructor": 1, - "jQuerySub.sub": 1, - "jQuery.fn.init.call": 1, - "rootjQuerySub": 2, - "jQuerySub.fn.init.prototype": 1, - "jQuery.uaMatch": 1, - "browserMatch.browser": 2, - "jQuery.browser.version": 1, - "browserMatch.version": 1, - "jQuery.browser.webkit": 1, - "jQuery.browser.safari": 1, - "flagsCache": 3, - "createFlags": 2, - "flags": 13, - "flags.split": 1, - "flags.length": 1, - "Convert": 1, - "formatted": 2, - "Actual": 2, - "Stack": 1, - "fire": 4, - "calls": 1, - "repeatable": 1, - "lists": 2, - "stack": 2, - "forgettable": 1, - "memory": 8, - "Flag": 2, - "First": 3, - "fireWith": 1, - "firingStart": 3, - "End": 1, - "firingLength": 4, - "Index": 1, - "firingIndex": 5, - "several": 1, - "actual": 1, - "Inspect": 1, - "recursively": 1, - "mode": 1, - "flags.unique": 1, - "self.has": 1, - "list.push": 1, - "Fire": 1, - "flags.memory": 1, - "flags.stopOnFalse": 1, - "Mark": 1, - "halted": 1, - "flags.once": 1, - "stack.length": 1, - "stack.shift": 1, - "self.fireWith": 1, - "self.disable": 1, - "Callbacks": 1, - "collection": 3, - "Do": 2, - "current": 7, - "batch": 2, - "With": 1, - "/a": 1, - ".55": 1, - "basic": 1, - "all.length": 1, - "supports": 2, - "select.appendChild": 1, - "strips": 1, - "leading": 1, - "div.firstChild.nodeType": 1, - "manipulated": 1, - "normalizes": 1, - "around": 1, - "issue.": 1, - "#5145": 1, - "existence": 1, - "styleFloat": 1, - "a.style.cssFloat": 1, - "defaults": 3, - "working": 1, - "property.": 1, - "too": 1, - "marked": 1, - "marks": 1, - "select.disabled": 1, - "support.optDisabled": 1, - "opt.disabled": 1, - "handlers": 1, - "support.noCloneEvent": 1, - "div.cloneNode": 1, - "maintains": 1, - "#11217": 1, - "loses": 1, - "div.lastChild": 1, - "conMarginTop": 3, - "paddingMarginBorder": 5, - "positionTopLeftWidthHeight": 3, - "paddingMarginBorderVisibility": 3, - "container": 4, - "container.style.cssText": 1, - "body.insertBefore": 1, - "body.firstChild": 1, - "Construct": 1, - "container.appendChild": 1, - "cells": 3, - "still": 4, - "offsetWidth/Height": 3, - "visible": 1, - "row": 1, - "reliable": 1, - "offsets": 1, - "safety": 1, - "goggles": 1, - "#4512": 1, - "fails": 2, - "support.reliableHiddenOffsets": 1, - "explicit": 1, - "right": 3, - "incorrectly": 1, - "computed": 1, - "based": 1, - "container.": 1, - "#3333": 1, - "Feb": 1, - "Bug": 1, - "getComputedStyle": 3, - "returns": 1, - "wrong": 1, - "window.getComputedStyle": 6, - "marginDiv.style.width": 1, - "marginDiv.style.marginRight": 1, - "div.style.width": 2, - "support.reliableMarginRight": 1, - "div.style.zoom": 2, - "natively": 1, - "block": 4, - "act": 1, - "setting": 2, - "giving": 1, - "layout": 2, - "div.style.padding": 1, - "div.style.border": 1, - "div.style.overflow": 2, - "div.style.display": 2, - "support.inlineBlockNeedsLayout": 1, - "div.offsetWidth": 2, - "shrink": 1, - "support.shrinkWrapBlocks": 1, - "div.style.cssText": 1, - "outer.firstChild": 1, - "outer.nextSibling.firstChild.firstChild": 1, - "offsetSupport": 2, - "doesNotAddBorder": 1, - "inner.offsetTop": 4, - "doesAddBorderForTableAndCells": 1, - "td.offsetTop": 1, - "inner.style.position": 2, - "inner.style.top": 2, - "safari": 1, - "subtracts": 1, - "here": 1, - "offsetSupport.fixedPosition": 1, - "outer.style.overflow": 1, - "outer.style.position": 1, - "offsetSupport.subtractsBorderForOverflowNotVisible": 1, - "offsetSupport.doesNotIncludeMarginInBodyOffset": 1, - "body.offsetTop": 1, - "div.style.marginTop": 1, - "support.pixelMargin": 1, - ".marginTop": 1, - "container.style.zoom": 2, - "body.removeChild": 1, - "rbrace": 1, - "Please": 1, - "caution": 1, - "Unique": 1, - "page": 1, - "rinlinejQuery": 1, - "jQuery.fn.jquery": 1, - "following": 1, - "uncatchable": 1, - "you": 1, - "attempt": 2, - "them.": 1, - "Ban": 1, - "except": 1, - "Flash": 1, - "jQuery.acceptData": 2, - "privateCache": 1, - "differently": 1, - "because": 1, - "IE6": 1, - "order": 1, - "collisions": 1, - "between": 1, - "user": 1, - "data.": 1, - "thisCache.data": 3, - "Users": 1, - "should": 1, - "inspect": 1, - "undocumented": 1, - "subject": 1, - "change.": 1, - "But": 1, - "anyone": 1, - "listen": 1, - "No.": 1, - "isEvents": 1, - "privateCache.events": 1, - "converted": 2, - "camel": 2, - "names": 2, - "camelCased": 1, - "Reference": 1, - "entry": 1, - "purpose": 1, - "continuing": 1, - "Support": 1, - "space": 1, - "separated": 1, - "jQuery.isArray": 1, - "manipulation": 1, - "cased": 1, - "name.split": 1, - "name.length": 1, - "want": 1, - "let": 1, - "destroyed": 2, - "jQuery.isEmptyObject": 1, - "Don": 1, - "care": 1, - "Ensure": 1, - "#10080": 1, - "cache.setInterval": 1, - "part": 8, - "jQuery._data": 2, - "elem.attributes": 1, - "self.triggerHandler": 2, - "jQuery.isNumeric": 1, - "All": 1, - "lowercase": 1, - "Grab": 1, - "necessary": 1, - "hook": 1, - "nodeHook": 1, - "attrNames": 3, - "isBool": 4, - "rspace": 1, - "attrNames.length": 1, - "#9699": 1, - "explanation": 1, - "approach": 1, - "removal": 1, - "#10870": 1, - "**": 1, - "timeStamp": 1, - "char": 2, - "buttons": 1, - "SHEBANG#!node": 2, - "http.createServer": 1, - "res.writeHead": 1, - "res.end": 1, - ".listen": 1, - "Date.prototype.toJSON": 2, - "isFinite": 1, - "this.valueOf": 2, - "this.getUTCFullYear": 1, - "this.getUTCMonth": 1, - "this.getUTCDate": 1, - "this.getUTCHours": 1, - "this.getUTCMinutes": 1, - "this.getUTCSeconds": 1, - "String.prototype.toJSON": 1, - "Number.prototype.toJSON": 1, - "Boolean.prototype.toJSON": 1, - "u0000": 1, - "u00ad": 1, - "u0600": 1, - "u0604": 1, - "u070f": 1, - "u17b4": 1, - "u17b5": 1, - "u200c": 1, - "u200f": 1, - "u2028": 3, - "u202f": 1, - "u2060": 1, - "u206f": 1, - "ufeff": 1, - "ufff0": 1, - "uffff": 1, - "escapable": 1, - "/bfnrt": 1, - "fA": 2, - "JSON.parse": 1, - "PUT": 1, - "DELETE": 1, - "_id": 1, - "ties": 1, - "collection.": 1, - "_removeReference": 1, - "model.collection": 2, - "model.unbind": 1, - "this._onModelEvent": 1, - "_onModelEvent": 1, - "ev": 5, - "this._remove": 1, - "model.idAttribute": 2, - "this._byId": 2, - "model.previous": 1, - "model.id": 1, - "this.trigger.apply": 2, - "_.each": 1, - "Backbone.Collection.prototype": 1, - "this.models": 1, - "_.toArray": 1, - "Backbone.Router": 1, - "options.routes": 2, - "this.routes": 4, - "this._bindRoutes": 1, - "this.initialize.apply": 2, - "namedParam": 2, - "splatParam": 2, - "escapeRegExp": 2, - "_.extend": 9, - "Backbone.Router.prototype": 1, - "Backbone.Events": 2, - "route": 18, - "Backbone.history": 2, - "Backbone.History": 2, - "_.isRegExp": 1, - "this._routeToRegExp": 1, - "Backbone.history.route": 1, - "_.bind": 2, - "this._extractParameters": 1, - "callback.apply": 1, - "navigate": 2, - "triggerRoute": 4, - "Backbone.history.navigate": 1, - "_bindRoutes": 1, - "routes": 4, - "routes.unshift": 1, - "routes.length": 1, - "this.route": 1, - "_routeToRegExp": 1, - "route.replace": 1, - "_extractParameters": 1, - "route.exec": 1, - "this.handlers": 2, - "_.bindAll": 1, - "hashStrip": 4, - "#*": 1, - "isExplorer": 1, - "/msie": 1, - "historyStarted": 3, - "Backbone.History.prototype": 1, - "getFragment": 1, - "forcePushState": 2, - "this._hasPushState": 6, - "window.location.pathname": 1, - "window.location.search": 1, - "fragment.indexOf": 1, - "this.options.root": 6, - "fragment.substr": 1, - "this.options.root.length": 1, - "window.location.hash": 3, - "fragment.replace": 1, - "this._wantsPushState": 3, - "this.options.pushState": 2, - "window.history": 2, - "window.history.pushState": 2, - "this.getFragment": 6, - "docMode": 3, - "document.documentMode": 3, - "oldIE": 3, - "isExplorer.exec": 1, - "navigator.userAgent.toLowerCase": 1, - "this.iframe": 4, - ".contentWindow": 1, - "this.navigate": 2, - ".bind": 3, - "this.checkUrl": 3, - "setInterval": 6, - "this.interval": 1, - "this.fragment": 13, - "loc": 2, - "atRoot": 3, - "loc.pathname": 1, - "loc.hash": 1, - "loc.hash.replace": 1, - "window.history.replaceState": 1, - "document.title": 2, - "loc.protocol": 2, - "loc.host": 2, - "this.loadUrl": 4, - "this.handlers.unshift": 1, - "checkUrl": 1, - "this.iframe.location.hash": 3, - "decodeURIComponent": 2, - "loadUrl": 1, - "fragmentOverride": 2, - "matched": 2, - "_.any": 1, - "handler.route.test": 1, - "handler.callback": 1, - "frag": 13, - "frag.indexOf": 1, - "this.iframe.document.open": 1, - ".close": 1, - "Backbone.View": 1, - "this.cid": 3, - "_.uniqueId": 1, - "this._configure": 1, - "this._ensureElement": 1, - "this.delegateEvents": 1, - "selectorDelegate": 2, - "this.el": 10, - "eventSplitter": 2, - "viewOptions": 2, - "Backbone.View.prototype": 1, - "tagName": 3, - "render": 1, - "el": 4, - ".attr": 1, - ".html": 1, - "delegateEvents": 1, - "this.events": 1, - "key.match": 1, - "_configure": 1, - "viewOptions.length": 1, - "_ensureElement": 1, - "attrs": 6, - "this.attributes": 1, - "this.id": 2, - "attrs.id": 1, - "this.make": 1, - "this.tagName": 1, - "_.isString": 1, - "protoProps": 6, - "classProps": 2, - "inherits": 2, - "child.extend": 1, - "this.extend": 1, - "Backbone.Model.extend": 1, - "Backbone.Collection.extend": 1, - "Backbone.Router.extend": 1, - "Backbone.View.extend": 1, - "methodMap": 2, - "Backbone.sync": 1, - "params": 2, - "params.url": 2, - "getUrl": 2, - "urlError": 2, - "params.data": 5, - "params.contentType": 2, - "model.toJSON": 1, - "Backbone.emulateJSON": 2, - "params.processData": 1, - "Backbone.emulateHTTP": 1, - "params.data._method": 1, - "params.type": 1, - "params.beforeSend": 1, - "xhr": 1, - "xhr.setRequestHeader": 1, - ".ajax": 1, - "staticProps": 3, - "protoProps.hasOwnProperty": 1, - "protoProps.constructor": 1, - "parent.apply": 1, - "child.prototype.constructor": 1, - "object.url": 4, - "_.isFunction": 1, - "wrapError": 1, - "onError": 3, - "resp": 3, - "model.trigger": 1, - "escapeHTML": 1, - "string.replace": 1, - "#x": 1, - "da": 1, - "</g,>": 1, - "lt": 55, - "#x27": 1, - "#x2F": 1, - "window.Modernizr": 1, - "Modernizr": 12, - "enableClasses": 3, - "docElement": 1, - "mod": 12, - "modElem": 2, - "mStyle": 2, - "modElem.style": 1, - "inputElem": 6, - "smile": 4, - "prefixes": 2, - "omPrefixes": 1, - "cssomPrefixes": 2, - "omPrefixes.split": 1, - "domPrefixes": 3, - "omPrefixes.toLowerCase": 1, - "ns": 1, - "inputs": 3, - "classes": 1, - "classes.slice": 1, - "featureName": 5, - "testing": 1, - "injectElementWithStyles": 9, - "rule": 5, - "testnames": 3, - "fakeBody": 4, - "node.id": 1, - "div.id": 1, - "fakeBody.appendChild": 1, - "//avoid": 1, - "crashing": 1, - "fakeBody.style.background": 1, - "docElement.appendChild": 2, - "fakeBody.parentNode.removeChild": 1, - "div.parentNode.removeChild": 1, - "testMediaQuery": 2, - "mq": 3, - "matchMedia": 3, - "window.matchMedia": 1, - "window.msMatchMedia": 1, - ".matches": 1, - "bool": 30, - "node.currentStyle": 2, - "isEventSupported": 5, - "TAGNAMES": 2, - "element.setAttribute": 3, - "element.removeAttribute": 2, - "_hasOwnProperty": 2, - "hasOwnProperty": 5, - "_hasOwnProperty.call": 2, - "object.constructor.prototype": 1, - "Function.prototype.bind": 2, - "slice.call": 3, - "F.prototype": 1, - "target.prototype": 1, - "target.apply": 2, - "args.concat": 2, - "setCss": 7, - "str": 4, - "mStyle.cssText": 1, - "setCssAll": 2, - "str1": 6, - "str2": 4, - "prefixes.join": 3, - "substr": 2, - "testProps": 3, - "prefixed": 7, - "testDOMProps": 2, - "item": 4, - "item.bind": 1, - "testPropsAll": 17, - "ucProp": 5, - "prop.charAt": 1, - "prop.substr": 1, - "cssomPrefixes.join": 1, - "elem.getContext": 2, - ".getContext": 8, - ".fillText": 1, - "window.WebGLRenderingContext": 1, - "window.DocumentTouch": 1, - "DocumentTouch": 1, - "node.offsetTop": 1, - "window.postMessage": 1, - "window.openDatabase": 1, - "history.pushState": 1, - "mStyle.backgroundColor": 3, - "mStyle.background": 1, - ".style.textShadow": 1, - "mStyle.opacity": 1, - "str3": 2, - "str1.length": 1, - "mStyle.backgroundImage": 1, - "docElement.style": 1, - "node.offsetLeft": 1, - "node.offsetHeight": 2, - "document.styleSheets": 1, - "document.styleSheets.length": 1, - "cssText": 4, - "style.cssRules": 3, - "style.cssText": 1, - "/src/i.test": 1, - "cssText.indexOf": 1, - "rule.split": 1, - "elem.canPlayType": 10, - "Boolean": 2, - "bool.ogg": 2, - "bool.h264": 1, - "bool.webm": 1, - "bool.mp3": 1, - "bool.wav": 1, - "bool.m4a": 1, - "localStorage.setItem": 1, - "localStorage.removeItem": 1, - "sessionStorage.setItem": 1, - "sessionStorage.removeItem": 1, - "window.Worker": 1, - "window.applicationCache": 1, - "document.createElementNS": 6, - "ns.svg": 4, - ".createSVGRect": 1, - "div.firstChild.namespaceURI": 1, - "/SVGAnimate/.test": 1, - "toString.call": 2, - "/SVGClipPath/.test": 1, - "webforms": 2, - "props.length": 2, - "attrs.list": 2, - "window.HTMLDataListElement": 1, - "inputElemType": 5, - "defaultView": 2, - "inputElem.setAttribute": 1, - "inputElem.type": 1, - "inputElem.value": 2, - "inputElem.style.cssText": 1, - "inputElem.style.WebkitAppearance": 1, - "document.defaultView": 1, - "defaultView.getComputedStyle": 2, - ".WebkitAppearance": 1, - "inputElem.offsetHeight": 1, - "docElement.removeChild": 1, - "inputElem.checkValidity": 2, - "feature": 12, - "feature.toLowerCase": 2, - "classes.push": 1, - "Modernizr.input": 1, - "Modernizr.addTest": 2, - "docElement.className": 2, - "chaining.": 1, - "window.html5": 2, - "reSkip": 1, - "saveClones": 1, - "fieldset": 1, - "h1": 5, - "h2": 5, - "h3": 3, - "h4": 3, - "h5": 1, - "h6": 1, - "img": 1, - "label": 2, - "li": 19, - "ol": 1, - "span": 1, - "strong": 1, - "tfoot": 1, - "th": 1, - "ul": 1, - "supportsHtml5Styles": 5, - "supportsUnknownElements": 3, - "//if": 2, - "implemented": 1, - "assume": 1, - "Styles": 1, - "Chrome": 2, - "additional": 1, - "solve": 1, - "node.hidden": 1, - ".display": 1, - "a.childNodes.length": 1, - "frag.cloneNode": 1, - "frag.createDocumentFragment": 1, - "frag.createElement": 2, - "addStyleSheet": 2, - "ownerDocument.createElement": 3, - "ownerDocument.getElementsByTagName": 1, - "ownerDocument.documentElement": 1, - "p.innerHTML": 1, - "parent.insertBefore": 1, - "p.lastChild": 1, - "parent.firstChild": 1, - "getElements": 2, - "html5.elements": 1, - "elements.split": 1, - "shivMethods": 2, - "docCreateElement": 5, - "docCreateFragment": 2, - "ownerDocument.createDocumentFragment": 2, - "//abort": 1, - "shiv": 1, - "html5.shivMethods": 1, - "saveClones.test": 1, - "node.canHaveChildren": 1, - "reSkip.test": 1, - "frag.appendChild": 1, - "html5": 3, - "shivDocument": 3, - "shived": 5, - "ownerDocument.documentShived": 2, - "html5.shivCSS": 1, - "options.elements": 1, - "options.shivCSS": 1, - "options.shivMethods": 1, - "Modernizr._version": 1, - "Modernizr._prefixes": 1, - "Modernizr._domPrefixes": 1, - "Modernizr._cssomPrefixes": 1, - "Modernizr.mq": 1, - "Modernizr.hasEvent": 1, - "Modernizr.testProp": 1, - "Modernizr.testAllProps": 1, - "Modernizr.testStyles": 1, - "Modernizr.prefixed": 1, - "docElement.className.replace": 1, - "js": 1, - "classes.join": 1, - "this.document": 1, - "PEG.parser": 1, - "quote": 3, - "result0": 264, - "result1": 81, - "result2": 77, - "parse_singleQuotedCharacter": 3, - "result1.push": 3, - "input.charCodeAt": 18, - "pos": 197, - "reportFailures": 64, - "matchFailed": 40, - "pos1": 63, - "chars": 1, - "chars.join": 1, - "pos0": 51, - "parse_simpleSingleQuotedCharacter": 2, - "parse_simpleEscapeSequence": 3, - "parse_zeroEscapeSequence": 3, - "parse_hexEscapeSequence": 3, - "parse_unicodeEscapeSequence": 3, - "parse_eolEscapeSequence": 3, - "pos2": 22, - "parse_eolChar": 6, - "input.length": 9, - "input.charAt": 21, - "char_": 9, - "parse_class": 1, - "result3": 35, - "result4": 12, - "result5": 4, - "parse_classCharacterRange": 3, - "parse_classCharacter": 5, - "result2.push": 1, - "parse___": 2, - "inverted": 4, - "partsConverted": 2, - "part.data": 1, - "rawText": 5, - "part.rawText": 1, - "ignoreCase": 1, - "begin": 1, - "begin.data.charCodeAt": 1, - "end.data.charCodeAt": 1, - "this.SyntaxError": 2, - "begin.rawText": 2, - "end.rawText": 2, - "begin.data": 1, - "end.data": 1, - "parse_bracketDelimitedCharacter": 2, - "quoteForRegexpClass": 1, - "parse_simpleBracketDelimitedCharacter": 2, - "parse_digit": 3, - "recognize": 1, - "input.substr": 9, - "parse_hexDigit": 7, - "String.fromCharCode": 4, - "parse_eol": 4, - "eol": 2, - "parse_letter": 1, - "parse_lowerCaseLetter": 2, - "parse_upperCaseLetter": 2, - "parse_whitespace": 3, - "parse_comment": 3, - "result0.push": 1, - "parse_singleLineComment": 2, - "parse_multiLineComment": 2, - "u2029": 2, - "x0B": 1, - "uFEFF": 1, - "u1680": 1, - "u180E": 1, - "u2000": 1, - "u200A": 1, - "u202F": 1, - "u205F": 1, - "u3000": 1, - "cleanupExpected": 2, - "expected": 12, - "expected.sort": 1, - "lastExpected": 3, - "cleanExpected": 2, - "expected.length": 4, - "cleanExpected.push": 1, - "computeErrorPosition": 2, - "line": 14, - "column": 8, - "seenCR": 5, - "rightmostFailuresPos": 2, - "parseFunctions": 1, - "startRule": 1, - "errorPosition": 1, - "rightmostFailuresExpected": 1, - "errorPosition.line": 1, - "errorPosition.column": 1, - "toSource": 1, - "this._source": 1, - "result.SyntaxError": 1, - "buildMessage": 2, - "expectedHumanized": 5, - "foundHumanized": 3, - "expected.slice": 1, - "this.expected": 1, - "this.found": 1, - "this.message": 3, - "this.line": 3, - "this.column": 1, - "result.SyntaxError.prototype": 1, - "Error.prototype": 1, - "steelseries": 10, - "n.charAt": 1, - "n.substring": 1, - "i.substring": 3, - "this.color": 1, - "ui": 31, - "/255": 1, - "t.getRed": 4, - "t.getGreen": 4, - "t.getBlue": 4, - "t.getAlpha": 4, - "i.getRed": 1, - "i.getGreen": 1, - "i.getBlue": 1, - "i.getAlpha": 1, - "*f": 2, - "w/r": 1, - "p/r": 1, - "s/r": 1, - "o/r": 1, - "e*u": 1, - ".toFixed": 3, - "l*u": 1, - "c*u": 1, - "h*u": 1, - "vr": 20, - "Math.floor": 26, - "Math.log10": 1, - "n/Math.pow": 1, - "<r?10:5:2:1,i*Math.pow(10,u)}function>": 1, - "beginPath": 12, - "moveTo": 10, - "lineTo": 22, - "quadraticCurveTo": 4, - "closePath": 8, - "stroke": 7, - "canvas": 22, - "width=": 17, - "height=": 17, - "ii": 29, - "getContext": 26, - "2d": 26, - "ft": 70, - "fillStyle=": 13, - "rect": 3, - "fill": 10, - "getImageData": 1, - "wt": 26, - "32": 1, - "62": 1, - "84": 1, - "94": 1, - "ar": 20, - "255": 3, - "max": 1, - "min": 2, - ".5": 7, - "u/": 3, - "/u": 3, - "f/": 1, - "vt": 50, - "n*6": 2, - "i*": 3, - "h*t": 1, - "*t": 3, - "f*255": 1, - "u*255": 1, - "r*255": 1, - "st": 59, - "n/255": 1, - "t/255": 1, - "i/255": 1, - "f/r": 1, - "/f": 3, - "<0?0:n>": 1, - "si": 23, - "ti": 39, - "Math.round": 7, - "/r": 1, - "u*r": 1, - "ni": 30, - "tt": 53, - "ei": 26, - "ot": 43, - "i.gaugeType": 6, - "steelseries.GaugeType.TYPE4": 2, - "i.size": 6, - "i.minValue": 10, - "i.maxValue": 10, - "i.niceScale": 10, - "i.threshold": 10, - "/2": 25, - "i.section": 8, - "i.area": 4, - "lu": 10, - "i.titleString": 10, - "au": 10, - "i.unitString": 10, - "hu": 11, - "i.frameDesign": 10, - "steelseries.FrameDesign.METAL": 7, - "wu": 9, - "i.frameVisible": 10, - "i.backgroundColor": 10, - "steelseries.BackgroundColor.DARK_GRAY": 7, - "i.backgroundVisible": 10, - "pt": 48, - "i.pointerType": 4, - "steelseries.PointerType.TYPE1": 3, - "i.pointerColor": 4, - "steelseries.ColorDef.RED": 7, - "ee": 2, - "i.knobType": 4, - "steelseries.KnobType.STANDARD_KNOB": 14, - "fi": 26, - "i.knobStyle": 4, - "steelseries.KnobStyle.SILVER": 4, - "i.lcdColor": 8, - "steelseries.LcdColor.STANDARD": 9, - "i.lcdVisible": 8, - "eu": 13, - "i.lcdDecimals": 8, - "ye": 2, - "i.digitalFont": 8, - "pe": 2, - "i.fractionalScaleDecimals": 4, - "i.ledColor": 10, - "steelseries.LedColor.RED_LED": 7, - "ru": 14, - "i.ledVisible": 10, - "vf": 5, - "i.thresholdVisible": 8, - "kr": 17, - "i.minMeasuredValueVisible": 8, - "dr": 16, - "i.maxMeasuredValueVisible": 8, - "i.foregroundType": 6, - "steelseries.ForegroundType.TYPE1": 5, - "af": 5, - "i.foregroundVisible": 10, - "oe": 2, - "i.labelNumberFormat": 10, - "steelseries.LabelNumberFormat.STANDARD": 5, - "yr": 17, - "i.playAlarm": 10, - "uf": 5, - "i.alarmSound": 10, - "fe": 2, - "i.customLayer": 4, - "le": 1, - "i.tickLabelOrientation": 4, - "steelseries.GaugeType.TYPE1": 4, - "steelseries.TickLabelOrientation.TANGENT": 2, - "steelseries.TickLabelOrientation.NORMAL": 2, - "wr": 18, - "i.trendVisible": 4, - "hr": 17, - "i.trendColors": 4, - "steelseries.LedColor.GREEN_LED": 2, - "steelseries.LedColor.CYAN_LED": 2, - "sr": 21, - "i.useOdometer": 2, - "i.odometerParams": 2, - "wf": 4, - "i.odometerUseValue": 2, - "ki": 21, - "r.createElement": 11, - "ki.setAttribute": 2, - "yf": 3, - "ri": 24, - "ht": 34, - "ef": 5, - "steelseries.TrendState.OFF": 4, - "lr": 19, - "f*.06": 1, - "f*.29": 19, - "er": 19, - "f*.36": 4, - "et": 45, - "gi": 26, - "rr": 21, - "*lt": 9, - "r.getElementById": 7, - "u.save": 7, - "u.clearRect": 5, - "u.canvas.width": 7, - "u.canvas.height": 7, - "s/2": 2, - "k/2": 1, - "pf": 4, - ".6*s": 1, - "ne": 2, - ".4*k": 1, - "pr": 16, - "s/10": 1, - "ae": 2, - "hf": 4, - "k*.13": 2, - "s*.4": 1, - "sf": 5, - "rf": 5, - "k*.57": 1, - "tf": 5, - "k*.61": 1, - "Math.PI/2": 40, - "ue": 1, - "Math.PI/180": 5, - "ff": 5, - "ir": 23, - "nr": 22, - "ai": 21, - "yt": 32, - "fr": 21, - "oi": 23, - "lf": 5, - "re": 2, - "ai/": 2, - "h/vt": 1, - "*vt": 4, - "Math.ceil": 63, - "b/vt": 1, - "vt/": 3, - "ot.type": 10, - "Math.PI": 13, - "at/yt": 4, - "*Math.PI": 10, - "*ue": 1, - "ci/2": 1, - "wi": 24, - "nf": 7, - "wi.getContext": 2, - "di": 22, - "ut": 59, - "di.getContext": 2, - "fu": 13, - "hi": 15, - "f*.093457": 10, - "uu": 13, - "hi.getContext": 6, - "gt": 32, - "nu": 11, - "gt.getContext": 3, - "iu": 14, - "f*.028037": 6, - "se": 1, - "iu.getContext": 1, - "gr": 12, - "he": 1, - "gr.getContext": 1, - "vi": 16, - "tu": 13, - "vi.getContext": 2, - "yi": 17, - "ou": 13, - "yi.getContext": 2, - "pi": 24, - "kt": 24, - "pi.getContext": 2, - "pu": 9, - "li.getContext": 6, - "gu": 9, - "du": 10, - "ku": 9, - "yu": 10, - "su": 12, - "tr.getContext": 1, - "kf": 3, - "u.textAlign": 2, - "u.strokeStyle": 2, - "ei.textColor": 2, - "u.fillStyle": 2, - "steelseries.LcdColor.STANDARD_GREEN": 4, - "u.shadowColor": 2, - "u.shadowOffsetX": 2, - "s*.007": 3, - "u.shadowOffsetY": 2, - "u.shadowBlur": 2, - "u.font": 2, - "u.fillText": 2, - "n.toFixed": 2, - "bi*.05": 1, - "hf*.5": 1, - "pr*.38": 1, - "bi*.9": 1, - "u.restore": 6, - "te": 2, - "n.save": 35, - "n.drawImage": 14, - "k*.037383": 11, - "s*.523364": 2, - "k*.130841": 1, - "s*.130841": 1, - "k*.514018": 2, - "s*.831775": 1, - "k*.831775": 1, - "s*.336448": 1, - "k*.803738": 2, - "s*.626168": 1, - "n.restore": 35, - "ie": 2, - "t.width": 2, - "f*.046728": 1, - "t.height": 2, - "t.width*.9": 4, - "t.getContext": 2, - "n.createLinearGradient": 17, - ".1": 18, - "t.height*.9": 6, - "i.addColorStop": 27, - ".3": 8, - ".59": 4, - "n.fillStyle": 36, - "n.beginPath": 39, - "n.moveTo": 37, - "t.width*.5": 4, - "n.lineTo": 33, - "t.width*.1": 2, - "n.closePath": 34, - "n.fill": 17, - "n.strokeStyle": 27, - "n.stroke": 31, - "vu": 10, - "<h?t=h:t>": 1, - "<h?i=h:i>": 1, - "n.lineWidth": 30, - "s*.035": 2, - "at/yt*t": 1, - "at/yt*h": 1, - "yt/at": 1, - "n.translate": 93, - "n.rotate": 53, - "n.arc": 6, - "s*.365": 2, - "n.lineWidth/2": 2, - "df": 3, - "bt.labelColor.setAlpha": 1, - "n.textAlign": 12, - "n.textBaseline": 10, - "s*.04": 1, - "n.font": 34, - "bt.labelColor.getRgbaColor": 2, - "lt*fr": 1, - "s*.38": 2, - "s*.35": 1, - "s*.355": 1, - "s*.36": 1, - "s*.3": 1, - "s*.1": 1, - "oi/2": 2, - "b.toFixed": 1, - "c.toFixed": 2, - "le.type": 1, - "t.format": 7, - "n.fillText": 54, - "e.toFixed": 2, - "e.toPrecision": 1, - "n.frame": 22, - "n.background": 22, - "n.led": 20, - "n.pointer": 10, - "n.foreground": 22, - "n.trend": 4, - "n.odo": 2, - "rt": 45, - "uu.drawImage": 1, - "nu.drawImage": 3, - "se.drawImage": 1, - "steelseries.ColorDef.BLUE.dark.getRgbaColor": 6, - "he.drawImage": 1, - "steelseries.ColorDef.RED.medium.getRgbaColor": 6, - "ii.length": 2, - ".start": 12, - ".stop": 11, - ".color": 13, - "ui.length": 2, - "ut.save": 1, - "ut.translate": 3, - "ut.rotate": 1, - "ut.drawImage": 2, - "s*.475": 1, - "ut.restore": 1, - "steelseries.Odometer": 1, - "_context": 1, - "f*.075": 1, - "decimals": 1, - "wt.decimals": 1, - "wt.digits": 2, - "valueForeColor": 1, - "wt.valueForeColor": 1, - "valueBackColor": 1, - "wt.valueBackColor": 1, - "decimalForeColor": 1, - "wt.decimalForeColor": 1, - "decimalBackColor": 1, - "wt.decimalBackColor": 1, - "font": 1, - "wt.font": 1, - "tr.width": 1, - "nt": 75, - "bt.labelColor": 2, - "pt.type": 6, - "steelseries.TrendState.UP": 2, - "steelseries.TrendState.STEADY": 2, - "steelseries.TrendState.DOWN": 2, - "dt": 30, - "wi.width": 1, - "wi.height": 1, - "di.width": 1, - "di.height": 1, - "hi.width": 3, - "hi.height": 3, - "gt.width": 2, - "gt.height": 1, - "vi.width": 1, - "vi.height": 1, - "yi.width": 1, - "yi.height": 1, - "pi.width": 1, - "pi.height": 1, - "li.width": 3, - "li.height": 3, - "gf": 2, - "yf.repaint": 1, - "ur": 20, - "e3": 5, - "this.setValue": 7, - "<h?h:n>": 5, - "ki.pause": 1, - "ki.play": 1, - "this.repaint": 126, - "this.getValue": 7, - "this.setOdoValue": 1, - "this.getOdoValue": 1, - "this.setValueAnimated": 7, - "t.playing": 1, - "t.stop": 1, - "Tween": 11, - "Tween.regularEaseInOut": 6, - "t.onMotionChanged": 1, - "n.target._pos": 7, - "<ti&&(ht=!1,ur(ht)):(ht=!0,ur(ht)),l>": 1, - "i.repaint": 1, - "t.start": 1, - "this.resetMinMeasuredValue": 4, - "this.resetMaxMeasuredValue": 4, - "this.setMinMeasuredValueVisible": 4, - "this.setMaxMeasuredValueVisible": 4, - "this.setMaxMeasuredValue": 3, - "this.setMinMeasuredValue": 3, - "this.setTitleString": 4, - "this.setUnitString": 4, - "this.setMinValue": 4, - "this.getMinValue": 3, - "this.setMaxValue": 3, - "this.getMaxValue": 4, - "this.setThreshold": 4, - "this.setArea": 1, - "foreground": 30, - "this.setSection": 4, - "this.setThresholdVisible": 4, - "this.setLcdDecimals": 3, - "this.setFrameDesign": 7, - "this.setBackgroundColor": 7, - "pointer": 28, - "this.setForegroundType": 5, - "this.setPointerType": 3, - "this.setPointerColor": 4, - "this.setLedColor": 5, - "led": 18, - "this.setLcdColor": 5, - "this.setTrend": 2, - "this.setTrendVisible": 2, - "trend": 2, - "odo": 1, - "u.drawImage": 22, - "cu.setValue": 1, - "of.state": 1, - "u.translate": 8, - "u.rotate": 4, - "u.canvas.width*.4865": 2, - "u.canvas.height*.105": 2, - "s*.006": 1, - "kt.clearRect": 1, - "kt.save": 1, - "kt.translate": 2, - "kt.rotate": 1, - "kt.drawImage": 1, - "kt.restore": 1, - "i.useSectionColors": 4, - "i.valueColor": 6, - "i.valueGradient": 4, - "i.useValueGradient": 4, - "yi.setAttribute": 2, - "e/2": 2, - "ut/2": 4, - "e/10": 3, - "ut*.13": 1, - "e*.4": 1, - "or/2": 1, - "e*.116822": 3, - "e*.485981": 3, - "s*.093457": 5, - "e*.53": 1, - "ut*.61": 1, - "s*.06": 1, - "s*.57": 1, - "dt.type": 4, - "l/Math.PI*180": 4, - "l/et": 8, - "Math.PI/3": 1, - "ft/2": 2, - "Math.PI/": 1, - "ai.getContext": 2, - "s*.060747": 2, - "s*.023364": 2, - "ri.getContext": 6, - "yt.getContext": 5, - "si.getContext": 4, - "ci/": 2, - "f/ht": 1, - "*ht": 8, - "h/ht": 1, - "ht/": 2, - "*kt": 5, - "angle": 1, - "*st": 1, - "n.value": 4, - "tu.drawImage": 1, - "gr.drawImage": 3, - "at.getImageData": 1, - "at.drawImage": 1, - "bt.length": 4, - "ii.push": 1, - "Math.abs": 19, - "ai.width": 1, - "ai.height": 1, - "ri.width": 3, - "ri.height": 3, - "yt.width": 2, - "yt.height": 2, - "si.width": 2, - "si.height": 2, - "s*.085": 1, - "e*.35514": 2, - ".107476*ut": 1, - ".897195*ut": 1, - "t.addColorStop": 6, - ".22": 1, - ".76": 1, - "s*.075": 1, - ".112149*ut": 1, - ".892523*ut": 1, - "r.addColorStop": 6, - "e*.060747": 2, - "e*.023364": 2, - "n.createRadialGradient": 4, - ".030373*e": 1, - "u.addColorStop": 14, - "i*kt": 1, - "n.rect": 4, - "n.canvas.width": 3, - "n.canvas.height": 3, - "n.canvas.width/2": 6, - "n.canvas.height/2": 4, - "u.createRadialGradient": 1, - "t.light.getRgbaColor": 2, - "t.dark.getRgbaColor": 2, - "ni.textColor": 2, - "e*.007": 5, - "oi*.05": 1, - "or*.5": 1, - "cr*.38": 1, - "oi*.9": 1, - "ei.labelColor.setAlpha": 1, - "e*.04": 1, - "ei.labelColor.getRgbaColor": 2, - "st*di": 1, - "e*.28": 1, - "e*.1": 1, - "e*.0375": 1, - "h.toFixed": 3, - "df.type": 1, - "u.toFixed": 2, - "u.toPrecision": 1, - "kf.repaint": 1, - "<f?f:n>": 3, - "yi.pause": 1, - "yi.play": 1, - "ti.playing": 1, - "ti.stop": 1, - "ti.onMotionChanged": 1, - "t.repaint": 4, - "ti.start": 1, - "this.setValueColor": 3, - "this.setSectionActive": 2, - "this.setGradient": 2, - "this.setGradientActive": 2, - "useGradient": 2, - "n/lt*": 1, - "vi.getEnd": 1, - "vi.getStart": 1, - "s/c": 1, - "vi.getColorAt": 1, - ".getRgbaColor": 3, - "<ii.length;t++)if(n>": 1, - "e.medium.getHexColor": 1, - "i.medium.getHexColor": 1, - "n*kt": 1, - "pu.state": 1, - "i.orientation": 2, - "steelseries.Orientation.NORTH": 2, - "hi.setAttribute": 2, - "steelseries.GaugeType.TYPE5": 1, - "kt/at": 2, - "f.clearRect": 2, - "f.canvas.width": 3, - "f.canvas.height": 3, - "h/2": 1, - "k*.733644": 1, - ".455*h": 1, - ".51*k": 1, - "bi/": 2, - "l/ot": 1, - "*ot": 2, - "d/ot": 1, - "ot/": 1, - "ui.getContext": 4, - "u*.093457": 10, - "ii.getContext": 5, - "st.getContext": 2, - "u*.028037": 6, - "hr.getContext": 1, - "er.getContext": 1, - "fi.getContext": 4, - "kr.type": 1, - "ft.type": 1, - "h*.44": 3, - "k*.8": 1, - "k*.16": 1, - "h*.2": 2, - "k*.446666": 2, - "h*.8": 1, - "u*.046728": 1, - "h*.035": 1, - "kt/at*t": 1, - "kt/at*l": 1, - "at/kt": 1, - "h*.365": 2, - "it.labelColor.getRgbaColor": 4, - "vertical": 1, - ".046728*h": 1, - "n.measureText": 2, - ".width": 2, - "k*.4": 1, - "h*.3": 1, - "k*.47": 1, - "it.labelColor.setAlpha": 1, - "steelseries.Orientation.WEST": 6, - "h*.04": 1, - "ht*yi": 1, - "h*.41": 1, - "h*.415": 1, - "h*.42": 1, - "h*.48": 1, - "h*.0375": 1, - "d.toFixed": 1, - "f.toFixed": 1, - "i.toFixed": 2, - "i.toPrecision": 1, - "u/2": 5, - "cr.drawImage": 3, - "ar.drawImage": 1, - "or.drawImage": 1, - "or.restore": 1, - "rr.drawImage": 1, - "rr.restore": 1, - "gt.length": 2, - "p.save": 2, - "p.translate": 8, - "p.rotate": 4, - "p.restore": 3, - "ni.length": 2, - "p.drawImage": 1, - "h*.475": 1, - "k*.32": 1, - "h*1.17": 2, - "it.labelColor": 2, - "ut.type": 6, - "ui.width": 2, - "ui.height": 2, - "ii.width": 2, - "ii.height": 2, - "st.width": 1, - "st.height": 1, - "fi.width": 2, - "fi.height": 2, - "wu.repaint": 1, - "<l?l:n>": 2, - "hi.pause": 1, - "hi.play": 1, - "dt.playing": 2, - "dt.stop": 2, - "dt.onMotionChanged": 2, - "<pt&&(tt=!1,vi(tt)):(tt=!0,vi(tt)),b>": 1, - "dt.start": 2, - "f.save": 5, - "f.drawImage": 9, - "f.translate": 10, - "f.rotate": 5, - "f.canvas.width*.4865": 2, - "f.canvas.height*.27": 2, - "f.restore": 5, - "h*.006": 1, - "h*1.17/2": 1, - "et.clearRect": 1, - "et.save": 1, - "et.translate": 2, - "et.rotate": 1, - "et.drawImage": 1, - "et.restore": 1, - "i.width": 6, - "i.height": 6, - "fi.setAttribute": 2, - "l.type": 26, - "y.clearRect": 2, - "y.canvas.width": 3, - "y.canvas.height": 3, - "*.05": 4, - "f/2": 13, - "it/2": 2, - ".053": 1, - ".038": 1, - "*u": 1, - "u/22": 2, - ".89*f": 2, - "u/10": 2, - "ei/": 1, - "e/ut": 1, - "*ut": 2, - "s/ut": 1, - "ut/": 1, - "kt.getContext": 2, - "rt.getContext": 2, - "dt.getContext": 1, - "ni.getContext": 4, - "lt.textColor": 2, - "n.shadowColor": 2, - "n.shadowOffsetX": 4, - "u*.003": 2, - "n.shadowOffsetY": 4, - "n.shadowBlur": 4, - "u*.004": 1, - "u*.007": 2, - "u*.009": 1, - "f*.571428": 8, - "u*.88": 2, - "u*.055": 2, - "f*.7": 2, - "f*.695": 4, - "f*.18": 4, - "u*.22": 3, - "u*.15": 2, - "t.toFixed": 2, - "i.getContext": 2, - "t.save": 2, - "t.createLinearGradient": 2, - "i.height*.9": 6, - "t.fillStyle": 2, - "t.beginPath": 4, - "t.moveTo": 4, - "i.height*.5": 2, - "t.lineTo": 8, - "i.width*.9": 6, - "t.closePath": 4, - "i.width*.5": 2, - "t.fill": 2, - "t.strokeStyle": 2, - "t.stroke": 2, - "t.restore": 2, - "w.labelColor.setAlpha": 1, - "f*.1": 5, - "w.labelColor.getRgbaColor": 2, - ".34*f": 2, - ".36*f": 6, - ".33*f": 2, - ".32*f": 2, - "u*.12864": 3, - "u*.856796": 1, - "u*.7475": 1, - "c/": 2, - ".65*u": 1, - ".63*u": 3, - ".66*u": 1, - ".67*u": 1, - "f*.142857": 4, - "f*.871012": 2, - "f*.19857": 1, - "f*.82": 1, - "v/": 1, - "tickCounter": 4, - "currentPos": 20, - "tickCounter*a": 2, - "r.toFixed": 8, - "f*.28": 6, - "r.toPrecision": 4, - "u*.73": 3, - "ui/2": 1, - "vi.drawImage": 2, - "yi.drawImage": 2, - "hr.drawImage": 2, - "k.save": 1, - ".856796": 2, - ".7475": 2, - ".12864": 2, - "u*i": 1, - "u*r*": 1, - "bt/": 1, - "k.translate": 2, - "f*.365": 2, - "nt/2": 2, - ".871012": 3, - ".82": 2, - ".142857": 5, - ".19857": 6, - "f*r*bt/": 1, - "f*": 5, - "u*.58": 1, - "k.drawImage": 3, - "k.restore": 1, - "kt.width": 1, - "b*.093457": 2, - "kt.height": 1, - "d*.093457": 2, - "rt.width": 1, - "rt.height": 1, - "ni.width": 2, - "ni.height": 2, - "hu.repaint": 1, - "w.labelColor": 1, - "i*.12864": 2, - "i*.856796": 2, - "i*.7475": 1, - "t*.871012": 1, - "t*.142857": 8, - "t*.82": 1, - "t*.19857": 1, - "steelseries.BackgroundColor.CARBON": 2, - "steelseries.BackgroundColor.PUNCHED_SHEET": 2, - "steelseries.BackgroundColor.STAINLESS": 2, - "steelseries.BackgroundColor.BRUSHED_STAINLESS": 2, - "steelseries.BackgroundColor.TURNED": 2, - "r.setAlpha": 8, - ".05": 2, - "p.addColorStop": 4, - "r.getRgbaColor": 8, - ".15": 2, - ".48": 7, - ".49": 4, - "n.fillRect": 16, - "t*.435714": 4, - "i*.435714": 4, - "i*.142857": 1, - "b.addColorStop": 4, - ".69": 1, - ".7": 1, - ".4": 2, - "t*.007142": 4, - "t*.571428": 2, - "i*.007142": 4, - "i*.571428": 2, - "t*.45": 4, - "t*.114285": 1, - "t/2": 1, - "i*.0486/2": 1, - "i*.053": 1, - "i*.45": 4, - "i*.114285": 1, - "i/2": 1, - "t*.025": 1, - "t*.053": 1, - "ut.addColorStop": 2, - "wt.medium.getRgbaColor": 3, - "wt.light.getRgbaColor": 2, - "i*.05": 2, - "t*.05": 2, - "ot.addColorStop": 2, - ".98": 1, - "Math.PI*.5": 2, - "f*.05": 2, - ".049*t": 8, - ".825*t": 9, - "n.bezierCurveTo": 42, - ".7975*t": 2, - ".0264*t": 4, - ".775*t": 3, - ".0013*t": 12, - ".85*t": 2, - ".8725*t": 3, - ".0365*t": 9, - ".8075*t": 4, - ".7925*t": 3, - ".0214*t": 13, - ".7875*t": 4, - ".7825*t": 5, - ".0189*t": 4, - ".785*t": 1, - ".8175*t": 2, - ".815*t": 1, - ".8125*t": 2, - ".8*t": 2, - ".0377*t": 2, - ".86*t": 4, - ".0415*t": 2, - ".845*t": 1, - ".0465*t": 2, - ".805*t": 2, - ".0113*t": 10, - ".0163*t": 7, - ".8025*t": 1, - ".8225*t": 3, - ".8425*t": 1, - ".03*t": 2, - ".115*t": 5, - ".1075*t": 2, - ".1025*t": 8, - ".0038*t": 2, - ".76*t": 4, - ".7675*t": 2, - ".7725*t": 6, - ".34": 1, - ".0516*t": 7, - ".8525*t": 2, - ".0289*t": 8, - ".875*t": 3, - ".044*t": 1, - ".0314*t": 5, - ".12*t": 4, - ".0875*t": 3, - ".79*t": 1, - "<e?e:n>": 5, - "fi.pause": 1, - "fi.play": 1, - "yt.playing": 1, - "yt.stop": 1, - "yt.onMotionChanged": 1, - "t.setValue": 1, - "yt.start": 1, - "mminMeasuredValue": 1, - "<e&&(v=e),g({background:!0}),this.repaint()},this.getMinValue=function(){return>": 1, - "setMaxValue=": 1, - "y.drawImage": 6, - "u*n": 2, - "u*i*": 2, - "at/": 1, - "f*.34": 3, - "gt.height/2": 2, - "f*i*at/": 1, - "u*.65": 2, - "ft/": 1, - "dt.width": 1, - "dt.height/2": 2, - ".8": 1, - ".14857": 1, - "f*i*ft/": 1, - "y.save": 1, - "y.restore": 1, - "oi.setAttribute": 2, - "v.clearRect": 2, - "v.canvas.width": 4, - "v.canvas.height": 4, - ".053*e": 1, - "e/22": 2, - "e/1.95": 1, - "u/vt": 1, - "s/vt": 1, - "g.width": 4, - "f*.121428": 2, - "g.height": 4, - "e*.012135": 2, - "f*.012135": 2, - "e*.121428": 2, - "g.getContext": 2, - "d.width": 4, - "d.height": 4, - "d.getContext": 2, - "pt.getContext": 2, - "ci.getContext": 1, - "kt.textColor": 2, - "f*.007": 2, - "f*.009": 1, - "e*.009": 1, - "e*.88": 2, - "e*.055": 2, - "e*.22": 3, - "e*.15": 2, - "k.labelColor.setAlpha": 1, - "k.labelColor.getRgbaColor": 5, - "e*.12864": 3, - "e*.856796": 3, - ".65*e": 1, - ".63*e": 3, - ".66*e": 1, - ".67*e": 1, - "g/": 1, - "tickCounter*h": 2, - "e*.73": 3, - "ti/2": 1, - "n.bargraphled": 4, - "nr.drawImage": 2, - "tr.drawImage": 2, - "nt.save": 1, - "e*.728155*": 1, - "st/": 1, - "nt.translate": 2, - "rt/2": 2, - "f*.856796": 2, - "f*.12864": 2, - "*st/": 1, - "e*.58": 1, - "nt.drawImage": 3, - "nt.restore": 1, - "f*.012135/2": 1, - "ft.push": 1, - "*c": 2, - "y*.121428": 2, - "w*.012135": 2, - "y*.012135": 2, - "w*.121428": 2, - "y*.093457": 2, - "w*.093457": 2, - "pt.width": 1, - "pt.height": 1, - "ku.repaint": 1, - "k.labelColor": 1, - "r*": 2, - "r*1.014": 5, - "t*.856796": 1, - "t*.12864": 1, - "t*.13": 3, - "r*1.035": 4, - "f.setAlpha": 8, - ".047058": 2, - "rt.addColorStop": 4, - "f.getRgbaColor": 8, - ".145098": 1, - ".149019": 1, - "t*.15": 1, - "i*.152857": 1, - ".298039": 1, - "it.addColorStop": 4, - ".686274": 1, - ".698039": 1, - "i*.851941": 1, - "t*.121428": 1, - "i*.012135": 1, - "t*.012135": 1, - "i*.121428": 1, - "*r": 4, - "o/r*": 1, - "yt.getEnd": 2, - "yt.getStart": 2, - "lt/ct": 2, - "yt.getColorAt": 2, - "<ft.length;c++)if(o>": 1, - "st.medium.getHexColor": 2, - "a.medium.getHexColor": 2, - "b/2": 2, - "e/r*": 1, - "<ft.length;c++)if(e>": 1, - "v.createRadialGradient": 2, - "<u?u:n>": 5, - "oi.pause": 1, - "oi.play": 1, - "<st&&(it=!1,vi(it)):(it=!0,vi(it)),l>": 1, - "bargraphled": 3, - "v.drawImage": 2, - "<st&&(it=!1,gt=pt),v.drawImage(gt,ur,sr));var>": 1, - "856796": 4, - "728155": 2, - "34": 2, - "12864": 2, - "142857": 2, - "65": 2, - "drawImage": 12, - "save": 27, - "restore": 14, - "repaint": 23, - "dr=": 1, - "128": 2, - "48": 1, - "w=": 4, - "lcdColor": 4, - "LcdColor": 4, - "STANDARD": 3, - "pt=": 5, - "lcdDecimals": 4, - "lt=": 4, - "unitString": 4, - "at=": 3, - "unitStringVisible": 4, - "ht=": 6, - "digitalFont": 4, - "bt=": 3, - "valuesNumeric": 4, - "ct=": 5, - "autoScroll": 2, - "section": 2, - "wt=": 3, - "getElementById": 4, - "clearRect": 8, - "v=": 5, - "floor": 13, - "ot=": 4, - "sans": 12, - "serif": 13, - "it=": 7, - "nt=": 5, - "et=": 6, - "kt=": 4, - "textAlign=": 7, - "strokeStyle=": 8, - "clip": 1, - "font=": 28, - "measureText": 4, - "toFixed": 3, - "fillText": 23, - "38": 5, - "o*.2": 1, - "<=o-4&&(e=0,c=!1),u.fillText(n,o-2-e,h*.5+v*.38)),u.restore()},dt=function(n,i,r,u){var>": 1, - "rt=": 3, - "095": 1, - "createLinearGradient": 6, - "addColorStop": 25, - "4c4c4c": 1, - "08": 1, - "666666": 2, - "92": 1, - "e6e6e6": 1, - "gradientStartColor": 1, - "tt=": 3, - "gradientFraction1Color": 1, - "gradientFraction2Color": 1, - "gradientFraction3Color": 1, - "gradientStopColor": 1, - "yt=": 4, - "31": 26, - "ut=": 6, - "rgb": 6, - "03": 1, - "49": 1, - "57": 1, - "83": 1, - "wt.repaint": 1, - "resetBuffers": 1, - "this.setScrolling": 1, - "w.textColor": 1, - "<f.length;n++)if(a>": 1, - "<=f[n].stop){t=et[n],i=ut[n];break}u.drawImage(t,0,0),kt(a,i)},this.repaint(),this},wr=function(n,t){t=t||{};var>": 1, - "64": 1, - "875": 2, - "textBaseline=": 4, - "textColor": 2, - "STANDARD_GREEN": 1, - "shadowColor=": 1, - "shadowOffsetX=": 1, - "05": 2, - "shadowOffsetY=": 1, - "shadowBlur=": 1, - "06": 1, - "46": 1, - "8": 2, - "setValue=": 2, - "setLcdColor=": 2, - "repaint=": 2, - "br=": 1, - "200": 2, - "st=": 3, - "decimalsVisible": 2, - "gt=": 1, - "textOrientationFixed": 2, - "frameDesign": 4, - "FrameDesign": 2, - "METAL": 2, - "frameVisible": 4, - "backgroundColor": 2, - "BackgroundColor": 1, - "DARK_GRAY": 1, - "vt=": 2, - "backgroundVisible": 2, - "pointerColor": 4, - "ColorDef": 2, - "RED": 1, - "foregroundType": 4, - "ForegroundType": 2, - "TYPE1": 2, - "foregroundVisible": 4, - "180": 26, - "ni=": 1, - "labelColor": 6, - "getRgbaColor": 21, - "translate": 38, - "360": 15, - "p.labelColor.getRgbaColor": 4, - "f*.38": 7, - "f*.37": 3, - "<f||(r=\"8px>": 1, - "rotate": 31, - "u00b0": 8, - "41": 3, - "45": 5, - "25": 9, - "085": 4, - "100": 4, - "90": 3, - "21": 2, - "u221e": 2, - "135": 1, - "225": 1, - "75": 3, - "270": 1, - "315": 1, - "ti=": 2, - "200934": 2, - "434579": 4, - "163551": 5, - "560747": 4, - "lineWidth=": 6, - "lineCap=": 5, - "lineJoin=": 5, - "471962": 4, - "205607": 1, - "523364": 5, - "799065": 2, - "836448": 5, - "794392": 1, - "ii=": 2, - "350467": 5, - "130841": 1, - "476635": 2, - "bezierCurveTo": 6, - "490654": 3, - "345794": 3, - "509345": 1, - "154205": 1, - "350466": 1, - "dark": 2, - "light": 5, - "setAlpha": 8, - "70588": 4, - "59": 3, - "dt=": 2, - "285046": 5, - "514018": 6, - "21028": 1, - "481308": 4, - "280373": 3, - "495327": 2, - "504672": 2, - "224299": 1, - "289719": 1, - "714953": 5, - "789719": 1, - "719626": 3, - "7757": 1, - "71028": 1, - "ft=": 3, - "*10": 2, - "<e&&90>": 2, - "<e&&180>": 2, - "<e&&270>": 2, - "<e&&360>": 2, - "<-90&&e>": 2, - "<-180&&e>": 2, - "<-270&&e>": 2, - "d.playing": 2, - "d.stop": 2, - "d.onMotionChanged": 2, - "d.start": 2, - "s.save": 4, - "s.clearRect": 3, - "s.canvas.width": 4, - "s.canvas.height": 4, - "s.drawImage": 8, - "e*kt": 1, - "s.translate": 6, - "s.rotate": 3, - "s.fillStyle": 1, - "s.textAlign": 1, - "s.textBaseline": 1, - "s.restore": 6, - "s.font": 2, - "f*.15": 2, - "s.fillText": 2, - "f*.35": 26, - "f*.2": 1, - "k*Math.PI/180": 1, - "u.size": 4, - "u.frameDesign": 4, - "u.frameVisible": 4, - "u.backgroundColor": 4, - "u.backgroundVisible": 4, - "u.pointerType": 2, - "steelseries.PointerType.TYPE2": 1, - "u.pointerColor": 4, - "u.knobType": 4, - "u.knobStyle": 4, - "u.foregroundType": 4, - "u.foregroundVisible": 4, - "u.pointSymbols": 4, - "u.customLayer": 4, - "u.degreeScale": 4, - "u.roseVisible": 4, - "ft.getContext": 2, - "ut.getContext": 2, - "it.getContext": 2, - "ot.getContext": 3, - "et.getContext": 2, - "tt.labelColor.getRgbaColor": 2, - ".08*f": 1, - "f*.033": 1, - "st*10": 2, - ".substring": 2, - ".12*f": 2, - ".06*f": 2, - "tt.symbolColor.getRgbaColor": 1, - "st*2.5": 1, - "bt.type": 1, - "f*.53271": 6, - "e*.453271": 5, - "f*.5": 17, - "e*.149532": 8, - "f*.467289": 6, - "f*.453271": 2, - "e*.462616": 2, - "f*.443925": 9, - "e*.481308": 2, - "e*.5": 10, - "f*.556074": 9, - "f*.546728": 2, - ".471962*f": 5, - ".528036*f": 5, - "o.addColorStop": 4, - "h.light.getRgbaColor": 6, - ".46": 3, - ".47": 3, - "h.medium.getRgbaColor": 6, - "h.dark.getRgbaColor": 3, - "n.lineCap": 5, - "n.lineJoin": 5, - "e*.546728": 5, - "e*.850467": 4, - "e*.537383": 2, - "e*.518691": 2, - "s.addColorStop": 4, - "e*.490654": 2, - "e*.53271": 2, - "e*.556074": 3, - "e*.495327": 4, - "f*.528037": 2, - "f*.471962": 2, - "e*.504672": 4, - ".480099": 1, - "f*.006": 2, - "ft.width": 1, - "ft.height": 1, - "ut.width": 1, - "ut.height": 1, - "it.width": 1, - "it.height": 1, - "ot.width": 1, - "ot.height": 1, - "et.width": 1, - "et.height": 1, - "Tween.elasticEaseOut": 1, - "r.repaint": 1, - "this.setPointSymbols": 1, - "p*st": 1, - "b.clearRect": 1, - "b.save": 1, - "b.translate": 2, - "b.rotate": 1, - "b.drawImage": 1, - "b.restore": 1, - "u.pointerTypeLatest": 2, - "u.pointerTypeAverage": 2, - "steelseries.PointerType.TYPE8": 1, - "u.pointerColorAverage": 2, - "steelseries.ColorDef.BLUE": 1, - "u.lcdColor": 2, - "u.lcdVisible": 2, - "u.digitalFont": 2, - "u.section": 2, - "u.area": 2, - "u.lcdTitleStrings": 2, - "u.titleString": 2, - "u.useColorLabels": 2, - "this.valueLatest": 1, - "this.valueAverage": 1, - "Math.PI*2": 1, - "e.save": 2, - "e.clearRect": 1, - "e.canvas.width": 2, - "e.canvas.height": 2, - "f/10": 1, - "f*.3": 4, - "s*.12": 1, - "s*.32": 1, - "s*.565": 1, - "bt.getContext": 1, - "at.getContext": 1, - "vt.getContext": 1, - "lt.getContext": 1, - "wt.getContext": 1, - "e.textAlign": 1, - "e.strokeStyle": 1, - "ht.textColor": 2, - "e.fillStyle": 1, - "<0&&(n+=360),n=\"00\"+Math.round(n),n=n.substring(n.length,n.length-3),(ht===steelseries.LcdColor.STANDARD||ht===steelseries.LcdColor.STANDARD_GREEN)&&(e.shadowColor=\"gray\",e.shadowOffsetX=f*.007,e.shadowOffsetY=f*.007,e.shadowBlur=f*.007),e.font=pr?gr:br,e.fillText(n+\"\\u00b0\",f/2+gt*.05,(t?or:cr)+er*.5+ui*.38,gt*.9),e.restore()},wi=function(n,t,i,r,u){n.save(),n.strokeStyle=r,n.fillStyle=r,n.lineWidth=f*.035;var>": 1, - "arc": 2, - "365": 2, - "lineWidth": 1, - "lr=": 1, - "35": 1, - "355": 1, - "36": 2, - "bold": 1, - "04": 2, - "ct*5": 1, - "k.symbolColor.getRgbaColor": 1, - "ct*2.5": 1, - "ti.length": 1, - "kt.medium.getRgbaColor": 1, - ".04*f": 1, - "s*.29": 1, - "ii.medium.getRgbaColor": 1, - "s*.71": 1, - "rr.length": 1, - ".0467*f": 1, - "s*.5": 1, - "et.length": 2, - "ft.length": 2, - "<i)}lr(d)}r&&nr&&hi(d,c,h,f,s,k),r&&fr&&(oi=p(gt,er,ht),d.drawImage(oi,hr,or),d.drawImage(oi,hr,cr),yr(d)),e&&(nt(ai,f,ri,ii,k.labelColor),nt(ki,f,ri,kt,k.labelColor,!0),nt(ci,f,dt,kt,k.labelColor),nt(li,f,dt,kt,k.labelColor,!0)),l&&ir&&(u=dt.type===\"type15\"||dt.type===\"type16\"?!1:!0,y(yi,si,f,s,u,kr,dr))},pt=function(n){n=n||{};var>": 1, - "ci=": 1, - "li=": 1, - "ai=": 1, - "ki=": 1, - "yi=": 1, - "setValueLatest=": 1, - "getValueLatest=": 1, - "setValueAverage=": 1, - "getValueAverage=": 1, - "setValueAnimatedLatest=": 1, - "playing": 2, - "regularEaseInOut": 2, - "onMotionChanged=": 2, - "_pos": 2, - "onMotionFinished=": 2, - "setValueAnimatedAverage=": 1, - "setArea=": 1, - "setSection=": 1, - "setFrameDesign=": 1, - "pi=": 1, - "setBackgroundColor=": 1, - "setForegroundType=": 1, - "si=": 1, - "setPointerColor=": 1, - "setPointerColorAverage=": 1, - "setPointerType=": 1, - "setPointerTypeAverage=": 1, - "ri=": 1, - "setPointSymbols=": 1, - "setLcdTitleStrings=": 1, - "fi=": 1, - "006": 1, - "ei=": 1, - "ru=": 1, - "WHITE": 1, - "037383": 1, - "056074": 1, - "7fd5f0": 2, - "3c4439": 2, - "72": 1, - "KEYWORDS": 2, - "array_to_hash": 11, - "RESERVED_WORDS": 2, - "KEYWORDS_BEFORE_EXPRESSION": 2, - "KEYWORDS_ATOM": 2, - "OPERATOR_CHARS": 1, - "RE_HEX_NUMBER": 1, - "RE_OCT_NUMBER": 1, - "RE_DEC_NUMBER": 1, - "OPERATORS": 2, - "WHITESPACE_CHARS": 2, - "PUNC_BEFORE_EXPRESSION": 2, - "PUNC_CHARS": 1, - "REGEXP_MODIFIERS": 1, - "UNICODE": 1, - "non_spacing_mark": 1, - "space_combining_mark": 1, - "connector_punctuation": 1, - "is_letter": 3, - "UNICODE.letter.test": 1, - "is_digit": 3, - "ch.charCodeAt": 1, - "//XXX": 1, - "out": 1, - "means": 1, - "is_alphanumeric_char": 3, - "is_unicode_combining_mark": 2, - "UNICODE.non_spacing_mark.test": 1, - "UNICODE.space_combining_mark.test": 1, - "is_unicode_connector_punctuation": 2, - "UNICODE.connector_punctuation.test": 1, - "is_identifier_start": 2, - "is_identifier_char": 1, - "zero": 2, - "joiner": 2, - "<ZWNJ>": 1, - "<ZWJ>": 1, - "my": 1, - "ECMA": 1, - "PDF": 1, - "parse_js_number": 2, - "RE_HEX_NUMBER.test": 1, - "num.substr": 2, - "RE_OCT_NUMBER.test": 1, - "RE_DEC_NUMBER.test": 1, - "JS_Parse_Error": 2, - "message": 5, - "this.col": 2, - "ex": 3, - "ex.name": 1, - "this.stack": 2, - "ex.stack": 1, - "JS_Parse_Error.prototype.toString": 1, - "js_error": 2, - "is_token": 1, - "token": 5, - "token.type": 1, - "token.value": 1, - "EX_EOF": 3, - "tokenizer": 2, - "TEXT": 1, - "TEXT.replace": 1, - "uFEFF/": 1, - "tokpos": 1, - "tokline": 1, - "tokcol": 1, - "newline_before": 1, - "regex_allowed": 1, - "comments_before": 1, - "peek": 5, - "S.text.charAt": 2, - "S.pos": 4, - "signal_eof": 4, - "S.newline_before": 3, - "S.line": 2, - "S.col": 3, - "eof": 6, - "S.peek": 1, - "what": 2, - "S.text.indexOf": 1, - "start_token": 1, - "S.tokline": 3, - "S.tokcol": 3, - "S.tokpos": 3, - "is_comment": 2, - "S.regex_allowed": 1, - "HOP": 5, - "UNARY_POSTFIX": 1, - "nlb": 1, - "ret.comments_before": 1, - "S.comments_before": 2, - "skip_whitespace": 1, - "read_while": 2, - "pred": 2, - "parse_error": 3, - "read_num": 1, - "prefix": 6, - "has_e": 3, - "after_e": 5, - "has_x": 5, - "has_dot": 3, - "valid": 4, - "read_escaped_char": 1, - "hex_bytes": 3, - "digit": 3, - "read_string": 1, - "with_eof_error": 1, - "comment1": 1, - "Unterminated": 2, - "multiline": 1, - "comment2": 1, - "WARNING": 1, - "***": 1, - "Found": 1, - "warn": 3, - "tok": 1, - "read_name": 1, - "backslash": 2, - "Expecting": 1, - "UnicodeEscapeSequence": 1, - "uXXXX": 1, - "Unicode": 1, - "identifier": 1, - "regular": 1, - "regexp": 5, - "operator": 14, - "punc": 27, - "atom": 5, - "keyword": 11, - "Unexpected": 3, - "void": 1, - "<\",>": 1, - "<=\",>": 1, - "debugger": 2, - "const": 2, - "stat": 1, - "Label": 1, - "without": 1, - "statement": 1, - "defun": 1, - "Name": 1, - "Missing": 1, - "catch/finally": 1, - "blocks": 1, - "unary": 2, - "dot": 2, - "postfix": 1, - "Invalid": 2, - "binary": 1, - "conditional": 1, - "assign": 1, - "assignment": 1, - "seq": 1, - "member": 2, - "array.length": 1, - "Object.prototype.hasOwnProperty.call": 1, - "exports.tokenizer": 1, - "exports.parse": 1, - "parse": 1, - "exports.slice": 1, - "exports.curry": 1, - "curry": 1, - "exports.member": 1, - "exports.array_to_hash": 1, - "exports.PRECEDENCE": 1, - "PRECEDENCE": 1, - "exports.KEYWORDS_ATOM": 1, - "exports.RESERVED_WORDS": 1, - "exports.KEYWORDS": 1, - "exports.ATOMIC_START_TOKEN": 1, - "ATOMIC_START_TOKEN": 1, - "exports.OPERATORS": 1, - "exports.is_alphanumeric_char": 1, - "exports.set_logger": 1, - "logger": 2 - }, - "JSON": { - "{": 143, - "}": 143, - "[": 165, - "]": 165, - "true": 3 - }, - "Julia": { - "##": 5, - "Test": 1, - "case": 1, - "from": 1, - "Issue": 1, - "#445": 1, - "#STOCKCORR": 1, - "-": 11, - "The": 1, - "original": 1, - "unoptimised": 1, - "code": 1, - "that": 1, - "simulates": 1, - "two": 2, - "correlated": 1, - "assets": 1, - "function": 1, - "stockcorr": 1, - "(": 13, - ")": 13, - "Correlated": 1, - "asset": 1, - "information": 1, - "CurrentPrice": 3, - "[": 20, - "]": 20, - "#": 11, - "Initial": 1, - "Prices": 1, - "of": 6, - "the": 2, - "stocks": 1, - "Corr": 2, - ";": 1, - "Correlation": 1, - "Matrix": 2, - "T": 5, - "Number": 2, - "days": 3, - "to": 1, - "simulate": 1, - "years": 1, - "n": 4, - "simulations": 1, - "dt": 3, - "/250": 1, - "Time": 1, - "step": 1, - "year": 1, - "Div": 3, - "Dividend": 1, - "Vol": 5, - "Volatility": 1, - "Market": 1, - "Information": 1, - "r": 3, - "Risk": 1, - "free": 1, - "rate": 1, - "Define": 1, - "storages": 1, - "SimulPriceA": 5, - "zeros": 2, - "Simulated": 2, - "Price": 2, - "Asset": 2, - "A": 1, - "SimulPriceB": 5, - "B": 1, - "Generating": 1, - "paths": 1, - "stock": 1, - "prices": 1, - "by": 2, - "Geometric": 1, - "Brownian": 1, - "Motion": 1, - "UpperTriangle": 2, - "chol": 1, - "Cholesky": 1, - "decomposition": 1, - "for": 2, - "i": 5, - "Wiener": 1, - "randn": 1, - "CorrWiener": 1, - "Wiener*UpperTriangle": 1, - "j": 7, - "*exp": 2, - "/2": 2, - "*dt": 2, - "+": 2, - "*sqrt": 2, - "*CorrWiener": 2, - "end": 3, - "return": 1 - }, - "Kotlin": { - "package": 1, - "addressbook": 1, - "class": 5, - "Contact": 1, - "(": 15, - "val": 16, - "name": 2, - "String": 7, - "emails": 1, - "List": 3, - "<EmailAddress>": 1, - "addresses": 1, - "<PostalAddress>": 1, - "phonenums": 1, - "<PhoneNumber>": 1, - ")": 15, - "EmailAddress": 1, - "user": 1, - "host": 1, - "PostalAddress": 1, - "streetAddress": 1, - "city": 1, - "zip": 1, - "state": 2, - "USState": 1, - "country": 3, - "Country": 7, - "{": 6, - "assert": 1, - "null": 3, - "xor": 1, - "Countries": 2, - "[": 3, - "]": 3, - "}": 6, - "PhoneNumber": 1, - "areaCode": 1, - "Int": 1, - "number": 1, - "Long": 1, - "object": 1, - "fun": 1, - "get": 2, - "id": 2, - "CountryID": 1, - "countryTable": 2, - "private": 2, - "var": 1, - "table": 5, - "Map": 2, - "<String,>": 2, - "if": 1, - "HashMap": 1, - "for": 1, - "line": 3, - "in": 1, - "TextFile": 1, - ".lines": 1, - "stripWhiteSpace": 1, - "true": 1, - "return": 1 - }, - "Lasso": { - "<": 7, - "LassoScript": 1, - "//": 169, - "JSON": 2, - "Encoding": 1, - "and": 52, - "Decoding": 1, - "Copyright": 1, - "-": 2248, - "LassoSoft": 1, - "Inc.": 1, - "<http://json.org/>": 1, - "<http://json-rpc.org/>": 1, - "<http://www.ietf.org/rfc/rfc4627.txt?number=4627>": 1, - "This": 5, - "tag": 11, - "is": 35, - "now": 23, - "incorporated": 1, - "in": 46, - "Lasso": 15, - "If": 4, - "(": 640, - "Lasso_TagExists": 1, - ")": 639, - "False": 1, - ";": 573, - "Define_Tag": 1, + "Ruby": { + "to_s": 1, + "mirror_list.shift.values_at": 1, + "inflections.acronym_regex": 2, + "parts.reverse.inject": 1, + "/.*": 1, + "delete": 1, + "plugin.depends_on": 1, + "path.names": 1, + ".basename": 1, + "constant.ancestors.inject": 1, + "removed_ENV_variables.each": 1, + "Wno": 1, + "HOMEBREW_PREFIX": 2, + "</pre>": 1, + "homepage": 2, + "when": 11, + "force": 1, + ".include": 1, + "underscored_word": 1, + "w/": 1, + "@name": 3, + "fails_with": 2, + "resque": 2, + "def": 143, + "inflections.singulars": 1, + "out": 4, + "role": 1, + "underscore": 3, + "@spec_to_use.detect_version": 1, + "reserve": 1, + "nodoc": 3, + "running": 2, + "facets": 1, + "<img>": 1, + "config_file": 2, + "p.patch_args": 1, + "formula_with_that_name.readable": 1, + "installed": 2, + "inspect": 2, + ".destroy": 1, + "args.collect": 1, + "prefix": 14, + "buildpath": 1, + "type": 10, + "doesn": 1, + "installed_prefix": 1, + "threaded": 1, + "ftp": 1, + "or": 7, + "configure": 2, + "HOMEBREW_CACHE.mkpath": 1, + "args.length": 1, + "args": 5, + "Interrupt": 2, + "tapd.find_formula": 1, + "@spec_to_use.specs": 1, + "@instance.settings": 1, + "stdout.puts": 1, + "-": 34, "Namespace": 1, - "Required": 1, - "Optional": 1, - "Local": 7, - "Map": 3, - "r": 8, - "n": 30, - "t": 8, - "f": 2, - "b": 2, - "output": 30, - "newoptions": 1, - "options": 2, - "array": 20, - "set": 10, - "list": 4, - "queue": 2, - "priorityqueue": 2, - "stack": 2, - "pair": 1, - "map": 23, - "[": 22, - "]": 23, - "literal": 3, - "string": 59, - "integer": 30, - "decimal": 5, - "boolean": 4, - "null": 26, - "date": 23, - "temp": 12, - "object": 7, - "{": 18, - "}": 18, - "client_ip": 1, - "client_address": 1, - "__jsonclass__": 6, - "deserialize": 2, - "<LassoNativeType>": 3, - "</LassoNativeType>": 3, - "Decode_JSON": 2, - "Decode_": 1, - "value": 14, - "consume_string": 1, - "ibytes": 9, - "unescapes": 1, - "u": 1, - "UTF": 4, - "%": 14, - "QT": 4, - "TZ": 2, - "T": 3, - "consume_token": 1, - "obytes": 3, - "delimit": 7, - "true": 12, - "false": 8, - ".": 5, - "consume_array": 1, - "consume_object": 1, - "key": 3, - "val": 1, - "native": 2, - "comment": 2, - "http": 6, - "//www.lassosoft.com/json": 1, - "start": 5, - "Literal": 2, - "String": 1, - "Object": 2, - "JSON_RPCCall": 1, - "RPCCall": 1, - "JSON_": 1, - "method": 7, - "params": 11, - "id": 7, - "host": 6, - "//localhost/lassoapps.8/rpc/rpc.lasso": 1, - "request": 2, - "result": 6, - "JSON_Records": 3, - "KeyField": 1, - "ReturnField": 1, - "ExcludeField": 1, - "Fields": 1, - "_fields": 1, - "fields": 2, - "No": 1, - "found": 5, - "for": 65, - "_keyfield": 4, - "keyfield": 4, - "ID": 1, - "_index": 1, - "_return": 1, - "returnfield": 1, - "_exclude": 1, - "excludefield": 1, - "_records": 1, - "_record": 1, - "_temp": 1, - "_field": 1, - "_output": 1, - "error_msg": 15, - "error_code": 11, - "found_count": 11, - "rows": 1, - "#_records": 1, - "Return": 7, - "@#_output": 1, - "/Define_Tag": 1, - "/If": 3, - "define": 20, - "trait_json_serialize": 2, - "trait": 1, - "require": 1, - "asString": 3, - "json_serialize": 18, - "e": 13, - "bytes": 8, - "+": 146, - "#e": 13, - "Replace": 19, - "&": 21, - "json_literal": 1, - "asstring": 4, - "format": 7, - "gmt": 1, - "|": 13, - "trait_forEach": 1, - "local": 116, - "foreach": 1, - "#output": 50, - "#delimit": 7, - "#1": 3, - "return": 75, - "with": 25, - "pr": 1, - "eachPair": 1, - "select": 1, - "#pr": 2, - "first": 12, - "second": 8, - "join": 5, - "json_object": 2, - "foreachpair": 1, - "any": 14, - "serialize": 1, - "json_consume_string": 3, - "while": 9, - "#temp": 19, - "#ibytes": 17, - "export8bits": 6, - "#obytes": 5, - "import8bits": 4, - "Escape": 1, - "/while": 7, - "unescape": 1, - "//Replace": 1, - "if": 76, - "BeginsWith": 1, - "&&": 30, - "EndsWith": 1, - "Protect": 1, - "serialization_reader": 1, - "xml": 1, - "read": 1, - "/Protect": 1, - "else": 32, - "size": 24, - "or": 6, - "regexp": 1, - "d": 2, - "Z": 1, - "matches": 1, - "Format": 1, - "yyyyMMdd": 2, - "HHmmssZ": 1, - "HHmmss": 1, - "/if": 53, - "json_consume_token": 2, - "marker": 4, - "Is": 1, - "also": 5, - "end": 2, - "of": 24, - "token": 1, - "//............................................................................": 2, - "string_IsNumeric": 1, - "json_consume_array": 3, - "While": 1, - "Discard": 1, - "whitespace": 3, - "Else": 7, - "insert": 18, - "#key": 12, - "json_consume_object": 2, - "Loop_Abort": 1, - "/While": 1, - "Find": 3, - "isa": 25, - "First": 4, - "find": 57, - "Second": 1, - "json_deserialize": 1, - "removeLeading": 1, - "bom_utf8": 1, - "Reset": 1, - "on": 1, - "provided": 1, - "**/": 1, - "type": 63, - "parent": 5, - "public": 1, - "onCreate": 1, - "...": 3, - "..onCreate": 1, - "#rest": 1, - "json_rpccall": 1, - "#id": 2, - "#host": 4, - "Lasso_UniqueID": 1, - "Include_URL": 1, - "PostParams": 1, - "Encode_JSON": 1, - "#method": 1, - "#params": 5, - "<?LassoScript>": 6, - "2009": 14, - "09": 10, - "04": 8, - "JS": 126, - "Added": 40, - "content_body": 14, - "compatibility": 4, - "pre": 4, - "8": 6, - "5": 4, - "05": 4, - "07": 6, - "timestamp": 4, - "to": 98, - "knop_cachestore": 4, - "maxage": 2, - "parameter": 8, - "knop_cachefetch": 4, - "Corrected": 8, - "construction": 2, - "cache_name": 2, - "internally": 2, - "the": 86, - "knop_cache": 2, - "tags": 14, - "so": 16, - "it": 20, - "will": 12, - "work": 6, - "correctly": 2, - "at": 10, - "site": 4, - "root": 2, - "2008": 6, - "11": 8, - "dummy": 2, - "knop_debug": 4, - "ctype": 2, - "be": 38, - "able": 14, - "transparently": 2, - "without": 4, - "L": 2, - "Debug": 2, - "24": 2, - "knop_stripbackticks": 2, - "01": 4, - "28": 2, - "Cache": 2, - "name": 32, - "used": 12, - "when": 10, - "using": 8, - "session": 4, - "storage": 8, - "2007": 6, - "12": 8, - "knop_cachedelete": 2, - "Created": 4, - "03": 2, - "knop_foundrows": 2, - "condition": 4, - "returning": 2, - "normal": 2, - "For": 2, - "lasso_tagexists": 4, - "define_tag": 48, - "namespace=": 12, - "__html_reply__": 4, - "define_type": 14, - "debug": 2, - "_unknowntag": 6, - "onconvert": 2, - "stripbackticks": 2, - "description=": 2, - "priority=": 2, - "required=": 2, - "input": 2, - "split": 2, - "@#output": 2, - "/define_tag": 36, - "description": 34, - "namespace": 16, - "priority": 8, - "Johan": 2, - "S": 2, - "lve": 2, - "#charlist": 6, - "current": 10, - "time": 8, - "a": 52, - "mixed": 2, - "up": 4, - "as": 26, - "seed": 6, - "#seed": 36, - "convert": 4, - "this": 14, - "base": 6, - "conversion": 4, - "get": 12, - "#base": 8, - "/": 6, - "over": 2, - "new": 14, - "chunk": 2, - "millisecond": 2, - "math_random": 2, - "lower": 2, - "upper": 2, - "__lassoservice_ip__": 2, - "response_localpath": 8, - "removetrailing": 8, - "response_filepath": 8, - "//tagswap.net/found_rows": 2, - "action_statement": 2, - "string_findregexp": 8, - "#sql": 42, - "ignorecase": 12, - "||": 8, - "maxrecords_value": 2, - "inaccurate": 2, - "must": 4, - "accurate": 2, - "Default": 2, - "usually": 2, - "fastest.": 2, - "Can": 2, - "not": 10, - "GROUP": 4, - "BY": 6, - "example.": 2, - "normalize": 4, - "around": 2, - "FROM": 2, - "expression": 6, - "string_replaceregexp": 8, - "replace": 8, - "ReplaceOnlyOne": 2, - "substring": 6, - "remove": 6, - "ORDER": 2, - "statement": 4, - "since": 4, - "causes": 4, - "problems": 2, - "field": 26, - "aliases": 2, - "we": 2, - "can": 14, - "simple": 2, - "later": 2, - "query": 4, - "contains": 2, - "use": 10, - "SQL_CALC_FOUND_ROWS": 2, - "which": 2, - "much": 2, - "slower": 2, - "see": 16, - "//bugs.mysql.com/bug.php": 2, - "removeleading": 2, - "inline": 4, - "sql": 2, - "exit": 2, - "here": 2, - "normally": 2, - "/inline": 2, - "fallback": 4, - "required": 10, - "optional": 36, - "local_defined": 26, - "knop_seed": 2, - "#RandChars": 4, - "Get": 2, - "Math_Random": 2, - "Min": 2, - "Max": 2, - "Size": 2, - "#value": 14, - "#numericValue": 4, - "length": 8, - "#cryptvalue": 10, - "#anyChar": 2, - "Encrypt_Blowfish": 2, - "decrypt_blowfish": 2, - "String_Remove": 2, - "StartPosition": 2, - "EndPosition": 2, - "Seed": 2, - "String_IsAlphaNumeric": 2, - "self": 72, - "_date_msec": 4, - "/define_type": 4, - "seconds": 4, - "default": 4, - "store": 4, - "all": 6, - "page": 14, - "vars": 8, - "specified": 8, - "iterate": 12, - "keys": 6, - "var": 38, - "#item": 10, - "#type": 26, - "#data": 14, - "/iterate": 12, - "//fail_if": 6, - "session_id": 6, - "#session": 10, - "session_addvar": 4, - "#cache_name": 72, - "duration": 4, - "#expires": 4, - "server_name": 6, - "initiate": 10, - "thread": 6, - "RW": 6, - "lock": 24, - "global": 40, - "Thread_RWLock": 6, - "create": 6, - "reference": 10, - "@": 8, - "writing": 6, - "#lock": 12, - "writelock": 4, - "check": 6, - "cache": 4, - "unlock": 6, - "writeunlock": 4, - "#maxage": 4, - "cached": 8, - "data": 12, - "too": 4, - "old": 4, - "reading": 2, - "readlock": 2, - "readunlock": 2, - "ignored": 2, - "//##################################################################": 4, - "knoptype": 2, - "All": 4, - "Knop": 6, - "custom": 8, - "types": 10, - "should": 4, - "have": 6, - "identify": 2, - "registered": 2, - "knop": 6, - "isknoptype": 2, - "knop_knoptype": 2, - "prototype": 4, - "version": 4, - "14": 4, - "Base": 2, - "framework": 2, - "Contains": 2, - "common": 4, - "member": 10, - "Used": 2, - "boilerplate": 2, - "creating": 4, - "other": 4, - "instance": 8, - "variables": 2, - "are": 4, - "available": 2, - "well": 2, - "CHANGE": 4, - "NOTES": 4, - "Syntax": 4, - "adjustments": 4, - "9": 2, - "Changed": 6, - "error": 22, - "numbers": 2, - "added": 10, - "even": 2, - "language": 10, - "already": 2, - "exists.": 2, - "improved": 4, - "reporting": 2, - "messages": 6, - "such": 2, - "from": 6, - "bad": 2, - "database": 14, - "queries": 2, - "error_lang": 2, - "provide": 2, - "knop_lang": 8, - "add": 12, - "localized": 2, - "except": 2, - "knop_base": 8, - "html": 4, - "xhtml": 28, - "help": 10, - "nicely": 2, - "formatted": 2, - "output.": 2, - "Centralized": 2, - "knop_base.": 2, - "Moved": 6, - "codes": 2, - "improve": 2, - "documentation.": 2, - "It": 2, - "always": 2, - "an": 8, - "parameter.": 2, - "trace": 2, - "tagtime": 4, - "was": 6, - "nav": 4, - "earlier": 2, - "varname": 4, - "retreive": 2, - "variable": 8, - "that": 18, - "stored": 2, - "in.": 2, - "automatically": 2, - "sense": 2, - "doctype": 6, - "exists": 2, - "buffer.": 2, - "The": 6, - "performance.": 2, - "internal": 2, - "html.": 2, - "Introduced": 2, - "_knop_data": 10, - "general": 2, - "level": 2, - "caching": 2, - "between": 2, - "different": 2, - "objects.": 2, - "TODO": 2, - "option": 2, - "Google": 2, - "Code": 2, - "Wiki": 2, - "working": 2, - "properly": 4, - "run": 2, - "by": 12, - "atbegin": 2, - "handler": 2, - "explicitly": 2, - "*/": 2, - "entire": 4, - "ms": 2, - "defined": 4, - "each": 8, - "instead": 4, - "avoid": 2, - "recursion": 2, - "properties": 4, - "#endslash": 10, - "#tags": 2, - "#t": 2, - "doesn": 4, - "p": 2, - "Parameters": 4, - "nParameters": 2, - "Internal.": 2, - "Finds": 2, - "out": 2, - "used.": 2, - "Looks": 2, - "unless": 2, - "array.": 2, - "variable.": 2, - "Looking": 2, - "#xhtmlparam": 4, - "plain": 2, - "#doctype": 4, - "copy": 4, + "verify_download_integrity": 2, + "color": 1, + "person": 1, + "base.class_eval": 1, + "humanize": 2, + ".join": 1, + "Queue.new": 1, + "attributes": 2, + "patch": 3, + "@keg_only_reason": 1, + "url": 12, + "host": 3, + "String": 2, + "__FILE__": 3, + "extensions": 6, + "wr": 3, + "w": 6, + "based": 1, + "compiler": 3, + "each": 1, + "respond_to": 1, + "else": 25, + "id=": 1, + "IO.pipe": 1, + ".rb": 1, "standard": 2, - "code": 2, - "errors": 12, - "error_data": 12, - "form": 2, - "grid": 2, - "lang": 2, - "user": 4, - "#error_lang": 12, - "addlanguage": 4, - "strings": 6, - "@#errorcodes": 2, - "#error_lang_custom": 2, - "#custom_language": 10, - "once": 4, - "one": 2, - "#custom_string": 4, - "#errorcodes": 4, - "#error_code": 10, - "message": 6, - "getstring": 2, - "test": 2, - "known": 2, - "lasso": 2, - "knop_timer": 2, - "knop_unique": 2, - "look": 2, - "#varname": 6, - "loop_abort": 2, - "tag_name": 2, - "#timer": 2, - "#trace": 4, - "merge": 2, - "#eol": 8, - "2010": 4, - "23": 4, - "Custom": 2, - "interact": 2, - "databases": 2, - "Supports": 4, - "both": 2, - "MySQL": 2, - "FileMaker": 2, - "datasources": 2, - "2012": 4, - "06": 2, - "10": 2, - "SP": 4, - "Fix": 2, - "precision": 2, - "bug": 2, - "6": 2, - "0": 2, - "1": 2, - "renderfooter": 2, - "15": 2, - "Add": 2, - "support": 6, - "Thanks": 2, - "Ric": 2, - "Lewis": 2, - "settable": 4, - "removed": 2, - "table": 6, - "nextrecord": 12, - "deprecation": 2, - "warning": 2, - "corrected": 2, - "verification": 2, - "index": 4, - "before": 4, - "calling": 2, - "resultset_count": 6, - "break": 2, - "versions": 2, - "fixed": 4, - "incorrect": 2, - "debug_trace": 2, - "addrecord": 4, - "how": 2, - "keyvalue": 10, - "returned": 6, - "adding": 2, - "records": 4, - "inserting": 2, - "generated": 2, - "suppressed": 2, - "specifying": 2, - "saverecord": 8, - "deleterecord": 4, - "case.": 2, - "recorddata": 6, - "no": 2, - "longer": 2, - "touch": 2, - "current_record": 2, - "zero": 2, - "access": 2, - "occurrence": 2, - "same": 4, - "returns": 4, - "knop_databaserows": 2, - "inlinename.": 4, - "next.": 2, - "remains": 2, - "supported": 2, - "backwards": 2, - "compatibility.": 2, - "resets": 2, - "record": 20, - "pointer": 8, - "reaching": 2, - "last": 4, - "honors": 2, - "incremented": 2, - "recordindex": 4, - "specific": 2, - "found.": 2, - "getrecord": 8, - "REALLY": 2, - "works": 4, - "keyvalues": 4, - "double": 2, - "oops": 4, - "I": 4, - "thought": 2, - "but": 2, - "misplaced": 2, - "paren...": 2, - "corresponding": 2, - "resultset": 2, - "/resultset": 2, - "through": 2, - "handling": 2, - "better": 2, - "knop_user": 4, - "keeplock": 4, - "updates": 2, - "datatype": 2, - "knop_databaserow": 2, - "iterated.": 2, - "When": 2, - "iterating": 2, - "row": 2, - "values.": 2, - "Addedd": 2, - "increments": 2, - "recordpointer": 2, - "called": 2, - "until": 2, - "reached.": 2, - "Returns": 2, - "long": 2, - "there": 2, - "more": 2, - "records.": 2, - "Useful": 2, - "loop": 2, - "example": 2, - "below": 2, - "Implemented": 2, - "reset": 2, - "query.": 2, - "shortcut": 2, - "Removed": 2, - "onassign": 2, - "touble": 2, - "Extended": 2, - "field_names": 2, - "names": 4, - "db": 2, - "objects": 2, - "never": 2, - "been": 2, - "optionally": 2, - "supports": 2, - "sql.": 2, - "Make": 2, - "sure": 2, - "SQL": 2, - "includes": 2, - "relevant": 2, - "lockfield": 2, - "locking": 4, - "capturesearchvars": 2, - "mysteriously": 2, - "after": 2, - "operations": 2, - "caused": 2, - "errors.": 2, - "flag": 2, - "save": 2, - "locked": 2, - "releasing": 2, - "Adding": 2, - "progress.": 2, - "Done": 2, - "oncreate": 2, - "getrecord.": 2, - "documentation": 2, - "most": 2, - "existing": 2, - "it.": 2, - "Faster": 2, - "than": 2, - "scratch.": 2, - "shown_first": 2, - "again": 2, - "hoping": 2, + "@url": 8, + "methods.each": 1, + "camelize": 2, + "hasher": 2, + "man6": 1, + "constant": 4, + "A": 5, + "term": 1, + "owned": 1, + "lower_case_and_underscored_word": 1, + "Plugin.after_dequeue_hooks": 1, + "&": 31, + "ENV": 4, + "self.configuration": 1, + "set": 36, + "javascript": 1, + "node": 2, + "know": 1, + "an": 1, + "stderr.reopen": 1, + "head": 3, + "sha1": 4, + "MacOS.cat": 1, + "options": 3, + "File.expand_path": 1, + "safe_constantize": 1, + "layout": 1, + "p": 2, + "Class.new": 2, + "path": 16, + "args.dup": 1, + "Worker.find": 1, + "@sha1": 6, + "@unstable": 2, + "CompilerFailures.new": 1, + "Exception": 1, + "downloader.stage": 1, + "Hash": 3, + "Plugin.before_enqueue_hooks": 1, + "uses": 1, + "arial": 1, + "no": 1, + "object": 2, + "self.target": 1, + "push": 1, + "connect": 1, + "dasherize": 1, + "relative_pathname": 1, + "keys": 6, + "Kernel.rand": 1, + "downloader.fetch": 1, + "RawScaledScorer": 1, + "std_cmake_args": 1, + "md5": 2, + "call": 1, + "template": 1, + "path.nil": 1, + "tapd.directory": 1, + "devel": 1, + "word.empty": 1, + "response.status": 1, + "names.each": 1, + "depends_on": 1, + "self.class.path": 1, + "Got": 1, + "klass.send": 4, + "i": 2, + "reason": 2, + "uppercase_first_letter": 2, + "models": 1, + "rsquo": 1, + "onoe": 2, + "RUBY_ENGINE": 2, + "enqueue_to": 2, + "constant.const_get": 1, + "const": 3, + "absolute_redirects": 1, + "CHECKSUM_TYPES.each": 1, + "self.path": 1, + "self.class.skip_clean_paths.include": 1, + ".map": 6, + "enqueue": 1, + "attr_writer": 4, + "plugin.uses_repository": 1, + "ancestor": 3, + "self.use": 1, + "case": 5, + "LAST": 1, + "File.join": 6, + "Redis.new": 1, + "constantize": 1, + "@mirrors.uniq": 1, + "src=": 1, + ".success": 1, + "attrs": 1, + "end": 236, + "username": 1, + "RuntimeError": 1, + "SHEBANG#!python": 1, + "Object": 1, + ".to_sym": 1, + "attr_rw": 4, + "worker_id": 2, + "Worker.all": 1, + "port": 4, + "}": 68, + "Plugin.before_dequeue_hooks": 1, + "@queues.delete": 1, + "https": 1, + "align": 2, + "ENV.remove_cc_etc": 1, + "worker.unregister_worker": 1, + "b": 4, + "p.to_s": 2, + "instance_variable_defined": 2, + "stderr.puts": 2, + "pretty_args": 1, + "uninitialized": 1, + "Patches.new": 1, + "plugin.developed_by": 1, + "download_strategy": 1, + "workers.size.to_i": 1, + "Redis.connect": 2, + "</body>": 1, + "rd.eof": 1, + "arg.to_s": 1, + "Job.reserve": 1, + "decode": 2, + "@before_first_fork": 2, + "redis.client.id": 1, + "File.exist": 1, + "path.relative_path_from": 1, + "file": 1, + "inflections.acronyms": 1, + "github": 1, + "implementation": 1, + "static": 1, + "at": 1, + "./": 1, + "pluralize": 3, + "rd": 1, + "<head>": 1, + "wrong": 1, + "NotFound": 1, + "ohai": 3, + "Sinatra": 2, + "v": 2, + "To": 1, + "doc": 1, + "@redis": 6, + "/not": 1, + "failure.compiler": 1, + "[": 56, + "self.all": 1, + "<!['’`])[a-z]/)>": 1, + "val": 10, + "text": 3, + "@downloader.cached_location": 1, + "man5": 1, + "glob": 2, + "dequeue": 1, + "filename": 2, + "self.each": 1, + "Wrapper": 1, + "#888": 1, + "plugin.url": 1, + "Compiler.new": 1, + "config.log": 2, + "%": 10, + "redis.server": 1, + "plugin.display_name": 1, + "unstable": 2, + "string.sub": 2, + "possible_cached_formula.file": 1, + "nil": 21, + "type.to_s.upcase": 1, + "paths": 3, + "gets": 1, + "@stack.call": 1, + "alias": 1, + "redis_id": 2, + "camel_cased_word.to_s": 1, + "here": 1, + "class_value": 3, + "Archive": 1, + "encoded": 1, + "variant": 1, + "DCMAKE_INSTALL_PREFIX": 1, + "Dir.pwd": 3, + "before_first_fork": 2, + "self.redis": 2, + "rules": 1, + "partial": 1, + "system": 1, + "titleize": 1, + "instance": 2, + "user": 1, + "attrs.each": 1, + "NoQueueError.new": 1, + "Array": 2, + "upcase": 1, + "install_type": 4, + "extend": 2, + ".upcase": 1, + ".deep_merge": 1, + "self.class.send": 1, + "dump_errors": 1, + "private": 3, + "self": 11, + "map": 1, + "formula_with_that_name.file": 1, + "key.sub": 1, + "args.empty": 1, + "<body>": 1, + "child": 1, + "servers": 1, + "@skip_clean_paths": 3, + "h": 2, + "number.to_i.abs": 2, + "Base": 2, + "Namespace.new": 2, + "fork": 1, + "klass": 16, + "logging": 2, + "to_check": 2, + "string.gsub": 1, + "and": 6, + "File.basename": 2, + "send_file": 1, + "possible_alias.file": 1, + "to": 1, + "phone_numbers": 1, + "Formula.path": 1, + ".unshift": 1, + "hash": 2, + "rack": 1, + "from": 1, + "CompilerFailure.new": 2, + "arg": 1, + "word.tr": 1, + "klass.new": 2, + "fetched": 4, + "static_cache_control": 1, + ".freeze": 1, + "super": 3, + "this": 2, + "enc": 5, + "@queues": 2, + "Redis": 3, + "Inflector": 1, + "failed": 3, + "|": 91, + "installed_prefix.children.length": 1, + "ENV.kind_of": 1, + "acc": 2, + "patch_list.download": 1, + "a": 10, + "false": 26, + "var": 1, + "get": 2, + "preferred_type": 1, + "name.basename": 1, + "head_prefix": 2, + "self.names": 1, + "bin": 1, + "begin": 9, + "Digest.const_get": 1, + "fn.incremental_hash": 1, + "+": 47, + "first": 1, + "plist_path": 1, + "singularize": 2, + "FileUtils": 1, + "path.keys": 1, + ".to_s.split": 1, + "..": 1, + "fn": 2, + "alias_method": 2, + "/redis": 1, + "not": 3, + "u": 1, + "word.gsub": 4, + "removed_ENV_variables": 2, + "class": 7, + "instance_variable_set": 1, + "Z": 3, + "ThreadError": 1, + "pid": 1, + "gem": 1, + "man4": 1, + "inline": 3, + "This": 1, + "keg_only_reason": 1, + ".collect": 2, + "ancestor.const_defined": 1, + "result": 8, + "Job.destroy": 1, + "char": 4, + "all": 1, + "built": 1, + "never": 1, + "Proc.new": 11, + "default": 2, + "stack": 2, + "m.public_instance_methods": 1, + "validate": 1, + "@queue": 1, + "disable": 1, + "bottle_base_url": 1, + "HOMEBREW_CACHE_FORMULA.mkpath": 1, + "</h2>": 1, + "redis.respond_to": 2, + "dependencies": 1, + "clear": 1, + "self.class.cc_failures.find": 1, + "Jekyll": 3, + "deps": 1, + "self.attr_rw": 1, + "server": 11, + "redis": 7, + "n": 4, + "libexec": 1, + "||": 22, + "/_id": 1, + "word.to_s.dup": 1, + "test": 5, + "db": 3, + "redis.lrange": 1, + "user.is_admin": 1, + "retry": 2, + "rd.read": 1, + "Foo": 1, + "/Library/Taps/": 1, + "self.defer": 1, + "@standard": 3, + "v.to_s.empty": 1, + "@instance": 2, + "camel_cased_word": 6, + "@specs": 3, + "Resque": 3, + "hash.upcase": 1, + "result.sub": 2, + "keg_only": 2, + "p.compressed_filename": 2, + ".downcase": 2, + "@dependencies": 1, + "@buildpath": 2, + "version": 10, + "lot": 1, + "entries.map": 1, + "zA": 1, + "skip_clean_paths": 1, + "klass.instance_variable_get": 1, + "queue.to_s": 1, + "remove": 1, + "break": 4, + "exec": 2, + "word.downcase": 1, + "plugin": 3, + "klass.queue": 1, + "Jenkins": 1, + "width": 1, + "mirrors": 4, + "s/": 1, + "before_fork": 2, + "apply_inflections": 3, + "string": 4, + "ARGV.formulae.include": 1, + "Grit": 1, + "deconstantize": 1, + "not_found": 1, + "method_name": 5, + "path.stem": 1, + "in": 3, + "MacOS.lion": 1, + "prefixed_redirects": 1, + "@spec_to_use": 4, + "sha256": 1, + "yield": 5, + "run": 2, + "cc": 3, + "helpers": 3, + "ordinal": 1, + "formula_with_that_name": 1, + "settings.add_charset": 1, + "parts.pop": 1, + "patches": 2, + "FileUtils.rm": 1, + "target": 1, + "key": 8, + "@version": 10, + "YAML.load_file": 1, + "HOMEBREW_REPOSITORY/": 2, + "klass.respond_to": 1, + "item": 4, + "@after_fork": 2, + "Formula.canonical_name": 1, + "File.dirname": 4, + "@downloader": 2, + "use": 1, + "mirror_list": 2, + "mime_type": 1, + "<h2>": 1, + "cached_download": 1, + "{": 68, + "rescue": 13, + "Pathname.new": 3, + "self.class.keg_only_reason": 1, + "share": 1, + "Za": 1, + "head_prefix.directory": 1, + "#plugin.depends_on": 1, + "part": 1, + "skip_clean": 2, + ".strip": 1, + "do": 35, + "config": 3, + "put": 1, + "HOMEBREW_CACHE_FORMULA": 2, + "table": 2, + "name.kind_of": 2, + "then": 4, + "#c": 1, + "word": 10, + "workers": 2, + "instance_eval": 2, + "pattern": 1, + "<<": 15, + "bottle_filename": 1, + "working.size": 1, + "*": 3, + "@user": 1, + "@coder": 1, + "env": 2, + "Job.create": 1, + "**256": 1, + "cmd.split": 1, + "/@name": 1, + "etc": 1, + "u.phone_numbers": 1, + "font": 2, + "gzip": 1, + "pnumbers": 1, + "list_range": 1, + "cc.name": 1, + "size": 3, + "redis.nodes.map": 1, + "px": 3, + "t": 3, + "http": 1, + "raise": 17, + "@cc_failures": 2, + "pending": 1, + "like": 1, + ".flatten.uniq": 1, + "</head>": 1, + "redis.smembers": 1, + "lock": 1, + "<html>": 1, + "default_encoding": 1, + "man3": 1, + "attr_accessor": 2, + "@spec_to_use.download_strategy": 1, + "queue_from_class": 4, + "margin": 2, + "dep": 3, + "n.id": 1, + "tableize": 2, + "delegate": 1, + "#": 100, + "return": 25, + "self.class.dependencies.deps": 1, + "incomplete": 1, + "rv": 3, + "use_code": 1, + "post": 1, + "ARGV.build_devel": 2, + "None": 1, + "block_given": 5, + "unless": 15, + "skip_clean_all": 2, + "Expected": 1, + "err": 1, + "SHEBANG#!ruby": 2, + "m": 3, + "require_all": 4, + "server.split": 2, + "SHEBANG#!macruby": 1, + "methods": 1, + "@before_fork": 2, + "Hash.new": 1, + "it": 1, + "protected": 1, + "html": 1, + "Try": 1, + "Plugin": 1, + "initialize": 2, + "Delegator.target.send": 1, + ".flatten": 1, + "protection": 1, + "//": 3, + "Formula.expand_deps": 1, + "man": 9, + "path.to_s": 3, + "invalid": 1, + "server.unshift": 6, + "mirror_list.empty": 1, + "patch_list.empty": 1, + "safe_system": 4, + "Plugin.after_enqueue_hooks": 1, + "don": 1, + "ActiveSupport": 1, + "underscored_word.tr": 1, + "true": 15, + "attr_reader": 5, + "stable": 2, + "supplied.empty": 1, + "Compiler": 1, + "f": 11, + "Delegator.target.use": 1, + "Request": 2, + "extensions.map": 1, + "autotools": 1, + "CurlBottleDownloadStrategy.new": 1, + "download": 1, + "<div>": 1, + "sbin": 1, + "self.register": 2, + "opoo": 1, + "@bottle_version": 1, + "count": 5, + "BuildError.new": 1, + "left": 1, + "patch_list.each": 1, + "</div>": 1, + "wr.close": 1, + "plugin.version": 1, + "before": 1, + "URI.escape": 1, + "bottle_sha1": 2, + "method": 4, + "part.empty": 1, + "above.": 1, + "self.delegate": 1, + "redis.lindex": 1, + "z": 7, + "replacement": 4, + "does": 1, + "until": 1, + "self.sha1": 1, + "@bottle_url": 2, + "start": 7, + "_": 2, + "mirror": 1, + "on": 2, + "base": 4, + "&&": 8, + "bottle_block.data": 1, + "DCMAKE_FIND_FRAMEWORK": 1, + "patch_list.external_patches": 1, + "if": 72, + "method_override": 4, + "self.class_s": 2, + "f.deps.map": 1, + "<!DOCTYPE>": 1, + "bottle_block.instance_eval": 1, + "dev": 1, + "path.rindex": 2, + "Pathname": 2, + "self.expand_deps": 1, + ")": 256, + "xml": 2, + "nend": 1, + "lower_case_and_underscored_word.to_s.dup": 1, + "queue": 24, + "pretty_args.delete": 1, + "@spec_to_use.url": 1, + ".slice": 1, + "ArgumentError": 1, + "views": 1, + "names": 2, + "@env": 2, + "@#": 2, + "SecureRandom.hex": 1, + "curl": 1, + "threw": 1, + "data": 1, + "ordinalize": 1, "s": 2, - "only": 2, - "captured": 2, - "update": 2, - "uselimit": 2, - "querys": 2, - "LIMIT": 2, - "still": 2, - "gets": 2, - "proper": 2, - "searchresult": 2, - "separate": 2, - "COUNT": 2 + "mismatch": 1, + "table_name": 1, + "characters": 1, + "</style>": 1, + "possible_cached_formula": 1, + "release": 1, + "define_method": 1, + "Process.wait": 1, + "download_strategy.new": 2, + "man2": 1, + "ARGV.verbose": 2, + "development": 6, + "camel_cased_word.split": 1, + "self.class.mirrors": 1, + "self.new": 1, + "result.gsub": 2, + "coder": 3, + "public": 2, + "match": 6, + "ruby_engine": 6, + "set_instance_variable": 12, + "self.class.skip_clean_all": 1, + "dependencies.add": 1, + "block": 30, + ".gsub": 5, + "working": 2, + "table_name.to_s.sub": 1, + "json": 1, + "entries": 1, + "bottle_url": 3, + "specs": 14, + "NameError": 2, + ".sort": 2, + "inflections.humans.each": 1, + "one": 1, + "Rails": 1, + "HTML": 2, + "HOMEBREW_REPOSITORY": 4, + "Specification.new": 1, + "outside": 2, + "result.tr": 1, + "distributed": 1, + "tap": 1, + "bind": 1, + "module": 8, + "FormulaUnavailableError.new": 1, + "expand_deps": 1, + "error": 3, + "Q": 1, + "webrick": 1, + "capitalize": 1, + "is": 3, + "message": 2, + "e.name.to_s": 1, + "<style>": 1, + "request.request_method.downcase": 1, + "@mirrors": 3, + "path.respond_to": 5, + "Delegator.delegate": 1, + "add_charset": 1, + "processed": 2, + "demodulize": 1, + "from_name": 2, + "klass.to_s.empty": 1, + "caveats": 1, + "p.compression": 1, + "info": 2, + "bottle": 1, + "e.message": 2, + "Parser.new": 1, + "accept_entry": 1, + "stage": 2, + "explanation.to_s.chomp": 1, + "Dir": 4, + "*args": 16, + "self.class.dependencies.external_deps": 1, + "fetched.kind_of": 1, + "e": 8, + "email": 1, + "SoftwareSpecification.new": 3, + "fetch": 2, + "TypeError": 1, + "body": 1, + "supplied.upcase": 1, + "Z0": 1, + "use/testing": 1, + "include": 3, + "missing": 1, + "self.url": 1, + "*/": 1, + "settings": 2, + "/": 34, + "possible_alias": 1, + ".each": 4, + "failure.build": 1, + "instance_variable_get": 2, + "Delegator": 1, + "config.is_a": 1, + ".pop": 1, + "Redis.respond_to": 1, + "MultiJsonCoder.new": 1, + "DEFAULTS.deep_merge": 1, + "reload_templates": 1, + "result.downcase": 1, + "via": 1, + "created_at": 1, + "bzip2": 1, + "auto": 1, + "Z_": 1, + "klass_name": 2, + "err.to_s": 1, + "term.to_s": 1, + "man8": 1, + "self.factory": 1, + "supplied": 4, + "methodoverride": 2, + "KegOnlyReason.new": 1, + "@stack": 1, + "self.map": 1, + "(": 244, + "URI.const_defined": 1, + ".first": 1, + "Worker.working": 1, + "target_file": 6, + "checksum_type": 2, + "@standard.nil": 1, + "val.nil": 3, + "plugin.description": 1, + "parts": 1, + "HOMEBREW_CELLAR": 2, + "CurlDownloadStrategyError": 1, + "rd.close": 1, + "lib": 1, + "f_dep": 3, + "node_numbers": 1, + "ARGV.named.empty": 1, + "@skip_clean_all": 2, + "inflections.plurals": 1, + "self.version": 1, + "failure": 1, + "name.to_s": 3, + ".capitalize": 1, + "r": 3, + "brew": 2, + "@url.nil": 1, + "Delegator.target.register": 1, + "exit": 2, + "Formula.factory": 2, + "queues": 3, + "self.data": 1, + "after": 1, + "source": 2, + "W": 1, + "cc_failures": 1, + "rules.each": 1, + "rule": 4, + "tapd": 1, + "of": 1, + "ditty.": 1, + "man1": 1, + "self.class.cc_failures.nil": 1, + "name": 51, + "<": 2, + "EOF": 2, + "sessions": 1, + "public_folder": 3, + "</html>": 1, + "patch_list": 1, + "app_file": 4, + "mktemp": 1, + "load": 3, + "cc.is_a": 1, + ".flatten.each": 1, + "value": 4, + "from_url": 1, + "Stat": 2, + "because": 1, + "DEFAULTS": 2, + "possible_alias.realpath.basename": 1, + "k": 2, + "class_eval": 1, + "family": 1, + "registered_at": 1, + "self.canonical_name": 1, + "@head": 4, + "redis.keys": 1, + "linked_keg": 1, + "name.capitalize.gsub": 1, + "@path": 1, + "external_deps": 1, + "dep.to_s": 1, + "thread_safe": 2, + "environment": 2, + "center": 1, + "attr": 4, + "ruby_engine.nil": 1, + "before_hooks.any": 2, + ".sort_by": 1, + "Delegator.target.helpers": 1, + "png": 1, + "camel_cased_word.to_s.dup": 1, + "_.": 1, + "self.aliases": 1, + "after_fork": 2, + "cmd": 6, + "namespace": 3, + "task": 2, + "helvetica": 1, + ".size": 1, + "<pre>": 1, + "ARGV.build_head": 2, + "require": 58, + "validate_variable": 7, + "the": 8, + "number": 2, + "root": 5, + "d": 6, + ".to_s": 3, + "prefix.parent": 1, + "explanation": 1, + "queues.size": 1, + "nodes": 1, + "cc.build": 1, + "CHECKSUM_TYPES.detect": 1, + "bottle_version": 2, + "@bottle_sha1": 2, + "SHEBANG#!rake": 1, + "pop": 1, + "Application": 2, + "from_path": 1, + "Rack": 1, + "added_methods": 2, + "name.include": 2, + "Z/": 1, + "Pathname.pwd": 1, + "self.helpers": 1, + "before_hooks": 2, + "relative_pathname.stem.to_s": 1, + ".": 3, + "queues.inject": 1, + "last": 4, + "remove_queue": 1, + "CHECKSUM_TYPES": 2, + "next": 1, + "classify": 1, + "failure.build.zero": 1, + "now": 1, + "override": 3, + "accept": 1, + "path.realpath.to_s": 1, + "NoClassError.new": 1, + "const_regexp": 3, + "for": 1, + "explicitly_requested": 1, + "LoadError": 3, + "]": 56, + "Formula": 2, + "remove_worker": 1, + "man7": 1, + "id": 1, + "location": 1, + "defined": 1, + "plist_name": 2, + "Parser": 1, + "possible_cached_formula.to_s": 1, + "DependencyCollector.new": 1, + "Object.const_get": 1, + "extends": 1, + "content_type": 3, + "Helpers": 1, + "production": 1, + "VERSION": 1, + "recursive_deps": 1, + "install_bottle": 1, + "hook": 9, + "plugin.name": 1, + "xhtml": 1, + "URI": 3, + "peek": 1, + "session_secret": 3, + "NotImplementedError": 1, + "worker": 1, + "elsif": 7, + "DCMAKE_BUILD_TYPE": 1, + "reset": 1, + "type=": 1, + "inflections.uncountables.include": 1, + "class_name": 2, + "sha1.shift": 1, + "bottle_block": 1, + "/i": 2, + "self.method_added": 1, + "camelcase": 1, + "@skip_clean_paths.include": 1, + "stdout.reopen": 1, + "std_autotools": 1, + "raise_errors": 1, + "downloader": 6, + "For": 1, + ";": 41, + "SystemCallError": 1, + "Create": 1, + "puts": 12, + "enable": 1, + "inside": 2, + "empty_path_info": 1, + "#remove": 1, + "show_exceptions": 1 + }, + "GAS": { + "xd": 1, + "xe": 1, + "LSFDE1": 1, + "xc": 1, + "LECIE1": 2, + "EH_frame1": 2, + "leave": 1, + "rip": 1, + "rsp": 1, + ".ascii": 2, + "_main.eh": 2, + ".align": 2, + "movl": 1, + "leaq": 1, + "movq": 1, + "pushq": 1, + ".cstring": 1, + "LEFDE1": 2, + "LSCIE1": 2, + "LFE3": 2, + "call": 1, + "LCFI1": 2, + "LCFI0": 3, + "LC0": 2, + ".subsections_via_symbols": 1, + "LFB3": 4, + "set": 10, + "live_support": 1, + "no_toc": 1, + "__TEXT": 1, + "ret": 1, + ".globl": 2, + "LASFDE1": 3, + "strip_static_syms": 1, + ".section": 1, + "rbp": 2, + "_main": 2, + ".text": 1, + "eax": 1, + ".quad": 2, + ".byte": 20, + ".long": 6, + "_puts": 1, + "rdi": 1, + ".": 1, + "-": 7, + "L": 10, + ".set": 5, + "+": 2, + "coalesced": 1, + "__eh_frame": 1, + ")": 1, + "(": 1, + "%": 6 + }, + "XProc": { + "Hello": 1, + "<?xml>": 1, + "<p:input>": 1, + "<p:declare-step>": 1, + "version=": 2, + "<p:identity/>": 1, + "p=": 1, + "xmlns": 2, + "<p:output>": 1, + "</p:input>": 1, + "world": 1, + "port=": 2, + "</p:inline>": 1, + "</doc>": 1, + "<doc>": 1, + "<p:inline>": 1, + "c=": 1, + "</p:declare-step>": 1, + "encoding=": 1 + }, + "ApacheConf": { + "connect": 2, + "proxy_balancer_module": 2, + "CustomLog": 2, + "warn": 2, + "/usr/lib/apache2/modules/mod_userdir.so": 1, + "proxy_ftp_module": 2, + "authz_owner_module": 2, + "HTTP_COOKIE": 1, + "libexec/apache2/mod_deflate.so": 1, + "/usr/lib/apache2/modules/mod_authz_user.so": 1, + "/": 3, + "libexec/apache2/mod_cgi.so": 1, + "#LoadModule": 4, + "dbd_module": 2, + "/usr/lib/apache2/modules/mod_speling.so": 1, + "OR": 14, + "HTTrack": 1, + "ScriptAlias": 1, + "-": 43, + "wget": 2, + "default": 1, + "/usr/lib/apache2/modules/mod_proxy.so": 1, + "/usr/lib/apache2/modules/mod_cgi.so": 1, + "#EnableMMAP": 2, + "libexec/apache2/mod_authn_file.so": 1, + "</Files>": 1, + "daemon": 2, + "SSLRandomSeed": 4, + "injects": 1, + "/usr/lib/apache2/modules/mod_include.so": 1, + "/var/run/apache2/cgisock": 1, + "libexec/apache2/mod_disk_cache.so": 1, + "libexec/apache2/mod_proxy_connect.so": 1, + "languages.conf": 2, + "libexec/apache2/mod_mime_magic.so": 1, + "ScriptAliasMatch": 1, + "/usr/lib/apache2/modules/mod_ident.so": 1, + ")": 17, + "authnz_ldap_module": 1, + "dav_fs_module": 2, + "mime_module": 4, + "userdir.conf": 2, + "/etc/apache2/extra/httpd": 11, + "</IfModule>": 17, + "mySQL": 1, + "suexec_module": 1, + "NC": 13, + "libexec/apache2/mod_info.so": 1, + "unlimited": 1, + "/usr/lib/apache2/modules/mod_mime.so": 1, + "Dd": 1, + "/usr/lib/apache2/modules/mod_headers.so": 1, + "AddType": 4, + "}": 16, + "libexec/apache2/mod_include.so": 1, + "ident_module": 2, + "substitute_module": 1, + "scan": 1, + "libexec/apache2/mod_setenvif.so": 1, + "#AddEncoding": 4, + "libexec/apache2/mod_log_forensic.so": 1, + "rewrite_module": 2, + "auth_basic_module": 2, + "%": 48, + "libexec/apache2/mod_proxy_balancer.so": 1, + "authz_default_module": 2, + "{": 16, + "HTTP_REFERER": 1, + "deny": 10, + "#": 182, + "dumpio_module": 2, + "libexec/apache2/mod_version.so": 1, + "#Block": 1, + "libexec/apache2/mod_dir.so": 1, + "logio_module": 3, + "libexec/apache2/mod_authz_owner.so": 1, + "<FilesMatch>": 2, + "libexec/apache2/libphp5.so": 1, + "/usr/lib/apache2/modules/mod_cern_meta.so": 1, + "Allow": 4, + "imagemap_module": 2, + "/usr/lib/apache2/modules/mod_authnz_ldap.so": 1, + "info_module": 2, + "libexec/apache2/mod_dav_fs.so": 1, + ".gz": 4, + "libexec/apache2/mod_authz_dbm.so": 1, + "cgid_module": 3, + "/usr/lib/apache2/modules/mod_authz_dbm.so": 1, + "Satisfy": 4, + ".0": 2, + "All": 4, + "setenvif_module": 2, + "/var/log/apache2/error_log": 1, + "/usr/lib/apache2/modules/mod_alias.so": 1, + "RewriteRule": 1, + ".shtml": 4, + "libexec/apache2/mod_proxy_scgi.so": 1, + "harvest": 1, + "/usr/lib/apache2/modules/mod_auth_digest.so": 1, + "miner": 1, + "ServerSignature": 1, + "libexec/apache2/mod_authn_default.so": 1, + "F": 1, + "/usr/lib/apache2/modules/mod_rewrite.so": 1, + "vhosts.conf": 2, + "libexec/apache2/mod_alias.so": 1, + "libexec/apache2/mod_hfs_apple.so": 1, + "<Files>": 1, + "/private/etc/apache2/extra/httpd": 11, + "proxy_scgi_module": 1, + "D": 6, + "</DirectoryMatch>": 1, + "/usr/lib/apache2/modules/mod_mem_cache.so": 1, + "/usr/lib/apache2/modules/mod_usertrack.so": 1, + ".*": 3, + "libexec/apache2/mod_log_config.so": 1, + "file_cache_module": 1, + "libexec/apache2/mod_ssl.so": 1, + "/usr/lib/apache2/modules/mod_dav_lock.so": 1, + "/usr/lib/apache2/modules/mod_proxy_balancer.so": 1, + "/usr/lib/apache2/modules/mod_proxy_ajp.so": 1, + "ErrorLog": 2, + "vhost_alias_module": 2, + "unique_id_module": 2, + "archiver": 1, + "libexec/apache2/mod_reqtimeout.so": 1, + "DELETE": 1, + "disk_cache_module": 2, + "libexec/apache2/mod_autoindex.so": 1, + "/usr/lib/apache2/modules/mod_authn_dbd.so": 1, + "Group": 2, + "autoindex_module": 2, + "Options": 6, + "Deny": 6, + "MultiViews": 1, + ".cgi": 2, + "</FilesMatch>": 2, + "email": 1, + "gzip": 6, + "authn_dbm_module": 2, + "var": 2, + "/cgi": 2, + "index.html": 2, + "libexec/apache2/mod_unique_id.so": 1, + "/usr/lib/apache2/modules/mod_status.so": 1, + "dav.conf": 2, + "i": 1, + "/usr/lib/apache2/modules/mod_proxy_ftp.so": 1, + "THE_REQUEST": 1, + "cgi_module": 2, + "<IfModule>": 17, + "/usr/lib/apache2/modules/mod_dav.so": 1, + "/usr/lib/apache2/modules/mod_ext_filter.so": 1, + "<": 1, + "Executables": 1, + "libexec/apache2/mod_dbd.so": 1, + "/usr/lib/apache2/modules/mod_proxy_http.so": 1, + "filter_module": 2, + "CGI": 1, + "/var/log/apache2/access_log": 2, + "/usr/lib/apache2/modules/mod_actions.so": 1, + "text/plain": 2, + "combinedio": 2, + "log_forensic_module": 2, + "extract": 1, + "libexec/apache2/mod_authn_dbm.so": 1, + "/usr/lib/apache2/modules/mod_cgid.so": 1, + "#AddType": 4, + "libexec/apache2/mod_dumpio.so": 1, + "DocumentRoot": 2, + "<|>": 6, + "/usr/lib/apache2/modules/mod_log_forensic.so": 1, + "headers_module": 2, + "usr": 2, + "bin/": 2, + "curl": 2, + "LogFormat": 6, + "site": 1, + "libexec/apache2/mod_rewrite.so": 1, + "a": 1, + "dav_lock_module": 1, + "ServerAdmin": 2, + "proxy_http_module": 2, + "userdir_module": 2, + "libexec/apache2/mod_imagemap.so": 1, + "/usr/lib/apache2/modules/mod_suexec.so": 1, + "insert": 1, + "select": 1, + "_": 1, + "QUERY_STRING": 5, + "None": 8, + "authz_groupfile_module": 2, + "FollowSymLinks": 4, + "multilang": 2, + "version_module": 2, + "alias_module": 4, + "drop": 1, + "REQUEST_METHOD": 1, + "]": 17, + "deflate_module": 2, + "libexec/apache2/mod_authn_dbd.so": 1, + "combined": 4, + "authz_user_module": 2, + "webobjects": 1, + "/usr/lib/apache2/modules/mod_env.so": 1, + "Hh": 1, + "text/html": 2, + "Documents": 1, + "speling_module": 2, + "/usr/lib/apache2/modules/mod_dav_fs.so": 1, + "[": 17, + "mime_magic_module": 2, + "hfs_apple_module": 1, + "all": 10, + ".": 7, + "<DirectoryMatch>": 1, + "info.conf": 2, + "AllowOverride": 6, + "<Directory>": 6, + "libwww": 1, + "HEAD": 1, + "/usr/lib/apache2/modules/mod_ssl.so": 1, + "#Include": 17, + "authz_dbm_module": 2, + "Order": 10, + "/missing.html": 2, + "bin": 1, + "ssl.conf": 2, + "TypesConfig": 2, + "dav_module": 2, + "/usr/lib/apache2/modules/mod_asis.so": 1, + "union": 1, + "*": 1, + "/usr/lib/apache2/modules/mod_vhost_alias.so": 1, + "/usr/lib/apache2/modules/mod_authz_host.so": 1, + "rsrc": 1, + "/usr/lib/apache2/modules/mod_unique_id.so": 1, + "php5_module": 1, + "loopback": 1, + "LoadModule": 126, + "User": 2, + "grab": 1, + "update": 1, + "localhost": 1, + "/usr/lib/apache2/modules/mod_autoindex.so": 1, + "Ss": 2, + "(": 16, + "libexec/apache2/mod_cern_meta.so": 1, + "nikto": 1, + "proxy_connect_module": 2, + "DefaultType": 2, + "htdocs": 1, + "mem_cache_module": 2, + "#AddOutputFilter": 2, + "</Directory>": 6, + "allow": 10, + "/usr/lib/apache2/modules/mod_info.so": 1, + "/usr/lib/apache2/modules/mod_auth_basic.so": 1, + "http": 2, + "java": 1, + "mpm.conf": 2, + "libexec/apache2/mod_env.so": 1, + "INCLUDES": 2, + "|": 80, + "/usr/lib/apache2/modules/mod_filter.so": 1, + "mpm_netware_module": 2, + "libexec/apache2/mod_filter.so": 1, + "Indexes": 2, + "libexec/apache2/mod_authz_default.so": 1, + "builtin": 4, + "startup": 2, + "/usr/lib/apache2/modules/mod_version.so": 1, + "negotiation_module": 2, + "TraceEnable": 1, + "Off": 1, + "you@example.com": 2, + "perl": 1, + "TRACK": 1, + "mpm_winnt_module": 1, + "#EnableSendfile": 2, + "/usr/lib/apache2/modules/mod_imagemap.so": 1, + "winhttp": 1, + "libexec/apache2/mod_userdir.so": 1, + "/usr/lib/apache2/modules/mod_authn_dbm.so": 1, + "cache_module": 2, + "type": 2, + "/usr/lib/apache2/modules/mod_dir.so": 1, + "perl_module": 1, + "env_module": 2, + "libexec/apache2/mod_proxy_ajp.so": 1, + "/usr/lib/apache2/modules/mod_dumpio.so": 1, + "authn_dbd_module": 2, + "loader": 1, + "x": 4, + "libexec/apache2/mod_headers.so": 1, + "#AddHandler": 4, + "#ServerName": 2, + "#Scriptsock": 2, + ".1": 1, + "cast": 1, + "proxy_module": 2, + "autoindex.conf": 2, + "libexec/apache2/mod_proxy.so": 1, + "#MaxRanges": 1, + "errordoc.conf": 2, + "#Listen": 2, + "libexec/apache2/mod_status.so": 1, + "/etc/apache2/mime.types": 1, + "set": 1, + "asis_module": 2, + "libexec/apache2/mod_vhost_alias.so": 1, + "libexec/apache2/mod_substitute.so": 1, + "./": 1, + "TRACE": 1, + "RewriteCond": 15, + "/usr/lib/apache2/modules/mod_authz_groupfile.so": 1, + "auth_digest_module": 2, + "application/x": 6, + ".Z": 4, + "libexec/apache2/mod_ext_filter.so": 1, + "_www": 2, + "LogLevel": 2, + "r": 1, + "ssl_module": 4, + "/usr/lib/apache2/modules/mod_cache.so": 1, + "www.example.com": 2, + "compress": 4, + "Include": 6, + "status_module": 2, + "common": 4, + "Listen": 2, + "E": 5, + "libexec/apache2/mod_mime.so": 1, + "map": 2, + "/usr/lib/apache2/modules/mod_proxy_connect.so": 1, + "md5": 1, + "/usr/lib/apache2/modules/mod_authz_owner.so": 1, + "libexec/apache2/mod_proxy_http.so": 1, + "libexec/apache2/mod_asis.so": 1, + "libexec/apache2/mod_mem_cache.so": 1, + "charset_lite_module": 1, + "clshttp": 1, + "C": 5, + "authn_alias_module": 1, + "libexec/apache2/mod_dav.so": 1, + "/usr/lib/apache2/modules/mod_authn_default.so": 1, + "n": 1, + ".tgz": 6, + "index.php": 1, + "/usr/lib/apache2/modules/mod_disk_cache.so": 1, + "lib": 1, + "//www.example.com/subscription_info.html": 2, + "Tt": 1, + "reqtimeout_module": 1, + "libexec/apache2/mod_proxy_ftp.so": 1, + "#ErrorDocument": 8, + "from": 10, + "A": 6, + "Library": 2, + "ldap_module": 1, + "/usr/lib/apache2/modules/mod_ldap.so": 1, + "libexec/apache2/mod_actions.so": 1, + "/usr/lib/apache2/modules/mod_deflate.so": 1, + "WebServer": 2, + "libexec/apache2/mod_speling.so": 1, + "/private/etc/apache2/mime.types": 1, + "ServerRoot": 2, + "actions_module": 2, + "authn_default_module": 2, + "benchmark": 1, + "z0": 1, + "/usr/lib/apache2/modules/mod_setenvif.so": 1, + "script": 2, + "libexec/apache2/mod_negotiation.so": 1, + "libexec/apache2/mod_perl.so": 1, + "libexec/apache2/mod_auth_basic.so": 1, + "python": 1, + "libexec/apache2/mod_usertrack.so": 1, + "share": 1, + "namedfork": 1, + "ext_filter_module": 2, + "#MIMEMagicFile": 2, + "authn_file_module": 2, + "include_module": 2, + "libexec/apache2/mod_auth_digest.so": 1, + "DirectoryIndex": 2, + "HTTP_USER_AGENT": 5, + "libexec/apache2/mod_authn_anon.so": 1, + "/usr/lib/apache2/modules/mod_dbd.so": 1, + ";": 2, + "libexec/apache2/mod_logio.so": 1, + "cern_meta_module": 2, + "/usr/lib/apache2/modules/mod_authz_default.so": 1, + "libexec/apache2/mod_authz_groupfile.so": 1, + "default.conf": 2, + "libexec/apache2/mod_authz_user.so": 1, + "/private/etc/apache2/other/*.conf": 1, + "#CustomLog": 2, + "log_config_module": 3, + "/usr/lib/apache2/modules/mod_expires.so": 1, + "/usr/lib/apache2/modules/mod_charset_lite.so": 1, + "libexec/apache2/mod_authz_host.so": 1, + "cgi": 3, + "authn_anon_module": 2, + "/usr/lib/apache2/modules/mod_negotiation.so": 1, + "usertrack_module": 2, + "declare": 1, + "/usr/lib/apache2/modules/mod_authn_anon.so": 1, + "expires_module": 2, + "libexec/apache2/mod_cache.so": 1, + "REQUEST_URI": 1, + "authz_host_module": 2, + "/usr/lib/apache2/modules/mod_authn_file.so": 1, + "/etc/apache2/magic": 1, + "apache2": 1, + "libexec/apache2/mod_ident.so": 1, + "dir_module": 4, + "/usr/lib/apache2/modules/mod_authn_alias.so": 1, + "off": 5, + "manual.conf": 2, + "/private/etc/apache2/magic": 1, + "libexec/apache2/mod_expires.so": 1, + "ht": 1, + "/private/var/run/cgisock": 1, + "proxy_ajp_module": 2, + "/usr/lib/apache2/modules/mod_file_cache.so": 1, + "/usr/lib/apache2/modules/mod_mime_magic.so": 1 }, "Less": { - "@blue": 4, - "#3bbfce": 1, - ";": 7, - "@margin": 3, - "px": 1, - ".content": 1, - "-": 3, - "navigation": 1, - "{": 2, - "border": 2, - "color": 3, - "darken": 1, - "(": 1, - "%": 1, - ")": 1, - "}": 2, - ".border": 1, "padding": 1, + ".border": 1, + ".content": 1, + "color": 3, + "border": 2, + "#3bbfce": 1, + "px": 1, + "@blue": 4, + "darken": 1, + "navigation": 1, + "margin": 1, + "@margin": 3, "/": 2, - "margin": 1 - }, - "LFE": { - ";": 213, - "Copyright": 4, - "(": 217, - "c": 4, - ")": 231, - "Duncan": 4, - "McGreggor": 4, - "<oubiwann@cogitat.io>": 2, - "Licensed": 3, - "under": 9, - "the": 36, - "Apache": 3, - "License": 12, - "Version": 3, - "you": 3, - "may": 6, - "not": 5, - "use": 6, - "this": 3, - "file": 6, - "except": 3, - "in": 10, - "compliance": 3, - "with": 8, - "License.": 6, - "You": 3, - "obtain": 3, - "a": 8, - "copy": 3, - "of": 10, - "at": 4, - "http": 4, - "//www.apache.org/licenses/LICENSE": 3, - "-": 98, - "Unless": 3, - "required": 3, - "by": 4, - "applicable": 3, - "law": 3, - "or": 6, - "agreed": 3, - "to": 10, - "writing": 3, - "software": 3, - "distributed": 6, - "is": 5, - "on": 4, - "an": 5, - "BASIS": 3, - "WITHOUT": 3, - "WARRANTIES": 3, - "OR": 3, - "CONDITIONS": 3, - "OF": 3, - "ANY": 3, - "KIND": 3, - "either": 3, - "express": 3, - "implied.": 3, - "See": 3, - "for": 5, - "specific": 3, - "language": 3, - "governing": 3, - "permissions": 3, - "and": 7, - "limitations": 3, - "File": 4, - "church.lfe": 1, - "Author": 3, - "Purpose": 3, - "Demonstrating": 2, - "church": 20, - "numerals": 1, - "from": 2, - "lambda": 18, - "calculus": 1, - "The": 4, - "code": 2, - "below": 3, - "was": 1, - "used": 1, - "create": 4, - "section": 1, - "user": 1, - "guide": 1, - "here": 1, - "//lfe.github.io/user": 1, - "guide/recursion/5.html": 1, - "Here": 1, - "some": 2, - "example": 2, - "usage": 1, - "slurp": 2, - "five/0": 2, - "int2": 1, - "get": 21, - "defmodule": 2, - "export": 2, - "all": 1, - "defun": 20, - "zero": 2, - "s": 19, - "x": 12, - "one": 1, - "funcall": 23, - "two": 1, - "three": 1, - "four": 1, - "five": 1, - "int": 2, - "successor": 3, - "n": 4, - "+": 2, - "int1": 1, - "numeral": 8, - "#": 3, - "successor/1": 1, - "count": 7, - "limit": 4, - "cond": 1, - "/": 1, - "integer": 2, - "*": 6, - "Mode": 1, - "LFE": 4, - "Code": 1, - "Paradigms": 1, - "Artificial": 1, - "Intelligence": 1, - "Programming": 1, - "Peter": 1, - "Norvig": 1, - "gps1.lisp": 1, - "First": 1, - "version": 1, - "GPS": 1, - "General": 1, - "Problem": 1, - "Solver": 1, - "Converted": 1, - "Robert": 3, - "Virding": 3, - "Define": 1, - "macros": 1, - "global": 2, - "variable": 2, - "access.": 1, - "This": 2, - "hack": 1, - "very": 1, - "naughty": 1, - "defsyntax": 2, - "defvar": 2, - "[": 3, - "name": 8, - "val": 2, - "]": 3, - "let": 6, - "v": 3, - "put": 1, - "getvar": 3, - "solved": 1, - "gps": 1, - "state": 4, - "goals": 2, - "Set": 1, - "variables": 1, - "but": 1, - "existing": 1, - "*ops*": 1, - "*state*": 5, - "current": 1, - "list": 13, - "conditions.": 1, - "if": 1, - "every": 1, - "fun": 1, - "achieve": 1, - "op": 8, - "action": 3, - "setvar": 2, - "set": 1, - "difference": 1, - "del": 5, - "union": 1, - "add": 3, - "drive": 1, - "son": 2, - "school": 2, - "preconds": 4, - "shop": 6, - "installs": 1, - "battery": 1, - "car": 1, - "works": 1, - "make": 2, - "communication": 2, - "telephone": 1, - "have": 3, - "phone": 1, - "book": 1, - "give": 1, - "money": 3, - "has": 1, - "mnesia_demo.lfe": 1, - "A": 1, - "simple": 4, - "Mnesia": 2, - "demo": 2, - "LFE.": 1, - "contains": 1, - "using": 1, - "access": 1, - "tables.": 1, - "It": 1, - "shows": 2, - "how": 2, - "emp": 1, - "XXXX": 1, - "macro": 1, - "ETS": 1, - "match": 5, - "pattern": 1, - "together": 1, - "mnesia": 8, - "match_object": 1, - "specifications": 1, - "select": 1, - "Query": 2, - "List": 2, - "Comprehensions.": 1, - "mnesia_demo": 1, - "new": 2, - "by_place": 1, - "by_place_ms": 1, - "by_place_qlc": 2, - "defrecord": 1, - "person": 8, - "place": 7, - "job": 3, - "Start": 1, - "table": 2, - "we": 1, - "will": 1, - "memory": 1, - "only": 1, - "schema.": 1, - "start": 1, - "create_table": 1, - "attributes": 1, - "Initialise": 1, - "table.": 1, - "people": 1, - "spec": 1, - "p": 2, - "j": 2, - "when": 1, - "tuple": 1, - "transaction": 2, - "f": 3, - "Use": 1, - "Comprehensions": 1, - "records": 1, - "q": 2, - "qlc": 2, - "lc": 1, - "<": 1, - "e": 1, - "object.lfe": 1, - "OOP": 1, - "closures": 1, - "object": 16, - "system": 1, - "demonstrated": 1, - "do": 2, - "following": 2, - "objects": 2, - "call": 2, - "methods": 5, - "those": 1, - "which": 1, - "can": 1, - "other": 1, - "update": 1, - "instance": 2, - "Note": 1, - "however": 1, - "that": 1, - "his": 1, - "does": 1, - "demonstrate": 1, - "inheritance.": 1, - "To": 1, - "cd": 1, - "examples": 1, - "../bin/lfe": 1, - "pa": 1, - "../ebin": 1, - "Load": 1, - "fish": 6, - "class": 3, - "#Fun": 1, - "<lfe_eval.10.91765564>": 1, - "Execute": 1, - "basic": 1, - "species": 7, - "mommy": 3, - "move": 4, - "Carp": 1, - "swam": 1, - "feet": 1, - "ok": 1, - "id": 9, - "Now": 1, - "strictly": 1, - "necessary.": 1, - "When": 1, - "isn": 1, - "children": 10, - "formatted": 1, - "verb": 2, - "self": 6, - "distance": 2, - "erlang": 1, - "length": 1, - "method": 7, - "define": 1, - "info": 1, - "reproduce": 1 - }, - "Literate CoffeeScript": { - "The": 2, - "**Scope**": 2, - "class": 2, - "regulates": 1, - "lexical": 1, - "scoping": 1, - "within": 2, - "CoffeeScript.": 1, - "As": 1, - "you": 2, - "generate": 1, - "code": 1, - "create": 1, - "a": 8, - "tree": 1, - "of": 4, - "scopes": 1, - "in": 2, - "the": 12, - "same": 1, - "shape": 1, - "as": 3, - "nested": 1, - "function": 2, - "bodies.": 1, - "Each": 1, - "scope": 2, - "knows": 1, - "about": 1, - "variables": 3, - "declared": 2, - "it": 4, - "and": 5, - "has": 1, - "reference": 3, - "to": 8, - "its": 3, - "parent": 2, - "enclosing": 1, - "scope.": 2, - "In": 1, - "this": 3, - "way": 1, - "we": 4, - "know": 1, - "which": 3, - "are": 3, - "new": 2, - "need": 2, - "be": 2, - "with": 3, - "var": 4, - "shared": 1, - "external": 1, - "scopes.": 1, - "Import": 1, - "helpers": 1, - "plan": 1, - "use.": 1, - "{": 4, - "extend": 1, - "last": 1, - "}": 4, - "require": 1, - "exports.Scope": 1, - "Scope": 1, - "root": 1, - "is": 3, - "top": 2, - "-": 5, - "level": 1, - "object": 1, - "for": 3, - "given": 1, - "file.": 1, - "@root": 1, - "null": 1, - "Initialize": 1, - "lookups": 1, - "up": 1, - "chain": 1, - "well": 1, - "**Block**": 1, - "node": 1, - "belongs": 2, - "where": 1, - "should": 1, - "declare": 1, - "that": 2, - "to.": 1, - "constructor": 1, - "(": 5, - "@parent": 2, - "@expressions": 1, - "@method": 1, - ")": 6, - "@variables": 3, - "[": 4, - "name": 8, - "type": 5, - "]": 4, - "@positions": 4, - "Scope.root": 1, - "unless": 1, - "Adds": 1, - "variable": 1, - "or": 1, - "overrides": 1, - "an": 1, - "existing": 1, - "one.": 1, - "add": 1, - "immediate": 3, - "return": 1, - "@parent.add": 1, - "if": 2, - "@shared": 1, - "not": 1, - "Object": 1, - "hasOwnProperty.call": 1, - ".type": 1, - "else": 2, - "@variables.push": 1, - "When": 1, - "super": 1, - "called": 1, - "find": 1, - "current": 1, - "method": 1, - "param": 1, - "_": 3, - "then": 1, - "tempVars": 1, - "realVars": 1, - ".push": 1, - "v.name": 1, - "realVars.sort": 1, - ".concat": 1, - "tempVars.sort": 1, - "Return": 1, - "list": 1, - "assignments": 1, - "supposed": 1, - "made": 1, - "at": 1, - "assignedVariables": 1, - "v": 1, - "when": 1, - "v.type.assigned": 1 - }, - "LiveScript": { - "a": 8, - "-": 25, - "const": 1, - "b": 3, - "var": 1, - "c": 3, - "d": 3, - "_000_000km": 1, - "*": 1, - "ms": 1, - "e": 2, - "(": 9, - ")": 10, - "dashes": 1, - "identifiers": 1, - "underscores_i": 1, - "/regexp1/": 1, - "and": 3, - "//regexp2//g": 1, - "strings": 1, - "[": 2, - "til": 1, - "]": 2, - "or": 2, - "to": 2, - "|": 3, - "map": 1, - "filter": 1, - "fold": 1, - "+": 1, - "class": 1, - "Class": 1, - "extends": 1, - "Anc": 1, - "est": 1, - "args": 1, - "copy": 1, - "from": 1, - "callback": 4, - "error": 6, - "data": 2, - "<": 1, - "read": 1, - "file": 2, - "return": 2, - "if": 2, - "<~>": 1, - "write": 1 - }, - "Logos": { - "%": 15, - "hook": 2, - "ABC": 2, - "-": 3, - "(": 8, - "id": 2, - ")": 8, - "a": 1, - "B": 1, - "b": 1, - "{": 4, - "log": 1, - ";": 8, - "return": 2, - "orig": 2, - "nil": 2, - "}": 4, - "end": 4, - "subclass": 1, - "DEF": 1, - "NSObject": 1, - "init": 3, - "[": 2, - "c": 1, - "RuntimeAccessibleClass": 1, - "alloc": 1, - "]": 2, - "group": 1, - "OptionalHooks": 2, - "void": 1, - "release": 1, - "self": 1, - "retain": 1, - "ctor": 1, - "if": 1, - "OptionalCondition": 1 - }, - "Logtalk": { - "-": 3, - "object": 2, - "(": 4, - "hello_world": 1, - ")": 4, - ".": 2, - "%": 2, - "the": 2, - "initialization/1": 1, - "directive": 1, - "argument": 1, - "is": 2, - "automatically": 1, - "executed": 1, - "when": 1, - "loaded": 1, - "into": 1, - "memory": 1, - "initialization": 1, - "nl": 2, - "write": 1, - "end_object.": 1 - }, - "Lua": { - "-": 60, - "A": 1, - "simple": 1, - "counting": 1, - "object": 1, - "that": 1, - "increments": 1, - "an": 1, - "internal": 1, - "counter": 1, - "whenever": 1, - "it": 2, - "receives": 2, - "a": 5, - "bang": 3, - "at": 2, - "its": 2, - "first": 1, - "inlet": 2, - "or": 2, - "changes": 1, - "to": 8, - "whatever": 1, - "number": 3, - "second": 1, - "inlet.": 1, - "local": 11, - "HelloCounter": 4, - "pd.Class": 3, - "new": 3, - "(": 56, - ")": 56, - "register": 3, - "function": 16, - "initialize": 3, - "sel": 3, - "atoms": 3, - "self.inlets": 3, - "self.outlets": 3, - "self.num": 5, - "return": 3, - "true": 3, - "end": 26, - "in_1_bang": 2, - "self": 10, - "outlet": 10, - "{": 16, - "}": 16, - "+": 3, - "in_2_float": 2, - "f": 12, - "FileListParser": 5, - "Base": 1, - "filename": 2, - "File": 2, - "extension": 2, - "Number": 4, - "of": 9, - "files": 1, - "in": 7, - "batch": 2, - "To": 3, - "[": 17, - "list": 1, - "trim": 1, - "]": 17, - "binfile": 3, - "vidya": 1, - "file": 8, - "modder": 1, - "s": 5, - "mechanisms": 1, - "self.extension": 3, - "the": 7, - "last": 1, - "self.batchlimit": 3, - "in_1_symbol": 1, - "for": 9, - "i": 10, - "do": 8, - "..": 7, - "in_2_list": 1, - "d": 9, - "in_3_float": 1, - "FileModder": 10, - "Object": 1, - "triggering": 1, - "Incoming": 1, - "single": 1, - "data": 2, - "bytes": 3, - "from": 3, - "Total": 1, - "route": 1, - "buflength": 1, - "Glitch": 3, - "type": 2, - "point": 2, - "times": 2, - "glitch": 2, - "Toggle": 1, - "randomized": 1, - "glitches": 3, - "within": 2, - "bounds": 2, - "Active": 1, - "get": 1, - "next": 1, - "byte": 2, - "clear": 2, - "buffer": 2, - "FLOAT": 1, - "write": 3, - "Currently": 1, - "active": 2, - "namedata": 1, - "self.filedata": 4, - "pattern": 1, - "random": 3, - "splice": 1, - "self.glitchtype": 5, - "Minimum": 1, - "image": 1, - "self.glitchpoint": 6, - "repeat": 1, - "on": 1, - "given": 1, - "self.randrepeat": 5, - "Toggles": 1, - "whether": 1, - "repeating": 1, - "should": 1, - "be": 1, - "self.randtoggle": 3, - "Hold": 1, - "all": 1, - "which": 1, - "are": 1, - "converted": 1, - "ints": 1, - "range": 1, - "self.bytebuffer": 8, - "Buffer": 1, - "length": 1, - "currently": 1, - "self.buflength": 7, - "if": 2, - "then": 4, - "plen": 2, - "math.random": 8, - "patbuffer": 3, - "table.insert": 4, + "}": 2, + ")": 1, "%": 1, - "#patbuffer": 1, - "elseif": 2, - "randlimit": 4, + "(": 1, + "{": 2, + "-": 3, + ";": 7 + }, + "Rust": { + "Only": 1, + "runs": 1, + "Fake": 1, + "would": 1, + "fails": 4, + "*uint": 1, + "same": 1, + "unlinked": 1, + "test_spawn_failure_propagate_nephew_or_niece": 1, + "doc": 1, + "iter": 8, + "<T>": 1, + "TaskHandle": 2, + "test_avoid_copying_the_body_task_spawn": 1, + "fin_ch.send": 1, + "grandparent": 1, + "start_po": 1, + "hangs.": 1, + "b.spawn": 2, + "self.gen_body": 2, + "start_ch.send": 1, + ".sched_mode": 2, + "b0.add_wrapper": 1, + "hidden": 1, + "nested": 1, + "b1.spawn": 3, + "test_platform_thread": 1, + "while": 2, + "rust_dbg_lock_create": 2, + "be": 2, + ".try": 1, + ".unlinked": 3, + "propagate": 1, + "Yield": 1, + "-": 33, + "testrt": 9, + "assert": 10, + "mut": 16, + "blk": 2, + "killed": 3, + "GenericChan": 1, + "default": 1, + "unkillable": 5, + "fixed": 1, + "default_task_opts": 4, + "rust_dbg_lock_wait": 2, + "TaskBuilder": 21, + "awake": 1, + "prev_gen_body": 2, + "opts.supervised": 2, + "rust_task_yield": 1, + "+": 4, + "CurrentScheduler": 2, + "Eq": 2, + "fr_task_builder": 1, + "rt": 29, + "do": 49, + "use": 10, + ")": 434, + "get_task_id": 1, + "rust_num_threads": 1, + "supervised": 11, + "T": 2, + "cmp": 1, + "child_sched_id": 5, + "ch": 26, + "get": 1, + "start_po.recv": 1, + "Scheduler": 4, + "result": 18, + "consume": 1, + "}": 210, + "available": 1, + "test": 31, + "b0": 5, + "prelude": 1, + "fin_po": 1, + "If": 1, + "{": 213, + "SharedChan": 4, + "#": 61, + "*rust_task": 6, + "let": 84, + "arg.take": 1, + "Cell": 2, + "consumed": 4, + "notify_chan": 24, + "get_task": 1, + "port": 3, + "<A:Owned>": 2, + "has": 1, + "test_spawn_thread_on_demand": 1, + "||": 11, + ".recv": 3, + "Wrapper": 5, + "generations": 2, + "<()>": 6, + "control": 1, + "notify_pipe_ch": 2, + "<uint>": 2, + "number": 1, + "All": 1, + "u": 2, + "Shouldn": 1, + "try": 5, + "local_data": 1, + "match": 4, + "test_avoid_copying_the_body_unlinked": 1, + "self.opts.notify_chan.is_some": 1, + "..": 8, + "spawn_unlinked": 6, + "s": 1, + "chan.send": 2, + "Ok": 3, + "test_try_fail": 1, + "the": 10, + "transmute": 2, + "chan2": 1, + "ManualThreads": 3, + "as": 7, + "grandchild": 1, + "DisallowFailure": 5, + "pub": 26, + "setup_po": 1, + "uint": 7, + "parent_ch": 2, + "spawn": 15, + "failure": 1, + "po.recv": 10, + "extern": 1, + "ne": 1, + "AllowFailure": 5, + "ch.send": 11, + "We": 1, + "on": 5, + "unwrap": 3, + "max_threads": 2, + "rust_sched_threads": 2, + "reported_threads": 2, + "test_spawn_linked_sup_fail_down": 1, + "cfg": 16, + "default_id": 2, + "opts.linked": 2, + "for": 10, + "other": 4, + "//": 20, + "Identity": 1, + "SchedOpts": 4, + "test_back_to_the_future_result": 1, + "child_ch": 4, + "previous": 1, + "p.recv": 1, + "own": 1, + "sched": 10, + "inverse": 1, + "i": 3, + "windows": 14, + "fr_task_builder.spawn": 1, + "across": 1, + "<": 3, + "repeat": 8, + "custom": 1, + "///": 13, + "Some": 8, + ".spawn_with": 1, + "*both*": 1, + "opts": 21, + "get_scheduler": 1, + "TaskOpts": 12, + "of": 3, + "val": 4, + "po": 11, + "port2": 1, + "rust_sched_current_nonlazy_threads": 2, + "util": 4, + "@fn": 2, + "self.future_result": 1, + "sched_id": 2, + "should_fail": 11, + "x.opts.linked": 1, + "child_no": 3, + "argument": 1, + "The": 1, + "Failure": 6, + "child": 3, + "running_threads2": 2, + "test_future_result": 1, + "self.consumed": 2, + "false": 7, + "test_add_wrapper": 1, + "a": 9, + "Tasks": 2, + "&&": 1, + "Chan": 4, + "one": 1, + "punted": 1, + "failed": 1, + "struct": 7, + "_": 4, + "move": 1, + "test_run_basic": 1, + "None": 23, + "loop": 5, + "tasks": 1, + "drop": 3, + "ptr": 2, + "return": 1, + "Task": 2, + "]": 61, + ".spawn": 9, + "ownership": 1, + "fail": 17, + "test_unkillable": 1, + "scheduler": 6, + "x.gen_body": 1, + "rust_task": 1, + ".supervised": 2, + "[": 61, + "notify_pipe_po": 2, + "addr_of": 2, + "x.opts.sched": 1, + "self.opts.linked": 4, + "test_avoid_copying_the_body_try": 1, + "test_spawn_linked_sup_fail_up": 1, + "OS": 3, + "<int>": 2, + "wrong": 1, + "rust_task_is_unwinding": 1, + "leave": 1, + ".": 1, + "spawn_supervised": 5, + "body": 6, + "future_result": 1, + "mode": 9, + "mechanisms": 1, + "test_avoid_copying_the_body_spawn": 1, + "<TaskResult>": 3, + "stream": 21, + "mod": 5, + "Here": 1, + "this": 1, + "test_cant_dup_task_builder": 1, + "_p": 1, + "handle": 3, + "ignore": 16, + "*": 1, + "call": 1, + "PlatformThread": 2, + ".eq": 1, + "test_spawn_sched_no_threads": 1, + "U": 6, + "rust_get_sched_id": 6, + "avoid_copying_the_body": 5, + "rust_task_allow_kill": 3, + "<U>": 3, + "x.opts.supervised": 1, + "FIXME": 1, + "(": 429, + "ever": 1, + "Configure": 1, + "SchedMode": 4, + "rust_dbg_lock_unlock": 3, + "cell": 1, + "sched_mode": 1, + "Success": 6, + "self.consume": 7, + "b1": 3, + "&": 30, + "*libc": 6, + "setup_po.recv": 1, + "foreign_stack_size": 3, + "|": 20, + "c_void": 6, + "linked": 15, + "parent_po": 2, + "in": 3, + "chan2.send": 1, "else": 1, - "sloc": 3, - "schunksize": 2, - "splicebuffer": 3, - "table.remove": 1, - "insertpoint": 2, - "#self.bytebuffer": 1, - "_": 2, - "v": 4, - "ipairs": 2, - "outname": 3, - "pd.post": 1, - "in_3_list": 1, - "Shift": 1, - "indexed": 2, - "in_4_list": 1, - "in_5_float": 1, - "in_6_float": 1, - "in_7_list": 1, - "in_8_list": 1 + "fin_po.recv": 1, + "child_po": 2, + "task_id": 2, + "test_unkillable_nested": 1, + "true": 9, + "_interrupts": 1, + "test_spawn_sched": 1, + "run": 1, + "<util::NonCopyable>": 1, + "eq": 1, + "been": 1, + "x": 7, + "priv": 1, + "rust_dbg_lock_signal": 2, + "task": 39, + "start_ch": 1, + "ch.clone": 2, + "gap": 1, + "cast": 2, + "lock": 13, + "v": 6, + "TaskResult": 4, + "failing": 2, + "rust_task_inhibit_kill": 3, + "SchedulerHandle": 2, + "task_": 2, + "CPUs": 1, + "ch.f.swap_unwrap": 4, + "int": 5, + "t": 24, + "child_ch.send": 1, + "if": 7, + "arg": 5, + "nolink": 1, + "r": 6, + "local_data_priv": 1, + "distributed": 2, + "rust_dbg_lock_destroy": 2, + "<T,()>": 2, + "Option": 4, + "replace": 8, + "didn": 1, + "DefaultScheduler": 2, + "running": 2, + "<T:Owned>": 2, + "self.opts.notify_chan": 7, + "are": 2, + "x_in_child": 4, + "p": 3, + "task.": 1, + "function": 1, + "add_wrapper": 1, + "Runs": 1, + "rust_task_allow_yield": 1, + "port2.recv": 1, + "rust_get_task": 5, + "have": 1, + "chan": 2, + "self.opts.sched": 6, + "thread": 2, + "deriving_eq": 3, + "test_atomically_nested": 1, + "ThreadPerCore": 2, + "by": 1, + "enum": 4, + "first": 1, + "comm": 5, + "unkillable.": 1, + "Get": 1, + "fn": 89, + "ExistingScheduler": 1, + "impl": 3, + "A": 6, + "setup_ch": 1, + "modes": 1, + "threads": 1, + "ThreadPerTask": 1, + "test_spawn_failure_propagate_secondborn": 1, + "running_threads": 2, + "pingpong": 3, + "fin_ch": 1, + "hanging": 1, + "parent_sched_id": 4, + "#3538": 1, + "Port": 3, + "atomically": 3, + "to": 6, + "Run": 3, + "among": 2, + "SingleThreaded": 4, + "Err": 2, + "test_sched_thread_per_core": 1, + "spawn_sched": 8, + "spawnfn": 2, + "rust_dbg_lock_lock": 3, + "self.spawn": 1, + "_allow_failure": 2, + "test_spawn_sched_blocking": 1, + "Result": 3, + ";": 218, + "f": 38, + "setup_ch.send": 1, + "cores": 2, + "bool": 6, + "test_try_success": 1, + "const": 1, + "pp": 2, + ".future_result": 4, + "test_child_doesnt_ref_parent": 1, + "should": 2, + "self": 15, + "test_spawn_linked_sup_propagate_sibling": 1, + "current": 1, + "DeferInterrupts": 5, + "its": 1, + "pure": 2, + "spawn_raw": 1, + "parent": 2, + "unsafe": 31, + "child.": 1, + "sends": 1, + "can_not_copy": 11, + "gen_body": 4, + "self.opts.supervised": 5, + "spawn_with": 2, + "wrapper": 2, + "x_in_parent": 2, + "b": 2, + "test_spawn_unlinked_unsup_no_fail_down": 1, + "specific": 1, + "yield": 16, + "True": 1, + "used": 1, + "_ch": 1, + "rust_task_inhibit_yield": 1, + "port.recv": 2, + "GenericPort": 1, + "self.t": 4, + "option": 4, + "rekillable": 1, + "transfering": 1, + "test_spawn_sched_childs_on_default_sched": 1, + "Each": 1, + "around.": 1 + }, + "Parrot Internal Representation": { + "SHEBANG#!parrot": 1, + ".end": 1, + "main": 1, + ".sub": 1, + "say": 1 }, "M": { - "%": 203, - "zewdAPI": 52, - ";": 1275, - "Enterprise": 5, - "Web": 5, - "Developer": 5, - "run": 2, - "-": 1604, - "time": 9, - "functions": 4, - "and": 56, - "user": 27, - "APIs": 1, - "Product": 2, - "(": 2142, - "Build": 6, - ")": 2150, - "Date": 2, - "Fri": 1, - "Nov": 1, - "|": 170, - "for": 77, - "GT.M": 30, - "m_apache": 3, - "Copyright": 12, - "c": 113, - "M/Gateway": 4, - "Developments": 4, - "Ltd": 4, - "Reigate": 4, - "Surrey": 4, - "UK.": 4, - "All": 4, - "rights": 4, - "reserved.": 4, - "http": 13, - "//www.mgateway.com": 4, - "Email": 4, - "rtweed@mgateway.com": 4, - "This": 26, - "program": 19, - "is": 81, - "free": 15, - "software": 12, - "you": 16, - "can": 15, - "redistribute": 11, - "it": 44, - "and/or": 11, - "modify": 11, - "under": 14, - "the": 217, - "terms": 11, - "of": 80, - "GNU": 33, - "Affero": 33, - "General": 33, - "Public": 33, - "License": 48, - "as": 22, - "published": 11, - "by": 33, - "Free": 11, - "Software": 11, - "Foundation": 11, - "either": 13, - "version": 16, - "or": 46, - "at": 21, - "your": 16, - "option": 12, - "any": 15, - "later": 11, - "version.": 11, - "distributed": 13, - "in": 78, - "hope": 11, - "that": 17, - "will": 23, - "be": 32, - "useful": 11, - "but": 17, - "WITHOUT": 12, - "ANY": 12, - "WARRANTY": 11, - "without": 11, - "even": 11, - "implied": 11, - "warranty": 11, - "MERCHANTABILITY": 11, - "FITNESS": 11, - "FOR": 15, - "A": 12, - "PARTICULAR": 11, - "PURPOSE.": 11, - "See": 15, - "more": 13, - "details.": 12, - "You": 13, - "should": 16, - "have": 17, - "received": 11, - "a": 112, - "copy": 13, - "along": 11, - "with": 43, - "this": 38, - "program.": 9, - "If": 14, - "not": 37, - "see": 25, - "<http://www.gnu.org/licenses/>": 11, - ".": 814, - "QUIT": 249, - "_": 126, - "getVersion": 1, - "zewdCompiler": 6, - "date": 1, - "getDate": 1, - "compilePage": 2, - "app": 13, - "page": 12, - "mode": 12, - "technology": 9, - "outputPath": 4, - "multilingual": 4, - "maxLines": 4, - "d": 381, - "g": 228, - "compileAll": 2, - "templatePageName": 2, - "autoTranslate": 2, - "language": 6, - "verbose": 2, - "zewdMgr": 1, - "startSession": 2, - "requestArray": 2, - "serverArray": 1, - "sessionArray": 5, - "filesArray": 1, - "zewdPHP": 8, - ".requestArray": 2, - ".serverArray": 1, - ".sessionArray": 3, - ".filesArray": 1, - "closeSession": 2, - "saveSession": 2, - "endOfPage": 2, - "prePageScript": 2, - "sessid": 146, - "releaseLock": 2, - "tokeniseURL": 2, - "url": 2, - "zewdCompiler16": 5, - "getSessid": 1, - "token": 21, - "i": 465, - "isTokenExpired": 2, - "p": 84, - "zewdSession": 39, - "initialiseSession": 1, - "k": 122, - "deleteSession": 2, - "changeApp": 1, - "appName": 4, - "setSessionValue": 6, - "setRedirect": 1, - "toPage": 1, - "e": 210, - "n": 197, - "path": 4, - "s": 775, - "getRootURL": 1, - "l": 84, - "zewd": 17, - "trace": 24, - "_sessid_": 3, - "_token_": 1, - "_nextPage": 1, - "zcvt": 11, - "nextPage": 1, - "isNextPageTokenValid": 2, - "zewdCompiler13": 10, - "isCSP": 1, - "normaliseTextValue": 1, - "text": 6, - "replaceAll": 11, - "writeLine": 2, - "line": 9, - "CacheTempBuffer": 2, - "j": 67, - "increment": 11, - "w": 127, - "displayOptions": 2, - "fieldName": 5, - "listName": 6, - "escape": 7, - "codeValue": 7, - "name": 121, - "nnvp": 1, - "nvp": 1, - "pos": 33, - "textValue": 6, - "value": 72, - "getSessionValue": 3, - "tr": 13, - "+": 188, - "f": 93, - "o": 51, - "q": 244, - "codeValueEsc": 7, - "textValueEsc": 7, - "htmlOutputEncode": 2, - "zewdAPI2": 5, - "_codeValueEsc_": 1, - "selected": 4, - "translationMode": 1, - "_appName": 1, - "typex": 1, - "type": 2, - "avoid": 1, - "Cache": 3, - "bug": 1, - "getPhraseIndex": 1, - "zewdCompiler5": 1, - "licensed": 1, - "setWarning": 2, - "isTemp": 11, - "setWLDSymbol": 1, - "Duplicate": 1, - "performance": 1, - "also": 4, - "wldAppName": 1, - "wldName": 1, - "wldSessid": 1, - "zzname": 1, - "zv": 6, - "[": 53, - "extcErr": 1, - "mess": 3, - "namespace": 1, - "zt": 20, - "valueErr": 1, - "exportCustomTags": 2, - "tagList": 1, - "filepath": 10, - ".tagList": 1, - "exportAllCustomTags": 2, - "importCustomTags": 2, - "filePath": 2, - "zewdForm": 1, - "stripSpaces": 6, - "np": 17, - "obj": 6, - "prop": 6, - "setSessionObject": 3, - "allowJSONAccess": 1, - "sessionName": 30, - "access": 21, - "disallowJSONAccess": 1, - "JSONAccess": 1, - "existsInSession": 2, - "existsInSessionArray": 2, - "p1": 5, - "p2": 10, - "p3": 3, - "p4": 2, - "p5": 2, - "p6": 2, - "p7": 2, - "p8": 2, - "p9": 2, - "p10": 2, - "p11": 2, - "clearSessionArray": 1, - "arrayName": 35, - "setSessionArray": 1, - "itemName": 16, - "itemValue": 7, - "getSessionArray": 1, - "array": 22, - "clearArray": 2, - "set": 98, - "m": 37, - "getSessionArrayErr": 1, - "Come": 1, - "here": 4, - "if": 44, - "error": 62, - "occurred": 2, - "addToSession": 2, - "@name": 4, - "mergeToSession": 1, - "mergeGlobalToSession": 2, - "globalName": 7, - "mergeGlobalFromSession": 2, - "mergeArrayToSession": 1, - "mergeArrayToSessionObject": 2, - ".array": 1, - "mergeArrayFromSession": 1, - "mergeFromSession": 1, - "deleteFromSession": 1, - "deleteFromSessionObject": 1, - "sessionNameExists": 1, - "getSessionArrayValue": 2, - "subscript": 7, - "exists": 6, - ".exists": 1, - "sessionArrayValueExists": 2, - "deleteSessionArrayValue": 2, - "Objects": 1, - "objectName": 13, - "propertyName": 3, - "propertyValue": 5, - "comma": 3, - "x": 96, - "replace": 27, - "objectName_": 2, - "_propertyName": 2, - "_propertyName_": 2, - "_propertyValue_": 1, - "_p": 1, - "quoted": 1, - "string": 50, - "FromStr": 6, - "S": 99, - "ToStr": 4, - "InText": 4, - "old": 3, - "new": 15, - "ok": 14, - "removeDocument": 1, - "zewdDOM": 3, - "instanceName": 2, - "clearXMLIndex": 1, - "zewdSchemaForm": 1, - "closeDOM": 1, - "makeTokenString": 1, - "length": 7, - "token_": 1, - "r": 88, - "makeString": 3, - "char": 9, - "len": 8, - "create": 6, - "characters": 4, - "str": 15, - "convertDateToSeconds": 1, - "hdate": 7, - "Q": 58, - "hdate*86400": 1, - "convertSecondsToDate": 1, - "secs": 2, - "secs#86400": 1, - "getTokenExpiry": 2, - "h*86400": 1, - "h": 39, - "randChar": 1, - "R": 2, - "lowerCase": 2, - "stripLeadingSpaces": 2, - "stripTrailingSpaces": 2, - "d1": 7, - "zd": 1, - "yy": 19, - "dd": 4, - "I": 43, - "<10>": 1, - "dd=": 2, - "mm=": 3, - "1": 74, - "d1=": 1, - "2": 14, - "p1=": 1, - "mm": 7, - "p2=": 1, - "yy=": 1, - "3": 6, - "dd_": 1, - "mm_": 1, - "inetTime": 1, - "Decode": 1, - "Internet": 1, - "Format": 1, - "Time": 1, - "from": 16, - "H": 1, - "format": 2, - "Offset": 1, - "relative": 1, - "to": 73, - "GMT": 1, - "eg": 3, - "hh": 4, - "ss": 4, - "<": 19, - "_hh": 1, - "time#3600": 1, - "_mm": 1, - "time#60": 1, - "_ss": 2, - "hh_": 1, - "_mm_": 1, - "openNewFile": 2, - "openFile": 2, - "openDOM": 2, - "&": 27, - "#39": 1, - "<\",\"<\")>": 1, - "string=": 1, - "gt": 1, - "amp": 1, - "HTML": 1, - "quot": 2, - "stop": 20, - "no": 53, - "no2": 1, - "p1_c_p2": 1, - "getIP": 2, - "Get": 2, - "own": 2, - "IP": 1, - "address": 1, - "ajaxErrorRedirect": 2, - "classExport": 2, - "className": 2, - "methods": 2, - ".methods": 1, - "strx": 2, - "disableEwdMgr": 1, - "enableEwdMgr": 1, - "enableWLDAccess": 1, - "disableWLDAccess": 1, - "isSSOValid": 2, - "sso": 2, - "username": 8, - "password": 8, - "zewdMgrAjax2": 1, - "uniqueId": 1, - "nodeOID": 2, - "filename": 2, - "linkToParentSession": 2, - "zewdCompiler20": 1, - "exportToGTM": 1, - "routine": 4, - "zewdDemo": 1, - "Tutorial": 1, - "Wed": 1, - "Apr": 1, - "getLanguage": 1, - "getRequestValue": 1, - "login": 1, - "getTextValue": 4, - "getPasswordValue": 2, - "_username_": 1, - "_password": 1, - "logine": 1, - "message": 8, - "textid": 1, - "errorMessage": 1, - "ewdDemo": 8, - "clearList": 2, - "appendToList": 4, - "addUsername": 1, - "newUsername": 5, - "newUsername_": 1, - "setTextValue": 4, - "testValue": 1, - "pass": 24, - "getSelectValue": 3, - "_user": 1, - "getPassword": 1, - "setPassword": 1, - "getObjDetails": 1, - "data": 43, - "_user_": 1, - "_data": 2, - "setRadioOn": 2, - "initialiseCheckbox": 2, - "setCheckboxOn": 3, - "createLanguageList": 1, - "setMultipleSelectOn": 2, - "clearTextArea": 2, - "textarea": 2, - "createTextArea": 1, - ".textarea": 1, - "userType": 4, - "setMultipleSelectValues": 1, - ".selected": 1, - "testField3": 3, - ".value": 1, - "testField2": 1, - "field3": 1, - "must": 7, - "null": 6, - "dateTime": 1, - "start": 24, - "student": 14, - "zwrite": 1, - "write": 59, - "order": 11, - "do": 15, - "quit": 30, - "file": 10, - "part": 3, - "DataBallet.": 4, - "C": 9, - "Laurent": 2, - "Parenteau": 2, - "<laurent.parenteau@gmail.com>": 2, - "DataBallet": 4, - "encode": 1, - "Return": 1, - "base64": 6, - "URL": 2, - "Filename": 1, - "safe": 3, - "alphabet": 2, - "RFC": 1, - "todrop": 2, - "Populate": 1, - "values": 4, - "on": 15, - "first": 10, - "use": 5, - "only.": 1, - "zextract": 3, - "zlength": 3, - "Digest": 2, - "Extension": 9, - "Piotr": 7, - "Koper": 7, - "<piotr.koper@gmail.com>": 7, - "trademark": 2, - "Fidelity": 2, - "Information": 2, - "Services": 2, - "Inc.": 2, - "//sourceforge.net/projects/fis": 2, - "gtm/": 2, - "simple": 2, - "OpenSSL": 3, - "based": 1, - "digest": 19, - "extension": 3, - "rewrite": 1, - "EVP_DigestInit": 1, - "usage": 3, - "example": 5, - "additional": 5, - "M": 24, - "wrapper.": 1, - "//www.openssl.org/docs/crypto/EVP_DigestInit.html": 1, - "The": 11, - "return": 7, - "digest.init": 3, - "usually": 1, - "when": 11, - "an": 11, - "invalid": 4, - "algorithm": 1, - "was": 5, - "specification.": 1, - "Anyway": 1, - "properly": 1, - "used": 6, - "never": 4, - "fail.": 1, - "Please": 2, - "feel": 2, - "contact": 2, - "me": 2, - "questions": 2, - "comments": 4, - "returns": 7, - "ASCII": 1, - "HEX": 1, - "all": 8, - "one": 5, - "digest.update": 2, - ".c": 2, - ".m": 11, - "digest.final": 2, - ".d": 1, - "init": 6, - "alg": 3, - "context": 1, - "handler": 9, - "try": 1, - "etc": 1, - "returned": 1, - "occurs": 1, - "e.g.": 2, - "unknown": 1, - "update": 1, - "ctx": 4, - "msg": 6, - "updates": 1, - ".ctx": 2, - ".msg": 1, - "final": 1, - "hex": 1, - "encoded": 8, - "frees": 1, - "memory": 1, - "allocated": 1, - ".digest": 1, - "algorithms": 1, - "availability": 1, - "depends": 1, - "libcrypto": 1, - "configuration": 1, - "md4": 1, - "md5": 2, - "sha": 1, - "sha1": 1, - "sha224": 1, - "sha256": 1, - "sha512": 1, - "dss1": 1, - "ripemd160": 1, - "These": 2, - "two": 2, - "routines": 6, - "illustrate": 1, - "dynamic": 1, - "scope": 1, - "variables": 2, - "triangle1": 1, - "sum": 15, - "main2": 1, - "y": 33, - "triangle2": 1, - "compute": 2, - "Fibonacci": 1, - "series": 1, - "b": 64, - "term": 10, - "start1": 2, - "entry": 5, - "label": 4, - "start2": 1, - "function": 6, - "computes": 1, - "factorial": 3, - "f*n": 1, - "main": 1, - "GMRGPNB0": 1, - "CISC/JH/RM": 1, - "NARRATIVE": 1, - "BUILDER": 1, - "TEXT": 5, - "GENERATOR": 1, - "cont.": 1, - "/20/91": 1, - "Text": 1, - "Generator": 1, - "Jan": 1, - "ENTRY": 2, - "WITH": 1, - "GMRGA": 1, - "SET": 3, - "TO": 6, - "POINT": 1, - "AT": 1, - "WHICH": 1, - "WANT": 1, - "START": 1, - "BUILDING": 1, - "GMRGE0": 11, - "GMRGADD": 4, - "D": 64, - "GMR": 6, - "GMRGA0": 11, - "GMRGPDA": 9, - "GMRGCSW": 2, - "NOW": 1, - "DTC": 1, - "GMRGB0": 9, - "O": 24, - "GMRGST": 6, - "GMRGPDT": 2, - "STAT": 8, - "GMRGRUT0": 3, - "GMRGF0": 3, - "GMRGSTAT": 8, - "P": 68, - "_GMRGB0_": 2, - "GMRD": 6, - "GMRGSSW": 3, - "SNT": 1, - "GMRGPNB1": 1, - "GMRGNAR": 8, - "GMRGPAR_": 2, - "_GMRGSPC_": 3, - "_GMRGRM": 2, - "_GMRGE0": 1, - "STORETXT": 1, - "GMRGRUT1": 1, - "GMRGSPC": 3, - "F": 10, - "GMRGD0": 7, - "ALIST": 1, - "G": 40, - "TMP": 26, - "J": 38, - "GMRGPLVL": 6, - "GMRGA0_": 1, - "_GMRGD0_": 1, - "_GMRGSSW_": 1, - "_GMRGADD": 1, - "GMRGI0": 6, - "label1": 1, - "if1": 2, - "statement": 3, - "if2": 2, - "statements": 1, - "contrasted": 1, - "<b)>": 3, - "variable": 8, - "a=": 3, - "smaller": 3, - "than": 4, - "b=": 4, - "if3": 1, - "else": 7, - "clause": 2, - "if4": 1, - "bodies": 1, - "exercise": 1, - "car": 14, - "@": 8, - "MD5": 6, - "Implementation": 1, - "It": 2, - "works": 1, - "ZCHSET": 2, - "please": 1, - "don": 1, - "only": 9, - "joke.": 1, - "Serves": 1, - "well": 2, - "reverse": 1, - "engineering": 1, - "obtaining": 1, - "boolean": 2, - "integer": 1, - "addition": 1, - "modulo": 1, - "division.": 1, - "//en.wikipedia.org/wiki/MD5": 1, - "t": 11, - "#64": 1, - "msg_": 1, - "_m_": 1, - "n64": 2, - "*8": 2, - "read": 2, - ".p": 1, - "..": 28, - "...": 6, - "*i": 3, - "#16": 3, - "xor": 4, - "rotate": 5, - "#4294967296": 6, - "n32h": 5, - "bit": 5, - "#2": 1, - "*2147483648": 2, - "a#2": 1, - "b#2": 1, - ".a": 1, - ".b": 1, - "rol": 1, - "a*": 1, - "**n": 1, - "c#4294967296": 1, - "*n": 1, - "n#256": 1, - "n#16": 2, - "MDB": 60, - "M/DB": 2, - "Mumps": 1, - "Emulation": 1, - "Amazon": 1, - "SimpleDB": 1, - "buildDate": 1, - "indexLength": 10, - "Note": 2, - "keyId": 108, - "been": 4, - "tested": 1, - "valid": 1, - "these": 1, - "are": 11, - "called": 8, - "To": 2, - "Initialise": 2, - "service": 1, - "//192.168.1.xxx/mdb/test.mgwsi": 1, - "Action": 2, - "addUser": 2, - "userKeyId": 6, - "userSecretKey": 6, - "requestId": 17, - "boxUsage": 11, - "startTime": 21, - ".startTime": 5, - "MDBUAF": 2, - "end": 33, - ".boxUsage": 22, - "createDomain": 1, - "domainName": 38, - "dn": 4, - "dnx": 3, - "id": 33, - "noOfDomains": 12, - "MDBConfig": 1, - "getDomainId": 3, - "found": 7, - "namex": 8, - "buildItemNameIndex": 2, - "domainId": 53, - "itemId": 41, - "itemValuex": 3, - "countDomains": 2, - "key": 22, - "deleteDomain": 2, - "listDomains": 1, - "maxNoOfDomains": 2, - "nextToken": 7, - "domainList": 3, - "fullName": 3, - "decodeBase64": 1, - "encodeBase64": 1, - "itemExists": 1, - "getItemId": 2, - "getAttributeValueId": 3, - "attribId": 36, - "valuex": 13, - "putAttributes": 2, - "attributes": 32, - "valueId": 16, - "xvalue": 4, - "add": 5, - "Item": 1, - "Domain": 1, - "itemNamex": 4, - "parseJSON": 1, - "zmwire": 53, - "attributesJSON": 1, - ".attributes": 5, - "attribute": 14, - "getAttributeId": 2, - "domain": 1, - "Not": 1, - "allowed": 17, - "same": 2, - "remove": 6, - "existing": 2, - "now": 1, - "name/value": 2, - "pair": 1, - "getAttributes": 2, - "suppressBoxUsage": 1, - "attrNo": 9, - "valueNo": 6, - "delete": 2, - "item": 2, - "associated": 1, - "queryIndex": 1, - "records": 2, - "specified": 4, - "pairs": 2, - "vno": 2, - "left": 5, - "completely": 3, - "references": 1, - "maxNoOfItems": 3, - "itemList": 12, - "session": 1, - "identifier": 1, - "stored": 1, - "queryExpression": 16, - "relink": 1, - "zewdGTMRuntime": 1, - "CGIEVAR": 1, - "cgi": 1, - "unescName": 5, - "urlDecode": 2, - "KEY": 36, - "response": 29, - "WebLink": 1, - "point": 2, - "action": 15, - "AWSAcessKeyId": 1, - "db": 9, - "hash": 1, - "itemsAndAttrs": 2, - "secretKey": 1, - "signatureMethod": 2, - "signatureVersion": 3, - "stringToSign": 2, - "rltKey": 2, - "_action_": 2, - "h_": 3, - "mdbKey": 2, - "errorResponse": 9, - "initialise": 3, - ".requestId": 7, - "createResponse": 4, - "installMDBM": 1, - "authenticate": 1, - "MDBSession": 1, - "createResponseStringToSign": 1, - "Security": 1, - "OK": 6, - "_db": 1, - "MDBAPI": 1, - "lineNo": 19, - "CacheTempEWD": 16, - "_db_": 1, - "db_": 1, - "_action": 1, - "resp": 5, - "metaData": 1, - "domainMetadata": 1, - ".metaData": 1, - "paramName": 8, - "paramValue": 5, - "_i_": 5, - "Query": 1, - "DomainName": 2, - "QueryExpression": 2, - "MaxNumberOfItems": 2, - "NextToken": 3, - "QueryWithAttributes": 1, - "AttributeName.": 2, - "Select": 2, - "SelectExpression": 1, - "entering": 1, - "runSelect.": 1, - "selectExpression": 3, - "finished": 1, - "runSelect": 3, - "count": 18, - "select": 3, - "*": 5, - "where": 6, - "limit": 14, - "asc": 1, - "inValue": 6, - "expr": 18, - "rel": 2, - "itemStack": 3, - "between": 2, - "<=\">": 1, - "lastWord=": 7, - "inAttr=": 5, - "expr=": 10, - "thisWord=": 7, - "inAttr": 2, - "c=": 28, - "queryExpression=": 4, - "_queryExpression": 2, - "4": 5, - "isNull": 1, - "5": 1, - "8": 1, - "isNotNull": 1, - "9": 1, - "offset": 6, - "prevName": 1, - "np=": 1, - "diffNames": 6, - "_term": 3, - "expr_": 1, - "_orderBy": 1, - "runQuery": 2, - ".itemList": 4, - "escVals": 1, - "str_c": 2, - "_x_": 1, - "query": 4, - "orderBy": 1, - "_query": 1, - "parseSelect": 1, - ".domainName": 2, - ".queryExpression": 1, - ".orderBy": 1, - ".limit": 1, - "executeSelect": 1, - ".itemStack": 1, - "***": 2, - "listCopy": 3, - "numeric": 6, - "N.N": 12, - "N.N1": 4, - "externalSelect": 2, - "json": 9, - "_keyId_": 1, - "_selectExpression": 1, - "spaces": 3, - "string_spaces": 1, - "test": 6, - "miles": 4, - "gallons": 4, - "miles/gallons": 1, - "computepesimist": 1, - "miles/": 1, - "computeoptimist": 1, - "/gallons": 1, - "Mumtris": 3, - "tetris": 1, - "game": 1, - "MUMPS": 1, - "fun.": 1, - "Resize": 1, - "terminal": 2, - "maximize": 1, - "PuTTY": 1, - "window": 1, - "restart": 3, - "so": 4, - "report": 1, - "true": 2, - "size": 3, - "mumtris.": 1, - "Try": 2, - "setting": 3, - "ansi": 2, - "compatible": 1, - "cursor": 1, - "positioning.": 1, - "NOTICE": 1, - "uses": 1, - "making": 1, - "delays": 1, - "lower": 1, - "s.": 1, - "That": 1, - "means": 2, - "CPU": 1, - "fall": 5, - "lock": 2, - "clear": 6, - "change": 6, - "preview": 3, - "over": 2, - "exit": 3, - "short": 1, - "circuit": 1, - "redraw": 3, - "timeout": 1, - "harddrop": 1, - "other": 1, - "ex": 5, - "hd": 3, - "*c": 1, - "<0&'d>": 1, - "i=": 14, - "st": 6, - "t10m": 1, - "0": 23, - "<0>": 2, - "q=": 6, - "d=": 1, - "zb": 2, - "right": 3, - "fl=": 1, - "gr=": 1, - "hl": 2, - "help": 2, - "drop": 2, - "hd=": 1, - "matrix": 2, - "stack": 8, - "draw": 3, - "ticks": 2, - "h=": 2, - "1000000000": 1, - "e=": 1, - "t10m=": 1, - "100": 2, - "n=": 1, - "ne=": 1, - "x=": 5, - "y=": 3, - "r=": 3, - "collision": 6, - "score": 5, - "k=": 1, - "j=": 4, - "<1))))>": 1, - "800": 1, - "200": 1, - "lv": 5, - "lc=": 1, - "10": 1, - "lc": 3, - "mt_": 2, - "cls": 6, - ".s": 5, - "dh/2": 6, - "dw/2": 6, - "*s": 4, - "u": 6, - "echo": 1, - "intro": 1, - "workaround": 1, - "ANSI": 1, - "driver": 1, - "NL": 1, - "some": 1, - "place": 9, - "clearscreen": 1, - "N": 19, - "h/2": 3, - "*w/2": 3, - "fill": 3, - "fl": 2, - "*x": 1, - "mx": 4, - "my": 5, - "step": 8, - "**lv*sb": 1, - "*lv": 1, - "sc": 3, - "ne": 2, - "gr": 1, - "w*3": 1, - "dev": 1, - "zsh": 1, - "dw": 1, - "dh": 1, - "elements": 3, - "elemId": 3, - "rotateVersions": 1, - "rotateVersion": 2, - "bottom": 1, - "coordinate": 1, - "____": 1, - "__": 2, - "||": 1, - "ax": 2, - "bx": 2, - "cx": 2, - "ay": 2, - "cy": 2, - "sumx": 3, - "sqrx": 3, - "sumxy": 5, - "x*x": 1, - "x*y": 1, - "PCRE": 23, - "tries": 1, - "deliver": 1, - "best": 2, - "possible": 5, - "interface": 1, - "world": 4, - "providing": 1, - "support": 3, - "arrays": 1, - "stringified": 2, - "parameter": 1, - "names": 3, - "simplified": 1, - "API": 7, - "locales": 2, - "exceptions": 1, - "Perl5": 1, - "Global": 8, - "Match.": 1, - "pcreexamples.m": 2, - "comprehensive": 1, - "examples": 4, - "pcre": 59, - "beginner": 1, - "level": 5, - "tips": 1, - "match": 41, - "limits": 6, - "exception": 12, - "handling": 2, - "UTF": 17, - "GT.M.": 1, - "out": 2, - "known": 2, - "book": 1, - "regular": 1, - "expressions": 1, - "//regex.info/": 1, - "For": 3, - "information": 1, - "//pcre.org/": 1, - "Initial": 2, - "release": 2, - "pkoper": 2, - "pcre.version": 1, - "config": 3, - "case": 7, - "insensitive": 7, - "protect": 11, - "erropt": 6, - "isstring": 5, - "code": 28, - "pcre.config": 1, - ".name": 1, - ".erropt": 3, - ".isstring": 1, - ".n": 20, - "ec": 10, - "compile": 14, - "pattern": 21, - "options": 45, - "locale": 24, - "mlimit": 20, - "reclimit": 19, - "optional": 16, - "joined": 3, - "Unix": 1, - "pcre_maketables": 2, - "cases": 1, - "undefined": 1, - "environment": 7, - "defined": 2, - "LANG": 4, - "LC_*": 1, - "output": 49, - "command": 9, - "Debian": 2, - "tip": 1, - "dpkg": 1, - "reconfigure": 1, - "enable": 1, - "system": 1, - "wide": 1, - "number": 5, - "internal": 3, - "matching": 4, - "calls": 1, - "pcre_exec": 4, - "execution": 2, - "manual": 2, - "details": 5, - "depth": 1, - "recursion": 1, - "calling": 2, - "ref": 41, - "err": 4, - "erroffset": 3, - "pcre.compile": 1, - ".pattern": 3, - ".ref": 13, - ".err": 1, - ".erroffset": 1, - "exec": 4, - "subject": 24, - "startoffset": 3, - "octets": 2, - "starts": 1, - "like": 4, - "chars": 3, - "pcre.exec": 2, - ".subject": 3, - "zl": 7, - "ec=": 7, - "ovector": 25, - "element": 1, - "code=": 4, - "ovecsize": 5, - "fullinfo": 3, - "OPTIONS": 2, - "SIZE": 1, - "CAPTURECOUNT": 1, - "BACKREFMAX": 1, - "FIRSTBYTE": 1, - "FIRSTTABLE": 1, - "LASTLITERAL": 1, - "NAMEENTRYSIZE": 1, - "NAMECOUNT": 1, - "STUDYSIZE": 1, - "OKPARTIAL": 1, - "JCHANGED": 1, - "HASCRORLF": 1, - "MINLENGTH": 1, - "JIT": 1, - "JITSIZE": 1, - "NAME": 3, - "nametable": 4, - "index": 1, - "indexed": 4, - "substring": 1, - "begin": 18, - "begin=": 3, - "end=": 4, - "contains": 2, - "octet": 4, - "UNICODE": 1, - "ze": 8, - "begin_": 1, - "_end": 1, - "store": 6, - "above": 2, - "stores": 1, - "captured": 6, - "key=": 2, - "gstore": 3, - "round": 12, - "byref": 5, - "global": 26, - "ref=": 3, - "l=": 2, - "capture": 10, - "indexes": 1, - "extended": 1, - "NAMED_ONLY": 2, - "named": 12, - "groups": 5, - "OVECTOR": 2, - "namedonly": 9, - "options=": 4, - "o=": 12, - "namedonly=": 2, - "ovector=": 2, - "NO_AUTO_CAPTURE": 2, - "_capture_": 2, - "matches": 10, - "s=": 4, - "_s_": 1, - "GROUPED": 1, - "group": 4, - "result": 3, - "patterns": 3, - "pcredemo": 1, - "pcreccp": 1, - "cc": 1, - "procedure": 2, - "Perl": 1, - "utf8": 2, - "crlf": 6, - "empty": 7, - "skip": 6, - "determine": 1, - "them": 1, - "before": 2, - "byref=": 2, - "check": 2, - "UTF8": 2, - "double": 1, - "utf8=": 1, - "crlf=": 3, - "NL_CRLF": 1, - "NL_ANY": 1, - "NL_ANYCRLF": 1, - "none": 1, - "build": 2, - "NEWLINE": 1, - ".start": 1, - "unwind": 1, - "call": 1, - "optimize": 1, - "leave": 1, - "advance": 1, - "LF": 1, - "CR": 1, - "CRLF": 1, - "middle": 1, - ".i": 2, - ".match": 2, - ".round": 2, - ".byref": 2, - ".ovector": 2, - "subst": 3, - "last": 4, - "occurrences": 1, - "matched": 1, - "back": 4, - "th": 3, - "{": 4, - "}": 4, - "replaced": 1, - "substitution": 2, - "begins": 1, - "substituted": 2, - "defaults": 3, - "ends": 1, - "backref": 1, - "boffset": 1, - "prepare": 1, - "reference": 2, - ".subst": 1, - ".backref": 1, - "silently": 1, - "zco": 1, - "<first>": 1, - "s/": 6, - "b*": 7, - "/Xy/g": 6, - "print": 8, - "aa": 9, - "et": 4, - "direct": 3, - "take": 1, - "default": 6, - "setup": 3, - "trap": 10, - "source": 3, - "location": 5, - "argument": 1, - "@ref": 2, - "E": 12, - "COMPILE": 2, - "has": 6, - "meaning": 1, - "zs": 2, - "re": 2, - "raise": 3, - "XC": 1, - "specific": 3, - "U16384": 1, - "U16385": 1, - "U16386": 1, - "U16387": 1, - "U16388": 2, - "U16389": 1, - "U16390": 1, - "U16391": 1, - "U16392": 2, - "U16393": 1, - "NOTES": 1, - "U16401": 2, - "raised": 2, - "i.e.": 3, - "NOMATCH": 2, - "ever": 1, - "uncommon": 1, - "situation": 1, - "too": 1, - "small": 1, - "considering": 1, - "controlled": 1, - "U16402": 1, - "U16403": 1, - "U16404": 1, - "U16405": 1, - "U16406": 1, - "U16407": 1, - "U16408": 1, - "U16409": 1, - "U16410": 1, - "U16411": 1, - "U16412": 1, - "U16414": 1, - "U16415": 1, - "U16416": 1, - "U16417": 1, - "U16418": 1, - "U16419": 1, - "U16420": 1, - "U16421": 1, - "U16423": 1, - "U16424": 1, - "U16425": 1, - "U16426": 1, - "U16427": 1, - "Examples": 4, - "pcre.m": 1, - "parameters": 1, - "pcreexamples": 32, - "shining": 1, - "Test": 1, - "Simple": 2, - "zwr": 17, - "Match": 4, - "grouped": 2, - "Just": 1, - "Change": 2, - "word": 3, - "Escape": 1, - "sequence": 1, - "More": 1, - "Low": 1, - "api": 1, - "Setup": 1, - "myexception2": 2, - "st_": 1, - "zl_": 2, - "Compile": 2, - ".options": 1, - "Run": 1, - ".offset": 1, - "used.": 2, - "always": 1, - "strings": 1, - "submitted": 1, - "exact": 1, - "usable": 1, - "integers": 1, - "way": 1, - "i*2": 3, - "what": 2, - "while": 3, - "/": 2, - "/mg": 2, - "aaa": 1, - "nbb": 1, - ".*": 1, - "discover": 1, - "stackusage": 3, - "Locale": 5, - "Support": 1, - "Polish": 1, - "I18N": 2, - "PCRE.": 1, - "Polish.": 1, - "second": 1, - "letter": 1, - "<aogonek>": 1, - "which": 4, - "ISO8859": 1, - "//en.wikipedia.org/wiki/Polish_code_pages": 1, - "complete": 1, - "listing": 1, - "CHAR": 1, - "different": 3, - "character": 2, - "modes": 1, - "In": 1, - "probably": 1, - "expected": 1, - "working": 1, - "single": 2, - "ISO": 3, - "chars.": 1, - "Use": 1, - "zch": 7, - "prepared": 1, - "GTM": 8, - "BADCHAR": 1, - "errors.": 1, - "Also": 1, - "others": 1, - "might": 1, - "expected.": 1, - "POSIX": 1, - "localization": 1, - "nolocale": 2, - "zchset": 2, - "isolocale": 2, - "utflocale": 2, - "LC_CTYPE": 1, - "Set": 2, - "obtain": 2, - "results.": 1, - "envlocale": 2, - "ztrnlnm": 2, - "Notes": 1, - "Enabling": 1, - "native": 1, - "requires": 1, - "libicu": 2, - "gtm_chset": 1, - "gtm_icu_version": 1, - "recompiled": 1, - "object": 4, - "files": 4, - "Instructions": 1, - "Install": 1, - "libicu48": 2, - "apt": 1, - "get": 2, - "install": 1, - "append": 1, - "chown": 1, - "gtm": 1, - "/opt/gtm": 1, - "Startup": 1, - "errors": 6, - "INVOBJ": 1, - "Cannot": 1, - "ZLINK": 1, - "due": 1, - "unexpected": 1, - "Object": 1, - "compiled": 1, - "CHSET": 1, - "written": 3, - "startup": 1, - "correct": 1, - "above.": 1, - "Limits": 1, - "built": 1, - "recursion.": 1, - "Those": 1, - "prevent": 1, - "engine": 1, - "very": 2, - "long": 2, - "runs": 2, - "especially": 1, - "there": 2, - "would": 1, - "paths": 2, - "tree": 1, - "checked.": 1, - "Functions": 1, - "using": 4, - "itself": 1, - "allows": 1, - "MATCH_LIMIT": 1, - "MATCH_LIMIT_RECURSION": 1, - "arguments": 1, - "library": 1, - "compilation": 2, - "Example": 1, - "longrun": 3, - "Equal": 1, - "corrected": 1, - "shortrun": 2, - "Enforced": 1, - "enforcedlimit": 2, - "Exception": 2, - "Handling": 1, - "Error": 1, - "conditions": 1, - "handled": 1, - "zc": 1, - "codes": 1, - "labels": 1, - "file.": 1, - "When": 2, - "neither": 1, - "nor": 1, - "within": 1, - "mechanism.": 1, - "depending": 1, - "caller": 1, - "exception.": 1, - "lead": 1, - "writing": 4, - "prompt": 1, - "terminating": 1, - "image.": 1, - "define": 2, - "handlers.": 1, - "Handler": 1, - "No": 17, - "nohandler": 4, - "Pattern": 1, - "failed": 1, - "unmatched": 1, - "parentheses": 1, - "<-->": 1, - "HERE": 1, - "RTSLOC": 2, - "At": 2, - "SETECODE": 1, - "Non": 1, - "assigned": 1, - "ECODE": 1, - "32": 1, - "GT": 1, - "image": 1, - "terminated": 1, - "myexception1": 3, - "zt=": 1, - "mytrap1": 2, - "zg": 2, - "mytrap3": 1, - "DETAILS": 1, - "executed": 1, - "frame": 1, - "called.": 1, - "deeper": 1, - "frames": 1, - "already": 1, - "dropped": 1, - "local": 1, - "available": 1, - "context.": 1, - "Thats": 1, - "why": 1, - "doesn": 1, - "unless": 1, - "cleared.": 1, - "Always": 1, - "done.": 2, - "Execute": 1, - "p5global": 1, - "p5replace": 1, - "p5lf": 1, - "p5nl": 1, - "newline": 1, - "utf8support": 1, - "myexception3": 1, - "contrasting": 1, - "postconditionals": 1, - "IF": 9, - "commands": 1, - "post1": 1, - "postconditional": 3, - "purposely": 4, - "TEST": 16, - "false": 5, - "post2": 1, - "special": 2, - "after": 2, - "post": 1, - "condition": 1, - "PRCAAPR": 1, - "WASH": 1, - "ISC@ALTOONA": 1, - "PA/RGY": 1, - "PATIENT": 5, - "ACCOUNT": 1, - "PROFILE": 1, - "CONT": 1, - "/9/94": 1, - "AM": 1, - "V": 2, - "Accounts": 1, - "Receivable": 1, - "**198": 1, - "**": 2, - "Mar": 1, - "Per": 1, - "VHA": 1, - "Directive": 1, - "modified.": 1, - "EN": 2, - "PRCATY": 2, - "NEW": 3, - "DIC": 6, - "X": 18, - "Y": 26, - "DEBT": 10, - "PRCADB": 5, - "DA": 4, - "PRCA": 14, - "COUNT": 2, - "OUT": 2, - "SEL": 1, - "BILL": 11, - "BAT": 8, - "TRAN": 5, - "DR": 4, - "DXS": 1, - "DTOUT": 2, - "DIROUT": 1, - "DIRUT": 1, - "DUOUT": 1, - "ASK": 3, - "DPTNOFZY": 2, - "DPTNOFZK": 2, - "K": 5, - "DTIME": 1, - "UPPER": 1, - "VALM1": 1, - "RCD": 1, - "DISV": 2, - "DUZ": 3, - "NAM": 1, - "RCFN01": 1, - "COMP": 2, - "EN1": 1, - "PRCAATR": 1, - "Y_": 3, - "PRCADB_": 1, - "HDR": 1, - "PRCAAPR1": 3, - "HDR2": 1, - "DIS": 1, - "STAT1": 2, - "_PRCATY_": 1, - "COMP1": 2, - "RCY": 5, - "]": 14, - "COMP2": 2, - "_STAT_": 1, - "_STAT": 1, - "payments": 1, - "_TRAN": 1, - "Keith": 1, - "Lynch": 1, - "p#f": 1, - "PXAI": 1, - "ISL/JVS": 1, - "ISA/KWP": 1, - "ESW": 1, - "PCE": 2, - "DRIVING": 1, - "RTN": 1, - "/20/03": 1, - "am": 1, - "CARE": 1, - "ENCOUNTER": 2, - "**15": 1, - "Aug": 1, - "DATA2PCE": 1, - "PXADATA": 7, - "PXAPKG": 9, - "PXASOURC": 10, - "PXAVISIT": 8, - "PXAUSER": 6, - "PXANOT": 3, - "ERRRET": 2, - "PXAPREDT": 2, - "PXAPROB": 15, - "PXACCNT": 2, - "add/edit/delete": 1, - "PCE.": 1, - "required": 4, - "pointer": 4, - "visit": 3, - "related.": 1, - "then": 2, "nodes": 1, - "needed": 1, - "lookup/create": 1, - "visit.": 1, - "adding": 1, - "data.": 1, - "displayed": 1, - "screen": 1, - "debugging": 1, - "initial": 1, - "code.": 1, - "passed": 4, - "reference.": 2, - "present": 1, - "PXKERROR": 2, - "caller.": 1, - "want": 1, - "edit": 1, - "Primary": 3, - "Provider": 1, - "moment": 1, - "editing": 2, - "being": 1, - "dangerous": 1, - "dotted": 1, - "name.": 1, - "warnings": 1, - "occur": 1, - "They": 1, - "form": 1, - "general": 1, - "description": 1, - "problem.": 1, - "ERROR1": 1, - "GENERAL": 2, - "ERRORS": 4, - "SUBSCRIPT": 5, - "PASSED": 4, - "IN": 4, - "FIELD": 2, - "FROM": 5, - "WARNING2": 1, - "WARNINGS": 2, - "WARNING3": 1, - "SERVICE": 1, - "CONNECTION": 1, - "REASON": 9, - "ERROR4": 1, - "PROBLEM": 1, - "LIST": 1, - "Returns": 2, - "PFSS": 2, - "Account": 2, - "Reference": 2, - "known.": 1, - "Returned": 1, - "located": 1, - "Order": 1, - "#100": 1, - "process": 3, - "processed": 1, - "could": 1, - "incorrectly": 1, - "VARIABLES": 1, - "NOVSIT": 1, - "PXAK": 20, - "DFN": 1, - "PXAERRF": 3, - "PXADEC": 1, - "PXELAP": 1, - "PXASUB": 2, - "VALQUIET": 2, - "PRIMFND": 7, - "PXAERROR": 1, - "PXAERR": 7, - "PRVDR": 1, - "needs": 1, - "look": 1, - "up": 1, - "passed.": 1, - "@PXADATA@": 8, - "SOR": 1, - "SOURCE": 2, - "PKG2IEN": 1, - "VSIT": 1, - "PXAPIUTL": 2, - "TMPSOURC": 1, - "SAVES": 1, - "CREATES": 1, - "VST": 2, - "VISIT": 3, - "KILL": 1, - "VPTR": 1, - "PXAIVSTV": 1, - "ERR": 2, - "PXAIVST": 1, - "PRV": 1, - "PROVIDER": 1, - "AUPNVSIT": 1, - ".I": 4, - "..S": 7, - "status": 2, - "Secondary": 2, - ".S": 6, - "..I": 2, - "PXADI": 4, - "NODE": 5, - "SCREEN": 2, - "VA": 1, - "EXTERNAL": 2, - "INTERNAL": 2, - "ARRAY": 2, - "PXAICPTV": 1, - "SEND": 1, - "W": 4, - "BLD": 2, - "DIALOG": 4, - ".PXAERR": 3, - "MSG": 2, - "GLOBAL": 1, - "NA": 1, - "PROVDRST": 1, - "Check": 1, - "provider": 1, - "PRVIEN": 14, - "DETS": 7, - "DIQ": 3, - "PRI": 3, - "PRVPRIM": 2, - "AUPNVPRV": 2, - "U": 14, - ".04": 1, - "DIQ1": 1, - "POVPRM": 1, - "POVARR": 1, - "STOP": 1, - "LPXAK": 4, - "ORDX": 14, - "NDX": 7, - "ORDXP": 3, - "DX": 2, - "ICD9": 2, - "AUPNVPOV": 2, - "@POVARR@": 6, - "force": 1, - "originally": 1, - "primary": 1, - "diagnosis": 1, - "flag": 1, - ".F": 2, - "..E": 1, - "...S": 5, - "decode": 1, - "val": 5, - "Decoded": 1, - "Encoded": 1, - "decoded": 3, - "decoded_": 1, - "safechar": 3, - "zchar": 1, - "encoded_c": 1, - "encoded_": 2, - "FUNC": 1, - "DH": 1, - "zascii": 1, - "WVBRNOT": 1, - "HCIOFO/FT": 1, - "JR": 1, - "IHS/ANMC/MWR": 1, - "BROWSE": 1, - "NOTIFICATIONS": 1, - "/30/98": 1, - "WOMEN": 1, - "WVDATE": 8, - "WVENDDT1": 2, - "WVIEN": 13, - "..F": 2, - "WV": 8, - "WVXREF": 1, - "WVDFN": 6, - "SELECTING": 1, - "ONE": 2, - "CASE": 1, - "MANAGER": 1, - "AND": 3, - "THIS": 3, - "DOESN": 1, - "WVE": 2, - "<DT!($P(Y,U,13)=\"\")>": 2, - "STORE": 3, - "WVA": 2, - "WVBEGDT1": 1, - "NOTIFICATION": 1, - "IS": 3, - "NOT": 1, - "QUEUED.": 1, - "WVB": 4, - "OR": 2, - "OPEN": 1, - "ONLY": 1, - "CLOSED.": 1, - ".Q": 1, - "EP": 4, - "ALREADY": 1, - "LL": 1, - "SORT": 3, - "ABOVE.": 1, - "DATE": 1, - "WVCHRT": 1, - "SSN": 1, - "WVUTL1": 2, - "SSN#": 1, - "WVNAME": 4, - "WVACC": 4, - "ACCESSION#": 1, - "WVSTAT": 1, - "STATUS": 2, - "WVUTL4": 1, - "WVPRIO": 5, - "PRIORITY": 1, - "WVCHRT_U_WVNAME_U_WVDATE_U_WVACC_U_WVSTAT_U_WVPRIO_U_WVIEN": 1, - "WVC": 4, - "COPYGBL": 3, - "COPY": 1, - "MAKE": 1, - "IT": 1, - "FLAT.": 1, - "...F": 1, - "....S": 1, - "DEQUEUE": 1, + "on": 15, + "}": 4, + "wldAppName": 1, "TASKMAN": 1, - "QUEUE": 1, - "OF": 2, - "PRINTOUT.": 1, - "SETVARS": 2, - "WVUTL5": 2, - "WVBRNOT1": 2, - "EXIT": 1, - "FOLLOW": 1, - "CALLED": 1, - "PROCEDURE": 1, - "FOLLOWUP": 1, - "MENU.": 1, - "WVBEGDT": 1, - "DT": 2, - "WVENDDT": 1, - "DEVICE": 1, - "WVBRNOT2": 1, - "WVPOP": 1, - "WVLOOP": 1, - "ZDIOUT1": 1, - "Experimental": 1, - "FileMan": 1, - "host": 2, - "Open": 1, - "Source": 1, - "Electronic": 1, - "Health": 1, - "Record": 1, - "Agent": 1, - "Licensed": 1, - "Apache": 1, - "Version": 1, - "may": 3, - "except": 1, - "compliance": 1, - "License.": 2, - "//www.apache.org/licenses/LICENSE": 1, - "Unless": 1, - "applicable": 1, - "law": 1, - "agreed": 1, - "BASIS": 1, - "WARRANTIES": 1, - "CONDITIONS": 1, - "KIND": 1, - "express": 1, - "implied.": 1, - "governing": 1, - "permissions": 2, - "limitations": 1, - "ASKFILE": 1, - "FILE": 5, - "ASKDIR": 1, - "DIR": 3, - "SAVEFILE": 2, - "Save": 1, - "given": 1, - "directory": 1, - "CHECK": 1, - "FGR": 4, - "_FILE": 1, - "IO": 4, - "DIR_": 1, - "L": 1, - "FILENAME": 1, - "_IO_": 1, - "_P_": 1, - "NM": 1, + "PRCADB_": 1, "non": 1, - "printing": 1, - "escaped": 1, - "evaluation": 1, - "RHS": 1, - "SET.": 1, - "TODO": 1, - "Caller": 1, - "indentation": 1, - "comment": 1, - "tab": 1, - "space.": 1, - "M/Wire": 4, - "Protocol": 2, - "Systems": 1, - "By": 1, - "server": 1, - "port": 4, - "systems": 3, - "invoked": 2, - "via": 2, - "xinetd": 2, - "Edit": 1, - "/etc/services": 1, - "mwire": 2, - "/tcp": 1, - "#": 1, - "Service": 1, - "Copy": 2, - "/etc/xinetd.d/mwire": 1, - "/usr/local/gtm/zmwire": 1, - "its": 1, + "zzname": 1, + "compilePage": 2, + "WVACC": 4, + "will": 23, + "locale": 24, + "DA": 4, + "useful": 11, + "set": 98, + "Ltd": 4, "executable": 1, - "edited": 1, - "Restart": 1, - "sudo": 1, - "/etc/init.d/xinetd": 1, - "On": 1, - "installed": 1, - "MGWSI": 1, - "provide": 1, - "hashing": 1, - "passwords": 1, - "Alternatively": 1, - "substitute": 1, - "callout": 1, - "choice": 1, - "Daemon": 2, - "running": 1, - "jobbed": 1, - "job": 1, - "zmwireDaemon": 2, - "simply": 1, - "Stop": 1, - "RESJOB": 1, - "it.": 1, - "mwireVersion": 4, - "mwireDate": 2, - "July": 1, - "_crlf": 22, - "_response_": 4, - "_crlf_response_crlf": 4, - "authNeeded": 6, - "input": 41, - "cleardown": 2, - "zint": 1, - "role": 3, - "loop": 7, - "log": 1, - "halt": 3, - "auth": 2, - "ignore": 12, - "pid": 36, - "monitor": 1, - "input_crlf": 1, - "zsy": 2, - "_pid_": 1, - "_pid": 1, - "monitoroutput": 1, - "logger": 17, - "tot": 2, - "mwireLogger": 3, - "info": 1, - "response_": 1, - "_count": 1, - "setpassword": 1, - "SETPASSWORD": 2, - "secret": 2, - "<set>": 1, - "role=": 1, - "admin": 1, - "newrole": 4, - "getGloRef": 3, - "gloName": 1, + "ticks": 2, + "GMRGF0": 3, + "....S": 1, + "*lv": 1, + "DIR": 3, + "modify": 11, + "references": 1, + "systems": 3, + "ICD9": 2, + "COUNT": 2, + "except": 1, + "IP": 1, + "primary": 1, + "pcre_maketables": 2, + "considering": 1, + "string": 50, + "end": 33, + "image": 1, + "PRVIEN": 14, + "_orderBy": 1, + "compilation": 2, + "LC_CTYPE": 1, + "U16387": 1, + ".": 814, + "NAM": 1, + "amp": 1, + "SET": 3, "gloRef": 15, - "nb": 2, - "subs": 8, - "nsp": 1, - "subs_": 2, - "_data_": 3, - "subscripts": 8, - "_value_": 1, - "_error_": 1, - "kill": 3, - "xx": 16, - "method": 2, - "Missing": 5, - "JSON": 7, - "transaction": 6, - "document": 6, - "setJSON": 4, - "GlobalName": 3, - "setGlobal": 1, - "zmwire_null_value": 1, - "Invalid": 1, - "props": 1, - "arr": 2, - "getJSON": 2, - "incr": 1, - "incrbr": 1, - "class": 1, - "##": 2, - "decr": 1, - "decrby": 1, - "direction": 1, - "subscriptValue": 1, - "dataStatus": 1, - "dataValue": 1, - "nextsubscript": 2, - "reverseorder": 1, - "*2": 1, - "queryget": 1, - "xxyy": 2, - "zz": 2, - "getallsubscripts": 1, - "orderall": 1, - "<keys>": 3, - "note": 2, - "escaping": 1, - "foo": 2, - "_gloRef": 1, - "@x": 4, - "_crlf_": 1, - "j_": 1, - "params": 10, - "_crlf_resp_crlf": 2, - "_crlf_data_crlf": 2, + "||": 1, + "array": 22, + "grouped": 2, + "PRCADB": 5, + "#2": 1, + "mergeArrayFromSession": 1, + "occur": 1, + "PXAUSER": 6, + "np=": 1, + "<": 19, + "numeric": 6, + "ends": 1, + "U16421": 1, + "parseSelect": 1, + "Provider": 1, + "ajaxErrorRedirect": 2, + "getIP": 2, + "n64": 2, + "rel": 2, + "PXANOT": 3, + "trace": 24, + "dd=": 2, + "pcre.m": 1, + "userType": 4, + "J": 38, + "gstore": 3, + "mx": 4, + "_sessid_": 3, + "integer": 1, + "INVOBJ": 1, + "beginner": 1, + "sequence": 1, + "DIR_": 1, + "escape": 7, + "Health": 1, + "removeDocument": 1, + "Account": 2, + "collision": 6, + "Install": 1, + "setCheckboxOn": 3, + ".n": 20, + "store": 6, + "ewdDemo": 8, + "single": 2, "mergeto": 1, - "dataLength": 4, - "keyLength": 6, - "noOfRecs": 6, - "MERGETO": 1, - "myglobal": 1, - "*6": 1, - "hello": 1, - "<data>": 2, - "put": 1, - "top": 1, - "noOfRecs#2": 1, - "noOfRecs/2": 1, - "gloRef1": 2, - "gloRef1_": 2, - "_gloRef1_key_": 1, - "sub": 2, - "literal": 2, - "valquot_value_valquot": 1, - "json_value_": 1, - "subscripts1": 2, - "subx": 3, + "X": 18, + "//192.168.1.xxx/mdb/test.mgwsi": 1, + ".name": 1, + "N.N": 12, + "alphabet": 2, + "zewdCompiler5": 1, + "Example": 1, + "pcre": 59, + "_db_": 1, + "ERR": 2, + "Record": 1, + "WVE": 2, + "hd=": 1, "subNo": 1, - "numsub": 1, - "json_": 2, - "removeControlChars": 2, - "zobj1": 1, + "GMRGCSW": 2, + "lv": 5, + "SORT": 3, "buff": 10, - "parseJSONObject": 2, - ".buff": 2, - "subs2": 6, - "_name_": 1, - "subs2_": 2, + "Object": 1, + "ovector=": 2, + "if2": 2, + "nextPage": 1, + "Get": 2, + "NDX": 7, + "**15": 1, + "f": 93, + "skip": 6, + "Encoded": 1, + "built": 1, + "getAttributeValueId": 3, + "This": 26, + "world": 4, + "dnx": 3, + ".match": 2, + "a=": 3, + "purposely": 4, + "Examples": 4, + "..I": 2, + "Laurent": 2, + "preview": 3, + "escVals": 1, + "nametable": 4, + "FileMan": 1, + "//en.wikipedia.org/wiki/Polish_code_pages": 1, + "miles/": 1, + "t": 11, + "KEY": 36, + "flag": 1, + "createTextArea": 1, + "ztrnlnm": 2, + "invoked": 2, + "general": 1, + "ec": 10, + "U16390": 1, + "change": 6, + "indentation": 1, + "string=": 1, + "getSessionArrayValue": 2, + "begins": 1, "value_c": 1, + "exact": 1, + "MDB": 60, + "path": 4, + "cy": 2, + "NOTES": 1, + "CPU": 1, + "needs": 1, + "addUser": 2, + "resp": 5, + "above.": 1, + "obtain": 2, + "Order": 1, + "returns": 7, + "PRCAATR": 1, + "exportCustomTags": 2, + "zewd": 17, + "query": 4, + "NODE": 5, + "configuration": 1, + "STAT": 8, + "sqrx": 3, + "direct": 3, + "%": 203, + "ASK": 3, + "zt=": 1, + "HERE": 1, + "might": 1, + "fall": 5, + "sessid": 146, + "deleteDomain": 2, + "you": 16, + "Digest": 2, + "p4": 2, + "autoTranslate": 2, + "read": 2, + "written": 3, + "requires": 1, + "boffset": 1, + "Match.": 1, + "HEX": 1, + "DT": 2, + "itemList": 12, + "space.": 1, + "filepath": 10, + "zch": 7, + "location": 5, + ".I": 4, + "decoded": 3, + "NOT": 1, + "do": 15, + "3": 6, + "expected.": 1, + "Returned": 1, + "<set>": 1, + "round": 12, + "displayed": 1, + "handling": 2, + "Query": 1, + "Offset": 1, + "executed": 1, + "libicu48": 2, + "MINLENGTH": 1, + "response_": 1, + "NOMATCH": 2, + "mytrap3": 1, + "/opt/gtm": 1, + "initialise": 3, + "signatureMethod": 2, + "t10m=": 1, + "ref=": 3, + "Set": 2, + "propertyName": 3, + "Limits": 1, + "WARNING3": 1, + "GMRD": 6, + "CR": 1, + "A": 12, + "mm=": 3, + "terminal": 2, + "Escape": 1, + "than": 4, + "starts": 1, + "nodeOID": 2, + "no2": 1, + "failed": 1, + "U16426": 1, + "diffNames": 6, + "ENTRY": 2, + "/20/03": 1, + "port": 4, + "pass": 24, + "subst": 3, + "errorMessage": 1, + "____": 1, + "must": 7, + "_GMRGB0_": 2, + "GMRGSSW": 3, + "manual": 2, + "workaround": 1, + "timeout": 1, + "O": 24, + "convertSecondsToDate": 1, + "p11": 2, + "others": 1, + "direction": 1, + "WITHOUT": 12, + "step": 8, + "procedure": 2, + "sessionName": 30, + "secretKey": 1, + "them": 1, + "initialiseCheckbox": 2, + "MERGETO": 1, + "fill": 3, + "before": 2, + "deliver": 1, + "passed": 4, + "allowed": 17, + "U16414": 1, + "admin": 1, + "clearList": 2, + ".s": 5, + "CHAR": 1, + "]": 14, + "code=": 4, + "They": 1, + "over": 2, + "NAMED_ONLY": 2, + "setSessionArray": 1, + "i=": 14, + "/gallons": 1, + "MaxNumberOfItems": 2, + "800": 1, + "paramName": 8, + "c#4294967296": 1, + "ne=": 1, + "exceptions": 1, + "based": 1, + "ACCOUNT": 1, + "k": 122, + "//www.mgateway.com": 4, + "gloRef1": 2, + "start2": 1, + "bit": 5, + "doesn": 1, + "labels": 1, + "lastWord=": 7, + "U16402": 1, + "print": 8, + "prevName": 1, + "software": 12, + "cleared.": 1, + "Handler": 1, + "fullinfo": 3, + "newUsername_": 1, + "matrix": 2, + "STAT1": 2, + "mergeToSession": 1, + "Locale": 5, + "stored": 1, + "GMRGNAR": 8, + "also": 4, + "subscripts1": 2, + "r=": 3, + "etc": 1, + "special": 2, + "DPTNOFZK": 2, + "postconditionals": 1, + "y": 33, + "DEBT": 10, + "parentheses": 1, + "image.": 1, + "LANG": 4, + "GMRGSPC": 3, + "put": 1, + "<piotr.koper@gmail.com>": 7, + "run": 2, + "IHS/ANMC/MWR": 1, + "ctx": 4, + "pcre.compile": 1, + "DETAILS": 1, + "global": 26, + "word": 3, + "initial": 1, + "NO_AUTO_CAPTURE": 2, + "makeTokenString": 1, + "myexception1": 3, + "MGWSI": 1, + "zwr": 17, + "known.": 1, + "inAttr=": 5, + "DPTNOFZY": 2, + "NM": 1, + "gtm/": 2, + "_codeValueEsc_": 1, + "<0>": 2, + "Secondary": 2, + "defaults": 3, + "been": 4, + "FITNESS": 11, + "payments": 1, + "existsInSessionArray": 2, + "PXAPREDT": 2, + "len": 8, + "addition": 1, + "*": 5, + "***": 2, + "1000000000": 1, + "matches": 10, + "_crlf_resp_crlf": 2, + "sha512": 1, + "sha224": 1, + "there": 2, + "handled": 1, + "CHSET": 1, + "p9": 2, + "correct": 1, + "_value_": 1, + "provider": 1, + "caller.": 1, + "tab": 1, + "contact": 2, + "PXASOURC": 10, + "release": 2, + "Change": 2, + "output": 49, + "VPTR": 1, + "CISC/JH/RM": 1, + "secret": 2, + "FROM": 5, + "8": 1, + "_user": 1, + "used.": 2, + "applicable": 1, + "mwireLogger": 3, + ".offset": 1, + "PXASUB": 2, + "status": 2, + "xvalue": 4, + "zewdMgrAjax2": 1, + "local": 1, + "handlers.": 1, + "error": 62, + "handler": 9, + "Not": 1, + "exit": 3, + "get": 2, + "c=": 28, + "CONT": 1, + "PARTICULAR": 11, + "WVBRNOT1": 2, + "F": 10, + "reference.": 2, + "uniqueId": 1, + "conditions": 1, + "data.": 1, + "rltKey": 2, + "You": 13, + "expr=": 10, + "CASE": 1, + "names": 3, + "POINT": 1, + "itemValue": 7, + "WVDATE": 8, + "safechar": 3, + "Select": 2, + "sum": 15, + "unmatched": 1, + "probably": 1, + "h/2": 3, + "TMPSOURC": 1, + "PASSED": 4, + "DUZ": 3, + "utflocale": 2, + "tries": 1, + "api": 1, + "_GMRGRM": 2, + "xor": 4, + "modes": 1, + "tested": 1, + "zt": 20, + ".domainName": 2, + "availability": 1, + "foo": 2, + "noOfRecs/2": 1, + "M/Wire": 4, + "WVA": 2, + "gloRef1_": 2, + "access": 21, + "objectName_": 2, + "examples": 4, + ".isstring": 1, + "like": 4, + ".backref": 1, + "lineNo": 19, + "installed": 1, + "form": 1, + "enableEwdMgr": 1, + "Objects": 1, + "U16419": 1, + "matching": 4, + "b": 64, + "_queryExpression": 2, + "input": 41, + "modified.": 1, + "Always": 1, + "ISO8859": 1, + "CONNECTION": 1, + "transaction": 6, + "_s_": 1, + "**": 2, + "i.e.": 3, + "OF": 2, + "here": 4, + "GMT": 1, + "Implementation": 1, + "callout": 1, + "..E": 1, + "Perl5": 1, + "PXAVISIT": 8, + "WVCHRT_U_WVNAME_U_WVDATE_U_WVACC_U_WVSTAT_U_WVPRIO_U_WVIEN": 1, + "b#2": 1, + "MERCHANTABILITY": 11, + "Inc.": 2, + "authNeeded": 6, + "HASCRORLF": 1, + "removeControlChars": 2, + "p": 84, + "APIs": 1, + "w*3": 1, + "U16407": 1, + "text": 6, + "localization": 1, + "*8": 2, + "AUPNVSIT": 1, + "#64": 1, + "neither": 1, + "INTERNAL": 2, + "mumtris.": 1, + "RCD": 1, + "clearXMLIndex": 1, + "..S": 7, + "_selectExpression": 1, + "General": 33, + "prompt": 1, + "AUPNVPOV": 2, + "be": 32, + "attributesJSON": 1, + "PXADI": 4, + "textarea": 2, + "isCSP": 1, + "ERROR4": 1, + "rewrite": 1, + "FUNC": 1, + "RHS": 1, + "recursion.": 1, + "Also": 1, + "_IO_": 1, + "Return": 1, + "only.": 1, + "runs": 2, + "DIS": 1, + "GMRGA0": 11, + "UTF8": 2, + "Unix": 1, + "dataValue": 1, + "GlobalName": 3, + "main2": 1, + "Licensed": 1, + "processed": 1, + "adding": 1, + "mwireDate": 2, + "Enabling": 1, + "PCRE.": 1, + "db_": 1, + "globalName": 7, + "_mm_": 1, + "zewdCompiler16": 5, + "startSession": 2, + "look": 1, + "U16388": 2, + "/": 2, + "/usr/local/gtm/zmwire": 1, + "arr": 2, + "best": 2, + "VSIT": 1, + "CacheTempEWD": 16, + "_hh": 1, + "inetTime": 1, + "illustrate": 1, + "Run": 1, + "ANSI": 1, + "specification.": 1, + "sessionNameExists": 1, + "gtm_icu_version": 1, + "CLOSED.": 1, + "logine": 1, + "appName": 4, + ".S": 6, + ".ref": 13, + "SimpleDB": 1, + "k=": 1, + "HDR": 1, + "printing": 1, + "exercise": 1, + "_propertyName": 2, + "field3": 1, + "getSelectValue": 3, + "Apache": 1, + "modulo": 1, + "p5lf": 1, + "Web": 5, + "session": 1, + "ARRAY": 2, + "pid": 36, + "<\",\"<\")>": 1, + "p2=": 1, + ".a": 1, + "NL_ANY": 1, + "err": 4, + "edited": 1, + "OKPARTIAL": 1, + "secs#86400": 1, + "K": 5, + "octet": 4, + "x=": 5, + "my": 5, + "done.": 2, + "namex": 8, + "_action_": 2, + "DOESN": 1, + "PRIMFND": 7, + "Free": 11, + "originally": 1, + "disableEwdMgr": 1, + "delays": 1, + "__": 2, + "PFSS": 2, + "Serves": 1, + "...": 6, + "U16410": 1, + "sha256": 1, + "xinetd": 2, + "reverseorder": 1, + "WOMEN": 1, + "Y": 26, + "PXAK": 20, + "information": 1, + "/tcp": 1, + "statements": 1, + ".ctx": 2, + "key": 22, + "governing": 1, + "if3": 1, + "SAVES": 1, + "short": 1, + "setRedirect": 1, + "MSG": 2, + "count": 18, + "g": 228, + "GMRGSTAT": 8, + "wide": 1, + "http": 13, + "pattern": 21, + "WVCHRT": 1, + "DomainName": 2, + "Keith": 1, + "PXADEC": 1, + "PROBLEM": 1, + "MD5": 6, + "PURPOSE.": 11, + "OK": 6, + "setMultipleSelectOn": 2, + "calls": 1, + "getRequestValue": 1, + "existsInSession": 2, + "escaped": 1, + "openFile": 2, + "of": 80, + "u": 6, + "OPTIONS": 2, + "exportToGTM": 1, + "clause": 2, + "JSON": 7, + "parameter": 1, + "externalSelect": 2, + "_user_": 1, + "when": 11, + "closeSession": 2, + "WVPOP": 1, + "dh/2": 6, + "invalid": 4, + "from": 16, + "U16391": 1, + "setup": 3, + "disableWLDAccess": 1, + "entering": 1, + "..": 28, + "memory": 1, + "QueryExpression": 2, + "which": 4, + "write": 59, + "hex": 1, + "series": 1, + "Protocol": 2, + "selected": 4, + "Just": 1, + "not": 37, + "FIELD": 2, + "x*x": 1, + "available": 1, + "exception.": 1, + "halt": 3, + "makeString": 3, + "DIALOG": 4, + "startoffset": 3, + "implied": 11, + "noOfRecs": 6, + "db": 9, + "replaced": 1, + "Jan": 1, + "&": 27, + "QUIT": 249, + "p5global": 1, + "routines": 6, + "SSN": 1, + "jobbed": 1, + "SEL": 1, + "AM": 1, + "linkToParentSession": 2, + "ss": 4, + "bx": 2, + "SOURCE": 2, + "item": 2, + "Time": 1, + "p5": 2, + "newrole": 4, + "GT.M.": 1, + "listing": 1, + "SSN#": 1, + "<DT!($P(Y,U,13)=\"\")>": 2, + "PXAPKG": 9, + "computes": 1, + "codeValue": 7, + "zewdDemo": 1, + "loop": 7, + "byref": 5, + "4": 5, + "mt_": 2, + "Low": 1, + "VARIABLES": 1, + "ANY": 12, + "clearTextArea": 2, + "statement": 3, + "edit": 1, + "By": 1, + "substituted": 2, + "command": 9, + "json_value_": 1, + "digest.update": 2, + "Security": 1, + "zb": 2, + "U16427": 1, + "usually": 1, + "begin": 18, + "small": 1, + "support": 3, + "pair": 1, + "very": 2, + "//www.openssl.org/docs/crypto/EVP_DigestInit.html": 1, + "P": 68, + "dangerous": 1, + "cases": 1, + "_P_": 1, + "nvp": 1, + "displayOptions": 2, + "then": 2, + "signatureVersion": 3, + "Cache": 3, + "namedonly=": 2, + "harddrop": 1, + "U16415": 1, + "above": 2, + "visit.": 1, + "Alternatively": 1, + "clearArray": 2, + "prop": 6, + "final": 1, + "createResponse": 4, + "listDomains": 1, + "KILL": 1, + "PRCAAPR1": 3, + "mergeGlobalToSession": 2, + "MATCH_LIMIT": 1, + "ZCHSET": 2, + "present": 1, + "aaa": 1, + "Support": 1, + "tips": 1, + "XC": 1, + "subs": 8, + "GMRGRUT0": 3, + "WVUTL4": 1, + "dd_": 1, + "d=": 1, + "point": 2, + "fail.": 1, + "cc": 1, + "arrays": 1, + "l": 84, + "clearscreen": 1, + "Check": 1, + "contrasted": 1, + "recompiled": 1, + "name.": 1, + "try": 1, + "U16403": 1, + ".attributes": 5, + "QUEUE": 1, + "DXS": 1, + "OVECTOR": 2, + "VST": 2, + "zascii": 1, + "FILENAME": 1, + "Copy": 2, + "p1_c_p2": 1, + "_token_": 1, + "ZLINK": 1, + "element": 1, + "MDBAPI": 1, + "_propertyValue_": 1, + "Initial": 2, + ".selected": 1, + "EN": 2, + "MUMPS": 1, + "provide": 1, + "hello": 1, + "ok": 14, + "ansi": 2, + "problem.": 1, + "screen": 1, + "urlDecode": 2, + "decrby": 1, + "NEWLINE": 1, + "format": 2, + "stores": 1, + "myexception2": 2, + "STUDYSIZE": 1, + "gr=": 1, + "getJSON": 2, + "LIST": 1, + "COPY": 1, + "Developer": 5, + "string_spaces": 1, + "term": 10, + "VHA": 1, + "number": 5, + "GENERAL": 2, + "entry": 5, + "different": 3, + "defined": 2, + "pcre.version": 1, + "passwords": 1, + "NOTICE": 1, + "U16384": 1, + "+": 188, + "rol": 1, + "utf8support": 1, + ".value": 1, + "MDBConfig": 1, + "GENERATOR": 1, + "server": 1, + "stripLeadingSpaces": 2, + "Handling": 1, + "boxUsage": 11, + "#100": 1, + "Directive": 1, + "mergeFromSession": 1, + "same": 2, + "back": 4, + "installMDBM": 1, + "commands": 1, + "<first>": 1, + "none": 1, + "stringified": 2, + "errors": 6, + "subscriptValue": 1, + "am": 1, + "Come": 1, + "program.": 9, + "9": 1, + "known": 2, + "unexpected": 1, + "md4": 1, + "dataStatus": 1, + "Item": 1, + "obj": 6, + "free": 15, + "getDomainId": 3, + "updates": 1, + "10": 1, + "GT.M": 30, + "hash": 1, + "engine": 1, + "decr": 1, + "substitution": 2, + "Global": 8, + "namespace": 1, + "initialiseSession": 1, + "addUsername": 1, + "WVBRNOT2": 1, + "G": 40, + ".textarea": 1, + "REASON": 9, + "zg": 2, + "type": 2, + "GMRGA0_": 1, + "middle": 1, + "that": 17, + "queryExpression": 16, + "additional": 5, + "lead": 1, + "NEW": 3, + "wldName": 1, + "deeper": 1, + "backref": 1, + "isNull": 1, + "ovecsize": 5, + "ABOVE.": 1, + "closeDOM": 1, + "setWLDSymbol": 1, + "json": 9, + "ever": 1, + "associated": 1, + "call": 1, + "evaluation": 1, + "getTokenExpiry": 2, + "sessionArray": 5, + "libicu": 2, + "getAttributeId": 2, + "true": 2, + "U": 14, + "mode": 12, + "FGR": 4, + "routine": 4, + "SCREEN": 2, + "case": 7, + "suppressBoxUsage": 1, + "WVB": 4, + "define": 2, + "prepared": 1, + "BUILDER": 1, + "this": 38, + "Build": 6, + "gr": 1, + "CacheTempBuffer": 2, + "subscripts": 8, + "job": 1, + "decode": 1, + "verbose": 2, + "isNotNull": 1, + "Lynch": 1, + "discover": 1, + "c": 113, + "mm_": 1, + "<10>": 1, + "prevent": 1, + "have": 17, + "_GMRGSPC_": 3, + "nbb": 1, + "relative": 1, + "quit": 30, + "role=": 1, + "page": 12, + "ripemd160": 1, + "Aug": 1, + "subx": 3, + "pairs": 2, + "..F": 2, + "erroffset": 3, + "buildDate": 1, + "end=": 4, + "stripSpaces": 6, + "p5replace": 1, + "q": 244, + "regular": 1, + "comprehensive": 1, + "size": 3, + "compute": 2, + "ISA/KWP": 1, + "isTokenExpired": 2, + "filesArray": 1, + "U16408": 1, + "substring": 1, + "crlf": 6, + "Format": 1, + ".*": 1, + "zsy": 2, + "_error_": 1, + "test": 6, + "maximize": 1, + "PXACCNT": 2, + "dataLength": 4, + "ASKDIR": 1, + "valueId": 16, + "calling": 2, + "base64": 6, + "<0&'d>": 1, + "insensitive": 7, + "setMultipleSelectValues": 1, + "echo": 1, + "These": 2, + "post1": 1, + "restart": 3, + ".sessionArray": 3, + "bottom": 1, + "WVENDDT": 1, + "Accounts": 1, + ".tagList": 1, + "simplified": 1, + "circuit": 1, + "TEXT": 5, + "UPPER": 1, + "ORDXP": 3, + "WVENDDT1": 2, + "enableWLDAccess": 1, + "Generator": 1, + "elements": 3, + "/30/98": 1, + "createDomain": 1, + "old": 3, + "tagList": 1, + "SUBSCRIPT": 5, + "are": 11, + "Try": 2, + "getSessionArray": 1, + "so": 4, + "exists": 6, + "either": 13, + "@ref": 2, + "m_apache": 3, + "p1": 5, + "compileAll": 2, + "Fri": 1, + ".F": 2, + "WVBEGDT1": 1, + "EXIT": 1, + "FIRSTBYTE": 1, + "extended": 1, + "U16389": 1, + "0": 23, + "deleteFromSession": 1, + ".digest": 1, + "literal": 2, + "zcvt": 11, + "incrbr": 1, + "last": 4, + "queryget": 1, + "help": 2, + "GMRGE0": 11, + "environment": 7, + "CREATES": 1, + "*c": 1, + "SET.": 1, + "CONDITIONS": 1, + "obtaining": 1, + "driver": 1, + "rotateVersions": 1, + "replace": 27, + "Enforced": 1, + "complete": 1, + "No": 17, + "finished": 1, + "especially": 1, + "In": 1, + "smaller": 3, + "U16423": 1, + "MDBSession": 1, + "begin=": 3, + "_crlf_data_crlf": 2, + ".b": 1, + "optional": 16, + "boolean": 2, + "L": 1, + "n#16": 2, + "don": 1, + "o=": 12, + "depth": 1, + "intro": 1, + "checked.": 1, + "s.": 1, + "miles": 4, + "zl": 7, + "executeSelect": 1, + "else": 7, + "itemsAndAttrs": 2, + "msg": 6, + "requestArray": 2, + ".p": 1, + "envlocale": 2, + "auth": 2, + "UK.": 4, + "U16411": 1, + "mergeArrayToSessionObject": 2, + "within": 1, + "Exception": 2, + "POVARR": 1, + "Mumps": 1, + "DIROUT": 1, + "BAT": 8, + "codeValueEsc": 7, + "tokeniseURL": 2, + "zz": 2, + "vno": 2, + "libcrypto": 1, + "DFN": 1, + "username": 8, + "<laurent.parenteau@gmail.com>": 2, + "delete": 2, + "if4": 1, + "context": 1, + "All": 4, + "safe": 3, + "located": 1, + "Amazon": 1, + "window": 1, + "ISC@ALTOONA": 1, + "Save": 1, + "implied.": 1, + "importCustomTags": 2, + "zlength": 3, + "runSelect.": 1, + "h": 39, + "contrasting": 1, + "scope": 1, + "dss1": 1, + "PXKERROR": 2, + "length": 7, + "byref=": 2, + "listName": 6, + "expr_": 1, + "along": 11, + "LC_*": 1, + "shining": 1, + "FILE": 5, + "NARRATIVE": 1, + "found": 7, + "indexed": 4, + "only": 9, + "itemStack": 3, + "GMRGPNB0": 1, + "th": 3, + "//sourceforge.net/projects/fis": 2, + "frees": 1, + ".methods": 1, + "results.": 1, + ".itemList": 4, + "GMRGADD": 4, + "zewdCompiler20": 1, + "sso": 2, + "_ss": 2, + "Reference": 2, + "U16392": 2, + "PXAERRF": 3, + "questions": 2, + "fullName": 3, + "Software": 11, + "car": 14, + "parseJSONObject": 2, + "Email": 4, + "Primary": 3, + "Open": 1, + "isTemp": 11, + ".requestArray": 2, + "inValue": 6, + "name/value": 2, + "classExport": 2, + "WebLink": 1, + "DH": 1, + "noOfRecs#2": 1, + "ne": 2, + "received": 11, + "lc=": 1, + "init": 6, + "WHICH": 1, + "x*y": 1, + "id": 33, + "pcre_exec": 4, + "Restart": 1, + "BILL": 11, + "lowerCase": 2, + "allowJSONAccess": 1, + "Enterprise": 5, + "select": 3, + "pcre.config": 1, + "WVIEN": 13, + "any": 15, + "capture": 10, + ".filesArray": 1, + "expected": 1, + "VALM1": 1, + "Error": 1, + "by": 33, + "allocated": 1, + "limits": 6, + "specific": 3, + "st": 6, + "attributes": 32, + "//www.apache.org/licenses/LICENSE": 1, + "factorial": 3, + "p6": 2, + ".orderBy": 1, + "host": 2, + "releaseLock": 2, + "Date": 2, + "DRIVING": 1, + "OPEN": 1, + "getTextValue": 4, + "Reigate": 4, + "5": 1, + "EXTERNAL": 2, + "<1))))>": 1, + "compile": 14, + "WVPRIO": 5, + "ISL/JVS": 1, + "zint": 1, + "submitted": 1, + "writeLine": 2, + "multilingual": 4, + "unless": 1, + "controlled": 1, + "setRadioOn": 2, + "too": 1, + "Information": 2, + "zmwire": 53, + "noOfDomains": 12, + "PXELAP": 1, + "alg": 3, + "PATIENT": 5, + "Agent": 1, + "editing": 2, + "C": 9, + "LF": 1, + "className": 2, + "zc": 1, + "simple": 2, + "b*": 7, + "DATE": 1, + "NAME": 3, + "LASTLITERAL": 1, + "performance": 1, + "Duplicate": 1, + "getLanguage": 1, + "reserved.": 4, + "sumx": 3, + "even": 11, + "relink": 1, + "LPXAK": 4, + "*2147483648": 2, + "CGIEVAR": 1, + "Q": 58, + "zmwireDaemon": 2, + "propertyValue": 5, + "index": 1, + "gloName": 1, + "_name_": 1, + "queryExpression=": 4, + "STATUS": 2, + "WITH": 1, + "Cannot": 1, + "update": 1, + "token": 21, + "up": 1, + "/etc/services": 1, + "<keys>": 3, + "appendToList": 4, + "Unless": 1, + "ZDIOUT1": 1, + "saveSession": 2, + "outputPath": 4, + "may": 3, + "@POVARR@": 6, + "CALLED": 1, + "START": 1, "newString": 4, - "newString_c": 1, - "utfConvert": 1, - "Unescape": 1, + "valquot_value_valquot": 1, + "U16416": 1, + "lower": 1, + "triangle1": 1, + "textValueEsc": 7, + "apt": 1, + "Invalid": 1, + "_": 126, + "order": 11, + "drop": 2, + "function": 6, + "lock": 2, + "props": 1, + "PXAICPTV": 1, + "metaData": 1, + "Public": 33, + "comment": 1, + "depending": 1, + "GMRGRUT1": 1, + "WVUTL5": 2, + "digest.init": 3, + "//pcre.org/": 1, + "used": 6, + "division.": 1, + "kill": 3, + "files": 4, + "DETS": 7, + "PRVDR": 1, + "assigned": 1, + "fl": 2, + "m": 37, + "monitor": 1, + "decoded_": 1, + "U16404": 1, + "getPasswordValue": 2, + "_STAT_": 1, + "main": 1, + "warnings": 1, + "100": 2, + "VALQUIET": 2, + "char": 9, + "ONE": 2, + "user": 27, + "asc": 1, + "encoded": 8, + "PXAIVST": 1, + "internal": 3, + "unknown": 1, + "COMP1": 2, + "openDOM": 2, + "interface": 1, + "NA": 1, + "distributed": 13, + "Edit": 1, + "pcredemo": 1, + "what": 2, + "{": 4, + "h=": 2, + "setting": 3, + "Affero": 33, + "time#60": 1, + "pcreccp": 1, + "mwireVersion": 4, + "ERROR1": 1, + "To": 2, + ".array": 1, + "mdbKey": 2, + "valueNo": 6, + "zewdForm": 1, + "prePageScript": 2, + "myexception3": 1, + "role": 3, "buf": 4, + "was": 5, + "q=": 6, + "zobj1": 1, + "_propertyName_": 2, + "setSessionObject": 3, + "remove": 6, + "IN": 4, + "@name": 4, + "joke.": 1, + "ex": 5, + "hh_": 1, + "Koper": 7, + "FOLLOW": 1, + "return": 7, + "Note": 2, + "zewdCompiler13": 10, + "but": 17, + "dh": 1, + "pos": 33, + "U16385": 1, + "_gloRef": 1, + "working": 1, + "rotate": 5, + "ENCOUNTER": 2, + "frames": 1, + "Simple": 2, + "Debian": 2, + "PROVIDER": 1, + ".msg": 1, + "feel": 2, + "sha": 1, + "subs_": 2, + "called": 8, + "its": 1, + "called.": 1, + "GTM": 8, + "DIQ1": 1, + "FOLLOWUP": 1, "c1": 4, - "buf_c1_": 1 + "InText": 4, + "sudo": 1, + "listCopy": 3, + "testValue": 1, + "zco": 1, + "GMRGST": 6, + "redraw": 3, + "an": 11, + "substitute": 1, + "with": 43, + "mwire": 2, + "attrNo": 9, + "new": 15, + "agreed": 1, + "comma": 3, + "score": 5, + "level": 5, + "md5": 2, + "subs2_": 2, + "Nov": 1, + "RTN": 1, + "PXAERR": 7, + "caller": 1, + "hashing": 1, + "200": 1, + "tot": 2, + "/etc/init.d/xinetd": 1, + "time#3600": 1, + "When": 2, + "all": 8, + "variable": 8, + "STORETXT": 1, + "H": 1, + "nextsubscript": 2, + "dateTime": 1, + "deleteSessionArrayValue": 2, + "service": 1, + "/mg": 2, + "book": 1, + "RESJOB": 1, + "file": 10, + "startup": 1, + "Daemon": 2, + "BACKREFMAX": 1, + "yy=": 1, + "//en.wikipedia.org/wiki/MD5": 1, + "completely": 3, + "using": 4, + "Domain": 1, + "V": 2, + "#39": 1, + "st_": 1, + "buildItemNameIndex": 2, + "cls": 6, + "build": 2, + "b=": 4, + "itemValuex": 3, + "left": 5, + "zv": 6, + "_action": 1, + ".itemStack": 1, + "_GMRGD0_": 1, + "PXAPROB": 15, + "License.": 2, + "ORDX": 14, + "WVC": 4, + "pcreexamples.m": 2, + "HTML": 1, + "Polish": 1, + ".erropt": 3, + "zewdGTMRuntime": 1, + "optimize": 1, + "CARE": 1, + "d": 381, + "*w/2": 3, + "MAKE": 1, + "hope": 11, + "Populate": 1, + "writing": 4, + "tip": 1, + "NL_ANYCRLF": 1, + "visit": 3, + "needed": 1, + "express": 1, + "FOR": 15, + "THIS": 3, + "Startup": 1, + "Notes": 1, + "getPassword": 1, + "object": 4, + "enable": 1, + "r": 88, + "Text": 1, + "_data_": 3, + "QueryWithAttributes": 1, + "GMRGA": 1, + "U16409": 1, + "protect": 11, + "prepare": 1, + "coordinate": 1, + "Surrey": 4, + "PXADATA": 7, + "expr": 18, + "meaning": 1, + "PXAERROR": 1, + "htmlOutputEncode": 2, + "can": 15, + "tr": 13, + "source": 3, + "under": 14, + "TMP": 26, + "UTF": 17, + ".exists": 1, + "getPhraseIndex": 1, + "algorithms": 1, + "usage": 3, + "post2": 1, + "Decode": 1, + "d1=": 1, + "_nextPage": 1, + "arguments": 1, + "chars": 3, + "Extension": 9, + "domainId": 53, + "PRCATY": 2, + "engineering": 1, + "p5nl": 1, + "PXAIVSTV": 1, + "draw": 3, + "PROCEDURE": 1, + "selectExpression": 3, + "lookup/create": 1, + "Mumtris": 3, + "TEST": 16, + "octets": 2, + "#": 1, + "_capture_": 2, + "limitations": 1, + "getSessionValue": 3, + "date": 1, + "Piotr": 7, + "newUsername": 5, + "name": 121, + "while": 3, + "t10m": 1, + "i*2": 3, + ".requestId": 7, + "GLOBAL": 1, + "add": 5, + "stack": 8, + "ALIST": 1, + "IS": 3, + "getallsubscripts": 1, + "Decoded": 1, + "randChar": 1, + "SETECODE": 1, + "p2": 10, + "GMRGPDA": 9, + "DR": 4, + "_keyId_": 1, + "no": 53, + "disallowJSONAccess": 1, + "already": 1, + "orderBy": 1, + "in": 78, + "nsp": 1, + "MDBUAF": 2, + "monitoroutput": 1, + "DISV": 2, + "filename": 2, + ".04": 1, + "post": 1, + "time": 9, + "1": 74, + "postconditional": 3, + "STORE": 3, + "ASKFILE": 1, + "DUOUT": 1, + ".buff": 2, + "right": 3, + "<=\">": 1, + "zchar": 1, + "Receivable": 1, + "dropped": 1, + "RFC": 1, + "empty": 7, + "mytrap1": 2, + "HCIOFO/FT": 1, + "as": 22, + "directory": 1, + "mm": 7, + "place": 9, + "occurrences": 1, + "hl": 2, + "buf_c1_": 1, + "characters": 4, + "Wed": 1, + "U16424": 1, + "key=": 2, + "wldSessid": 1, + "COPYGBL": 3, + "authenticate": 1, + "GMRGI0": 6, + "joined": 3, + "hdate": 7, + "stop": 20, + "null": 6, + "ESW": 1, + ".round": 2, + ".c": 2, + "strings": 1, + "isSSOValid": 2, + "avoid": 1, + "endOfPage": 2, + "exec": 4, + "M": 24, + "templatePageName": 2, + "DTC": 1, + "s/": 6, + "j=": 4, + "At": 2, + "reclimit": 19, + "/20/91": 1, + "attribId": 36, + "sha1": 1, + "namedonly": 9, + "OUT": 2, + "deleteFromSessionObject": 1, + "SelectExpression": 1, + "class": 1, + "U16412": 1, + "app": 13, + "groups": 5, + "[": 53, + "p1=": 1, + "s=": 4, + "objectName": 13, + "library": 1, + "TO": 6, + "NextToken": 3, + "textid": 1, + "getItemId": 2, + "July": 1, + "stackusage": 3, + "WVUTL1": 2, + "possible": 5, + "miles/gallons": 1, + "typex": 1, + "itemNamex": 4, + "PROVDRST": 1, + "PRCA": 14, + "sessionArrayValueExists": 2, + "str": 15, + ".metaData": 1, + "PRV": 1, + "Copyright": 12, + "pcre.exec": 2, + "domain": 1, + "i": 465, + "clearSessionArray": 1, + "_GMRGSSW_": 1, + "Tutorial": 1, + ".boxUsage": 22, + "first": 10, + "32": 1, + "methods": 2, + "erropt": 6, + "warranty": 11, + "the": 217, + "yy": 19, + "encodeBase64": 1, + "_pid_": 1, + "GMRGPNB1": 1, + "WVBEGDT": 1, + "own": 2, + "For": 3, + "algorithm": 1, + "w": 127, + "student": 14, + "PA/RGY": 1, + "U16393": 1, + "your": 16, + "details": 5, + "indexes": 1, + "<data>": 2, + "these": 1, + "extension": 3, + "_count": 1, + "start": 24, + "integers": 1, + "createLanguageList": 1, + "stringToSign": 2, + "SERVICE": 1, + "zewdPHP": 8, + "bodies": 1, + "MANAGER": 1, + "note": 2, + "could": 1, + "startTime": 21, + "isstring": 5, + "itself": 1, + "tree": 1, + "_db": 1, + "DEVICE": 1, + "...S": 5, + "gallons": 4, + "zewdCompiler": 6, + "technology": 9, + "compatible": 1, + "passed.": 1, + "et": 4, + "works": 1, + "file.": 1, + "setPassword": 1, + "Compile": 2, + "RCY": 5, + "EN1": 1, + "<-->": 1, + "append": 1, + "(": 2142, + "dd": 4, + "codes": 1, + "WVSTAT": 1, + "M/DB": 2, + "KIND": 1, + "filePath": 2, + "zewdSession": 39, + "ec=": 7, + "never": 4, + "p7": 2, + "**lv*sb": 1, + "take": 1, + "JSONAccess": 1, + "is": 81, + "offset": 6, + "later": 11, + "re": 2, + "reconfigure": 1, + "NOW": 1, + "program": 19, + "/etc/xinetd.d/mwire": 1, + "result": 3, + "<b)>": 3, + "incr": 1, + "enforcedlimit": 2, + "If": 14, + "logger": 17, + "hdate*86400": 1, + "*i": 3, + "top": 1, + "ref": 41, + "_response_": 4, + "GMRGPDT": 2, + "encoded_c": 1, + "HDR2": 1, + "ax": 2, + ".limit": 1, + "limit": 14, + "moment": 1, + "message": 8, + "params": 10, + "D": 64, + "redistribute": 11, + "Match": 4, + "computepesimist": 1, + "PRIORITY": 1, + "zd": 1, + "_appName": 1, + "isNextPageTokenValid": 2, + "nolocale": 2, + "PCE.": 1, + "M/Gateway": 4, + "It": 2, + "_password": 1, + "**198": 1, + "zewdAPI2": 5, + "getSessid": 1, + "terminating": 1, + "mechanism.": 1, + "getObjDetails": 1, + "WANT": 1, + "_term": 3, + ".ovector": 2, + "Polish.": 1, + "quot": 2, + "NOTIFICATIONS": 1, + "SIZE": 1, + "where": 6, + "R": 2, + "translationMode": 1, + ".err": 1, + "Services": 2, + ".options": 1, + "sumxy": 5, + "GT": 1, + "character": 2, + "occurs": 1, + "rtweed@mgateway.com": 4, + "COMP": 2, + "instanceName": 2, + "ASCII": 1, + "it.": 1, + "parameters": 1, + "d1": 7, + "triangle2": 1, + "info": 1, + "part": 3, + "U16417": 1, + "uncommon": 1, + "getDate": 1, + "why": 1, + "depends": 1, + "one": 5, + "recursion": 1, + "fl=": 1, + "elemId": 3, + "raise": 3, + "gtm_chset": 1, + "begin_": 1, + "zsh": 1, + "cursor": 1, + "JCHANGED": 1, + "Action": 2, + "SETVARS": 2, + "requestId": 17, + "GMR": 6, + "**n": 1, + "SETPASSWORD": 2, + "n": 197, + "properly": 1, + "quoted": 1, + "Emulation": 1, + "Stop": 1, + "testField2": 1, + "U16405": 1, + "indexLength": 10, + "Electronic": 1, + "*6": 1, + "expressions": 1, + "QUEUED.": 1, + "details.": 12, + "OR": 2, + "related.": 1, + "see": 25, + "uses": 1, + "GMRGB0": 9, + "Equal": 1, + "situation": 1, + "crlf=": 3, + "COMP2": 2, + "CHECK": 1, + "cont.": 1, + "DIC": 6, + "terms": 11, + "|": 170, + "EP": 4, + "Unescape": 1, + "FIRSTTABLE": 1, + "utf8=": 1, + "NAMECOUNT": 1, + "rotateVersion": 2, + "json_": 2, + "STOP": 1, + "f*n": 1, + "native": 1, + "value": 72, + "bug": 1, + ".subject": 3, + "MENU.": 1, + "runSelect": 3, + "Filename": 1, + "gtm": 1, + "data": 43, + "DIQ": 3, + "IO": 4, + "msg_": 1, + "AND": 3, + "l=": 2, + "Please": 2, + "_GMRGADD": 1, + "ERRRET": 2, + "undefined": 1, + "Internet": 1, + "The": 11, + "VA": 1, + "language": 6, + "config": 3, + "WVDFN": 6, + "##": 2, + "toPage": 1, + "On": 1, + "PRINTOUT.": 1, + "aa": 9, + "keyLength": 6, + "U16386": 1, + "-": 1604, + "setpassword": 1, + "DATA2PCE": 1, + "deleteSession": 2, + "url": 2, + "SNT": 1, + "userSecretKey": 6, + "after": 2, + "AT": 1, + "more": 13, + "want": 1, + "BASIS": 1, + "getRootURL": 1, + "zchset": 2, + "dotted": 1, + ".pattern": 3, + "NOTIFICATION": 1, + "y=": 3, + "errors.": 1, + "BUILDING": 1, + ".start": 1, + "str_c": 2, + ".Q": 1, + "openNewFile": 2, + ";": 1275, + "dw": 1, + "hh": 4, + "means": 2, + "newString_c": 1, + "BROWSE": 1, + "debugging": 1, + "address": 1, + "mergeArrayToSession": 1, + "long": 2, + "UNICODE": 1, + "U16420": 1, + "_username_": 1, + "errorResponse": 9, + "CRLF": 1, + "putAttributes": 2, + "h*86400": 1, + "*n": 1, + "sub": 2, + "double": 1, + "execution": 2, + "check": 2, + "would": 1, + "values": 4, + "URL": 2, + "That": 1, + "val": 5, + "replaceAll": 11, + "I": 43, + "LL": 1, + "force": 1, + "reverse": 1, + "should": 16, + "WARRANTIES": 1, + "zextract": 3, + "false": 5, + "making": 1, + "#4294967296": 6, + "records": 2, + "returned": 1, + "usable": 1, + ".m": 11, + "W": 4, + "PXAI": 1, + "DataBallet": 4, + "mess": 3, + "n32h": 5, + "for": 77, + "simply": 1, + "e.g.": 2, + "condition": 1, + "given": 1, + "positioning.": 1, + "_end": 1, + "DataBallet.": 4, + "WVLOOP": 1, + "gt": 1, + "secs": 2, + "letter": 1, + "pkoper": 2, + "if1": 2, + "digest.final": 2, + "encoded_": 2, + "isolocale": 2, + "wrapper.": 1, + "itemExists": 1, + "leave": 1, + "_data": 2, + "Execute": 1, + "e": 210, + "PuTTY": 1, + "Setup": 1, + "argument": 1, + "todrop": 2, + "AttributeName.": 2, + "_pid": 1, + "other": 1, + "PKG2IEN": 1, + "strx": 2, + "Developments": 4, + "dev": 1, + "SEND": 1, + "addToSession": 2, + "exportAllCustomTags": 2, + "between": 2, + "RTSLOC": 2, + "s": 775, + "keyId": 108, + "FLAT.": 1, + "choice": 1, + "decodeBase64": 1, + "utfConvert": 1, + "userKeyId": 6, + "PRCAAPR": 1, + ".startTime": 5, + "JITSIZE": 1, + "Test": 1, + "Service": 1, + "NOVSIT": 1, + "EVP_DigestInit": 1, + "login": 1, + ".byref": 2, + "determine": 1, + "normaliseTextValue": 1, + "_crlf_": 1, + "mlimit": 20, + "itemId": 41, + "reference": 2, + "cx": 2, + "#16": 3, + "Functions": 1, + "zewdAPI": 52, + "trap": 10, + "use": 5, + "clear": 6, + "_i_": 5, + "setWarning": 2, + "_m_": 1, + "advance": 1, + "providing": 1, + "domainName": 38, + "domainMetadata": 1, + "or": 46, + "sc": 3, + "line": 9, + "PXAPIUTL": 2, + "IF": 9, + "escaping": 1, + "law": 1, + "nor": 1, + "required": 4, + "inAttr": 2, + "encode": 1, + "subject": 24, + "nb": 2, + "TRAN": 5, + "Initialise": 2, + "report": 1, + "unescName": 5, + "DTOUT": 2, + "_mm": 1, + "way": 1, + "description": 1, + "paths": 2, + "WV": 8, + "_PRCATY_": 1, + "due": 1, + "without": 11, + "IT": 1, + "Version": 1, + "p3": 3, + "np": 17, + "NL_CRLF": 1, + "diagnosis": 1, + "ToStr": 4, + "GROUPED": 1, + "process": 3, + "serverArray": 1, + "maxNoOfDomains": 2, + "Product": 2, + "See": 15, + "label": 4, + "dw/2": 6, + "dn": 4, + "2": 14, + "I18N": 2, + "version": 16, + "h_": 3, + "_gloRef1_key_": 1, + "please": 1, + "Non": 1, + ".erroffset": 1, + "group": 4, + "dpkg": 1, + "NAMEENTRYSIZE": 1, + "DTIME": 1, + "Anyway": 1, + "WVXREF": 1, + "ERRORS": 4, + "token_": 1, + "ONLY": 1, + "method": 2, + "at": 21, + "setJSON": 4, + "DEQUEUE": 1, + "corrected": 1, + "AUPNVPRV": 2, + "@": 8, + "WARNING2": 1, + "out": 2, + "Caller": 1, + "mergeGlobalFromSession": 2, + "subscript": 7, + "input_crlf": 1, + "More": 1, + "//regex.info/": 1, + "captured": 6, + "exception": 12, + "locales": 2, + "U16425": 1, + "compliance": 1, + "getGloRef": 3, + "SELECTING": 1, + "match": 41, + "*s": 4, + "being": 1, + "published": 11, + "GMRGD0": 7, + "License": 48, + "password": 8, + ".d": 1, + "VISIT": 3, + "valuex": 13, + "getSessionArrayErr": 1, + "ovector": 25, + "code.": 1, + "valid": 1, + "N": 19, + "p10": 2, + "fieldName": 5, + "longrun": 3, + "Resize": 1, + "_query": 1, + "SAVEFILE": 2, + "convertDateToSeconds": 1, + "e=": 1, + "setSessionValue": 6, + "ACCESSION#": 1, + "/9/94": 1, + "Experimental": 1, + "paramValue": 5, + "PRI": 3, + "WVNAME": 4, + "Per": 1, + "zewdMgr": 1, + "cgi": 1, + "utf8": 2, + ".PXAERR": 3, + "version.": 11, + "computeoptimist": 1, + "chown": 1, + "via": 2, + ".queryExpression": 1, + "n=": 1, + "WARRANTY": 11, + "_TRAN": 1, + "_STAT": 1, + "RCFN01": 1, + "_p": 1, + "GMRGPLVL": 6, + "parseJSON": 1, + "response": 29, + "Missing": 5, + ".serverArray": 1, + "start1": 2, + "permissions": 2, + "j": 67, + "zwrite": 1, + "Y_": 3, + "licensed": 1, + "getVersion": 1, + "U16401": 2, + "Mar": 1, + "terminated": 1, + "shortrun": 2, + "subs2": 6, + "*2": 1, + "createResponseStringToSign": 1, + "setTextValue": 4, + "always": 1, + "PCE": 2, + "maxNoOfItems": 3, + "specified": 4, + "zewdDOM": 3, + "frame": 1, + "option": 12, + "rights": 4, + "spaces": 3, + "Systems": 1, + "getAttributes": 2, + "x": 96, + "...F": 1, + "numsub": 1, + "valueErr": 1, + "ECODE": 1, + ".subst": 1, + "PCRE": 23, + "Perl": 1, + "tetris": 1, + "eg": 3, + "functions": 4, + "OpenSSL": 3, + "options": 45, + "nohandler": 4, + "ALREADY": 1, + "SOR": 1, + "some": 1, + "matched": 1, + "xxyy": 2, + "myglobal": 1, + "_crlf_response_crlf": 4, + "game": 1, + "xx": 16, + "NL": 1, + "allows": 1, + "add/edit/delete": 1, + "BLD": 2, + "ignore": 12, + "now": 1, + "p#f": 1, + "nnvp": 1, + "chars.": 1, + "Returns": 2, + "if": 44, + "_GMRGE0": 1, + "zl_": 2, + "running": 1, + "example": 5, + ")": 2150, + "AWSAcessKeyId": 1, + "system": 1, + "label1": 1, + "zewdSchemaForm": 1, + "fun.": 1, + "create": 6, + "Fibonacci": 1, + "PROFILE": 1, + "p8": 2, + "context.": 1, + "DX": 2, + "Use": 1, + "Foundation": 11, + "document": 6, + "it": 44, + "patterns": 3, + "a#2": 1, + "zmwire_null_value": 1, + "Fidelity": 2, + "me": 2, + "hd": 3, + "digest": 19, + "WASH": 1, + "named": 12, + "and/or": 11, + "ay": 2, + "queryIndex": 1, + "JIT": 1, + "<http://www.gnu.org/licenses/>": 11, + "E": 12, + "incorrectly": 1, + "<aogonek>": 1, + "dynamic": 1, + "existing": 2, + "domainList": 3, + "ze": 8, + "unwind": 1, + "pcreexamples": 32, + "lc": 3, + "runQuery": 2, + "Pattern": 1, + "Instructions": 1, + "*x": 1, + "default": 6, + "WVBRNOT": 1, + "Those": 1, + "POSIX": 1, + ".i": 2, + "PRVPRIM": 2, + "N.N1": 4, + "raised": 2, + "action": 15, + "newline": 1, + "FromStr": 6, + "increment": 11, + "S": 99, + "CAPTURECOUNT": 1, + "silently": 1, + "stripTrailingSpaces": 2, + "countDomains": 2, + "copy": 13, + "setGlobal": 1, + "zs": 2, + "ISO": 3, + "second": 1, + "orderall": 1, + "GNU": 33, + "a*": 1, + "COMPILE": 2, + "cleardown": 2, + "Source": 1, + "maxLines": 4, + "_crlf": 22, + "U16418": 1, + "GMRGPAR_": 2, + "changeApp": 1, + "Thats": 1, + "two": 2, + "a": 112, + "WARNINGS": 2, + "DIRUT": 1, + "arrayName": 35, + "_x_": 1, + "n#256": 1, + "API": 7, + "itemName": 16, + "/Xy/g": 6, + "nextToken": 7, + "comments": 4, + "@PXADATA@": 8, + "pointer": 4, + "thisWord=": 7, + "has": 6, + "well": 2, + "contains": 2, + "@x": 4, + "TODO": 1, + "o": 51, + "_FILE": 1, + "extcErr": 1, + "identifier": 1, + "testField3": 3, + "options=": 4, + "log": 1, + "variables": 2, + "U16406": 1, + "j_": 1, + "textValue": 6, + "compiled": 1, + "trademark": 2, + "code": 28, + "POVPRM": 1, + "occurred": 2, + "Parenteau": 2, + "install": 1, + "BADCHAR": 1, + "MATCH_LIMIT_RECURSION": 1, + "JR": 1, + "to": 73, + "and": 56, + "attribute": 14, + "Apr": 1 }, - "Makefile": { + "Lua": { + "Shift": 1, + "if": 2, + "self.buflength": 7, + "be": 1, + "that": 1, + "in_3_float": 1, + "internal": 1, + "triggering": 1, + "bang": 3, + "for": 9, + "Buffer": 1, + "number": 3, + "times": 2, + "length": 1, + "given": 1, + "active": 2, + "register": 3, + "self.bytebuffer": 8, + "Incoming": 1, + "Total": 1, + "To": 3, + "Object": 1, + "Toggle": 1, + "clear": 2, + "modder": 1, + "_": 2, + "sloc": 3, + "which": 1, + "receives": 2, + "self.num": 5, + "repeat": 1, + "self.filedata": 4, + "self.inlets": 3, + "randomized": 1, + "FileModder": 10, + "else": 1, + "HelloCounter": 4, + "self": 10, + "to": 8, + "Number": 4, + "ipairs": 2, + "FLOAT": 1, + "inlet": 2, + "{": 16, + "next": 1, + "filename": 2, + "table.remove": 1, + "randlimit": 4, + "math.random": 8, + "then": 4, + "converted": 1, + "write": 3, + "binfile": 3, + "mechanisms": 1, + "+": 3, + "in_2_list": 1, + "in_1_symbol": 1, + "in_8_list": 1, + "in_6_float": 1, "all": 1, - "hello": 4, - "main.o": 3, - "factorial.o": 3, - "hello.o": 3, - "g": 4, - "+": 8, - "-": 6, - "o": 1, - "main.cpp": 2, - "c": 3, - "factorial.cpp": 2, - "hello.cpp": 2, - "clean": 1, - "rm": 1, - "rf": 1, - "*o": 1, - "SHEBANG#!make": 1, + "(": 56, "%": 1, - "ls": 1, - "l": 1 + "Active": 1, + "true": 3, + "elseif": 2, + "Toggles": 1, + "self.batchlimit": 3, + "trim": 1, + "on": 1, + "i": 10, + "FileListParser": 5, + "f": 12, + "sel": 3, + "A": 1, + "list": 1, + "indexed": 2, + "table.insert": 4, + "do": 8, + "new": 3, + "within": 2, + "increments": 1, + "first": 1, + "get": 1, + "Glitch": 3, + "second": 1, + "outname": 3, + "#self.bytebuffer": 1, + "outlet": 10, + "]": 17, + "from": 3, + "..": 7, + "in_7_list": 1, + "in_3_list": 1, + "image": 1, + "changes": 1, + "glitches": 3, + "byte": 2, + "whether": 1, + "self.glitchtype": 5, + "its": 2, + "object": 1, + "simple": 1, + "atoms": 3, + "it": 2, + "in_1_bang": 2, + "batch": 2, + "whatever": 1, + "at": 2, + "v": 4, + "currently": 1, + "initialize": 3, + "in": 7, + "end": 26, + "whenever": 1, + "in_5_float": 1, + "schunksize": 2, + "patbuffer": 3, + "Minimum": 1, + "pattern": 1, + "File": 2, + "an": 1, + "route": 1, + "bytes": 3, + "the": 7, + "Base": 1, + "self.outlets": 3, + ")": 56, + "s": 5, + "buffer": 2, + "insertpoint": 2, + "should": 1, + "in_4_list": 1, + "splicebuffer": 3, + "namedata": 1, + "counting": 1, + "Currently": 1, + "or": 2, + "self.extension": 3, + "Hold": 1, + "extension": 2, + "point": 2, + "data": 2, + "self.randtoggle": 3, + "function": 16, + "d": 9, + "a": 5, + "of": 9, + "return": 3, + "bounds": 2, + "#patbuffer": 1, + "are": 1, + "random": 3, + "last": 1, + "[": 17, + "inlet.": 1, + "in_2_float": 2, + "type": 2, + "file": 8, + "single": 1, + "pd.Class": 3, + "self.randrepeat": 5, + "}": 16, + "range": 1, + "ints": 1, + "files": 1, + "local": 11, + "counter": 1, + "plen": 2, + "-": 60, + "vidya": 1, + "buflength": 1, + "repeating": 1, + "splice": 1, + "glitch": 2, + "pd.post": 1, + "self.glitchpoint": 6 + }, + "VHDL": { + "architecture": 2, + "VHDL": 1, + "use": 1, + "out": 1, + "file": 1, + "std_logic": 2, + "port": 1, + "example": 1, + "not": 1, + "ieee": 1, + "library": 1, + "ieee.std_logic_1164.all": 1, + "begin": 1, + "end": 2, + "of": 1, + "rtl": 1, + "in": 1, + "is": 2, + "inverter": 2, + "entity": 2, + "<": 1, + ")": 1, + "b": 2, + "a": 2, + "(": 1, + ";": 7, + "-": 2 + }, + "Creole": { + "Ruby": 1, + "README": 1, + "c": 1, + "*": 5, + "converter": 2, + "for": 1, + "found": 1, + "s": 1, + "page": 1, + "files.": 1, + "Github": 1, + "be": 1, + "{": 6, + "render": 1, + "CI": 1, + "it": 1, + "Project": 1, + "larsch": 1, + "LICENSE": 1, + "minad": 1, + "*.creole": 1, + "please": 1, + "this": 1, + "Mendler": 1, + "and": 1, + "Mendler.": 1, + "//travis": 1, + "//github.com/minad/creole": 1, + "Daniel": 2, + "SYNOPSIS": 1, + "file": 1, + "in": 1, + "specified": 1, + ")": 5, + "//rdoc.info/projects/minad/creole": 1, + "GitHub": 1, + "Creole.creolize": 1, + "}": 6, + "Lars": 2, + "free": 1, + "ci.org/minad/creole": 1, + "markup": 1, + "BUGS": 1, + "uses": 1, + "lightweight": 1, + "report": 1, + "terms": 1, + ".": 1, + "bug": 1, + "is": 3, + "you": 1, + "redistributed": 1, + "to": 2, + "http": 4, + "at": 1, + "the": 5, + "gem": 1, + "language": 1, + "of": 1, + "It": 1, + "require": 1, + "//wikicreole.org/": 1, + "software": 1, + "Copyright": 1, + "on": 2, + "html": 1, + "under": 1, + "may": 1, + "a": 2, + "(": 5, + "INSTALLATION": 1, + "install": 1, + "If": 1, + "Christensen": 2, + "github": 1, + "project": 1, + "RDOC": 1, + "distribution.": 1, + "AUTHORS": 1, + "-": 5, + "tracker": 1, + "creole": 1, + "Travis": 1, + "Creole": 6, + "//github.com/minad/creole/issues": 1, + "https": 1, + "HTML": 1 + }, + "Tea": { + "template": 1, + "foo": 1, + "<%>": 1 + }, + "LiveScript": { + "<~>": 1, + "copy": 1, + "underscores_i": 1, + "var": 1, + "til": 1, + "dashes": 1, + "file": 2, + "extends": 1, + "from": 1, + "fold": 1, + "Class": 1, + "ms": 1, + "and": 3, + "write": 1, + "return": 2, + "_000_000km": 1, + "filter": 1, + "or": 2, + "//regexp2//g": 1, + "read": 1, + "data": 2, + "est": 1, + "Anc": 1, + "strings": 1, + "/regexp1/": 1, + "if": 2, + "map": 1, + "to": 2, + "const": 1, + "<": 1, + "error": 6, + "callback": 4, + "args": 1, + "class": 1, + "+": 1, + "|": 3, + "]": 2, + "[": 2, + "identifiers": 1, + ")": 10, + "(": 9, + "e": 2, + "*": 1, + "d": 3, + "c": 3, + "b": 3, + "-": 25, + "a": 8 + }, + "Verilog": { + "#10": 10, + ".end_hor_retr": 2, + "#10000": 1, + "ps2_dat": 3, + "clock": 3, + "Defaults": 1, + "#1": 1, + "wbm_adr_o": 3, + "seg_7": 4, + ".D": 6, + "mux": 1, + "1": 7, + "horiz_total": 3, + ".wbm_adr_o": 1, + "Inputs": 2, + ".cur_start": 2, + "received": 1, + "finished": 1, + "original": 3, + "enable": 6, + ".csrm_dat_o": 1, + "/": 11, + "csr_dat_i": 3, + "h01": 1, + "root": 8, + ".pal_read": 2, + ".pal_we": 2, + "INPUT_BITS*i": 5, + "vga_green_o": 2, + "timescale": 10, + "debounced": 1, + "-": 73, + "command_was_sent": 2, + "sending": 1, + "endmodule": 18, + "wb_sel_i": 3, + ".wbs_stb_i": 1, + "data": 4, + "default": 2, + "clk": 40, + "the_command": 2, + ".hcursor": 2, + ".INPUT_BITS": 1, + "cout": 4, + "out": 5, + "propagation": 1, + "command": 1, + "dac_write_data_cycle": 3, + "+": 36, + ".vga_green_o": 1, + "set_reset": 3, + ".end_vert": 2, + "t_button_debounce": 1, + ".read_mode": 2, + "PS2_STATE_3_END_TRANSFER": 3, + "sqrt_pipelined": 3, + "register": 6, + ".csrm_dat_i": 1, + "vert_total": 3, + "chain_four": 3, + "pal_addr": 3, + "opA": 4, + "is": 4, + ".wb_dat_o": 2, + "cur_start": 3, + "csrm_sel_o": 2, + ")": 378, + "received_data_en": 4, + "start_gen": 7, + "any": 1, + "wb_cyc_i": 2, + "ch": 1, + "valid": 2, + ".st_ver_retr": 2, + "vga_blue_o": 2, + "wb_clk_i": 6, + ".ps2_dat": 1, + "write_mode": 3, + "wb_we_i": 3, + "pipeline_registers": 1, + "lcd": 1, + ".rst": 1, + ".en": 4, + "}": 11, + "hex2": 2, + "wb_dat_o": 2, + ".color_dont_care": 2, + ".ps2_data": 1, + "debounce": 6, + "DEBOUNCE_HZ": 4, + "b0": 27, + "%": 3, + "BIT_WIDTH*": 5, + "mouse_datain": 1, + "ps2_mouse": 1, + "ns": 8, + "If": 1, + "send": 2, + "Synchronous": 12, + ".the_command": 1, + "PS2_STATE_1_DATA_IN": 3, + "{": 11, + "hex0": 2, + "#": 10, + ".wb_dat_i": 2, + "wb_ack_o": 2, + "y": 21, + ".dac_read_data": 2, + ".wb_sel_i": 2, + "t_sqrt_pipelined": 1, + "ps2_clk_reg": 4, + "genvar": 3, + ".dac_we": 2, + "sum": 5, + "has": 1, + "map_mask": 3, + "COUNT": 4, + "||": 1, + "mouse": 1, + "wb_dat_i": 3, + ".vh_retrace": 2, + "en": 13, + "stb": 4, + "output": 42, + "control": 1, + "number": 2, + "h3": 1, + "radicand_gen": 10, + ".write_mode": 2, + ".DEBOUNCE_HZ": 1, + ".horiz_sync": 1, + ".ps2_clk_negedge": 2, + "vh_retrace": 3, + ".wb_clk_i": 2, + "Data": 13, + "button_debounce": 3, + "raster_op": 3, + "Input": 2, + "h1": 1, + "t_div_pipelined": 1, + "cpu_mem_iface": 1, + ".wbm_we_o": 1, + "ps2_clk": 3, + "pipeline": 2, + "initial": 3, + "read_mode": 3, + "mem_wb_dat_o": 3, + ".send_command": 1, + ".reset_n": 3, + "csr_adr_o": 2, + ".wb_stb_i": 2, + "hex_group3": 1, + "bits": 2, + "or": 14, + ".end_ver_retr": 2, + "mouse_cmdout": 1, + ".cur_end": 2, + "vga_cpu_mem_iface": 1, + "dac_read_data_cycle": 3, + "ps2_data_reg": 5, + ".CE": 6, + "PS2_STATE_2_COMMAND_OUT": 2, + "hex_group1": 1, + "radicand": 12, + "pal_read": 3, + "o": 6, + ".seg": 4, + "pal_we": 3, + "dac_read_data": 3, + "always": 23, + ".quotient": 1, + ".vga_blue_o": 1, + "wb_stb_i": 2, + "vga_mem_arbitrer": 1, + "reset": 13, + "wait_for_incoming_data": 3, + ".csrm_adr_o": 1, + "BIT_WIDTH*i": 2, + "gen_sign_extend": 1, + "optional": 2, + "bx": 4, + "PS2_STATE_4_END_DELAYED": 4, + ".bitmask": 2, + ".x_dotclockdiv2": 2, + ".S": 6, + ".set_reset": 2, + "shift_reg1": 3, + "cycle": 1, + "csr_adr_i": 3, + "send_command": 2, + ".wb_adr_i": 2, + "Registers": 2, + "@": 16, + "vga_red_o": 2, + "INPUT_BITS*": 27, + "#100": 1, + "k": 2, + "wb_tga_i": 5, + ".BITS": 1, + "for": 4, + "DFF8": 1, + "//": 117, + ".Q": 6, + ".start_addr": 1, + "horiz_sync": 2, + ".end_horiz": 2, + "i": 62, + "ps": 8, + ".clk": 6, + ".wbs_dat_o": 1, + "DFF6": 1, + "ps2_mouse_cmdout": 1, + ".wait_for_incoming_data": 1, + "ps2_clk_negedge": 3, + "reg": 26, + "divisor": 5, + "read_map_select": 3, + "<": 47, + "vga_lcd": 1, + "g": 2, + ".vert_total": 2, + "last_ps2_clk": 4, + "case": 3, + "error_communication_timed_out": 3, + "DFF4": 1, + "asynchronous": 2, + "BIT_WIDTH": 5, + "generate": 3, + "Received": 1, + "e1": 1, + "begin": 46, + "e": 3, + "of": 8, + ".ps2_clk_posedge": 2, + "csrm_adr_o": 2, + "DFF2": 1, + "Clock": 14, + "vga_config_iface": 1, + "parameter": 7, + "end_ver_retr": 3, + "#50": 2, + ".received_data": 1, + "hex_display": 1, + "c": 3, + "endgenerate": 3, + "DFF0": 1, + ".wbm_stb_o": 1, + ".wbs_dat_i": 1, + "mask": 3, + "ps2_clk_posedge": 3, + ".INIT": 6, + ".vcursor": 2, + "pipe_out": 5, + ".horiz_total": 2, + ".divisor": 1, + ".dac_write_data_cycle": 2, + "wb_adr_i": 3, + "a": 5, + "BITS": 2, + "&&": 3, + ".wbs_ack_o": 1, + ".read_map_select": 2, + "dsp_sel": 9, + "s0": 1, + "st_ver_retr": 3, + "w_vert_sync": 3, + ".color_compare": 2, + ".csrm_we_o": 1, + "////////////////////////////////////////////////////////////////////////////////": 14, + "CLK_FREQUENCY": 4, + "assign": 23, + ".dac_write_data": 2, + ".data_valid": 2, + "]": 179, + ".reset": 2, + "INPUT_BITS": 28, + ".C": 6, + ".csrm_sel_o": 1, + "state": 6, + ".ps2_clk": 1, + "[": 179, + "color_compare": 3, + ".vert_sync": 1, + "next_state": 6, + "Internal": 2, + ".received_data_en": 1, + "h00": 1, + "Bidirectionals": 1, + "Signal": 2, + ".v_retrace": 2, + "posedge": 11, + ".csr_dat_o": 1, + ".dac_read_data_register": 2, + "WAIT": 6, + "end_hor_retr": 3, + ".enable_set_reset": 2, + "bouncy": 1, + "this": 2, + "ns_ps2_transceiver": 13, + ".vga_red_o": 1, + "received_data": 2, + "b11": 1, + "COUNT_VALUE": 2, + "opB": 3, + "values": 3, + ".error_communication_timed_out": 1, + "*": 4, + "v_retrace": 3, + "color_dont_care": 3, + "Outputs": 2, + ".wb_rst_i": 2, + ".root": 1, + ".dac_write_data_register": 2, + "mem_arbitrer": 1, + "#0.1": 8, + "VDU": 1, + "quotient_correct": 1, + "st_hor_retr": 3, + "csrm_dat_o": 2, + "(": 378, + ".csr_dat_i": 1, + "x_dotclockdiv2": 3, + "csrm_we_o": 2, + "hcursor": 3, + "hex3": 2, + ".wb_we_i": 2, + "Mhz": 1, + "start": 12, + "dac_we": 3, + "b1": 19, + "&": 6, + "num": 5, + ".st_hor_retr": 2, + "PS2_STATE_0_IDLE": 10, + "reset_n": 32, + ".graphics_alpha": 2, + "|": 2, + "root_gen": 15, + "hex1": 2, + "bitmask": 3, + "new": 1, + "even": 1, + "NUMBER_OF_STAGES": 7, + "data_valid": 7, + "finish": 2, + "else": 22, + ".csr_stb_o": 1, + ".wb_ack_o": 2, + ".chain_four": 2, + "FDRSE": 6, + "z": 7, + "ns/1ps": 2, + ".wbm_sel_o": 1, + "INPUT_WIDTH": 5, + "csrm_dat_i": 2, + "signal": 3, + "been": 1, + "wire": 67, + "x": 41, + "csr_stb_o": 3, + "mask_4": 1, + "end_vert": 3, + ".wbm_dat_o": 1, + ".rst_i": 1, + "end_horiz": 3, + "vga": 1, + "start_addr": 2, + "button": 25, + ".clk_i": 1, + "PS2": 2, + "Machine": 1, + "dac_read_data_register": 3, + "OUTPUT_WIDTH": 4, + "pipe_gen": 6, + "dac_write_data_register": 3, + "dividend": 3, + "wb_rst_i": 6, + "graphics_alpha": 4, + ".csr_stb_i": 1, + "pipe_in": 4, + "set": 6, + "<<": 2, + "dac_write_data": 3, + ".wbs_adr_i": 1, + "if": 23, + ".memory_mapping1": 2, + "odd": 1, + "csr_stb_i": 2, + "quotient": 2, + "localparam": 4, + "enable_set_reset": 3, + "#1000": 1, + "Wires": 1, + "Bidirectional": 2, + ".wbm_dat_i": 1, + "OUTPUT_BITS": 14, + "ps2_mouse_datain": 1, + "start_receiving_data": 3, + ".button": 1, + "hex_group2": 1, + ".pal_addr": 2, + ".dividend": 1, + "conf_wb_ack_o": 3, + "vert_sync": 2, + "module": 18, + "pal_write": 3, + "wbm_sel_o": 3, + "FIRE": 4, + "hex_group0": 1, + "vcursor": 3, + ".radicand": 1, + "conf_wb_dat_o": 3, + "Command": 1, + "sign_extend": 3, + ".raster_op": 2, + "mask_gen": 9, + "an": 6, + "endcase": 3, + "cur_end": 3, + "div_by_zero": 2, + "inout": 2, + "wbm_dat_o": 3, + "sign_extender": 1, + "div_pipelined": 2, + "l": 2, + "DFF10": 1, + "negedge": 8, + "input": 68, + ".R": 6, + "maj": 1, + "<=>": 4, + ".start": 2, + "mem_wb_ack_o": 3, + ".wbs_we_i": 1, + ".div_by_zero": 1, + ".csr_adr_o": 1, + "j": 2, + ".wbm_ack_i": 1, + "to": 3, + "memory_mapping1": 3, + ".shift_reg1": 2, + ".pal_write": 2, + ".debounce": 1, + ".map_mask": 2, + ".dac_read_data_cycle": 2, + "h": 2, + "Reset": 1, + "pipeline_stage": 1, + ".command_was_sent": 1, + "end": 48, + ".CLK_FREQUENCY": 1, + "wbm_ack_i": 3, + "sign_extended_original": 2, + ".num": 4, + ";": 287, + "OUTPUT_BITS*INPUT_BITS": 9, + "f": 2, + "s_ps2_transceiver": 8, + "wbm_dat_i": 3, + "State": 1, + "i/2": 2, + "wbm_we_o": 3, + "count": 6, + "e0": 1, + ".csr_adr_i": 1, + "d": 3, + "b0000": 1, + "value": 6, + "unsigned": 2, + "config_iface": 1, + "b": 3, + "#5": 3, + "wbm_stb_o": 3, + "s1": 1, + ".start_receiving_data": 1, + "idle_counter": 4, + "b01": 1, + "integer": 1, + "Initial": 6, + ".wbs_sel_i": 1 + }, + "VimL": { + "no": 1, + "smartcase": 1, + "showmatch": 1, + "guioptions": 1, + "showcmd": 1, + "syntax": 1, + "set": 7, + "toolbar": 1, + "nocompatible": 1, + "on": 1, + "ignorecase": 1, + "T": 1, + "-": 1, + "incsearch": 1 + }, + "AppleScript": { + "desktop": 1, + "number": 6, + "date": 1, + "JavaScript": 2, + "FinderSelection": 4, + "list": 9, + "enabled": 2, + "and": 7, + "userInput": 4, + "less": 1, + "s": 3, + "in": 13, + "answer": 3, + "say": 1, + "folders": 2, + "h": 4, + "property": 7, + "than": 6, + "return": 16, + "equal": 3, + "greater": 5, + "currentHour": 9, + "be": 2, + "type_list": 6, + "gets": 1, + "handled": 2, + "with": 11, + "minimumFontSize": 4, + "messages": 1, + "type": 6, + "random": 4, + "<": 2, + "tell": 40, + "processFile": 8, + "content": 2, + "every": 3, + "isVoiceOverRunning": 3, + "invisibles": 2, + "shell": 2, + "paddingLength": 2, + "window": 5, + "localMailboxes": 3, + "drawer": 2, + "&": 63, + "prompt": 2, + "i": 10, + "myFrontMost": 3, + "returned": 5, + "not": 5, + "If": 2, + "messageCountDisplay": 5, + "subject": 1, + "hour": 1, + "output": 1, + "for": 5, + "font": 2, + "this_item": 14, + "cursor": 1, + "double": 2, + "get": 1, + "URL": 1, + "windowHeight": 3, + "my": 3, + "as": 27, + "count": 10, + "terminalCommand": 6, + "FS": 10, + "I": 2, + "space": 1, + "then": 28, + "isVoiceOverRunningWithAppleScript": 3, + "passed": 2, + "display": 4, + "integer": 3, + "exit": 1, + "new": 2, + "radio": 1, + "(": 89, + "folder": 10, + "if": 50, + "item_info": 24, + "padString": 3, + "currently": 2, + "size": 5, + "nn": 2, + "length": 1, + "handler": 2, + "message": 2, + "time": 1, + "processes": 2, + "everyAccount": 2, + "characters": 1, + "document": 2, + "currentTime": 3, + "color": 1, + "name": 8, + "Ideally": 2, + "w": 5, + "fieldLength": 5, + "extension_list": 6, + "on": 18, + "buttons": 3, + "field": 1, + "button": 4, + ")": 88, + "vo": 1, + "pane": 4, + "theMailboxes": 2, + "a": 4, + "bounds": 2, + "readjust": 1, + "currentDate": 3, + "item": 13, + "SelectionCount": 6, + "windowWidth": 3, + "outgoing": 2, + "string": 17, + "me": 2, + "whose": 1, + "screen_height": 2, + "this": 2, + "processFolder": 8, + "AppleScript": 2, + "eachAccount": 3, + "x": 1, + "is": 40, + "clicked": 2, + "m": 2, + "character": 2, + "theFolder": 6, + "false": 9, + "value": 1, + "day": 1, + "path": 6, + "text": 13, + "try": 10, + "highFontSize": 6, + "thePOSIXFileName": 6, + "alias": 8, + "from": 9, + "droplet": 2, + "default": 4, + "choose": 2, + "nice": 1, + "newFontSize": 6, + "desktopLeft": 1, + "crazyTextMessage": 2, + "true": 8, + "newFileName": 4, + "paddedString": 5, + "MyPath": 4, + "elements": 1, + "error": 3, + "currentMinutes": 4, + "theString": 4, + "the": 56, + "lowFontSize": 9, + "first": 1, + "open": 8, + "position": 1, + "isRunningWithAppleScript": 3, + "of": 72, + "times": 1, + "AM": 1, + "need": 1, + "sound": 1, + "frontmost": 1, + "could": 2, + "screen_width": 2, + "messageText": 4, + "or": 6, + "{": 32, + "-": 57, + "VoiceOver": 1, + "desktopRight": 1, + "these_items": 18, + "getMessageCountsForMailboxes": 4, + "amPM": 4, + "to": 128, + "unread": 1, + "run": 4, + "UI": 1, + "desktopBottom": 1, + "group": 1, + "Terminal": 1, + "delimiters": 1, + "extension": 4, + "info": 4, + "properties": 2, + "desktopTop": 2, + "displayString": 4, + "theFilePath": 8, + "theText": 3, + "do": 4, + "mailbox": 2, + "userPicksFolder": 6, + "set": 108, + "thePOSIXFilePath": 8, + "outputMessage": 2, + "POSIX": 4, + "accountMailboxes": 3, + "visible": 2, + "script": 2, + "below": 1, + "dialog": 4, + "account": 1, + "current": 3, + "thesefiles": 2, + "click": 1, + "fontList": 2, + "some": 1, + "file": 6, + "end": 67, + "stringLength": 4, + "result": 2, + "else": 14, + "repeat": 19, + "make": 3, + "mailboxes": 1, + "activate": 3, + "convertCommand": 4, + "process": 5, + "contains": 1, + "}": 32, + "eachCharacter": 4, + "application": 16, + "mailboxName": 2, + "selection": 2, + "isRunning": 3, + "/": 2, + "returns": 2, + "ensure": 1, + "without": 2, + "messageCount": 2, + "tab": 1, + "html": 2, + "pass": 1, + "eachMailbox": 4, + "unreadCount": 2, + "minutes": 2, + "delay": 3 + }, + "XSLT": { + "</table>": 1, + "<?xml>": 1, + "</tr>": 2, + "</h2>": 1, + "</td>": 2, + "My": 1, + "<xsl:template>": 1, + "version=": 2, + "Artist": 1, + "<th>": 2, + "bgcolor=": 1, + "<body>": 1, + "xmlns": 1, + "Title": 1, + "border=": 1, + "Collection": 1, + "<xsl:value-of>": 2, + "xsl=": 1, + "select=": 3, + "<tr>": 2, + "<h2>": 1, + "</xsl:stylesheet>": 1, + "</html>": 1, + "<td>": 2, + "</th>": 2, + "match=": 1, + "</body>": 1, + "<xsl:for-each>": 1, + "CD": 1, + "<html>": 1, + "</xsl:template>": 1, + "</xsl:for-each>": 1, + "<table>": 1, + "<xsl:stylesheet>": 1 + }, + "Forth": { + "number": 4, + "MAX": 2, + "Kernel": 4, + "forget": 1, + "list": 1, + "ADJACENT": 3, + "and": 3, + "less": 1, + "HELLO": 4, + "code": 3, + "recurse": 1, + ";": 61, + "//www.codekata.com/2007/01/code_kata_fifte.html": 1, + "s": 4, + "in": 4, + "semantics": 3, + "be": 2, + "return": 5, + "]": 15, + "x2": 5, + "R": 13, + "defined": 1, + "with": 2, + "type": 3, + "ABORT": 1, + "<": 14, + "nonimmediate": 1, + "here": 9, + "roll": 1, + "adjacent": 2, + "compile": 2, + "interpret": 1, + "refill": 2, + "ok": 1, + "Copyright": 3, + "i": 5, + "depth": 1, + "not": 1, + "reveal": 1, + "If": 1, + "dest": 5, + "Brinkhoff": 3, + "parse": 5, + "unresolved": 4, + "noname": 1, + "following": 1, + "thru": 1, + "swap": 12, + "e.g.": 2, + "orig": 5, + "u": 3, + "MANY": 1, + "NB": 3, + "drop": 4, + "dictionary": 1, + "does": 5, + "DUP": 14, + "editor": 1, + "Forth": 1, + "test": 1, + "ELSE": 7, + "INVERT": 1, + "...": 4, + "query": 1, + "power": 2, + "source": 5, + "I": 5, + "IF": 10, + "cr": 3, + "create": 2, + "then": 5, + "save": 2, + "synonym": 1, + "within": 1, + "(": 88, + "u.r": 1, + "if": 9, + "buffer": 2, + "update": 1, + "pad": 3, + "pick": 1, + "traverse": 1, + "MAXPOW2": 2, + "EMPTY": 1, + "<quote>": 1, + ".r": 1, + "negate": 1, + "cs": 2, + "BITS": 3, + "name": 1, + "HOW": 1, + "tools": 1, + "allot": 2, + "cell": 2, + "state": 2, + "Undefined": 1, + ")": 87, + "extended": 3, + "stack": 3, + "abort": 3, + "bounds": 1, + "dup": 10, + "which": 3, + "maximum": 1, + "tib": 1, + "evaluate": 1, + "N.": 1, + "until": 1, + "have": 1, + ".s": 1, + "word": 9, + "string": 3, + "r@": 2, + "body": 1, + "tuck": 2, + "align": 2, + "TODO": 12, + "@": 13, + "see": 1, + "made": 2, + "DROP": 5, + "postpone": 14, + "necessary": 1, + "blk": 3, + "x": 10, + "m": 2, + "*": 9, + "flush": 1, + "loop": 4, + "BEGIN": 3, + "highest": 1, + "#tib": 2, + "false": 1, + "scr": 2, + "Block": 2, + "value": 1, + "/cell": 2, + "can": 2, + "A": 5, + "kernel": 1, + "restore": 1, + "y": 5, + "utils": 1, + "+": 17, + "n": 22, + "LOG2": 1, + "load": 2, + "c": 3, + "flag": 4, + "true": 1, + "words.": 6, + "lastxt": 4, + "forth": 2, + "X": 5, + "emit": 2, + "unused": 1, + "THEN": 10, + "algorithm": 1, + "UNTIL": 3, + "empty": 2, + "the": 7, + "cells": 1, + "of": 3, + "orig1": 1, + "char": 10, + "**": 2, + "invert": 1, + "nr": 1, + "bl": 4, + "while": 2, + "KataDiversion": 1, + "OR": 1, + "n1_pow_n2": 1, + "Tools": 2, + "N": 6, + "bye": 1, + "uses": 1, + "http": 1, + "defer": 2, + "log2_n": 1, + "NIP": 4, + "C": 9, + "or": 1, + "i*2": 1, + "#source": 2, + "OVER": 2, + "assembler": 1, + "-": 473, + "orig2": 1, + "LOOP": 2, + "keep": 1, + "postponers": 1, + "ahead": 2, + "immediate": 19, + "action": 1, + "given": 3, + "SP": 1, + "buffers": 2, + "Lars": 3, + "caddr": 1, + "SWAP": 8, + "bits": 3, + "undefined": 2, + "DO": 2, + "extension": 4, + "variable": 3, + "c@": 2, + "execute": 1, + "do": 2, + "TWO": 3, + "|": 4, + "DEPTH": 2, + "chars": 1, + "**n": 1, + "cmove": 1, + "below": 1, + "Forth2012": 2, + "over": 5, + ".": 5, + "addr": 11, + "core": 1, + "n1": 2, + "current": 5, + "[": 16, + "has": 1, + "literal": 4, + "block": 8, + "end": 1, + "else": 6, + "repeat": 2, + "input": 2, + "numbers": 1, + "begin": 2, + "bits.": 1, + "kata": 1, + "nip": 2, + "find": 2, + "branch": 5, + "compute": 1, + "resolve": 4, + "/": 3, + "r": 18, + "two": 2, + "bool": 1, + "n2": 2, + "NOT": 3, + "rot": 2, + "dodoes_code": 1, + "parsing.": 1, + "x1": 5 + }, + "Nu": { + "cocoa": 1, + "application": 1, + "init": 1, + "Copyright": 1, + "Cocoa": 1, + "activateIgnoringOtherApps": 1, + "terminal": 1, + "this": 1, + "for": 1, + "point": 1, + "puts": 1, + "loop": 1, + "main": 1, + "run": 1, + "from": 1, + "when": 1, + "take": 1, + "delegate": 1, + "basics": 1, + "we": 1, + "window": 1, + "retain": 1, + "Hillegass": 1, + "load": 4, + "Burks": 1, + "Tim": 1, + "Entry": 1, + "the": 3, + "set": 1, + "setDelegate": 1, + "sharedApplication": 2, + "it.": 1, + "generation": 1, + "Technology": 1, + "NSApplicationMain": 1, + "makes": 1, + "menu": 1, + "definitions": 1, + "main.nu": 1, + "SHEBANG#!nush": 1, + "YES": 1, + "ve": 1, + "NSApplication": 2, + "Aaron": 1, + "Inc.": 1, + "Design": 1, + "program.": 1, + "event": 1, + "it": 1, + "focus": 1, + "alloc": 1, + "Nu": 1, + "nil": 1, + "started": 1, + "ApplicationDelegate": 1, + "t": 1, + "Neon": 1, + ")": 14, + "c": 1, + "(": 14, + "a": 1, + ";": 22 + }, + "Java": { + "Builder": 20, + "XMLDocumentFilter": 3, + "attrs.getQName": 1, + "Float.TYPE": 2, + "html.defineOrGetClassUnder": 1, + "encHandler.defineAnnotatedMethods": 1, + "org.kohsuke.stapler.Stapler": 1, + "NokogiriNonStrictErrorHandler4NekoHtml": 1, + "text.defineAnnotatedMethods": 1, + "j": 9, + "CHAR_TYPE": 3, + "<RuntimeException>": 1, + "getDescriptor": 15, + "dtd.defineAnnotatedMethods": 1, + "XmlEntityReference.class": 1, + "com.google.protobuf.ExtensionRegistry": 2, + "argumentTypes.length": 1, + "nodeSet": 1, + "isInteger": 1, + "xsltStylesheet.clone": 1, + "input": 18, + "comment": 1, + "req.getParameter": 4, + "from_bitField0_": 2, + "XmlNode": 5, + "parameters.length": 2, + "xmlDocument.clone": 1, + "xmlAttr.clone": 1, + "XSTREAM.alias": 1, + "xmlXpathContext": 3, + "xmlSchema": 3, + "XmlEntityDecl": 1, + "htmlDocument.setEncoding": 1, + "encHandler": 1, + "buf": 43, + "toString": 1, + "stylesheet.defineAnnotatedMethods": 1, + "com.google.protobuf.GeneratedMessage.Builder": 2, + "ruby_encoding": 3, + "registerAllExtensions": 1, + "this.errorHandler": 2, + "seed": 5, + "xmlAttr": 3, + "xmlDocument.defineAnnotatedMethods": 1, + "XmlNodeSet": 5, + "XmlComment": 5, + "basicLoad": 1, + "e.setUnfinishedMessage": 1, + "Functions.toEmailSafeString": 2, + "HTML_SAXPARSER_CONTEXT_ALLOCATOR": 2, + "htmlDocument": 6, + "tag": 3, + "boolean": 36, + "type": 3, + "c": 21, + "xmlSaxModule.defineClassUnder": 2, + "ObjectAllocator": 60, + "hashCode": 1, + "org.jruby.runtime.ObjectAllocator": 1, + "parsedMessage": 5, + "itemListeners": 2, + "schema.defineAnnotatedMethods": 1, + "xsltModule.defineClassUnder": 1, + ".floatValue": 1, + "setNodes": 1, + "package": 6, + "xmlDocument": 5, + "onChanged": 4, + "NumberFormat.getInstance": 2, + "args": 6, + ".computeBytesSize": 1, + "XmlDocument.rbNew": 1, + "e3779b9": 1, + "type.equalsIgnoreCase": 2, + "HTML_ELEMENT_DESCRIPTION_ALLOCATOR": 2, + "org.jruby.Ruby": 2, + "attr.defineAnnotatedMethods": 1, + "htmlElemDesc.defineAnnotatedMethods": 1, + "ParseException": 1, + "-": 15, + "classes.length": 2, + "xmlRelaxng": 3, + "other.getUnknownFields": 1, + "XmlNodeSet.class": 1, + "entref": 1, + "PARSER.parsePartialFrom": 1, + "BasicLibraryService": 1, + ".equalsIgnoreCase": 5, + "Type": 42, + "<ItemListener>": 2, + ".getNodeValue": 1, + "String": 33, + "w": 1, + "htmlDocument.defineAnnotatedMethods": 1, + "else": 33, + "Double.TYPE": 2, + "req": 6, + "this.sort": 2, + "Short.TYPE": 2, + "list.item": 2, + "init": 2, + "descriptor": 3, + "org.jruby.RubyModule": 1, + "FormValidation.warning": 1, + "k2": 38, + "Opcodes.IASTORE": 1, + "XmlEntityDecl.INTERNAL_PREDEFINED": 1, + "ReferenceQueue": 1, + "synchronized": 1, + "ret1": 2, + "clojure.asm": 1, + "&": 7, + "node": 14, + "Byte.TYPE": 2, + "getItems": 1, + "elementDecl.defineAnnotatedMethods": 1, + "XmlSchema.class": 1, + "htmlSaxModule": 3, + "Throwable": 4, + "cache": 1, + "XmlAttr.class": 1, + ".getAttributes": 1, + "descriptorData": 2, + "options": 4, + "XML_ELEMENT_CONTENT_ALLOCATOR": 2, + "argumentTypes": 2, + "characterData": 3, + "ISeq": 2, + "Constructor": 1, + "hudson.Util.fixEmpty": 1, + "ADMINISTER": 1, + "org.jvnet.hudson.reactor.ReactorException": 1, + "XML_ATTRIBUTE_DECL_ALLOCATOR": 2, + "XmlRelaxng": 5, + "Exception": 1, + "import": 66, + "long": 5, + "d.getName": 1, + "defaultInstance": 4, + "Jenkins.CloudList": 1, + ".getAllocator": 1, + "input.readBytes": 1, + "HashMap": 1, + "XmlRelaxng.class": 1, + "void": 25, + "rsp.sendRedirect2": 1, + "getNokogiriClass": 1, + "XmlDtd.class": 1, + "bitField0_": 15, + "<=>": 1, + "nokogiri.XmlDocument": 1, + "Document": 2, + "StaplerResponse.SC_FORBIDDEN": 1, + "XmlEntityDecl.EXTERNAL_GENERAL_UNPARSED": 1, + "XML_CDATA_ALLOCATOR": 2, + "i": 54, + ".generateResponse": 2, + "BigInteger": 1, + "to_bitField0_": 3, + "getItem": 1, + "ComputerListener.class": 1, + "xmlCdata": 3, + "unknownFields": 3, + "doQuietDown": 2, + "stylesheet": 1, + "hudson.Functions": 1, + "getSort": 1, + "case": 56, + "NAME_FIELD_NUMBER": 1, + "nokogiriClassCacheGvarName": 1, + "DefaultFilter": 2, + "org.apache.xerces.xni.XNIException": 1, + "com.google.protobuf.Parser": 2, + "//XMLDocumentFilter": 1, + "new": 131, + "isNamespace": 1, + "DOMParser": 1, + "stringOrNil": 1, + "attrs": 4, + "end": 4, + "defaultInstance.initFields": 1, + "Object": 31, + "XmlEntityDecl.EXTERNAL_PARAMETER": 1, + "getOpcode": 1, + "xmlNode.clone": 1, + "prototype": 2, + "@QueryParameter": 4, + "sort": 18, + "initParser": 1, + "headers": 1, + "Messages.Hudson_NotANumber": 1, + "}": 434, + "XmlEntityDecl.EXTERNAL_GENERAL_PARSED": 1, + "newUninitializedMessageException": 1, + "@java.lang.Override": 4, + "cache.remove": 1, + "any": 1, + "b": 7, + "throws": 26, + "pi.defineAnnotatedMethods": 1, + "//a": 1, + "clojure.lang": 1, + "XmlEntityReference": 5, + "xmlElement": 3, + "xpathContext.defineAnnotatedMethods": 1, + "xmlSyntaxError.defineAnnotatedMethods": 1, + "Augmentations": 2, + "XmlReader": 5, + "persons.ProtocolBuffer.Person.class": 2, + "options.strict": 1, + "FormValidation.error": 4, + "XML_READER_ALLOCATOR": 2, + "org.w3c.dom.NodeList": 1, + "xmlElementDecl": 3, + "ServletContext": 2, + "createNokogiriModule": 2, + "IPersistentCollection": 5, + "BOOLEAN": 6, + "XML_DTD_ALLOCATOR": 2, + "static": 141, + "Reference": 3, + "Numbers.compare": 1, + "xmlElementDecl.clone": 1, + ".hasPermission": 1, + "builder.getUnknownFields": 1, + "pluginManager": 2, + "super.mergeFrom": 1, + "methodDescriptor.indexOf": 1, + "BOOLEAN_TYPE": 3, + "cache.entrySet": 1, + "xmlReader": 5, + "XmlSaxParserContext.class": 1, + "HtmlEntityLookup.class": 1, + "BigInt": 1, + "HtmlElementDescription.class": 1, + "elementValidityCheckFilter": 3, + "CHAR": 6, + "needed": 1, + "InterruptedException": 2, + "hasheq": 1, + "Collections.synchronizedMap": 1, + "makeExtensionsImmutable": 1, + "[": 54, + "val": 3, + "Opcodes.IALOAD": 1, + "text": 2, + "k1": 40, + "runtime": 88, + "output.writeBytes": 1, + "XmlDocumentFragment.class": 1, + "buf.toString": 4, + "Character.TYPE": 2, + "attrDecl": 1, + "ServletException": 3, + "com.google.protobuf.Descriptors.FileDescriptor": 5, + "name.rawname": 2, + "XmlProcessingInstruction.class": 1, + "other": 6, + "hudson.ExtensionListView": 1, + "org.apache.xerces.xni.QName": 1, + "ruby.getObject": 13, + "hashCombine": 1, + "createDocuments": 2, + "XML_ELEMENT_DECL_ALLOCATOR": 2, + "pcequiv": 2, + ".getName": 1, + "java.io.IOException": 10, + "getNode": 1, + "nil": 2, + "org.kohsuke.stapler.QueryParameter": 1, + ".getDescriptor": 1, + "CopyOnWriteList": 4, + "com.google.protobuf.GeneratedMessage.FieldAccessorTable": 4, + "org.jruby.runtime.ThreadContext": 1, + "xmlSyntaxError.clone": 1, + "o": 12, + "xmlNode": 5, + "INT": 6, + "getNewEmptyDocument": 1, + "T": 2, + "XmlNamespace": 5, + "super.writeReplace": 1, + "getJob": 1, + "nodeMap.item": 2, + "getDefaultInstance": 2, + "hudson.cli.declarative.CLIResolver": 1, + "Map.Entry": 1, + "XmlSchema": 5, + "methodDescriptor": 2, + "this.buf": 2, + "XmlNode.class": 1, + "attrs.removeAttributeAt": 1, + "<ComputerListener>": 2, + ".replace": 2, + "m.getReturnType": 1, + "xmlProcessingInstruction": 3, + "removeNSAttrsFilter": 2, + "XmlEntityDecl.class": 1, + "XML_SAXPARSER_CONTEXT_ALLOCATOR": 2, + "private": 77, + "t.buf": 1, + "rq": 1, + "runtime.newNotImplementedError": 1, + "IRubyObject": 35, + "nokogiri.HtmlDocument": 1, + "XmlXpathContext": 5, + "b.toString": 1, + "returnType": 1, + "parseUnknownField": 1, + "h": 2, + "StringBuffer": 14, + "Number": 9, + "XmlDomParserContext": 1, + "returnType.getDescriptor": 1, + "hash": 3, + "car": 18, + "getUnknownFields": 3, + "com.google.protobuf.MessageOrBuilder": 1, + "maybeForceBuilderInitialization": 3, + "createXsltModule": 2, + "xmlCdata.clone": 1, + "PARSER.parseDelimitedFrom": 2, + "context.getRuntime": 3, + "isInitialized": 5, + "super": 7, + "parseFrom": 8, + "org.apache.xerces.xni.Augmentations": 1, + "this": 16, + "classOf": 1, + "xmlSchema.clone": 1, + "d.getComponentType": 1, + "t.sort": 1, + "|": 5, + "Map": 1, + "Integer.TYPE": 2, + ".get": 1, + "java.lang.String": 15, + "e.getKey": 1, + "o.hashCode": 2, + "xmlText.clone": 1, + "warningText": 3, + "XML_XPATHCONTEXT_ALLOCATOR": 2, + "nodeMap": 1, + "false": 12, + "buildPartial": 3, + "XMLParserConfiguration": 1, + "Person": 10, + "getInternalName": 2, + "@CLIResolver": 1, + "XmlNamespace.class": 1, + "mutable_bitField0_": 1, + "attrs.getLength": 1, + "XsltStylesheet": 4, + "getComputerListeners": 1, + "Type.ARRAY": 2, + ".parse": 2, + "XmlDocument": 8, + "+": 83, + "methodDescriptor.toCharArray": 2, + "Boolean.TYPE": 2, + "Method": 3, + "NamedNodeMap": 1, + "com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner": 2, + "FormValidation": 2, + "nokogiri.internals.NokogiriHelpers.getNokogiriClass": 1, + "LONG_TYPE": 3, + "xmlReader.clone": 1, + "java.util.HashMap": 1, + "XML_COMMENT_ALLOCATOR": 2, + "Integer": 2, + "java.io.InputStream": 4, + "options.noError": 2, + "<V>": 3, + "headers.getLength": 1, + "output": 2, + "setFeature": 4, + "com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders": 1, + "getParserForType": 1, + "XmlElementContent.class": 1, + ".internalBuildGeneratedFileFrom": 1, + "result.bitField0_": 1, + "class": 12, + "Util": 1, + "other.hasName": 1, + "NokogiriErrorHandler": 2, + "xmlSyntaxError": 4, + "FLOAT": 6, + "ruby.defineModule": 1, + "Jenkins.MasterComputer": 1, + "result": 5, + "Class": 10, + "char": 13, + "default": 6, + "x.getClass": 1, + "identical": 1, + "element": 3, + "nokogiri.internals.NokogiriHelpers.isNamespace": 1, + "setSlaves": 1, + "StaplerRequest": 4, + "relaxng": 1, + "clear": 1, + "isWindows": 1, + "XmlComment.class": 1, + "clearCache": 1, + "org.apache.xerces.xni.parser.XMLDocumentFilter": 1, + "n": 3, + "com.google.protobuf.ByteString.copyFromUtf8": 2, + ".writeTo": 1, + "||": 8, + "getSlaves": 1, + "htmlDocument.clone": 1, + ".getChildNodes": 2, + "hudson.model": 1, + "other.name_": 1, + "getType": 10, + "HTMLConfiguration": 1, + "htmlModule.defineClassUnder": 3, + "java.math.BigInteger": 1, + "CloneNotSupportedException": 23, + "nodeMap.getLength": 1, + "com.google.protobuf.UnknownFieldSet": 2, + "org.jruby.RubyArray": 1, + "done": 4, + "e.getValue": 1, + "PARSER": 2, + "org.apache.xerces.xni.XMLAttributes": 1, + "org.jruby.runtime.load.BasicLibraryService": 1, + "HtmlElementDescription": 1, + "Hudson_NotAPositiveNumber": 1, + "detected_encoding.isNil": 1, + "rsp": 6, + "XmlXpathContext.class": 1, + "java.lang.Object": 7, + "<Builder>": 1, + "break": 4, + "RubyModule": 18, + "XmlAttributeDecl": 1, + "Jenkins": 2, + "this.mergeUnknownFields": 1, + "XsltStylesheet.class": 2, + "super.startElement": 2, + "this.off": 1, + "g": 1, + "XML_DOCUMENT_FRAGMENT_ALLOCATOR": 2, + "nokogiri.defineModuleUnder": 3, + "INT_TYPE": 3, + ".toStringUtf8": 1, + "augs": 4, + "getSlave": 1, + "allocate": 30, + "L": 1, + "elementContent.defineAnnotatedMethods": 1, + "adminCheck": 3, + "org.w3c.dom.Document": 1, + "bs.isValidUtf8": 1, + "bs.toStringUtf8": 1, + "memoizedIsInitialized": 4, + "List": 3, + "config.setErrorHandler": 1, + "XmlEntityDecl.INTERNAL_GENERAL": 1, + "persons.ProtocolBuffer.Person.getDefaultInstance": 2, + "HtmlDomParserContext": 3, + "BYTE": 6, + "IOException": 8, + "createNokogiriClassCahce": 2, + "Numbers.equal": 1, + "computerListeners": 2, + "item": 2, + "builder": 4, + "HTML_DOCUMENT_ALLOCATOR": 2, + "la": 1, + "XStream": 1, + "ruby.getStandardError": 2, + "m.getParameterTypes": 1, + "transient": 2, + "Numbers.hasheq": 1, + "java.util.concurrent.ConcurrentHashMap": 1, + "xmlSaxModule": 3, + "{": 434, + "serialVersionUID": 1, + "filters": 3, + "create": 2, + "RubyArray.newEmptyArray": 1, + "com.google.protobuf.AbstractParser": 1, + "FormValidation.ok": 1, + "opcode": 17, + "Void.TYPE": 3, + "entref.defineAnnotatedMethods": 1, + "config": 2, + "hudson.util.FormValidation": 1, + "java.io.File": 1, + "this.unknownFields": 4, + "xmlSaxPushParser.defineAnnotatedMethods": 1, + "org.jruby.RubyFixnum": 1, + "<<": 1, + "XmlSaxPushParser": 1, + "File.pathSeparatorChar": 1, + "floatValue": 1, + "getSerializedSize": 2, + "this.len": 2, + "xmlDocumentFragment": 3, + "assignDescriptors": 1, + "xsltModule.defineAnnotatedMethod": 1, + "TopLevelItem": 3, + "*": 2, + "registry": 1, + "input.readTag": 1, + "ConcurrentHashMap": 1, + "ThreadContext": 2, + "c.isPrimitive": 2, + "htmlModule": 5, + "double": 4, + "unknownFields.build": 1, + "xmlNodeSet.setNodes": 1, + "isAdmin": 4, + "createXmlModule": 2, + "XmlText": 6, + "XML_RELAXNG_ALLOCATOR": 2, + "d.isArray": 1, + "size": 16, + "t": 6, + "parse": 1, + "Stapler.getCurrentResponse": 1, + "off": 25, + "htmlSaxParserContext": 4, + "LONG": 7, + "relaxng.defineAnnotatedMethods": 1, + "ARRAY": 6, + "memoizedSerializedSize": 3, + "XML_DOCUMENT_ALLOCATOR": 2, + "documentFragment": 1, + "initErrorHandler": 1, + "VOID_TYPE": 3, + ".add": 1, + "encoding": 2, + "getInstance": 2, + "getElementType": 2, + "XmlReader.class": 1, + "return": 267, + "charset": 2, + "nokogiri.defineClassUnder": 2, + "<K,V>": 1, + ".equiv": 2, + "java.util.Collections": 2, + "RubyFixnum.newFixnum": 6, + "<Person>": 3, + "NodeList": 2, + "doFieldCheck": 3, + "errorHandler": 6, + "method.getReturnType": 1, + "m": 1, + ".len": 1, + "xmlRelaxng.clone": 1, + "xmlComment.clone": 1, + "protected": 8, + "PersonOrBuilder": 2, + "result.name_": 1, + "Hudson": 5, + "nokogiriClassCache.put": 26, + "newBuilder": 5, + "org.jruby.RubyClass": 2, + "len": 24, + "name.length": 2, + ".getClassName": 1, + "//": 16, + "getDefaultInstanceForType": 2, + "org.jruby.runtime.builtin.IRubyObject": 2, + "getJobListeners": 1, + "getClassName": 1, + "htmlSaxModule.defineClassUnder": 1, + "method.getParameterTypes": 1, + "NumberFormat": 1, + "deserialization": 1, + "Builder.create": 1, + "boost": 1, + "HtmlDocument": 7, + "rq.poll": 2, + "XML_SCHEMA_ALLOCATOR": 2, + "d.isPrimitive": 1, + "true": 21, + "xmlModule.defineModuleUnder": 1, + "testee.toCharArray": 1, + "elementDecl": 1, + "tryGetCharsetFromHtml5MetaTag": 2, + "element.defineAnnotatedMethods": 1, + "k1.equals": 2, + "com.google.protobuf.CodedOutputStream": 2, + "htmlEntityLookup": 1, + "b.append": 1, + "internal_static_persons_Person_descriptor": 3, + "K": 2, + "xmlSaxParserContext.defineAnnotatedMethods": 1, + "newBuilderForType": 2, + "htmlDocument.setParsedEncoding": 1, + "parseDelimitedFrom": 2, + "clone.setMetaClass": 23, + "extensionRegistry": 16, + "XSLT_STYLESHEET_ALLOCATOR": 2, + "XmlCdata.class": 1, + "0": 1, + "getSize": 1, + "typeDescriptor.toCharArray": 1, + "XmlDocumentFragment": 5, + "HtmlEntityLookup": 1, + "getReturnType": 2, + "hudson.util.CopyOnWriteList": 1, + "hudson.Platform": 1, + "writeTo": 1, + "method": 2, + "Hudson.class": 1, + "Jenkins.getInstance": 2, + "xsltModule": 3, + "NokogiriStrictErrorHandler": 1, + "org.w3c.dom.NamedNodeMap": 1, + "qs": 3, + ".getMessageTypes": 1, + "name_": 18, + "z": 1, + "ret": 4, + "equalsIgnoreCase": 1, + "persons": 1, + "<T>": 1, + "XML_ENTITY_DECL_ALLOCATOR": 2, + "HtmlDocument.class": 1, + "QName": 2, + "NokogiriService": 1, + "isPrimitive": 1, + "java.lang.ref.Reference": 1, + "xmlEntityRef.clone": 1, + "xmlElement.clone": 1, + "XmlAttr": 5, + "list.getLength": 1, + "name.getChars": 1, + "&&": 6, + "htmlDoc": 1, + "java.lang.ref.SoftReference": 1, + "if": 116, + "super.clear": 1, + "XML_ELEMENT_ALLOCATOR": 2, + "XmlProcessingInstruction": 5, + "nokogiri": 6, + ".mergeFrom": 2, + "hasName": 5, + ")": 1097, + "xmlDtd.clone": 1, + "list": 1, + "isDarwin": 1, + "org.apache.xerces.xni.parser.XMLParserConfiguration": 1, + "XML_NODESET_ALLOCATOR": 2, + "Type.OBJECT": 2, + "nokogiri.NokogiriService": 1, + ".toString": 1, + "initFields": 2, + "while": 10, + "XmlElementDecl.class": 1, + "CloudList": 3, + "java.util.Map": 3, + "byte": 4, + "result.isInitialized": 1, + "XmlDtd": 5, + "ENCODING_HANDLER_ALLOCATOR": 2, + "data": 8, + "instanceof": 19, + "s": 10, + "xmlEntityRef": 3, + "int": 62, + "typeDescriptor": 1, + "e.getUnfinishedMessage": 1, + "xmlSaxParserContext": 5, + ".getNodeName": 4, + "parser": 1, + "documentFragment.defineAnnotatedMethods": 1, + "try": 26, + "xmlModule.defineClassUnder": 23, + "com.google.protobuf.InvalidProtocolBufferException": 9, + "OBJECT": 7, + "final": 78, + "ReactorException": 2, + "comment.defineAnnotatedMethods": 1, + "runtimeException": 2, + "public": 214, + "ruby.getClassFromPath": 26, + "java.text.ParseException": 1, + ".length": 1, + "match": 2, + "HTML_ENTITY_LOOKUP_ALLOCATOR": 2, + "persons.ProtocolBuffer.Person.Builder.class": 2, + "errorText": 3, + "entries": 1, + ".hasheq": 1, + "nodeSet.defineAnnotatedMethods": 1, + "syntaxError": 2, + "xmlComment": 3, + "elementContent": 1, + "entityDecl": 1, + "cdata.defineAnnotatedMethods": 1, + "setName": 1, + "XmlSyntaxError.class": 1, + "errorHandler.getErrors": 1, + "l": 5, + "XML_NODE_ALLOCATOR": 2, + "XmlText.class": 1, + "java.text.NumberFormat": 1, + "ref": 16, + "EncodingHandler": 1, + "error": 1, + "XmlElement.class": 1, + "ProtocolBuffer": 2, + ".ensureFieldAccessorsInitialized": 2, + "NokogiriService.HTML_DOCUMENT_ALLOCATOR.allocate": 1, + "RubyClass": 92, + "getJobCaseInsensitive": 1, + "bs": 1, + "htmlEntityLookup.defineAnnotatedMethods": 1, + "hc": 4, + "org.cyberneko.html.filters.DefaultFilter": 1, + "index": 4, + "PluginManager": 1, + "java.lang.reflect.Constructor": 1, + "dead": 1, + "java.lang.ref.ReferenceQueue": 1, + "com.google.protobuf.ByteString": 13, + "c2": 2, + "clone": 47, + "javax.servlet.ServletContext": 1, + "document.getDocumentElement": 2, + "XML_ATTR_ALLOCATOR": 2, + "wrapDocument": 1, + "<String,>": 2, + "xmlModule": 7, + "xmlXpathContext.clone": 1, + "XmlSyntaxError": 5, + "xmlDtd": 3, + "pi": 1, + "e": 31, + "throw": 9, + "XNIException": 2, + "com.google.protobuf.Message": 1, + "htmlElemDesc": 1, + "XmlSaxPushParser.class": 1, + "Messages.Hudson_NotANegativeNumber": 1, + "document": 5, + "XmlElement": 5, + "VOID": 5, + "setProperty": 4, + "java.util.List": 1, + "options.noWarning": 2, + "com.google.protobuf.GeneratedMessage": 1, + "XmlAttributeDecl.class": 1, + "xpathContext": 1, + "createSyntaxErrors": 2, + "DOUBLE_TYPE": 3, + "org.cyberneko.html.HTMLConfiguration": 1, + "build": 1, + "mergeFrom": 5, + "createHtmlModule": 2, + "com.google.protobuf.UnknownFieldSet.newBuilder": 1, + "XML_SYNTAXERROR_ALLOCATOR": 2, + "testee.equals": 1, + "null": 80, + "ruby": 25, + "Stapler.getCurrentRequest": 1, + "y": 1, + "t.off": 1, + "sneakyThrow": 1, + "rsp.sendError": 1, + "clearName": 1, + "nokogiriClassCache": 2, + "c.getName": 1, + "item.getName": 1, + ".getACL": 1, + "fixEmpty": 8, + "req.getQueryString": 1, + "testee": 1, + "htmlDocument.setDocumentNode": 1, + "(": 1097, + "reader.defineAnnotatedMethods": 1, + ".getSerializedSize": 1, + "persons.ProtocolBuffer.internal_static_persons_Person_descriptor": 3, + "Slave": 3, + "XmlCdata": 5, + "com.google.protobuf.UnknownFieldSet.Builder": 1, + "equiv": 17, + "XmlSaxParserContext": 5, + "createSaxModule": 2, + "implements": 3, + "klazz": 107, + "XML_NAMESPACE_ALLOCATOR": 2, + "toBuilder": 1, + "FLOAT_TYPE": 3, + "r": 1, + "isValid": 2, + "XML_PROCESSING_INSTRUCTION_ALLOCATOR": 2, + "ruby_encoding.isNil": 1, + "persons.ProtocolBuffer.Person": 22, + "t.len": 1, + "writeReplace": 1, + "RuntimeException": 5, + "java_encoding": 2, + "name": 10, + "<": 13, + "equals": 2, + "org.kohsuke.stapler.StaplerRequest": 1, + "xmlNamespace": 3, + "java.lang.reflect.Method": 1, + "ExtensionListView.createCopyOnWriteList": 2, + "nokogiri.internals.NokogiriHelpers.stringOrNil": 1, + "internalGetFieldAccessorTable": 2, + "xmlNodeSet.clone": 1, + "xmlSaxPushParser": 1, + "assigner": 2, + "org.apache.xerces.parsers.DOMParser": 1, + "doLogRss": 1, + "value": 11, + "DOUBLE": 7, + "IHashEq": 2, + "xmlNamespace.clone": 1, + "interface": 1, + "xmlProcessingInstruction.clone": 1, + "javax.servlet.ServletException": 1, + "k": 5, + "noInit": 1, + "element_names": 3, + "XmlDocument.class": 1, + "getDescriptorForType": 1, + "finally": 2, + "switch": 6, + "StaplerResponse": 4, + "@SuppressWarnings": 1, + "ItemListener.class": 1, + "attr": 1, + "startElement": 2, + "File": 2, + "element.uri": 1, + "EncodingHandler.class": 1, + "attrDecl.defineAnnotatedMethods": 1, + "SHORT_TYPE": 3, + "e.getMessage": 1, + "MasterComputer": 1, + "org.kohsuke.stapler.StaplerResponse": 1, + "com.google.protobuf.ExtensionRegistryLite": 8, + "XMLAttributes": 2, + "negative": 1, + "<?>": 1, + "htmlSaxParserContext.clone": 1, + "namespace": 1, + "c.getParameterTypes": 1, + "c1": 2, + "xmlSaxParserContext.clone": 1, + "parameters": 4, + "//RubyModule": 1, + "Util.": 1, + "val.get": 1, + ".compareTo": 1, + "HtmlSaxParserContext.class": 1, + ".setUnfinishedMessage": 1, + "number": 1, + "root": 6, + "context": 8, + "d": 10, + "XML_ENTITY_REFERENCE_ALLOCATOR": 2, + "getDimensions": 3, + "dtd": 1, + "NullPointerException": 3, + "buf.append": 21, + "internal_static_persons_Person_fieldAccessorTable": 2, + "getObjectType": 1, + "SHORT": 6, + "persons.ProtocolBuffer.internal_static_persons_Person_fieldAccessorTable": 2, + "ElementValidityCheckFilter": 3, + "hudson.slaves.ComputerListener": 1, + "Messages": 1, + "Node": 1, + "reader": 1, + "xmlText": 3, + "xmlNodeSet": 5, + "com.google.protobuf.Descriptors.Descriptor": 4, + "hudson.model.listeners.ItemListener": 1, + "schema": 2, + "getArgumentTypes": 2, + "HtmlSaxParserContext": 5, + "com.google.protobuf.CodedInputStream": 5, + "x": 8, + "enableDocumentFragment": 1, + "XML_TEXT_ALLOCATOR": 2, + "xsltStylesheet": 3, + "com.google.protobuf.GeneratedMessage.BuilderParent": 2, + "for": 16, + "name.charAt": 1, + "headers.item": 2, + "]": 54, + "<Slave>": 2, + "Long": 1, + "catch": 27, + "PARSER.parseFrom": 8, + "setNameBytes": 1, + "onBuilt": 1, + "Platform.isDarwin": 1, + "BYTE_TYPE": 3, + "extends": 10, + "getConstructorDescriptor": 1, + "xmlDocumentFragment.clone": 1, + "slaves": 3, + "types": 3, + "nokogiri.internals": 1, + "Ruby": 43, + "RemoveNSAttrsFilter": 2, + "getName": 3, + "//cleanup": 1, + "parent": 4, + "parsePartialFrom": 1, + "htmlModule.defineModuleUnder": 1, + "getMethodDescriptor": 2, + "htmlSaxParserContext.defineAnnotatedMethods": 1, + "hudson.PluginManager": 1, + "Comparable": 1, + "classes": 2, + "node.defineAnnotatedMethods": 1, + "java.io.ObjectStreamException": 1, + "entityDecl.defineAnnotatedMethods": 1, + "@Override": 6, + "namespace.defineAnnotatedMethods": 1, + "cdata": 1, + "sneakyThrow0": 2, + "compare": 1, + "XmlEntityDecl.INTERNAL_PARAMETER": 1, + "entityDecl.defineConstant": 6, + "persons.ProtocolBuffer.PersonOrBuilder": 1, + "detected_encoding": 2, + "XML_SAXPUSHPARSER_ALLOCATOR": 2, + ";": 891, + "XmlElementDecl": 5, + "getNameBytes": 5, + "com.google.protobuf.UnknownFieldSet.getDefaultInstance": 1, + "jenkins.model.Jenkins": 1 + }, + "Monkey": { + "c": 1, + "DoStuff": 1, + "boolVariable1": 1, + "i#": 1, + "Field": 2, + "testField": 1, + "Class": 3, + "operators": 1, + "string5": 1, + "Until": 1, + "OnCreate": 1, + "DrawSpiral": 3, + "hitbox.Collide": 1, + "OnUpdate": 1, + "characers": 1, + "<Vector2D>": 1, + "i*2": 1, + "i*Cos": 1, + "updateCount*1.1": 1, + "Die": 1, + "#If": 1, + "strings": 1, + "]": 6, + "documentation": 1, + "Bool": 2, + "from": 1, + "class": 1, + "x": 2, + "Strict": 1, + "Extends": 2, + "For": 1, + "App": 1, + "Boolean": 1, + ".ToUpper": 1, + "worst.List": 1, + "sequence": 1, + "oneStuff": 1, + "String": 4, + "w*1.5": 1, + "in": 1, + "<String[]>": 1, + ")": 12, + "b": 6, + "string4": 1, + "syntax": 1, + "End": 8, + "&": 1, + "separated": 1, + "Method": 4, + "oss": 1, + "SetUpdateRate": 1, + "Print": 2, + "x#": 1, + "escape": 1, + "y#": 1, + "DrawRect": 1, + "True": 2, + "event.pos": 1, + "Enemy": 1, + "the": 1, + "Local": 3, + "keywords": 1, + "boolVariable2": 1, + "prints": 1, + "w": 3, + "+": 5, + "killed": 1, + "with": 1, + "clock": 3, + "Next": 1, + "Game": 1, + "Abstract": 1, + "he": 2, + "DoOtherStuff": 1, + "string6": 1, + "lessStuff": 1, + ".2": 1, + "sample": 1, + "extending": 1, + "TARGET": 2, + "a": 3, + "Global": 14, + "(": 12, + "updateCount": 3, + "OnRender": 1, + "|": 2, + "#ElseIf": 1, + "string3": 1, + "worstCase": 1, + "text": 1, + "comma": 1, + "listOfStuff": 3, + "array": 1, + "i*3": 1, + "VectorNode": 1, + "DeviceWidth/2": 1, + "Step": 1, + "#End": 1, + "generics": 1, + "preprocessor": 1, + "shorttype": 1, + "Node": 1, + "y": 2, + "-": 2, + "i*Sin": 1, + "New": 1, + "Cls": 1, + "me": 1, + "False": 1, + "[": 6, + "Function": 2, + "field": 1 + }, + "TeX": { + "approved": 1, + "@date": 1, + "Arts": 1, + "page": 3, + "if@twoside": 1, + "pt": 1, + "chaptermark": 1, + "addvspace": 2, + "setbox0": 2, + "@dotsep": 2, + "@department": 3, + "evensidemargin": 2, + "and": 2, + "leavevmode": 1, + "@topnewpage": 1, + "RTcleardoublepage": 3, + "fontsize": 7, + "in": 10, + "m@ne": 2, + "psych": 1, + "approvedforthe#1": 1, + "endgroup": 1, + "global": 2, + "%": 59, + "advisor": 1, + "footnoterule": 1, + "]": 22, + "hskip": 1, + "def": 12, + "be": 3, + "Presented": 1, + "newenvironment": 1, + "theindex": 2, + "Specified.": 1, + "comment": 1, + "rightskip": 1, + "makebox": 6, + "baselineskip": 2, + "nobreak": 2, + "bfseries": 3, + "ProvidesClass": 1, + "let": 10, + "t": 1, + "Partial": 1, + "ifodd": 1, + "slshape": 2, + "addpenalty": 1, + "advisor#1": 1, + "if@mainmatter": 1, + "thechapter": 1, + "not": 1, + "thebibliography": 2, + "If": 1, + "@division": 3, + "rightmark": 2, + "normalfont": 1, + "addtocontents": 2, + "Thesis": 5, + "c@tocdepth": 1, + "division#1": 1, + "Abstract": 2, + "endtheindex": 1, + "newif": 1, + "for": 5, + "leaders": 1, + "following": 1, + "relax": 2, + "cleardoublepage": 4, + "Approved": 2, + "@advisor": 3, + "ProcessOptions": 1, + "lot": 1, + ".6in": 1, + "twocolumn": 1, + "@schapter": 1, + "@plus": 1, + "does": 1, + ".5in": 3, + "ifnum": 2, + "if@altadvisor": 3, + "@altadvisorfalse": 1, + "department": 1, + "if@twocolumn": 3, + "same": 1, + "oddsidemargin": 2, + "Contents": 1, + "No": 3, + "CurrentOption": 1, + "c@secnumdepth": 1, + "space#1": 1, + "major": 1, + "@author": 1, + "@percentchar": 1, + "@pnumwidth": 3, + "thispagestyle": 3, + "LO": 2, + "RequirePackage": 1, + "textheight": 4, + "AtBeginDocument": 1, + "space": 4, + "leftmark": 2, + "footnotesize": 1, + "above": 1, + "AtBeginDvi": 2, + "(": 3, + "gdef": 6, + "hb@xt@": 1, + "p@": 3, + "advance": 1, + "Capitals": 1, + "bigskip": 2, + "l@chapter": 1, + "Bachelor": 1, + "abstract": 1, + "RToldchapter": 1, + "headsep": 3, + "hrulefill": 5, + "pages": 2, + "LE": 1, + "center": 7, + "Table": 1, + "toc": 5, + "on": 1, + "m@th": 1, + ")": 3, + "@altadvisortrue": 1, + "leftskip": 2, + "fi": 13, + "null": 3, + "Requirements": 2, + "pdfinfo": 1, + "/12/04": 3, + "@thedivisionof": 3, + "italic": 1, + "like": 1, + "z@": 2, + "centerline": 8, + "Degree": 2, + "@highpenalty": 2, + "copy0": 1, + "if@restonecol": 1, + "@restonecoltrue": 1, + "hss": 1, + "nouppercase": 2, + "indexname": 1, + "remove": 1, + "altadvisor#1": 1, + "thepage": 1, + "LaTeX": 3, + "bibname": 2, + "out": 1, + "right": 1, + "sign": 1, + "/Creator": 1, + "AtEndDocument": 1, + "This": 2, + "@approvedforthe": 3, + "side": 2, + "c@page": 1, + "References": 1, + "headers": 6, + "vfil": 8, + "@restonecolfalse": 1, + "typeout": 1, + "endoldtheindex": 2, + "LaTeX2e": 1, + "renewcommand": 6, + "sure": 1, + "things": 1, + "@tempdima": 2, + "A": 1, + "from": 1, + "fancy": 1, + "scshape": 2, + "tabular": 2, + "wd0": 7, + "choose": 1, + "The": 4, + "vskip": 4, + "thanks": 1, + "special": 2, + "par": 6, + "left": 1, + "c": 5, + "lineskip": 1, + "SN": 3, + "ifx": 1, + "Class": 4, + "clearpage": 3, + "all": 1, + "selectfont": 6, + "empty": 4, + "/01/27": 1, + "RO": 1, + ".75em": 1, + "penalty": 1, + "both": 1, + "the": 14, + "@afterheading": 1, + "different": 1, + "chapter": 9, + "LoadClass": 1, + "@latex@warning@no@line": 3, + "of": 8, + "begingroup": 1, + "symbol": 1, + "reedthesis": 1, + "fancyhdr": 1, + "noexpand": 3, + "RIGHT": 2, + "headheight": 4, + "refstepcounter": 1, + "just": 1, + "@undefined": 1, + "hbox": 15, + "@afterindentfalse": 1, + "thechapter.": 1, + "em": 3, + "setcounter": 1, + "so": 1, + "one": 1, + "PassOptionsToClass": 1, + "newpage": 3, + "@altadvisor": 3, + "@empty": 1, + "@topnum": 1, + "secdef": 1, + "options": 1, + "RE": 2, + "or": 1, + "makes": 2, + "{": 180, + "Fulfillment": 1, + "rawpostscript": 1, + "-": 2, + "@makechapterhead": 2, + "given": 3, + "oldthebibliography": 2, + "@title": 1, + "Division": 2, + "your": 1, + "DeclareOption*": 1, + "use": 1, + "to": 8, + "@chapapp": 2, + "@chapter": 2, + "lowercase": 1, + "thing": 1, + "topmargin": 6, + "department#1": 1, + "textwidth": 2, + "addcontentsline": 5, + "When": 1, + "fancyhead": 5, + "parindent": 1, + "RToldcleardoublepage": 1, + "addtolength": 8, + "cm": 2, + "maketitle": 1, + "And": 1, + "setlength": 10, + "Reed": 5, + "below": 2, + ".": 1, + "fancyhf": 1, + "endthebibliography": 1, + "In": 1, + "titlepage": 2, + "book": 2, + "you": 1, + "oldtheindex": 2, + "thedivisionof#1": 1, + "parfillskip": 1, + "With": 1, + "[": 22, + "#1": 12, + "mu": 2, + "College": 5, + "end": 5, + "else": 7, + "begin": 4, + "onecolumn": 1, + "newcommand": 2, + "would": 1, + "@pdfoutput": 1, + "mkern": 2, + "}": 185, + "caps.": 2, + "small": 2, + "division": 2, + "renewenvironment": 2, + "hfill": 1, + "pagestyle": 2, + "contentsname": 1, + "LEFT": 2, + "NeedsTeXFormat": 1, + "if@openright": 1, + "protect": 2, + "lof": 1, + "endoldthebibliography": 2, + "footnote": 1, + "RTpercent": 3, + "#2": 4, + "majors": 1, + "will": 2 + }, + "Emacs Lisp": { + "object": 2, + "part": 2, + "FOR": 1, + "page": 2, + "mode.el": 1, + "based": 1, + "along": 1, + "lang": 1, + "list": 3, + "and": 3, + "code": 1, + "functions": 2, + ";": 333, + "auto": 1, + "case": 1, + "available.": 1, + "Keywords": 1, + "PURPOSE.": 1, + "s": 5, + "in": 3, + "paragraph": 3, + "dump": 2, + "dialect": 1, + "software": 1, + "%": 1, + "emacs": 1, + "]": 3, + "keyword": 2, + "be": 2, + "R": 2, + "distributed": 1, + "defun": 5, + "MA": 1, + "Emacs.": 1, + "table": 9, + "Software": 2, + "minibuffer": 1, + "fboundp": 1, + "language": 1, + "ignored": 1, + "//docs.julialang.org/en/latest/search/": 1, + "newline": 1, + "comment": 6, + "with": 4, + "only": 1, + "<": 1, + "STERM": 1, + "Created": 1, + "words": 1, + "let": 3, + "received": 1, + "window": 2, + "t": 6, + "send": 3, + "mode": 12, + "Street": 1, + "print": 1, + "files": 1, + "defaults": 2, + "Copyright": 1, + "&": 3, + "redistribute": 1, + "setq": 2, + "basic": 1, + "under": 1, + "not": 1, + "directory": 2, + "If": 1, + "etc": 1, + "release": 1, + "parse": 1, + "WARRANTY": 1, + "S": 2, + "forward": 1, + "GNU": 4, + "for": 8, + "max": 1, + "hook": 4, + "arguments": 2, + "font": 6, + "Franklin": 1, + "style": 2, + "busy": 1, + "final": 1, + "get": 3, + "help": 3, + "alist": 9, + "aggressive": 1, + "read": 1, + "editor": 2, + "terms": 1, + "Commentary": 1, + "_": 1, + "...": 1, + "General": 3, + "forloop": 1, + "as": 1, + "..": 3, + "space": 1, + "identity": 1, + "ignore": 2, + "screws": 1, + "###autoload": 2, + "pager": 2, + "w*": 1, + "Spinu.": 1, + "sequence": 1, + "funname": 5, + "Vitalie": 3, + "sexp": 1, + "function": 7, + "should": 2, + "Fifth": 1, + "defconst": 5, + "propertize": 1, + "inject": 1, + "if": 4, + "(": 156, + "length": 1, + "buffer": 3, + "interactive": 2, + "License": 3, + "quote": 2, + "lock": 6, + "at": 5, + "ESS": 5, + "Inc.": 1, + "nth": 1, + "used": 1, + "indent": 8, + "name": 8, + "temporary": 1, + "on": 2, + "FITNESS": 1, + ")": 144, + "regex": 5, + "column": 1, + "eldoc": 1, + "null": 1, + "a": 4, + "topics": 1, + "See": 1, + "search": 1, + "implied": 1, + "point": 6, + "WITHOUT": 1, + "insert": 1, + "string": 8, + "PARTICULAR": 1, + "have": 1, + "goto": 2, + "multi": 1, + "*NOT*": 1, + "version": 2, + "made": 1, + "Spinu": 2, + "this": 1, + "details.": 1, + "x": 2, + "is": 5, + "see": 2, + "*": 1, + "This": 4, + "free": 1, + "arg": 1, + "character": 1, + "constant": 1, + "transpose": 1, + "W": 1, + "completion": 4, + "copy": 2, + "temp": 2, + "fill": 1, + "let*": 2, + "ess": 48, + "defvar": 5, + "delimiter": 2, + "and/or": 1, + "from": 3, + "A": 1, + "default": 1, + "can": 1, + "funargs": 1, + "Filename": 1, + "USA.": 1, + "inside": 1, + "it": 3, + "nil": 12, + "Author": 1, + "calculate": 1, + "MERCHANTABILITY": 1, + "+": 5, + "that": 2, + "n": 1, + "vector": 1, + "load": 1, + "format": 3, + "tb": 1, + "post": 1, + "*in": 1, + "start": 13, + "line": 5, + "error": 6, + "workaround": 1, + "Foundation": 2, + "require": 2, + "modify": 5, + "later": 1, + "M": 2, + "autoload": 1, + "egrep": 1, + "funname.start": 1, + "customize": 5, + "the": 10, + "visibly": 1, + "julia.": 2, + "match": 1, + "first": 1, + "starting": 1, + "include": 1, + "symbol": 2, + "args": 10, + "of": 8, + "Floor": 1, + "char": 6, + "debugging": 1, + "warranty": 1, + "ANY": 1, + "while": 1, + "just": 1, + "more": 1, + "prefix": 2, + "dribble": 1, + "customise": 1, + "hope": 1, + "http": 1, + "COPYING.": 1, + "C": 2, + "when": 2, + "Public": 3, + "or": 3, + "subset": 2, + "useful": 1, + "skip": 1, + "re": 2, + "-": 294, + "entry": 4, + "Maintainer": 1, + "proc": 3, + "keep": 2, + "comments": 1, + "use": 1, + "min": 1, + "run": 2, + "your": 1, + "either": 1, + "to": 4, + "classes": 1, + "group": 1, + "optional": 3, + "version.": 1, + "You": 1, + "write": 2, + "show": 1, + "variable": 3, + "com": 1, + "inferior": 13, + "hooks": 1, + "set": 3, + "face": 4, + "program": 6, + "but": 2, + "local": 6, + "published": 1, + "q": 1, + "by": 1, + "command": 5, + ".": 40, + "even": 1, + "current": 2, + "project": 1, + "julia": 39, + "you": 1, + "cons": 1, + "replace": 1, + "[": 3, + "Syntax": 3, + "any": 1, + "doc": 1, + "end": 1, + "String": 1, + "Julia": 1, + "file": 10, + "add": 4, + "make": 4, + "car": 1, + "jl": 2, + "settings": 1, + ".*": 2, + "process": 5, + "concat": 7, + "logo": 1, + "notably": 1, + "regexp": 6, + "without": 1, + "Boston": 1, + "syntax": 7, + "Free": 2, + "unquote": 1, + "width": 1, + "complete": 1, + "versions": 1, + "julia.el": 2, + "separate": 1, + "will": 1, + "interaction": 1 + }, + "Scheme": { + "space": 1, + "n": 2, + "if": 1, + "set": 19, + "source": 2, + "for": 7, + "10": 1, + "50": 4, + "misc": 1, + "s42": 1, + "number": 3, + "particles": 11, + "default": 1, + "bullet.vel": 1, + "bullet.birth": 1, + "dt": 7, + "bullets": 7, + "glRotated": 2, + "glTranslated": 1, + "s27": 1, + "pi": 2, + "current": 15, + "mutable": 14, + "seconds": 12, + "glutIdleFunc": 1, + "particle": 8, + "args": 2, + "height": 8, + "pos": 16, + "b": 4, + "background": 1, + "make": 11, + "fields": 4, + "glutPostRedisplay": 1, + "distance": 3, + "when": 5, + "a.pos": 2, + "glutWireSphere": 3, + "integer": 25, + "vel": 4, + "size": 1, + "ships": 1, + "4": 1, + "else": 2, + "starting": 3, + "title": 1, + "nanosecond": 1, + "1": 2, + "ship.pos": 5, + "bullet": 16, + "is": 8, + "glutKeyboardFunc": 1, + "matrix": 5, + "procedure": 1, + ".": 1, + "sin": 1, + "x": 8, + "+": 28, + "ship": 8, + "record": 5, + "(": 359, + "color": 2, + "birth": 2, + "only": 1, + "window": 2, + "ship.theta": 10, + "let": 2, + "force": 1, + "char": 1, + "key": 2, + "display": 4, + "compat": 1, + "math": 1, + "reshape": 1, + "gl": 12, + "degrees": 2, + "cons": 1, + "par.lifetime": 1, + "#f": 5, + "i": 6, + "f": 1, + "s19": 1, + "lifetime": 1, + "list": 6, + "map": 4, + "ship.vel": 5, + "c": 4, + "say": 9, + "radius": 6, + "filter": 4, + "pack": 12, + "contact": 2, + "pack.pos": 3, + ";": 1684, + "score": 5, + "micro": 1, + "second": 1, + "level": 5, + "begin": 1, + "par.birth": 1, + "glutWireCone": 1, + "mod": 2, + "5": 1, + "cond": 2, + "inexact": 16, + "dharmalab": 2, + "2": 1, + "a.vel": 1, + "lambda": 12, + "records": 1, + "wrap": 4, + "surfage": 4, + "eager": 1, + "a.radius": 1, + "par.pos": 2, + "update": 2, + "y": 3, + "/": 7, + "cos": 1, + "initialize": 1, + "glut": 2, + "in": 14, + "s": 1, + "agave": 4, + "pt": 49, + "nanoseconds": 2, + ")": 373, + "glamour": 2, + "null": 1, + "pack.vel": 1, + "glu": 1, + "define": 27, + "p": 6, + "newline": 2, + "glutMainLoop": 1, + "#": 6, + "bullet.pos": 2, + "system": 2, + "radians": 8, + "glColor3f": 5, + "spaceship": 5, + "ammo": 9, + "asteroids": 15, + "basic": 1, + "d": 1, + "par.vel": 1, + "glutWireCube": 1, + "time": 24, + "<": 1, + "vector": 6, + "par": 6, + "geometry": 1, + "a": 19, + "of": 3, + "theta": 1, + "s1": 1, + "last": 3, + "utilities": 1, + "random": 27, + "randomize": 1, + "lists": 1, + "each": 7, + "comprehensions": 1, + "append": 4, + "excursion": 5, + "translate": 6, + "type": 5, + "import": 1, + "ec": 6, + "base": 2, + "pt*n": 8, + "bits": 1, + "case": 1, + "0": 7, + "ref": 3, + "buffered": 1, + "asteroid": 14, + "rnrs": 1, + "milli": 1, + "w": 1, + "-": 188, + "100": 6, + "<=>": 3, + "val": 3, + "width": 8, + "step": 1, + "angle": 6 + }, + "TypeScript": { + "tom.move": 1, + "var": 2, + "super.move": 2, + "move": 3, + "name": 5, + "console.log": 1, + "extends": 2, + "alert": 3, + "constructor": 3, + "sam.move": 1, + "new": 2, + "super": 2, + "this.name": 1, + "public": 1, + "tom": 1, + "Horse": 2, + "Animal": 4, + "sam": 1, + "Snake": 2, + ";": 8, + "+": 3, + "meters": 2, + "}": 9, + ")": 18, + "(": 18, + "{": 9, + "class": 3 + }, + "Groovy": { + "it.toString": 1, + "removed.": 1, + "ant.fileScanner": 1, + "ant.echo": 3, + "projectDir": 1, + ".each": 1, + "via": 1, + "name": 1, + "Gradle": 1, + "//Echo": 1, + "file": 1, + "subdirectory": 1, + "project": 1, + "plugin": 1, + "echo": 1, + "CWD": 1, + "//Docs": 1, + "task": 1, + "screen": 1, + "ant": 1, + "the": 3, + "echoDirListViaAntBuilder": 1, + "message": 1, + "description": 1, + "SHEBANG#!groovy": 1, + "//Print": 1, + "fileset": 1, + "of": 1, + "//Gather": 1, + "http": 1, + "println": 2, + "dir": 1, + "files": 1, + "path": 2, + "to": 1, + "in": 1, + "list": 1, + "project.name": 1, + "-": 1, + "with": 1, + "each": 1, + "}": 3, + "a": 1, + "//ant.apache.org/manual/Types/fileset.html": 1, + "{": 3, + ")": 7, + "(": 7 + }, + "SuperCollider": { + "*": 3, + "a.delay": 2, + "Out.ar": 1, + "Env.perc": 1, + "value": 1, + ".plot": 2, + "CCResponder": 1, + "/": 2, + "SynthDef": 1, + "{": 14, + "exprand": 1, + "e.next.postln": 1, + "]": 3, + "init": 1, + "scalarAt": 1, + "controlNum": 6, + "e": 1, + "a.test.plot": 1, + "controls": 2, + "*new": 1, + "var": 2, + "controls.at": 2, + ")": 34, + "b": 1, + "//boot": 1, + "resfreq": 3, + ".play": 2, + "rrand": 2, + "}": 14, + "Array.fill": 1, + ".fork": 1, + "Env.sine.asStream": 1, + "this.createCCResponders": 1, + "**": 1, + "arg": 4, + "BCR2000": 1, + "rangedControlBuses": 2, + ".value": 1, + ".range": 2, + "SinOsc.kr": 1, + "src": 3, + "b.test.plot": 1, + "val": 4, + "busAt": 1, + "at": 1, + "controlBuses.at": 2, + "Server.default": 1, + "Bus.control": 1, + "+": 4, + "rand2": 1, + "s.boot": 1, + "server": 1, + "controlBuses.put": 1, + ";": 32, + "(": 34, + "a": 2, + "do": 2, + "i": 5, + "|": 4, + "Env": 1, + "controlBuses": 2, + ".postln": 1, + "Pan2.ar": 1, + "//": 4, + "super.new.init": 1, + "responders": 2, + "num": 3, + "SinOsc.ar": 1, + "nil": 4, + "-": 1, + "Saw.ar": 1, + "Dictionary.new": 3, + "RLPF.ar": 1, + "sig": 7, + "[": 3, + "wait": 1, + "LFNoise2.kr": 2, + "chan": 3, + "controls.put": 1, + "createCCResponders": 1 + }, + "Scala": { + "recursion": 1, + "if": 2, + "Path.userHome": 1, + "Seq": 3, + "set": 2, + "dynamic": 1, + "fork": 2, + "initialCommands": 2, + "be": 1, + "for": 1, + "functions": 2, + "HelloWorld": 1, + "javaHome": 1, + "parameter": 1, + "nested": 1, + "artifactClassifier": 1, + "run": 1, + "sequence": 1, + "qty": 12, + "unmanagedJars": 1, + "input": 1, + "args": 1, + "version": 1, + "higher": 1, + "//": 4, + "compile": 1, + "order": 1, + "persistLogLevel": 1, + "updating": 1, + "_": 1, + "including": 1, + "implicit": 3, + "System.getProperty": 1, + "else": 2, + "bottles": 3, + "repository": 2, + "to": 4, + "def": 7, + "organization": 1, + "name": 4, + "mainClass": 2, + "Test": 3, + "{": 10, + "x": 3, + "aggregate": 1, + "url": 3, + "+": 29, + "libraryDependencies": 3, + "SNAPSHOT": 1, + "(": 34, + "println": 2, + "ThisBuild": 1, + "%": 12, + "Project.extract": 1, + "SHEBANG#!sh": 2, + "true": 5, + "resolvers": 2, + "scalaVersion": 1, + "offline": 1, + "scala": 2, + "id": 1, + "maxErrors": 1, + "showSuccess": 1, + "state": 3, + "sing": 3, + "f": 4, + "prompt": 1, + "map": 1, + "extends": 1, + "Level.Debug": 1, + "main": 1, + ".currentRef.project": 1, + "baseDirectory": 1, + "level": 1, + "crossPaths": 1, + "style": 2, + "ivyLoggingLevel": 1, + "Full": 1, + "timingFormat": 1, + "from": 1, + "]": 1, + "highest": 1, + "add": 2, + "console": 1, + "object": 2, + "tail": 1, + "/": 2, + "repositories": 1, + "at": 4, + "String": 5, + "<+=>": 1, + "publishTo": 1, + "in": 12, + "build": 1, + ".capitalize": 1, + "nextQty": 2, + "beers": 3, + "javaOptions": 1, + "the": 4, + ")": 34, + "refrain": 2, + "credentials": 2, + "retrieveManaged": 1, + "parallelExecution": 2, + "exec": 2, + "define": 1, + "DateFormat.getDateTimeInstance": 1, + "match": 2, + "#": 2, + "scalacOptions": 1, + "Int": 3, + "Application": 1, + "Ivy": 1, + "Compile": 4, + "project": 1, + "Array": 1, + "revisions": 1, + "logLevel": 2, + "Credentials": 2, + "packageDoc": 2, + "a": 2, + "libosmVersion": 4, + "of": 1, + "disable": 1, + "javacOptions": 1, + "DateFormat.SHORT": 2, + "clean": 1, + "pollInterval": 1, + "UpdateLogging": 1, + "publishArtifact": 2, + "[": 1, + "file": 3, + "java.text.DateFormat": 1, + "packageBin": 1, + "import": 1, + "Some": 6, + "publish": 1, + "song": 3, + "}": 11, + "this": 1, + "shellPrompt": 2, + "takeOne": 2, + "case": 5, + "false": 7, + "watchSources": 1, + "-": 4, + "versions": 1, + "showTiming": 1, + "Beers": 1, + "scalaHome": 1, + "val": 2, + "maven": 2, + "headOfSong": 1, + "traceLevel": 2, + "Level.Warn": 2, + "include": 1, + "logging": 1 + }, + "Kotlin": { + "var": 1, + "fun": 1, + "Long": 1, + "state": 2, + "streetAddress": 1, + "PostalAddress": 1, + "EmailAddress": 1, + "val": 16, + "addressbook": 1, + "true": 1, + "Map": 2, + "areaCode": 1, + "name": 2, + "for": 1, + "get": 2, + "zip": 1, + "stripWhiteSpace": 1, + "object": 1, + "country": 3, + "List": 3, + "emails": 1, + "HashMap": 1, + "countryTable": 2, + "line": 3, + "table": 5, + "number": 1, + "assert": 1, + "USState": 1, + "String": 7, + "return": 1, + "PhoneNumber": 1, + "user": 1, + "Contact": 1, + ".lines": 1, + "CountryID": 1, + "xor": 1, + "city": 1, + "<PhoneNumber>": 1, + "TextFile": 1, + "Country": 7, + "addresses": 1, + "<EmailAddress>": 1, + "in": 1, + "if": 1, + "id": 2, + "Countries": 2, + "host": 1, + "phonenums": 1, + "package": 1, + "<String,>": 2, + "private": 2, + "Int": 1, + "}": 6, + "]": 3, + "[": 3, + "null": 3, + "{": 6, + ")": 15, + "<PostalAddress>": 1, + "(": 15, + "class": 5 + }, + "Ceylon": { + "<=>": 1, + "Comparison": 1, + "actual": 2, + "print": 1, + "string": 1, + "Comparable": 1, + "name": 4, + "by": 1, + "doc": 2, + "other": 1, + "other.name": 1, + "String": 2, + "test": 1, + "return": 1, + "Test": 2, + "<Test>": 1, + "satisfies": 1, + "shared": 5, + "compare": 1, + "void": 1, + "class": 1, + "}": 3, + ";": 4, + "{": 3, + ")": 4, + "(": 4 }, "Markdown": { "Tender": 1 }, - "Matlab": { - "function": 32, - "[": 309, - "dx": 6, - "y": 22, - "]": 309, - "adapting_structural_model": 2, - "(": 1357, - "t": 32, - "x": 42, - "u": 3, - "varargin": 25, - ")": 1358, - "%": 552, - "size": 8, - "aux": 3, - "{": 157, - "end": 147, - "}": 157, - ";": 891, - "m": 44, - "zeros": 60, - "b": 12, - "for": 77, - "i": 334, - "if": 52, - "+": 169, - "elseif": 14, - "else": 23, - "display": 10, - "aux.pars": 3, - ".*": 2, - "Yp": 2, - "human": 1, - "aux.timeDelay": 2, - "c1": 5, - "aux.m": 3, - "*": 46, - "aux.b": 3, - "e": 14, - "-": 672, - "c2": 5, - "Yc": 5, - "parallel": 2, - "plant": 4, - "aux.plantFirst": 2, - "aux.plantSecond": 2, - "Ys": 1, - "feedback": 1, - "A": 11, - "B": 9, - "C": 13, - "D": 7, - "tf2ss": 1, - "Ys.num": 1, - "Ys.den": 1, - "average": 1, - "n": 102, - "|": 2, - "&": 4, - "error": 14, - "sum": 2, - "/length": 1, - "bicycle": 7, - "bicycle_state_space": 1, - "speed": 20, - "S": 5, - "dbstack": 1, - "CURRENT_DIRECTORY": 2, - "fileparts": 1, - ".file": 1, - "par": 7, - "par_text_to_struct": 4, - "filesep": 14, - "...": 162, - "whipple_pull_force_abcd": 2, - "states": 7, - "outputs": 10, - "inputs": 14, - "defaultSettings.states": 1, - "defaultSettings.inputs": 1, - "defaultSettings.outputs": 1, - "userSettings": 3, - "varargin_to_structure": 2, - "struct": 1, - "settings": 3, - "overwrite_settings": 2, - "defaultSettings": 3, - "minStates": 2, - "ismember": 15, - "settings.states": 3, - "<": 9, - "keepStates": 2, - "find": 24, - "removeStates": 1, - "row": 6, - "abs": 12, - "col": 5, - "s": 13, - "sprintf": 11, - "removeInputs": 2, - "settings.inputs": 1, - "keepOutputs": 2, - "settings.outputs": 1, - "It": 1, - "is": 7, - "not": 3, - "possible": 1, - "to": 9, - "keep": 1, - "output": 7, - "because": 1, - "it": 1, - "depends": 1, - "on": 13, - "input": 14, - "StateName": 1, - "OutputName": 1, - "InputName": 1, - "x_0": 45, - "linspace": 14, - "vx_0": 37, - "z": 3, - "j": 242, - "*vx_0": 1, - "figure": 17, - "pcolor": 2, - "shading": 3, - "flat": 3, - "name": 4, - "order": 11, - "convert_variable": 1, - "variable": 10, - "coordinates": 6, - "speeds": 21, - "get_variables": 2, - "columns": 4, - "create_ieee_paper_plots": 2, - "data": 27, - "rollData": 8, - "global": 6, - "goldenRatio": 12, - "sqrt": 14, - "/": 59, - "exist": 1, - "mkdir": 1, - "linestyles": 15, - "colors": 13, - "loop_shape_example": 3, - "data.Benchmark.Medium": 2, - "plot_io_roll": 3, - "open_loop_all_bikes": 1, - "handling_all_bikes": 1, - "path_plots": 1, - "var": 3, - "io": 7, - "typ": 3, - "length": 49, - "plot_io": 1, - "phase_portraits": 2, - "eigenvalues": 2, - "bikeData": 2, - "figWidth": 24, - "figHeight": 19, - "set": 43, - "gcf": 17, - "freq": 12, - "hold": 23, - "all": 15, - "closedLoops": 1, - "bikeData.closedLoops": 1, - "bops": 7, - "bodeoptions": 1, - "bops.FreqUnits": 1, - "strcmp": 24, - "gray": 7, - "deltaNum": 2, - "closedLoops.Delta.num": 1, - "deltaDen": 2, - "closedLoops.Delta.den": 1, - "bodeplot": 6, - "tf": 18, - "neuroNum": 2, - "neuroDen": 2, - "whichLines": 3, - "phiDotNum": 2, - "closedLoops.PhiDot.num": 1, - "phiDotDen": 2, - "closedLoops.PhiDot.den": 1, - "closedBode": 3, - "off": 10, - "opts": 4, - "getoptions": 2, - "opts.YLim": 3, - "opts.PhaseMatching": 2, - "opts.PhaseMatchingValue": 2, - "opts.Title.String": 2, - "setoptions": 2, - "lines": 17, - "findobj": 5, - "raise": 19, - "plotAxes": 22, - "curPos1": 4, - "get": 11, - "curPos2": 4, - "xLab": 8, - "legWords": 3, - "closeLeg": 2, - "legend": 7, - "axes": 9, - "db1": 4, - "text": 11, - "db2": 2, - "dArrow1": 2, - "annotation": 13, - "dArrow2": 2, - "dArrow": 2, - "filename": 21, - "pathToFile": 11, - "print": 6, - "fix_ps_linestyle": 6, - "openLoops": 1, - "bikeData.openLoops": 1, - "num": 24, - "openLoops.Phi.num": 1, - "den": 15, - "openLoops.Phi.den": 1, - "openLoops.Psi.num": 1, - "openLoops.Psi.den": 1, - "openLoops.Y.num": 1, - "openLoops.Y.den": 1, - "openBode": 3, - "line": 15, - "wc": 14, - "wShift": 5, - "num2str": 10, - "bikeData.handlingMetric.num": 1, - "bikeData.handlingMetric.den": 1, - "w": 3, - "mag": 4, - "phase": 2, - "bode": 5, - "metricLine": 1, - "plot": 26, - "k": 75, - "Linewidth": 7, - "Color": 13, - "Linestyle": 6, - "Handling": 2, - "Quality": 2, - "Metric": 2, - "Frequency": 2, - "rad/s": 4, - "Level": 6, - "benchmark": 1, - "Handling.eps": 1, - "plots": 4, - "deps2": 1, - "loose": 4, - "PaperOrientation": 3, - "portrait": 3, - "PaperUnits": 3, - "inches": 3, - "PaperPositionMode": 3, - "manual": 3, - "PaperPosition": 3, - "PaperSize": 3, - "rad/sec": 1, - "phi": 13, - "Open": 1, - "Loop": 1, - "Bode": 1, - "Diagrams": 1, - "at": 3, - "m/s": 6, - "Latex": 1, - "type": 4, - "LineStyle": 2, - "LineWidth": 2, - "Location": 2, - "Southwest": 1, - "Fontsize": 4, - "YColor": 2, - "XColor": 1, - "Position": 6, - "Xlabel": 1, - "Units": 1, - "normalized": 1, - "openBode.eps": 1, - "deps2c": 3, - "maxMag": 2, - "max": 9, - "magnitudes": 1, - "area": 1, - "fillColors": 1, - "gca": 8, - "speedNames": 12, - "metricLines": 2, - "bikes": 24, - "data.": 6, - ".": 13, - ".handlingMetric.num": 1, - ".handlingMetric.den": 1, - "chil": 2, - "legLines": 1, - "Hands": 1, - "free": 1, - "@": 1, - "handling.eps": 1, - "f": 13, - "YTick": 1, - "YTickLabel": 1, - "Path": 1, - "Southeast": 1, - "Distance": 1, - "Lateral": 1, - "Deviation": 1, - "paths.eps": 1, - "d": 3, - "like": 1, - "plot.": 1, - "names": 6, - "prettyNames": 3, - "units": 3, - "index": 6, - "fieldnames": 5, - "data.Browser": 1, - "maxValue": 4, - "oneSpeed": 3, - "history": 7, - "oneSpeed.": 3, - "round": 1, - "pad": 10, - "yShift": 16, - "xShift": 3, - "time": 21, - "oneSpeed.time": 2, - "oneSpeed.speed": 2, - "distance": 6, - "xAxis": 12, - "xData": 3, - "textX": 3, - "ylim": 2, - "ticks": 4, - "xlabel": 8, - "xLimits": 6, - "xlim": 8, - "loc": 3, - "l1": 2, - "l2": 2, - "first": 3, - "ylabel": 4, - "box": 4, - "&&": 13, - "x_r": 6, - "y_r": 6, - "w_r": 5, - "h_r": 5, - "rectangle": 2, - "w_r/2": 4, - "h_r/2": 4, - "x_a": 10, - "y_a": 10, - "w_a": 7, - "h_a": 5, - "ax": 15, - "axis": 5, - "rollData.speed": 1, - "rollData.time": 1, - "path": 3, - "rollData.path": 1, - "frontWheel": 3, - "rollData.outputs": 3, - "rollAngle": 4, - "steerAngle": 4, - "rollTorque": 4, - "rollData.inputs": 1, - "subplot": 3, - "h1": 5, - "h2": 5, - "plotyy": 3, - "inset": 3, - "gainChanges": 2, - "loopNames": 4, - "xy": 7, - "xySource": 7, - "xlabels": 2, - "ylabels": 2, - "legends": 3, - "floatSpec": 3, - "twentyPercent": 1, - "generate_data": 5, - "nominalData": 1, - "nominalData.": 2, - "bikeData.": 2, - "twentyPercent.": 2, - "equal": 2, - "leg1": 2, - "bikeData.modelPar.": 1, - "leg2": 2, - "twentyPercent.modelPar.": 1, - "eVals": 5, - "pathToParFile": 2, - "str": 2, - "eigenValues": 1, - "eig": 6, - "real": 3, - "zeroIndices": 3, - "ones": 6, - "maxEvals": 4, - "maxLine": 7, - "minLine": 4, - "min": 1, - "speedInd": 12, - "value": 2, - "isterminal": 2, - "direction": 2, - "mu": 73, - "FIXME": 1, - "from": 2, - "the": 14, - "largest": 1, - "primary": 1, - "clear": 13, - "tic": 7, - "T": 22, - "x_min": 3, - "x_max": 3, - "y_min": 3, - "y_max": 3, - "how": 1, - "many": 1, - "points": 11, - "per": 5, - "one": 3, - "measure": 1, - "unit": 1, - "both": 1, - "in": 8, - "and": 7, - "ds": 1, - "x_res": 7, - "*n": 2, - "y_res": 7, - "grid_x": 3, - "grid_y": 3, - "advected_x": 12, - "advected_y": 12, - "parfor": 5, - "X": 6, - "ode45": 6, - "@dg": 1, - "store": 4, - "advected": 2, - "positions": 2, - "as": 4, - "they": 2, - "would": 2, - "appear": 2, - "coords": 2, - "Compute": 3, - "FTLE": 14, - "sigma": 6, - "compute": 2, - "Jacobian": 3, - "*ds": 4, - "eigenvalue": 2, - "of": 35, - "*phi": 2, - "log": 2, - "lambda_max": 2, - "/abs": 3, - "*T": 3, - "toc": 5, - "field": 2, - "contourf": 2, - "location": 1, - "EastOutside": 1, - "f_x_t": 2, - "inline": 1, - "grid_min": 3, - "grid_max": 3, - "grid_width": 1, - "grid_spacing": 5, - "grid_width/": 1, - "*grid_width/": 4, - "colorbar": 1, - "load_data": 4, - "t0": 6, - "t1": 6, - "t2": 6, - "t3": 1, - "dataPlantOne": 3, - "data.Ts": 6, - "dataAdapting": 3, - "dataPlantTwo": 3, - "guessPlantOne": 4, - "resultPlantOne": 1, - "find_structural_gains": 2, - "yh": 2, - "fit": 6, - "x0": 4, - "compare": 3, - "resultPlantOne.fit": 1, - "guessPlantTwo": 3, - "resultPlantTwo": 1, - "resultPlantTwo.fit": 1, - "kP1": 4, - "resultPlantOne.fit.par": 1, - "kP2": 3, - "resultPlantTwo.fit.par": 1, - "gainSlopeOffset": 6, - "eye": 9, - "this": 2, - "only": 7, - "uses": 1, - "tau": 1, - "through": 1, - "wfs": 1, - "true": 2, - "plantOneSlopeOffset": 3, - "plantTwoSlopeOffset": 3, - "mod": 3, - "idnlgrey": 1, - "pem": 1, - "guess.plantOne": 3, - "guess.plantTwo": 2, - "plantNum.plantOne": 2, - "plantNum.plantTwo": 2, - "sections": 13, - "secData.": 1, - "||": 3, - "guess.": 2, - "result.": 2, - ".fit.par": 1, - "currentGuess": 2, - "warning": 1, - "randomGuess": 1, - "The": 6, - "self": 2, - "validation": 2, - "VAF": 2, - "f.": 2, - "data/": 1, - "results.mat": 1, - "guess": 1, - "plantNum": 1, - "result": 5, - "plots/": 1, - ".png": 1, - "task": 1, - "closed": 1, - "loop": 1, - "system": 2, - "u.": 1, - "gain": 1, - "guesses": 1, - "k1": 4, - "k2": 3, - "k3": 3, - "k4": 4, - "identified": 1, - "gains": 12, - ".vaf": 1, - "Elements": 1, - "grid": 1, - "definition": 2, - "Dimensionless": 1, - "integrating": 1, - "Choice": 2, - "mass": 2, - "parameter": 2, - "Computation": 9, - "Lagrangian": 3, - "Points": 2, - "xl1": 13, - "yl1": 12, - "xl2": 9, - "yl2": 8, - "xl3": 8, - "yl3": 8, - "xl4": 10, - "yl4": 9, - "xl5": 8, - "yl5": 8, - "Lagr": 6, - "initial": 5, - "total": 6, - "energy": 8, - "E_L1": 4, - "Omega": 7, - "C_L1": 3, - "*E_L1": 1, - "Szebehely": 1, - "E": 8, - "Offset": 2, - "Initial": 3, - "conditions": 3, - "range": 2, - "x_0_min": 8, - "x_0_max": 8, - "vx_0_min": 8, - "vx_0_max": 8, - "y_0": 29, - "ndgrid": 2, - "vy_0": 22, - "*E": 2, - "*Omega": 5, - "vx_0.": 2, - "E_cin": 4, - "x_T": 25, - "y_T": 17, - "vx_T": 22, - "vy_T": 12, - "filtro": 15, - "E_T": 11, - "delta_E": 7, - "a": 17, - "matrix": 3, - "numbers": 2, - "integration": 9, - "steps": 2, - "each": 2, - "np": 8, - "number": 2, - "integrated": 5, - "fprintf": 18, - "Energy": 4, - "tolerance": 2, - "setting": 4, - "energy_tol": 6, - "Setting": 1, - "options": 14, - "integrator": 2, - "RelTol": 2, - "AbsTol": 2, - "From": 1, - "Short": 1, - "odeset": 4, - "Parallel": 2, - "equations": 2, - "motion": 2, - "h": 19, - "waitbar": 6, - "r1": 3, - "r2": 3, - "g": 5, - "i/n": 1, - "y_0.": 2, - "./": 1, - "mu./": 1, - "isreal": 8, - "Check": 6, - "velocity": 2, - "positive": 2, - "Kinetic": 2, - "Y": 19, - "@f_reg": 1, - "Saving": 4, - "solutions": 2, - "final": 2, - "difference": 2, - "with": 2, - "conservation": 2, - "position": 2, - "point": 14, - "interesting": 4, - "non": 2, - "sense": 2, - "bad": 4, - "close": 4, - "t_integrazione": 3, - "filtro_1": 12, - "dphi": 12, - "ftle": 10, - "ftle_norm": 1, - "ds_x": 1, - "ds_vx": 1, - "La": 1, - "direzione": 1, - "dello": 1, - "spostamento": 1, - "la": 2, - "decide": 1, - "il": 1, - "denominatore": 1, - "TODO": 1, - "spiegarsi": 1, - "teoricamente": 1, - "come": 1, - "mai": 1, - "matrice": 1, - "pu": 1, - "essere": 1, - "ridotta": 1, - "x2": 1, - "*ds_x": 2, - "*ds_vx": 2, - "Manual": 2, - "visualize": 2, - "*log": 2, - "dphi*dphi": 1, - "tempo": 4, - "integrare": 2, - ".2f": 5, - "calcolare": 2, - "var_": 2, - "_": 2, - "var_xvx_": 2, - "ode00": 2, - "_n": 2, - "save": 2, - "nome": 2, - "Transforming": 1, - "into": 1, - "Hamiltonian": 1, - "variables": 2, - "px_0": 2, - "py_0": 2, - "px_T": 4, - "py_T": 4, - "inf": 1, - "@cr3bp_jac": 1, - "@fH": 1, - "EnergyH": 1, - "t_integr": 1, - "Back": 1, - "Inf": 1, - "_e": 1, - "_H": 1, - "Range": 1, - "E_0": 4, - "C_L1/2": 1, - "Y_0": 4, - "nx": 32, - "nvx": 32, - "dvx": 3, - "ny": 29, - "dy": 5, - "/2": 3, - "ne": 29, - "de": 4, - "e_0": 7, - "Definition": 1, - "arrays": 1, - "In": 1, - "approach": 1, - "useful": 9, - "pints": 1, - "are": 1, - "stored": 1, - "filter": 14, - "l": 64, - "v_y": 3, - "*e_0": 3, - "vx": 2, - "vy": 2, - "Selection": 1, - "Data": 2, - "transfer": 1, - "GPU": 3, - "x_gpu": 3, - "gpuArray": 4, - "y_gpu": 3, - "vx_gpu": 3, - "vy_gpu": 3, - "Integration": 2, - "N": 9, - "x_f": 3, - "y_f": 3, - "vx_f": 3, - "vy_f": 3, - "arrayfun": 2, - "@RKF45_FILE_gpu": 1, - "back": 1, - "CPU": 1, - "memory": 1, - "cleaning": 1, - "gather": 4, - "Construction": 1, - "computation": 2, - "X_T": 4, - "Y_T": 4, - "VX_T": 4, - "VY_T": 3, - "filter_ftle": 11, - "Compute_FILE_gpu": 1, - "Plot": 1, - "results": 1, - "squeeze": 1, - "clc": 1, - "load_bikes": 2, - "e_T": 7, - "Integrate_FILE": 1, - "Integrate": 6, - "Look": 2, - "phisically": 2, - "meaningful": 6, - "meaningless": 2, - "i/nx": 2, - "*Potential": 5, - "ci": 9, - "te": 2, - "ye": 9, - "ie": 2, - "@f": 6, - "Potential": 1, - "delta_e": 3, - "Integrate_FTLE_Gawlick_ell": 1, - "ecc": 2, - "nu": 2, - "ecc*cos": 1, - "@f_ell": 1, - "Consider": 1, - "also": 1, - "negative": 1, - "goodness": 1, - "roots": 3, - "*mu": 6, - "c3": 3, - "lane_change": 1, - "start": 4, - "width": 3, - "slope": 3, - "pathLength": 3, - "single": 1, - "double": 1, - "Double": 1, - "lane": 4, - "change": 1, - "needs": 1, - "lane.": 1, - "laneLength": 4, - "startOfSlope": 3, - "endOfSlope": 1, - "<=>": 1, - "1": 1, - "downSlope": 3, - "gains.Benchmark.Slow": 1, - "place": 2, - "holder": 2, - "gains.Browserins.Slow": 1, - "gains.Browser.Slow": 1, - "gains.Pista.Slow": 1, - "gains.Fisher.Slow": 1, - "gains.Yellow.Slow": 1, - "gains.Yellowrev.Slow": 1, - "gains.Benchmark.Medium": 1, - "gains.Browserins.Medium": 1, - "gains.Browser.Medium": 1, - "gains.Pista.Medium": 1, - "gains.Fisher.Medium": 1, - "gains.Yellow.Medium": 1, - "gains.Yellowrev.Medium": 1, - "gains.Benchmark.Fast": 1, - "gains.Browserins.Fast": 1, - "gains.Browser.Fast": 1, - "gains.Pista.Fast": 1, - "gains.Fisher.Fast": 1, - "gains.Yellow.Fast": 1, - "gains.Yellowrev.Fast": 1, - "gains.": 1, - "parser": 1, - "inputParser": 1, - "parser.addRequired": 1, - "parser.addParamValue": 3, - "parser.parse": 1, - "args": 1, - "parser.Results": 1, - "raw": 1, - "load": 1, - "args.directory": 1, - "iddata": 1, - "raw.theta": 1, - "raw.theta_c": 1, - "args.sampleTime": 1, - "args.detrend": 1, - "detrend": 1, - "filtfcn": 2, - "statefcn": 2, - "makeFilter": 1, - "v": 12, - "@iirFilter": 1, - "@getState": 1, - "yn": 2, - "iirFilter": 1, - "xn": 4, - "vOut": 2, - "getState": 1, - "classdef": 1, - "matlab_class": 2, - "properties": 1, - "R": 1, - "G": 1, - "methods": 1, - "obj": 2, - "r": 2, - "obj.R": 2, - "obj.G": 2, - "obj.B": 2, - "disp": 8, - "enumeration": 1, - "red": 1, - "green": 1, - "blue": 1, - "cyan": 1, - "magenta": 1, - "yellow": 1, - "black": 1, - "white": 1, - "ret": 3, - "matlab_function": 5, - "Call": 2, - "which": 2, - "resides": 2, - "same": 2, - "directory": 2, - "value1": 4, - "semicolon": 2, - "mandatory": 2, - "suppresses": 2, - "command": 2, - "line.": 2, - "value2": 4, - "overrideSettings": 3, - "overrideNames": 2, - "defaultNames": 2, - "notGiven": 5, - "setxor": 1, - "settings.": 1, - "defaultSettings.": 1, - "fid": 7, - "fopen": 2, - "textscan": 1, - "fclose": 2, - "strtrim": 2, - "vals": 2, - "regexp": 1, - "par.": 1, - "str2num": 1, - "choose_plant": 4, - "p": 7, - "Conditions": 1, - "@cross_y": 1, - "ode113": 2, - "RK4": 3, - "fun": 5, - "tspan": 7, - "th": 1, - "Runge": 1, - "Kutta": 1, - "dim": 2, - "while": 1, - "h/2": 2, - "k1*h/2": 1, - "k2*h/2": 1, - "h*k3": 1, - "h/6*": 1, - "*k2": 1, - "*k3": 1, - "arg1": 1, - "arg": 2, - "RK4_par": 1, - "wnm": 11, - "zetanm": 5, - "ss": 3, - "data.modelPar.A": 1, - "data.modelPar.B": 1, - "data.modelPar.C": 1, - "data.modelPar.D": 1, - "bicycle.StateName": 2, - "bicycle.OutputName": 4, - "bicycle.InputName": 2, - "analytic": 3, - "system_state_space": 2, - "numeric": 2, - "data.system.A": 1, - "data.system.B": 1, - "data.system.C": 1, - "data.system.D": 1, - "numeric.StateName": 1, - "data.bicycle.states": 1, - "numeric.InputName": 1, - "data.bicycle.inputs": 1, - "numeric.OutputName": 1, - "data.bicycle.outputs": 1, - "pzplot": 1, - "ss2tf": 2, - "analytic.A": 3, - "analytic.B": 1, - "analytic.C": 1, - "analytic.D": 1, - "mine": 1, - "data.forceTF.PhiDot.num": 1, - "data.forceTF.PhiDot.den": 1, - "numeric.A": 2, - "numeric.B": 1, - "numeric.C": 1, - "numeric.D": 1, - "whipple_pull_force_ABCD": 1, - "bottomRow": 1, - "prod": 3, - "Earth": 2, - "Moon": 2, - "C_star": 1, - "C/2": 1, - "orbit": 1, - "Y0": 6, - "y0": 2, - "vx0": 2, - "vy0": 2, - "l0": 1, - "delta_E0": 1, - "Hill": 1, - "Edgecolor": 1, - "none": 1, - "ok": 2, - "sg": 1, - "sr": 1, - "arguments": 7, - "ischar": 1, - "options.": 1, - "write_gains": 1, - "contents": 1, - "importdata": 1, - "speedsInFile": 5, - "contents.data": 2, - "gainsInFile": 3, - "sameSpeedIndices": 5, - "allGains": 4, - "allSpeeds": 4, - "sort": 1, - "contents.colheaders": 1 - }, - "Max": { - "max": 1, - "v2": 1, - ";": 39, - "#N": 2, - "vpatcher": 1, - "#P": 33, - "toggle": 1, - "button": 4, - "window": 2, - "setfont": 1, - "Verdana": 1, - "linecount": 1, - "newex": 8, - "r": 1, - "jojo": 2, - "#B": 2, - "color": 2, - "s": 1, - "route": 1, - "append": 1, - "toto": 1, - "%": 1, - "counter": 2, - "#X": 1, - "flags": 1, - "newobj": 1, - "metro": 1, - "t": 2, - "message": 2, - "Goodbye": 1, - "World": 2, - "Hello": 1, - "connect": 13, - "fasten": 1, - "pop": 1 - }, - "MediaWiki": { - "Overview": 1, - "The": 17, - "GDB": 15, - "Tracepoint": 4, - "Analysis": 1, - "feature": 3, - "is": 9, - "an": 3, - "extension": 1, - "to": 12, - "the": 72, - "Tracing": 3, - "and": 20, - "Monitoring": 1, - "Framework": 1, - "that": 4, - "allows": 2, - "visualization": 1, - "analysis": 1, - "of": 8, - "C/C": 10, - "+": 20, - "tracepoint": 5, - "data": 5, - "collected": 2, - "by": 10, - "stored": 1, - "a": 12, - "log": 1, - "file.": 1, - "Getting": 1, - "Started": 1, - "can": 9, - "be": 18, - "installed": 2, - "from": 8, - "Eclipse": 1, - "update": 2, - "site": 1, - "selecting": 1, - ".": 8, - "requires": 1, - "version": 1, - "or": 8, - "later": 1, - "on": 3, - "local": 1, - "host.": 1, - "executable": 3, - "program": 1, - "must": 3, - "found": 1, - "in": 15, - "path.": 1, - "Trace": 9, - "Perspective": 1, - "To": 1, - "open": 1, - "perspective": 2, - "select": 5, - "includes": 1, - "following": 1, - "views": 2, - "default": 2, - "*": 6, - "This": 7, - "view": 7, - "shows": 7, - "projects": 1, - "workspace": 2, - "used": 1, - "create": 1, - "manage": 1, - "projects.": 1, - "running": 1, - "Postmortem": 5, - "Debugger": 4, - "instances": 1, - "displays": 2, - "thread": 1, - "stack": 2, - "trace": 17, - "associated": 1, - "with": 4, - "tracepoint.": 3, - "status": 1, - "debugger": 1, - "navigation": 1, - "records.": 1, - "console": 1, - "output": 1, - "Debugger.": 1, - "editor": 7, - "area": 2, - "contains": 1, - "editors": 1, - "when": 1, - "opened.": 1, - "[": 11, - "Image": 2, - "images/GDBTracePerspective.png": 1, - "]": 11, - "Collecting": 2, - "Data": 4, - "outside": 2, - "scope": 1, - "this": 5, - "feature.": 1, - "It": 1, - "done": 2, - "command": 1, - "line": 2, - "using": 3, - "CDT": 3, - "debug": 1, - "component": 1, - "within": 1, - "Eclipse.": 1, - "See": 1, - "FAQ": 2, - "entry": 2, - "#References": 2, - "|": 2, - "References": 3, - "section.": 2, - "Importing": 2, - "Some": 1, - "information": 1, - "section": 1, - "redundant": 1, - "LTTng": 3, - "User": 3, - "Guide.": 1, - "For": 1, - "further": 1, - "details": 1, - "see": 1, - "Guide": 2, - "Creating": 1, - "Project": 1, - "In": 5, - "right": 3, - "-": 8, - "click": 8, - "context": 4, - "menu.": 4, - "dialog": 1, - "name": 2, - "your": 2, - "project": 2, - "tracing": 1, - "folder": 5, - "Browse": 2, - "enter": 2, - "source": 2, - "directory.": 1, - "Select": 1, - "file": 6, - "tree.": 1, - "Optionally": 1, - "set": 1, - "type": 2, - "Click": 1, - "Alternatively": 1, - "drag": 1, - "&": 1, - "dropped": 1, - "any": 2, - "external": 1, - "manager.": 1, - "Selecting": 2, - "Type": 1, - "Right": 2, - "imported": 1, - "choose": 2, - "step": 1, - "omitted": 1, + "Scilab": { + "home": 1, + "then": 1, + "myvar": 1, + "cosh": 1, + "cos": 1, + "disp": 1, + "e.field": 1, + "pi": 3, + "endfunction": 1, + "assert_checkfalse": 1, + "end": 1, + "return": 1, + "else": 1, + "assert_checkequal": 1, "if": 1, - "was": 2, - "selected": 3, - "at": 3, - "import.": 1, - "will": 6, - "updated": 2, - "icon": 1, - "images/gdb_icon16.png": 1, - "Executable": 1, - "created": 1, - "identified": 1, - "so": 2, - "launched": 1, - "properly.": 1, - "path": 1, - "press": 1, - "recognized": 1, - "as": 1, - "executable.": 1, - "Visualizing": 1, - "Opening": 1, - "double": 1, - "it": 3, - "opened": 2, - "Events": 5, - "instance": 1, - "launched.": 1, - "If": 2, - "available": 1, - "code": 1, - "corresponding": 1, - "first": 1, - "record": 2, - "also": 2, - "editor.": 2, - "At": 1, - "point": 1, - "recommended": 1, - "relocate": 1, - "not": 1, - "hidden": 1, - "Viewing": 1, - "table": 1, - "shown": 1, - "one": 1, - "row": 1, - "for": 2, - "each": 1, - "record.": 2, - "column": 6, - "sequential": 1, - "number.": 1, - "number": 2, - "assigned": 1, - "collection": 1, - "time": 2, - "method": 1, - "where": 1, - "set.": 1, - "run": 1, - "Searching": 1, - "filtering": 1, - "entering": 1, - "regular": 1, - "expression": 1, - "header.": 1, - "Navigating": 1, - "records": 1, - "keyboard": 1, - "mouse.": 1, - "show": 1, - "current": 1, - "navigated": 1, - "clicking": 1, - "buttons.": 1, - "updated.": 1, - "http": 4, - "//wiki.eclipse.org/index.php/Linux_Tools_Project/LTTng2/User_Guide": 1, - "//wiki.eclipse.org/CDT/User/FAQ#How_can_I_trace_my_application_using_C.2FC.2B.2B_Tracepoints.3F": 1, - "How": 1, - "I": 1, - "my": 1, - "application": 1, - "Tracepoints": 1, - "Updating": 1, - "Document": 1, - "document": 2, - "maintained": 1, - "collaborative": 1, - "wiki.": 1, - "you": 1, - "wish": 1, - "modify": 1, - "please": 1, - "visit": 1, - "//wiki.eclipse.org/index.php/Linux_Tools_Project/GDB_Tracepoint_Analysis/User_Guide": 1, - "//wiki.eclipse.org/Linux_Tools_Project/GDB_Tracepoint_Analysis/User_Guide": 1 - }, - "Monkey": { - "Strict": 1, - "sample": 1, - "class": 1, - "from": 1, - "the": 1, - "documentation": 1, - "Class": 3, - "Game": 1, - "Extends": 2, - "App": 1, - "Function": 2, - "New": 1, - "(": 12, - ")": 12, - "End": 8, - "DrawSpiral": 3, - "clock": 3, - "Local": 3, - "w": 3, - "DeviceWidth/2": 1, - "For": 1, - "i#": 1, - "Until": 1, - "w*1.5": 1, - "Step": 1, - ".2": 1, - "x#": 1, - "y#": 1, - "x": 2, - "+": 5, - "i*Sin": 1, - "i*3": 1, - "y": 2, - "i*Cos": 1, - "i*2": 1, - "DrawRect": 1, - "Next": 1, - "hitbox.Collide": 1, - "event.pos": 1, - "Field": 2, - "updateCount": 3, - "Method": 4, - "OnCreate": 1, - "Print": 2, - "SetUpdateRate": 1, - "OnUpdate": 1, - "OnRender": 1, - "Cls": 1, - "updateCount*1.1": 1, - "Enemy": 1, - "Die": 1, - "Abstract": 1, - "field": 1, - "testField": 1, - "Bool": 2, - "True": 2, - "oss": 1, - "he": 2, "-": 2, - "killed": 1, - "me": 1, - "b": 6, - "extending": 1, - "with": 1, - "generics": 1, - "VectorNode": 1, - "Node": 1, - "<Vector2D>": 1, - "array": 1, - "syntax": 1, - "Global": 14, - "listOfStuff": 3, - "String": 4, - "[": 6, - "]": 6, - "lessStuff": 1, - "oneStuff": 1, - "a": 3, - "comma": 1, - "separated": 1, - "sequence": 1, - "text": 1, - "worstCase": 1, - "worst.List": 1, - "<String[]>": 1, - "escape": 1, - "characers": 1, - "in": 1, - "strings": 1, - "string3": 1, - "string4": 1, - "string5": 1, - "string6": 1, - "prints": 1, - ".ToUpper": 1, - "Boolean": 1, - "shorttype": 1, - "boolVariable1": 1, - "boolVariable2": 1, - "False": 1, - "preprocessor": 1, - "keywords": 1, - "#If": 1, - "TARGET": 2, - "DoStuff": 1, - "#ElseIf": 1, - "DoOtherStuff": 1, - "#End": 1, - "operators": 1, - "|": 2, - "&": 1, - "c": 1 - }, - "MoonScript": { - "types": 2, - "require": 5, - "util": 2, - "data": 1, - "import": 5, - "reversed": 2, - "unpack": 22, - "from": 4, - "ntype": 16, - "mtype": 3, - "build": 7, - "smart_node": 7, - "is_slice": 2, - "value_is_singular": 3, - "insert": 18, - "table": 2, - "NameProxy": 14, - "LocalName": 2, - "destructure": 1, - "local": 1, - "implicitly_return": 2, - "class": 4, - "Run": 8, - "new": 2, - "(": 54, - "@fn": 1, - ")": 54, - "self": 2, - "[": 79, - "]": 79, - "call": 3, - "state": 2, - "self.fn": 1, - "-": 51, - "transform": 2, - "the": 4, - "last": 6, - "stm": 16, - "is": 2, + "f": 2, + "d": 2, + "myfunction": 1, + "]": 1, + "b": 4, "a": 4, - "list": 6, - "of": 1, - "stms": 4, - "will": 1, - "puke": 1, - "on": 1, - "group": 1, - "apply_to_last": 6, - "fn": 3, - "find": 2, - "real": 1, - "exp": 17, - "last_exp_id": 3, - "for": 20, - "i": 15, - "#stms": 1, - "if": 43, - "and": 8, - "break": 1, - "return": 11, - "in": 18, - "ipairs": 3, - "else": 22, - "body": 26, - "sindle": 1, - "expression/statement": 1, - "is_singular": 2, - "false": 2, - "#body": 1, + "[": 1, + "function": 1, + "e": 4, + "%": 4, + ";": 7, + ")": 7, + "+": 5, + "(": 7 + }, + "Volt": { + "*": 1, + "fprintf": 2, + "ret.test.ptr": 4, + "for": 4, + "rate": 2, + "fopen": 1, + "failed": 5, "true": 4, - "find_assigns": 2, - "out": 9, - "{": 135, - "}": 136, - "thing": 4, - "*body": 2, - "switch": 7, - "when": 12, - "table.insert": 3, - "extract": 1, - "names": 16, - "hoist_declarations": 1, - "assigns": 5, - "hoist": 1, - "plain": 1, - "old": 1, - "*find_assigns": 1, - "name": 31, - "*names": 3, - "type": 5, - "after": 1, - "runs": 1, - "idx": 4, - "while": 3, - "do": 2, - "+": 2, - "expand_elseif_assign": 2, - "ifstm": 5, - "#ifstm": 1, - "case": 13, - "split": 4, - "constructor_name": 2, - "with_continue_listener": 4, - "continue_name": 13, - "nil": 8, - "@listen": 1, - "unless": 6, - "@put_name": 2, - "build.group": 14, - "@splice": 1, - "lines": 2, - "Transformer": 2, - "@transformers": 3, - "@seen_nodes": 3, - "setmetatable": 1, - "__mode": 1, - "scope": 4, - "node": 68, - "...": 10, - "transformer": 3, - "res": 3, - "or": 6, - "bind": 1, - "@transform": 2, - "__call": 1, - "can_transform": 1, - "construct_comprehension": 2, - "inner": 2, - "clauses": 4, - "current_stms": 7, - "_": 10, - "clause": 4, - "t": 10, - "iter": 2, - "elseif": 1, - "cond": 11, - "error": 4, - "..t": 1, - "Statement": 2, - "root_stms": 1, - "@": 1, - "assign": 9, - "values": 10, - "bubble": 1, - "cascading": 2, - "transformed": 2, - "#values": 1, - "value": 7, - "@transform.statement": 2, - "types.cascading": 1, - "ret": 16, - "types.is_value": 1, - "destructure.has_destructure": 2, - "destructure.split_assign": 1, - "continue": 1, - "@send": 1, - "build.assign_one": 11, - "export": 1, - "they": 1, - "are": 1, - "included": 1, - "#node": 3, - "cls": 5, - "cls.name": 1, - "build.assign": 3, - "update": 1, - "op": 2, - "op_final": 3, - "match": 1, - "..op": 1, - "not": 2, - "source": 7, - "stubs": 1, - "real_names": 4, - "build.chain": 7, - "base": 8, - "stub": 4, - "*stubs": 2, - "source_name": 3, - "comprehension": 1, - "action": 4, - "decorated": 1, - "dec": 6, - "wrapped": 4, - "fail": 5, - "..": 1, - "build.declare": 1, - "*stm": 1, - "expand": 1, - "destructure.build_assign": 2, - "build.do": 2, - "apply": 1, - "decorator": 1, - "mutate": 1, - "all": 1, - "bodies": 1, - "body_idx": 3, - "with": 3, - "block": 2, - "scope_name": 5, - "named_assign": 2, - "assign_name": 1, - "@set": 1, - "foreach": 1, - "node.iter": 1, - "destructures": 5, - "node.names": 3, - "proxy": 2, - "next": 1, - "node.body": 9, - "index_name": 3, - "list_name": 6, - "slice_var": 3, - "bounds": 3, - "slice": 7, - "#list": 1, - "table.remove": 2, - "max_tmp_name": 5, - "index": 2, - "conds": 3, - "exp_name": 3, - "convert": 1, - "into": 1, - "statment": 1, - "convert_cond": 2, - "case_exps": 3, - "cond_exp": 5, - "first": 3, - "if_stm": 5, - "*conds": 1, - "if_cond": 4, - "parent_assign": 3, - "parent_val": 1, - "apart": 1, - "properties": 4, - "statements": 4, - "item": 3, - "tuple": 8, - "*item": 1, - "constructor": 7, - "*properties": 1, - "key": 3, - "parent_cls_name": 5, - "base_name": 4, - "self_name": 4, - "cls_name": 1, - "build.fndef": 3, - "args": 3, - "arrow": 1, - "then": 2, - "constructor.arrow": 1, - "real_name": 6, - "#real_name": 1, - "build.table": 2, - "look": 1, - "up": 1, - "object": 1, - "class_lookup": 3, - "cls_mt": 2, - "out_body": 1, - "make": 1, - "sure": 1, - "we": 1, - "don": 1, + "improved": 3, + ".runTest": 1, + "list": 1, + "int": 8, + "passed": 5, + "/": 1, + "{": 12, + "core.stdc.stdio": 1, + "cmd": 1, + "regressed": 6, + "cmdGroup": 2, + "watt.path": 1, + "printOk": 2, + "size_t": 3, "string": 1, - "parens": 2, - "colon_stub": 1, - "super": 1, - "dot": 1, - "varargs": 2, - "arg_list": 1, - "Value": 1 - }, - "Nemerle": { - "using": 1, - "System.Console": 1, - ";": 2, + "]": 6, + "CmdGroup": 1, + "import": 7, + "printFailing": 2, + "@todo": 1, + "fflush": 2, + "if": 7, + "core.stdc.stdlib": 1, + "cmdGroup.waitAll": 1, + "ret.hasPassed": 4, + "rets.length": 1, + ")": 37, + "<": 3, + "Result": 2, + "total": 5, + "watt.process": 1, + "}": 12, + "printf": 6, + "main": 2, + "///": 1, + "return": 2, + "else": 3, + "is": 2, + "auto": 6, + "ret.msg.ptr": 4, + "results": 1, + ".ptr": 14, + "tests.length": 3, + "+": 14, + "new": 3, "module": 1, - "Program": 1, - "{": 2, - "Main": 1, - "(": 2, - ")": 2, - "void": 1, - "WriteLine": 1, - "}": 2 + "null": 3, + "&&": 2, + ";": 53, + "(": 37, + "rets": 5, + "bool": 4, + "float": 2, + "xml": 8, + "i": 14, + "testList": 1, + "files": 1, + "printRegressions": 2, + "double": 1, + "printImprovments": 2, + "cast": 5, + "f": 1, + "stdout": 1, + "-": 3, + "tests": 2, + "getEnv": 1, + "ret.ok": 1, + "fclose": 1, + ".xmlLog": 1, + "compiler": 3, + "[": 6, + "ret": 1, + "Scan": 1 }, - "Nginx": { - "user": 1, - "www": 2, - ";": 35, - "worker_processes": 1, - "error_log": 1, - "logs/error.log": 1, - "pid": 1, - "logs/nginx.pid": 1, - "worker_rlimit_nofile": 1, - "events": 1, - "{": 10, - "worker_connections": 1, - "}": 10, - "http": 3, - "include": 3, - "conf/mime.types": 1, - "/etc/nginx/proxy.conf": 1, - "/etc/nginx/fastcgi.conf": 1, - "index": 1, - "index.html": 1, - "index.htm": 1, - "index.php": 1, - "default_type": 1, - "application/octet": 1, - "-": 2, - "stream": 1, - "log_format": 1, - "main": 5, - "access_log": 4, - "logs/access.log": 1, - "sendfile": 1, - "on": 2, - "tcp_nopush": 1, - "server_names_hash_bucket_size": 1, - "#": 4, - "this": 1, - "seems": 1, - "to": 1, - "be": 1, - "required": 1, - "for": 1, - "some": 1, - "vhosts": 1, - "server": 7, - "php/fastcgi": 1, - "listen": 3, - "server_name": 3, - "domain1.com": 1, - "www.domain1.com": 1, - "logs/domain1.access.log": 1, - "root": 2, - "html": 1, - "location": 4, - ".php": 1, - "fastcgi_pass": 1, - "simple": 2, - "reverse": 1, - "proxy": 1, - "domain2.com": 1, - "www.domain2.com": 1, - "logs/domain2.access.log": 1, - "/": 4, - "(": 1, - "images": 1, - "|": 6, - "javascript": 1, - "js": 1, - "css": 1, + "PHP": { + "LogicException": 4, + "Router": 5, + "fcgi": 1, + "yii": 2, + "isKeySet": 1, + "delete": 9, + "sortCommands": 4, + "process": 10, + "_deleteLinks": 3, + "2008": 1, + "PhpProcess": 2, + "least": 1, + "findAlternativeNamespace": 2, + "Set": 9, + "RequestHandler": 1, + "resource": 1, + "j": 2, + "errors": 9, + "array_keys": 7, + "form": 7, + "intval": 4, + "when": 1, + "Helper": 3, + "_schema": 11, + "newJoins": 7, + "REQUIRED": 1, + "input": 20, + "theme_info": 3, + "statusCode": 14, + "included": 3, + "http_build_query": 3, + "underscore": 3, + "Development": 2, + "commandXML": 3, + "unserialize": 1, + "_afterScaffoldSave": 1, + "merge": 12, + "hasMethod": 2, + "getServerParameter": 1, + "getPhpValues": 2, + "CakeEventManager": 5, + "history": 15, + "functionality": 1, + "click": 1, + "trim": 3, + "boolean": 4, + "posix_isatty": 1, + "prefix": 2, + "type": 62, + "Provides": 1, + "c": 1, + "doesn": 1, + "__construct": 8, + "scaffoldError": 2, + "Acl": 1, + "or": 9, + "package": 2, + "setInteractive": 2, + "getValue": 2, + "validateAssociated": 5, + "title.str_repeat": 1, + "sep.": 1, + "isDisabled": 2, + "args": 5, + "read": 2, + "sprintf": 27, + "-": 1271, + "abbrevs": 31, + "getOptions": 1, + "EmailComponent": 1, + "writeln": 13, + "_insertID": 1, + "is_null": 1, + "ids": 8, + "lines": 3, + "re": 1, + "attach": 4, + "url": 18, + "setServerParameter": 1, + "validateMany": 4, + "primary": 3, + "date": 9, + "asXml": 2, + "restart": 1, + "takes": 1, + "String": 5, + "_findFirst": 1, + "else": 70, + "based": 2, + "camelize": 3, + "find": 17, + "init": 4, + "ChoiceFormField": 2, + "empty": 96, + "loadModel": 3, + "&": 19, + "array_diff": 3, + "array_shift": 5, + "saveAssociated": 5, + "DOMNode": 3, + "max": 2, + "setDecorated": 2, + "node": 42, + "set": 26, + "nest": 1, + "Component": 24, + "an": 1, + "getDefaultCommands": 2, + "function": 205, + "cache": 2, + "appVars": 6, + "Controllers": 2, + "options": 85, + "ConnectionManager": 2, + "p": 3, + "layout": 5, + "foreignKey": 11, + "path": 20, + "runningCommand": 5, + "selects": 1, + "View": 9, + "getSynopsis": 1, + "cacheSources": 7, + "old": 2, + "CakeEventListener": 4, + "/posts/index": 1, + "hasParameterOption": 7, + "Exception": 1, + "useNewDate": 2, + "array_search": 1, + "keyPresentAndEmpty": 2, + "insulate": 1, + "long": 2, + "uses": 46, + "object": 14, + "generated": 1, + "namespacedCommands": 5, + "title": 3, + "searchName": 13, + "InputArgument": 3, + "keys": 19, + "Software": 5, + "referer": 5, + "connect": 1, + "_eventManager": 12, + "updateCounterCache": 6, + "joined": 5, + "getErrorOutput": 2, + "columns": 5, + "explode": 9, + "VERBOSITY_VERBOSE": 2, + "PaginatorComponent": 1, + "getTerminalWidth": 3, + "getFiles": 3, + "<=>": 3, + "that": 2, + "FormFieldRegistry": 2, + "isEmpty": 2, + "SecurityComponent": 1, + "i": 36, + "return2": 6, + "get_class": 4, + "request": 76, + "models": 6, + "render": 3, + "scope": 2, + "changeHistory": 4, + "setAction": 1, + "Cake.Model": 1, + "created": 8, + "10": 1, + "isPublic": 1, + "__backContainableAssociation": 1, + "cacheQueries": 1, + "getAttribute": 10, + "files": 7, + "case": 31, + "3": 1, + "namespace.substr": 1, "flash": 1, - "media": 1, - "static": 1, - ")": 1, - "/var/www/virtual/big.server.com/htdocs": 1, - "expires": 1, - "d": 1, - "proxy_pass": 2, - "//127.0.0.1": 1, - "upstream": 1, - "big_server_com": 1, - "weight": 2, + "access": 1, + "parentClass": 3, + "primaryAdded": 3, + "new": 74, + "Behaviors": 6, + "array_unshift": 2, + "strtotime": 1, + "namespacesXML": 3, + "fkQuoted": 3, + "layoutPath": 1, + "getShortcut": 2, + "_findNeighbors": 1, + "results": 22, + "Object": 4, + "_generateAssociation": 2, + "filterKey": 2, + "sort": 1, + "findMethods": 3, + "_associations": 5, + "DBO": 2, + "}": 972, + "namespaces": 4, + "local": 2, + "createCrawlerFromContent": 2, + "such": 1, + "www": 4, + "autoExit": 4, + "tables": 5, + "MIT": 4, + "addCommands": 1, + "getEventManager": 13, + "success": 10, + "collectReturn": 1, + "arrayOp": 2, + "maps": 1, + "className": 27, + "TRUE": 1, + "file": 3, + "static": 6, + "getSegments": 4, + "at": 1, + "History": 2, + "Crawler": 2, + "setRequest": 2, + "since": 2, + "array_merge": 32, + "isEnabled": 1, + "getID": 2, + "v": 17, + "hasValue": 1, + "associations": 9, + "beforeRender": 1, + "httpCodes": 3, + "findAlternatives": 3, + "offsetExists": 1, + "should": 1, + "[": 672, + "_clearCache": 2, + "fInfo": 4, + "__get": 2, + "adding": 1, + "ComponentCollection": 2, + "val": 27, + "echo": 2, + "filename": 1, + "versions": 1, + "session_write_close": 1, + "php": 12, + "conventional": 1, + "ModelBehavior": 1, + "BrowserKit": 1, + "Inc": 4, + "ksort": 2, + "array_unique": 4, + "parentNode": 1, + "setDataSource": 2, + "array_combine": 2, + "offsetSet": 1, + "forward": 2, + "getVersion": 3, + "getOutput": 3, + "callbacks": 4, + "defaults": 6, + "links": 4, + "2012": 4, + "In": 1, + "Rapid": 2, + "content": 4, + "catchExceptions": 4, + "serves": 1, + "saveMany": 3, + "alias": 87, + "levenshtein": 2, + "invokeArgs": 1, + "manipulate": 1, + "rollback": 2, + "Utility": 6, + "com": 2, + "events": 1, + "setSource": 1, + "specific": 1, + "listSources": 1, + "insertMulti": 1, + "namespaceArrayXML": 4, + "setVerbosity": 2, + "9": 1, + "cakephp": 4, + "getTerminalHeight": 1, + "dbMulti": 6, + "filter": 1, + "passedArgs": 2, + "conditions": 41, + "array_slice": 1, + "private": 24, + "self": 1, + "map": 1, + "startQuote": 4, + "recordData": 2, + "pipes": 4, + "str_split": 1, + "cacheAction": 1, + "Framework": 2, + "getDefaultHelperSet": 2, + "license": 6, + "array_intersect": 1, + "conf": 2, + "FILES": 1, + "getCommandName": 2, + "getRawUri": 1, + "alternatives": 10, + "header": 3, + "App": 20, + "Boolean": 4, + "_whitelist": 4, + "strpos": 15, + "_return": 3, + "getRequest": 1, + "endQuote": 4, + "@package": 2, + "asDom": 2, + "and": 5, + "action": 7, + "ob_get_contents": 1, + "Cookie": 1, + "pluginName": 1, + "DOMXPath": 1, + "isSuccessful": 1, + "to": 6, + "send": 1, + "2": 2, + "provide": 1, + "ListCommand": 2, + "arg": 1, + "E_USER_WARNING": 1, + "ClassRegistry": 9, + "setHelperSet": 1, + "Output": 5, + "save": 9, + "array_flip": 1, + "status": 15, + "getCrawler": 1, + "urls": 1, + "getCookieJar": 1, + "this": 928, + "stream_get_contents": 1, + "Inflector": 12, + "deleteAll": 2, + "findAlternativeCommands": 2, + "InputFormField": 2, + "_isPrivateAction": 2, + "After": 1, + "CookieComponent": 1, + "createTextNode": 1, + "getDefaultInputDefinition": 2, + "lowercase": 1, + "tablePrefix": 8, + "importNode": 3, + "prefixes": 4, + "//book.cakephp.org/2.0/en/controllers.html": 1, + "a": 11, + "privateAction": 4, + "prevVal": 2, + "get": 12, + "modelClass": 25, + "false": 154, + "op": 9, + "preg_match": 6, + "implode": 8, + "DOMDocument": 2, + "filterRequest": 2, + "base_url": 1, + "validationErrors": 50, + "hasAttribute": 1, + "//TODO": 1, + "DomCrawler": 5, + "keyInfo": 4, + "possibly": 1, + "class_exists": 2, + "_collectForeignKeys": 2, + "autoLayout": 2, + "These": 1, + "begin": 2, + "__isset": 2, + "schemaName": 1, + "+": 12, + "ucfirst": 2, + "mb_strlen": 1, + "singularize": 4, + "savedAssociatons": 3, + "pluginDot": 4, + "as": 96, + "mb_detect_encoding": 1, + "ConsoleOutputInterface": 2, + "unbindModel": 1, + "_mergeUses": 3, + "yiisoft": 1, + "getVerbosity": 1, + "substr_count": 1, + "mergeParent": 2, + "hasField": 7, + "newData": 5, + "output": 60, + "command": 41, + "not": 2, + "autoRender": 6, + "key.": 1, + "callback": 5, + "getMessage": 1, + "Controller": 4, + "crawler": 7, + "breakOn": 4, + "class": 21, + "asText": 1, + "InputInterface": 4, + "resp": 6, + "__backOriginalAssociation": 1, + "@property": 8, + "lev": 6, + "nodeName": 13, + "getFormNode": 1, + "controller": 3, + "postConditions": 1, + "This": 1, + "elseif": 31, + "saveAll": 1, + "result": 21, + "currentUri": 7, + "saved": 18, + "substr": 6, + "all": 11, + "default": 9, + "MissingModelException": 1, + "validate": 9, + "current": 4, + "_mergeControllerVars": 2, + "clear": 2, + "array": 296, + "rendering": 1, + "getTrace": 1, + "_createLinks": 3, + "server": 20, + "VALUE_NONE": 7, + "n": 12, + "buildQuery": 2, + "You": 2, + "mapping": 1, + "||": 52, + "components": 1, + "beforeRedirect": 1, + "_sourceConfigured": 1, + "modelName": 3, + "PHP_URL_HOST": 1, + "actions": 2, + "db": 45, + "descriptorspec": 2, + "getCode": 1, + "redirect": 6, + "preg_replace": 4, + "CakePHP": 6, + "theme_path": 5, + "setAttribute": 2, + "isStopped": 4, + "setValues": 2, + "ob_end_clean": 1, + "timeFields": 2, + "_getScaffold": 2, + "version": 8, + "_id": 2, + "fclose": 2, + "remove": 4, + "ext": 1, + "break": 19, + "plugin": 31, + "2005": 4, + "commandsXML": 3, + "width": 7, + "queryString": 2, + "contains": 1, + "console": 3, + "string": 5, + "User": 1, + "asort": 1, + "PHP_URL_PATH": 1, + "logic": 1, + "pos": 3, + "addContent": 1, + "get_class_vars": 2, + "collection": 3, + "LLC": 1, + "migrated": 1, + "run": 4, + "resources": 1, + "helpers": 1, + "setValue": 1, + "offsetUnset": 1, + "FALSE": 2, + "fopen": 1, + "getUri": 8, + "target": 20, + "key": 64, + "item": 9, + "time": 3, + "use": 23, + "FormField": 3, + "CookieJar": 2, + "commands": 39, + "pluralized": 1, + "{": 974, + "Auth": 1, + "helpCommand": 3, + "getHelperSet": 3, + "Command": 6, + "filters": 2, + "create": 13, + "getPrevious": 1, + "str_repeat": 2, + "do": 2, + "part": 10, + "primaryKey": 38, + "format": 3, + "bootstrap": 1, + "config": 3, + "_normalizeXmlData": 3, + "must": 2, + "Licensed": 2, + "table": 21, + "properties": 4, + "saveXml": 1, + "path.": 1, + "copyright": 5, + "colType": 4, + "strtolower": 1, + "getAliases": 3, + "registry": 4, + "findQueryType": 3, + "get_parent_class": 1, + "*": 25, + "is_subclass_of": 3, + "actsAs": 2, + "getFirstArgument": 1, + "has": 7, + "getNamespaces": 3, + "trace": 12, + "getElementsByTagName": 1, + "you": 1, + "opensource": 2, + "is_object": 2, + "autoload": 1, + "InputOption": 15, + "Components": 7, + "uri": 23, + "pluginVars": 3, + "PHP_INT_MAX": 1, + "inputStream": 2, + "t": 26, + "http": 14, + "Automatically": 1, + "Copyright": 5, + "unset": 22, + "_beforeScaffold": 1, + "join": 22, + "objects": 5, + "mapper": 2, + "assocKey": 13, + "implementedEvents": 2, + "strlen": 14, + "Redistributions": 2, + "codes": 3, + "stdin": 1, + "encoding": 2, + "getServer": 1, + "Link": 3, + "is_numeric": 7, + "tableize": 2, + "transactionBegun": 4, + "return": 305, + "SessionComponent": 1, + "hasAndBelongsToMany": 24, + "DialogHelper": 2, + "call_user_func_array": 3, + "foreach": 94, + "isUnique": 1, + "_scaffoldError": 1, + "add": 7, + "Xml": 2, + "more": 1, + "array_filter": 2, + "foreignKeys": 3, + "keepExisting": 3, + "m": 5, + "childMethods": 2, + "define": 2, + "methods": 5, + "sources": 3, + "numeric": 1, + "found": 4, + "protected": 59, + "old_theme_path": 2, + "pluginController": 9, + "prefixed": 1, + "sys_get_temp_dir": 2, + "invalidFields": 2, + "len": 11, + "response.": 2, + "OutputInterface": 6, + "initialize": 2, + "suggestions": 2, + "<?php>": 3, + "setVersion": 1, + "dateFields": 5, + "MissingActionException": 1, + "scaffold": 2, + "state": 15, + "cond": 5, + "true": 133, + "describe": 1, + "__backInnerAssociation": 1, + "useTable": 12, + "aspects": 1, + "Request": 3, + "query": 102, + "SHEBANG#!php": 3, + "endpoint": 1, + "order": 4, + "Console": 17, + "reload": 1, + "is_a": 1, + "getValues": 3, + "mit": 2, + "application": 2, + "availability": 1, + "CakeEvent": 13, + "hasOne": 2, + "getHelp": 2, + "parse_str": 2, + "tm": 6, + "Security": 1, + "PrivateActionException": 1, + "getHistory": 1, + "recursive": 9, + "count": 32, + "0": 4, + "yii2": 1, + "getPhpFiles": 2, + "updateFromResponse": 1, + "are": 5, + "isset": 101, + "parentMethods": 2, + "line": 10, + "_stop": 1, + "Process": 1, + "associationForeignKey": 5, + "names.": 1, + "notEmpty": 4, + "method": 31, + "qs": 4, + "By": 1, + "getDefinition": 2, + "currentObject": 6, + "InputDefinition": 2, + "addChoice": 1, + "using": 2, + "whitelist": 14, + "business": 1, + "_": 1, + "//book.cakephp.org/2.0/en/models.html": 1, + "cols": 7, + "base": 8, + "offsetGet": 1, + "ArrayAccess": 1, + "EXTR_OVERWRITE": 3, + "&&": 119, + "on": 4, + "shutdownProcess": 1, + "if": 450, + "updateAll": 3, + "is_string": 7, + "global": 2, + "_saveMulti": 2, + "doRequest": 2, + "responsible": 1, + ")": 2417, + "xml": 5, + "example": 2, + "list": 29, + "strtoupper": 3, + "call_user_func": 2, + "xpath": 2, + "while": 6, + "action.": 1, + "names": 3, + "views": 1, + "yiiframework": 2, + "abstract": 2, + "above": 2, + "afterScaffoldSave": 2, + "joinModel": 8, + "segments": 13, + "field": 88, + "creating": 1, + "data": 187, + "allNamespaces": 3, + "instanceof": 8, + "performing": 2, + "idField": 3, + "updateCol": 6, + "Form": 4, + "array_values": 5, + "button": 6, + "fields": 60, + "were": 1, + "try": 3, + "dynamicWith": 3, + "fieldOp": 11, + "relational": 2, + "php_help": 1, + "BehaviorCollection": 2, + "basic": 1, + "match": 4, + "public": 202, + "bool": 5, + "useDbConfig": 7, + "isUUID": 5, + "cascade": 10, + "followRedirect": 4, + "_associationKeys": 2, + "SimpleXMLElement": 1, + "HelperSet": 3, + "Scaffold": 1, + "register": 1, + "sep": 1, + "getResponse": 1, + "messages": 16, + "PHP_URL_SCHEME": 1, + "setName": 1, + "one": 19, + "getVirtualField": 1, + "combine": 1, + "tableName": 4, + "withModel": 4, + "redirection": 2, + "getenv": 2, + "findNamespace": 4, + "parse_url": 3, + "line.str_repeat": 1, + "License": 4, + "currentModel": 2, + "is": 1, + "records": 6, + "ob_start": 1, + "eval": 1, + "message": 12, + "MissingTableException": 1, + "dirname": 1, + "is_resource": 1, + "wantHelps": 4, + "virtualFields": 8, + "index": 5, + "licenses": 2, + "Paginator": 1, + "Dispatcher": 1, + "getColumnTypes": 1, + "update": 2, + "getMethod": 6, + "link": 10, + "getSttyColumns": 3, + "raw": 2, + "walk": 3, + "Remove": 1, + "modelKey": 2, + "renderException": 3, + "ConsoleOutput": 2, + "Email": 1, + "info": 5, + "dom": 12, + "RequestHandlerComponent": 1, + "ReflectionException": 1, + "viewVars": 3, + "InvalidArgumentException": 9, + "strrpos": 2, + "method_exists": 5, + "backed": 2, + "vendor": 2, + "setCatchExceptions": 1, + "fieldName": 6, + "usually": 1, + "e": 18, + "print": 1, + "AclComponent": 1, + "throw": 19, + "record": 10, + "newValues": 8, + "request.": 1, + "commit": 2, + "document": 6, + "isVirtualField": 3, + "body": 1, + "STDIN": 3, + "assoc": 75, + "expression": 1, + "/": 1, + "belongsTo": 7, + "in_array": 26, + "getAssociated": 4, + "*/": 2, + "exclusive": 2, + "settings": 2, + "saveField": 1, + "setCommand": 1, + "_prepareUpdateFields": 2, + "_mergeVars": 5, + "_afterScaffoldSaveError": 1, + "function_exists": 4, + "sql": 1, + "checkVirtual": 3, + "CakeResponse": 2, + "null": 164, + "Model": 5, + "another": 1, + "PostsController": 1, + "helperSet": 6, + "afterScaffoldSaveError": 2, + "controllers": 2, + "routing.": 1, + "y": 2, + "dynamic": 2, + "getDescription": 3, + "TextareaFormField": 1, + "oldJoin": 4, + "The": 4, + "validates": 60, + "getScript": 2, + "invokeAction": 1, + "fully": 1, + "drupal_get_path": 1, + "Input": 6, + "__call": 1, + "disableCache": 2, + "is_array": 37, + "automatic": 1, + "paginate": 3, + "bindModel": 1, + "POST": 1, + "getDataSource": 15, + "(": 2416, + "__d": 1, + "beforeScaffold": 2, + "code": 4, + "displayField": 4, + "parts": 4, + "_php_filter_tips": 1, + "_findThreaded": 1, + "requestFromRequest": 4, + "database": 2, + "under": 2, + "implements": 3, + "extract": 9, + "array_pop": 1, + "r": 1, + "Foundation": 4, + "_constructLinkedModel": 2, + "fieldList": 1, + "exit": 7, + "ArrayInput": 3, + "FileFormField": 3, + "allValues": 1, + "getColumnType": 4, + "PHP": 1, + "of": 10, + "with": 5, + "constructClasses": 1, + "getAbbreviationSuggestions": 4, + "getLongVersion": 3, + "name": 181, + "RuntimeException": 2, + "viewPath": 3, + "<": 11, + "dispatchMethod": 1, + "HelpCommand": 2, + "by": 2, + "_parseBeforeRedirect": 2, + "Client": 1, + "__set": 1, + "validateErrors": 1, + "setServerParameters": 2, + "either": 1, + "property_exists": 3, + "load": 3, + "continue": 7, + "getAbsoluteUri": 2, + "doRequestInProcess": 2, + "compact": 8, + "allows": 1, + "value": 53, + "submit": 2, + "_findList": 1, + "getAbbreviations": 4, + "exists": 6, + "have": 2, + "column": 10, + "_filterResults": 2, + "k": 7, + "VERBOSITY_QUIET": 1, + "getParameters": 1, + "listing": 1, + "org": 10, + "tokenize": 1, + "uuid": 3, + "beforeFilter": 1, + "switch": 6, + "fieldValue": 7, + "ReflectionMethod": 2, + "proc_open": 1, + "5": 1, + "_findCount": 1, + "params": 34, + "AuthComponent": 1, + "array_map": 2, + "dispatch": 11, + "startupProcess": 1, + "formatOutput": 1, + "setAutoExit": 1, + "namespace": 28, + "php_permission": 1, + "values": 53, + "parameters": 4, + "CakeRequest": 5, + "escapeField": 6, + "modParams": 2, + "__DIR__": 3, + "editing": 1, + "Each": 1, + "get_class_methods": 2, + "cakefoundation": 4, + "__backAssociation": 22, + "require": 3, + "the": 11, + "getLine": 2, + "abbrev": 4, + "doRun": 2, + "FormatterHelper": 2, + "root": 4, + "insulated": 7, + "number": 1, + "Yii": 3, + "getFile": 2, + "aliases": 8, + "ArgvInput": 2, + "lst": 4, + "required": 2, + "ds": 3, + "appendChild": 10, + "trigger_error": 1, + "str_replace": 3, + "Application": 3, + "AppModel": 1, + "model": 34, + "association": 47, + "limit": 3, + "space": 5, + "array_key_exists": 11, + "Symfony": 24, + "can": 2, + "Event": 6, + ".": 169, + "relation": 7, + "preg_split": 1, + "Session": 1, + "schema": 11, + "resetAssociations": 3, + "assocName": 6, + "proc_close": 1, + "getContent": 2, + "@link": 2, + "fieldSet": 3, + "addObject": 2, + "event": 35, + "_mergeParent": 4, + "reverse": 1, + "option": 5, + "retain": 2, + "following": 1, + "viewClass": 10, + "pause": 2, + "php_filter_info": 1, + "setApplication": 2, + "back": 2, + "notice": 2, + "calculate": 2, + "x": 4, + "Cake": 7, + "for": 8, + "YII_DEBUG": 2, + "]": 672, + "pluginSplit": 12, + "toArray": 1, + "message.": 1, + "catch": 3, + "GET": 1, + "_deleteDependent": 3, + "getHeader": 2, + "location": 1, + "defined": 5, + "id": 82, + "space.": 1, + "extractNamespace": 7, + "filterResponse": 2, + "view": 5, + "cookieJar": 9, + "extends": 3, + "row": 17, + "oldLinks": 4, + "Cake.Controller": 1, + "php_eval": 1, + "func_get_args": 5, + "hasAny": 1, + "response": 33, + "_responseClass": 1, + "getName": 14, + "createElement": 6, + "parent": 14, + "Validation": 1, + "deconstruct": 2, + "Network": 1, + "_setAliasData": 2, + "ansicon": 4, + "hasMany": 2, + "definition": 3, + "reset": 6, + "validationDomain": 1, + "PHP_EOL": 3, + "getInputStream": 1, + "setNode": 1, + "layouts": 1, + "is_bool": 1, + "For": 2, + "tableToModel": 4, + ";": 1383, + "two": 6, + "Field": 9, + "Project": 2, + "followRedirects": 5, + "inside": 1, + "afterFilter": 1, + "getObject": 1, + "organization": 1 + }, + "Ragel in Ruby Host": { + "n": 1, + "alnum": 1, + "if": 4, + "machine": 3, + "date": 2, + "parser.stop_time": 1, + "foo": 8, + "nil": 4, + "MyTe": 2, + "@path": 2, + "any*": 3, + "seconds": 2, + "class": 3, + "action": 9, + "super": 2, + "my_ts...my_te": 1, + "any": 4, + "parser.ephemeris_table": 1, + "stop_time": 4, + "init": 3, + "ARGV": 2, + "stdout.puts": 2, + "ephemeris": 2, + "else": 2, + "ws": 2, + ".freeze": 1, + "lower": 1, + "def": 10, + "parser": 2, + "eoe": 2, + "ephemeris_table": 3, + "data.is_a": 1, + "{": 19, + "space*": 2, + "parse_step_size": 2, + "write": 9, + "+": 7, + "parser.step_size": 1, + "(": 33, + "r": 1, + "EphemerisParser": 1, + "ts..pe": 1, + "%": 34, + "simple_scanner": 1, + "data.length": 3, + "my_ts..": 1, + "my_te": 6, + "SimpleScanner.new": 1, + "fhold": 1, + "f": 2, + "File.open": 2, + "parse_time": 3, + "private": 1, + "do": 2, + "new": 1, + "main": 3, + "minutes": 2, + "data.unpack": 1, + ";": 38, + "parse_ephemeris_table": 2, + "begin": 3, + "]": 20, + "..": 1, + "ts": 4, + ".to_i": 2, + "year": 2, + "|": 11, + "upper": 1, + "eof": 3, + "SimpleTokenizer.new": 1, + "parser.start_time": 1, + "String": 1, + "MyTs": 2, + "||": 1, + "initialize": 2, + "datetime": 3, + "self.parse": 1, + "end": 23, + "leftover": 8, + "simple_tokenizer": 1, + "Struct.new": 1, + ")": 33, + "DateTime.parse": 1, + "s": 4, + "EPHEMERIS_DATA": 2, + "exec": 3, + "emit": 4, + "p": 8, + "s.perform": 2, + "#": 4, + "step_size": 3, + "hours": 2, + "module": 1, + "SimpleScanner": 1, + "mark": 6, + "data": 15, + "time": 6, + "require": 1, + "time_unit": 2, + "tz": 2, + "digit": 7, + "pe": 4, + "ENV": 2, + "month": 2, + "parse_start_time": 2, + "<": 1, + "attr_reader": 2, + "./": 1, + "ephemeris_parser": 1, + "SimpleTokenizer": 1, + "[": 20, + "perform": 2, + "Emit": 4, + "while": 2, + ".pack": 6, + "adbc": 2, + "}": 19, + "chunk.unpack": 2, + "ignored": 4, + "f.read": 2, + "my_ts": 6, + "-": 5, + "soe": 2, + "Tengai": 1, + "path": 8, + "t": 1, + "mark..p": 4, + "parse_stop_time": 2, + "te": 1, + "start_time": 4, + "chunk": 2, + "*": 9 + }, + "wisp": { + "unless": 5, + "compiled": 2, + "exception.": 1, + "which": 3, + "might": 1, + "console.log": 2, + "immediately.": 1, + "dialect": 1, + "verbose": 1, + "expression": 6, + "macros.": 1, + "constats": 1, + "/": 1, + "white": 1, + "vector": 1, + "evaluate": 2, + "containing": 1, + "log": 1, + "simbols": 1, + "be": 15, + "For": 2, + "more": 3, + "ease": 1, + "-": 33, + "Instantiation": 1, + "In": 5, + "data": 1, + "Compbining": 1, + "that": 7, + "up": 1, + "evaluating": 1, + "predicate": 1, "load": 1, - "balancing": 1, - "big.server.com": 1, - "logs/big.server.access.log": 1, - "//big_server_com": 1 + "+": 9, + "handy": 1, + "tradeoffs.": 1, + "puts": 1, + "JSONs": 1, + "diff": 1, + "do": 4, + "use": 2, + "increment": 1, + "Overloads": 1, + "them": 1, + "Not": 1, + "Note": 3, + "more.reduce": 1, + "is": 20, + ")": 75, + "evaluation": 1, + "effort": 1, + "multiline": 1, + "Via": 1, + "special": 4, + "void": 2, + "get": 2, + "there": 1, + "Functions": 1, + "@body": 1, + "expressions": 6, + "object": 1, + "result": 2, + "some": 2, + "function.": 1, + "when": 1, + "results.": 1, + "transparent": 1, + "respective": 1, + "}": 4, + "instantiation": 1, + "available": 1, + "also": 2, + "than": 1, + "operations": 3, + "identifiers": 2, + "arbitary": 1, + "options": 2, + "nil.": 1, + "If": 2, + "{": 4, + "variadic": 1, + "##": 2, + "Special": 1, + "clojure": 2, + "today": 1, + "#": 2, + "let": 2, + "enter": 1, + "missing": 1, + "may": 1, + "arguments": 7, + "y": 6, + "named": 1, + "text": 1, + "chaining": 1, + "unlike": 1, + "has": 2, + "render": 2, + "sum": 3, + "form.": 1, + "no": 1, + "themselves.": 1, + "similar": 2, + "doesn": 1, + "fulfill": 1, + "need": 1, + "needs": 1, + "compile": 3, + "number": 3, + "try": 1, + "strings.": 1, + "less": 1, + "quoted": 1, + "different": 1, + "def": 1, + "s": 7, + "the": 9, + "clojurescript.": 1, + "Maps": 2, + "syntax": 2, + "as": 4, + "single": 1, + "easier": 1, + "or": 2, + "passed": 1, + "without": 2, + "just": 3, + "metadata": 1, + "shortcut": 1, + "delimited": 1, + "defmacro": 3, + "multiple": 1, + "simbol": 1, + "optional": 2, + "comments": 1, + "separating": 1, + "We": 1, + "on": 1, + "bindings": 1, + "sometimes": 1, + "compiles": 1, + "purpose": 2, + "bop": 1, + "implemting": 1, + ".log": 1, + "Else": 1, + "language": 1, + "Since": 1, + "for": 5, + "many.": 1, + "method": 2, + "listToVector": 1, + "cons": 2, + "structures": 1, + "print": 1, + "keyword": 1, + "future": 2, + "metadata.": 1, + "with": 6, + "sugar": 1, + "monday": 1, + "lot": 2, + "<": 1, + "Vectors": 1, + "version": 1, + "instead.": 1, + "case": 1, + "numbers": 2, + "homoiconic": 1, + "not": 4, + "__privates__": 1, + "pairs.": 1, + "expression.": 1, + "condition": 4, + "of": 16, + "made": 2, + "translating": 1, + "Other": 1, + "code": 3, + "second": 1, + "hand": 1, + "because": 1, + "Type.": 1, + "problem": 1, + "hash": 1, + "items": 2, + "Conventions": 1, + "arguments.": 2, + "c": 1, + "Numbers": 1, + "will": 6, + "argument": 1, + "The": 1, + "macros": 2, + "assemble": 1, + "program": 1, + "false": 2, + "a": 24, + "Commas": 2, + "class.": 1, + "Booleans": 1, + "access": 1, + "getInputText": 1, + "console": 1, + "one": 3, + "Forms": 1, + "JS": 17, + "bound": 1, + "rest": 7, + "filter": 2, + "everything": 1, + "conditional": 1, + "want": 2, + "you": 1, + "objects.": 1, + "]": 22, + "types.": 1, + "return": 1, + "names": 1, + "Instead": 1, + "Macros": 2, + "[": 22, + "evaluates": 2, + "jQuery": 1, + "maps": 1, + "define": 4, + "all": 4, + "such": 1, + ".": 6, + "although": 1, + "body": 4, + "called.": 1, + "templating": 1, + "rest.reduce": 1, + "operation": 3, + "baz": 2, + "introspection": 1, + "item": 2, + "name": 2, + "Now": 1, + "pioneered": 1, + "limited.": 1, + "prevent": 1, + "few": 1, + "side": 2, + "this": 2, + "being": 1, + "compbine": 1, + "effects": 1, + "then": 1, + "it": 10, + "dashDelimited": 1, + "key": 3, + "popular": 1, + "plain": 2, + "Docstring": 1, + "above": 1, + "like": 2, + "macro": 7, + "(": 77, + "follows": 1, + "form": 10, + "reduce": 3, + "arrays.": 1, + "target": 1, + "space": 1, + "&": 6, + "though": 1, + "chanining": 1, + "human": 1, + "solve": 1, + "usually": 3, + "bar": 4, + "javascript": 1, + "new": 2, + "symbolic": 2, + "in": 16, + "choose": 1, + "beep": 1, + "third": 2, + "wisp": 6, + "desired": 1, + "true": 6, + "ways": 1, + "As": 1, + "understand": 1, + "type": 2, + "You": 1, + "party": 1, + "resulting": 1, + "x": 22, + "time": 1, + "JS.": 2, + "can": 13, + "representing": 1, + "makes": 1, + "js": 1, + "build": 1, + "suffixed": 1, + "nil": 4, + "equivalent": 2, + "encouraning": 1, + "More": 1, + "string": 1, + "following": 2, + "implemented.": 1, + "Bindings": 1, + "readable": 1, + "Lists": 1, + "effect": 1, + "into": 2, + "t": 1, + "depending": 1, + "requires": 1, + "booleans": 2, + "if": 7, + "char": 1, + "before": 1, + "at": 1, + "Although": 1, + "common": 1, + "list": 2, + "undefined": 1, + "throws": 1, + "Wisp": 13, + "map": 3, + "are": 14, + "very": 2, + "vectors": 1, + "strings": 3, + "function": 7, + "execute": 1, + "capture": 1, + "have": 2, + "expressed": 3, + "consice": 1, + "isPredicate": 1, + "Any": 1, + "yet": 1, + "associated": 2, + "by": 2, + "lexical": 1, + "added": 1, + "first": 4, + "how": 1, + "Also": 1, + "lisp": 1, + "array.": 1, + "naming": 1, + "example": 1, + "fn": 15, + "an": 1, + "args": 1, + "from": 2, + "differences": 1, + "Unfortunately": 1, + "presented": 1, + "input": 1, + "dsl": 1, + "Strings": 2, + "functions": 8, + "handler": 1, + "documentation": 1, + "making": 1, + "and": 9, + "open": 2, + "character": 1, + "Let": 1, + "to": 21, + "incerement": 1, + "isEnterKey": 1, + "exectued": 1, + "dash": 1, + "foo": 6, + "does": 1, + "keywords": 1, + "expressions.": 1, + "take": 2, + "invoked": 2, + "window.addEventListener": 1, + "instance": 1, + "lists": 1, + "Keywords": 3, + ";": 199, + "since": 1, + "methods": 1, + "calls": 3, + "keypress": 2, + "contain": 1, + "chaining.": 1, + "forms": 1, + "Class": 1, + "come": 1, + "we": 2, + "overload": 1, + "defined": 1, + "Characters": 2, + "message": 2, + "value": 2, + "via": 2, + "achieve": 1, + "capturing": 1, + "anyway": 1, + "but": 7, + "keys": 1, + "b": 5, + "overloaded": 1, + "differenc": 1, + "Method": 1, + "tagret": 1, + "output.": 1, + "desugars": 1, + "they": 3, + "defn": 2, + "functional": 1, + "used": 1, + "syntax.": 1, + "evaluated.": 1, + "Making": 1, + "context": 1, + "expanded": 2, + "conventions": 3, + "their": 2, + "API": 1, + "compatible": 1 + }, + "AutoHotkey": { + "Hello": 1, + "MsgBox": 1, + "World": 1 + }, + "Rebol": { + "print": 1, + "hello": 2, + "REBOL": 1, + "func": 1, + "]": 3, + "[": 3 }, "Nimrod": { "echo": 1 }, - "NSIS": { - ";": 39, - "bigtest.nsi": 1, - "This": 2, - "script": 1, - "attempts": 1, - "to": 6, - "test": 1, - "most": 1, - "of": 3, - "the": 4, - "functionality": 1, - "NSIS": 3, - "exehead.": 1, - "-": 205, - "ifdef": 2, - "HAVE_UPX": 1, - "packhdr": 1, - "tmp.dat": 1, - "endif": 4, - "NOCOMPRESS": 1, - "SetCompress": 1, - "off": 1, - "Name": 1, - "Caption": 1, - "Icon": 1, - "OutFile": 1, - "SetDateSave": 1, - "on": 6, - "SetDatablockOptimize": 1, - "CRCCheck": 1, - "SilentInstall": 1, - "normal": 1, - "BGGradient": 1, - "FFFFFF": 1, - "InstallColors": 1, - "FF8080": 1, - "XPStyle": 1, - "InstallDir": 1, - "InstallDirRegKey": 1, - "HKLM": 9, - "CheckBitmap": 1, - "LicenseText": 1, - "LicenseData": 1, - "RequestExecutionLevel": 1, - "admin": 1, - "Page": 4, - "license": 1, - "components": 1, - "directory": 3, - "instfiles": 2, - "UninstPage": 2, - "uninstConfirm": 1, - "ifndef": 2, - "NOINSTTYPES": 1, - "only": 1, - "if": 4, - "not": 2, - "defined": 1, - "InstType": 6, - "/NOCUSTOM": 1, - "/COMPONENTSONLYONCUSTOM": 1, - "AutoCloseWindow": 1, - "false": 1, - "ShowInstDetails": 1, - "show": 1, - "Section": 5, - "empty": 1, - "string": 1, - "makes": 1, - "it": 3, - "hidden": 1, - "so": 1, - "would": 1, - "starting": 1, - "with": 1, - "write": 2, - "reg": 1, - "info": 1, - "StrCpy": 2, - "DetailPrint": 1, - "WriteRegStr": 4, - "SOFTWARE": 7, - "NSISTest": 7, - "BigNSISTest": 8, - "uninstall": 2, - "strings": 1, - "SetOutPath": 3, - "INSTDIR": 15, - "File": 3, - "/a": 1, - "CreateDirectory": 1, - "recursively": 1, - "create": 1, - "a": 2, - "for": 2, - "fun.": 1, - "WriteUninstaller": 1, - "Nop": 1, - "fun": 1, - "SectionEnd": 5, - "SectionIn": 4, - "Start": 2, - "MessageBox": 11, - "MB_OK": 8, - "MB_YESNO": 3, - "IDYES": 2, - "MyLabel": 2, - "SectionGroup": 2, - "/e": 1, - "SectionGroup1": 1, - "WriteRegDword": 3, - "xdeadbeef": 1, - "WriteRegBin": 1, - "WriteINIStr": 5, - "Call": 6, - "MyFunctionTest": 1, - "DeleteINIStr": 1, - "DeleteINISec": 1, - "ReadINIStr": 1, - "StrCmp": 1, - "INIDelSuccess": 2, - "ClearErrors": 1, - "ReadRegStr": 1, - "HKCR": 1, - "xyz_cc_does_not_exist": 1, - "IfErrors": 1, - "NoError": 2, - "Goto": 1, - "ErrorYay": 2, - "CSCTest": 1, - "Group2": 1, - "BeginTestSection": 1, - "IfFileExists": 1, - "BranchTest69": 1, - "|": 3, - "MB_ICONQUESTION": 1, - "IDNO": 1, - "NoOverwrite": 1, - "skipped": 2, - "file": 4, - "doesn": 2, - "s": 1, - "icon": 1, - "start": 1, - "minimized": 1, - "and": 1, - "give": 1, - "hotkey": 1, - "(": 5, - "Ctrl": 1, - "+": 2, - "Shift": 1, - "Q": 2, - ")": 5, - "CreateShortCut": 2, - "SW_SHOWMINIMIZED": 1, - "CONTROL": 1, - "SHIFT": 1, - "MyTestVar": 1, - "myfunc": 1, - "test.ini": 2, - "MySectionIni": 1, - "Value1": 1, - "failed": 1, - "TextInSection": 1, - "will": 1, - "example2.": 1, - "Hit": 1, - "next": 1, - "continue.": 1, - "{": 8, - "NSISDIR": 1, - "}": 8, - "Contrib": 1, - "Graphics": 1, - "Icons": 1, - "nsis1": 1, - "uninstall.ico": 1, - "Uninstall": 2, - "Software": 1, - "Microsoft": 1, - "Windows": 3, - "CurrentVersion": 1, - "silent.nsi": 1, - "LogicLib.nsi": 1, - "bt": 1, - "uninst.exe": 1, - "SMPROGRAMS": 2, - "Big": 1, - "Test": 2, - "*.*": 2, - "BiG": 1, - "Would": 1, - "you": 1, - "like": 1, - "remove": 1, - "cpdest": 3, - "MyProjectFamily": 2, - "MyProject": 1, - "Note": 1, - "could": 1, - "be": 1, - "removed": 1, - "IDOK": 1, - "t": 1, - "exist": 1, - "NoErrorMsg": 1, - "x64.nsh": 1, - "A": 1, - "few": 1, - "simple": 1, - "macros": 1, - "handle": 1, - "installations": 1, - "x64": 1, - "machines.": 1, - "RunningX64": 4, - "checks": 1, - "installer": 1, - "is": 2, - "running": 1, - "x64.": 1, - "If": 1, - "EndIf": 1, - "DisableX64FSRedirection": 4, - "disables": 1, - "system": 2, - "redirection.": 2, - "EnableX64FSRedirection": 4, - "enables": 1, - "SYSDIR": 1, - "some.dll": 2, - "#": 3, - "extracts": 2, - "C": 2, - "System32": 1, - "SysWOW64": 1, - "___X64__NSH___": 3, - "define": 4, - "include": 1, - "LogicLib.nsh": 1, - "macro": 3, - "_RunningX64": 1, - "_a": 1, - "_b": 1, - "_t": 2, - "_f": 2, - "insertmacro": 2, - "_LOGICLIB_TEMP": 3, - "System": 4, - "kernel32": 4, - "GetCurrentProcess": 1, - "i.s": 1, - "IsWow64Process": 1, - "*i.s": 1, - "Pop": 1, - "_": 1, - "macroend": 3, - "Wow64EnableWow64FsRedirection": 2, - "i0": 1, - "i1": 1 - }, - "Nu": { - "SHEBANG#!nush": 1, - "(": 14, - "puts": 1, - ")": 14, - ";": 22, - "main.nu": 1, - "Entry": 1, - "point": 1, - "for": 1, - "a": 1, - "Nu": 1, - "program.": 1, - "Copyright": 1, - "c": 1, - "Tim": 1, - "Burks": 1, - "Neon": 1, - "Design": 1, - "Technology": 1, - "Inc.": 1, - "load": 4, - "basics": 1, - "cocoa": 1, - "definitions": 1, - "menu": 1, - "generation": 1, - "Aaron": 1, - "Hillegass": 1, - "t": 1, - "retain": 1, - "it.": 1, - "NSApplication": 2, - "sharedApplication": 2, - "setDelegate": 1, - "set": 1, - "delegate": 1, - "ApplicationDelegate": 1, - "alloc": 1, - "init": 1, - "this": 1, - "makes": 1, - "the": 3, - "application": 1, - "window": 1, - "take": 1, - "focus": 1, - "when": 1, - "we": 1, - "ve": 1, - "started": 1, - "it": 1, - "from": 1, - "terminal": 1, - "activateIgnoringOtherApps": 1, - "YES": 1, - "run": 1, - "main": 1, - "Cocoa": 1, - "event": 1, - "loop": 1, - "NSApplicationMain": 1, - "nil": 1 - }, - "Objective-C": { - "//": 317, - "#import": 53, - "<Foundation/Foundation.h>": 4, - "#if": 41, - "TARGET_OS_IPHONE": 11, - "<CFNetwork/CFNetwork.h>": 1, - "__IPHONE_OS_VERSION_MAX_ALLOWED": 4, - "__IPHONE_4_0": 6, - "<UIKit/UIKit.h>": 1, - "Necessary": 1, - "for": 99, - "background": 1, - "task": 1, - "support": 4, - "#endif": 59, - "<stdio.h>": 2, - "@class": 4, - "ASIDataDecompressor": 4, - ";": 2003, - "extern": 6, - "NSString": 127, - "*ASIHTTPRequestVersion": 2, - "#ifndef": 9, - "__IPHONE_3_2": 2, - "#define": 65, - "__MAC_10_5": 2, - "__MAC_10_6": 2, - "typedef": 47, - "enum": 17, - "_ASIAuthenticationState": 1, - "{": 541, - "ASINoAuthenticationNeededYet": 3, - "ASIHTTPAuthenticationNeeded": 1, - "ASIProxyAuthenticationNeeded": 1, - "}": 532, - "ASIAuthenticationState": 5, - "_ASINetworkErrorType": 1, - "ASIConnectionFailureErrorType": 2, - "ASIRequestTimedOutErrorType": 2, - "ASIAuthenticationErrorType": 3, - "ASIRequestCancelledErrorType": 2, - "ASIUnableToCreateRequestErrorType": 2, - "ASIInternalErrorWhileBuildingRequestType": 3, - "ASIInternalErrorWhileApplyingCredentialsType": 1, - "ASIFileManagementError": 2, - "ASITooMuchRedirectionErrorType": 3, - "ASIUnhandledExceptionError": 3, - "ASICompressionError": 1, - "ASINetworkErrorType": 1, - "NSString*": 13, - "const": 28, - "NetworkRequestErrorDomain": 12, - "unsigned": 62, - "long": 71, - "ASIWWANBandwidthThrottleAmount": 2, - "NS_BLOCKS_AVAILABLE": 8, - "void": 253, - "(": 2109, - "ASIBasicBlock": 15, - ")": 2106, - "ASIHeadersBlock": 3, - "NSDictionary": 37, - "*responseHeaders": 2, - "ASISizeBlock": 5, - "size": 12, - "ASIProgressBlock": 5, - "total": 4, - "ASIDataBlock": 3, - "NSData": 28, - "*data": 2, - "@interface": 23, - "ASIHTTPRequest": 31, - "NSOperation": 1, - "<NSCopying>": 1, - "The": 15, - "url": 24, - "this": 50, - "operation": 2, - "should": 8, - "include": 1, - "GET": 1, - "params": 1, - "in": 42, - "the": 197, - "query": 1, - "string": 9, - "where": 1, - "appropriate": 4, - "NSURL": 21, - "*url": 2, - "Will": 7, - "always": 2, - "contain": 4, - "original": 2, - "used": 16, - "making": 1, - "request": 113, - "value": 21, - "of": 34, - "can": 20, - "change": 2, - "when": 46, - "a": 78, - "is": 77, - "redirected": 2, - "*originalURL": 2, - "Temporarily": 1, - "stores": 1, - "we": 73, - "are": 15, - "about": 4, - "to": 115, - "redirect": 4, - "to.": 2, - "be": 49, - "nil": 131, - "again": 1, - "do": 5, - "*redirectURL": 2, - "delegate": 29, - "-": 595, - "will": 57, - "notified": 2, - "various": 1, - "changes": 4, - "state": 35, - "via": 5, - "ASIHTTPRequestDelegate": 1, - "protocol": 10, - "id": 170, - "<ASIHTTPRequestDelegate>": 1, - "Another": 1, - "that": 23, - "also": 1, - "status": 4, - "and": 44, - "progress": 13, - "updates": 2, - "Generally": 1, - "you": 10, - "won": 3, - "s": 35, - "more": 5, - "likely": 1, - "sessionCookies": 2, - "NSMutableArray": 31, - "*requestCookies": 2, - "populated": 1, - "with": 19, - "cookies": 5, - "NSArray": 27, - "*responseCookies": 3, - "If": 30, - "use": 26, - "useCookiePersistence": 3, - "true": 9, - "network": 4, - "requests": 21, - "present": 3, - "valid": 5, - "from": 18, - "previous": 2, - "BOOL": 137, - "useKeychainPersistence": 4, - "attempt": 3, - "read": 3, - "credentials": 35, - "keychain": 7, - "save": 3, - "them": 10, - "they": 6, - "successfully": 4, - "presented": 2, - "useSessionPersistence": 6, - "reuse": 3, - "duration": 1, - "session": 5, - "until": 2, - "clearSession": 2, - "called": 3, - "allowCompressedResponse": 3, - "inform": 1, - "server": 8, - "accept": 2, - "compressed": 2, - "data": 27, - "automatically": 2, - "decompress": 1, - "gzipped": 7, - "responses.": 1, - "Default": 10, - "true.": 1, - "shouldCompressRequestBody": 6, - "body": 8, - "gzipped.": 1, - "false.": 1, - "You": 1, - "probably": 4, - "need": 10, - "enable": 1, - "feature": 1, - "on": 26, - "your": 2, - "webserver": 1, - "make": 3, - "work.": 1, - "Tested": 1, - "apache": 1, - "only.": 1, - "When": 15, - "downloadDestinationPath": 11, - "set": 24, - "result": 4, - "downloaded": 6, - "file": 14, - "at": 10, - "location": 3, - "not": 29, - "download": 9, - "stored": 9, - "memory": 3, - "*downloadDestinationPath": 2, - "files": 5, - "Once": 2, - "complete": 12, - "decompressed": 3, - "if": 297, - "necessary": 2, - "moved": 2, - "*temporaryFileDownloadPath": 2, - "response": 17, - "shouldWaitToInflateCompressedResponses": 4, - "NO": 30, - "created": 3, - "path": 11, - "containing": 1, - "inflated": 6, - "as": 17, - "it": 28, - "comes": 3, - "*temporaryUncompressedDataDownloadPath": 2, - "Used": 13, - "writing": 2, - "NSOutputStream": 6, - "*fileDownloadOutputStream": 2, - "*inflatedFileDownloadOutputStream": 2, - "fails": 2, - "or": 18, - "completes": 6, - "finished": 3, - "cancelled": 5, - "an": 20, - "error": 75, - "occurs": 1, - "NSError": 51, - "code": 16, - "Connection": 1, - "failure": 1, - "occurred": 1, - "inspect": 1, - "[": 1227, - "userInfo": 15, - "]": 1227, - "objectForKey": 29, - "NSUnderlyingErrorKey": 3, - "information": 5, - "*error": 3, - "Username": 2, - "password": 11, - "authentication": 18, - "*username": 2, - "*password": 2, - "User": 1, - "Agent": 1, - "*userAgentString": 2, - "Domain": 2, - "NTLM": 6, - "*domain": 2, - "proxy": 11, - "*proxyUsername": 2, - "*proxyPassword": 2, - "*proxyDomain": 2, - "Delegate": 2, - "displaying": 2, - "upload": 4, - "usually": 2, - "NSProgressIndicator": 4, - "but": 5, - "supply": 2, - "different": 4, - "object": 36, - "handle": 4, - "yourself": 4, - "<ASIProgressDelegate>": 2, - "uploadProgressDelegate": 8, - "downloadProgressDelegate": 10, - "Whether": 1, - "t": 15, - "want": 5, - "hassle": 1, - "adding": 1, - "authenticating": 2, - "proxies": 3, - "their": 3, - "apps": 1, - "shouldPresentProxyAuthenticationDialog": 2, - "CFHTTPAuthenticationRef": 2, - "proxyAuthentication": 7, - "*proxyCredentials": 2, - "during": 4, - "int": 55, - "proxyAuthenticationRetryCount": 4, - "Authentication": 3, - "scheme": 5, - "Basic": 2, - "Digest": 2, - "*proxyAuthenticationScheme": 2, - "Realm": 1, - "required": 2, - "*proxyAuthenticationRealm": 3, - "HTTP": 9, - "eg": 2, - "OK": 1, - "Not": 2, - "found": 4, - "etc": 1, - "responseStatusCode": 3, - "Description": 1, - "*responseStatusMessage": 3, - "Size": 3, - "contentLength": 6, - "partially": 1, - "content": 5, - "partialDownloadSize": 8, - "POST": 2, - "payload": 1, - "postLength": 6, - "amount": 12, - "totalBytesRead": 4, - "uploaded": 2, - "totalBytesSent": 5, - "Last": 2, - "incrementing": 2, - "lastBytesRead": 3, - "sent": 6, - "lastBytesSent": 3, - "This": 7, - "lock": 19, - "prevents": 1, - "being": 4, - "inopportune": 1, - "moment": 1, - "NSRecursiveLock": 13, - "*cancelledLock": 2, - "Called": 6, - "implemented": 7, - "starts.": 1, - "requestStarted": 3, - "SEL": 19, - "didStartSelector": 2, - "receives": 3, - "headers.": 1, - "didReceiveResponseHeaders": 2, - "didReceiveResponseHeadersSelector": 2, - "Location": 1, - "header": 20, - "shouldRedirect": 3, - "YES": 62, - "then": 1, - "needed": 3, - "restart": 1, - "by": 12, - "calling": 1, - "redirectToURL": 2, - "simply": 1, - "cancel": 5, - "willRedirectSelector": 2, - "successfully.": 1, - "requestFinished": 4, - "didFinishSelector": 2, - "fails.": 1, - "requestFailed": 2, - "didFailSelector": 2, - "data.": 1, - "didReceiveData": 2, - "implement": 1, - "method": 5, - "must": 6, - "populate": 1, - "responseData": 5, - "write": 4, - "didReceiveDataSelector": 2, - "recording": 1, - "something": 1, - "last": 1, - "happened": 1, - "compare": 4, - "current": 2, - "date": 3, - "time": 9, - "out": 7, - "NSDate": 9, - "*lastActivityTime": 2, - "Number": 1, - "seconds": 2, - "wait": 1, - "before": 6, - "timing": 1, - "default": 8, - "NSTimeInterval": 10, - "timeOutSeconds": 3, - "HEAD": 10, - "length": 32, - "starts": 2, - "shouldResetUploadProgress": 3, - "shouldResetDownloadProgress": 3, - "showAccurateProgress": 7, - "preset": 2, - "*mainRequest": 2, - "only": 12, - "update": 6, - "indicator": 4, - "according": 2, - "how": 2, - "much": 2, - "has": 6, - "received": 5, - "so": 15, - "far": 2, - "Also": 1, - "see": 1, - "comments": 1, - "ASINetworkQueue.h": 1, - "ensure": 1, - "incremented": 4, - "once": 3, - "updatedProgress": 3, - "Prevents": 1, - "post": 2, - "built": 2, - "than": 9, - "largely": 1, - "subclasses": 2, - "haveBuiltPostBody": 3, - "internally": 3, - "may": 8, - "reflect": 1, - "internal": 2, - "buffer": 7, - "CFNetwork": 3, - "/": 18, - "PUT": 1, - "operations": 1, - "sizes": 1, - "greater": 1, - "uploadBufferSize": 6, - "timeout": 6, - "unless": 2, - "bytes": 8, - "have": 15, - "been": 1, - "Likely": 1, - "KB": 4, - "iPhone": 3, - "Mac": 2, - "OS": 1, - "X": 1, - "Leopard": 1, - "x": 10, - "Text": 1, - "encoding": 7, - "responses": 5, - "send": 2, - "Content": 1, - "Type": 1, - "charset": 5, - "value.": 1, - "Defaults": 2, - "NSISOLatin1StringEncoding": 2, - "NSStringEncoding": 6, - "defaultResponseEncoding": 4, - "text": 12, - "didn": 3, - "set.": 1, - "responseEncoding": 3, - "Tells": 1, - "delete": 1, - "partial": 2, - "downloads": 1, - "allows": 1, - "existing": 1, - "resume": 2, - "download.": 1, - "NO.": 1, - "allowResumeForFileDownloads": 2, - "Custom": 1, - "user": 6, - "associated": 1, - "*userInfo": 2, - "NSInteger": 56, - "tag": 2, - "Use": 6, - "rather": 4, - "defaults": 2, - "false": 3, - "useHTTPVersionOne": 3, - "get": 4, - "tell": 2, - "main": 8, - "loop": 1, - "stop": 4, - "retry": 3, - "new": 10, - "needsRedirect": 3, - "Incremented": 1, - "every": 3, - "redirects.": 1, - "reaches": 1, - "give": 2, - "up": 4, - "redirectCount": 2, - "check": 1, - "secure": 1, - "certificate": 2, - "self": 500, - "signed": 1, - "certificates": 2, - "development": 1, - "DO": 1, - "NOT": 1, - "USE": 1, - "IN": 1, - "PRODUCTION": 1, - "validatesSecureCertificate": 3, - "SecIdentityRef": 3, - "clientCertificateIdentity": 5, - "*clientCertificates": 2, - "Details": 1, - "could": 1, - "these": 3, - "best": 1, - "local": 1, - "*PACurl": 2, - "See": 5, - "values": 3, - "above.": 1, - "No": 1, - "yet": 1, - "authenticationNeeded": 3, - "ASIHTTPRequests": 1, - "store": 4, - "same": 6, - "asked": 3, - "avoids": 1, - "extra": 1, - "round": 1, - "trip": 1, - "after": 5, - "succeeded": 1, - "which": 1, - "efficient": 1, - "authenticated": 1, - "large": 1, - "bodies": 1, - "slower": 1, - "connections": 3, - "Set": 4, - "explicitly": 2, - "affects": 1, - "cache": 17, - "YES.": 1, - "Credentials": 1, - "never": 1, - "asks": 1, - "For": 2, - "using": 8, - "authenticationScheme": 4, - "*": 311, - "kCFHTTPAuthenticationSchemeBasic": 2, - "very": 2, - "first": 9, - "shouldPresentCredentialsBeforeChallenge": 4, - "hasn": 1, - "doing": 1, - "anything": 1, - "expires": 1, - "persistentConnectionTimeoutSeconds": 4, - "yes": 1, - "keep": 2, - "alive": 1, - "connectionCanBeReused": 4, - "Stores": 1, - "persistent": 5, - "connection": 17, - "currently": 4, - "use.": 1, - "It": 2, - "particular": 2, - "specify": 2, - "expire": 2, - "A": 4, - "host": 9, - "port": 17, - "connection.": 2, - "These": 1, - "determine": 1, - "whether": 1, - "reused": 2, - "subsequent": 2, - "all": 3, - "match": 1, - "An": 2, - "determining": 1, - "available": 1, - "number": 2, - "reference": 1, - "don": 2, - "ve": 7, - "opened": 3, - "one.": 1, - "stream": 13, - "closed": 1, - "+": 195, - "released": 2, - "either": 1, - "another": 1, - "timer": 5, - "fires": 1, - "NSMutableDictionary": 18, - "*connectionInfo": 2, - "automatic": 1, - "redirects": 2, - "standard": 1, - "follow": 1, - "behaviour": 2, - "most": 1, - "browsers": 1, - "shouldUseRFC2616RedirectBehaviour": 2, - "record": 1, - "downloading": 5, - "downloadComplete": 2, - "ID": 1, - "uniquely": 1, - "identifies": 1, - "primarily": 1, - "debugging": 1, - "NSNumber": 11, - "*requestID": 3, - "ASIHTTPRequestRunLoopMode": 2, - "synchronous": 1, - "NSDefaultRunLoopMode": 2, - "other": 3, - "*runLoopMode": 2, - "checks": 1, - "NSTimer": 5, - "*statusTimer": 2, - "setDefaultCache": 2, - "configure": 2, - "<ASICacheDelegate>": 9, - "downloadCache": 5, - "policy": 7, - "ASICacheDelegate.h": 2, - "possible": 3, - "ASICachePolicy": 4, - "cachePolicy": 3, - "storage": 2, - "ASICacheStoragePolicy": 2, - "cacheStoragePolicy": 2, - "was": 4, - "pulled": 1, - "didUseCachedResponse": 3, - "secondsToCache": 3, - "custom": 2, - "interval": 1, - "expiring": 1, - "&&": 123, - "shouldContinueWhenAppEntersBackground": 3, - "UIBackgroundTaskIdentifier": 1, - "backgroundTask": 7, - "helper": 1, - "inflate": 2, - "*dataDecompressor": 2, - "Controls": 1, - "without": 1, - "responseString": 3, - "All": 2, - "no": 7, - "raw": 3, - "discarded": 1, - "rawResponseData": 4, - "temporaryFileDownloadPath": 2, - "normal": 1, - "temporaryUncompressedDataDownloadPath": 3, - "contents": 1, - "into": 1, - "Setting": 1, - "especially": 1, - "useful": 1, - "users": 1, - "conjunction": 1, - "streaming": 1, - "parser": 3, - "allow": 1, - "passed": 2, - "while": 11, - "still": 2, - "running": 4, - "behind": 1, - "scenes": 1, - "PAC": 7, - "own": 3, - "isPACFileRequest": 3, - "http": 4, - "https": 1, - "webservers": 1, - "*PACFileRequest": 2, - "asynchronously": 1, - "reading": 1, - "URLs": 2, - "NSInputStream": 7, - "*PACFileReadStream": 2, - "storing": 1, - "NSMutableData": 5, - "*PACFileData": 2, - "startSynchronous.": 1, - "Currently": 1, - "detection": 2, - "synchronously": 1, - "isSynchronous": 2, - "//block": 12, - "execute": 4, - "startedBlock": 5, - "headers": 11, - "headersReceivedBlock": 5, - "completionBlock": 5, - "failureBlock": 5, - "bytesReceivedBlock": 8, - "bytesSentBlock": 5, - "downloadSizeIncrementedBlock": 5, - "uploadSizeIncrementedBlock": 5, - "handling": 4, - "dataReceivedBlock": 5, - "authenticationNeededBlock": 5, - "proxyAuthenticationNeededBlock": 5, - "redirections": 1, - "requestRedirectedBlock": 5, - "#pragma": 44, - "mark": 42, - "init": 34, - "dealloc": 13, - "initWithURL": 4, - "newURL": 16, - "requestWithURL": 7, - "usingCache": 5, - "andCachePolicy": 3, - "setStartedBlock": 1, - "aStartedBlock": 1, - "setHeadersReceivedBlock": 1, - "aReceivedBlock": 2, - "setCompletionBlock": 1, - "aCompletionBlock": 1, - "setFailedBlock": 1, - "aFailedBlock": 1, - "setBytesReceivedBlock": 1, - "aBytesReceivedBlock": 1, - "setBytesSentBlock": 1, - "aBytesSentBlock": 1, - "setDownloadSizeIncrementedBlock": 1, - "aDownloadSizeIncrementedBlock": 1, - "setUploadSizeIncrementedBlock": 1, - "anUploadSizeIncrementedBlock": 1, - "setDataReceivedBlock": 1, - "setAuthenticationNeededBlock": 1, - "anAuthenticationBlock": 1, - "setProxyAuthenticationNeededBlock": 1, - "aProxyAuthenticationBlock": 1, - "setRequestRedirectedBlock": 1, - "aRedirectBlock": 1, - "setup": 2, - "addRequestHeader": 5, - "applyCookieHeader": 2, - "buildRequestHeaders": 3, - "applyAuthorizationHeader": 2, - "buildPostBody": 3, - "appendPostData": 3, - "appendPostDataFromFile": 3, - "isResponseCompressed": 3, - "startSynchronous": 2, - "startAsynchronous": 2, - "clearDelegatesAndCancel": 2, - "HEADRequest": 1, - "upload/download": 1, - "updateProgressIndicators": 1, - "updateUploadProgress": 3, - "updateDownloadProgress": 3, - "removeUploadProgressSoFar": 1, - "incrementDownloadSizeBy": 1, - "incrementUploadSizeBy": 3, - "updateProgressIndicator": 4, - "withProgress": 4, - "ofTotal": 4, - "performSelector": 7, - "selector": 12, - "onTarget": 7, - "target": 5, - "withObject": 10, - "callerToRetain": 7, - "caller": 1, - "talking": 1, - "delegates": 2, - "requestReceivedResponseHeaders": 1, - "newHeaders": 1, - "failWithError": 11, - "theError": 6, - "retryUsingNewConnection": 1, - "parsing": 2, - "readResponseHeaders": 2, - "parseStringEncodingFromHeaders": 2, - "parseMimeType": 2, - "**": 27, - "mimeType": 2, - "andResponseEncoding": 2, - "stringEncoding": 1, - "fromContentType": 2, - "contentType": 1, - "stuff": 1, - "applyCredentials": 1, - "newCredentials": 16, - "applyProxyCredentials": 2, - "findCredentials": 1, - "findProxyCredentials": 2, - "retryUsingSuppliedCredentials": 1, - "cancelAuthentication": 1, - "attemptToApplyCredentialsAndResume": 1, - "attemptToApplyProxyCredentialsAndResume": 1, - "showProxyAuthenticationDialog": 1, - "showAuthenticationDialog": 1, - "addBasicAuthenticationHeaderWithUsername": 2, - "theUsername": 1, - "andPassword": 2, - "thePassword": 1, - "handlers": 1, - "handleNetworkEvent": 2, - "CFStreamEventType": 2, - "type": 5, - "handleBytesAvailable": 1, - "handleStreamComplete": 1, - "handleStreamError": 1, - "cleanup": 1, - "markAsFinished": 4, - "removeTemporaryDownloadFile": 1, - "removeTemporaryUncompressedDownloadFile": 1, - "removeTemporaryUploadFile": 1, - "removeTemporaryCompressedUploadFile": 1, - "removeFileAtPath": 1, - "err": 8, - "connectionID": 1, - "expirePersistentConnections": 1, - "defaultTimeOutSeconds": 3, - "setDefaultTimeOutSeconds": 1, - "newTimeOutSeconds": 1, - "client": 1, - "setClientCertificateIdentity": 1, - "anIdentity": 1, - "sessionProxyCredentialsStore": 1, - "sessionCredentialsStore": 1, - "storeProxyAuthenticationCredentialsInSessionStore": 1, - "storeAuthenticationCredentialsInSessionStore": 2, - "removeProxyAuthenticationCredentialsFromSessionStore": 1, - "removeAuthenticationCredentialsFromSessionStore": 3, - "findSessionProxyAuthenticationCredentials": 1, - "findSessionAuthenticationCredentials": 2, - "saveCredentialsToKeychain": 3, - "saveCredentials": 4, - "NSURLCredential": 8, - "forHost": 2, - "realm": 14, - "forProxy": 2, - "savedCredentialsForHost": 1, - "savedCredentialsForProxy": 1, - "removeCredentialsForHost": 1, - "removeCredentialsForProxy": 1, - "setSessionCookies": 1, - "newSessionCookies": 1, - "addSessionCookie": 1, - "NSHTTPCookie": 1, - "newCookie": 1, - "agent": 2, - "defaultUserAgentString": 1, - "setDefaultUserAgentString": 1, - "mime": 1, - "mimeTypeForFileAtPath": 1, - "bandwidth": 3, - "measurement": 1, - "throttling": 1, - "maxBandwidthPerSecond": 2, - "setMaxBandwidthPerSecond": 1, - "averageBandwidthUsedPerSecond": 2, - "performThrottling": 2, - "isBandwidthThrottled": 2, - "incrementBandwidthUsedInLastSecond": 1, - "setShouldThrottleBandwidthForWWAN": 1, - "throttle": 1, - "throttleBandwidthForWWANUsingLimit": 1, - "limit": 1, - "reachability": 1, - "isNetworkReachableViaWWAN": 1, - "queue": 12, - "NSOperationQueue": 4, - "sharedQueue": 4, - "defaultCache": 3, - "maxUploadReadLength": 1, - "activity": 1, - "isNetworkInUse": 1, - "setShouldUpdateNetworkActivityIndicator": 1, - "shouldUpdate": 1, - "showNetworkActivityIndicator": 1, - "hideNetworkActivityIndicator": 1, - "miscellany": 1, - "base64forData": 1, - "theData": 1, - "expiryDateForRequest": 1, - "maxAge": 2, - "dateFromRFC1123String": 1, - "isMultitaskingSupported": 2, - "threading": 1, - "NSThread": 4, - "threadForRequest": 3, - "@property": 150, - "retain": 73, - "*proxyHost": 1, - "assign": 84, - "proxyPort": 2, - "*proxyType": 1, - "setter": 2, - "setURL": 3, - "nonatomic": 40, - "readonly": 19, - "*authenticationRealm": 2, - "*requestHeaders": 1, - "*requestCredentials": 1, - "*rawResponseData": 1, - "*requestMethod": 1, - "*postBody": 1, - "*postBodyFilePath": 1, - "shouldStreamPostDataFromDisk": 4, - "didCreateTemporaryPostDataFile": 1, - "*authenticationScheme": 1, - "shouldPresentAuthenticationDialog": 1, - "authenticationRetryCount": 2, - "haveBuiltRequestHeaders": 1, - "inProgress": 4, - "numberOfTimesToRetryOnTimeout": 2, - "retryCount": 3, - "shouldAttemptPersistentConnection": 2, - "@end": 37, - "<MobileCoreServices/MobileCoreServices.h>": 1, - "#else": 8, - "<SystemConfiguration/SystemConfiguration.h>": 1, - "@": 258, - "static": 102, - "*defaultUserAgent": 1, - "*ASIHTTPRequestRunLoopMode": 1, - "CFOptionFlags": 1, - "kNetworkEvents": 1, - "kCFStreamEventHasBytesAvailable": 1, - "|": 13, - "kCFStreamEventEndEncountered": 1, - "kCFStreamEventErrorOccurred": 1, - "*sessionCredentialsStore": 1, - "*sessionProxyCredentialsStore": 1, - "*sessionCredentialsLock": 1, - "*sessionCookies": 1, - "RedirectionLimit": 1, - "ReadStreamClientCallBack": 1, - "CFReadStreamRef": 5, - "readStream": 5, - "*clientCallBackInfo": 1, - "ASIHTTPRequest*": 1, - "clientCallBackInfo": 1, - "*progressLock": 1, - "*ASIRequestCancelledError": 1, - "*ASIRequestTimedOutError": 1, - "*ASIAuthenticationError": 1, - "*ASIUnableToCreateRequestError": 1, - "*ASITooMuchRedirectionError": 1, - "*bandwidthUsageTracker": 1, - "nextConnectionNumberToCreate": 1, - "*persistentConnectionsPool": 1, - "*connectionsLock": 1, - "nextRequestID": 1, - "bandwidthUsedInLastSecond": 1, - "*bandwidthMeasurementDate": 1, - "NSLock": 2, - "*bandwidthThrottlingLock": 1, - "shouldThrottleBandwidthForWWANOnly": 1, - "*sessionCookiesLock": 1, - "*delegateAuthenticationLock": 1, - "*throttleWakeUpTime": 1, - "runningRequestCount": 1, - "shouldUpdateNetworkActivityIndicator": 1, - "*networkThread": 1, - "*sharedQueue": 1, - "cancelLoad": 3, - "destroyReadStream": 3, - "scheduleReadStream": 1, - "unscheduleReadStream": 1, - "willAskDelegateForCredentials": 1, - "willAskDelegateForProxyCredentials": 1, - "askDelegateForProxyCredentials": 1, - "askDelegateForCredentials": 1, - "failAuthentication": 1, - "measureBandwidthUsage": 1, - "recordBandwidthUsage": 1, - "startRequest": 3, - "updateStatus": 2, - "checkRequestStatus": 2, - "reportFailure": 3, - "reportFinished": 1, - "performRedirect": 1, - "shouldTimeOut": 2, - "willRedirect": 1, - "willAskDelegateToConfirmRedirect": 1, - "performInvocation": 2, - "NSInvocation": 4, - "invocation": 4, - "releasingObject": 2, - "objectToRelease": 1, - "hideNetworkActivityIndicatorAfterDelay": 1, - "hideNetworkActivityIndicatorIfNeeeded": 1, - "runRequests": 1, - "configureProxies": 2, - "fetchPACFile": 1, - "finishedDownloadingPACFile": 1, - "theRequest": 1, - "runPACScript": 1, - "script": 1, - "timeOutPACRead": 1, - "useDataFromCache": 2, - "updatePartialDownloadSize": 1, - "registerForNetworkReachabilityNotifications": 1, - "unsubscribeFromNetworkReachabilityNotifications": 1, - "reachabilityChanged": 1, - "NSNotification": 2, - "note": 1, - "performBlockOnMainThread": 2, - "block": 18, - "releaseBlocksOnMainThread": 4, - "releaseBlocks": 3, - "blocks": 16, - "callBlock": 1, - "*postBodyWriteStream": 1, - "*postBodyReadStream": 1, - "*compressedPostBody": 1, - "*compressedPostBodyFilePath": 1, - "willRetryRequest": 1, - "*readStream": 1, - "readStreamIsScheduled": 1, - "setSynchronous": 2, - "@implementation": 13, - "initialize": 1, - "class": 30, - "persistentConnectionsPool": 3, - "alloc": 47, - "connectionsLock": 3, - "progressLock": 1, - "bandwidthThrottlingLock": 1, - "sessionCookiesLock": 1, - "sessionCredentialsLock": 1, - "delegateAuthenticationLock": 1, - "bandwidthUsageTracker": 1, - "initWithCapacity": 2, - "ASIRequestTimedOutError": 1, - "initWithDomain": 5, - "dictionaryWithObjectsAndKeys": 10, - "NSLocalizedDescriptionKey": 10, - "ASIAuthenticationError": 1, - "ASIRequestCancelledError": 2, - "ASIUnableToCreateRequestError": 3, - "ASITooMuchRedirectionError": 1, - "setMaxConcurrentOperationCount": 1, - "setRequestMethod": 3, - "setRunLoopMode": 2, - "setShouldAttemptPersistentConnection": 2, - "setPersistentConnectionTimeoutSeconds": 2, - "setShouldPresentCredentialsBeforeChallenge": 1, - "setShouldRedirect": 1, - "setShowAccurateProgress": 1, - "setShouldResetDownloadProgress": 1, - "setShouldResetUploadProgress": 1, - "setAllowCompressedResponse": 1, - "setShouldWaitToInflateCompressedResponses": 1, - "setDefaultResponseEncoding": 1, - "setShouldPresentProxyAuthenticationDialog": 1, - "setTimeOutSeconds": 1, - "setUseSessionPersistence": 1, - "setUseCookiePersistence": 1, - "setValidatesSecureCertificate": 1, - "setRequestCookies": 2, - "autorelease": 21, - "setDidStartSelector": 1, - "@selector": 28, - "setDidReceiveResponseHeadersSelector": 1, - "setWillRedirectSelector": 1, - "willRedirectToURL": 1, - "setDidFinishSelector": 1, - "setDidFailSelector": 1, - "setDidReceiveDataSelector": 1, - "setCancelledLock": 1, - "setDownloadCache": 3, - "return": 165, - "ASIUseDefaultCachePolicy": 1, - "*request": 1, - "setCachePolicy": 1, - "setAuthenticationNeeded": 2, - "requestAuthentication": 7, - "CFRelease": 19, - "redirectURL": 1, - "release": 66, - "statusTimer": 3, - "invalidate": 2, - "postBody": 11, - "compressedPostBody": 4, - "requestHeaders": 6, - "requestCookies": 1, - "fileDownloadOutputStream": 1, - "inflatedFileDownloadOutputStream": 1, - "username": 8, - "domain": 2, - "authenticationRealm": 4, - "requestCredentials": 1, - "proxyHost": 2, - "proxyType": 1, - "proxyUsername": 3, - "proxyPassword": 3, - "proxyDomain": 1, - "proxyAuthenticationRealm": 2, - "proxyAuthenticationScheme": 2, - "proxyCredentials": 1, - "originalURL": 1, - "lastActivityTime": 1, - "responseCookies": 1, - "responseHeaders": 5, - "requestMethod": 13, - "cancelledLock": 37, - "postBodyFilePath": 7, - "compressedPostBodyFilePath": 4, - "postBodyWriteStream": 7, - "postBodyReadStream": 2, - "PACurl": 1, - "clientCertificates": 2, - "responseStatusMessage": 1, - "connectionInfo": 13, - "requestID": 2, - "dataDecompressor": 1, - "userAgentString": 1, - "super": 25, - "*blocks": 1, - "array": 84, - "addObject": 16, - "performSelectorOnMainThread": 2, - "waitUntilDone": 4, - "isMainThread": 2, - "Blocks": 1, - "exits": 1, - "setRequestHeaders": 2, - "dictionaryWithCapacity": 2, - "setObject": 9, - "forKey": 9, - "Are": 1, - "submitting": 1, - "disk": 1, - "were": 5, - "close": 5, - "setPostBodyWriteStream": 2, - "*path": 1, - "setCompressedPostBodyFilePath": 1, - "NSTemporaryDirectory": 2, - "stringByAppendingPathComponent": 2, - "NSProcessInfo": 2, - "processInfo": 2, - "globallyUniqueString": 2, - "*err": 3, - "ASIDataCompressor": 2, - "compressDataFromFile": 1, - "toFile": 1, - "&": 36, - "else": 35, - "setPostLength": 3, - "NSFileManager": 1, - "attributesOfItemAtPath": 1, - "fileSize": 1, - "errorWithDomain": 6, - "stringWithFormat": 6, - "Otherwise": 2, - "*compressedBody": 1, - "compressData": 1, - "setCompressedPostBody": 1, - "compressedBody": 1, - "isEqualToString": 13, - "||": 42, - "setHaveBuiltPostBody": 1, - "setupPostBody": 3, - "setPostBodyFilePath": 1, - "setDidCreateTemporaryPostDataFile": 1, - "initToFileAtPath": 1, - "append": 1, - "open": 2, - "setPostBody": 1, - "maxLength": 3, - "appendData": 2, - "*stream": 1, - "initWithFileAtPath": 1, - "NSUInteger": 93, - "bytesRead": 5, - "hasBytesAvailable": 1, - "char": 19, - "*256": 1, - "sizeof": 13, - "break": 13, - "dataWithBytes": 1, - "*m": 1, - "unlock": 20, - "m": 1, - "newRequestMethod": 3, - "*u": 1, - "u": 4, - "isEqual": 4, - "NULL": 152, - "setRedirectURL": 2, - "d": 11, - "setDelegate": 4, - "newDelegate": 6, - "q": 2, - "setQueue": 2, - "newQueue": 3, - "cancelOnRequestThread": 2, - "DEBUG_REQUEST_STATUS": 4, - "ASI_DEBUG_LOG": 11, - "isCancelled": 6, - "setComplete": 3, - "CFRetain": 4, - "willChangeValueForKey": 1, - "didChangeValueForKey": 1, - "onThread": 2, - "Clear": 3, - "setDownloadProgressDelegate": 2, - "setUploadProgressDelegate": 2, - "initWithBytes": 1, - "*encoding": 1, - "rangeOfString": 1, - ".location": 1, - "NSNotFound": 1, - "uncompressData": 1, - "DEBUG_THROTTLING": 2, - "setInProgress": 3, - "NSRunLoop": 2, - "currentRunLoop": 2, - "runMode": 1, - "runLoopMode": 2, - "beforeDate": 1, - "distantFuture": 1, - "start": 3, - "addOperation": 1, - "concurrency": 1, - "isConcurrent": 1, - "isFinished": 1, - "isExecuting": 1, - "logic": 1, - "@try": 1, - "UIBackgroundTaskInvalid": 3, - "UIApplication": 2, - "sharedApplication": 2, - "beginBackgroundTaskWithExpirationHandler": 1, - "dispatch_async": 1, - "dispatch_get_main_queue": 1, - "endBackgroundTask": 1, - "generated": 3, - "ASINetworkQueue": 4, - "already.": 1, - "proceed.": 1, - "setDidUseCachedResponse": 1, - "Must": 1, - "call": 8, - "create": 1, - "needs": 1, - "mainRequest": 9, - "ll": 6, - "already": 4, - "CFHTTPMessageRef": 3, - "Create": 1, - "request.": 1, - "CFHTTPMessageCreateRequest": 1, - "kCFAllocatorDefault": 3, - "CFStringRef": 1, - "CFURLRef": 1, - "kCFHTTPVersion1_0": 1, - "kCFHTTPVersion1_1": 1, - "//If": 2, - "let": 8, - "generate": 1, - "its": 9, - "Even": 1, - "chance": 2, - "add": 5, - "ASIS3Request": 1, - "does": 3, - "process": 1, - "@catch": 1, - "NSException": 19, - "*exception": 1, - "*underlyingError": 1, - "exception": 3, - "name": 7, - "reason": 1, - "NSLocalizedFailureReasonErrorKey": 1, - "underlyingError": 1, - "@finally": 1, - "Do": 3, - "DEBUG_HTTP_AUTHENTICATION": 4, - "*credentials": 1, - "auth": 2, - "basic": 3, - "any": 3, - "cached": 2, - "key": 32, - "challenge": 1, - "apply": 2, - "like": 1, - "CFHTTPMessageApplyCredentialDictionary": 2, - "CFDictionaryRef": 1, - "setAuthenticationScheme": 1, - "happens": 4, - "%": 30, - "re": 9, - "retrying": 1, - "our": 6, - "measure": 1, - "throttled": 1, - "setPostBodyReadStream": 2, - "ASIInputStream": 2, - "inputStreamWithData": 2, - "setReadStream": 2, - "NSMakeCollectable": 3, - "CFReadStreamCreateForStreamedHTTPRequest": 1, - "CFReadStreamCreateForHTTPRequest": 1, - "lowercaseString": 1, - "*sslProperties": 2, - "initWithObjectsAndKeys": 1, - "numberWithBool": 3, - "kCFStreamSSLAllowsExpiredCertificates": 1, - "kCFStreamSSLAllowsAnyRoot": 1, - "kCFStreamSSLValidatesCertificateChain": 1, - "kCFNull": 1, - "kCFStreamSSLPeerName": 1, - "CFReadStreamSetProperty": 1, - "kCFStreamPropertySSLSettings": 1, - "CFTypeRef": 1, - "sslProperties": 2, - "*certificates": 1, - "arrayWithCapacity": 2, - "count": 99, - "*oldStream": 1, - "redirecting": 2, - "connecting": 2, - "intValue": 4, - "setConnectionInfo": 2, - "Check": 1, - "expired": 1, - "timeIntervalSinceNow": 1, - "<": 56, - "DEBUG_PERSISTENT_CONNECTIONS": 3, - "removeObject": 2, - "//Some": 1, - "previously": 1, - "there": 1, - "one": 1, - "We": 7, - "just": 4, - "old": 5, - "//lists.apple.com/archives/Macnetworkprog/2006/Mar/msg00119.html": 1, - "oldStream": 4, - "streamSuccessfullyOpened": 1, - "setConnectionCanBeReused": 2, - "Record": 1, - "started": 1, - "nothing": 2, - "setLastActivityTime": 1, - "setStatusTimer": 2, - "timerWithTimeInterval": 1, - "repeats": 1, - "addTimer": 1, - "forMode": 1, - "here": 2, - "safely": 1, - "***Black": 1, - "magic": 1, - "warning***": 1, - "reliable": 1, - "way": 1, - "track": 1, - "strong": 4, - "slow.": 1, - "secondsSinceLastActivity": 1, - "*1.5": 1, - "updating": 1, - "checking": 1, - "told": 1, - "us": 2, - "auto": 2, - "resuming": 1, - "Range": 1, - "take": 1, - "account": 1, - "perhaps": 1, - "setTotalBytesSent": 1, - "CFReadStreamCopyProperty": 2, - "kCFStreamPropertyHTTPRequestBytesWrittenCount": 1, - "unsignedLongLongValue": 1, - "middle": 1, - "said": 1, - "might": 4, - "MaxValue": 2, - "UIProgressView": 2, - "double": 3, - "max": 7, - "setMaxValue": 2, - "examined": 1, - "since": 1, - "authenticate": 1, - "bytesReadSoFar": 3, - "setUpdatedProgress": 1, - "didReceiveBytes": 2, - "totalSize": 2, - "setLastBytesRead": 1, - "pass": 5, - "pointer": 2, - "directly": 1, - "itself": 1, - "setArgument": 4, - "atIndex": 6, - "argumentNumber": 1, - "callback": 3, - "NSMethodSignature": 1, - "*cbSignature": 1, - "methodSignatureForSelector": 1, - "*cbInvocation": 1, - "invocationWithMethodSignature": 1, - "cbSignature": 1, - "cbInvocation": 5, - "setSelector": 1, - "setTarget": 1, - "forget": 2, - "know": 3, - "removeObjectForKey": 1, - "dateWithTimeIntervalSinceNow": 1, - "ignore": 1, - "ASIFallbackToCacheIfLoadFailsCachePolicy": 2, - "canUseCachedDataForRequest": 1, - "setError": 2, - "*failedRequest": 1, - "compatible": 1, - "fail": 1, - "failedRequest": 4, - "message": 2, - "kCFStreamPropertyHTTPResponseHeader": 1, - "Make": 1, - "sure": 1, - "tells": 1, - "keepAliveHeader": 2, - "NSScanner": 2, - "*scanner": 1, - "scannerWithString": 1, - "scanner": 5, - "scanString": 2, - "intoString": 3, - "scanInt": 2, - "scanUpToString": 1, - "what": 3, - "hard": 1, - "throw": 1, - "away.": 1, - "*userAgentHeader": 1, - "*acceptHeader": 1, - "userAgentHeader": 2, - "acceptHeader": 2, - "setHaveBuiltRequestHeaders": 1, - "Force": 2, - "rebuild": 2, - "cookie": 1, - "incase": 1, - "got": 1, - "some": 1, - "remain": 1, - "ones": 3, - "URLWithString": 1, - "valueForKey": 2, - "relativeToURL": 1, - "absoluteURL": 1, - "setNeedsRedirect": 1, - "means": 1, - "manually": 1, - "added": 5, - "those": 1, - "global": 1, - "But": 1, - "safest": 1, - "option": 1, - "responseCode": 1, - "Handle": 1, - "*mimeType": 1, - "setResponseEncoding": 2, - "saveProxyCredentialsToKeychain": 1, - "*authenticationCredentials": 2, - "credentialWithUser": 2, - "kCFHTTPAuthenticationUsername": 2, - "kCFHTTPAuthenticationPassword": 2, - "persistence": 2, - "NSURLCredentialPersistencePermanent": 2, - "authenticationCredentials": 4, - "setProxyAuthenticationRetryCount": 1, - "Apply": 1, - "whatever": 1, - "ok": 1, - "CFMutableDictionaryRef": 1, - "*sessionCredentials": 1, - "dictionary": 64, - "sessionCredentials": 6, - "setRequestCredentials": 1, - "*newCredentials": 1, - "*user": 1, - "*pass": 1, - "*theRequest": 1, - "try": 3, - "connect": 1, - "website": 1, - "kCFHTTPAuthenticationSchemeNTLM": 1, - "Ok": 1, - "extract": 1, - "NSArray*": 1, - "ntlmComponents": 1, - "componentsSeparatedByString": 1, - "AUTH": 6, - "Request": 6, - "parent": 1, - "properties": 1, - "ASIAuthenticationDialog": 2, - "had": 1, - "Foo": 2, - "NSObject": 5, - "<Cocoa/Cocoa.h>": 2, - "FooAppDelegate": 2, - "<NSApplicationDelegate>": 1, - "@private": 2, - "NSWindow": 2, - "*window": 2, - "IBOutlet": 1, - "@synthesize": 7, - "window": 1, - "applicationDidFinishLaunching": 1, - "aNotification": 1, - "argc": 1, - "*argv": 1, - "NSLog": 4, - "#include": 18, - "<stddef.h>": 1, - "<stdint.h>": 2, - "<limits.h>": 2, - "<TargetConditionals.h>": 1, - "<AvailabilityMacros.h>": 1, - "#ifdef": 10, - "__OBJC__": 4, - "<Foundation/NSArray.h>": 2, - "<Foundation/NSData.h>": 2, - "<Foundation/NSDictionary.h>": 2, - "<Foundation/NSError.h>": 1, - "<Foundation/NSObjCRuntime.h>": 2, - "<Foundation/NSString.h>": 1, - "__cplusplus": 2, - "NSINTEGER_DEFINED": 3, - "defined": 16, - "__LP64__": 4, - "NS_BUILD_32_LIKE_64": 3, - "NSIntegerMin": 3, - "LONG_MIN": 3, - "NSIntegerMax": 4, - "LONG_MAX": 3, - "NSUIntegerMax": 7, - "ULONG_MAX": 3, - "INT_MIN": 3, - "INT_MAX": 2, - "UINT_MAX": 3, - "_JSONKIT_H_": 3, - "__GNUC__": 14, - "__APPLE_CC__": 2, - "JK_DEPRECATED_ATTRIBUTE": 6, - "__attribute__": 3, - "deprecated": 1, - "JSONKIT_VERSION_MAJOR": 1, - "JSONKIT_VERSION_MINOR": 1, - "JKFlags": 5, - "JKParseOptionNone": 1, - "JKParseOptionStrict": 1, - "JKParseOptionComments": 2, - "<<": 16, - "JKParseOptionUnicodeNewlines": 2, - "JKParseOptionLooseUnicode": 2, - "JKParseOptionPermitTextAfterValidJSON": 2, - "JKParseOptionValidFlags": 1, - "JKParseOptionFlags": 12, - "JKSerializeOptionNone": 3, - "JKSerializeOptionPretty": 2, - "JKSerializeOptionEscapeUnicode": 2, - "JKSerializeOptionEscapeForwardSlashes": 2, - "JKSerializeOptionValidFlags": 1, - "JKSerializeOptionFlags": 16, - "struct": 20, - "JKParseState": 18, - "Opaque": 1, - "private": 1, - "type.": 3, - "JSONDecoder": 2, - "*parseState": 16, - "decoder": 1, - "decoderWithParseOptions": 1, - "parseOptionFlags": 11, - "initWithParseOptions": 1, - "clearCache": 1, - "parseUTF8String": 2, - "size_t": 23, - "Deprecated": 4, - "JSONKit": 11, - "v1.4.": 4, - "objectWithUTF8String": 4, - "instead.": 4, - "parseJSONData": 2, - "jsonData": 6, - "objectWithData": 7, - "mutableObjectWithUTF8String": 2, - "mutableObjectWithData": 2, - "////////////": 4, - "Deserializing": 1, - "methods": 2, - "JSONKitDeserializing": 2, - "objectFromJSONString": 1, - "objectFromJSONStringWithParseOptions": 2, - "mutableObjectFromJSONString": 1, - "mutableObjectFromJSONStringWithParseOptions": 2, - "objectFromJSONData": 1, - "objectFromJSONDataWithParseOptions": 2, - "mutableObjectFromJSONData": 1, - "mutableObjectFromJSONDataWithParseOptions": 2, - "Serializing": 1, - "JSONKitSerializing": 3, - "JSONData": 3, - "Invokes": 2, - "JSONDataWithOptions": 8, - "includeQuotes": 6, - "serializeOptions": 14, - "JSONString": 3, - "JSONStringWithOptions": 8, - "serializeUnsupportedClassesUsingDelegate": 4, - "__BLOCKS__": 1, - "JSONKitSerializingBlockAdditions": 2, - "serializeUnsupportedClassesUsingBlock": 4, - "<stdlib.h>": 1, - "<string.h>": 1, - "<assert.h>": 1, - "<sys/errno.h>": 1, - "<math.h>": 1, - "<objc/runtime.h>": 1, - "//#include": 1, - "<CoreFoundation/CoreFoundation.h>": 1, - "<CoreFoundation/CFString.h>": 1, - "<CoreFoundation/CFArray.h>": 1, - "<CoreFoundation/CFDictionary.h>": 1, - "<CoreFoundation/CFNumber.h>": 1, - "//#import": 1, - "<Foundation/NSAutoreleasePool.h>": 1, - "<Foundation/NSException.h>": 1, - "<Foundation/NSNull.h>": 1, - "__has_feature": 3, - "JK_ENABLE_CF_TRANSFER_OWNERSHIP_CALLBACKS": 2, - "#warning": 1, - "As": 1, - "v1.4": 1, - "longer": 2, - "required.": 1, - "option.": 1, - "__OBJC_GC__": 1, - "#error": 6, - "Objective": 2, - "C": 6, - "Garbage": 1, - "Collection": 1, - "objc_arc": 1, - "Automatic": 1, - "Reference": 1, - "Counting": 1, - "ARC": 1, - "xffffffffU": 1, - "fffffff": 1, - "ULLONG_MAX": 1, - "xffffffffffffffffULL": 1, - "LLONG_MIN": 1, - "fffffffffffffffLL": 1, - "LL": 1, - "requires": 4, - "types": 2, - "bits": 1, - "respectively.": 1, - "WORD_BIT": 1, - "LONG_BIT": 1, - "bit": 1, - "architectures.": 1, - "SIZE_MAX": 1, - "SSIZE_MAX": 1, - "JK_HASH_INIT": 1, - "UL": 138, - "JK_FAST_TRAILING_BYTES": 2, - "JK_CACHE_SLOTS_BITS": 2, - "JK_CACHE_SLOTS": 1, - "JK_CACHE_PROBES": 1, - "JK_INIT_CACHE_AGE": 1, - "JK_TOKENBUFFER_SIZE": 1, - "JK_STACK_OBJS": 1, - "JK_JSONBUFFER_SIZE": 1, - "JK_UTF8BUFFER_SIZE": 1, - "JK_ENCODE_CACHE_SLOTS": 1, - "JK_ATTRIBUTES": 15, - "attr": 3, - "...": 11, - "##__VA_ARGS__": 7, - "JK_EXPECTED": 4, - "cond": 12, - "expect": 3, - "__builtin_expect": 1, - "JK_EXPECT_T": 22, - "U": 2, - "JK_EXPECT_F": 14, - "JK_PREFETCH": 2, - "ptr": 3, - "__builtin_prefetch": 1, - "JK_STATIC_INLINE": 10, - "__inline__": 1, - "always_inline": 1, - "JK_ALIGNED": 1, - "arg": 11, - "aligned": 1, - "JK_UNUSED_ARG": 2, - "unused": 3, - "JK_WARN_UNUSED": 1, - "warn_unused_result": 9, - "JK_WARN_UNUSED_CONST": 1, - "JK_WARN_UNUSED_PURE": 1, - "pure": 2, - "JK_WARN_UNUSED_SENTINEL": 1, - "sentinel": 1, - "JK_NONNULL_ARGS": 1, - "nonnull": 6, - "JK_WARN_UNUSED_NONNULL_ARGS": 1, - "JK_WARN_UNUSED_CONST_NONNULL_ARGS": 1, - "JK_WARN_UNUSED_PURE_NONNULL_ARGS": 1, - "__GNUC_MINOR__": 3, - "JK_ALLOC_SIZE_NON_NULL_ARGS_WARN_UNUSED": 2, - "nn": 4, - "alloc_size": 1, - "JKArray": 14, - "JKDictionaryEnumerator": 4, - "JKDictionary": 22, - "JSONNumberStateStart": 1, - "JSONNumberStateFinished": 1, - "JSONNumberStateError": 1, - "JSONNumberStateWholeNumberStart": 1, - "JSONNumberStateWholeNumberMinus": 1, - "JSONNumberStateWholeNumberZero": 1, - "JSONNumberStateWholeNumber": 1, - "JSONNumberStatePeriod": 1, - "JSONNumberStateFractionalNumberStart": 1, - "JSONNumberStateFractionalNumber": 1, - "JSONNumberStateExponentStart": 1, - "JSONNumberStateExponentPlusMinus": 1, - "JSONNumberStateExponent": 1, - "JSONStringStateStart": 1, - "JSONStringStateParsing": 1, - "JSONStringStateFinished": 1, - "JSONStringStateError": 1, - "JSONStringStateEscape": 1, - "JSONStringStateEscapedUnicode1": 1, - "JSONStringStateEscapedUnicode2": 1, - "JSONStringStateEscapedUnicode3": 1, - "JSONStringStateEscapedUnicode4": 1, - "JSONStringStateEscapedUnicodeSurrogate1": 1, - "JSONStringStateEscapedUnicodeSurrogate2": 1, - "JSONStringStateEscapedUnicodeSurrogate3": 1, - "JSONStringStateEscapedUnicodeSurrogate4": 1, - "JSONStringStateEscapedNeedEscapeForSurrogate": 1, - "JSONStringStateEscapedNeedEscapedUForSurrogate": 1, - "JKParseAcceptValue": 2, - "JKParseAcceptComma": 2, - "JKParseAcceptEnd": 3, - "JKParseAcceptValueOrEnd": 1, - "JKParseAcceptCommaOrEnd": 1, - "JKClassUnknown": 1, - "JKClassString": 1, - "JKClassNumber": 1, - "JKClassArray": 1, - "JKClassDictionary": 1, - "JKClassNull": 1, - "JKManagedBufferOnStack": 1, - "JKManagedBufferOnHeap": 1, - "JKManagedBufferLocationMask": 1, - "JKManagedBufferLocationShift": 1, - "JKManagedBufferMustFree": 1, - "JKManagedBufferFlags": 1, - "JKObjectStackOnStack": 1, - "JKObjectStackOnHeap": 1, - "JKObjectStackLocationMask": 1, - "JKObjectStackLocationShift": 1, - "JKObjectStackMustFree": 1, - "JKObjectStackFlags": 1, - "JKTokenTypeInvalid": 1, - "JKTokenTypeNumber": 1, - "JKTokenTypeString": 1, - "JKTokenTypeObjectBegin": 1, - "JKTokenTypeObjectEnd": 1, - "JKTokenTypeArrayBegin": 1, - "JKTokenTypeArrayEnd": 1, - "JKTokenTypeSeparator": 1, - "JKTokenTypeComma": 1, - "JKTokenTypeTrue": 1, - "JKTokenTypeFalse": 1, - "JKTokenTypeNull": 1, - "JKTokenTypeWhiteSpace": 1, - "JKTokenType": 2, - "JKValueTypeNone": 1, - "JKValueTypeString": 1, - "JKValueTypeLongLong": 1, - "JKValueTypeUnsignedLongLong": 1, - "JKValueTypeDouble": 1, - "JKValueType": 1, - "JKEncodeOptionAsData": 1, - "JKEncodeOptionAsString": 1, - "JKEncodeOptionAsTypeMask": 1, - "JKEncodeOptionCollectionObj": 1, - "JKEncodeOptionStringObj": 1, - "JKEncodeOptionStringObjTrimQuotes": 1, - "JKEncodeOptionType": 2, - "JKHash": 4, - "JKTokenCacheItem": 2, - "JKTokenCache": 2, - "JKTokenValue": 2, - "JKParseToken": 2, - "JKPtrRange": 2, - "JKObjectStack": 5, - "JKBuffer": 2, - "JKConstBuffer": 2, - "JKConstPtrRange": 2, - "JKRange": 2, - "JKManagedBuffer": 5, - "JKFastClassLookup": 2, - "JKEncodeCache": 6, - "JKEncodeState": 11, - "JKObjCImpCache": 2, - "JKHashTableEntry": 21, - "serializeObject": 1, - "options": 6, - "optionFlags": 1, - "encodeOption": 2, - "JKSERIALIZER_BLOCKS_PROTO": 1, - "releaseState": 1, - "keyHash": 21, - "uint32_t": 1, - "UTF32": 11, - "uint16_t": 1, - "UTF16": 1, - "uint8_t": 1, - "UTF8": 2, - "conversionOK": 1, - "sourceExhausted": 1, - "targetExhausted": 1, - "sourceIllegal": 1, - "ConversionResult": 1, - "UNI_REPLACEMENT_CHAR": 1, - "FFFD": 1, - "UNI_MAX_BMP": 1, - "FFFF": 3, - "UNI_MAX_UTF16": 1, - "UNI_MAX_UTF32": 1, - "FFFFFFF": 1, - "UNI_MAX_LEGAL_UTF32": 1, - "UNI_SUR_HIGH_START": 1, - "xD800": 1, - "UNI_SUR_HIGH_END": 1, - "xDBFF": 1, - "UNI_SUR_LOW_START": 1, - "xDC00": 1, - "UNI_SUR_LOW_END": 1, - "xDFFF": 1, - "trailingBytesForUTF8": 1, - "offsetsFromUTF8": 1, - "E2080UL": 1, - "C82080UL": 1, - "xFA082080UL": 1, - "firstByteMark": 1, - "xC0": 1, - "xE0": 1, - "xF0": 1, - "xF8": 1, - "xFC": 1, - "JK_AT_STRING_PTR": 1, - "stringBuffer.bytes.ptr": 2, - "JK_END_STRING_PTR": 1, - "stringBuffer.bytes.length": 1, - "*_JKArrayCreate": 2, - "*objects": 5, - "mutableCollection": 7, - "_JKArrayInsertObjectAtIndex": 3, - "*array": 9, - "newObject": 12, - "objectIndex": 48, - "_JKArrayReplaceObjectAtIndexWithObject": 3, - "_JKArrayRemoveObjectAtIndex": 3, - "_JKDictionaryCapacityForCount": 4, - "*_JKDictionaryCreate": 2, - "*keys": 2, - "*keyHashes": 2, - "*_JKDictionaryHashEntry": 2, - "*dictionary": 13, - "_JKDictionaryCapacity": 3, - "_JKDictionaryResizeIfNeccessary": 3, - "_JKDictionaryRemoveObjectWithEntry": 3, - "*entry": 4, - "_JKDictionaryAddObject": 4, - "*_JKDictionaryHashTableEntryForKey": 2, - "aKey": 13, - "_JSONDecoderCleanup": 1, - "*decoder": 1, - "_NSStringObjectFromJSONString": 1, - "*jsonString": 1, - "**error": 1, - "jk_managedBuffer_release": 1, - "*managedBuffer": 3, - "jk_managedBuffer_setToStackBuffer": 1, - "*ptr": 2, - "*jk_managedBuffer_resize": 1, - "newSize": 1, - "jk_objectStack_release": 1, - "*objectStack": 3, - "jk_objectStack_setToStackBuffer": 1, - "**objects": 1, - "**keys": 1, - "CFHashCode": 1, - "*cfHashes": 1, - "jk_objectStack_resize": 1, - "newCount": 1, - "jk_error": 1, - "*format": 7, - "jk_parse_string": 1, - "jk_parse_number": 1, - "jk_parse_is_newline": 1, - "*atCharacterPtr": 1, - "jk_parse_skip_newline": 1, - "jk_parse_skip_whitespace": 1, - "jk_parse_next_token": 1, - "jk_error_parse_accept_or3": 1, - "*or1String": 1, - "*or2String": 1, - "*or3String": 1, - "*jk_create_dictionary": 1, - "startingObjectIndex": 1, - "*jk_parse_dictionary": 1, - "*jk_parse_array": 1, - "*jk_object_for_token": 1, - "*jk_cachedObjects": 1, - "jk_cache_age": 1, - "jk_set_parsed_token": 1, - "advanceBy": 1, - "jk_encode_error": 1, - "*encodeState": 9, - "jk_encode_printf": 1, - "*cacheSlot": 4, - "startingAtIndex": 4, - "jk_encode_write": 1, - "jk_encode_writePrettyPrintWhiteSpace": 1, - "jk_encode_write1slow": 2, - "ssize_t": 2, - "depthChange": 2, - "jk_encode_write1fast": 2, - "jk_encode_writen": 1, - "jk_encode_object_hash": 1, - "*objectPtr": 2, - "jk_encode_updateCache": 1, - "jk_encode_add_atom_to_buffer": 1, - "jk_encode_write1": 1, - "es": 3, - "dc": 3, - "f": 8, - "_jk_encode_prettyPrint": 1, - "jk_min": 1, - "b": 4, - "jk_max": 3, - "jk_calculateHash": 1, - "currentHash": 1, - "c": 7, - "Class": 3, - "_JKArrayClass": 5, - "_JKArrayInstanceSize": 4, - "_JKDictionaryClass": 5, - "_JKDictionaryInstanceSize": 4, - "_jk_NSNumberClass": 2, - "NSNumberAllocImp": 2, - "_jk_NSNumberAllocImp": 2, - "NSNumberInitWithUnsignedLongLongImp": 2, - "_jk_NSNumberInitWithUnsignedLongLongImp": 2, - "jk_collectionClassLoadTimeInitialization": 2, - "constructor": 1, - "NSAutoreleasePool": 2, - "*pool": 1, - "Though": 1, - "technically": 1, - "run": 1, - "environment": 1, - "load": 1, - "initialization": 1, - "less": 1, - "ideal.": 1, - "objc_getClass": 2, - "class_getInstanceSize": 2, - "methodForSelector": 2, - "temp_NSNumber": 4, - "initWithUnsignedLongLong": 1, - "pool": 2, - "<NSCopying,>": 2, - "NSMutableCopying": 2, - "NSFastEnumeration": 2, - "capacity": 51, - "mutations": 20, - "allocWithZone": 4, - "NSZone": 4, - "zone": 8, - "raise": 18, - "NSInvalidArgumentException": 6, - "format": 18, - "NSStringFromClass": 18, - "NSStringFromSelector": 16, - "_cmd": 16, - "NSCParameterAssert": 19, - "objects": 58, - "calloc": 5, - "Directly": 2, - "allocate": 2, - "instance": 2, - "calloc.": 2, - "isa": 2, - "malloc": 1, - "memcpy": 2, - "<=>": 15, - "*newObjects": 1, - "newObjects": 2, - "realloc": 1, - "NSMallocException": 2, - "memset": 1, - "memmove": 2, - "atObject": 12, - "free": 4, - "NSParameterAssert": 15, - "getObjects": 2, - "objectsPtr": 3, - "range": 8, - "NSRange": 1, - "NSMaxRange": 4, - "NSRangeException": 6, - "range.location": 2, - "range.length": 1, - "objectAtIndex": 8, - "countByEnumeratingWithState": 2, - "NSFastEnumerationState": 2, - "stackbuf": 8, - "len": 6, - "mutationsPtr": 2, - "itemsPtr": 2, - "enumeratedCount": 8, - "insertObject": 1, - "anObject": 16, - "NSInternalInconsistencyException": 4, - "__clang_analyzer__": 3, - "Stupid": 2, - "clang": 3, - "analyzer...": 2, - "Issue": 2, - "#19.": 2, - "removeObjectAtIndex": 1, - "replaceObjectAtIndex": 1, - "copyWithZone": 1, - "initWithObjects": 2, - "mutableCopyWithZone": 1, - "NSEnumerator": 2, - "collection": 11, - "nextObject": 6, - "initWithJKDictionary": 3, - "initDictionary": 4, - "allObjects": 2, - "arrayWithObjects": 1, - "_JKDictionaryHashEntry": 2, - "returnObject": 3, - "entry": 41, - ".key": 11, - "jk_dictionaryCapacities": 4, - "bottom": 6, - "top": 8, - "mid": 5, - "tableSize": 2, - "lround": 1, - "floor": 1, - "capacityForCount": 4, - "resize": 3, - "oldCapacity": 2, - "NS_BLOCK_ASSERTIONS": 1, - "oldCount": 2, - "*oldEntry": 1, - "idx": 33, - "oldEntry": 9, - ".keyHash": 2, - ".object": 7, - "keys": 5, - "keyHashes": 2, - "atEntry": 45, - "removeIdx": 3, - "entryIdx": 4, - "*atEntry": 3, - "addKeyEntry": 2, - "addIdx": 5, - "*atAddEntry": 1, - "atAddEntry": 6, - "keyEntry": 4, - "CFEqual": 2, - "CFHash": 1, - "table": 7, - "would": 2, - "now.": 1, - "entryForKey": 3, - "_JKDictionaryHashTableEntryForKey": 1, - "andKeys": 1, - "arrayIdx": 5, - "keyEnumerator": 1, - "copy": 4, - "Why": 1, - "earth": 1, - "complain": 1, - "doesn": 1, - "Internal": 2, - "Unable": 2, - "temporary": 2, - "buffer.": 2, - "line": 2, - "#": 2, - "ld": 2, - "Invalid": 1, - "character": 1, - "x.": 1, - "n": 7, - "r": 6, - "F": 1, - ".": 2, - "e": 1, - "Unexpected": 1, - "token": 1, - "wanted": 1, - "Expected": 3, - "MainMenuViewController": 2, - "TTTableViewController": 1, - "///////////////////////////////////////////////////////////////////////////////////////////////////": 24, - "initWithNibName": 3, - "nibNameOrNil": 1, - "bundle": 3, - "NSBundle": 1, - "nibBundleOrNil": 1, - "self.title": 2, - "//self.variableHeightRows": 1, - "self.tableViewStyle": 1, - "UITableViewStyleGrouped": 1, - "self.dataSource": 1, - "TTSectionedDataSource": 1, - "dataSourceWithObjects": 1, - "TTTableTextItem": 48, - "itemWithText": 48, - "URL": 48, - "PlaygroundViewController": 2, - "UIViewController": 2, - "UIScrollView*": 1, - "_scrollView": 9, - "<Three20Core/NSDataAdditions.h>": 1, - "CGFloat": 44, - "kFramePadding": 7, - "kElementSpacing": 3, - "kGroupSpacing": 5, - "addHeader": 5, - "yOffset": 42, - "UILabel*": 2, - "label": 6, - "UILabel": 2, - "initWithFrame": 12, - "CGRectZero": 5, - "label.text": 2, - "label.font": 3, - "UIFont": 3, - "systemFontOfSize": 2, - "label.numberOfLines": 2, - "CGRect": 41, - "frame": 38, - "label.frame": 4, - "frame.origin.x": 3, - "frame.origin.y": 16, - "frame.size.width": 4, - "frame.size.height": 15, - "sizeWithFont": 2, - "constrainedToSize": 2, - "CGSizeMake": 3, - ".height": 4, - "addSubview": 8, - "label.frame.size.height": 2, - "TT_RELEASE_SAFELY": 12, - "addText": 5, - "loadView": 4, - "UIScrollView": 1, - "self.view.bounds": 2, - "_scrollView.autoresizingMask": 1, - "UIViewAutoresizingFlexibleWidth": 4, - "UIViewAutoresizingFlexibleHeight": 1, - "self.view": 4, - "NSLocalizedString": 9, - "UIButton*": 1, - "button": 5, - "UIButton": 1, - "buttonWithType": 1, - "UIButtonTypeRoundedRect": 1, - "setTitle": 1, - "forState": 4, - "UIControlStateNormal": 1, - "addTarget": 1, - "action": 1, - "debugTestAction": 2, - "forControlEvents": 1, - "UIControlEventTouchUpInside": 1, - "sizeToFit": 1, - "button.frame": 2, - "TTCurrentLocale": 2, - "displayNameForKey": 1, - "NSLocaleIdentifier": 1, - "localeIdentifier": 1, - "TTPathForBundleResource": 1, - "TTPathForDocumentsResource": 1, - "dataUsingEncoding": 2, - "NSUTF8StringEncoding": 2, - "md5Hash": 1, - "setContentSize": 1, - "viewDidUnload": 2, - "viewDidAppear": 2, - "animated": 27, - "flashScrollIndicators": 1, - "DEBUG": 1, - "TTDPRINTMETHODNAME": 1, - "TTDPRINT": 9, - "TTMAXLOGLEVEL": 1, - "TTDERROR": 1, - "TTLOGLEVEL_ERROR": 1, - "TTDWARNING": 1, - "TTLOGLEVEL_WARNING": 1, - "TTDINFO": 1, - "TTLOGLEVEL_INFO": 1, - "TTDCONDITIONLOG": 3, - "rand": 1, - "TTDASSERT": 2, - "SBJsonParser": 2, - "maxDepth": 2, - "NSData*": 1, - "objectWithString": 5, - "repr": 5, - "jsonText": 1, - "NSError**": 2, - "self.maxDepth": 2, - "Methods": 1, - "self.error": 3, - "SBJsonStreamParserAccumulator": 2, - "*accumulator": 1, - "SBJsonStreamParserAdapter": 2, - "*adapter": 1, - "adapter.delegate": 1, - "accumulator": 1, - "SBJsonStreamParser": 2, - "*parser": 1, - "parser.maxDepth": 1, - "parser.delegate": 1, - "adapter": 1, - "switch": 3, - "parse": 1, - "case": 8, - "SBJsonStreamParserComplete": 1, - "accumulator.value": 1, - "SBJsonStreamParserWaitingForData": 1, - "SBJsonStreamParserError": 1, - "parser.error": 1, - "error_": 2, - "tmp": 3, - "*ui": 1, - "*error_": 1, - "ui": 1, - "StyleViewController": 2, - "TTViewController": 1, - "TTStyle*": 7, - "_style": 8, - "_styleHighlight": 6, - "_styleDisabled": 6, - "_styleSelected": 6, - "_styleType": 6, - "kTextStyleType": 2, - "kViewStyleType": 2, - "kImageStyleType": 2, - "initWithStyleName": 1, - "styleType": 3, - "TTStyleSheet": 4, - "globalStyleSheet": 4, - "styleWithSelector": 4, - "UIControlStateHighlighted": 1, - "UIControlStateDisabled": 1, - "UIControlStateSelected": 1, - "addTextView": 5, + "Elm": { + "n": 2, + "Window.width": 1, + "if": 2, + "focuses": 1, + "max": 1, + "toLinks": 2, + "Node": 8, + "folder": 2, + "insertSpace": 2, + "###": 1, + "depth": 5, + "fromList": 3, + "Empty": 8, + "Basic": 1, + "Website.ColorScheme": 1, + "t1": 2, + "skeleton": 1, "title": 2, - "style": 29, - "textFrame": 3, - "TTRectInset": 3, - "UIEdgeInsetsMake": 3, - "StyleView*": 2, - "StyleView": 2, - "text.text": 1, - "TTStyleContext*": 1, - "context": 4, - "TTStyleContext": 1, - "context.frame": 1, - "context.delegate": 1, - "context.font": 1, - "systemFontSize": 1, - "CGSize": 5, - "addToSize": 1, - "CGSizeZero": 1, - "size.width": 1, - "size.height": 1, - "textFrame.size": 1, - "text.frame": 1, - "text.style": 1, - "text.backgroundColor": 1, - "UIColor": 3, - "colorWithRed": 3, - "green": 3, - "blue": 3, - "alpha": 3, - "text.autoresizingMask": 1, - "UIViewAutoresizingFlexibleBottomMargin": 3, - "addView": 5, - "viewFrame": 4, - "view": 11, - "view.style": 2, - "view.backgroundColor": 2, - "view.autoresizingMask": 2, - "addImageView": 5, - "TTImageView*": 1, - "TTImageView": 1, - "view.urlPath": 1, - "imageFrame": 2, - "view.frame": 2, - "imageFrame.size": 1, - "view.image.size": 1, - "TUITableViewStylePlain": 2, - "regular": 1, - "TUITableViewStyleGrouped": 1, - "grouped": 1, - "stick": 1, - "scroll": 3, - "TUITableViewStyle": 4, - "TUITableViewScrollPositionNone": 2, - "TUITableViewScrollPositionTop": 2, - "TUITableViewScrollPositionMiddle": 1, - "TUITableViewScrollPositionBottom": 1, - "TUITableViewScrollPositionToVisible": 3, - "supported": 1, - "TUITableViewScrollPosition": 5, - "TUITableViewInsertionMethodBeforeIndex": 1, - "NSOrderedAscending": 4, - "TUITableViewInsertionMethodAtIndex": 1, - "NSOrderedSame": 1, - "TUITableViewInsertionMethodAfterIndex": 1, - "NSOrderedDescending": 4, - "TUITableViewInsertionMethod": 3, - "TUITableViewCell": 23, - "@protocol": 3, - "TUITableViewDataSource": 2, - "TUITableView": 25, - "TUITableViewDelegate": 1, - "<NSObject,>": 1, - "TUIScrollViewDelegate": 1, - "tableView": 45, - "heightForRowAtIndexPath": 2, - "TUIFastIndexPath": 89, - "indexPath": 47, - "@optional": 2, - "willDisplayCell": 2, - "cell": 21, - "forRowAtIndexPath": 2, - "subview": 1, - "didSelectRowAtIndexPath": 3, - "left/right": 2, - "mouse": 2, - "down": 1, - "up/down": 1, - "didDeselectRowAtIndexPath": 3, - "didClickRowAtIndexPath": 1, - "withEvent": 2, - "NSEvent": 3, - "event": 8, - "look": 1, - "clickCount": 1, - "TUITableView*": 1, - "shouldSelectRowAtIndexPath": 3, - "TUIFastIndexPath*": 1, - "forEvent": 3, - "NSEvent*": 1, - "NSMenu": 1, - "menuForRowAtIndexPath": 1, - "tableViewWillReloadData": 3, - "tableViewDidReloadData": 3, - "targetIndexPathForMoveFromRowAtIndexPath": 1, - "fromPath": 1, - "toProposedIndexPath": 1, - "proposedPath": 1, - "TUIScrollView": 1, - "__unsafe_unretained": 2, - "<TUITableViewDataSource>": 4, - "_dataSource": 6, - "weak": 2, - "_sectionInfo": 27, - "TUIView": 17, - "_pullDownView": 4, - "_headerView": 8, - "_lastSize": 1, - "_contentHeight": 7, - "NSMutableIndexSet": 6, - "_visibleSectionHeaders": 6, - "_visibleItems": 14, - "_reusableTableCells": 5, - "_selectedIndexPath": 9, - "_indexPathShouldBeFirstResponder": 2, - "_futureMakeFirstResponderToken": 2, - "_keepVisibleIndexPathForReload": 2, - "_relativeOffsetForReload": 2, - "drag": 1, - "reorder": 1, - "_dragToReorderCell": 5, - "CGPoint": 7, - "_currentDragToReorderLocation": 1, - "_currentDragToReorderMouseOffset": 1, - "_currentDragToReorderIndexPath": 1, - "_currentDragToReorderInsertionMethod": 1, - "_previousDragToReorderIndexPath": 1, - "_previousDragToReorderInsertionMethod": 1, - "animateSelectionChanges": 3, - "forceSaveScrollPosition": 1, - "derepeaterEnabled": 1, - "layoutSubviewsReentrancyGuard": 1, - "didFirstLayout": 1, - "dataSourceNumberOfSectionsInTableView": 1, - "delegateTableViewWillDisplayCellForRowAtIndexPath": 1, - "maintainContentOffsetAfterReload": 3, - "_tableFlags": 1, - "creation.": 1, - "calls": 1, - "UITableViewStylePlain": 1, - "unsafe_unretained": 2, - "dataSource": 2, - "<TUITableViewDelegate>": 4, - "readwrite": 1, - "reloadData": 3, - "reloadDataMaintainingVisibleIndexPath": 2, - "relativeOffset": 5, - "reloadLayout": 2, - "numberOfSections": 10, - "numberOfRowsInSection": 9, - "section": 60, - "rectForHeaderOfSection": 4, - "rectForSection": 3, - "rectForRowAtIndexPath": 7, - "NSIndexSet": 4, - "indexesOfSectionsInRect": 2, - "rect": 10, - "indexesOfSectionHeadersInRect": 2, - "indexPathForCell": 2, - "returns": 4, - "visible": 16, - "indexPathsForRowsInRect": 3, - "indexPathForRowAtPoint": 2, - "point": 11, - "indexPathForRowAtVerticalOffset": 2, - "offset": 23, - "indexOfSectionWithHeaderAtPoint": 2, - "indexOfSectionWithHeaderAtVerticalOffset": 2, - "enumerateIndexPathsUsingBlock": 2, - "*indexPath": 11, - "*stop": 7, - "enumerateIndexPathsWithOptions": 2, - "NSEnumerationOptions": 4, - "usingBlock": 6, - "enumerateIndexPathsFromIndexPath": 4, - "fromIndexPath": 6, - "toIndexPath": 12, - "withOptions": 4, - "headerViewForSection": 6, - "cellForRowAtIndexPath": 9, - "index": 11, - "visibleCells": 3, - "order": 1, - "sortedVisibleCells": 2, - "indexPathsForVisibleRows": 2, - "scrollToRowAtIndexPath": 3, - "atScrollPosition": 3, - "scrollPosition": 9, - "indexPathForSelectedRow": 4, - "representing": 1, - "row": 36, - "selection.": 1, - "indexPathForFirstRow": 2, - "indexPathForLastRow": 2, - "selectRowAtIndexPath": 3, - "deselectRowAtIndexPath": 3, - "*pullDownView": 1, - "pullDownViewIsVisible": 3, - "*headerView": 6, - "dequeueReusableCellWithIdentifier": 2, - "identifier": 7, - "<NSObject>": 1, - "@required": 1, - "canMoveRowAtIndexPath": 2, - "moveRowAtIndexPath": 2, - "numberOfSectionsInTableView": 3, - "NSIndexPath": 5, - "indexPathForRow": 11, - "inSection": 11, - "HEADER_Z_POSITION": 2, - "beginning": 1, - "height": 19, - "TUITableViewRowInfo": 3, - "TUITableViewSection": 16, - "*_tableView": 1, - "*_headerView": 1, - "reusable": 1, - "similar": 1, - "UITableView": 1, - "sectionIndex": 23, - "numberOfRows": 13, - "sectionHeight": 9, - "sectionOffset": 8, - "*rowInfo": 1, - "initWithNumberOfRows": 2, - "_tableView": 3, - "rowInfo": 7, - "_setupRowHeights": 2, - "*header": 1, - "self.headerView": 2, - "roundf": 2, - "header.frame.size.height": 1, - "i": 41, - "h": 3, - "_tableView.delegate": 1, - ".offset": 2, - "rowHeight": 2, - "sectionRowOffset": 2, - "tableRowOffset": 2, - "headerHeight": 4, - "self.headerView.frame.size.height": 1, - "headerView": 14, - "_tableView.dataSource": 3, - "respondsToSelector": 8, - "_headerView.autoresizingMask": 1, - "TUIViewAutoresizingFlexibleWidth": 1, - "_headerView.layer.zPosition": 1, - "Private": 1, - "_updateSectionInfo": 2, - "_updateDerepeaterViews": 2, - "pullDownView": 1, - "_tableFlags.animateSelectionChanges": 3, - "_tableFlags.delegateTableViewWillDisplayCellForRowAtIndexPath": 1, - "setDataSource": 1, - "_tableFlags.dataSourceNumberOfSectionsInTableView": 2, - "setAnimateSelectionChanges": 1, - "*s": 3, - "y": 12, - "CGRectMake": 8, - "self.bounds.size.width": 4, - "indexPath.section": 3, - "indexPath.row": 1, - "*section": 8, - "removeFromSuperview": 4, - "removeAllIndexes": 2, - "*sections": 1, - "bounds": 2, - ".size.height": 1, - "self.contentInset.top*2": 1, - "section.sectionOffset": 1, - "sections": 4, - "self.contentInset.bottom": 1, - "_enqueueReusableCell": 2, - "*identifier": 1, - "cell.reuseIdentifier": 1, - "*c": 1, - "lastObject": 1, - "removeLastObject": 1, - "prepareForReuse": 1, - "allValues": 1, - "SortCells": 1, - "*a": 2, - "*b": 2, - "*ctx": 1, - "a.frame.origin.y": 2, - "b.frame.origin.y": 2, - "*v": 2, - "v": 4, - "sortedArrayUsingComparator": 1, - "NSComparator": 1, - "NSComparisonResult": 1, - "INDEX_PATHS_FOR_VISIBLE_ROWS": 4, - "allKeys": 1, - "*i": 4, - "*cell": 7, - "*indexes": 2, - "CGRectIntersectsRect": 5, - "indexes": 4, - "addIndex": 3, - "*indexPaths": 1, - "cellRect": 7, - "indexPaths": 2, - "CGRectContainsPoint": 1, - "cellRect.origin.y": 1, - "origin": 1, - "brief": 1, - "Obtain": 1, - "whose": 2, - "specified": 1, - "exists": 1, - "negative": 1, - "returned": 1, - "param": 1, - "p": 3, - "0": 2, - "width": 1, - "point.y": 1, - "section.headerView": 9, - "sectionLowerBound": 2, - "fromIndexPath.section": 1, - "sectionUpperBound": 3, - "toIndexPath.section": 1, - "rowLowerBound": 2, - "fromIndexPath.row": 1, - "rowUpperBound": 3, - "toIndexPath.row": 1, - "irow": 3, - "lower": 1, - "bound": 1, - "iteration...": 1, - "rowCount": 3, - "j": 5, - "FALSE": 2, - "...then": 1, - "zero": 1, - "iterations": 1, - "_topVisibleIndexPath": 1, - "*topVisibleIndex": 1, - "sortedArrayUsingSelector": 1, - "topVisibleIndex": 2, - "setFrame": 2, - "_tableFlags.forceSaveScrollPosition": 1, - "setContentOffset": 2, - "_tableFlags.didFirstLayout": 1, - "prevent": 2, - "layout": 3, - "pinned": 5, - "isKindOfClass": 2, - "TUITableViewSectionHeader": 5, - ".pinnedToViewport": 2, - "TRUE": 1, - "pinnedHeader": 1, - "CGRectGetMaxY": 2, - "headerFrame": 4, - "pinnedHeader.frame.origin.y": 1, - "intersecting": 1, - "push": 1, - "upwards.": 1, - "pinnedHeaderFrame": 2, - "pinnedHeader.frame": 2, - "pinnedHeaderFrame.origin.y": 1, - "notify": 3, - "section.headerView.frame": 1, - "setNeedsLayout": 3, - "section.headerView.superview": 1, - "remove": 4, - "offscreen": 2, - "toRemove": 1, - "enumerateIndexesUsingBlock": 1, - "removeIndex": 1, - "_layoutCells": 3, - "visibleCellsNeedRelayout": 5, - "remaining": 1, - "cells": 7, - "cell.frame": 1, - "cell.layer.zPosition": 1, - "visibleRect": 3, - "Example": 1, - "*oldVisibleIndexPaths": 1, - "*newVisibleIndexPaths": 1, - "*indexPathsToRemove": 1, - "oldVisibleIndexPaths": 2, - "mutableCopy": 2, - "indexPathsToRemove": 2, - "removeObjectsInArray": 2, - "newVisibleIndexPaths": 2, - "*indexPathsToAdd": 1, - "indexPathsToAdd": 2, - "newly": 1, - "superview": 1, - "bringSubviewToFront": 1, - "self.contentSize": 3, - "headerViewRect": 3, - "s.height": 3, - "_headerView.frame.size.height": 2, - "visible.size.width": 3, - "_headerView.frame": 1, - "_headerView.hidden": 4, + "else": 2, + "concept.": 1, + "name": 6, + "{": 1, + "markdown": 1, + ".": 9, + "x": 13, + "accent4": 1, + "then": 2, + "+": 14, + "right": 8, + "Each": 1, + "flow": 4, + "(": 119, + "lst": 6, + "all": 1, "show": 2, - "pullDownRect": 4, - "_pullDownView.frame.size.height": 2, - "_pullDownView.hidden": 4, - "_pullDownView.frame": 1, - "self.delegate": 10, - "recycle": 1, - "regenerated": 3, - "layoutSubviews": 5, - "because": 1, - "dragged": 1, - "clear": 3, - "removeAllObjects": 1, - "laid": 1, - "next": 2, - "_tableFlags.layoutSubviewsReentrancyGuard": 3, - "setAnimationsEnabled": 1, - "CATransaction": 3, - "begin": 1, - "setDisableActions": 1, - "_preLayoutCells": 2, - "munge": 2, - "contentOffset": 2, - "_layoutSectionHeaders": 2, - "_tableFlags.derepeaterEnabled": 1, - "commit": 1, - "selected": 2, - "overlapped": 1, - "r.size.height": 4, - "headerFrame.size.height": 1, - "r.origin.y": 1, - "v.size.height": 2, - "scrollRectToVisible": 2, - "sec": 3, - "_makeRowAtIndexPathFirstResponder": 2, - "responder": 2, - "made": 1, - "acceptsFirstResponder": 1, - "self.nsWindow": 3, - "makeFirstResponderIfNotAlreadyInResponderChain": 1, - "futureMakeFirstResponderRequestToken": 1, - "*oldIndexPath": 1, - "oldIndexPath": 2, - "setSelected": 2, - "setNeedsDisplay": 2, - "selection": 3, - "actually": 2, - "NSResponder": 1, - "*firstResponder": 1, - "firstResponder": 3, - "indexPathForFirstVisibleRow": 2, - "*firstIndexPath": 1, - "firstIndexPath": 4, - "indexPathForLastVisibleRow": 2, - "*lastIndexPath": 5, - "lastIndexPath": 8, - "performKeyAction": 2, - "repeative": 1, - "press": 1, - "noCurrentSelection": 2, - "isARepeat": 1, - "TUITableViewCalculateNextIndexPathBlock": 3, - "selectValidIndexPath": 3, - "*startForNoSelection": 2, - "calculateNextIndexPath": 4, - "foundValidNextRow": 4, - "*newIndexPath": 1, - "newIndexPath": 6, - "startForNoSelection": 1, - "_delegate": 2, - "self.animateSelectionChanges": 1, - "charactersIgnoringModifiers": 1, - "characterAtIndex": 1, - "NSUpArrowFunctionKey": 1, - "lastIndexPath.section": 2, - "lastIndexPath.row": 2, - "rowsInSection": 7, - "NSDownArrowFunctionKey": 1, - "_tableFlags.maintainContentOffsetAfterReload": 2, - "setMaintainContentOffsetAfterReload": 1, - "newValue": 2, - "indexPathWithIndexes": 1, - "indexAtPosition": 2 - }, - "OCaml": { - "{": 11, - "shared": 1, - "open": 4, - "Eliom_content": 1, - "Html5.D": 1, - "Eliom_parameter": 1, - "}": 13, - "server": 2, - "module": 5, - "Example": 1, - "Eliom_registration.App": 1, - "(": 21, - "struct": 5, - "let": 13, - "application_name": 1, - "end": 5, - ")": 23, - "main": 2, - "Eliom_service.service": 1, - "path": 1, - "[": 13, - "]": 13, - "get_params": 1, - "unit": 5, - "client": 1, - "hello_popup": 2, - "Dom_html.window##alert": 1, - "Js.string": 1, - "_": 2, - "Example.register": 1, - "service": 1, - "fun": 9, - "-": 22, - "Lwt.return": 1, - "html": 1, - "head": 1, - "title": 1, - "pcdata": 4, - "body": 1, - "h1": 1, - ";": 14, - "p": 1, - "h2": 1, - "a": 4, - "a_onclick": 1, - "type": 2, - "Ops": 2, - "@": 6, - "f": 10, - "k": 21, - "|": 15, - "x": 14, - "List": 1, - "rec": 3, - "map": 3, - "l": 8, - "match": 4, - "with": 4, - "hd": 6, - "tl": 6, - "fold": 2, - "acc": 5, - "Option": 1, - "opt": 2, - "None": 5, - "Some": 5, - "Lazy": 1, - "option": 1, - "mutable": 1, - "waiters": 5, - "make": 1, - "push": 4, - "cps": 7, - "value": 3, - "force": 1, - "l.value": 2, - "when": 1, - "l.waiters": 5, - "<->": 3, + "listed": 1, + "let": 2, + "plainText": 1, + "display": 4, + "Elm.": 1, + "words": 2, + "concat": 1, + "subsection": 2, + "on": 1, + "f": 8, + "Examples": 1, + "map": 11, + "t2": 3, + "foldl": 1, + "insert": 4, + "filter": 2, + "main": 3, + ";": 1, + "links": 2, + "bold": 2, + "example": 3, + "Website.Skeleton": 1, + "monospace": 1, + "]": 31, + "xs": 9, + "blocks": 1, + "add": 2, + "|": 3, + "These": 1, + "intersperse": 3, + "y": 7, + "addFolder": 4, + "building": 1, + "spacer": 2, + "in": 2, + "loc": 2, + "v": 8, + "info": 2, + "the": 1, + ")": 116, + "content": 2, + "left": 7, + "singleton": 2, + "qsort": 4, + "or": 1, + "exampleSets": 2, + "functional": 2, + "below": 1, + "empty": 2, + "basic": 1, + "data": 1, "function": 1, - "Base.List.iter": 1, - "l.push": 1, + "tree": 7, + "a": 5, + "of": 7, "<": 1, - "get_state": 1, - "lazy_from_val": 1 + "italic": 1, + "elements": 2, + "toText": 6, + "[": 31, + "<)x)>": 1, + "import": 3, + "single": 1, + "Tree": 3, + "down": 3, + "}": 1, + "List": 1, + "demonstrate": 1, + "case": 5, + "-": 11, + "text": 4, + "w": 7, + "Text.link": 1, + "reactive": 2, + "examples": 1, + "width": 3, + "asText": 1, + "lift": 1, + "Text.color": 1, + "intercalate": 2 }, - "Omgrofl": { - "lol": 14, - "iz": 11, - "wtf": 1, - "liek": 1, - "lmao": 1, - "brb": 1, - "w00t": 1, + "Nginx": { + "proxy_pass": 2, + "static": 1, + "seems": 1, + "logs/access.log": 1, + "conf/mime.types": 1, + "index": 1, + "for": 1, + "domain1.com": 1, + "proxy": 1, + "root": 2, + "//big_server_com": 1, + "index.html": 1, + "include": 3, + "upstream": 1, + "{": 10, + "/": 4, + "index.php": 1, + "location": 4, + "be": 1, + "//127.0.0.1": 1, + "/var/www/virtual/big.server.com/htdocs": 1, + "/etc/nginx/fastcgi.conf": 1, + "log_format": 1, + "application/octet": 1, + "listen": 3, + "tcp_nopush": 1, + "media": 1, + "www": 2, + "this": 1, + "worker_processes": 1, + "logs/domain1.access.log": 1, + "balancing": 1, + ")": 1, + "index.htm": 1, + "logs/domain2.access.log": 1, + "worker_rlimit_nofile": 1, + "vhosts": 1, + "}": 10, + "main": 5, + "events": 1, + "javascript": 1, + "server_name": 3, + "images": 1, + ".php": 1, + "default_type": 1, + "flash": 1, + "js": 1, + "#": 4, + "to": 1, + "http": 3, + "fastcgi_pass": 1, + "www.domain2.com": 1, + "weight": 2, + "d": 1, + "simple": 2, + "some": 1, + "load": 1, + "on": 2, + "/etc/nginx/proxy.conf": 1, + "server": 7, + "html": 1, + "required": 1, + ";": 35, + "(": 1, + "logs/error.log": 1, + "stream": 1, + "big.server.com": 1, + "expires": 1, + "|": 6, + "logs/nginx.pid": 1, + "www.domain1.com": 1, + "pid": 1, + "user": 1, + "domain2.com": 1, + "access_log": 4, + "-": 2, + "reverse": 1, + "server_names_hash_bucket_size": 1, + "logs/big.server.access.log": 1, + "big_server_com": 1, + "css": 1, + "worker_connections": 1, + "sendfile": 1, + "php/fastcgi": 1, + "error_log": 1 + }, + "Haml": { "Hello": 1, "World": 1, - "rofl": 13, - "lool": 5, - "loool": 6, - "stfu": 1 - }, - "Opa": { - "server": 1, - "Server.one_page_server": 1, - "(": 4, - "-": 1, - "<h1>": 2, - "Hello": 2, - "world": 2, - "</h1>": 2, - ")": 4, - "Server.start": 1, - "Server.http": 1, - "{": 2, - "page": 1, - "function": 1, - "}": 2, - "title": 1 - }, - "OpenCL": { - "double": 3, - "run_fftw": 1, - "(": 11, - "int": 3, - "n": 2, - "const": 2, - "float": 2, - "*": 4, - "x": 2, - "y": 2, - ")": 11, - "{": 2, - "fftwf_plan": 1, - "p1": 3, - "fftwf_plan_dft_1d": 1, - "fftwf_complex": 2, - "FFTW_FORWARD": 1, - "FFTW_ESTIMATE": 1, - ";": 9, - "nops": 3, - "t": 4, - "cl": 2, - "realTime": 2, - "for": 1, - "op": 3, - "<": 1, - "+": 2, - "fftwf_execute": 1, - "}": 2, - "-": 1, - "/": 1, - "fftwf_destroy_plan": 1, - "return": 1 - }, - "OpenEdge ABL": { - "USING": 3, - "Progress.Lang.*.": 3, - "CLASS": 2, - "email.Email": 2, - "USE": 2, - "-": 73, - "WIDGET": 2, - "POOL": 2, - "&": 3, - "SCOPED": 1, - "DEFINE": 16, - "QUOTES": 1, - "@#": 1, - "%": 2, - "*": 2, - "+": 21, - "._MIME_BOUNDARY_.": 1, - "#@": 1, - "WIN": 1, - "From": 4, - "To": 8, - "CC": 2, - "BCC": 2, - "Personal": 1, - "Private": 1, - "Company": 2, - "confidential": 2, - "normal": 1, - "urgent": 2, - "non": 1, - "Cannot": 3, - "locate": 3, - "file": 6, - "in": 3, - "the": 3, - "filesystem": 3, - "R": 3, - "File": 3, - "exists": 3, - "but": 3, - "is": 3, - "not": 3, - "readable": 3, - "Error": 3, - "copying": 3, - "from": 3, - "<\">": 8, - "ttSenders": 2, - "cEmailAddress": 8, - "n": 13, - "ttToRecipients": 1, - "Reply": 3, - "ttReplyToRecipients": 1, - "Cc": 2, - "ttCCRecipients": 1, - "Bcc": 2, - "ttBCCRecipients": 1, - "Return": 1, - "Receipt": 1, - "ttDeliveryReceiptRecipients": 1, - "Disposition": 3, - "Notification": 1, - "ttReadReceiptRecipients": 1, - "Subject": 2, - "Importance": 3, - "H": 1, - "High": 1, - "L": 1, - "Low": 1, - "Sensitivity": 2, - "Priority": 2, - "Date": 4, - "By": 1, - "Expiry": 2, - "Mime": 1, - "Version": 1, - "Content": 10, - "Type": 4, - "multipart/mixed": 1, - ";": 5, - "boundary": 1, - "text/plain": 2, - "charset": 2, - "Transfer": 4, - "Encoding": 4, - "base64": 2, - "bit": 2, - "application/octet": 1, - "stream": 1, - "attachment": 2, - "filename": 2, - "ttAttachments.cFileName": 2, - "cNewLine.": 1, - "RETURN": 7, - "lcReturnData.": 1, - "END": 12, - "METHOD.": 6, - "METHOD": 6, - "PUBLIC": 6, - "CHARACTER": 9, - "send": 1, - "(": 44, - ")": 44, - "objSendEmailAlgorithm": 1, - "sendEmail": 2, - "INPUT": 11, - "THIS": 1, - "OBJECT": 2, - ".": 14, - "CLASS.": 2, - "MESSAGE": 2, - "INTERFACE": 1, - "email.SendEmailAlgorithm": 1, - "ipobjEmail": 1, - "AS": 21, - "INTERFACE.": 1, - "PARAMETER": 3, - "objSendEmailAlg": 2, - "email.SendEmailSocket": 1, - "NO": 13, - "UNDO.": 12, - "VARIABLE": 12, - "vbuffer": 9, - "MEMPTR": 2, - "vstatus": 1, - "LOGICAL": 1, - "vState": 2, - "INTEGER": 6, - "ASSIGN": 2, - "vstate": 1, - "FUNCTION": 1, - "getHostname": 1, - "RETURNS": 1, - "cHostname": 1, - "THROUGH": 1, - "hostname": 1, - "ECHO.": 1, - "IMPORT": 1, - "UNFORMATTED": 1, - "cHostname.": 2, - "CLOSE.": 1, - "FUNCTION.": 1, - "PROCEDURE": 2, - "newState": 2, - "INTEGER.": 1, - "pstring": 4, - "CHARACTER.": 1, - "newState.": 1, - "IF": 2, - "THEN": 2, - "RETURN.": 1, - "SET": 5, - "SIZE": 5, - "LENGTH": 3, - "PUT": 1, - "STRING": 7, - "pstring.": 1, - "SELF": 4, - "WRITE": 1, - "PROCEDURE.": 2, - "ReadSocketResponse": 1, - "vlength": 5, - "str": 3, - "v": 1, - "GET": 3, - "BYTES": 2, - "AVAILABLE": 2, - "VIEW": 1, - "ALERT": 1, - "BOX.": 1, - "DO": 2, - "READ": 1, - "handleResponse": 1, - "END.": 2, - "email.Util": 1, - "FINAL": 1, - "PRIVATE": 1, - "STATIC": 5, - "cMonthMap": 2, - "EXTENT": 1, - "INITIAL": 1, - "[": 2, - "]": 2, - "ABLDateTimeToEmail": 3, - "ipdttzDateTime": 6, - "DATETIME": 3, - "TZ": 2, - "DAY": 1, - "MONTH": 1, - "YEAR": 1, - "TRUNCATE": 2, - "MTIME": 1, - "/": 2, - "ABLTimeZoneToString": 2, - "TIMEZONE": 1, - "ipdtDateTime": 2, - "ipiTimeZone": 3, - "ABSOLUTE": 1, - "MODULO": 1, - "LONGCHAR": 4, - "ConvertDataToBase64": 1, - "iplcNonEncodedData": 2, - "lcPreBase64Data": 4, - "lcPostBase64Data": 3, - "mptrPostBase64Data": 3, - "i": 3, - "COPY": 1, - "LOB": 1, - "FROM": 1, - "TO": 2, - "mptrPostBase64Data.": 1, - "BASE64": 1, - "ENCODE": 1, - "BY": 1, - "SUBSTRING": 1, - "CHR": 2, - "lcPostBase64Data.": 1 - }, - "Org": { - "#": 13, - "+": 13, - "OPTIONS": 1, - "H": 1, - "num": 1, - "nil": 4, - "toc": 2, - "n": 1, - "@": 1, - "t": 10, - "|": 4, - "-": 30, - "f": 2, - "*": 3, - "TeX": 1, - "LaTeX": 1, - "skip": 1, - "d": 2, - "(": 11, - "HIDE": 1, - ")": 11, - "tags": 2, - "not": 1, - "in": 2, - "STARTUP": 1, - "align": 1, - "fold": 1, - "nodlcheck": 1, - "hidestars": 1, - "oddeven": 1, - "lognotestate": 1, - "SEQ_TODO": 1, - "TODO": 1, - "INPROGRESS": 1, - "i": 1, - "WAITING": 1, - "w@": 1, - "DONE": 1, - "CANCELED": 1, - "c@": 1, - "TAGS": 1, - "Write": 1, - "w": 1, - "Update": 1, - "u": 1, - "Fix": 1, - "Check": 1, - "c": 1, - "TITLE": 1, - "org": 10, - "ruby": 6, - "AUTHOR": 1, - "Brian": 1, - "Dewey": 1, - "EMAIL": 1, - "bdewey@gmail.com": 1, - "LANGUAGE": 1, - "en": 1, - "PRIORITIES": 1, - "A": 1, - "C": 1, - "B": 1, - "CATEGORY": 1, - "worg": 1, - "{": 1, - "Back": 1, - "to": 8, - "Worg": 1, - "rubygems": 2, - "ve": 1, - "already": 1, - "created": 1, - "a": 4, - "site.": 1, - "Make": 1, - "sure": 1, - "you": 2, - "have": 1, - "installed": 1, - "sudo": 1, - "gem": 1, - "install": 1, - ".": 1, - "You": 1, - "need": 1, - "register": 1, - "new": 2, - "Webby": 3, - "filter": 3, - "handle": 1, - "mode": 2, - "content.": 2, - "makes": 1, - "this": 2, - "easy.": 1, - "In": 1, - "the": 6, - "lib/": 1, - "folder": 1, - "of": 2, - "your": 2, - "site": 1, - "create": 1, - "file": 1, - "orgmode.rb": 1, - "BEGIN_EXAMPLE": 2, - "require": 1, - "Filters.register": 1, - "do": 2, - "input": 3, - "Orgmode": 2, - "Parser.new": 1, - ".to_html": 1, - "end": 1, - "END_EXAMPLE": 1, - "This": 2, - "code": 1, - "creates": 1, - "that": 1, - "will": 1, - "use": 1, - "parser": 1, - "translate": 1, - "into": 1, - "HTML.": 1, - "Create": 1, - "For": 1, - "example": 1, - "title": 2, - "Parser": 1, - "created_at": 1, - "status": 2, - "Under": 1, - "development": 1, - "erb": 1, - "orgmode": 3, - "<%=>": 2, - "page": 2, - "Status": 1, - "Description": 1, - "Helpful": 1, - "Ruby": 1, - "routines": 1, - "for": 3, - "parsing": 1, - "files.": 1, - "The": 3, - "most": 1, - "significant": 1, - "thing": 2, - "library": 1, - "does": 1, - "today": 1, - "is": 5, - "convert": 1, - "files": 1, - "textile.": 1, - "Currently": 1, - "cannot": 1, - "much": 1, - "customize": 1, - "conversion.": 1, - "supplied": 1, - "textile": 1, - "conversion": 1, - "optimized": 1, - "extracting": 1, - "from": 1, - "orgfile": 1, - "as": 1, - "opposed": 1, - "History": 1, - "**": 1, - "Version": 1, - "first": 1, - "output": 2, - "HTML": 2, - "gets": 1, - "class": 1, - "now": 1, - "indented": 1, - "Proper": 1, - "support": 1, - "multi": 1, - "paragraph": 2, - "list": 1, - "items.": 1, - "See": 1, - "part": 1, - "last": 1, - "bullet.": 1, - "Fixed": 1, - "bugs": 1, - "wouldn": 1, - "s": 1, - "all": 1, - "there": 1, - "it": 1 - }, - "Parrot Assembly": { - "SHEBANG#!parrot": 1, - ".pcc_sub": 1, - "main": 2, - "say": 1, - "end": 1 - }, - "Parrot Internal Representation": { - "SHEBANG#!parrot": 1, - ".sub": 1, - "main": 1, - "say": 1, - ".end": 1 - }, - "Pascal": { - "program": 1, - "gmail": 1, - ";": 6, - "uses": 1, - "Forms": 1, - "Unit2": 1, - "in": 1, - "{": 2, - "Form2": 2, - "}": 2, - "R": 1, - "*.res": 1, - "begin": 1, - "Application.Initialize": 1, - "Application.MainFormOnTaskbar": 1, - "True": 1, - "Application.CreateForm": 1, - "(": 1, - "TForm2": 1, - ")": 1, - "Application.Run": 1, - "end.": 1 + "p": 1, + "%": 1 }, "Perl": { - "package": 14, - "App": 131, - "Ack": 136, - ";": 1185, - "use": 76, - "warnings": 16, - "strict": 16, - "File": 54, - "Next": 27, - "Plugin": 2, - "Basic": 10, - "head1": 31, - "NAME": 5, - "-": 860, - "A": 2, - "container": 1, - "for": 78, - "functions": 2, - "the": 131, - "ack": 38, - "program": 6, - "VERSION": 15, - "Version": 1, - "cut": 27, - "our": 34, - "COPYRIGHT": 6, - "BEGIN": 7, - "{": 1121, - "}": 1134, - "fh": 28, - "*STDOUT": 6, - "%": 78, - "types": 26, - "type_wanted": 20, - "mappings": 29, - "ignore_dirs": 12, - "input_from_pipe": 8, - "output_to_pipe": 12, - "dir_sep_chars": 10, - "is_cygwin": 6, - "is_windows": 12, - "Spec": 13, - "(": 919, - ")": 917, - "Glob": 4, - "Getopt": 6, - "Long": 6, - "_MTN": 2, - "blib": 2, - "CVS": 5, - "RCS": 2, - "SCCS": 2, - "_darcs": 2, - "_sgbak": 2, - "_build": 2, - "actionscript": 2, - "[": 159, - "qw": 35, - "as": 33, - "mxml": 2, - "]": 155, - "ada": 4, - "adb": 2, - "ads": 2, - "asm": 4, - "s": 34, - "batch": 2, - "bat": 2, - "cmd": 2, - "binary": 3, - "q": 5, - "Binary": 2, - "files": 41, - "defined": 54, - "by": 11, - "Perl": 6, - "T": 2, - "op": 2, - "default": 16, - "off": 4, - "tt": 4, - "tt2": 2, - "ttml": 2, - "vb": 4, - "bas": 2, - "cls": 2, - "frm": 2, - "ctl": 2, - "resx": 2, - "verilog": 2, - "v": 19, - "vh": 2, - "sv": 2, - "vhdl": 4, - "vhd": 2, - "vim": 4, - "yaml": 4, - "yml": 2, - "xml": 6, - "dtd": 2, - "xsl": 2, - "xslt": 2, - "ent": 2, - "while": 31, - "my": 401, - "type": 69, - "exts": 6, - "each": 14, - "if": 272, - "ref": 33, - "ext": 14, - "@": 38, - "push": 30, - "_": 101, - "mk": 2, - "mak": 2, - "not": 53, - "t": 18, - "p": 9, - "STDIN": 2, - "O": 4, - "eq": 31, - "/MSWin32/": 2, - "quotemeta": 5, - "catfile": 4, - "SYNOPSIS": 5, - "If": 14, - "you": 33, - "want": 5, - "to": 86, - "know": 4, - "about": 3, - "F": 24, - "<ack>": 13, - "see": 4, - "file": 40, - "itself.": 2, - "No": 4, - "user": 4, - "serviceable": 1, - "parts": 1, - "inside.": 1, - "is": 62, - "all": 22, - "that": 27, - "should": 6, - "this.": 1, - "FUNCTIONS": 1, - "head2": 32, - "read_ackrc": 4, - "Reads": 1, - "contents": 2, - "of": 55, - ".ackrc": 1, - "and": 76, - "returns": 4, - "arguments.": 1, - "sub": 225, - "@files": 12, - "ENV": 40, - "ACKRC": 2, - "@dirs": 4, - "HOME": 4, - "USERPROFILE": 2, - "dir": 27, - "grep": 17, - "bsd_glob": 4, - "GLOB_TILDE": 2, - "filename": 68, - "&&": 83, - "e": 20, - "open": 7, - "or": 47, - "die": 38, - "@lines": 21, - "/./": 2, - "/": 69, - "s*#/": 2, - "<$fh>": 4, - "chomp": 3, - "close": 19, - "s/": 22, - "+": 120, - "//": 9, - "return": 157, - "get_command_line_options": 4, - "Gets": 3, - "command": 13, - "line": 20, - "arguments": 2, - "does": 10, - "specific": 1, - "tweaking.": 1, - "opt": 291, - "pager": 19, - "ACK_PAGER_COLOR": 7, - "||": 49, - "ACK_PAGER": 5, - "getopt_specs": 6, - "m": 17, - "after_context": 16, - "before_context": 18, - "shift": 165, - "val": 26, - "break": 14, - "c": 5, - "count": 23, - "color": 38, - "ACK_COLOR_MATCH": 5, - "ACK_COLOR_FILENAME": 5, - "ACK_COLOR_LINENO": 4, - "column": 4, - "#": 99, - "ignore": 7, - "this": 18, - "option": 7, - "it": 25, - "handled": 2, - "beforehand": 2, - "f": 25, - "flush": 8, - "follow": 7, - "G": 11, - "heading": 18, - "h": 6, - "H": 6, - "i": 26, - "invert_file_match": 8, - "lines": 19, - "l": 17, - "regex": 28, - "n": 19, - "o": 17, - "output": 36, - "undef": 17, - "passthru": 9, - "print0": 7, - "Q": 7, - "show_types": 4, - "smart_case": 3, - "sort_files": 11, - "u": 10, - "w": 4, - "remove_dir_sep": 7, - "delete": 10, - "print_version_statement": 2, - "exit": 16, - "show_help": 3, - "@_": 41, - "show_help_types": 2, - "require": 12, - "Pod": 4, - "Usage": 4, - "pod2usage": 2, - "verbose": 2, - "exitval": 2, - "dummy": 2, - "wanted": 4, - "no//": 2, - "must": 5, - "be": 30, - "later": 2, - "exists": 19, - "else": 53, - "qq": 18, - "Unknown": 2, - "unshift": 4, - "@ARGV": 12, - "split": 13, - "ACK_OPTIONS": 5, - "def_types_from_ARGV": 5, - "filetypes_supported": 5, - "parser": 12, - "Parser": 4, - "new": 55, - "configure": 4, - "getoptions": 4, - "to_screen": 10, - "defaults": 16, - "eval": 8, - "Win32": 9, - "Console": 2, - "ANSI": 3, - "key": 20, - "value": 12, - "<": 15, - "join": 5, - "map": 10, - "@ret": 10, - "from": 19, - "warn": 22, - "..": 7, - "uniq": 4, - "@uniq": 2, - "sort": 8, - "a": 81, - "<=>": 2, - "b": 6, - "keys": 15, - "numerical": 2, - "occurs": 2, - "only": 11, - "once": 4, - "Go": 1, - "through": 6, - "look": 2, - "I": 67, - "<--type-set>": 1, - "foo=": 1, - "bar": 3, - "<--type-add>": 1, - "xml=": 1, - ".": 121, - "Remove": 1, - "them": 5, - "add": 8, - "supported": 1, - "filetypes": 8, - "i.e.": 2, - "into": 6, - "etc.": 1, - "@typedef": 8, - "td": 6, - "set": 11, - "Builtin": 4, - "cannot": 4, - "changed.": 4, - "ne": 9, - "delete_type": 5, - "Type": 2, - "exist": 4, - "creating": 2, - "with": 26, - "...": 2, - "unless": 39, - "@exts": 8, - ".//": 2, - "Cannot": 4, - "append": 2, - "Removes": 1, - "internal": 1, - "structures": 1, - "containing": 5, - "information": 1, - "type_wanted.": 1, - "Internal": 2, - "error": 4, - "builtin": 2, - "ignoredir_filter": 5, - "Standard": 1, - "filter": 12, - "pass": 1, - "L": 18, - "<File::Next>": 1, - "descend_filter.": 1, - "It": 2, - "true": 3, - "directory": 8, - "any": 3, - "ones": 1, - "we": 7, - "ignore.": 1, - "path": 28, - "This": 24, - "removes": 1, - "trailing": 1, - "separator": 4, - "there": 6, - "one": 9, - "its": 2, - "argument": 1, - "Returns": 10, - "list": 10, - "<$filename>": 1, - "could": 2, - "be.": 1, - "For": 5, - "example": 5, - "<foo.pod>": 1, - "The": 20, - "filetype": 1, - "will": 7, - "C": 48, - "<undef>": 1, - "can": 26, - "skipped": 2, - "something": 2, - "avoid": 1, - "searching": 6, - "even": 4, - "under": 4, - "a.": 1, - "constant": 2, - "TEXT": 16, - "basename": 9, - ".*": 2, - "is_searchable": 8, - "lc_basename": 8, - "lc": 5, - "r": 14, - "B": 75, - "header": 17, - "SHEBANG#!#!": 2, - "ruby": 3, - "|": 28, - "lua": 2, - "erl": 2, - "hp": 2, - "ython": 2, - "d": 9, - "d.": 2, - "*": 8, - "b/": 4, - "ba": 2, - "k": 6, - "z": 2, - "sh": 2, - "/i": 2, - "search": 11, - "false": 1, - "regular": 3, - "expression": 9, - "found.": 4, - "www": 2, - "U": 2, - "y": 8, - "tr/": 2, - "x": 7, - "w/": 3, - "nOo_/": 2, - "_thpppt": 3, - "_get_thpppt": 3, - "print": 35, - "_bar": 3, - "<<": 6, - "&": 22, - "*I": 2, - "g": 7, - "#.": 6, - ".#": 4, - "I#": 2, - "#I": 6, - "#7": 4, - "results.": 2, - "on": 24, - "when": 17, - "used": 11, - "interactively": 6, - "no": 21, - "Print": 6, - "between": 3, - "results": 8, - "different": 2, - "files.": 6, - "group": 2, - "Same": 8, - "nogroup": 2, - "noheading": 2, - "nobreak": 2, - "Highlight": 2, - "matching": 15, - "text": 6, - "redirected": 2, - "Windows": 4, - "colour": 2, - "COLOR": 6, - "match": 21, - "lineno": 2, - "Set": 3, - "filenames": 7, - "matches": 7, - "numbers.": 2, - "Flush": 2, - "immediately": 2, - "non": 2, - "goes": 2, - "pipe": 4, - "finding": 2, - "Only": 7, - "found": 9, - "without": 3, - "searching.": 2, - "PATTERN": 8, - "specified.": 4, - "REGEX": 2, - "but": 4, - "REGEX.": 2, - "Sort": 2, - "lexically.": 3, - "invert": 2, - "Print/search": 2, - "handle": 2, - "do": 11, - "g/": 2, - "G.": 2, - "show": 3, - "Show": 2, - "which": 6, - "has.": 2, - "inclusion/exclusion": 2, - "All": 4, - "searched": 5, - "Ignores": 2, - ".svn": 3, - "other": 5, - "ignored": 6, - "directories": 9, - "unrestricted": 2, - "name": 44, - "Add/Remove": 2, - "dirs": 2, - "R": 2, - "recurse": 2, - "Recurse": 3, - "subdirectories": 2, - "END_OF_HELP": 2, - "VMS": 2, - "vd": 2, - "Term": 6, - "ANSIColor": 8, - "black": 3, - "on_yellow": 3, - "bold": 5, - "green": 3, - "yellow": 3, - "printing": 2, - "qr/": 13, - "last_output_line": 6, - "any_output": 10, - "keep_context": 8, - "@before": 16, - "before_starts_at_line": 10, - "after": 18, - "number": 3, - "still": 4, - "res": 59, - "next_text": 8, - "has_lines": 4, - "scalar": 2, - "m/": 4, - "regex/": 9, - "next": 9, - "print_match_or_context": 13, - "elsif": 10, - "last": 17, - "max": 12, - "nmatches": 61, - "show_filename": 35, - "context_overall_output_count": 6, - "print_blank_line": 2, - "is_binary": 4, - "search_resource": 7, - "is_match": 7, - "starting_line_no": 1, - "match_start": 5, - "match_end": 3, - "Prints": 4, - "out": 2, - "context": 1, - "around": 5, - "match.": 3, - "opts": 2, - "array": 7, - "line_no": 12, - "show_column": 4, - "display_filename": 8, - "colored": 6, - "print_first_filename": 2, - "sep": 8, - "output_func": 8, - "print_separator": 2, - "print_filename": 2, - "display_line_no": 4, - "print_line_no": 2, - "regex/go": 2, - "regex/Term": 2, - "substr": 2, - "/eg": 2, - "z/": 2, - "K/": 2, - "z//": 2, - "print_column_no": 2, - "scope": 4, - "TOTAL_COUNT_SCOPE": 2, - "total_count": 10, - "get_total_count": 4, - "reset_total_count": 4, - "search_and_list": 8, - "Optimized": 1, - "version": 2, - "lines.": 3, - "ors": 11, - "record": 3, - "show_total": 6, - "print_count": 4, - "print_count0": 2, - "filetypes_supported_set": 9, - "True/False": 1, - "are": 24, - "print_files": 4, - "iter": 23, - "returned": 2, - "iterator": 3, - "<$regex>": 1, - "<$one>": 1, - "stop": 1, - "first.": 1, - "<$ors>": 1, - "<\"\\n\">": 1, - "defines": 1, - "what": 14, - "filename.": 1, - "print_files_with_matches": 4, - "where": 3, - "was": 2, - "repo": 18, - "Repository": 11, - "next_resource": 6, - "print_matches": 4, - "tarballs_work": 4, - ".tar": 2, - ".gz": 2, - "Tar": 4, - "XXX": 4, - "Error": 2, - "checking": 2, - "needs_line_scan": 14, - "reset": 5, - "filetype_setup": 4, - "Minor": 1, - "housekeeping": 1, - "before": 1, - "go": 1, - "expand_filenames": 7, - "reference": 8, - "expanded": 3, - "globs": 1, - "EXPAND_FILENAMES_SCOPE": 4, - "argv": 12, - "attr": 6, - "foreach": 4, - "pattern": 10, - "@results": 14, - "didn": 2, - "ve": 2, - "tried": 2, - "load": 2, - "GetAttributes": 2, - "end": 9, - "attributes": 4, - "got": 2, - "get_starting_points": 4, - "starting": 2, - "@what": 14, - "reslash": 4, - "Assume": 2, - "current": 5, - "start_point": 4, - "_match": 8, - "target": 6, - "invert_flag": 4, - "get_iterator": 4, - "Return": 2, - "starting_point": 10, - "g_regex": 4, - "file_filter": 12, - "g_regex/": 6, - "Maybe": 2, - "is_interesting": 4, - "descend_filter": 11, - "error_handler": 5, - "msg": 4, - "follow_symlinks": 6, - "set_up_pager": 3, - "Unable": 2, - "going": 1, - "pipe.": 1, - "exit_from_ack": 5, - "Exit": 1, - "application": 10, - "correct": 1, - "code.": 2, - "otherwise": 2, - "handed": 1, - "in": 29, - "argument.": 1, - "rc": 11, - "LICENSE": 3, - "Copyright": 2, - "Andy": 2, - "Lester.": 2, - "free": 3, - "software": 3, - "redistribute": 3, - "and/or": 3, - "modify": 3, - "terms": 3, - "Artistic": 2, - "License": 2, - "v2.0.": 2, - "End": 3, - "SHEBANG#!#! perl": 4, - "examples/benchmarks/fib.pl": 1, - "Fibonacci": 2, - "Benchmark": 1, - "DESCRIPTION": 4, - "Calculates": 1, - "Number": 1, - "<n>": 1, - "unspecified": 1, - "fib": 4, - "N": 2, - "SEE": 3, - "ALSO": 3, - "<examples/benchmarks/fib.pir>": 1, - "SHEBANG#!perl": 5, - "MAIN": 1, - "main": 3, - "env_is_usable": 3, - "th": 1, - "pt": 1, - "env": 76, - "@keys": 2, - "ACK_/": 1, - "@ENV": 1, - "load_colors": 1, - "ACK_SWITCHES": 1, - "Unbuffer": 1, - "mode": 1, - "build_regex": 3, - "nargs": 2, - "Resource": 5, - "file_matching": 2, - "check_regex": 2, - "like": 12, - "finder": 1, - "options": 7, - "FILE...": 1, - "DIRECTORY...": 1, - "designed": 1, - "replacement": 1, - "uses": 2, - "<grep>": 5, - "searches": 1, - "named": 3, - "input": 9, - "FILEs": 1, - "standard": 1, - "given": 10, - "PATTERN.": 1, - "By": 2, - "prints": 2, - "also": 7, - "would": 3, - "actually": 1, - "let": 1, - "take": 5, - "advantage": 1, - ".wango": 1, - "won": 1, - "throw": 1, - "away": 1, - "because": 3, - "times": 2, - "symlinks": 1, - "than": 5, - "whatever": 1, - "were": 1, - "specified": 3, - "line.": 4, - "default.": 2, - "item": 42, - "<REGEX>": 11, - "paths": 3, - "included": 1, - "search.": 1, - "entire": 2, - "matched": 1, - "against": 1, - "shell": 4, - "glob.": 1, - "<-i>": 5, - "<-w>": 2, - "<-v>": 3, - "<-Q>": 4, - "apply": 2, - "relative": 1, - "convenience": 1, - "shortcut": 2, - "<-f>": 6, - "<--group>": 2, - "<--nogroup>": 2, - "groups": 1, - "with.": 1, - "interactively.": 1, - "result": 1, - "per": 1, - "grep.": 2, - "redirected.": 1, - "<-H>": 1, - "<--with-filename>": 1, - "<-h>": 1, - "<--no-filename>": 1, - "Suppress": 1, - "prefixing": 1, - "multiple": 5, - "searched.": 1, - "<--help>": 1, - "short": 1, - "help": 2, - "statement.": 1, - "<--ignore-case>": 1, - "Ignore": 3, - "case": 3, - "strings.": 1, - "applies": 3, - "regexes": 3, - "<-g>": 5, - "<-G>": 3, - "options.": 4, - "<DIRNAME>": 2, - "etc": 2, - "May": 2, - "directories.": 2, - "mason": 1, - "users": 4, - "may": 3, - "wish": 1, - "include": 1, - "<--ignore-dir=data>": 1, - "<--noignore-dir>": 1, - "allows": 2, - "normally": 1, - "perhaps": 1, - "research": 1, - "<.svn/props>": 1, - "always": 5, - "simple": 2, - "name.": 1, - "Nested": 1, - "<foo/bar>": 1, - "NOT": 1, - "supported.": 1, - "You": 3, - "need": 3, - "specify": 1, - "<--ignore-dir=foo>": 1, - "then": 3, - "foo": 6, - "taken": 1, - "account": 1, - "explicitly": 1, - "<NUM>": 2, - "file.": 2, - "Multiple": 1, - "<--line>": 1, - "comma": 1, - "separated": 2, - "<--line=3,5,7>": 1, - "<--line=4-7>": 1, - "works.": 1, - "ascending": 1, - "order": 2, - "matter": 1, - "<-l>": 2, - "<--files-with-matches>": 1, - "instead": 4, - "text.": 1, - "<-L>": 1, - "<--files-without-matches>": 1, - "<NOT>": 2, - "equivalent": 2, - "specifying": 1, - "Specify": 1, - "explicitly.": 1, - "helpful": 2, - "don": 2, - "<program>": 1, - "via": 1, - "<ACK_PAGER>": 4, - "<ACK_PAGER_COLOR>": 4, - "environment": 2, - "variables.": 1, - "Using": 3, - "suppress": 3, - "grouping": 3, - "coloring": 3, - "piping": 3, - "does.": 2, - "<--passthru>": 1, - "whether": 1, - "they": 1, - "expression.": 1, - "Highlighting": 1, - "work": 1, - "though": 1, - "so": 3, - "highlight": 1, - "seeing": 1, - "tail": 1, - "/access.log": 1, - "<--print0>": 1, - "works": 1, - "conjunction": 1, - "null": 1, - "byte": 1, - "usual": 1, - "newline.": 1, - "dealing": 1, - "contain": 2, - "whitespace": 1, - "e.g.": 1, - "html": 1, - "xargs": 2, - "rm": 1, - "<--literal>": 1, - "Quote": 1, - "metacharacters": 2, - "treated": 1, - "literal.": 1, - "<-r>": 1, - "<-R>": 1, - "<--recurse>": 1, - "just": 2, - "here": 2, - "compatibility": 2, - "turning": 1, - "<--no-recurse>": 1, "off.": 1, - "<--smart-case>": 1, - "<--no-smart-case>": 1, - "strings": 1, - "contains": 1, - "uppercase": 1, - "characters.": 1, - "similar": 1, - "<smartcase>": 1, - "vim.": 1, - "overrides": 2, - "option.": 1, - "<--sort-files>": 1, - "Sorts": 1, - "Use": 6, - "your": 13, - "listings": 1, - "deterministic": 1, - "runs": 1, - "<--show-types>": 1, - "Outputs": 1, - "associates": 1, - "Works": 1, - "<--thpppt>": 1, - "Display": 1, - "important": 1, - "Bill": 1, - "Cat": 1, - "logo.": 1, - "Note": 4, - "exact": 1, - "spelling": 1, - "<--thpppppt>": 1, - "important.": 1, - "make": 3, - "perl": 8, - "php": 2, - "python": 1, - "looks": 1, - "location.": 1, - "variable": 1, - "specifies": 1, - "placed": 1, - "front": 1, - "explicit": 1, - "Specifies": 4, - "recognized": 1, - "clear": 2, - "dark": 1, - "underline": 1, - "underscore": 2, - "blink": 1, - "reverse": 1, - "concealed": 1, - "red": 1, - "blue": 1, - "magenta": 1, - "on_black": 1, - "on_red": 1, - "on_green": 1, - "on_blue": 1, - "on_magenta": 1, - "on_cyan": 1, + "on": 24, "on_white.": 1, - "Case": 1, - "significant.": 1, - "Underline": 1, - "reset.": 1, - "alone": 1, - "sets": 4, - "foreground": 1, - "on_color": 1, - "background": 1, - "color.": 2, - "<--color-filename>": 1, - "printed": 1, - "<--color>": 1, - "mode.": 1, - "<--color-lineno>": 1, - "See": 1, - "<ACK_COLOR_FILENAME>": 1, - "specifications.": 1, - "such": 5, - "<more>": 1, - "<less>": 1, - "<most>": 1, - "send": 1, - "output.": 1, - "except": 1, - "assume": 1, - "support": 2, - "both": 1, - "understands": 1, - "sequences.": 1, - "never": 1, - "back": 3, - "ACK": 2, - "OTHER": 1, - "TOOLS": 1, - "Vim": 3, - "integration": 3, - "integrates": 1, - "easily": 2, - "editor.": 1, - "<.vimrc>": 1, - "grepprg": 1, - "That": 3, - "examples": 1, - "<-a>": 1, - "flags.": 1, - "Now": 1, - "step": 1, - "Dumper": 1, - "perllib": 1, - "Emacs": 1, - "Phil": 1, - "Jackson": 1, - "put": 1, - "together": 1, - "an": 11, - "<ack.el>": 1, - "extension": 1, - "<http://www.shellarchive.co.uk/content/emacs.html>": 1, - "TextMate": 2, - "Pedro": 1, - "Melo": 1, - "who": 1, - "writes": 1, - "Shell": 2, - "Code": 1, - "greater": 1, - "normal": 1, - "code": 7, - "<$?=256>": 1, - "<system>": 1, - "backticks.": 1, - "errors": 1, - "used.": 1, - "at": 3, - "least": 1, - "returned.": 1, - "DEBUGGING": 1, - "PROBLEMS": 1, - "gives": 2, - "re": 3, - "expecting": 1, - "forgotten": 1, - "<--noenv>": 1, - "<.ackrc>": 1, - "remember.": 1, - "Put": 1, - "definitions": 1, - "it.": 1, - "smart": 1, - "too.": 1, - "there.": 1, - "working": 1, - "big": 1, - "codesets": 1, - "more": 2, - "create": 2, - "tree": 2, - "ideal": 1, - "sending": 1, - "<xargs>": 1, - "prefer": 1, - "doubt": 1, - "day": 1, - "find": 1, - "trouble": 1, - "spots": 1, - "website": 1, - "visitor.": 1, - "had": 1, - "problem": 1, - "loading": 1, - "<troublesome.gif>": 1, - "took": 1, - "access": 2, - "log": 3, - "scanned": 1, - "twice.": 1, - "aa.bb.cc.dd": 1, - "/path/to/access.log": 1, - "B5": 1, - "troublesome.gif": 1, - "first": 1, - "finds": 2, - "Apache": 2, - "IP.": 1, - "second": 1, - "troublesome": 1, - "GIF": 1, - "shows": 1, - "previous": 1, - "five": 1, - "case.": 1, - "Share": 1, - "knowledge": 1, - "Join": 1, - "mailing": 1, - "list.": 1, - "Send": 1, - "me": 1, - "tips": 1, - "here.": 1, - "FAQ": 1, - "Why": 2, - "isn": 1, - "doesn": 8, - "behavior": 3, - "driven": 1, - "filetype.": 1, - "<If>": 1, - "kind": 1, - "ignores": 1, - "switch": 1, - "you.": 1, - "source": 2, - "compiled": 1, - "object": 6, - "control": 1, - "metadata": 1, - "wastes": 1, - "lot": 1, - "time": 3, - "those": 2, - "well": 2, - "returning": 1, - "things": 1, - "great": 1, - "did": 1, - "replace": 3, - "read": 6, - "only.": 1, - "has": 2, - "perfectly": 1, - "good": 2, - "way": 2, - "using": 2, - "<-p>": 1, - "<-n>": 1, - "switches.": 1, - "certainly": 2, - "select": 1, - "update.": 1, - "change": 1, - "PHP": 1, - "Unix": 1, - "Can": 1, - "recognize": 1, - "<.xyz>": 1, - "already": 2, - "program/package": 1, - "called": 3, - "ack.": 2, - "Yes": 1, - "know.": 1, - "nothing": 1, - "suggest": 1, - "symlink": 1, - "points": 1, - "<ack-grep>": 1, - "crucial": 1, - "benefits": 1, - "having": 1, - "Regan": 1, - "Slaven": 1, - "ReziE": 1, - "<0x107>": 1, - "Mark": 1, - "Stosberg": 1, - "David": 1, - "Alan": 1, - "Pisoni": 1, - "Adriano": 1, - "Ferreira": 1, - "James": 1, - "Keenan": 1, - "Leland": 1, - "Johnson": 1, - "Ricardo": 1, - "Signes": 1, - "Pete": 1, - "Krawczyk.": 1, - "files_defaults": 3, - "skip_dirs": 3, - "CORE": 3, - "curdir": 1, - "updir": 1, - "__PACKAGE__": 1, - "parms": 15, - "@queue": 8, - "_setup": 2, - "fullpath": 12, - "splice": 2, - "local": 5, - "wantarray": 3, - "_candidate_files": 2, - "sort_standard": 2, - "cmp": 2, - "sort_reverse": 1, - "@parts": 3, - "passed_parms": 6, - "copy": 4, - "parm": 1, - "hash": 11, - "badkey": 1, - "caller": 2, - "start": 6, - "dh": 4, - "opendir": 1, - "@newfiles": 5, - "sort_sub": 4, - "readdir": 1, - "has_stat": 3, - "catdir": 3, - "closedir": 1, - "<?xml>": 1, - "these": 1, - "updated": 1, - "update": 1, - "message": 1, - "bak": 1, - "core": 1, - "swp": 1, - "min": 3, - "js": 1, - "1": 1, - "str": 12, - "regex_is_lc": 2, - "S": 1, - ".*//": 1, - "_my_program": 3, - "Basename": 2, - "FAIL": 12, - "Carp": 11, - "confess": 2, - "@ISA": 2, - "class": 8, - "self": 141, - "bless": 7, - "could_be_binary": 4, - "opened": 1, - "id": 6, - "*STDIN": 2, - "size": 5, - "_000": 1, - "buffer": 9, - "sysread": 1, - "regex/m": 1, - "seek": 4, - "readline": 1, - "nexted": 3, - "CGI": 5, - "Fast": 3, - "XML": 2, - "Hash": 11, - "XS": 2, - "FindBin": 1, - "Bin": 3, - "#use": 1, - "lib": 2, - "_stop": 4, - "request": 11, - "SIG": 3, - "nginx": 2, - "external": 2, - "fcgi": 2, - "Ext_Request": 1, - "FCGI": 1, - "Request": 11, - "*STDERR": 1, - "int": 2, - "ARGV": 2, - "conv": 2, - "use_attr": 1, - "indent": 1, - "xml_decl": 1, - "tmpl_path": 2, - "tmpl": 5, - "data": 3, - "nick": 1, - "parent": 5, - "third_party": 1, - "artist_name": 2, - "venue": 2, - "event": 2, - "date": 2, - "zA": 1, - "Z0": 1, - "Content": 2, - "application/xml": 1, - "charset": 2, - "utf": 2, - "hash2xml": 1, - "text/html": 1, - "nError": 1, - "M": 1, - "system": 1, - "Foo": 11, - "Bar": 1, - "@array": 1, - "Plack": 25, - "_001": 1, - "HTTP": 16, - "Headers": 8, - "MultiValue": 9, - "Body": 2, - "Upload": 2, - "TempBuffer": 2, - "URI": 11, - "Escape": 6, - "_deprecated": 8, - "alt": 1, - "method": 7, - "carp": 2, - "croak": 3, - "required": 2, - "address": 2, - "REMOTE_ADDR": 1, - "remote_host": 2, - "REMOTE_HOST": 1, - "protocol": 1, - "SERVER_PROTOCOL": 1, - "REQUEST_METHOD": 1, - "port": 1, - "SERVER_PORT": 2, - "REMOTE_USER": 1, - "request_uri": 1, - "REQUEST_URI": 2, - "path_info": 4, - "PATH_INFO": 3, - "script_name": 1, - "SCRIPT_NAME": 2, - "scheme": 3, - "secure": 2, - "body": 30, - "content_length": 4, - "CONTENT_LENGTH": 3, - "content_type": 5, - "CONTENT_TYPE": 2, - "session": 1, - "session_options": 1, - "logger": 1, - "cookies": 9, - "HTTP_COOKIE": 3, - "@pairs": 2, - "pair": 4, - "uri_unescape": 1, - "query_parameters": 3, - "uri": 11, - "query_form": 2, - "content": 8, - "_parse_request_body": 4, - "cl": 10, - "raw_body": 1, - "headers": 56, - "field": 2, - "HTTPS": 1, - "_//": 1, - "CONTENT": 1, - "COOKIE": 1, - "content_encoding": 5, - "referer": 3, - "user_agent": 3, - "body_parameters": 3, - "parameters": 8, - "query": 4, - "flatten": 3, - "uploads": 5, - "hostname": 1, - "url_scheme": 1, - "params": 1, - "query_params": 1, - "body_params": 1, - "cookie": 6, - "param": 8, - "get_all": 2, - "upload": 13, - "raw_uri": 1, - "base": 10, - "path_query": 1, - "_uri_base": 3, - "path_escape_class": 2, - "uri_escape": 3, - "QUERY_STRING": 3, - "canonical": 2, - "HTTP_HOST": 1, - "SERVER_NAME": 1, - "new_response": 4, - "Response": 16, - "ct": 3, - "cleanup": 1, - "spin": 2, - "chunk": 4, - "length": 1, - "rewind": 1, - "from_mixed": 2, - "@uploads": 3, - "@obj": 3, - "_make_upload": 2, - "__END__": 2, - "Portable": 2, - "PSGI": 6, - "app_or_middleware": 1, - "req": 28, - "finalize": 5, - "<Plack::Request>": 2, - "provides": 1, - "consistent": 1, - "API": 2, - "objects": 2, - "across": 1, - "web": 5, - "server": 1, - "environments.": 1, - "CAVEAT": 1, - "module": 2, - "intended": 1, - "middleware": 1, - "developers": 3, - "framework": 2, - "rather": 2, - "Writing": 1, - "directly": 1, - "possible": 1, - "recommended": 1, - "yet": 1, - "too": 1, - "low": 1, - "level.": 1, - "encouraged": 1, - "frameworks": 2, - "<http://plackperl.org/#frameworks>": 1, - "modules": 1, - "<HTTP::Engine>": 1, - "provide": 1, - "higher": 1, - "level": 1, - "top": 1, - "PSGI.": 1, - "METHODS": 2, - "Some": 1, - "methods": 3, - "earlier": 1, - "versions": 1, - "deprecated": 1, - "Take": 1, - "</\"INCOMPATIBILITIES\">": 1, - "Unless": 1, - "noted": 1, - "<read-only>": 1, - "passing": 1, - "values": 5, - "accessor": 1, - "debug": 1, - "set.": 1, - "<HTTP::Headers>": 2, - "request.": 1, - "uploads.": 2, - "<Hash::MultiValue>": 2, - "<Plack::Request::Upload>": 1, - "objects.": 1, - "Shortcut": 6, - "content_encoding.": 1, - "content_length.": 1, - "content_type.": 1, - "header.": 2, - "referer.": 1, - "user_agent.": 1, - "GET": 1, - "POST": 1, - "CGI.pm": 2, - "compatible": 1, - "method.": 1, - "alternative": 1, - "accessing": 1, - "parameters.": 3, - "Unlike": 1, - "<not>": 1, - "allow": 1, - "setting": 1, - "modifying": 1, - "@values": 1, - "@params": 1, - "convenient": 1, - "@fields": 1, - "Creates": 2, - "<Plack::Response>": 3, - "object.": 4, - "Handy": 1, - "remove": 2, - "dependency": 1, - "easy": 1, - "subclassing": 1, - "duck": 1, - "typing": 1, - "overriding": 1, - "generation": 1, - "middlewares.": 1, - "Parameters": 1, - "<parameters>": 1, - "<query_parameters>": 1, - "<body_parameters>": 1, - "<uploads>": 1, - "store": 1, - "means": 2, - "plain": 2, - "<always>": 1, - "scalars": 1, - "references": 1, - "ARRAY": 1, - "parse": 1, - "twice": 1, - "efficiency.": 1, - "DISPATCHING": 1, - "wants": 1, - "dispatch": 1, - "route": 1, - "actions": 1, - "based": 1, - "sure": 1, - "<path_info>": 1, - "virtual": 1, - "regardless": 1, - "how": 1, - "mounted.": 1, - "hosted": 1, - "mod_perl": 1, - "scripts": 1, - "multiplexed": 1, - "tools": 1, - "<Plack::App::URLMap>": 1, - "idea": 1, - "subclass": 1, - "define": 1, - "uri_for": 2, - "args": 3, - "So": 1, - "say": 1, - "link": 1, - "signoff": 1, - "</app>": 1, - "empty.": 1, - "older": 1, - "call": 1, - "instead.": 1, - "Cookie": 2, - "handling": 1, - "simplified": 1, - "string": 5, - "encoding": 2, - "decoding": 1, - "totally": 1, - "up": 1, - "framework.": 1, - "Also": 1, - "<cookies>": 1, - "now": 1, - "<strings>": 1, - "Simple": 1, - "longer": 1, - "have": 2, - "write": 1, - "wacky": 1, - "simply": 1, - "AUTHORS": 1, - "Tatsuhiko": 2, - "Miyagawa": 2, - "Kazuhiro": 1, - "Osawa": 1, - "Tokuhiro": 2, - "Matsuno": 2, - "<HTTP::Request>": 1, - "<Catalyst::Request>": 1, - "library": 1, - "same": 1, - "Util": 3, - "Accessor": 1, - "status": 17, - "Scalar": 2, - "location": 4, - "redirect": 1, - "url": 2, - "clone": 1, - "_finalize_cookies": 2, - "/chr": 1, - "/ge": 1, - "LWS": 1, - "single": 1, - "SP": 1, - "//g": 1, - "CR": 1, - "LF": 1, - "since": 1, - "char": 1, - "invalid": 1, - "header_field_names": 1, - "_body": 2, - "blessed": 1, - "overload": 1, - "Method": 1, - "_bake_cookie": 2, - "push_header": 1, - "@cookie": 7, - "domain": 3, - "_date": 2, - "expires": 7, - "httponly": 1, - "@MON": 1, - "Jan": 1, - "Feb": 1, - "Mar": 1, - "Apr": 1, - "Jun": 1, - "Jul": 1, - "Aug": 1, - "Sep": 1, - "Oct": 1, - "Nov": 1, - "Dec": 1, - "@WDAY": 1, - "Sun": 1, - "Mon": 1, - "Tue": 1, - "Wed": 1, - "Thu": 1, - "Fri": 1, - "Sat": 1, - "sec": 2, - "hour": 2, - "mday": 2, - "mon": 2, - "year": 3, - "wday": 2, - "gmtime": 1, - "sprintf": 1, - "WDAY": 1, - "MON": 1, - "response": 5, - "psgi_handler": 1, - "API.": 1, - "over": 1, - "Sets": 2, - "gets": 2, - "<code>": 1, - "alias.": 2, - "response.": 1, - "Setter": 2, - "either": 2, - "headers.": 1, - "body_str": 1, - "io": 1, - "body.": 1, - "IO": 1, - "Handle": 1, - "<content>": 1, - "X": 2, + "}": 1134, + "<=>": 2, + "starting_point": 10, + "need": 3, + "Plugin": 2, + "ors": 11, + "about": 3, + "will": 7, + "non": 2, + "ACK_COLOR_LINENO": 4, + "g/": 2, + "<--noignore-dir>": 1, + "set": 11, + "xml=": 1, "text/plain": 1, - "gzip": 1, - "normalize": 1, - "string.": 1, - "Users": 1, - "responsible": 1, - "properly": 1, - "<Location>": 1, - "names": 1, - "their": 1, - "corresponding": 1, - "<value>": 2, - "everything": 1, - "<domain>": 1, - "<expires>": 2, - "<path>": 1, - "<httponly>": 1, - "<secure>": 1, - "integer": 1, - "epoch": 1, - "<does>": 1, - "convert": 1, - "formats": 1, - "<+3M>": 1, - "reference.": 1, - "AUTHOR": 1 - }, - "PHP": { - "<": 11, - "php": 12, - "namespace": 28, - "Symfony": 24, - "Component": 24, - "Console": 17, - ";": 1383, - "use": 23, - "Input": 6, - "InputInterface": 4, - "ArgvInput": 2, - "ArrayInput": 3, - "InputDefinition": 2, - "InputOption": 15, - "InputArgument": 3, - "Output": 5, - "OutputInterface": 6, - "ConsoleOutput": 2, - "ConsoleOutputInterface": 2, - "Command": 6, - "HelpCommand": 2, - "ListCommand": 2, - "Helper": 3, - "HelperSet": 3, - "FormatterHelper": 2, - "DialogHelper": 2, - "class": 21, - "Application": 3, - "{": 974, - "private": 24, - "commands": 39, - "wantHelps": 4, - "false": 154, - "runningCommand": 5, - "name": 181, - "version": 8, - "catchExceptions": 4, - "autoExit": 4, - "definition": 3, - "helperSet": 6, - "public": 202, - "function": 205, - "__construct": 8, - "(": 2416, - ")": 2417, - "this": 928, - "-": 1271, - "true": 133, - "array": 296, - "getDefaultHelperSet": 2, - "getDefaultInputDefinition": 2, - "foreach": 94, - "getDefaultCommands": 2, - "as": 96, - "command": 41, - "add": 7, - "}": 972, - "run": 4, - "input": 20, - "null": 164, - "output": 60, - "if": 450, - "new": 74, - "try": 3, - "statusCode": 14, - "doRun": 2, - "catch": 3, - "Exception": 1, - "e": 18, - "throw": 19, - "instanceof": 8, - "renderException": 3, - "getErrorOutput": 2, - "else": 70, - "getCode": 1, - "is_numeric": 7, - "&&": 119, - "exit": 7, - "return": 305, - "getCommandName": 2, - "hasParameterOption": 7, - "setDecorated": 2, - "elseif": 31, - "setInteractive": 2, - "function_exists": 4, - "getHelperSet": 3, - "has": 7, - "inputStream": 2, - "get": 12, - "getInputStream": 1, - "posix_isatty": 1, - "setVerbosity": 2, - "VERBOSITY_QUIET": 1, - "VERBOSITY_VERBOSE": 2, - "writeln": 13, - "getLongVersion": 3, - "find": 17, - "setHelperSet": 1, - "getDefinition": 2, - "getHelp": 2, - "messages": 16, - "sprintf": 27, - "getOptions": 1, - "option": 5, - "[": 672, - "]": 672, - ".": 169, - "getName": 14, - "getShortcut": 2, - "getDescription": 3, - "implode": 8, - "PHP_EOL": 3, - "setCatchExceptions": 1, - "boolean": 4, - "Boolean": 4, - "setAutoExit": 1, - "setName": 1, - "getVersion": 3, - "setVersion": 1, - "register": 1, - "addCommands": 1, - "setApplication": 2, - "isEnabled": 1, - "getAliases": 3, - "alias": 87, - "isset": 101, - "InvalidArgumentException": 9, - "helpCommand": 3, - "setCommand": 1, - "getNamespaces": 3, - "namespaces": 4, - "extractNamespace": 7, - "array_values": 5, - "array_unique": 4, - "array_filter": 2, - "findNamespace": 4, - "allNamespaces": 3, - "n": 12, - "explode": 9, - "found": 4, - "i": 36, - "part": 10, - "abbrevs": 31, - "static": 6, - "getAbbreviations": 4, - "array_map": 2, - "p": 3, - "message": 12, - "<=>": 3, - "alternatives": 10, - "findAlternativeNamespace": 2, - "count": 32, - "getAbbreviationSuggestions": 4, - "searchName": 13, - "pos": 3, - "strrpos": 2, - "substr": 6, - "namespace.substr": 1, - "suggestions": 2, - "aliases": 8, - "findAlternativeCommands": 2, - "all": 11, - "substr_count": 1, - "+": 12, - "names": 3, - "for": 8, - "len": 11, - "strlen": 14, - "abbrev": 4, - "asText": 1, - "raw": 2, - "width": 7, - "sortCommands": 4, - "space": 5, - "space.": 1, - "asXml": 2, - "asDom": 2, - "dom": 12, - "DOMDocument": 2, - "formatOutput": 1, - "appendChild": 10, - "xml": 5, - "createElement": 6, - "commandsXML": 3, - "setAttribute": 2, - "namespacesXML": 3, - "namespaceArrayXML": 4, - "continue": 7, - "commandXML": 3, - "createTextNode": 1, - "node": 42, - "getElementsByTagName": 1, - "item": 9, - "importNode": 3, - "saveXml": 1, + "here.": 1, + "modify": 3, + "redirected.": 1, + "references": 1, + "<content>": 1, + "forgotten": 1, + "rewind": 1, + "literal.": 1, + "except": 1, + "ada": 4, "string": 5, - "encoding": 2, - "mb_detect_encoding": 1, - "mb_strlen": 1, - "do": 2, - "title": 3, - "get_class": 4, - "getTerminalWidth": 3, - "PHP_INT_MAX": 1, - "lines": 3, - "preg_split": 1, - "getMessage": 1, - "line": 10, - "str_split": 1, - "max": 2, - "str_repeat": 2, - "title.str_repeat": 1, - "line.str_repeat": 1, - "message.": 1, - "getVerbosity": 1, - "trace": 12, - "getTrace": 1, - "array_unshift": 2, - "getFile": 2, - "getLine": 2, - "type": 62, - "file": 3, - "while": 6, - "getPrevious": 1, - "getSynopsis": 1, - "protected": 59, - "defined": 5, - "ansicon": 4, - "getenv": 2, - "preg_replace": 4, - "preg_match": 6, - "getSttyColumns": 3, - "match": 4, - "getTerminalHeight": 1, - "trim": 3, - "getFirstArgument": 1, - "REQUIRED": 1, - "VALUE_NONE": 7, - "descriptorspec": 2, - "process": 10, - "proc_open": 1, - "pipes": 4, - "is_resource": 1, - "info": 5, - "stream_get_contents": 1, - "fclose": 2, - "proc_close": 1, - "namespacedCommands": 5, - "key": 64, - "ksort": 2, - "&": 19, - "limit": 3, - "parts": 4, - "array_pop": 1, - "array_slice": 1, - "callback": 5, - "findAlternatives": 3, - "collection": 3, - "call_user_func": 2, - "lev": 6, - "levenshtein": 2, - "3": 1, - "strpos": 15, - "values": 53, - "/": 1, - "||": 52, - "value": 53, - "asort": 1, - "array_keys": 7, - "BrowserKit": 1, - "DomCrawler": 5, - "Crawler": 2, - "Link": 3, - "Form": 4, - "Process": 1, - "PhpProcess": 2, - "abstract": 2, - "Client": 1, - "history": 15, - "cookieJar": 9, - "server": 20, - "request": 76, - "response": 33, - "crawler": 7, - "insulated": 7, - "redirect": 6, - "followRedirects": 5, - "History": 2, - "CookieJar": 2, - "setServerParameters": 2, - "followRedirect": 4, - "insulate": 1, - "class_exists": 2, - "RuntimeException": 2, - "array_merge": 32, - "setServerParameter": 1, - "getServerParameter": 1, - "default": 9, - "getHistory": 1, - "getCookieJar": 1, - "getCrawler": 1, - "getResponse": 1, - "getRequest": 1, - "click": 1, - "link": 10, - "submit": 2, - "getMethod": 6, - "getUri": 8, - "form": 7, - "setValues": 2, - "getPhpValues": 2, - "getPhpFiles": 2, - "method": 31, - "uri": 23, - "parameters": 4, - "files": 7, - "content": 4, - "changeHistory": 4, - "getAbsoluteUri": 2, - "isEmpty": 2, - "current": 4, - "parse_url": 3, - "PHP_URL_HOST": 1, - "PHP_URL_SCHEME": 1, - "Request": 3, - "allValues": 1, - "filterRequest": 2, - "doRequestInProcess": 2, - "doRequest": 2, - "filterResponse": 2, - "updateFromResponse": 1, - "getHeader": 2, - "createCrawlerFromContent": 2, - "getContent": 2, - "getScript": 2, - "sys_get_temp_dir": 2, - "isSuccessful": 1, - "getOutput": 3, - "unserialize": 1, - "LogicException": 4, - "addContent": 1, - "back": 2, - "requestFromRequest": 4, - "forward": 2, - "reload": 1, - "empty": 96, - "restart": 1, - "clear": 2, - "currentUri": 7, - "path": 20, - "PHP_URL_PATH": 1, - "path.": 1, - "getParameters": 1, - "getFiles": 3, - "getServer": 1, - "<?php>": 3, - "CakePHP": 6, - "tm": 6, - "Rapid": 2, - "Development": 2, - "Framework": 2, - "http": 14, - "cakephp": 4, - "org": 10, - "Copyright": 5, - "2005": 4, - "2012": 4, - "Cake": 7, - "Software": 5, - "Foundation": 4, - "Inc": 4, - "cakefoundation": 4, - "Licensed": 2, - "under": 2, - "The": 4, - "MIT": 4, - "License": 4, - "Redistributions": 2, - "of": 10, - "must": 2, - "retain": 2, - "the": 11, - "above": 2, - "copyright": 5, - "notice": 2, - "Project": 2, - "package": 2, - "Controller": 4, - "since": 2, - "v": 17, - "0": 4, - "2": 2, - "9": 1, - "license": 6, - "www": 4, - "opensource": 2, - "licenses": 2, - "mit": 2, - "App": 20, - "uses": 46, - "CakeResponse": 2, - "Network": 1, - "ClassRegistry": 9, - "Utility": 6, - "ComponentCollection": 2, - "View": 9, - "CakeEvent": 13, - "Event": 6, - "CakeEventListener": 4, - "CakeEventManager": 5, - "controller": 3, - "organization": 1, - "business": 1, - "logic": 1, - "Provides": 1, - "basic": 1, - "functionality": 1, - "such": 1, - "rendering": 1, - "views": 1, - "inside": 1, - "layouts": 1, - "automatic": 1, - "model": 34, - "availability": 1, - "redirection": 2, - "callbacks": 4, - "and": 5, - "more": 1, - "Controllers": 2, - "should": 1, - "provide": 1, - "a": 11, - "number": 1, - "action": 7, - "methods": 5, - "These": 1, - "are": 5, - "on": 4, - "that": 2, - "not": 2, - "prefixed": 1, - "with": 5, - "_": 1, - "Each": 1, - "serves": 1, - "an": 1, - "endpoint": 1, - "performing": 2, - "specific": 1, - "resource": 1, - "or": 9, - "resources": 1, - "For": 2, - "example": 2, - "adding": 1, - "editing": 1, - "object": 14, - "listing": 1, - "set": 26, - "objects": 5, - "You": 2, - "can": 2, - "access": 1, - "using": 2, - "contains": 1, - "POST": 1, - "GET": 1, - "FILES": 1, - "*": 25, - "were": 1, - "request.": 1, - "After": 1, - "required": 2, - "actions": 2, - "controllers": 2, - "responsible": 1, - "creating": 1, - "response.": 2, - "This": 1, - "usually": 1, - "takes": 1, - "generated": 1, - "possibly": 1, - "to": 6, - "another": 1, - "action.": 1, - "In": 1, - "either": 1, - "case": 31, - "allows": 1, - "you": 1, - "manipulate": 1, - "aspects": 1, - "created": 8, - "by": 2, - "Dispatcher": 1, - "based": 2, - "routing.": 1, - "By": 1, - "conventional": 1, - "names.": 1, - "/posts/index": 1, - "maps": 1, - "PostsController": 1, - "index": 5, - "re": 1, - "map": 1, - "urls": 1, - "Router": 5, - "connect": 1, - "@package": 2, - "Cake.Controller": 1, - "@property": 8, - "AclComponent": 1, - "Acl": 1, - "AuthComponent": 1, - "Auth": 1, - "CookieComponent": 1, - "Cookie": 1, - "EmailComponent": 1, - "Email": 1, - "PaginatorComponent": 1, - "Paginator": 1, - "RequestHandlerComponent": 1, - "RequestHandler": 1, - "SecurityComponent": 1, - "Security": 1, - "SessionComponent": 1, - "Session": 1, - "@link": 2, - "//book.cakephp.org/2.0/en/controllers.html": 1, - "*/": 2, - "extends": 3, - "Object": 4, - "implements": 3, - "helpers": 1, - "_responseClass": 1, - "viewPath": 3, - "layoutPath": 1, - "viewVars": 3, - "view": 5, - "layout": 5, - "autoRender": 6, - "autoLayout": 2, - "Components": 7, - "components": 1, - "viewClass": 10, - "ext": 1, - "plugin": 31, - "cacheAction": 1, - "passedArgs": 2, - "scaffold": 2, - "modelClass": 25, - "modelKey": 2, - "validationErrors": 50, - "_mergeParent": 4, - "_eventManager": 12, - "Inflector": 12, - "singularize": 4, - "underscore": 3, - "childMethods": 2, - "get_class_methods": 2, - "parentMethods": 2, - "array_diff": 3, - "CakeRequest": 5, - "setRequest": 2, - "parent": 14, - "__isset": 2, - "switch": 6, - "is_array": 37, - "list": 29, - "pluginSplit": 12, - "loadModel": 3, - "__get": 2, - "params": 34, - "load": 3, - "settings": 2, - "__set": 1, - "camelize": 3, - "array_key_exists": 11, - "invokeAction": 1, - "ReflectionMethod": 2, - "_isPrivateAction": 2, - "PrivateActionException": 1, - "invokeArgs": 1, - "ReflectionException": 1, - "_getScaffold": 2, - "MissingActionException": 1, - "privateAction": 4, - "isPublic": 1, - "in_array": 26, - "prefixes": 4, - "prefix": 2, - "Scaffold": 1, - "_mergeControllerVars": 2, - "pluginController": 9, - "pluginDot": 4, - "mergeParent": 2, - "is_subclass_of": 3, - "pluginVars": 3, - "appVars": 6, - "merge": 12, - "_mergeVars": 5, - "get_class_vars": 2, - "_mergeUses": 3, - "implementedEvents": 2, - "constructClasses": 1, - "init": 4, - "getEventManager": 13, - "attach": 4, - "startupProcess": 1, - "dispatch": 11, - "shutdownProcess": 1, - "httpCodes": 3, - "code": 4, - "id": 82, - "MissingModelException": 1, - "url": 18, - "status": 15, - "extract": 9, - "EXTR_OVERWRITE": 3, - "event": 35, - "//TODO": 1, - "Remove": 1, - "following": 1, - "when": 1, - "events": 1, - "fully": 1, - "migrated": 1, - "break": 19, - "breakOn": 4, - "collectReturn": 1, - "isStopped": 4, - "result": 21, - "_parseBeforeRedirect": 2, - "session_write_close": 1, - "header": 3, - "is_string": 7, - "codes": 3, - "array_flip": 1, - "send": 1, - "_stop": 1, - "resp": 6, - "compact": 8, - "one": 19, - "two": 6, - "data": 187, - "array_combine": 2, - "setAction": 1, - "args": 5, - "func_get_args": 5, - "unset": 22, - "call_user_func_array": 3, - "validate": 9, - "errors": 9, - "validateErrors": 1, - "invalidFields": 2, - "render": 3, - "className": 27, - "models": 6, - "keys": 19, - "currentModel": 2, - "currentObject": 6, - "getObject": 1, - "is_a": 1, - "location": 1, - "body": 1, - "referer": 5, - "local": 2, - "disableCache": 2, - "flash": 1, - "pause": 2, - "postConditions": 1, - "op": 9, - "bool": 5, - "exclusive": 2, - "cond": 5, - "arrayOp": 2, - "fields": 60, - "field": 88, - "fieldOp": 11, - "strtoupper": 3, - "paginate": 3, - "scope": 2, - "whitelist": 14, - "beforeFilter": 1, - "beforeRender": 1, - "beforeRedirect": 1, - "afterFilter": 1, - "beforeScaffold": 2, - "_beforeScaffold": 1, - "afterScaffoldSave": 2, - "_afterScaffoldSave": 1, - "afterScaffoldSaveError": 2, - "_afterScaffoldSaveError": 1, - "scaffoldError": 2, - "_scaffoldError": 1, - "php_help": 1, - "arg": 1, - "t": 26, - "php_permission": 1, - "TRUE": 1, - "php_eval": 1, - "global": 2, - "theme_path": 5, - "theme_info": 3, - "conf": 2, - "old_theme_path": 2, - "drupal_get_path": 1, - "dirname": 1, - "filename": 1, - "ob_start": 1, - "print": 1, - "eval": 1, - "ob_get_contents": 1, - "ob_end_clean": 1, - "_php_filter_tips": 1, - "filter": 1, - "format": 3, - "long": 2, - "FALSE": 2, - "base_url": 1, - "php_filter_info": 1, - "filters": 2, - "Field": 9, - "FormField": 3, - "ArrayAccess": 1, - "button": 6, - "DOMNode": 3, - "initialize": 2, - "getFormNode": 1, - "getValues": 3, - "isDisabled": 2, - "FileFormField": 3, - "hasValue": 1, - "getValue": 2, - "qs": 4, - "http_build_query": 3, - "parse_str": 2, - "queryString": 2, - "sep": 1, - "sep.": 1, - "getRawUri": 1, - "getAttribute": 10, - "remove": 4, - "offsetExists": 1, - "offsetGet": 1, - "offsetSet": 1, - "offsetUnset": 1, - "setNode": 1, - "nodeName": 13, - "parentNode": 1, - "FormFieldRegistry": 2, - "document": 6, - "root": 4, - "xpath": 2, - "DOMXPath": 1, - "query": 102, - "hasAttribute": 1, - "InputFormField": 2, - "ChoiceFormField": 2, - "addChoice": 1, - "TextareaFormField": 1, - "base": 8, - "segments": 13, - "getSegments": 4, - "target": 20, - "array_shift": 5, - "self": 1, - "create": 13, - "k": 7, - "setValue": 1, - "walk": 3, - "registry": 4, - "m": 5, - "relational": 2, - "mapper": 2, - "DBO": 2, - "backed": 2, - "mapping": 1, - "database": 2, - "tables": 5, + "opened": 1, + "sure": 1, + "end": 9, + "troublesome.gif": 1, + "g_regex/": 6, + ".": 121, + "Resource": 5, + "splice": 2, + "ACK_PAGER": 5, + "filetypes_supported_set": 9, + "Put": 1, + "ALSO": 3, + "ext": 14, + "||": 49, + "array": 7, + "each": 14, + "recurse": 2, + "nexted": 3, + "remember.": 1, + "<": 15, + "editor.": 1, + "Some": 1, + "per": 1, + "K/": 2, + ".//": 2, + "Type": 2, + "Sort": 2, + "replacement": 1, + "regardless": 1, + "integer": 1, + "yml": 2, + "psgi_handler": 1, + "wish": 1, + "mounted.": 1, + "needs_line_scan": 14, + "lua": 2, + "<$?=256>": 1, + "dependency": 1, + "ACK_PAGER_COLOR": 7, + "benefits": 1, + "flatten": 3, + "store": 1, + "quotemeta": 5, + "get_total_count": 4, + "X": 2, + "single": 1, + "logo.": 1, + "taken": 1, + "Highlighting": 1, + "qw": 35, + "intended": 1, + "FILE...": 1, + "<system>": 1, + "self": 141, + "REGEX.": 2, + "reslash": 4, + "<http://www.shellarchive.co.uk/content/emacs.html>": 1, + "equivalent": 2, + "query_form": 2, + "f": 25, + "//": 9, + "This": 24, + "s*#/": 2, + "@WDAY": 1, + "<--sort-files>": 1, + "perl": 8, + "USERPROFILE": 2, + "alone": 1, + "<troublesome.gif>": 1, + "whether": 1, + "*STDERR": 1, + "undef": 17, + "filetypes": 8, + "/ge": 1, + "t": 18, + "Foo": 11, "PHP": 1, - "versions": 1, - "5": 1, - "Model": 5, - "10": 1, - "Validation": 1, - "String": 5, - "Set": 9, - "BehaviorCollection": 2, - "ModelBehavior": 1, - "ConnectionManager": 2, - "Xml": 2, - "Automatically": 1, - "selects": 1, - "table": 21, - "pluralized": 1, - "lowercase": 1, - "User": 1, - "is": 1, - "have": 2, - "at": 1, + "header": 17, + "change": 1, + "_bar": 3, + "Binary": 2, + "print_filename": 2, + "exact": 1, + "won": 1, + "tt": 4, + "looks": 1, + "longer": 1, + "path": 28, + "sets": 4, + "constant": 2, + "totally": 1, + "returns": 4, + "Flush": 2, + "body_parameters": 3, + "query": 4, + "eq": 31, + "regex/": 9, + "exts": 6, + "symlink": 1, + "%": 78, + "reset.": 1, + "uniq": 4, + "cookies": 9, + "you": 33, + "<Plack::Request::Upload>": 1, + "read": 6, + "location": 4, + "is_windows": 12, + "NOT": 1, + "<--recurse>": 1, + "g_regex": 4, + "do": 11, + "vb": 4, + "DISPATCHING": 1, + "before_starts_at_line": 10, + "you.": 1, + "module": 2, + "listings": 1, + "handling": 1, + "option.": 1, + "print_count": 4, + "#7": 4, + "dtd": 2, + "Unlike": 1, + "overriding": 1, + "Set": 3, + "<HTTP::Request>": 1, + "CR": 1, + "didn": 2, + "A": 2, + "<--color-filename>": 1, + "Escape": 6, + "opt": 291, + "than": 5, + "port": 1, + "pass": 1, + "req": 28, + "similar": 1, + "must": 5, + "has_stat": 3, + "dummy": 2, + "@keys": 2, + "color": 38, + "O": 4, + "&&": 83, + "scalars": 1, + "step": 1, + "them": 5, + "Johnson": 1, + "exitval": 2, + "Repository": 11, + "before": 1, + "bless": 7, + "list.": 1, + "d.": 2, + "]": 155, + "<--no-recurse>": 1, + "charset": 2, + "closedir": 1, + "<less>": 1, + "ignored": 6, + "Ricardo": 1, + "placed": 1, + "over": 1, + "xsl": 2, + "skip_dirs": 3, + "tail": 1, + "external": 2, + "Bar": 1, + "important": 1, + "matter": 1, + "metadata": 1, + "_000": 1, + "Headers": 8, + "based": 1, + "k": 6, + "<NUM>": 2, + "print": 35, + "build_regex": 3, + "sort_reverse": 1, + "directly": 1, + "software": 3, + "doesn": 8, + "filetype_setup": 4, + "QUERY_STRING": 3, + "finder": 1, + "@queue": 8, + "also": 7, + "etc": 2, + "Join": 1, + "show": 3, + "y": 8, + "encoding": 2, + "put": 1, + "finding": 2, + "apply": 2, + "metacharacters": 2, + "<-H>": 1, + "parms": 15, + "sep": 8, + "script_name": 1, + "specifies": 1, + "generation": 1, + "alias.": 2, + "could_be_binary": 4, + "print_count0": 2, + "Stosberg": 1, + "Scalar": 2, + "REMOTE_ADDR": 1, + "link": 1, + "web": 5, + "output_func": 8, + "_MTN": 2, + "defaults": 16, + "HTTP": 16, + "passthru": 9, + "<-Q>": 4, + "third_party": 1, + "protocol": 1, + "*": 8, + "matches": 7, + "uploads.": 2, + "TextMate": 2, + "etc.": 1, + "there": 6, + "xargs": 2, + "Take": 1, + "match_end": 3, + "read_ackrc": 4, + "HTTP_COOKIE": 3, + "handled": 2, + "uri": 11, + "updated": 1, + "correct": 1, + "nobreak": 2, + "error_handler": 5, + "@params": 1, + "#.": 6, + "fcgi": 2, + "output": 36, + "target": 6, + "used.": 1, + "status": 17, + "error": 4, + "MultiValue": 9, + "passing": 1, + "<xargs>": 1, + "local": 5, + "understands": 1, + "URI": 11, + "exit": 16, + "nothing": 1, + "param": 8, + "reference.": 1, + "five": 1, + "Unbuffer": 1, + "F": 24, + "wastes": 1, + "You": 3, + "CORE": 3, + "names": 1, + "filetype": 1, + "once": 4, + "Artistic": 2, + "T": 2, + "switch": 1, + "normalize": 1, + "record": 3, + "foo": 6, + "tweaking.": 1, + "entire": 2, + "basename": 9, + "Carp": 11, + "access": 2, + "lexically.": 3, + "examples": 1, + "like": 12, + "GIF": 1, + "beforehand": 2, + "easy": 1, + "applies": 3, + "ACKRC": 2, + "responsible": 1, + "substr": 2, + "matching": 15, + "b": 6, + "input": 9, + "tt2": 2, + "<--literal>": 1, + "mxml": 2, + "_setup": 2, + "keep_context": 8, + "i.e.": 2, + "did": 1, + "lines.": 3, + "here": 2, + "returning": 1, + "<--type-set>": 1, + "request.": 1, + "<$filename>": 1, + "sort_standard": 2, + "hour": 2, + "foo=": 1, + "on_red": 1, + "Jun": 1, + "p": 9, + "<--passthru>": 1, + "<httponly>": 1, + "is_cygwin": 6, + "Dumper": 1, + "text": 6, + "expires": 7, + "dir": 27, + "IP.": 1, + "Alan": 1, + "heading": 18, + "wacky": 1, + "uploads": 5, + "conv": 2, + "contain": 2, + "be": 30, + "body.": 1, + "concealed": 1, + "Also": 1, + "<$fh>": 4, + "ruby": 3, + "mason": 1, + "Return": 2, + "@what": 14, + "only.": 1, + "runs": 1, + "<examples/benchmarks/fib.pir>": 1, + "zA": 1, + "nError": 1, + "adb": 2, + "Unix": 1, + "<foo/bar>": 1, + "scanned": 1, + "<-f>": 6, + "is_binary": 4, + "prints": 2, + "seek": 4, + "look": 2, + "/": 69, + "green": 3, + "filetype.": 1, + "close": 19, + "column": 4, + "<--group>": 2, + "there.": 1, + "ANSI": 3, + "Show": 2, + "descend_filter.": 1, + "mday": 2, + "Thu": 1, + "Pod": 4, + "Sep": 1, + "updir": 1, + "<undef>": 1, + "<path>": 1, + "printing": 2, + "So": 1, + "set.": 1, + "session_options": 1, + "Console": 2, + "mk": 2, + "from_mixed": 2, + "@ARGV": 12, + "searching.": 2, + "SERVER_PORT": 2, + "contents": 2, + "Apache": 2, + "after_context": 16, + "raw_uri": 1, + "session": 1, + "path_query": 1, + "user_agent": 3, + "Creates": 2, + "ARRAY": 1, + "since": 1, + "Tokuhiro": 2, + "print_line_no": 2, + "bar": 3, + "Calculates": 1, + "parse": 1, + "header_field_names": 1, + "@MON": 1, + "Shortcut": 6, + "my": 401, + "@lines": 21, + "Osawa": 1, + "seeing": 1, + "@typedef": 8, + "Unknown": 2, + "frameworks": 2, + "byte": 1, + "_parse_request_body": 4, + "does": 10, + "file_filter": 12, + "those": 2, + "_//": 1, + "Hash": 11, + "user_agent.": 1, + "front": 1, + "TOTAL_COUNT_SCOPE": 2, + "referer": 3, + "invert_file_match": 8, + "...": 2, + "parm": 1, + "<--line=4-7>": 1, + "information": 1, + "dispatch": 1, + "day": 1, + "cannot": 4, + "problem": 1, + "_make_upload": 2, + "key": 20, + "_finalize_cookies": 2, + "ideal": 1, + "uri_for": 2, + "catfile": 4, + "overload": 1, + "short": 1, + "join": 5, + "dir_sep_chars": 10, + "Share": 1, + "count": 23, + "g": 7, + "php": 2, + "pattern": 10, + "current": 5, + "Outputs": 1, + "actions": 1, + "cl": 10, + "fib": 4, + "of": 55, + "handle": 2, + "u": 10, + "check_regex": 2, + ".wango": 1, + "Jackson": 1, + "application/xml": 1, + "when": 17, + "numerical": 2, + "invalid": 1, + "from": 19, + "away": 1, + "keys": 15, + "..": 7, + "Underline": 1, + "certainly": 2, + "which": 6, + "write": 1, + "shift": 165, + ".svn": 3, + "print_files_with_matches": 4, + "finalize": 5, + "modifying": 1, + "opendir": 1, + "js": 1, + "formats": 1, + "not": 53, + "we": 7, + "parameters.": 3, + "FAIL": 12, + "Prints": 4, + "great": 1, + "Jan": 1, + "&": 22, + "PATTERN.": 1, + "item": 42, + "signoff": 1, + "typing": 1, + "regex/m": 1, + "_get_thpppt": 3, + "rc": 11, + "separated": 2, + "Writing": 1, + "ones": 1, + "globs": 1, + "David": 1, + "immediately": 2, + "type_wanted": 20, + "red": 1, + "B": 75, + "program/package": 1, + "By": 2, + "command": 13, + "default.": 2, + "corresponding": 1, + "scalar": 2, + "Basename": 2, + "whatever": 1, + "<--help>": 1, + "support": 2, + "file_matching": 2, + "_match": 8, + "<$regex>": 1, + "get_command_line_options": 4, + "pair": 4, + ".gz": 2, + "//g": 1, + "alt": 1, + "FindBin": 1, + "newline.": 1, + ".tar": 2, + "Method": 1, + "buffer": 9, + "normally": 1, + "@array": 1, + "@pairs": 2, + "then": 3, + "into": 6, + "<--color>": 1, + "BEGIN": 7, + "max": 12, + "advantage": 1, + "<If>": 1, + "foreach": 4, + "wants": 1, + "big": 1, + "explicitly": 1, + "I#": 2, + "@parts": 3, + "twice.": 1, + "tips": 1, + "Number": 1, + "sort_sub": 4, + "twice": 1, + "<-h>": 1, + "_001": 1, + "m/": 4, + "location.": 1, + "l": 17, + "specified.": 4, + "__END__": 2, + "ignores": 1, + "name.": 1, + "color.": 2, + "Content": 2, + "knowledge": 1, + "included": 1, + "sec": 2, + "xslt": 2, + "<$one>": 1, + "z": 2, + "provide": 1, + "nogroup": 2, + "z/": 2, + "mode.": 1, + "ba": 2, + "Matsuno": 2, + "prefixing": 1, + "directories": 9, + "both": 1, + "visitor.": 1, + "number": 3, + "ARGV": 2, + "through": 6, + "on_yellow": 3, + "CONTENT": 1, + "attr": 6, + "expand_filenames": 7, + "filenames": 7, + "defined": 54, + "remove_dir_sep": 7, + "search": 11, + "Z0": 1, + "<-L>": 1, + "<--ignore-dir=foo>": 1, + "different": 2, + "Sorts": 1, + "foreground": 1, + "grep.": 2, + "+": 120, + "catdir": 3, + "text.": 1, + "get_starting_points": 4, + "API.": 1, + "does.": 2, + "server": 1, + "Print": 6, + "iter": 23, + "multiplexed": 1, + "/chr": 1, + "provides": 1, + "same": 1, + "back": 3, + "something": 2, + "times": 2, + "ACK_COLOR_MATCH": 5, + "prefer": 1, + "errors": 1, + "troublesome": 1, + "<http://plackperl.org/#frameworks>": 1, + "push_header": 1, + "dealing": 1, + "/eg": 2, + "confess": 2, + "empty.": 1, + "convenient": 1, + "Case": 1, + "vh": 2, + "@ENV": 1, + "Standard": 1, + "Multiple": 1, + "<query_parameters>": 1, + "free": 3, + "good": 2, + "Miyagawa": 2, + "hash": 11, + "CAVEAT": 1, + "website": 1, + "remote_host": 2, + "G": 11, + "/path/to/access.log": 1, + "recommended": 1, + "handed": 1, + "<--noenv>": 1, + "that": 27, + "type": 69, "least": 1, - "primary": 3, - "key.": 1, - "Cake.Model": 1, - "//book.cakephp.org/2.0/en/models.html": 1, - "useDbConfig": 7, - "useTable": 12, - "displayField": 4, - "schemaName": 1, - "primaryKey": 38, - "_schema": 11, - "validationDomain": 1, - "tablePrefix": 8, - "tableToModel": 4, - "cacheQueries": 1, - "belongsTo": 7, - "hasOne": 2, - "hasMany": 2, - "hasAndBelongsToMany": 24, - "actsAs": 2, - "Behaviors": 6, - "cacheSources": 7, - "findQueryType": 3, - "recursive": 9, - "order": 4, - "virtualFields": 8, - "_associationKeys": 2, - "_associations": 5, - "__backAssociation": 22, - "__backInnerAssociation": 1, - "__backOriginalAssociation": 1, - "__backContainableAssociation": 1, - "_insertID": 1, - "_sourceConfigured": 1, - "findMethods": 3, - "ds": 3, - "addObject": 2, - "parentClass": 3, - "get_parent_class": 1, - "tableize": 2, - "_createLinks": 3, - "__call": 1, - "dispatchMethod": 1, - "getDataSource": 15, - "relation": 7, - "assocKey": 13, - "dynamic": 2, - "isKeySet": 1, - "AppModel": 1, - "_constructLinkedModel": 2, - "schema": 11, - "hasField": 7, - "setDataSource": 2, - "property_exists": 3, - "bindModel": 1, - "reset": 6, - "assoc": 75, - "assocName": 6, - "unbindModel": 1, - "_generateAssociation": 2, - "dynamicWith": 3, - "sort": 1, - "setSource": 1, - "tableName": 4, - "db": 45, - "method_exists": 5, - "sources": 3, - "listSources": 1, - "strtolower": 1, - "MissingTableException": 1, - "is_object": 2, - "SimpleXMLElement": 1, - "_normalizeXmlData": 3, - "toArray": 1, - "reverse": 1, - "_setAliasData": 2, - "modelName": 3, - "fieldSet": 3, - "fieldName": 6, - "fieldValue": 7, - "deconstruct": 2, - "getAssociated": 4, - "getColumnType": 4, - "useNewDate": 2, - "dateFields": 5, - "timeFields": 2, - "date": 9, - "val": 27, - "columns": 5, - "str_replace": 3, - "describe": 1, - "getColumnTypes": 1, - "trigger_error": 1, - "__d": 1, - "E_USER_WARNING": 1, - "cols": 7, - "column": 10, - "startQuote": 4, - "endQuote": 4, - "checkVirtual": 3, - "isVirtualField": 3, - "hasMethod": 2, - "getVirtualField": 1, - "filterKey": 2, - "defaults": 6, - "properties": 4, - "read": 2, - "conditions": 41, - "saveField": 1, - "options": 85, - "save": 9, - "fieldList": 1, - "_whitelist": 4, - "keyPresentAndEmpty": 2, - "exists": 6, - "validates": 60, - "updateCol": 6, - "colType": 4, - "time": 3, - "strtotime": 1, - "joined": 5, - "x": 4, - "y": 2, - "success": 10, - "cache": 2, - "_prepareUpdateFields": 2, - "update": 2, - "fInfo": 4, - "isUUID": 5, - "j": 2, - "array_search": 1, - "uuid": 3, - "updateCounterCache": 6, - "_saveMulti": 2, - "_clearCache": 2, - "join": 22, - "joinModel": 8, - "keyInfo": 4, - "withModel": 4, - "pluginName": 1, - "dbMulti": 6, - "newData": 5, - "newValues": 8, - "newJoins": 7, - "primaryAdded": 3, - "idField": 3, - "row": 17, - "keepExisting": 3, - "associationForeignKey": 5, - "links": 4, - "oldLinks": 4, - "delete": 9, - "oldJoin": 4, - "insertMulti": 1, - "foreignKey": 11, - "fkQuoted": 3, - "escapeField": 6, - "intval": 4, - "updateAll": 3, - "foreignKeys": 3, - "included": 3, - "array_intersect": 1, - "old": 2, - "saveAll": 1, - "numeric": 1, - "validateMany": 4, - "saveMany": 3, - "validateAssociated": 5, - "saveAssociated": 5, - "transactionBegun": 4, - "begin": 2, - "record": 10, - "saved": 18, - "commit": 2, - "rollback": 2, - "associations": 9, - "association": 47, - "notEmpty": 4, - "_return": 3, - "recordData": 2, - "cascade": 10, - "_deleteDependent": 3, - "_deleteLinks": 3, - "_collectForeignKeys": 2, - "savedAssociatons": 3, - "deleteAll": 2, - "records": 6, - "ids": 8, - "_id": 2, - "getID": 2, - "hasAny": 1, - "buildQuery": 2, - "is_null": 1, - "results": 22, - "resetAssociations": 3, - "_filterResults": 2, - "ucfirst": 2, - "modParams": 2, - "_findFirst": 1, - "state": 15, - "_findCount": 1, - "calculate": 2, - "expression": 1, - "_findList": 1, - "tokenize": 1, - "lst": 4, - "combine": 1, - "_findNeighbors": 1, - "prevVal": 2, - "return2": 6, - "_findThreaded": 1, - "nest": 1, - "isUnique": 1, - "is_bool": 1, - "sql": 1, - "SHEBANG#!php": 3, - "echo": 2, - "Yii": 3, - "console": 3, - "bootstrap": 1, - "yiiframework": 2, - "com": 2, - "c": 1, - "2008": 1, - "LLC": 1, - "YII_DEBUG": 2, - "define": 2, - "fcgi": 1, - "doesn": 1, - "STDIN": 3, - "fopen": 1, - "stdin": 1, - "r": 1, - "require": 3, - "__DIR__": 3, - "vendor": 2, - "yiisoft": 1, - "yii2": 1, - "yii": 2, - "autoload": 1, - "config": 3, - "application": 2 - }, - "PogoScript": { - "httpism": 1, - "require": 3, - "async": 1, - "resolve": 2, - ".resolve": 1, - "exports.squash": 1, - "(": 38, - "url": 5, - ")": 38, - "html": 15, - "httpism.get": 2, - ".body": 2, - "squash": 2, - "callback": 2, - "replacements": 6, - "sort": 2, - "links": 2, - "in": 11, - ".concat": 1, - "scripts": 2, - "for": 2, - "each": 2, - "@": 6, - "r": 1, - "{": 3, - "r.url": 1, - "r.href": 1, - "}": 3, - "async.map": 1, - "get": 2, - "err": 2, - "requested": 2, - "replace": 2, - "replacements.sort": 1, - "a": 1, - "b": 1, - "a.index": 1, - "-": 1, - "b.index": 1, - "replacement": 2, - "replacement.body": 1, - "replacement.url": 1, - "i": 3, - "parts": 3, - "rep": 1, - "rep.index": 1, - "+": 2, - "rep.length": 1, - "html.substr": 1, - "link": 2, - "reg": 5, - "r/": 2, - "<link\\s[^>": 1, - "]": 7, - "*href": 1, - "[": 5, - "*": 2, - "/": 2, - "|": 2, - "s*": 2, - "<\\/link\\>": 1, - "/gi": 2, - "elements": 5, - "matching": 3, - "as": 3, - "script": 2, - "<script\\s[^>": 1, - "*src": 1, - "<\\/script\\>": 1, - "tag": 3, - "while": 1, - "m": 1, - "reg.exec": 1, - "elements.push": 1, - "index": 1, - "m.index": 1, + "invert_flag": 4, + "files_defaults": 3, + "Gets": 3, + "mailing": 1, + "GLOB_TILDE": 2, + "on_cyan": 1, + "reset": 5, + "STDIN": 2, + "around": 5, + "Sets": 2, + "call": 1, + "shortcut": 2, + "true": 3, + "U": 2, + "mode": 1, + "ACK": 2, + "@exts": 8, + "crucial": 1, + "<--type-add>": 1, + "<Hash::MultiValue>": 2, + "<not>": 1, + "case": 3, + "expanded": 3, + "query_params": 1, + "show_filename": 35, + "users": 4, + "_sgbak": 2, + "builtin": 2, + "Yes": 1, + "define": 1, + "this": 18, + "<body_parameters>": 1, + "sequences.": 1, + "helpful": 2, + "nick": 1, + "doubt": 1, + "follow": 7, + "<HTTP::Headers>": 2, + "middlewares.": 1, + "verbose": 2, + "c": 5, + "have": 2, + "relative": 1, + "repo": 18, + "account": 1, + "variables.": 1, + "xml_decl": 1, + "mappings": 29, + "die": 38, + "<Catalyst::Request>": 1, + "Aug": 1, + "mod_perl": 1, + "how": 1, + "show_column": 4, + "gzip": 1, + "yaml": 4, + "arguments.": 1, + "Plack": 25, + "q": 5, + "regular": 3, + "modules": 1, + "size": 5, + "METHODS": 2, + "ACK_COLOR_FILENAME": 5, + "framework.": 1, + "Request": 11, + "ACK_SWITCHES": 1, + "passed_parms": 6, + "regexes": 3, + "route": 1, + "just": 2, + "encouraged": 1, + "May": 2, + "Builtin": 4, + ".*": 2, + "set_up_pager": 3, + "regex": 28, + "Add/Remove": 2, + "<Plack::App::URLMap>": 1, + "frm": 2, + "unspecified": 1, + "suggest": 1, + "op": 2, + "wantarray": 3, + "statement.": 1, + "<ack.el>": 1, + "year": 3, + "REMOTE_USER": 1, + "goes": 2, + "low": 1, + "integration": 3, + "FCGI": 1, + "parser": 12, + "simplified": 1, + "cookie": 6, + "TEXT": 16, + "everything": 1, + "vim.": 1, + "bold": 5, + "has_lines": 4, + "objects": 2, + "unrestricted": 2, + "<read-only>": 1, + "<n>": 1, + "supported": 1, + "RCS": 2, + "_body": 2, + "tr/": 2, + "are": 24, + "middleware": 1, + "so": 3, + "exists": 19, + "conjunction": 1, + "turning": 1, + "either": 2, + "Remove": 1, + "let": 1, + "rather": 2, + "Fri": 1, + "having": 1, + "Users": 1, + "Quote": 1, + "MAIN": 1, + "is_interesting": 4, + "normal": 1, + "last": 17, + "Shell": 2, + "help": 2, + "SIG": 3, + "environment": 2, + "Benchmark": 1, + "ent": 2, + "field": 2, + "@ret": 10, + "itself.": 2, + "rm": 1, + "<more>": 1, + "replace": 3, + "switches.": 1, + "<value>": 2, + "load_colors": 1, + "structures": 1, + "pipe": 4, + "<smartcase>": 1, + "indent": 1, + "Pedro": 1, + "our": 34, + "output.": 1, + "No": 4, + ".ackrc": 1, + "regex/go": 2, + "content_length.": 1, + "uri_escape": 3, + "get_iterator": 4, + "www": 2, + "bas": 2, + "Handle": 1, + "<--nogroup>": 2, + "Ext_Request": 1, + "don": 2, + "L": 18, + "input_from_pipe": 8, + "int": 2, + "debug": 1, + "delete_type": 5, + "<-w>": 2, + "higher": 1, + "Upload": 2, + "context_overall_output_count": 6, + "msg": 4, + "print_blank_line": 2, + "else": 53, + "Same": 8, + "too.": 1, + "glob.": 1, + "@values": 1, + "delete": 10, + "context": 1, + "list": 10, + "<Plack::Request>": 2, + "All": 4, + "Ack": 136, + "Ignore": 3, + "argv": 12, + "Basic": 10, + "h": 6, + "scope": 4, + "Pisoni": 1, + "descend_filter": 11, + "True/False": 1, + "<ACK_PAGER>": 4, + "ascending": 1, "length": 1, - "m.0.length": 1, - "href": 1, - "m.1": 1 + "lc_basename": 8, + "Portable": 2, + "behavior": 3, + "vim": 4, + "Sun": 1, + "print_version_statement": 2, + "<--ignore-dir=data>": 1, + "found": 9, + "<--files-without-matches>": 1, + "only": 11, + "th": 1, + "separator": 4, + "ACK_OPTIONS": 5, + "case.": 1, + "creating": 2, + "filetypes_supported": 5, + "v": 19, + "subclass": 1, + "<--with-filename>": 1, + "body": 30, + "results.": 2, + "canonical": 2, + "grouping": 3, + "XXX": 4, + "treated": 1, + "<ACK_PAGER_COLOR>": 4, + "deterministic": 1, + "Works": 1, + "type_wanted.": 1, + "definitions": 1, + "ne": 9, + "find": 1, + "blue": 1, + "id": 6, + "wanted": 4, + "finds": 2, + "PSGI": 6, + "select": 1, + "trailing": 1, + "underline": 1, + "ignore.": 1, + "any": 3, + "assume": 1, + "by": 11, + "Error": 2, + "html": 1, + "greater": 1, + "env_is_usable": 3, + "specific": 1, + "got": 2, + "attributes": 4, + "batch": 2, + "path_info": 4, + "together": 1, + "DIRECTORY...": 1, + "path_escape_class": 2, + "across": 1, + "spots": 1, + "convert": 1, + "Can": 1, + "TOOLS": 1, + "vd": 2, + "perfectly": 1, + ".*//": 1, + "spelling": 1, + "Lester.": 2, + "break": 14, + "explicit": 1, + "/i": 2, + "raw_body": 1, + "searched": 5, + "unless": 39, + "cmp": 2, + "too": 1, + "yet": 1, + "@newfiles": 5, + "C": 48, + "bsd_glob": 4, + "tools": 1, + "LF": 1, + "parent": 5, + "hp": 2, + "simple": 2, + "/access.log": 1, + "works.": 1, + "such": 5, + "body_params": 1, + "<--show-types>": 1, + "filename.": 1, + "NAME": 5, + "standard": 1, + "important.": 1, + "res": 59, + "searching": 6, + "Pete": 1, + "mak": 2, + "even": 4, + "alternative": 1, + "_darcs": 2, + "POST": 1, + "/MSWin32/": 2, + "Q": 7, + "compatibility": 2, + "update": 1, + "up": 1, + "Regan": 1, + "numbers.": 2, + "Cannot": 4, + "<parameters>": 1, + "may": 3, + "@uploads": 3, + "Unless": 1, + "CGI.pm": 2, + "flags.": 1, + "hostname": 1, + "grep": 17, + "specifications.": 1, + "Melo": 1, + "MON": 1, + "_": 101, + "order": 2, + "SERVER_PROTOCOL": 1, + "Windows": 4, + "update.": 1, + "<DIRNAME>": 2, + "_my_program": 3, + "instead": 4, + "SHEBANG#!#! perl": 4, + "used": 11, + "request": 11, + "Specifies": 4, + "iterator": 3, + "on_color": 1, + "files": 41, + "lines": 19, + "request_uri": 1, + "m": 17, + "scripts": 1, + "TempBuffer": 2, + "nargs": 2, + "Go": 1, + "warnings": 16, + "main": 3, + "def_types_from_ARGV": 5, + "response.": 1, + "ctl": 2, + "ReziE": 1, + "readdir": 1, + "char": 1, + "user": 4, + "internal": 1, + "codesets": 1, + "application": 10, + "App": 131, + "<secure>": 1, + "<-l>": 2, + "what": 14, + "Assume": 2, + "{": 1121, + "setting": 1, + "Response": 16, + "app_or_middleware": 1, + "colored": 6, + "convenience": 1, + "blib": 2, + "next_resource": 6, + "uppercase": 1, + "Unable": 2, + "<grep>": 5, + "SP": 1, + "<does>": 1, + "content_length": 4, + "was": 2, + "package": 14, + "OTHER": 1, + "Vim": 3, + "sort_files": 11, + "uri_unescape": 1, + "remove": 2, + "binary": 3, + "dirs": 2, + "Slaven": 1, + "@cookie": 7, + "REGEX": 2, + "return": 157, + "Note": 4, + "but": 4, + "<-G>": 3, + "dh": 4, + "working": 1, + "took": 1, + "G.": 2, + "Simple": 1, + "display_line_no": 4, + "returned.": 1, + "called": 3, + "magenta": 1, + "PSGI.": 1, + "its": 2, + "defines": 1, + "driven": 1, + "an": 11, + "with": 26, + "new": 55, + "carp": 2, + "level": 1, + "comma": 1, + "hosted": 1, + "Nov": 1, + "object.": 4, + "caller": 2, + "HTTPS": 1, + "all": 22, + "variable": 1, + "ANSIColor": 8, + "ack": 38, + "push": 30, + "last_output_line": 6, + "H": 6, + "b/": 4, + "text/html": 1, + "AUTHORS": 1, + "file": 40, + "backticks.": 1, + "strings.": 1, + "map": 10, + "<--line=3,5,7>": 1, + "event": 2, + "@_": 41, + "using": 2, + "print_first_filename": 2, + "<--ignore-case>": 1, + "headers": 56, + "accessing": 1, + "who": 1, + "<path_info>": 1, + "cls": 2, + "recognize": 1, + "developers": 3, + "noted": 1, + "<--color-lineno>": 1, + "<expires>": 2, + "types": 26, + "Parser": 4, + "show_help": 3, + "know.": 1, + "Suppress": 1, + "curdir": 1, + "associates": 1, + "Spec": 13, + "d": 9, + "Mark": 1, + "verilog": 2, + "Mon": 1, + "CONTENT_LENGTH": 3, + "research": 1, + "wday": 2, + "next": 9, + "utf": 2, + "blink": 1, + "<cookies>": 1, + "VERSION": 15, + "td": 6, + "configure": 4, + "r": 14, + "colour": 2, + "min": 3, + "object": 6, + "Dec": 1, + "points": 1, + "query_parameters": 3, + "ack.": 2, + "can": 26, + "source": 2, + "under": 4, + "deprecated": 1, + "arguments": 2, + "Exit": 1, + "to_screen": 10, + "croak": 3, + "work": 1, + "<uploads>": 1, + "content_type": 5, + "Accessor": 1, + "#": 99, + "httponly": 1, + "name": 44, + "while": 31, + "date": 2, + "designed": 1, + "next_text": 8, + "Using": 3, + "add": 8, + "piping": 3, + "throw": 1, + "<code>": 1, + "actually": 1, + "no": 21, + "already": 2, + "idea": 1, + "in": 29, + "Adriano": 1, + "time": 3, + "1": 1, + "filename": 68, + "SCCS": 2, + "@ISA": 2, + "FILEs": 1, + "specifying": 1, + "<Location>": 1, + "REMOTE_HOST": 1, + "as": 33, + "fullpath": 12, + "</\"INCOMPATIBILITIES\">": 1, + "suppress": 3, + "<most>": 1, + "whitespace": 1, + "directory": 8, + "Wed": 1, + "on_green": 1, + "going": 1, + "stop": 1, + "null": 1, + "bat": 2, + "HTTP_HOST": 1, + "strings": 1, + "level.": 1, + "Phil": 1, + "avoid": 1, + "M": 1, + "ENV": 40, + "Long": 6, + "COOKIE": 1, + "output_to_pipe": 12, + "<-n>": 1, + "s/": 22, + "files.": 6, + "older": 1, + "DESCRIPTION": 4, + "Leland": 1, + "strict": 16, + "pager": 19, + "w/": 3, + "still": 4, + "Usage": 4, + "class": 8, + "include": 1, + "groups": 1, + "supported.": 1, + "[": 159, + "<ACK_COLOR_FILENAME>": 1, + "File": 54, + "objects.": 1, + "<.svn/props>": 1, + "they": 1, + "library": 1, + "Cookie": 2, + "coloring": 3, + "<--smart-case>": 1, + "possible": 1, + "Tar": 4, + "B5": 1, + "_date": 2, + "str": 12, + "print_separator": 2, + "otherwise": 2, + "Copyright": 2, + "<Plack::Response>": 3, + "*STDOUT": 6, + "fh": 28, + "domain": 3, + "i": 26, + "Handy": 1, + "nOo_/": 2, + "first": 1, + "url_scheme": 1, + "methods": 3, + "expecting": 1, + "the": 131, + "filter": 12, + "DEBUGGING": 1, + "SYNOPSIS": 5, + "CGI": 5, + "Print/search": 2, + "For": 5, + "<-R>": 1, + "badkey": 1, + "w": 4, + "framework": 2, + "your": 13, + "Next": 27, + "AUTHOR": 1, + "these": 1, + "asm": 4, + "extension": 1, + "start": 6, + "Bill": 1, + "inside.": 1, + "specify": 1, + "secure": 2, + "containing": 5, + "sort": 8, + "easily": 2, + "starting": 2, + "could": 2, + "<NOT>": 2, + "tree": 2, + "first.": 1, + "Bin": 3, + "vhdl": 4, + "accessor": 1, + "compatible": 1, + "works": 1, + "Signes": 1, + "file.": 2, + "line.": 4, + "(": 919, + "append": 2, + "/./": 2, + "flush": 8, + "never": 1, + "FUNCTIONS": 1, + "<domain>": 1, + "take": 5, + "Specify": 1, + "on_magenta": 1, + "is": 62, + "search.": 1, + "later": 2, + "send": 1, + "re": 3, + "ve": 2, + "program": 6, + "_stop": 4, + "result": 1, + "open": 7, + "If": 14, + "multiple": 5, + "versions": 1, + "logger": 1, + "WDAY": 1, + "top": 1, + "ref": 33, + "warn": 22, + "make": 3, + "<always>": 1, + "bak": 1, + "message": 1, + "params": 1, + "redistribute": 3, + "regex_is_lc": 2, + "starting_line_no": 1, + "perhaps": 1, + "any_output": 10, + "mon": 2, + "It": 2, + "instead.": 1, + "Andy": 2, + "off": 4, + "searches": 1, + "where": 3, + "getoptions": 4, + "integrates": 1, + "R": 2, + "examples/benchmarks/fib.pl": 1, + "qq": 18, + "occurs": 2, + "it.": 1, + "consistent": 1, + "Code": 1, + "parameters": 8, + "</app>": 1, + "go": 1, + "scheme": 3, + "had": 1, + "changed.": 4, + "underscore": 2, + "nmatches": 61, + "one": 9, + "Reads": 1, + "options.": 4, + "redirect": 1, + "virtual": 1, + "print_column_no": 2, + "_build": 2, + "Tatsuhiko": 2, + "_thpppt": 3, + "chomp": 3, + "Jul": 1, + "body_str": 1, + "<.xyz>": 1, + "Optimized": 1, + "n": 19, + "<\"\\n\">": 1, + "properly": 1, + "referer.": 1, + "sprintf": 1, + "opts": 2, + "expression": 9, + "chunk": 4, + "Keenan": 1, + "lineno": 2, + "<foo.pod>": 1, + "head1": 31, + "XS": 2, + "print_files": 4, + "header.": 2, + "see": 4, + "uses": 2, + "exist": 4, + "Fast": 3, + "regex/Term": 2, + "James": 1, + "xml": 6, + "terms": 3, + "|": 28, + "yellow": 3, + "core": 1, + "lot": 1, + "<-g>": 5, + "<.ackrc>": 1, + "require": 12, + "value": 12, + "actionscript": 2, + "Term": 6, + "<+3M>": 1, + "data": 3, + "resx": 2, + "housekeeping": 1, + "VMS": 2, + "IO": 1, + "SEE": 3, + "PATH_INFO": 3, + "<-p>": 1, + "_uri_base": 3, + "The": 20, + "XML": 2, + "line_no": 12, + "noheading": 2, + "lib": 2, + "new_response": 4, + "ignoredir_filter": 5, + "-": 860, + "*STDIN": 2, + "END_OF_HELP": 2, + "after": 18, + "more": 2, + "Body": 2, + "total_count": 10, + "want": 5, + "url": 2, + "Tue": 1, + ";": 1185, + "Setter": 2, + "Win32": 9, + "Cat": 1, + "is_searchable": 8, + "Maybe": 2, + "reset_total_count": 4, + "argument.": 1, + "means": 2, + "redirected": 2, + "symlinks": 1, + "things": 1, + "Now": 1, + "parts": 1, + "address": 2, + "writes": 1, + "<File::Next>": 1, + "sub": 225, + "values": 5, + "would": 3, + "That": 3, + "I": 67, + "<ack-grep>": 1, + "val": 26, + "tmpl_path": 2, + "<0x107>": 1, + "reverse": 1, + "were": 1, + "earlier": 1, + "<--no-filename>": 1, + "highlight": 1, + "should": 6, + "LWS": 1, + "false": 1, + "<--line>": 1, + "print0": 7, + "returned": 2, + "dark": 1, + "exit_from_ack": 5, + "for": 78, + "grepprg": 1, + "simply": 1, + "e.g.": 1, + "start_point": 4, + "Send": 1, + "given": 10, + "upload": 13, + "<-a>": 1, + "show_total": 6, + "shows": 1, + "clone": 1, + "a.": 1, + "significant.": 1, + "interactively": 6, + "control": 1, + "e": 20, + "_candidate_files": 2, + "previous": 1, + "cut": 27, + "follow_symlinks": 6, + "argument": 1, + "args": 3, + "Krawczyk.": 1, + "other": 5, + "<.vimrc>": 1, + "loading": 1, + "blessed": 1, + "EXPAND_FILENAMES_SCOPE": 4, + "Display": 1, + "string.": 1, + "between": 3, + "pt": 1, + "print_matches": 4, + "FAQ": 1, + "HOME": 4, + "s": 34, + "split": 13, + "SHEBANG#!#!": 2, + "Internal": 2, + "tmpl": 5, + "say": 1, + "COLOR": 6, + "content_encoding.": 1, + "ython": 2, + "reference": 8, + "gets": 2, + "overrides": 2, + "skipped": 2, + "use": 76, + "clear": 2, + "be.": 1, + "<strings>": 1, + "<?xml>": 1, + "GetAttributes": 2, + "perllib": 1, + "Why": 2, + "or": 47, + "@fields": 1, + "line": 20, + "SERVER_NAME": 1, + "know": 4, + "match.": 3, + "*I": 2, + "required": 2, + "<--thpppppt>": 1, + "<<": 6, + "decoding": 1, + "black": 3, + "elsif": 10, + "with.": 1, + "pipe.": 1, + "@files": 12, + "removes": 1, + "way": 2, + "paths": 3, + "PROBLEMS": 1, + "smart_case": 3, + "method.": 1, + "Only": 7, + "without": 3, + "Version": 1, + "recognized": 1, + "@obj": 3, + "Sat": 1, + "content_type.": 1, + "search_and_list": 8, + "io": 1, + "See": 1, + "invert": 2, + "inclusion/exclusion": 2, + "version": 2, + "group": 2, + "ads": 2, + "explicitly.": 1, + "eval": 8, + "env": 76, + "PATTERN": 8, + "on_blue": 1, + "_bake_cookie": 2, + "#use": 1, + "method": 7, + "at": 3, + "content_encoding": 5, + "REQUEST_METHOD": 1, + "Recurse": 3, + "usual": 1, + "@": 38, + "CONTENT_TYPE": 2, + "tarballs_work": 4, + "out": 2, + "__PACKAGE__": 1, + "printed": 1, + "interactively.": 1, + "Parameters": 1, + "_deprecated": 8, + "End": 3, + "show_help_types": 2, + "z//": 2, + "trouble": 1, + "match": 21, + "<--no-smart-case>": 1, + "Emacs": 1, + "qr/": 13, + "License": 2, + "print_match_or_context": 13, + "spin": 2, + "shell": 4, + "sysread": 1, + "code.": 2, + "Ferreira": 1, + "N": 2, + "@dirs": 4, + "<--thpppt>": 1, + "<-i>": 5, + "<--print0>": 1, + "<--files-with-matches>": 1, + "display_filename": 8, + "this.": 1, + "ACK_/": 1, + "cleanup": 1, + "gives": 2, + "via": 1, + "readline": 1, + "serviceable": 1, + "<-r>": 1, + "<-v>": 3, + "response": 5, + "Nested": 1, + "subdirectories": 2, + "use_attr": 1, + "LICENSE": 3, + "epoch": 1, + "Getopt": 6, + "checking": 2, + "content": 8, + "aa.bb.cc.dd": 1, + "before_context": 18, + "COPYRIGHT": 6, + "has.": 2, + "pod2usage": 2, + "results": 8, + "always": 5, + "Mar": 1, + "background": 1, + "specified": 3, + "subclassing": 1, + ".#": 4, + "option": 7, + "x": 7, + "found.": 4, + "SHEBANG#!perl": 5, + "<program>": 1, + "no//": 2, + "searched.": 1, + "Feb": 1, + "Perl": 6, + "functions": 2, + "options": 7, + "on_black": 1, + "because": 3, + "Kazuhiro": 1, + "matched": 1, + "load": 2, + "<ack>": 13, + "sh": 2, + "allows": 2, + "ignore": 7, + "<$ors>": 1, + "directories.": 2, + "REQUEST_URI": 2, + "now": 1, + "headers.": 1, + "allow": 1, + "Returns": 10, + "if": 272, + "swp": 1, + "venue": 2, + "example": 5, + ")": 917, + "system": 1, + "is_match": 7, + "their": 1, + "sv": 2, + "duck": 1, + "expression.": 1, + "plain": 2, + "Removes": 1, + "create": 2, + "Fibonacci": 2, + "Ignores": 2, + "cmd": 2, + "get_all": 2, + "Highlight": 2, + "it": 25, + "Use": 6, + "@results": 14, + "me": 1, + "kind": 1, + "container": 1, + "unshift": 4, + "named": 3, + "Minor": 1, + "@uniq": 2, + "show_types": 4, + "Util": 3, + "and/or": 3, + "search_resource": 7, + "<REGEX>": 11, + "ttml": 2, + "Glob": 4, + "erl": 2, + "against": 1, + "isn": 1, + "tried": 2, + "python": 1, + "gmtime": 1, + "ignore_dirs": 12, + "lc": 5, + "default": 16, + "#I": 6, + "S": 1, + "Oct": 1, + "match_start": 5, + "environments.": 1, + "getopt_specs": 6, + "copy": 4, + "GET": 1, + "second": 1, + "efficiency.": 1, + "@before": 16, + "a": 81, + "CVS": 5, + "<HTTP::Engine>": 1, + "API": 2, + "though": 1, + "has": 2, + "well": 2, + "contains": 1, + "sending": 1, + "o": 17, + "log": 3, + "hash2xml": 1, + "SCRIPT_NAME": 2, + "code": 7, + "smart": 1, + "base": 10, + "artist_name": 2, + "characters.": 1, + "compiled": 1, + "head2": 32, + "vhd": 2, + "ct": 3, + "nginx": 2, + "to": 86, + "and": 76, + "v2.0.": 2, + "Apr": 1 + }, + "Coq": { + "rev_snoc": 1, + "proof": 1, + "Global": 5, + "noWhilesAss": 1, + "tm_true": 8, + "andb_true_intro.": 2, + "ST_AppAbs.": 3, + "Definition": 46, + "h2": 1, + "IHc2.": 2, + "IHclos_refl_trans1.": 2, + "Ht": 1, + "plus_assoc.": 4, + "eq_refl": 2, + "permut_conv_inv": 1, + "s2": 2, + "Set": 4, + "Prop.": 1, + "beq_nat_refl.": 1, + "andb_false_r": 1, + "j": 6, + "Constructors": 3, + "permut_length": 1, + "red": 6, + "a2": 62, + "IHHy1": 2, + "permut_right": 1, + "IHHce1.": 1, + "O": 98, + "beq_nat_eq": 2, + "Hfsurj": 2, + "multiplicity_NoDupA": 1, + "merge0": 1, + "omega.": 7, + "rt_trans": 3, + "Hneqy.": 2, + "Hpq.": 1, + "Hf2": 1, + "Ltac": 1, + "H11.": 1, + "ST_Funny": 1, + "le_S_n": 2, + "cf": 2, + "IHa1": 1, + "NoDup_cardinal_incl": 1, + "v_true": 1, + "IHl1": 1, + "contents": 12, + "tuesday": 3, + "TODO": 1, + "specialize": 6, + "symmetry.": 2, + "H10": 1, + "leA_dec": 4, + "Permut_permut.": 1, + "Sorted_inv": 2, + "merge": 5, + "X0": 2, + "leA_Tree_Leaf": 5, + "dependent": 6, + "snoc": 9, + "PD": 2, + "tm_abs": 9, + "DO": 4, + "Hm": 1, + "exp": 2, + "context_invariance...": 2, + "Permutation_rev": 3, + "IHp.": 2, + "IHrefl_step_closure.": 1, + "E_BEq": 1, + "split.": 17, + "override_example2": 1, + "nth_error_app2": 1, + "HE.": 1, + "Permut.": 1, + "trivial": 15, + "c": 70, + "test_nandb2": 1, + "mult_1.": 1, + "Permutation_app_tail": 2, + "app_ass": 1, + "l.": 26, + "SSCase": 3, + "IHrefl_step_closure": 1, + "singletonBag": 10, + "Coiso2.": 3, + "Permutation_app_inv": 1, + "Hy2": 3, + "IHt1": 2, + "ty_arrow": 7, + "H": 76, + "idB.": 1, + "H3.": 5, + "unfold_example_bad": 1, + "Lt.lt_irrefl": 2, + "f_equal.": 1, + "s_execute2": 1, + "e1": 58, + "app_ass.": 6, + "ST_Plus2.": 2, + "Tree.": 1, + "Hdec": 3, + "eq_rect_eq_nat.": 1, + "-": 508, + "Fixpoint": 36, + "lx": 4, + "Injection": 1, + "Permutation_app_head": 2, + "IHa2.": 1, + "mult_comm": 2, + "st.": 7, + "plus_n_Sm.": 1, + "AMult": 9, + "IHbevalR2": 1, + "Type": 86, + "le.": 4, + "generalize": 13, + "Hf": 15, + "perm_nil": 1, + "SingletonBag": 2, + "transitive.": 1, + "arith": 4, + "Forall2": 2, + "low_trans": 3, + "else": 9, + "forall": 248, + "Temp1.": 1, + "idBB": 2, + "Hlefy": 1, + "loopdef.": 1, + "node_is_heap": 7, + "E_Anum": 1, + "thursday": 3, + "total_relation": 1, + "sinstr.": 1, + "beq_nat_refl": 3, + "mult_plus_1.": 1, + "x1": 11, + "k2": 4, + "incl": 3, + "fst": 3, + "Module": 11, + "A": 113, + "where": 6, + "left.": 3, + "H0": 16, + "H22": 2, + "Hgefx": 1, + "incbin": 2, + "empty": 3, + "mult_plus_distr_r.": 1, + "Permutation_length.": 1, + "&": 21, + "unfold": 58, + "set": 1, + "EQ": 8, + "beq_natlist_refl": 1, + "ConT3": 1, + "Proof.": 208, + "mult_1_1": 1, + "eqA_dec": 26, + "leA_refl.": 1, + "IHn": 12, + "existsb": 3, + "i2.": 8, + "Qed.": 194, + "Heqe.": 3, + "aeval": 46, + "Permutation_nil": 2, + "permut_add_cons_inside": 3, + "head": 1, + "ble_n_Sn.": 1, + "Proper": 5, + "Type.": 3, + "Hpermmm": 1, + "m0": 1, + "p": 81, + "permut_add_cons_inside.": 1, + "substitution_preserves_typing": 1, + "existsb_correct": 1, + "value.": 1, + "noWhilesIf.": 1, + "mumble.": 1, + "EQ.": 2, + "change": 1, + "permut_sym": 4, + "K_dec_set": 1, + "T3": 2, + "IHHce.": 2, + "SMinus": 11, + "E_AMinus": 2, + "inversion": 104, + "cl": 1, + "IHs.": 2, + "natprod": 5, + "Sorting.": 1, + "stepmany_congr2": 1, + "NoDupA": 3, + "<=m}>": 1, + "noWhilesSeq.": 1, + "reflexivity": 16, + "le_O_n.": 2, + "Permutation_map": 1, + "T_App": 2, + "associativity": 7, + "bexp": 22, + "o.": 4, + "injective_bounded_surjective": 1, + "Permutation_nil_cons": 1, + "list_contents": 30, + "antisymmetric": 3, + "E_APlus": 2, + "list_to_heap": 2, + "l1.": 5, + "aexp.": 1, + "Hint": 9, + "app_nil_end.": 1, + "neq_dep_intro": 2, + "In_split": 1, + "s1": 20, + "<=>": 12, + "inversion_clear": 6, + "ST_App2.": 1, + "Hneqy": 1, + "ceval_step_more": 7, + "i": 11, + "l4": 3, + "loop": 2, + "optimize_and_sound": 1, + "a1": 56, + "fold": 1, + "N": 1, + "merge_lem": 3, + "nat": 108, + "tp": 2, + "case": 2, + "Hf1": 1, + "step.": 3, + "Hgsurj": 3, + "3": 2, + "leA_Tree": 16, + "day.": 1, + "Hy2.": 2, + "PN.": 2, + "next_nat": 1, + "IHbevalR": 1, + "results": 1, + "eqA_equiv": 1, + "rev_involutive.": 1, + "end": 16, + "Permutation_add_inside": 1, + "E_WhileLoop": 2, + "n2": 41, + "empty_relation.": 1, + "Hl": 1, + "Setoid": 1, + "SCase.": 3, + "bexp_cases": 4, + "extend.": 2, + "partial_function": 6, + "}": 35, + "Fact": 3, + "test_hd_opt2": 2, + "Equivalence": 2, + "PermutSetoid": 1, + "rewrite": 241, + "com_cases": 1, + "override_example1": 1, + "nth_error_app1": 1, + "seq_NoDup": 1, + "b": 89, + "le_n.": 6, + "test_nandb1": 1, + "E_Seq": 1, + "fold_map_correct": 1, + "le_lt_dec": 9, + "Permutation.": 2, + "Hy1": 2, + "permut_eqA": 1, + "G": 6, + "uncurry_uncurry": 1, + "LT": 14, + "total_relation1.": 2, + "leA_antisym.": 1, + "s_execute1": 1, + "STLC.": 1, + "st": 113, + "dep_pair_intro": 2, + "perm_swap": 1, + "v2": 2, + "exact": 4, + "AId": 4, + "at": 17, + "s_compile_correct": 1, + "Lemma": 51, + "equiv_Tree": 1, + "IHbevalR1": 1, + "t3": 6, + "eauto.": 7, + "Defined.": 1, + "symmetric": 2, + "plus3.": 1, + "Permutation_nil_app_cons": 1, + "EmptyBag": 2, + "v": 28, + "b3": 2, + "End": 15, + "Some": 21, + "SCase": 24, + "eval_cases": 1, + "meq_trans": 10, + "pred": 3, + "card_interval.": 2, + "r.": 3, + "[": 170, + "Hlefx": 1, + "existsb2.": 1, + "x0": 14, + "plus_id_exercise": 1, + "k1": 5, + "meq_left": 1, + "idBBBB": 2, + "factorial": 2, + "Example": 37, + "E_AMult": 2, + "Hlt.": 1, + "IHP2": 1, + "H21": 3, + "step_cases": 4, + "other": 20, + "%": 3, + "Hswap": 2, + "Forall2_app_inv_r": 1, + "Equivalence_Reflexive": 1, + "meq_congr.": 1, + "le_S.": 4, + "In": 6, + "Temp3.": 1, + "elim": 21, + "leA_Tree_Node": 1, + "IHm": 2, + "v_abs.": 2, + "leA": 25, + "app": 5, + "discriminate.": 2, + "silly1": 1, + "Hy": 14, + "ceval_step": 3, + "defs.": 2, + "z.": 6, + "nil": 46, + "sinstr": 8, + "idtac": 1, + "@In": 1, + "THEN": 3, + "reflexive.": 1, + "sym_not_eq.": 2, + "rsc_step.": 2, + "o": 25, + "ty_Bool.": 1, + "bool_step_prop4.": 2, + "compatible": 1, + "step": 9, + "x2.": 2, + "mult_0_r.": 4, + "override.": 2, + "reflexivity.": 199, + "com": 5, + "s_compile1": 1, + "E_BFalse": 1, + "T": 49, + "Mergesort.": 1, + "end.": 52, + "HSnx": 1, + "multiplicity_InA_S": 1, + "T2": 20, + "override_eq": 1, + "filter": 3, + "all3_spec": 1, + "Hx.": 5, + "inj_restrict": 1, + "Heqr.": 1, + "extend": 1, + "eq.": 11, + "Lt.lt_le_trans": 2, + "Permutation_middle.": 3, + "Permutation_middle": 2, + "value_not_same_as_normal_form": 2, + "heap_exist": 3, + "Case": 51, + "Hneq.": 2, + "map": 4, + "InA": 8, + "multiplicity_InA": 4, + "nandb": 5, + "symmetry": 4, + "Import": 11, + "not_eq_beq_id_false": 1, + "xs": 7, + "Basics.": 2, + "Hnm": 3, + "E.": 2, + "tm_const": 45, + "T2.": 1, + "Tree_Node": 11, + "BEq": 9, + "Permutation_nth_error": 2, + "Hxx": 1, + "permut_app_inv1": 1, + "LeA": 1, + "setoid_rewrite": 2, + "interval_dec.": 1, + "P.": 5, + "list123": 1, + "h": 14, + "assumption": 10, + "Hneqx": 1, + "eq_rect_eq_nat": 2, + "y2": 5, + "le_trans": 4, + "plus_comm.": 3, + "if_eqA_rewrite_l": 1, + "l3": 12, + "a0": 15, + "Heq": 8, + "id.": 1, + "x=": 1, + "and": 1, + "Omega": 1, + "M": 4, + "silly_presburger_formula": 1, + "IHn.": 3, + "intros": 258, + "beq_id_eq": 4, + "mult_mult": 1, + "assertion": 3, + "2": 1, + "plus_0_r.": 1, + "bool.": 1, + "equivalence": 1, + "j.": 1, + "Hl2": 1, + "AExp.": 2, + "adapt.": 2, + "Permutation_ind_bis": 2, + "bool_step_prop4_holds": 1, + "SimpleArith1.": 2, + "None.": 2, + "HeapT3": 1, + "H1.": 31, + "IHe2": 6, + "Proof": 12, + "optimize_0plus_all_sound": 1, + "lt_irrefl": 2, + "X.": 4, + "n1": 45, + "ELSE": 3, + "c.": 5, + "Require": 17, + "Imp.": 1, + "HdRel": 4, + "beq_nat_sym": 2, + "tm_false": 5, + "|": 457, + "Lt.le_lt_or_eq": 3, + "rev": 7, + "test_hd_opt1": 2, + "T12": 2, + "xSn": 21, + "Sn_le_Sm__n_le_m.": 1, + "idB": 2, + "beq_id_refl": 1, + "Lt.le_or_lt": 1, + "v_const": 4, + "silly_ex": 1, + "Export": 10, + "a": 207, + "injective_map_NoDup": 2, + "@rev": 1, + "lt_n_Sn.": 1, + "false": 48, + "HeqCoiso2.": 1, + "app_nil_end": 1, + "rsc_R": 2, + "Hy0": 1, + "aevalR": 18, + "double_injective": 1, + "has_type": 4, + "E_Skip": 1, + "Alternative": 1, + "beq_natlist": 5, + "ty.": 2, + "bin": 9, + "+": 227, + "grumble": 3, + "v1": 7, + "first": 18, + "intros.": 27, + "Htrans.": 1, + "XtimesYinZ": 1, + "i2": 10, + "as": 77, + "IHclos_refl_trans2.": 2, + "le_ind": 1, + "silly7": 1, + "override_example": 1, + "..": 4, + "Tree_Leaf.": 1, + "test_andb34": 1, + "sunday": 2, + "cons": 26, + "t2": 51, + "Heqloopdef.": 8, + "index_okx": 1, + "nil.": 2, + "surjective_pairing": 1, + "beq_id_false_not_eq.": 1, + "induction": 81, + "countoddmembers": 1, + "meq_sym": 2, + "not": 1, + "b2": 23, + "command": 2, + "forallb": 4, + "IHHce2.": 1, + "if_eqA_then": 1, + "eqA.": 1, + "nat_scope.": 3, + "test_orb4": 1, + "Z": 11, + "H12.": 1, + "HeqS": 3, + "ST_ShortCut.": 1, + "Arguments.": 2, + "natprod.": 1, + "card_inj": 1, + "replace": 4, + "mult_assoc": 1, + "H.": 100, + "Permutation_refl": 1, + "plus_reg_l": 1, + "S.": 1, + "total_relation_not_partial_function": 1, + "T11.": 4, + "curry_uncurry": 1, + "stack": 7, + "A.": 6, + "nn.": 1, + "t2.": 4, + "assumption.": 61, + "IHl": 8, + "permut_app": 1, + "option_elim": 2, + "al": 3, + "ny.": 1, + "exfalso.": 1, + "clear": 7, + "Hx": 20, + "Immediate": 1, + "Hmn.": 1, + "type_scope.": 1, + "HF.": 3, + "decide": 1, + "remove_all": 2, + "@HdRel_inv": 2, + "@app": 1, + "||": 1, + "E_WhileEnd": 2, + "test_factorial1": 1, + "m.": 21, + "n": 369, + "refl_step_closure": 11, + "fold_map": 2, + "test": 4, + "v_const.": 1, + "if_eqA_rewrite_r": 1, + "SetoidList.": 1, + "Heqg": 1, + "H4.": 2, + "optimize_0plus": 15, + "adapt_injective.": 1, + "S": 186, + "E_IfTrue": 2, + "noWhilesIf": 1, + "prog": 2, + "beq_id_false_not_eq": 1, + "partial_map": 4, + "IHcontra2.": 1, + "T1": 25, + "LE": 11, + "Forall2_app": 1, + "rsc_trans": 4, + "eq1.": 5, + "IHe": 2, + "no_whiles_terminate": 1, + "IHle.": 1, + "Qed": 23, + "HeqS.": 2, + "le_n_O_eq.": 2, + "split": 14, + "Hq": 3, + "next_weekday": 3, + "eq_nat_dec.": 1, + "Htrans": 1, + "Temp2.": 1, + "is_heap": 18, + "Playground1.": 5, + "permut_refl.": 5, + "y1": 6, + "g": 6, + "plus_ble_compat_1": 1, + "map_length.": 1, + "l2": 73, + "Hfbound.": 2, + "Theorem": 115, + "beq_nat": 24, + "in": 221, + "contradiction": 8, + "swap_pair": 1, + "level": 11, + "1": 1, + "ty_Bool": 10, + "Heqx.": 2, + "eqA": 29, + "IHa.": 1, + "mumble": 5, + "Hl1": 1, + "IHl.": 7, + "List": 2, + "rt_refl.": 2, + "optimize_0plus_all": 2, + "app_length": 1, + "Heqf.": 2, + "S_nbeq_0": 1, + "Arguments": 11, + "munion_comm": 1, + "IHe1": 6, + "SfLib.": 2, + "cons_leA": 2, + "n0": 5, + "plus_assoc": 1, + "Permutation_cons_app": 3, + "bag": 3, + "discriminate": 3, + "noWhilesAss.": 1, + "not_eq_beq_false.": 1, + "{": 39, + "Hafi.": 2, + "nth_error": 7, + "cons_leA.": 2, + "E_BLe": 1, + "T11": 2, + "subst.": 43, + "noWhilesSeq": 1, + "oddb": 5, + "beq_nat_O_l": 1, + "LT.": 5, + "do": 4, + "no_Whiles": 10, + "Gamma": 10, + "gtA": 1, + "repeat": 11, + "revert": 5, + "bexp.": 1, + "E": 7, + "Forall2_cons": 1, + "lt_trans": 4, + "tm_false.": 3, + "then": 9, + "rt_refl": 1, + "IHt.": 1, + "H4": 7, + "e.": 15, + "le_Sn_le": 2, + "pattern": 2, + "right": 2, + "perm_swap.": 2, + "ST_Plus1": 2, + "f_equal": 1, + "Permutation": 38, + "mult": 3, + "p.": 9, + "*": 59, + "leA_refl": 1, + "card": 2, + "double": 2, + "ST_PlusConstConst.": 3, + "pair": 7, + "permutation.": 1, + "flat_exist": 3, + "l2.": 8, + "i1": 15, + "Hnm.": 3, + "silly6": 1, + "perm_skip": 1, + "mult_0_plus": 1, + "t1": 48, + "test_andb33": 1, + "parsing": 3, + "permut_cons": 5, + "cons_sort": 2, + "IHHT1.": 1, + "eapply": 8, + "ble_nat": 6, + "permutation": 43, + "merge_exist": 5, + "ceval_cases": 1, + "t": 93, + "HT1.": 1, + "b1": 35, + "test_beq_natlist2": 1, + "merge0.": 2, + "Hlt": 3, + "app_assoc": 2, + "is_heap_rec": 1, + "test_orb3": 1, + "Y": 38, + "dep_pair_intro.": 3, + "not.": 3, + "x.": 3, + "@nil": 1, + "v_abs": 1, + "intro": 27, + "ST_IfFalse": 1, + "eval__value": 1, + "permut_middle": 1, + "seq": 2, + "le_antisymmetric": 1, + "SMult": 11, + "nth_error_None": 4, + "perm_trans": 1, + "None": 9, + "test_repeat1": 1, + "Hskip": 3, + "eq": 4, + "IHP": 2, + "BTrue": 10, + "andb3": 5, + "plus_swap.": 2, + "Hceval.": 4, + "test_oddb2": 1, + "simpl": 116, + "m": 201, + "le_reflexive": 1, + "Permutation_sym": 1, + "mult_1_plus": 1, + "Heqf": 1, + "sillyex2": 1, + "BFalse": 11, + "clos_refl_trans": 8, + "R": 54, + "C.": 3, + "N.": 1, + "Nonsense.": 4, + "Arith.": 2, + "plus_swap": 2, + "IHe1.": 11, + "Lt.lt_not_le": 2, + "nf_same_as_value": 3, + "treesort_twist2": 1, + "T0": 2, + "optimize_and": 5, + "is_heap_rect": 1, + "ident": 9, + "lt_O_neq": 2, + "T_Var.": 1, + "wednesday": 3, + "contradict": 3, + "APlus": 14, + "fold_map.": 1, + "seq_NoDup.": 1, + "plus_reg_l.": 1, + "PG": 2, + "SLoad": 6, + "evenb": 5, + "surjective": 1, + "false.": 12, + "Hal": 1, + "stepmany_congr_1": 1, + "step_deterministic": 1, + "h.": 1, + "mult_plus_distr_r": 1, + "rename": 2, + "preorder": 1, + "state": 6, + "Hp": 5, + "monday": 5, + "plus_distr.": 1, + "SKIP": 5, + "s.": 4, + "insert_exist": 4, + "meq": 15, + "true": 68, + "trivial.": 14, + "IHhas_type2.": 1, + "beq_nat_O_r": 1, + "L12": 2, + "permut_rev": 1, + "f": 108, + "IHc2": 2, + "order": 2, + "ftrue": 1, + "Permutation_cons_append.": 3, + "red.": 1, + "l1": 89, + "<=n}>": 1, + "a.": 6, + "orb": 8, + "le_not_lt": 1, + "test_optimize_0plus": 1, + "tm": 43, + "friday": 3, + "Hf.": 1, + "count": 7, + "left": 6, + "0": 5, + "zero_nbeq_S": 1, + "proj1_sig": 1, + "Hperm": 7, + "Temp4.": 2, + "InA_split": 1, + "andb": 8, + "Logic.": 1, + "beval_short_circuit": 5, + "test_remove_one1": 1, + "True": 1, + "optimize_0plus_sound": 4, + "HT.": 1, + "st1": 2, + "power": 2, + "prod_curry": 3, + "Lists.": 1, + "plus_1_1.": 1, + "natlist": 7, + "next_nat_partial_function": 1, + "meq_trans.": 1, + "z": 14, + "Hfx": 2, + "Hmo": 1, + "tm_var": 6, + "remove_decreases_count": 1, + "eqA_dec.": 2, + "mult_0_1": 1, + "rt_step": 1, + "IHc1.": 2, + "plus3": 2, + "r2": 2, + "using": 18, + "datatypes.": 47, + "_": 67, + "in_seq": 4, + "a0.": 1, + "base": 3, + "intuition.": 2, + "Abs": 2, + "Hy.": 3, + "if": 10, + "mult_mult.": 3, + "H3": 4, + "interval_discr": 1, + "D": 9, + "ny": 2, + "Relations.": 1, + "beval_iff_bevalR": 1, + "le_n_S": 1, + "Hypothesis": 7, + "lt.": 2, + "total": 2, + "NEQ": 1, + "Hneqx.": 2, + "partial_function.": 5, + "FI": 3, + ")": 1249, + "only": 3, + "flat_spec": 3, + "list": 78, + "le_lt_trans": 2, + "t_true": 1, + "s_compile": 36, + "Hneq": 7, + "nat_bijection_Permutation": 1, + "permutation_Permutation": 1, + "nil_is_heap": 5, + "constructor": 6, + "lt": 3, + "silly5": 1, + "Permutation_impl_permutation": 1, + "test_andb32": 1, + "Heqst1": 1, + "E_BAnd": 1, + "Hle.": 1, + "Q.": 2, + "Implicit": 15, + "aeval_iff_aevalR": 9, + "permut_nil": 3, + "list_contents_app.": 1, + "s": 13, + "test_beq_natlist1": 1, + "LeA.": 1, + "refl_equal": 4, + "BAnd": 10, + "meq.": 2, + "test_orb2": 1, + "Section": 4, + "try": 17, + "X": 191, + "rev_exercise": 1, + "Tree": 24, + "minus": 3, + "no_whiles": 15, + "contra1.": 1, + "ListNotations.": 1, + "@if_eqA_rewrite_l": 2, + "Coiso1.": 2, + "let": 3, + "SimpleArith2.": 1, + "permut_InA_InA": 3, + "bool": 38, + "H2.": 20, + "match": 70, + "Y.": 1, + "eq2": 1, + "plus_comm": 3, + "tm_app": 7, + "ST_Plus1.": 2, + "length": 21, + "minustwo": 1, + "le_order": 1, + "E_Ass": 1, + "ex_falso_quodlibet.": 1, + "munion": 18, + "Context.": 1, + "contra.": 19, + "subst": 7, + "combine": 3, + "Local": 7, + "nil_is_heap.": 1, + "IHa1.": 1, + "permut_length_1.": 2, + "silly2a": 1, + "pred_inj.": 1, + "congruence.": 1, + "app_comm_cons": 5, + "Instance": 7, + "test_oddb1": 1, + "l": 379, + "Hceval": 2, + "fun": 17, + "munion_ass.": 2, + "id2": 2, + "Sn_le_Sm__n_le_m": 2, + "sillyex1": 1, + "Q": 3, + "is": 4, + "Compare_dec": 1, + "eval": 8, + "remove_one": 3, + "le_trans.": 1, + "ST_App2": 1, + "False.": 1, + "iff": 1, + "normal_form.": 2, + "treesort_twist1": 1, + "bin.": 1, + "Hfinj": 1, + "leA_antisym": 1, + "eq_rect": 3, + "mult_1_distr.": 1, + "Permutation_NoDup": 1, + "IHt1.": 1, + "index": 3, + "munion_rotate.": 1, + "card_interval": 1, + "interval_dec": 1, + "Resolve": 5, + "Notation": 39, + "Multiset": 2, + "E_BNot": 1, + "next_nat_closure_is_le": 1, + "test_aeval1": 1, + "H12": 2, + "tm_plus": 30, + "Let": 8, + "update": 2, + "beval_short_circuit_eqv": 1, + "types_unique": 1, + "assert": 68, + "fmostlytrue": 5, + "arith.": 8, + "y2.": 3, + "Forall2.": 1, + "SPlus": 10, + "c2": 9, + "Id": 7, + "BNot": 9, + "Permutation_app_swap": 1, + "app_nil_r": 1, + "fix": 2, + "E_IfFalse": 1, + "plus_id_example": 1, + "ST_If.": 2, + "BLe": 9, + "permut_refl": 1, + "Heqy": 1, + "i1.": 3, + "override_example4": 1, + "Permutation_app_comm": 3, + "ST_PlusConstConst": 3, + "rsc_refl": 1, + "HT": 1, + "Hgsurj.": 1, + "e": 53, + "bval": 2, + "IHc1": 2, + "s_execute": 21, + "test_nandb4": 1, + "Prop": 17, + "emptyBag": 4, + "day": 9, + "plus_1_neq_0": 1, + "@meq": 4, + "Hle": 1, + "l0": 7, + "Scheme": 1, + "true.": 16, + "adapt_ok": 2, + "Permutation_cons_append": 1, + "E_BTrue": 1, + "IHt3": 1, + "empty_state": 2, + "appears_free_in": 1, + "override_neq": 1, + "tl": 8, + "e3": 1, + "eauto": 10, + "le_Sn_n": 5, + "injection": 4, + "injective": 6, + "/": 41, + "t3.": 2, + "treesort": 1, + "proj2_sig": 1, + "bl": 3, + "invert_heap": 3, + "END": 4, + "permut_tran": 1, + "rsc_refl.": 4, + "pose": 2, + "n.": 44, + "assignment": 1, + "existsb2": 2, + "via": 1, + "Hmn": 1, + "tm_cases": 1, + "transitive": 8, + "H5.": 1, + "y": 116, + "beval": 16, + "IHA": 2, + "auto": 73, + "Relations": 2, + "Heqr": 3, + "mult_1": 1, + "snoc_with_append": 1, + "@length": 1, + "r1": 2, + "destruct": 94, + "plus2": 1, + "bevalR": 11, + "IHhas_type1.": 1, + "Tactic": 9, + "ST_App1.": 2, + "Minus.minus_Sn_m": 1, + "Lt.S_pred": 3, + "Permutation_alt": 1, + "simple": 7, + "nx": 3, + "H2": 12, + "Permutation_in.": 2, + "permut_sym_app": 1, + "(": 1248, + "v.": 1, + "A2": 4, + "eq2.": 9, + "E_Const": 2, + "permut_length_2": 1, + "beq_false_not_eq": 1, + "AMinus": 9, + "<=n),>": 1, + "IHp": 2, + "silly4": 1, + "Hy1.": 5, + "test_andb31": 1, + "NoDup_Permutation_bis": 2, + "Reserved": 4, + "Ha": 6, + "andb_true_elim2": 4, + "r": 11, + "Permutation_trans": 4, + "noWhilesSKIP": 1, + "HF": 2, + "Ht.": 3, + "test_orb1": 1, + "le_not_a_partial_function": 1, + "mult_plus_1": 1, + "of": 4, + "Logic.eq": 2, + "meq_singleton": 1, + "stepmany": 4, + "ty": 7, + "execute_theorem.": 1, + "with": 223, + "Inductive": 41, + "in_map_iff": 1, + "if_eqA": 1, + "IHm.": 1, + "<": 76, + "normal_form": 3, + "by": 7, + "bin_comm": 1, + "IHl1.": 1, + "NoDup": 4, + "test_step_2": 1, + "eq1": 6, + "@munion": 1, + "le_n": 4, + "Permutation_app": 3, + "insert_spec": 3, + "step_example3": 1, + "transitivity": 4, + "apply": 340, + "le_antisymmetric.": 1, + "next_nat.": 1, + "other.": 4, + "le_S": 6, + "SPush": 8, + "H22.": 1, + "permut_remove_hd": 1, + "meq_right": 2, + "munion_ass": 1, + "value": 25, + "tactic": 9, + "eq_add_S": 2, + "Hnil": 1, + "ST_IfTrue": 1, + "exists": 60, + "Hlep.": 3, + "omega": 7, + "bool_step_prop4": 1, + "permut_cons_eq": 3, + "k": 7, + "ST_IfTrue.": 1, + "multiplicity_InA.": 1, + "NatList.": 2, + "id1": 2, + "f.": 1, + "BO": 4, + "auto.": 47, + "bounded": 1, + "P": 32, + "prod": 3, + "if_eqA_refl": 3, + "snd": 3, + "Hlep": 4, + "tm_if": 10, + "q.": 2, + "Hf3": 2, + "strong_progress": 2, + "multiplicity_InA_O": 2, + "permut_trans": 5, + "T.": 9, + "IHa2": 1, + "H8.": 1, + "adapt": 4, + "BD.": 1, + "Permutation_length": 2, + "permut_add_inside_eq": 1, + "l3.": 1, + "saturday": 3, + "WHILE": 5, + "e1.": 1, + "Heq.": 6, + "H11": 2, + "normalizing": 1, + "plus_n_Sm": 1, + "build_heap": 3, + "ANum": 18, + "@Permutation": 5, + "list_contents_app": 5, + "T_Abs.": 1, + "IHHT2.": 1, + "Equivalence_Reflexive.": 1, + "Hmo.": 4, + "aevalR_first_try.": 2, + "extend_neq": 1, + "IHb": 1, + "c1": 14, + "<->": 31, + "IHHmo.": 1, + "le": 1, + "rsc_step": 4, + "Hn": 1, + "permut_cons_InA": 3, + "exist": 7, + "Hfinj.": 3, + "ST_IfFalse.": 1, + "IH": 3, + "app_length.": 2, + "Heqx": 4, + "override_example3": 1, + "nil_app": 1, + "Permutation_app.": 1, + "context": 1, + "d": 6, + "test_nandb3": 1, + "y.": 15, + "test_next_weekday": 1, + "x1.": 3, + "IHt2": 3, + "e2": 54, + "IFB": 4, + "constructor.": 16, + "aexp": 30, + "prod_uncurry": 3, + "v_funny.": 1, + "*.": 110, + ".": 433, + "rtc_rsc_coincide": 1, + "relation": 19, + "Hl.": 1, + "LE.": 3, + "no_whiles_eqv": 1, + "ly": 4, + "decide_left": 1, + "option": 6, + "order.": 1, + "Permutation_alt.": 1, + "override": 5, + "Hg": 2, + "now": 24, + "bad": 1, + "x": 266, + "mult_distr": 1, + "munion_comm.": 2, + "Morphisms.": 2, + "IHi1": 3, + "card_inj_aux": 1, + "aexp_cases": 3, + "t_false": 1, + "E_Plus": 2, + "IHe2.": 10, + "plus_O_n": 1, + "]": 173, + "O.": 5, + "x2": 3, + "multiset": 2, + "Hfbound": 1, + "remember": 12, + "NoDupA_equivlistA_permut": 1, + "B": 6, + "natoption.": 1, + "ct": 2, + "execute_theorem": 1, + "id": 7, + "H1": 18, + "lt_le_trans": 1, + "hd_opt": 8, + "leA_trans": 2, + "le_uniqueness_proof": 1, + "beq_id": 14, + "Hgefy": 1, + "Variable": 7, + "eq_S.": 1, + "in_map_iff.": 2, + "Tree_Leaf": 9, + "into": 2, + "reflexive": 5, + "A1": 2, + "multiplicity": 6, + "insert": 2, + "Hginj": 1, + "permut_length_1": 1, + "permut_add_inside": 1, + "simpl.": 70, + "i.": 2, + "rt_step.": 2, + "ST_If": 1, + "SimpleArith0.": 2, + "silly3": 1, + "H0.": 24, + "t.": 4, + "le_neq_lt": 2, + "map_length": 1, + "negb": 10, + "tuesday.": 1, + "m1": 1, + "Sorted": 5, + "plus_1_1": 1, + "plus_O_n.": 1, + "andb_true_elim1": 4, + "q": 15, + "b.": 14, + "adapt_injective": 1, + "characterization": 1, + "option_elim_hd": 1, + "meq_congr": 1, + "empty_relation_not_partial_funcion": 1, + "right.": 9, + "Sorted.": 1, + "nth": 2, + "HE": 1, + "plus_rearrange": 1, + "le_reflexive.": 1, + "tx": 2, + "natoption": 5, + "m2.": 1, + "heap_to_list": 2, + "Eqdep_dec.": 1, + "break_list": 5, + "Temp5.": 1, + ";": 375, + "noWhilesSKIP.": 1, + "HeqCoiso1.": 1, + "constfun": 1, + "nat.": 4, + "Case_aux": 38, + "E_ANum": 1, + "v_false": 1, + "test_step_1": 1, + "preservation": 1, + "tm.": 3, + "IHhas_type.": 1, + "bin2un": 3, + "plus": 10, + "HSnx.": 1 }, "PowerShell": { - "Write": 2, - "-": 2, - "Host": 2, - "function": 1, "hello": 1, - "(": 1, - ")": 1, + "Write": 2, + "Host": 2, + "}": 1, "{": 1, - "}": 1 + ")": 1, + "(": 1, + "function": 1, + "-": 2 + }, + "Opa": { + "Hello": 2, + "Server.http": 1, + "server": 1, + "world": 2, + "<h1>": 2, + "Server.start": 1, + "</h1>": 2, + "Server.one_page_server": 1, + "page": 1, + "-": 1, + "title": 1, + "}": 2, + ")": 4, + "function": 1, + "{": 2, + "(": 4 + }, + "Max": { + "Hello": 1, + "newex": 8, + "button": 4, + "Goodbye": 1, + "setfont": 1, + "color": 2, + "linecount": 1, + "counter": 2, + "toto": 1, + "append": 1, + "window": 2, + "toggle": 1, + "pop": 1, + "metro": 1, + "connect": 13, + "message": 2, + "Verdana": 1, + "flags": 1, + "#X": 1, + "#B": 2, + "#P": 33, + "#N": 2, + "vpatcher": 1, + "v2": 1, + "fasten": 1, + "max": 1, + "World": 2, + "t": 2, + "newobj": 1, + "%": 1, + "route": 1, + "s": 1, + "jojo": 2, + "r": 1, + ";": 39 + }, + "FORTRAN": { + "DBLE": 22, + "*": 22, + "c": 22, + "INTEGER": 22, + ".gt.": 22, + "ABS": 22, + "for": 22, + "common": 22, + "dble": 22, + ".ge.": 22, + "ichar": 22, + "int": 22, + "/": 22, + "precision": 22, + "end": 22, + "DABS": 22, + "GO": 22, + "parameter": 22, + "J": 22, + "then": 22, + "external": 22, + "subroutine": 22, + ".OR.": 22, + "intrinsic": 22, + "dabs": 22, + "PROLOGUE": 22, + "if": 22, + "logical": 22, + ".not.": 22, + ")": 22, + "PRECISION": 22, + ".and.": 22, + "PARAMETER": 22, + "RETURN": 22, + "j": 22, + ".EQ.": 22, + "CONTINUE": 22, + ".or.": 22, + "return": 22, + "real": 22, + "ELSE": 22, + "SUBROUTINE": 22, + ".NE.": 22, + ".LT.": 22, + "prologue": 22, + "abs": 22, + "REAL": 22, + "else": 22, + ".LE.": 22, + "TO": 22, + "FOR": 22, + "I": 22, + "to": 22, + ".AND.": 22, + "IF": 22, + "INT": 22, + "THEN": 22, + "+": 22, + ".NOT.": 22, + "continue": 22, + "DOUBLE": 22, + "function": 22, + "SNGL": 22, + "END": 22, + ".GT.": 22, + "COMMON": 22, + "(": 22, + "compilex": 22, + ".ne.": 22, + ".GE.": 22, + ".eq.": 22, + "COMPILEX": 22, + "sngl": 22, + "i": 22, + "FLOAT": 22, + "float": 22, + "C": 22, + ".lt.": 22, + "LOGICAL": 22, + "FUNCTION": 22, + "double": 22, + ".le.": 22, + "ICHAR": 22, + "INTRINSIC": 22, + "-": 22, + "go": 22, + "integer": 22, + "CHARACTER": 22, + "EXTERNAL": 22, + "character": 22 + }, + "MediaWiki": { + "number": 2, + "and": 20, + "code": 1, + "views": 2, + "For": 1, + "dropped": 1, + "please": 1, + "wish": 1, + "method": 1, + "in": 15, + "path.": 1, + "Selecting": 2, + "using": 3, + "//wiki.eclipse.org/CDT/User/FAQ#How_can_I_trace_my_application_using_C.2FC.2B.2B_Tracepoints.3F": 1, + "updated.": 1, + "corresponding": 1, + "log": 1, + "icon": 1, + "Project": 1, + "]": 11, + "navigation": 1, + "Data": 4, + "be": 18, + "Eclipse": 1, + "Tracing": 3, + "tracing": 1, + "debugger": 1, + "table": 1, + "updated": 2, + "instance": 1, + "with": 4, + "CDT": 3, + "regular": 1, + "Guide": 2, + "type": 2, + "Monitoring": 1, + "recognized": 1, + "//wiki.eclipse.org/index.php/Linux_Tools_Project/GDB_Tracepoint_Analysis/User_Guide": 1, + "To": 1, + "User": 3, + "Tracepoint": 4, + "&": 1, + "set.": 1, + "tracepoint": 5, + "allows": 2, + "not": 1, + "If": 2, + "opened": 2, + "visit": 1, + "Executable": 1, + "directory.": 1, + "installed": 2, + "for": 2, + "also": 2, + "At": 1, + "redundant": 1, + "output": 1, + "following": 1, + "Debugger.": 1, + "created": 1, + "double": 1, + "shown": 1, + "row": 1, + "information": 1, + "editor": 7, + "selecting": 1, + "#References": 2, + "my": 1, + "projects.": 1, + "records.": 1, + "done": 2, + "as": 1, + "source": 2, + "Updating": 1, + "I": 1, + "step": 1, + "Alternatively": 1, + "scope": 1, + "manager.": 1, + "manage": 1, + "feature.": 1, + "requires": 1, + "create": 1, + "Right": 2, + "Getting": 1, + "found": 1, + "within": 1, + "associated": 1, + "folder": 5, + "if": 1, + "collaborative": 1, + "Document": 1, + "header.": 1, + "Guide.": 1, + "available": 1, + "update": 2, + "Overview": 1, + "select": 5, + "time": 2, + "at": 3, + "hidden": 1, + "omitted": 1, + "Visualizing": 1, + "Debugger": 4, + "document": 2, + "Started": 1, + "GDB": 15, + "stored": 1, + "used": 1, + "name": 2, + "record.": 2, + "editor.": 2, + "was": 2, + "running": 1, + "on": 3, + "column": 6, + "opened.": 1, + "It": 1, + "stack": 2, + "Opening": 1, + "maintained": 1, + "How": 1, + "a": 12, + "Viewing": 1, + "See": 1, + "recommended": 1, + "point": 1, + "Tracepoints": 1, + "includes": 1, + "Some": 1, + "collected": 2, + "press": 1, + "version": 1, + "trace": 17, + "this": 5, + "images/gdb_icon16.png": 1, + "right": 3, + "is": 9, + "see": 1, + "*": 6, + "This": 7, + "visualization": 1, + "tracepoint.": 3, + "References": 3, + "entering": 1, + "Postmortem": 5, + "relocate": 1, + "path": 1, + "Trace": 9, + "images/GDBTracePerspective.png": 1, + "section": 1, + "from": 8, + "debug": 1, + "details": 1, + "tree.": 1, + "default": 2, + "FAQ": 2, + "Events": 5, + "can": 9, + "clicking": 1, + "records": 1, + "expression": 1, + "Importing": 2, + "choose": 2, + "C/C": 10, + "The": 17, + "it": 3, + "editors": 1, + "+": 20, + "that": 4, + "Perspective": 1, + "line": 2, + "modify": 1, + "data": 5, + "later": 1, + "the": 72, + "executable.": 1, + "record": 2, + "open": 1, + "further": 1, + "shows": 7, + "instances": 1, + "first": 1, + "Browse": 2, + "where": 1, + "of": 8, + "Analysis": 1, + "component": 1, + "view": 7, + "Image": 2, + "context": 4, + "Eclipse.": 1, + "sequential": 1, + "one": 1, + "Type": 1, + "so": 2, + "status": 1, + "launched.": 1, + "identified": 1, + "http": 4, + "Navigating": 1, + "number.": 1, + "import.": 1, + "outside": 2, + "or": 8, + "Creating": 1, + "when": 1, + "keyboard": 1, + "entry": 2, + "-": 8, + "LTTng": 3, + "console": 1, + "run": 1, + "assigned": 1, + "launched": 1, + "your": 2, + "Select": 1, + "to": 12, + "properly.": 1, + "menu.": 4, + "show": 1, + "feature": 3, + "extension": 1, + "displays": 2, + "an": 3, + "executable": 3, + "imported": 1, + "host.": 1, + "program": 1, + "section.": 2, + "set": 1, + "each": 1, + "local": 1, + "|": 2, + "drag": 1, + "filtering": 1, + "enter": 2, + "Optionally": 1, + "thread": 1, + "by": 10, + "command": 1, + ".": 8, + "you": 1, + "navigated": 1, + "current": 1, + "project": 2, + "In": 5, + "dialog": 1, + "perspective": 2, + "[": 11, + "click": 8, + "workspace": 2, + "any": 2, + "projects": 1, + "file": 6, + "analysis": 1, + "application": 1, + "//wiki.eclipse.org/index.php/Linux_Tools_Project/LTTng2/User_Guide": 1, + "buttons.": 1, + "Searching": 1, + "contains": 1, + "wiki.": 1, + "mouse.": 1, + "collection": 1, + "Collecting": 2, + "area": 2, + "must": 3, + "Framework": 1, + "//wiki.eclipse.org/Linux_Tools_Project/GDB_Tracepoint_Analysis/User_Guide": 1, + "file.": 1, + "Click": 1, + "site": 1, + "external": 1, + "selected": 3, + "will": 6 + }, + "Diff": { + "index": 1, + "b/lib/linguist.rb": 2, + "a/lib/linguist.rb": 2, + "git": 1, + "diff": 1, + "+": 3, + "d472341..8ad9ffb": 1, + "-": 5 + }, + "GLSL": { + "Only": 1, + "h.y": 1, + "Configurations": 1, + "Defaults": 1, + "i.y": 1, + "specularColor": 2, + "uShift": 3, + "uv.x*uv.x": 1, + "resLeaves.w": 10, + "uv": 12, + "SSAA": 2, + "rayDir*res2.w": 1, + "trans": 2, + "sample.rgb": 1, + "h.w": 1, + "camera": 8, + "adsk_input1_w": 4, + "a1": 1, + "specularDot": 2, + "/": 24, + "impulse": 2, + "away": 1, + "iResolution.yy": 1, + "resWater.t": 1, + "n.y": 3, + "Left": 1, + "adsk_input1_frameratio": 5, + "pos*0.8": 2, + "be": 1, + "//if": 1, + "op.yz": 3, + "lut": 9, + "*ns.x": 2, + "direction": 1, + "exposure": 1, + "res.y": 2, + "-": 108, + "sample.a": 1, + ".rgb": 2, + "resSand": 2, + "between": 1, + "sampled.g": 1, + "p.y": 1, + "s1.xzyw*sh.zzww": 1, + "sunCol": 5, + "out": 1, + "grass": 2, + "distortion_f": 3, + "tonemapping": 1, + "rd.x": 1, + "k*x": 1, + "+": 108, + "rayDir*t": 2, + "DETAILED_NOISE": 3, + "res.w": 6, + "px.y": 2, + "det": 11, + ")": 386, + ".g": 1, + "//vec4": 3, + "quality": 2, + "x3": 4, + "lightLeaves": 3, + "D.yyy": 1, + "a0.zw": 1, + "/6.0": 1, + "p3": 5, + "sand": 2, + "slow": 1, + "rayPos": 38, + "void": 5, + "/7.0": 1, + "curve": 1, + "upDownSway": 2, + "x1": 4, + "rgb_f.gg": 1, + "sampled": 1, + "grassCol": 2, + "intersectTreasure": 2, + "distance": 1, + "lighting": 1, + "iq": 2, + "*2.0": 4, + "when": 1, + "Medium": 1, + "freeze": 1, + "aberrate": 4, + "p1": 5, + "fresnel": 2, + "}": 61, + "rgb_uvs": 12, + "b0": 3, + "ns": 4, + "iGlobalTime*0.5": 1, + "pos.yz": 2, + "alpha": 3, + "{": 61, + "gl_FragCoord.xy": 7, + "y.xy": 1, + "rgb_f.rr": 1, + "i1.z": 1, + "col*exposure": 1, + "lightColor": 3, + "floor": 8, + "browsers": 1, + "shadow": 4, + "i2.z": 1, + "uv.x": 11, + "N": 1, + "may": 1, + "i1.x": 1, + "y": 2, + "Optimized": 1, + "i2.x": 1, + "b1.xzyw": 1, + "#define": 13, + "openAmount": 4, + "||": 3, + "*7": 1, + "y_": 2, + "apply_disto": 4, + "mat2": 2, + "kCoeff": 2, + "fine": 1, + "Haarm": 1, + "rayDir*res.w": 1, + "iGlobalTime": 7, + "uvFact": 2, + "resSand.w": 4, + "GRASS": 3, + "leavesCol": 4, + "res2": 2, + "res": 6, + "quite": 1, + "HD2000": 1, + "b*b": 2, + "High": 1, + "sin": 8, + "s": 23, + "PI": 3, + "the": 1, + "dir.z": 1, + "rd": 1, + "treeCol": 2, + "varying": 3, + "scene": 7, + "pos.y": 8, + "treasure": 1, + "or": 1, + "g.xyz": 2, + "lessThan": 2, + "rdir": 3, + "adsk_result_h": 2, + "D": 1, + "rgb_f": 5, + "lut_r": 5, + "op": 5, + "/3": 1, + "intersectPlane": 3, + "dot": 30, + "dir.xy": 1, + "ao": 5, + "noise": 1, + "vec3": 165, + "eps.xyy": 1, + "taken": 1, + "m": 8, + "on": 3, + "iResolution.x/iResolution.y*0.5": 1, + "D.xzx": 1, + "e7": 3, + "Soft": 1, + "s0.xzyw*sh.xxyy": 1, + "i2": 2, + "sunDir": 5, + "k": 8, + "x*34.0": 1, + "for": 7, + "//": 36, + "resTreasure": 1, + "normal": 7, + "ns.z": 3, + "i": 38, + "water": 1, + "down": 1, + "#else": 5, + "C.xxx": 2, + "iChannel0": 3, + "col": 32, + "taylorInvSqrt": 2, + "<": 23, + ".z": 5, + "n_": 2, + "Shift": 1, + "g": 2, + "theta": 6, + "mod289": 4, + "x0.yzx": 1, + "Island": 1, + "Some": 1, + "norm.y": 1, + ".x": 4, + "y.zw": 1, + "cameraVector": 2, + "e": 4, + "AMBIENT": 2, + "clamp": 4, + "Other": 1, + "norm.w": 1, + "gradients": 1, + "e.xyy": 1, + "c": 6, + "eps": 5, + "sampled.r": 1, + "diffuse": 4, + "Peter": 1, + "individual": 1, + "reflDir": 3, + "sunDir*0.01": 2, + "width": 2, + "halfAngle": 2, + "gl_FragColor": 2, + "&&": 10, + "leavesPos.xz": 2, + "Up": 1, + "res2.w": 3, + "MAX_DIST": 3, + "lightDir": 3, + "h.z": 1, + ".r": 3, + "rad": 2, + "s0": 2, + "reflect": 1, + "k*res.x/t": 1, + "*C.x": 2, + "systems": 1, + "C.yyy": 2, + "i.z": 1, + "pos.y*0.03": 2, + "res.xyz": 1, + "fragmentNormal": 2, + "loop": 1, + "REFLECTIONS": 3, + "h.x": 1, + "resWater.w": 4, + "resTreasure.xyz": 1, + "trace": 2, + "resPlants.w": 6, + "RG": 1, + "intersectWater": 2, + "i.x": 1, + "]": 29, + "return": 47, + "a1.xy": 1, + "vgrass": 2, + "chroma_red": 2, + "x.xy": 1, + "resPlants": 2, + "k*10.0": 1, + "normalize": 14, + "*s": 4, + "NUM_LIGHTS": 4, + "refl": 3, + "[": 29, + "too": 1, + "chromaticize_and_invert": 2, + "sampler2D": 1, + "all": 1, + "*0.7": 1, + "a0": 1, + "pos.xz": 2, + "HIGHQUALITY": 2, + "sandCol": 2, + "gl_FragColor.rgba": 1, + "n.x": 1, + "rpos": 5, + "skyCol": 4, + "p.z": 2, + "MAX_DIST_SQUARED": 3, + "*0.5": 1, + "dir": 2, + "rd.y": 1, + "/3.0": 1, + "res.x": 3, + "ns.yyyy": 2, + "mod": 2, + "mix": 2, + "aliasing": 1, + "SMALL_WAVES": 4, + "p.x": 2, + "right": 1, + "angleOffset": 3, + "//#define": 10, + "D.wyz": 1, + "*": 115, + "sampled.rgb": 1, + "px.x": 2, + "x_": 3, + "plantsShadow": 2, + "chest": 1, + "norm": 1, + "TONEMAP": 5, + "adsk_result_w": 3, + "(": 386, + "#endif": 14, + "x2": 5, + "chroma_blue": 2, + "sampled.b": 1, + "p2": 5, + "rpos.yz": 2, + "sample": 2, + "reduce": 1, + "intersectSand": 3, + "rgb_f.bb": 1, + "x0": 7, + "Calculate": 1, + "//Normalise": 1, + "b1": 3, + "C.y": 1, + "sqrt": 6, + "p0": 5, + "vtree": 4, + "kCube": 2, + "D.y": 1, + "intersectCylinder": 1, + "////": 4, + "float": 103, + "Should": 1, + "*0.25": 4, + "p.xzy": 1, + ".b": 1, + "#ifdef": 14, + "lightVector": 4, + "Intel": 1, + "else": 1, + "uv.y": 7, + "adsk_input1_aspect": 1, + "step": 2, + ".5": 1, + "resTreasure.w": 4, + "resLeaves": 3, + "offset": 5, + "texture2D": 6, + "i1.y": 1, + "diffuse/specular": 1, + "works": 1, + "i2.y": 1, + "leaves": 7, + "rad*rad": 2, + "far": 1, + "min": 11, + "rdir2*t": 2, + "RAGGED_LEAVES": 5, + "max": 9, + "adsk_input1_h": 3, + "x": 11, + "x*": 2, + "sway": 5, + "Optimization": 1, + "bump": 2, + "tex": 6, + "eps.yxy": 1, + "Duiker": 1, + "incr": 2, + "v": 8, + "input1": 4, + "m*m": 1, + "r*r": 1, + "e20": 3, + "uniform": 7, + "snoise": 7, + "through": 1, + "max_r": 2, + "l.zxy": 2, + "traceReflection": 2, + "rayPos.y": 1, + "x0.xyz": 1, + "rdir2": 2, + "int": 7, + "t": 44, + "abs": 2, + "resSand.xyz": 1, + "a1.zw": 1, + "cameraDir": 2, + "if": 29, + "heightmap": 1, + "uv.y*uv.y": 1, + "waterHeight": 4, + "resPlants.xyz": 2, + "x.zw": 1, + "p.xz": 2, + "pos.z": 2, + "r": 14, + "calculate": 1, + "Fade": 1, + "*2": 2, + "vShift": 3, + "pos.x": 1, + "specular": 4, + "leavesPos": 4, + "p": 26, + "each": 1, + "MEDIUMQUALITY": 2, + "tree": 2, + "C": 1, + "intersectSphere": 2, + "vec4": 72, + "sign": 1, + "cos": 4, + "by": 1, + "n": 18, + "LIGHT_AA": 3, + "dist": 7, + "px": 4, + "m*pos.xy": 1, + "from": 2, + "vec2": 26, + "p*0.5": 1, + "HEAVY_AA": 2, + "length": 7, + "SHADOWS": 5, + "e8": 1, + "l": 1, + "light": 5, + "eps.yyx": 1, + "sh": 1, + "e.yxy": 1, + "distFactor": 3, + "crash": 1, + "rayDir": 43, + "and": 2, + "i1": 2, + "exp": 2, + "fbm": 2, + "j": 4, + "d.xzy": 1, + "to": 1, + "a0.xy": 1, + "main": 3, + "b0.xzyw": 1, + "permute": 4, + "waves": 3, + "rdir.yz": 1, + "h": 21, + "intersectLeaf": 2, + "pow": 3, + ";": 353, + "norm.z": 1, + ".y": 2, + "f": 17, + "s*s*": 1, + ".xzy": 2, + "bool": 1, + "const": 18, + "norm.x": 1, + "d": 10, + "final": 5, + "#version": 1, + "fragment": 1, + "Win7": 1, + "pos": 42, + "Avoid": 1, + "rotate": 5, + "rdir*t": 1, + "diffuseDot": 2, + "inverse_f": 2, + "Intersect": 11, + "fract": 1, + "chroma_green": 2, + "but": 1, + "b": 5, + "sky": 5, + "plants": 6, + "leaf": 1, + "resWater": 1, + "resLeaves.xyz": 2, + "chroma": 2, + "*x": 3, + "initialize": 1, + "used": 1, + "rayDir.y": 1, + "s1": 2, + "ct": 2 + }, + "Erlang": { + "timeToLive": 5, + "HOLDERS": 1, + "handling": 1, + "conditions": 3, + "FieldName": 26, + "LOSS": 1, + "file": 6, + "records": 1, + "prior": 1, + "reserved.": 1, + "parent_field": 2, + "generated": 1, + "WARRANTIES": 2, + "async_message": 12, + "verbose": 1, + "developed": 1, + "enable": 1, + "must": 3, + "reverse": 4, + "be": 1, + "For": 1, + "Truog": 2, + "OR": 8, + "USE": 2, + "thru": 1, + "disclaimer": 1, + "permission": 1, + "concat_ext": 4, + "file.": 1, + "Michael": 2, + "-": 262, + "written": 1, + "In": 2, + "X": 12, + "_Name": 1, + "create": 1, + "scans": 1, + "that": 1, + "AccParentFields": 6, + "Tree": 4, + "+": 214, + "join": 3, + "correlationId": 5, + "use": 2, + "include": 1, + "Vars": 7, + "ON": 1, + "dict": 2, + "fields_atom": 4, + "basic": 1, + "advertising": 1, + "disclaimer.": 1, + "Obj#abstract_message.clientId": 1, + "Obj#abstract_message.messageId": 1, + "is": 1, + "execute_overlay": 6, + ")": 230, + "DISCLAIMED.": 1, + "permitted": 1, + "materials": 2, + "T": 24, + "ModuleDeclaration": 2, + "list_to_integer": 1, + "Body": 2, + "get": 12, + "NSrc": 4, + "parse_field_atom": 4, + "tabs": 1, + "_BaseDir": 1, + "when": 29, + "OWNER": 1, + "OverlayConfig": 4, + "<->": 5, + "}": 109, + "OutDir": 4, + "Value": 35, + "based": 1, + "LIABILITY": 2, + "io": 5, + "%": 134, + "{": 109, + "ARISING": 1, + "process_overlay": 2, + "filelib": 1, + "exit_code": 3, + "SUCH": 1, + "CONTRIBUTORS": 2, + "Obj": 49, + "flatten": 6, + "N": 6, + "EVENT": 1, + "CONSEQUENTIAL": 1, + "may": 1, + "met": 1, + "generate_type_function": 3, + "OF": 8, + "Helper": 1, + "DATA": 1, + "utf": 1, + "reproduce": 1, + "Obj#abstract_message": 7, + "OutFile": 2, + "||": 6, + "SHEBANG#!escript": 3, + "INTERRUPTION": 1, + "debug": 1, + "EXPRESS": 1, + "mustache_key": 4, + "THE": 5, + "mkdir": 1, + "reltool": 2, + "lookup": 1, + "coding": 1, + "AccFields": 6, + "Mode": 1, + "distribution.": 1, + "compile": 2, + "PARTICULAR": 1, + "All": 2, + "ModuleName": 3, + "to_setter_getter_function": 5, + "parse_field": 6, + "erl": 1, + "HeaderComment": 2, + "try": 2, + "ARE": 1, + "cmd": 1, + "KeyStr": 6, + "Obj#abstract_message.body": 1, + "catched_error": 1, + "provided": 2, + "ADVISED": 1, + "the": 9, + "rebar": 1, + "RecordInfo": 2, + "Obj#abstract_message.headers": 1, + "syntax": 1, + "hrl": 1, + "This": 2, + "F": 16, + "or": 3, + "ParentRecordName": 8, + "record_field": 9, + "without": 2, + "getter": 2, + "author": 2, + "edit": 1, + "PROVIDED": 1, + "POSSIBILITY": 1, + "parsing": 1, + "Context": 11, + "GOODS": 1, + "headers": 5, + "Key": 2, + "PURPOSE": 1, + "NewObj": 20, + "INDIRECT": 1, + "dot": 1, + "CONTRACT": 1, + "AND": 4, + "Obj#async_message.correlationId": 1, + "B": 4, + "parse": 2, + "mnesia": 1, + "on": 1, + "IMPLIED": 2, + "usage": 3, + "mustache": 11, + "make/2": 1, + "setter": 2, + "destination": 5, + "display": 1, + "for": 1, + "WHETHER": 1, + "other": 1, + "net_adm": 1, + "format_src": 8, + "fac": 4, + "FITNESS": 1, + "MERCHANTABILITY": 1, + "SOFTWARE": 2, + "don": 1, + "with": 2, + "BSD": 1, + "acknowledgment": 1, + "<": 1, + "PField": 2, + "version": 1, + "make_dir": 1, + "case": 3, + "derived": 1, + "not": 1, + "sname": 1, + "software": 3, + "_S": 3, + "endorse": 1, + "of": 9, + "BUT": 2, + "parse_record": 3, + "SPECIAL": 1, + "code": 2, + "Obj#abstract_message.timeToLive": 1, + "_FieldName": 2, + "attribute": 1, + "parse_file": 1, + "promote": 1, + "IN": 3, + "c": 2, + "DAMAGE.": 1, + "The": 1, + "INCIDENTAL": 1, + "Spec": 2, + "Copyright": 1, + "field_atom": 1, + "Fields": 4, + "width": 1, + "root_dir": 1, + "proplists": 1, + "RecordFields": 10, + "products": 1, + "_Context": 1, + "_": 52, + "list_to_binary": 1, + "setters": 1, + "getters": 1, + "timestamp": 5, + "io_lib": 2, + "]": 61, + "copy": 1, + "tab": 1, + "from_list": 1, + "IF": 1, + "DAMAGES": 1, + "[": 66, + "Please": 1, + "Config": 2, + "<mjtruog>": 1, + "all": 1, + "is_atom": 2, + ".": 37, + "clientId": 5, + "body": 5, + "OUT": 1, + "Obj#abstract_message.timestamp": 1, + "export": 2, + "mode": 2, + "name": 1, + "dir": 1, + "factorial": 1, + "eexist": 1, + "system_info": 1, + "shell": 3, + "modification": 1, + "ANY": 4, + "this": 4, + "sys": 2, + "String": 2, + "BY": 1, + "PROCUREMENT": 1, + "messageId": 5, + "it": 2, + "*": 9, + "source": 2, + "export_all": 1, + "HOWEVER": 1, + "includes": 1, + "above": 2, + "localhost": 1, + "eval_target_spec": 1, + "(": 236, + "S": 6, + "OTHERWISE": 1, + "read": 2, + "sort": 1, + "form": 1, + "is_record": 25, + "field": 4, + "generate_fields_function": 2, + "get_cwd": 1, + "|": 25, + "BootRelVsn": 2, + "ParentProperty": 6, + "mentioning": 1, + "in": 3, + "ExitCode": 2, + "main/1": 1, + "Rest": 10, + "zzz": 1, + "true": 3, + "Src": 10, + "offset": 1, + "catch": 2, + "boot_rel_vsn": 2, + "Field": 2, + "list_to_existing_atom": 1, + "type": 6, + "RecordName": 41, + "make": 3, + "InFile": 3, + "record": 4, + "end.": 3, + "parse_field_name_atom": 5, + "helper": 1, + "TargetDir": 14, + "Redistribution": 1, + "undefined.": 1, + "following": 4, + "DIRECT": 1, + "find": 1, + "RelToolConfig": 5, + "WAY": 1, + "set": 13, + "TO": 2, + "t": 1, + "if": 1, + "HeaderFiles": 5, + "record_helper": 1, + "COPYRIGHT": 2, + "concat": 5, + "at": 1, + "os": 1, + "support": 1, + "SUBSTITUTE": 1, + "Out": 4, + "list": 2, + "error": 4, + "format": 7, + "smp": 1, + "are": 3, + "atom": 9, + "abstract_message": 21, + "CAUSED": 1, + "module": 2, + "each": 1, + "C": 4, + "EVEN": 1, + "LIMITED": 2, + "by": 1, + "generate_type_default_function": 2, + "Command": 3, + "get_target_spec": 1, + "BE": 1, + "FOR": 2, + "generate_setter_getter_function": 5, + "STRICT": 1, + "overlays": 1, + "indent": 1, + "retain": 1, + "parse_field_name": 5, + "header": 1, + "A": 5, + "from": 1, + "length": 6, + "SHALL": 1, + "rel": 2, + "rights": 1, + "THIS": 2, + "auto": 1, + "functions": 2, + "consult": 1, + "CommandSuffix": 2, + "erlang": 5, + "documentation": 1, + "make/1": 1, + "rel_vsn": 1, + "and": 8, + "NEGLIGENCE": 1, + "Redistributions": 2, + "Arguments": 3, + "ok": 34, + "NOT": 2, + "to": 2, + "main": 4, + "_TargetDir": 1, + "BUSINESS": 1, + "Error": 4, + "atom_to_list": 18, + "com": 1, + "IS": 1, + "THEORY": 1, + "gmail": 1, + "minimal": 2, + "product": 1, + "end": 3, + "flush": 1, + "Type1": 2, + "Result": 10, + "Obj#async_message": 3, + "Obj#async_message.correlationIdBytes": 1, + "Obj#async_message.parent": 3, + "TORT": 1, + "lists": 11, + "overlay": 2, + ";": 56, + "hostname": 1, + "is_file": 1, + "relative": 1, + "filename": 3, + "target_dir": 2, + "halt": 2, + "EXEMPLARY": 1, + "forms": 1, + "NewParentObject": 2, + "current": 1, + "notice": 2, + "INCLUDING": 3, + "HeaderFile": 4, + "_Vars": 1, + "LICENSE": 1, + "SERVICES": 1, + "LIABLE": 1, + "parent": 5, + "Ver.": 1, + "write_file": 1, + "erts_vsn": 1, + "copyright": 2, + "PROFITS": 1, + "_RelToolConfig": 1, + "correlationIdBytes": 5, + "OverlayVars": 2, + "Obj#abstract_message.destination": 1, + "specific": 1, + "generate_fields_atom_function": 2, + "and/or": 1, + "used": 1, + "Type": 3, + "binary": 2, + "features": 1, + "NO": 1, + "epp": 1, + "BaseDir": 7, + "Ver": 1, + "record_utils": 1, + "fields": 4, + "_Type": 1 + }, + "Literate CoffeeScript": { + "method": 1, + "if": 2, + "that": 2, + "exports.Scope": 1, + "Scope": 1, + "be": 2, + "knows": 1, + "for": 3, + "made": 1, + "shape": 1, + "Initialize": 1, + "@expressions": 1, + "@parent": 2, + "current": 1, + "nested": 1, + "given": 1, + "assignedVariables": 1, + "super": 1, + "Object": 1, + "top": 2, + "class": 2, + "find": 1, + "**Block**": 1, + "immediate": 3, + "when": 1, + "_": 3, + "plan": 1, + "chain": 1, + "unless": 1, + "Adds": 1, + "which": 3, + "@root": 1, + "where": 1, + "realVars.sort": 1, + "else": 2, + "to": 8, + "name": 8, + "realVars": 1, + "is": 3, + "{": 4, + "then": 1, + "not": 1, + "as": 3, + "@positions": 4, + "with": 3, + "@method": 1, + "constructor": 1, + "When": 1, + "@shared": 1, + "about": 1, + "Each": 1, + "v.name": 1, + "(": 5, + "and": 5, + "generate": 1, + "As": 1, + "helpers": 1, + "variable": 1, + "external": 1, + "tempVars.sort": 1, + "@variables.push": 1, + "variables": 3, + "extend": 1, + "scoping": 1, + "create": 1, + "list": 1, + "new": 2, + "within": 2, + "tempVars": 1, + "scope.": 2, + "level": 1, + "regulates": 1, + "assignments": 1, + "lexical": 1, + "]": 4, + "@variables": 3, + "**Scope**": 2, + "file.": 1, + "has": 1, + "add": 1, + "its": 3, + "object": 1, + "it": 4, + "at": 1, + "Return": 1, + "@parent.add": 1, + "you": 2, + "The": 2, + "node": 1, + "v": 1, + "shared": 1, + "in": 2, + "v.type.assigned": 1, + "up": 1, + "an": 1, + "the": 12, + "overrides": 1, + ")": 6, + "know": 1, + "declare": 1, + "should": 1, + "null": 1, + "we": 4, + ".push": 1, + "to.": 1, + "In": 1, + "or": 1, + "lookups": 1, + "reference": 3, + "way": 1, + "declared": 2, + "supposed": 1, + "function": 2, + "require": 1, + "tree": 1, + "bodies.": 1, + "param": 1, + "need": 2, + "a": 8, + "of": 4, + "return": 1, + "called": 1, + "CoffeeScript.": 1, + "parent": 2, + "last": 1, + "are": 3, + "Import": 1, + "[": 4, + "belongs": 2, + "Scope.root": 1, + "type": 5, + "scopes": 1, + ".type": 1, + "well": 1, + "code": 1, + "scopes.": 1, + "scope": 2, + "}": 4, + "this": 3, + "same": 1, + ".concat": 1, + "hasOwnProperty.call": 1, + "one.": 1, + "var": 4, + "root": 1, + "-": 5, + "existing": 1, + "use.": 1, + "enclosing": 1 + }, + "Makefile": { + "hello": 4, + "*o": 1, + "factorial.o": 3, + "main.o": 3, + "all": 1, + "clean": 1, + "hello.cpp": 2, + "factorial.cpp": 2, + "rf": 1, + "rm": 1, + "ls": 1, + "main.cpp": 2, + "SHEBANG#!make": 1, + "l": 1, + "%": 1, + "c": 3, + "o": 1, + "-": 6, + "+": 8, + "g": 4, + "hello.o": 3 + }, + "Gosu": { + "saveToFile": 1, + "stmt.executeQuery": 1, + "set": 1, + "Contact": 1, + "Name": 3, + "if": 4, + "for": 2, + "user": 1, + "Relationship.valueOf": 2, + "allPeople.where": 1, + "HashMap": 1, + "_name": 4, + "@": 1, + "class": 1, + "FRIEND": 1, + "int": 2, + "addPerson": 4, + "ALL_PEOPLE": 2, + "BUSINESS_CONTACT": 1, + "package": 2, + "FileWriter": 1, + "_age": 3, + "Person": 7, + "result.next": 1, + "ALL_PEOPLE.Values": 3, + "incrementAge": 1, + "name": 4, + "result.getString": 2, + "Hello": 2, + "construct": 1, + "{": 28, + "writer": 2, + "line.toPerson": 1, + "as": 3, + "not": 1, + "<String,>": 1, + "override": 1, + "users": 2, + "delegate": 1, + "+": 2, + "<User>": 1, + "printPersonInfo": 1, + "p.Name": 2, + "(": 54, + "contacts": 2, + "and": 1, + "user.FirstName": 1, + "<Contact>": 1, + "allPeople": 1, + "%": 2, + ".orderBy": 1, + "uses": 2, + "Collection": 1, + "defined": 1, + "Age": 1, + "id": 1, + "typeis": 1, + "implements": 1, + "vals": 4, + "readonly": 1, + "print": 4, + "<%>": 2, + "gst": 1, + "enhancement": 1, + "EmailHelper": 1, + "RelationshipOfPerson": 1, + "FAMILY": 1, + "new": 6, + "extends": 1, + "property": 2, + "get": 1, + "PersonCSVTemplate.renderToString": 1, + "line.HasContent": 1, + "line": 1, + "loadFromFile": 1, + "user.Department": 1, + "contact": 3, + "example": 2, + "this.split": 1, + "java.io.File": 1, + "result": 1, + "using": 2, + "java.util.*": 1, + "]": 4, + "conn.prepareStatement": 1, + "enum": 1, + "result.getInt": 1, + "String": 6, + "toPerson": 1, + "PersonCSVTemplate.render": 1, + "DBConnectionManager.getConnection": 1, + "hello": 1, + "in": 3, + "File": 2, + "relationship": 2, + "addAllPeople": 1, + ")": 55, + "stmt": 1, + "p": 5, + "file.eachLine": 1, + "getEmailName": 1, + "<%!-->": 1, + "represents": 1, + "stmt.setInt": 1, + "user.LastName": 1, + "IllegalArgumentException": 1, + ".Name": 1, + "age": 4, + "Integer": 3, + "function": 11, + "conn": 1, + "return": 4, + "<": 1, + "ALL_PEOPLE.containsKey": 2, + "file": 3, + "[": 4, + "contact.Name": 1, + "}": 28, + "this": 1, + "IEmailable": 2, + "List": 1, + "loadPersonFromDB": 1, + "throw": 1, + "p.Age": 1, + "var": 10, + "params": 1, + "static": 7, + "-": 3, + "@Deprecated": 1, + "_relationship": 2, + "Relationship": 3, + "_emailHelper": 2, + "getAllPeopleOlderThanNOrderedByName": 1 }, "Processing": { - "void": 2, - "setup": 1, - "(": 17, - ")": 17, - "{": 2, - "size": 1, - ";": 15, - "background": 1, - "noStroke": 1, - "}": 2, - "draw": 1, - "fill": 6, - "triangle": 2, - "rect": 1, - "quad": 1, - "ellipse": 1, "arc": 1, "PI": 1, - "TWO_PI": 1 - }, - "Prolog": { - "action_module": 1, - "(": 585, - "calculator": 1, - ")": 584, - ".": 210, - "%": 334, - "[": 110, - "-": 276, - "d1": 1, - "]": 109, - "push": 20, - "D": 37, - "if": 2, - "mode": 22, - "init": 11, - "<": 11, - "deny": 10, - "displayed": 17, - "D1": 5, - "affirm": 10, - "cont": 3, - "*D1": 2, - "+": 32, - "New": 2, - "a": 31, - "op": 28, - "d": 27, - "m": 16, - "clear": 4, - "nop": 6, - "accumulator": 10, - "A": 40, - "O": 14, - "memory": 5, - "M": 14, - "X": 62, - "mem_rec": 2, - "plus": 6, - "eval": 7, - "V": 16, - ";": 9, - "use": 3, - "normal": 3, - "arithmetic": 3, - "i.e.": 3, - "minus": 5, - "lt": 1, - "times": 4, - "equal": 2, - "mem_plus": 2, - "v": 3, - "where": 3, - "V1": 2, - "plus_minus": 1, - "normalize": 2, - "Wff": 3, - "NormalClauses": 3, - "conVert": 1, - "S": 26, - "cnF": 1, - "T": 6, - "flatten_and": 5, - "U": 2, - "make_clauses": 5, - "make": 2, - "sequence": 2, - "out": 4, - "of": 5, - "conjunction": 1, - "/": 2, - "Y": 34, - "F": 31, - "B": 30, - "sequence_append": 5, - "disjunction": 1, - "flatten_or": 6, - "append": 2, - "two": 1, - "sequences": 1, - "R": 32, - "separate": 7, - "into": 1, - "positive": 1, - "and": 3, - "negative": 1, - "literals": 1, - "P": 37, - "N": 20, - "|": 36, - "N1": 2, - "P1": 2, - "tautology": 4, - "some_occurs": 3, - "occurs": 4, - "_": 21, - "C": 21, - "make_clause": 5, - "false": 1, - "make_sequence": 9, - "H": 11, - "write_list": 3, - "write": 13, - "nl": 8, - "A*": 1, - "Algorithm": 1, - "Nodes": 1, - "have": 2, - "form": 2, - "S#D#F#A": 1, - "describes": 1, - "the": 15, - "state": 1, - "or": 1, - "configuration": 1, - "is": 22, - "depth": 1, - "node": 2, - "evaluation": 1, - "function": 4, - "value": 1, - "ancestor": 1, - "list": 1, - "for": 1, - "yfx": 1, - "solve": 2, - "State": 7, - "Soln": 3, - "f_function": 3, - "search": 4, - "State#0#F#": 1, - "reverse": 2, - "h_function": 2, - "H.": 1, - "State#_#_#Soln": 1, - "goal": 2, - "expand": 2, - "Children": 2, - "insert_all": 4, - "Open": 7, - "Open1": 2, - "Open3": 2, - "insert": 6, - "Open2": 2, - "repeat_node": 2, - "cheaper": 2, - "B1": 2, - "P#_#_#_": 2, - "_#_#F1#_": 1, - "_#_#F2#_": 1, - "F1": 1, - "F2.": 1, - "State#D#_#S": 1, - "All_My_Children": 2, - "bagof": 1, - "Child#D1#F#": 1, - "Move": 3, - "move": 7, - "Child": 2, - "puzzle": 4, - "solver": 1, - "A/B/C/D/E/F/G/H/I": 3, - "{": 3, - "...": 3, - "I": 5, - "}": 3, - "represents": 1, - "empty": 2, - "tile": 5, - "/2/3/8/0/4/7/6/5": 1, - "The": 1, - "moves": 1, - "left": 26, - "A/0/C/D/E/F/H/I/J": 3, - "/A/C/D/E/F/H/I/J": 1, - "A/B/C/D/0/F/H/I/J": 4, - "A/B/C/0/D/F/H/I/J": 1, - "A/B/C/D/E/F/H/0/J": 3, - "A/B/C/D/E/F/0/H/J": 1, - "A/B/0/D/E/F/H/I/J": 2, - "A/0/B/D/E/F/H/I/J": 1, - "A/B/C/D/E/0/H/I/J": 3, - "A/B/C/D/0/E/H/I/J": 1, - "A/B/C/D/E/F/H/I/0": 2, - "A/B/C/D/E/F/H/0/I": 1, - "up": 17, - "A/B/C/0/E/F/H/I/J": 3, - "/B/C/A/E/F/H/I/J": 1, - "A/0/C/D/B/F/H/I/J": 1, - "A/B/0/D/E/C/H/I/J": 1, - "A/B/C/D/E/F/0/I/J": 2, - "A/B/C/0/E/F/D/I/J": 1, - "A/B/C/D/0/F/H/E/J": 1, - "A/B/C/D/E/0/H/I/F": 1, - "right": 22, - "A/C/0/D/E/F/H/I/J": 1, - "A/B/C/D/F/0/H/I/J": 1, - "A/B/C/D/E/F/H/J/0": 1, - "/B/C/D/E/F/H/I/J": 2, - "B/0/C/D/E/F/H/I/J": 1, - "A/B/C/E/0/F/H/I/J": 1, - "A/B/C/D/E/F/I/0/J": 1, - "down": 15, - "A/B/C/H/E/F/0/I/J": 1, - "A/B/C/D/I/F/H/0/J": 1, - "A/B/C/D/E/J/H/I/0": 1, - "D/B/C/0/E/F/H/I/J": 1, - "A/E/C/D/0/F/H/I/J": 1, - "A/B/F/D/E/0/H/I/J": 1, - "heuristic": 1, - "Puzz": 3, - "p_fcn": 2, - "s_fcn": 2, - "*S.": 1, - "Manhattan": 1, - "distance": 1, - "Pa": 2, - "b": 12, - "Pb": 2, - "c": 10, - "Pc": 2, - "Pd": 2, - "e": 10, - "E": 3, - "Pe": 2, - "f": 10, - "Pf": 2, - "g": 10, - "G": 7, - "Pg": 3, - "h": 10, - "Ph": 2, - "i": 10, - "Pi": 1, - "Pi.": 1, - "cycle": 1, - "s_aux": 14, - "S1": 2, - "S2": 2, - "S3": 2, - "S4": 2, - "S5": 2, - "S6": 2, - "S7": 2, - "S8": 2, - "S9": 1, - "S9.": 1, - "animation": 1, - "using": 2, - "VT100": 1, - "character": 3, - "graphics": 1, - "animate": 2, - "message.": 2, - "initialize": 2, - "cursor": 7, - "get0": 2, - "_X": 2, - "play_back": 5, - "dynamic": 1, - "location/3.": 1, - "A/B/C/D/E/F/H/I/J": 1, - "cls": 2, - "retractall": 1, - "location": 32, - "assert": 17, - "J": 1, - "draw_all.": 1, - "draw_all": 1, - "draw": 18, - "call": 1, - "Put": 1, - "way": 1, - "message": 1, - "nl.": 1, - "put": 16, - "ESC": 1, - "screen": 1, - "quickly": 1, - "video": 1, - "attributes": 1, - "bold": 1, - "blink": 1, - "not": 1, - "working": 1, - "plain": 1, - "reverse_video": 2, - "Tile": 35, - "objects": 1, - "map": 2, - "s": 1, - "Each": 1, - "should": 1, - "be": 1, - "drawn": 2, - "at": 1, - "which": 1, - "asserted": 1, - "retracted": 1, - "by": 1, - "character_map": 3, - "spot": 1, - "to": 1, - "retract": 8, - "X0": 10, - "Y0": 10, - "Xnew": 6, - "Ynew": 6, - "Obj": 26, - "plain.": 1, - "hide": 10, - "hide_row": 4, - "Y1": 8, - "X1": 8, - "draw_row": 4, - "an": 1, - "Object": 1, - "partition": 5, - "Xs": 5, - "Pivot": 4, - "Smalls": 3, - "Bigs": 3, - "@": 1, - "Rest": 4, - "quicksort": 4, - "Smaller": 2, - "Bigger": 2, - "male": 3, - "john": 2, - "peter": 3, - "female": 2, - "vick": 2, - "christie": 3, - "parents": 4, - "brother": 1, - "turing": 1, - "Tape0": 2, - "Tape": 2, - "perform": 4, - "q0": 1, - "Ls": 12, - "Rs": 16, - "Ls1": 4, - "qf": 1, - "Q0": 2, - "Ls0": 6, - "Rs0": 6, - "symbol": 3, - "Sym": 6, - "RsRest": 2, - "once": 1, - "rule": 1, - "Q1": 2, - "NewSym": 2, - "Action": 2, - "action": 4, - "Rs1": 2, - "stay": 1, - "L": 2 - }, - "Python": { - "from": 34, - "__future__": 2, - "import": 47, - "unicode_literals": 1, - "copy": 1, - "sys": 2, - "functools": 1, - "update_wrapper": 2, - "future_builtins": 1, - "zip": 8, - "django.db.models.manager": 1, - "#": 13, - "Imported": 1, - "to": 4, - "register": 1, - "signal": 1, - "handler.": 1, - "django.conf": 1, - "settings": 1, - "django.core.exceptions": 1, - "(": 719, - "ObjectDoesNotExist": 2, - "MultipleObjectsReturned": 2, - "FieldError": 4, - "ValidationError": 8, - "NON_FIELD_ERRORS": 3, - ")": 730, - "django.core": 1, - "validators": 1, - "django.db.models.fields": 1, - "AutoField": 2, - "FieldDoesNotExist": 2, - "django.db.models.fields.related": 1, - "ManyToOneRel": 3, - "OneToOneField": 3, - "add_lazy_relation": 2, - "django.db": 1, - "router": 1, - "transaction": 1, - "DatabaseError": 3, - "DEFAULT_DB_ALIAS": 2, - "django.db.models.query": 1, - "Q": 3, - "django.db.models.query_utils": 2, - "DeferredAttribute": 3, - "django.db.models.deletion": 1, - "Collector": 2, - "django.db.models.options": 1, - "Options": 2, - "django.db.models": 1, - "signals": 1, - "django.db.models.loading": 1, - "register_models": 2, - "get_model": 3, - "django.utils.translation": 1, - "ugettext_lazy": 1, - "as": 11, - "_": 5, - "django.utils.functional": 1, - "curry": 6, - "django.utils.encoding": 1, - "smart_str": 3, - "force_unicode": 3, - "django.utils.text": 1, - "get_text_list": 2, - "capfirst": 6, - "class": 14, - "ModelBase": 4, - "type": 6, - "def": 68, - "__new__": 2, - "cls": 32, - "name": 39, - "bases": 6, - "attrs": 7, - "super_new": 3, - "super": 2, - ".__new__": 1, - "parents": 8, - "[": 152, - "b": 11, - "for": 59, - "in": 79, - "if": 145, - "isinstance": 11, - "]": 152, - "not": 64, - "return": 57, - "module": 6, - "attrs.pop": 2, - "new_class": 9, - "{": 25, - "}": 25, - "attr_meta": 5, - "None": 86, - "abstract": 3, - "getattr": 30, - "False": 28, - "meta": 12, - "else": 30, - "base_meta": 2, - "is": 29, - "model_module": 1, - "sys.modules": 1, - "new_class.__module__": 1, - "kwargs": 9, - "model_module.__name__.split": 1, - "-": 30, - "new_class.add_to_class": 7, - "**kwargs": 9, - "subclass_exception": 3, - "tuple": 3, - "x.DoesNotExist": 1, - "x": 22, - "hasattr": 11, - "and": 35, - "x._meta.abstract": 2, - "or": 27, - "x.MultipleObjectsReturned": 1, - "base_meta.abstract": 1, - "new_class._meta.ordering": 1, - "base_meta.ordering": 1, - "new_class._meta.get_latest_by": 1, - "base_meta.get_latest_by": 1, - "is_proxy": 5, - "new_class._meta.proxy": 1, - "new_class._default_manager": 2, - "new_class._base_manager": 2, - "new_class._default_manager._copy_to_model": 1, - "new_class._base_manager._copy_to_model": 1, - "m": 3, - "new_class._meta.app_label": 3, - "seed_cache": 2, - "only_installed": 2, - "obj_name": 2, - "obj": 4, - "attrs.items": 1, - "new_fields": 2, - "new_class._meta.local_fields": 3, - "+": 37, - "new_class._meta.local_many_to_many": 2, - "new_class._meta.virtual_fields": 1, - "field_names": 5, - "set": 3, - "f.name": 5, - "f": 19, - "base": 13, - "parent": 5, - "parent._meta.abstract": 1, - "parent._meta.fields": 1, - "raise": 22, - "TypeError": 4, - "%": 32, - "continue": 10, - "new_class._meta.setup_proxy": 1, - "new_class._meta.concrete_model": 2, - "base._meta.concrete_model": 2, - "o2o_map": 3, - "dict": 3, - "f.rel.to": 1, - "original_base": 1, - "parent_fields": 3, - "base._meta.local_fields": 1, - "base._meta.local_many_to_many": 1, - "field": 32, - "field.name": 14, - "base.__name__": 2, - "base._meta.abstract": 2, - "elif": 4, - "attr_name": 3, - "base._meta.module_name": 1, - "auto_created": 1, - "True": 20, - "parent_link": 1, - "new_class._meta.parents": 1, - "copy.deepcopy": 2, - "new_class._meta.parents.update": 1, - "base._meta.parents": 1, - "new_class.copy_managers": 2, - "base._meta.abstract_managers": 1, - "original_base._meta.concrete_managers": 1, - "base._meta.virtual_fields": 1, - "attr_meta.abstract": 1, - "new_class.Meta": 1, - "new_class._prepare": 1, - "copy_managers": 1, - "base_managers": 2, - "base_managers.sort": 1, - "mgr_name": 3, - "manager": 3, - "val": 14, - "new_manager": 2, - "manager._copy_to_model": 1, - "cls.add_to_class": 1, - "add_to_class": 1, - "value": 9, - "value.contribute_to_class": 1, - "setattr": 14, - "_prepare": 1, - "opts": 5, - "cls._meta": 3, - "opts._prepare": 1, - "opts.order_with_respect_to": 2, - "cls.get_next_in_order": 1, - "cls._get_next_or_previous_in_order": 2, - "is_next": 9, - "cls.get_previous_in_order": 1, - "make_foreign_order_accessors": 2, - "model": 8, - "field.rel.to": 2, - "cls.__name__.lower": 2, - "method_get_order": 2, - "method_set_order": 2, - "opts.order_with_respect_to.rel.to": 1, - "cls.__doc__": 3, - "cls.__name__": 1, - ".join": 3, - "f.attname": 5, - "opts.fields": 1, - "cls.get_absolute_url": 3, - "get_absolute_url": 2, - "signals.class_prepared.send": 1, - "sender": 5, - "ModelState": 2, - "object": 6, - "__init__": 5, - "self": 100, - "db": 2, - "self.db": 1, - "self.adding": 1, - "Model": 2, - "__metaclass__": 3, - "_deferred": 1, - "*args": 4, - "signals.pre_init.send": 1, - "self.__class__": 10, - "args": 8, - "self._state": 1, - "args_len": 2, - "len": 9, - "self._meta.fields": 5, - "IndexError": 2, - "fields_iter": 4, - "iter": 1, - "field.attname": 17, - "kwargs.pop": 6, - "field.rel": 2, - "is_related_object": 3, - "self.__class__.__dict__.get": 2, - "try": 17, - "rel_obj": 3, - "except": 17, - "KeyError": 3, - "field.get_default": 3, - "field.null": 1, - "prop": 5, - "kwargs.keys": 2, - "property": 2, - "AttributeError": 1, - "pass": 4, - ".__init__": 1, - "signals.post_init.send": 1, - "instance": 5, - "__repr__": 2, - "u": 9, - "unicode": 8, - "UnicodeEncodeError": 1, - "UnicodeDecodeError": 1, - "self.__class__.__name__": 3, - "__str__": 1, - ".encode": 1, - "__eq__": 1, - "other": 4, - "self._get_pk_val": 6, - "other._get_pk_val": 1, - "__ne__": 1, - "self.__eq__": 1, - "__hash__": 1, - "hash": 1, - "__reduce__": 1, - "data": 22, - "self.__dict__": 1, - "defers": 2, - "self._deferred": 1, - "deferred_class_factory": 2, - "factory": 5, - "defers.append": 1, - "self._meta.proxy_for_model": 1, - "simple_class_factory": 2, - "model_unpickle": 2, - "_get_pk_val": 2, - "self._meta": 2, - "meta.pk.attname": 2, - "_set_pk_val": 2, - "self._meta.pk.attname": 2, - "pk": 5, - "serializable_value": 1, - "field_name": 8, - "self._meta.get_field_by_name": 1, - "save": 1, - "force_insert": 7, - "force_update": 10, - "using": 30, - "update_fields": 23, - "ValueError": 5, - "frozenset": 2, - "field.primary_key": 1, - "non_model_fields": 2, - "update_fields.difference": 1, - "self.save_base": 2, - "save.alters_data": 1, - "save_base": 1, - "raw": 9, - "origin": 7, - "router.db_for_write": 2, - "assert": 7, - "meta.proxy": 5, - "meta.auto_created": 2, - "signals.pre_save.send": 1, - "org": 3, - "meta.parents.items": 1, - "parent._meta.pk.attname": 2, - "parent._meta": 1, - "non_pks": 5, - "meta.local_fields": 2, - "f.primary_key": 2, - "pk_val": 4, - "pk_set": 5, - "record_exists": 5, - "cls._base_manager": 1, - "manager.using": 3, - ".filter": 7, - ".exists": 1, - "values": 13, - "f.pre_save": 1, - "rows": 3, - "._update": 1, - "meta.order_with_respect_to": 2, - "order_value": 2, - "*": 33, - ".count": 1, - "self._order": 1, - "fields": 12, - "update_pk": 3, - "bool": 2, - "meta.has_auto_field": 1, - "result": 2, - "manager._insert": 1, - "return_id": 1, - "transaction.commit_unless_managed": 2, - "self._state.db": 2, - "self._state.adding": 4, - "signals.post_save.send": 1, - "created": 1, - "save_base.alters_data": 1, - "delete": 1, - "self._meta.object_name": 1, - "collector": 1, - "collector.collect": 1, - "collector.delete": 1, - "delete.alters_data": 1, - "_get_FIELD_display": 1, - "field.flatchoices": 1, - ".get": 2, - "strings_only": 1, - "_get_next_or_previous_by_FIELD": 1, - "self.pk": 6, - "op": 6, - "order": 5, - "param": 3, - "q": 4, - "|": 1, - "qs": 6, - "self.__class__._default_manager.using": 1, - "*kwargs": 1, - ".order_by": 2, - "self.DoesNotExist": 1, - "self.__class__._meta.object_name": 1, - "_get_next_or_previous_in_order": 1, - "cachename": 4, - "order_field": 1, - "self._meta.order_with_respect_to": 1, - "self._default_manager.filter": 1, - "order_field.name": 1, - "order_field.attname": 1, - "self._default_manager.values": 1, - "self._meta.pk.name": 1, - "prepare_database_save": 1, - "unused": 1, - "clean": 1, - "validate_unique": 1, - "exclude": 23, - "unique_checks": 6, - "date_checks": 6, - "self._get_unique_checks": 1, - "errors": 20, - "self._perform_unique_checks": 1, - "date_errors": 1, - "self._perform_date_checks": 1, - "k": 4, - "v": 11, - "date_errors.items": 1, - "errors.setdefault": 3, - ".extend": 2, - "_get_unique_checks": 1, - "unique_togethers": 2, - "self._meta.unique_together": 1, - "parent_class": 4, - "self._meta.parents.keys": 2, - "parent_class._meta.unique_together": 2, - "unique_togethers.append": 1, - "model_class": 11, - "unique_together": 2, - "check": 4, - "break": 2, - "unique_checks.append": 2, - "fields_with_class": 2, - "self._meta.local_fields": 1, - "fields_with_class.append": 1, - "parent_class._meta.local_fields": 1, - "f.unique": 1, - "f.unique_for_date": 3, - "date_checks.append": 3, - "f.unique_for_year": 3, - "f.unique_for_month": 3, - "_perform_unique_checks": 1, - "unique_check": 10, - "lookup_kwargs": 8, - "self._meta.get_field": 1, - "lookup_value": 3, - "str": 2, - "lookup_kwargs.keys": 1, - "model_class._default_manager.filter": 2, - "*lookup_kwargs": 2, - "model_class_pk": 3, - "model_class._meta": 2, - "qs.exclude": 2, - "qs.exists": 2, - "key": 5, - ".append": 2, - "self.unique_error_message": 1, - "_perform_date_checks": 1, - "lookup_type": 7, - "unique_for": 9, - "date": 3, - "date.day": 1, - "date.month": 1, - "date.year": 1, - "self.date_error_message": 1, - "date_error_message": 1, - "opts.get_field": 4, - ".verbose_name": 3, - "unique_error_message": 1, - "model_name": 3, - "opts.verbose_name": 1, - "field_label": 2, - "field.verbose_name": 1, - "field.error_messages": 1, - "field_labels": 4, - "map": 1, - "lambda": 1, - "full_clean": 1, - "self.clean_fields": 1, - "e": 13, - "e.update_error_dict": 3, - "self.clean": 1, - "errors.keys": 1, - "exclude.append": 1, - "self.validate_unique": 1, - "clean_fields": 1, - "raw_value": 3, - "f.blank": 1, - "validators.EMPTY_VALUES": 1, - "f.clean": 1, - "e.messages": 1, - "############################################": 2, - "ordered_obj": 2, - "id_list": 2, - "rel_val": 4, - "ordered_obj._meta.order_with_respect_to.rel.field_name": 2, - "order_name": 4, - "ordered_obj._meta.order_with_respect_to.name": 2, - "i": 7, - "j": 2, - "enumerate": 1, - "ordered_obj.objects.filter": 2, - ".update": 1, - "_order": 1, - "pk_name": 3, - "ordered_obj._meta.pk.name": 1, - "r": 3, - ".values": 1, - "##############################################": 2, - "func": 2, - "settings.ABSOLUTE_URL_OVERRIDES.get": 1, - "opts.app_label": 1, - "opts.module_name": 1, - "########": 2, - "Empty": 1, - "cls.__new__": 1, - "model_unpickle.__safe_for_unpickle__": 1, - ".globals": 1, - "request": 1, - "http_method_funcs": 2, - "View": 2, - "A": 1, - "which": 1, - "methods": 5, - "this": 2, - "pluggable": 1, - "view": 2, - "can": 1, - "handle.": 1, - "The": 1, - "canonical": 1, - "way": 1, - "decorate": 2, - "based": 1, - "views": 1, - "the": 5, - "of": 3, - "as_view": 1, - ".": 1, - "However": 1, - "since": 1, - "moves": 1, - "parts": 1, - "logic": 1, - "declaration": 1, - "place": 1, - "where": 1, - "it": 1, - "s": 1, - "also": 1, - "used": 1, - "instantiating": 1, - "view.view_class": 1, - "view.__name__": 1, - "view.__doc__": 1, - "view.__module__": 1, - "cls.__module__": 1, - "view.methods": 1, - "cls.methods": 1, - "MethodViewType": 2, - "d": 5, - "rv": 2, - "type.__new__": 1, - "rv.methods": 2, - "methods.add": 1, - "key.upper": 1, - "sorted": 1, - "MethodView": 1, - "dispatch_request": 1, - "meth": 5, - "request.method.lower": 1, - "request.method": 2, - "google.protobuf": 4, - "descriptor": 1, - "_descriptor": 1, - "message": 1, - "_message": 1, - "reflection": 1, - "_reflection": 1, - "descriptor_pb2": 1, - "DESCRIPTOR": 3, - "_descriptor.FileDescriptor": 1, - "package": 1, - "serialized_pb": 1, - "_PERSON": 3, - "_descriptor.Descriptor": 1, - "full_name": 2, - "filename": 1, - "file": 1, - "containing_type": 2, - "_descriptor.FieldDescriptor": 1, - "index": 1, - "number": 1, - "cpp_type": 1, - "label": 18, - "has_default_value": 1, - "default_value": 1, - "message_type": 1, - "enum_type": 1, - "is_extension": 1, - "extension_scope": 1, - "options": 3, - "extensions": 1, - "nested_types": 1, - "enum_types": 1, - "is_extendable": 1, - "extension_ranges": 1, - "serialized_start": 1, - "serialized_end": 1, - "DESCRIPTOR.message_types_by_name": 1, - "Person": 1, - "_message.Message": 1, - "_reflection.GeneratedProtocolMessageType": 1, - "SHEBANG#!python": 4, - "print": 39, - "os": 1, - "main": 4, - "usage": 3, - "string": 1, - "command": 4, - "sys.argv": 2, - "<": 1, - "sys.exit": 1, - "printDelimiter": 4, - "get": 1, - "a": 2, - "list": 1, - "git": 1, - "directories": 1, - "specified": 1, - "gitDirectories": 2, - "getSubdirectories": 2, - "isGitDirectory": 2, - "gitDirectory": 2, - "os.chdir": 1, - "os.getcwd": 1, - "os.system": 1, - "directory": 9, - "filter": 3, - "os.path.abspath": 1, - "subdirectories": 3, - "os.walk": 1, - ".next": 1, - "os.path.isdir": 1, - "__name__": 2, - "argparse": 1, - "matplotlib.pyplot": 1, - "pl": 1, - "numpy": 1, - "np": 1, - "scipy.optimize": 1, - "prettytable": 1, - "PrettyTable": 6, - "__docformat__": 1, - "S": 4, - "phif": 7, - "U": 10, - "/": 23, - "_parse_args": 2, - "V": 12, - "np.genfromtxt": 8, - "delimiter": 8, - "t": 8, - "U_err": 7, - "offset": 13, - "np.mean": 1, - "np.linspace": 9, - "min": 10, - "max": 11, - "y": 10, - "np.ones": 11, - "x.size": 2, - "pl.plot": 9, - "**6": 6, - ".format": 11, - "pl.errorbar": 8, - "yerr": 8, - "linestyle": 8, - "marker": 4, - "pl.grid": 5, - "pl.legend": 5, - "loc": 5, - "pl.title": 5, - "pl.xlabel": 5, - "ur": 11, - "pl.ylabel": 5, - "pl.savefig": 5, - "pl.clf": 5, - "glanz": 13, - "matt": 13, - "schwarz": 13, - "weiss": 13, - "T0": 1, - "T0_err": 2, - "glanz_phi": 4, - "matt_phi": 4, - "schwarz_phi": 4, - "weiss_phi": 4, - "T_err": 7, - "sigma": 4, - "boltzmann": 12, - "T": 6, - "epsilon": 7, - "T**4": 1, - "glanz_popt": 3, - "glanz_pconv": 1, - "op.curve_fit": 6, - "matt_popt": 3, - "matt_pconv": 1, - "schwarz_popt": 3, - "schwarz_pconv": 1, - "weiss_popt": 3, - "weiss_pconv": 1, - "glanz_x": 3, - "glanz_y": 2, - "*glanz_popt": 1, - "color": 8, - "matt_x": 3, - "matt_y": 2, - "*matt_popt": 1, - "schwarz_x": 3, - "schwarz_y": 2, - "*schwarz_popt": 1, - "weiss_x": 3, - "weiss_y": 2, - "*weiss_popt": 1, - "np.sqrt": 17, - "glanz_pconv.diagonal": 2, - "matt_pconv.diagonal": 2, - "schwarz_pconv.diagonal": 2, - "weiss_pconv.diagonal": 2, - "xerr": 6, - "U_err/S": 4, - "header": 5, - "glanz_table": 2, - "row": 10, - ".size": 4, - "*T_err": 4, - "glanz_phi.size": 1, - "*U_err/S": 4, - "glanz_table.add_row": 1, - "matt_table": 2, - "matt_phi.size": 1, - "matt_table.add_row": 1, - "schwarz_table": 2, - "schwarz_phi.size": 1, - "schwarz_table.add_row": 1, - "weiss_table": 2, - "weiss_phi.size": 1, - "weiss_table.add_row": 1, - "T0**4": 1, - "phi": 5, - "c": 3, - "a*x": 1, - "dx": 6, - "d**": 2, - "dy": 4, - "dx_err": 3, - "np.abs": 1, - "dy_err": 2, - "popt": 5, - "pconv": 2, - "*popt": 2, - "pconv.diagonal": 3, - "table": 2, - "table.align": 1, - "dy.size": 1, - "*dy_err": 1, - "table.add_row": 1, - "U1": 3, - "I1": 3, - "U2": 2, - "I_err": 2, - "p": 1, - "R": 1, - "R_err": 2, - "/I1": 1, - "**2": 2, - "U1/I1**2": 1, - "phi_err": 3, - "alpha": 2, - "beta": 1, - "R0": 6, - "R0_err": 2, - "alpha*R0": 2, - "*np.sqrt": 6, - "*beta*R": 5, - "alpha**2*R0": 5, - "*beta*R0": 7, - "*beta*R0*T0": 2, - "epsilon_err": 2, - "f1": 1, - "f2": 1, - "f3": 1, - "alpha**2": 1, - "*beta": 1, - "*beta*T0": 1, - "*beta*R0**2": 1, - "f1**2": 1, - "f2**2": 1, - "f3**2": 1, - "parser": 1, - "argparse.ArgumentParser": 1, - "description": 1, - "#parser.add_argument": 3, - "metavar": 1, - "nargs": 1, - "help": 2, - "dest": 1, - "default": 1, - "action": 1, - "version": 6, - "parser.parse_args": 1, - "absolute_import": 1, - "division": 1, - "with_statement": 1, - "Cookie": 1, - "logging": 1, - "socket": 1, - "time": 1, - "tornado.escape": 1, - "utf8": 2, - "native_str": 4, - "parse_qs_bytes": 3, - "tornado": 3, - "httputil": 1, - "iostream": 1, - "tornado.netutil": 1, - "TCPServer": 2, - "stack_context": 1, - "tornado.util": 1, - "bytes_type": 2, - "ssl": 2, - "Python": 1, - "ImportError": 1, - "HTTPServer": 1, - "request_callback": 4, - "no_keep_alive": 4, - "io_loop": 3, - "xheaders": 4, - "ssl_options": 3, - "self.request_callback": 5, - "self.no_keep_alive": 4, - "self.xheaders": 3, - "TCPServer.__init__": 1, - "handle_stream": 1, - "stream": 4, - "address": 4, - "HTTPConnection": 2, - "_BadRequestException": 5, - "Exception": 2, - "self.stream": 1, - "self.address": 3, - "self._request": 7, - "self._request_finished": 4, - "self._header_callback": 3, - "stack_context.wrap": 2, - "self._on_headers": 1, - "self.stream.read_until": 2, - "self._write_callback": 5, - "write": 2, - "chunk": 5, - "callback": 7, - "self.stream.closed": 1, - "self.stream.write": 2, - "self._on_write_complete": 1, - "finish": 2, - "self.stream.writing": 2, - "self._finish_request": 2, - "_on_write_complete": 1, - "_finish_request": 1, - "disconnect": 5, - "connection_header": 5, - "self._request.headers.get": 2, - "connection_header.lower": 1, - "self._request.supports_http_1_1": 1, - "self._request.headers": 1, - "self._request.method": 2, - "self.stream.close": 2, - "_on_headers": 1, - "data.decode": 1, - "eol": 3, - "data.find": 1, - "start_line": 1, - "method": 5, - "uri": 5, - "start_line.split": 1, - "version.startswith": 1, - "headers": 5, - "httputil.HTTPHeaders.parse": 1, - "self.stream.socket": 1, - "socket.AF_INET": 2, - "socket.AF_INET6": 1, - "remote_ip": 8, - "HTTPRequest": 2, - "connection": 5, - "content_length": 6, - "headers.get": 2, - "int": 1, - "self.stream.max_buffer_size": 1, - "self.stream.read_bytes": 1, - "self._on_request_body": 1, - "logging.info": 1, - "_on_request_body": 1, - "self._request.body": 2, - "content_type": 1, - "content_type.startswith": 2, - "arguments": 2, - "arguments.iteritems": 2, - "self._request.arguments.setdefault": 1, - "content_type.split": 1, - "sep": 2, - "field.strip": 1, - ".partition": 1, - "httputil.parse_multipart_form_data": 1, - "self._request.arguments": 1, - "self._request.files": 1, - "logging.warning": 1, - "body": 2, - "protocol": 4, - "host": 2, - "files": 2, - "self.method": 1, - "self.uri": 2, - "self.version": 2, - "self.headers": 4, - "httputil.HTTPHeaders": 1, - "self.body": 1, - "connection.xheaders": 1, - "self.remote_ip": 4, - "self.headers.get": 5, - "self._valid_ip": 1, - "self.protocol": 7, - "connection.stream": 1, - "iostream.SSLIOStream": 1, - "self.host": 2, - "self.files": 1, - "self.connection": 1, - "self._start_time": 3, - "time.time": 3, - "self._finish_time": 4, - "self.path": 1, - "self.query": 2, - "uri.partition": 1, - "self.arguments": 2, - "supports_http_1_1": 1, - "@property": 1, - "cookies": 1, - "self._cookies": 3, - "Cookie.SimpleCookie": 1, - "self._cookies.load": 1, - "self.connection.write": 1, - "self.connection.finish": 1, - "full_url": 1, - "request_time": 1, - "get_ssl_certificate": 1, - "self.connection.stream.socket.getpeercert": 1, - "ssl.SSLError": 1, - "n": 3, - "_valid_ip": 1, - "ip": 2, - "res": 2, - "socket.getaddrinfo": 1, - "socket.AF_UNSPEC": 1, - "socket.SOCK_STREAM": 1, - "socket.AI_NUMERICHOST": 1, - "socket.gaierror": 1, - "e.args": 1, - "socket.EAI_NONAME": 1 - }, - "R": { - "SHEBANG#!Rscript": 1, - "ParseDates": 2, - "<": 12, - "-": 12, - "function": 3, - "(": 28, - "lines": 4, - ")": 28, - "{": 3, - "dates": 3, - "matrix": 2, - "unlist": 2, - "strsplit": 2, - "ncol": 2, - "byrow": 2, - "TRUE": 3, - "days": 2, - "[": 3, - "]": 3, - "times": 2, - "hours": 2, - "all.days": 2, - "c": 2, - "all.hours": 2, - "data.frame": 1, - "Day": 2, - "factor": 2, - "levels": 2, - "Hour": 2, - "}": 3, - "Main": 2, - "system": 1, - "intern": 1, - "punchcard": 4, - "as.data.frame": 1, - "table": 1, - "ggplot2": 6, - "ggplot": 1, - "aes": 2, - "y": 1, - "x": 1, - "+": 2, - "geom_point": 1, - "size": 1, - "Freq": 1, - "scale_size": 1, - "range": 1, - "ggsave": 1, - "filename": 1, - "plot": 1, - "width": 1, - "height": 1, - "hello": 2, - "print": 1 - }, - "Racket": { - ";": 3, - "Clean": 1, - "simple": 1, - "and": 1, - "efficient": 1, - "code": 1, - "-": 100, - "that": 2, - "s": 1, - "the": 3, - "power": 1, - "of": 4, - "Racket": 2, - "http": 1, - "//racket": 1, - "lang.org/": 1, - "(": 25, - "define": 1, - "bottles": 4, - "n": 8, - "more": 2, - ")": 25, - "printf": 2, - "case": 1, - "[": 16, - "]": 16, - "else": 1, - "if": 1, - "for": 3, - "in": 3, - "range": 1, - "sub1": 1, - "displayln": 2, - "SHEBANG#!sh": 1, - "#": 2, - "|": 2, - "*": 2, - "scheme": 1, - "exec": 1, - "racket": 1, - "um": 1, - "require": 2, - "racket/file": 1, - "racket/path": 1, - "racket/list": 1, - "racket/string": 1, - "syntax": 1, - "racket/base": 1, - "#lang": 1, - "scribble/manual": 1, - "@": 3, - "scribble/bnf": 1, - "@title": 1, - "{": 2, - "Scribble": 3, - "The": 1, - "Documentation": 1, - "Tool": 1, - "}": 2, - "@author": 1, - "is": 3, - "a": 1, - "collection": 1, - "tools": 1, - "creating": 1, - "prose": 2, - "documents": 1, - "papers": 1, - "books": 1, - "library": 1, - "documentation": 1, - "etc.": 1, - "HTML": 1, - "or": 2, - "PDF": 1, - "via": 1, - "Latex": 1, - "form.": 1, - "More": 1, - "generally": 1, - "helps": 1, - "you": 1, - "write": 1, - "programs": 1, - "are": 1, - "rich": 1, - "textual": 1, - "content": 2, - "whether": 1, - "to": 2, - "be": 2, - "typeset": 1, - "any": 1, - "other": 1, - "form": 1, - "text": 1, - "generated": 1, - "programmatically.": 1, - "This": 1, - "document": 1, - "itself": 1, - "written": 1, - "using": 1, - "Scribble.": 1, - "You": 1, - "can": 1, - "see": 1, - "its": 1, - "source": 1, - "at": 1, - "let": 1, - "url": 3, - "link": 1, - "starting": 1, - "with": 1, - "@filepath": 1, - "scribble.scrbl": 1, - "file.": 1, - "@table": 1, - "contents": 1, - "@include": 8, - "section": 9, - "@index": 1 - }, - "Ragel in Ruby Host": { - "begin": 3, - "%": 34, - "{": 19, - "machine": 3, - "ephemeris_parser": 1, - ";": 38, - "action": 9, - "mark": 6, - "p": 8, - "}": 19, - "parse_start_time": 2, - "parser.start_time": 1, - "data": 15, - "[": 20, - "mark..p": 4, - "]": 20, - ".pack": 6, - "(": 33, - ")": 33, - "parse_stop_time": 2, - "parser.stop_time": 1, - "parse_step_size": 2, - "parser.step_size": 1, - "parse_ephemeris_table": 2, - "fhold": 1, - "parser.ephemeris_table": 1, - "ws": 2, - "t": 1, - "r": 1, - "n": 1, - "adbc": 2, - "|": 11, - "year": 2, - "digit": 7, - "month": 2, - "upper": 1, - "lower": 1, - "date": 2, - "hours": 2, - "minutes": 2, - "seconds": 2, - "tz": 2, - "datetime": 3, - "time_unit": 2, - "s": 4, - "soe": 2, - "eoe": 2, - "ephemeris_table": 3, - "alnum": 1, - "*": 9, - "-": 5, - "./": 1, - "start_time": 4, - "space*": 2, - "stop_time": 4, - "step_size": 3, - "+": 7, - "ephemeris": 2, - "main": 3, - "any*": 3, - "end": 23, - "require": 1, - "module": 1, - "Tengai": 1, - "EPHEMERIS_DATA": 2, - "Struct.new": 1, - ".freeze": 1, - "class": 3, - "EphemerisParser": 1, - "<": 1, - "def": 10, - "self.parse": 1, - "parser": 2, - "new": 1, - "data.unpack": 1, - "if": 4, - "data.is_a": 1, - "String": 1, - "eof": 3, - "data.length": 3, - "write": 9, - "init": 3, - "exec": 3, - "time": 6, - "super": 2, - "parse_time": 3, - "private": 1, - "DateTime.parse": 1, - "simple_scanner": 1, - "Emit": 4, - "emit": 4, - "ts": 4, - "..": 1, - "te": 1, - "foo": 8, - "any": 4, - "#": 4, - "SimpleScanner": 1, - "attr_reader": 2, - "path": 8, - "initialize": 2, - "@path": 2, - "stdout.puts": 2, - "perform": 2, - "pe": 4, - "ignored": 4, - "leftover": 8, - "File.open": 2, - "do": 2, - "f": 2, - "while": 2, - "chunk": 2, - "f.read": 2, - "ENV": 2, - ".to_i": 2, - "chunk.unpack": 2, - "||": 1, - "ts..pe": 1, - "else": 2, - "SimpleScanner.new": 1, - "ARGV": 2, - "s.perform": 2, - "simple_tokenizer": 1, - "MyTs": 2, - "my_ts": 6, - "MyTe": 2, - "my_te": 6, - "my_ts...my_te": 1, - "nil": 4, - "SimpleTokenizer": 1, - "my_ts..": 1, - "SimpleTokenizer.new": 1 - }, - "RDoc": { - "RDoc": 7, - "-": 9, - "Ruby": 4, - "Documentation": 2, - "System": 1, - "home": 1, - "https": 3, - "//github.com/rdoc/rdoc": 1, - "rdoc": 7, - "http": 1, - "//docs.seattlerb.org/rdoc": 1, - "bugs": 1, - "//github.com/rdoc/rdoc/issues": 1, - "code": 1, - "quality": 1, - "{": 1, - "<img>": 1, - "src=": 1, - "alt=": 1, - "}": 1, - "[": 3, - "//codeclimate.com/github/rdoc/rdoc": 1, - "]": 3, - "Description": 1, - "produces": 1, - "HTML": 1, - "and": 9, - "command": 4, - "line": 1, - "documentation": 8, - "for": 9, - "projects.": 1, - "includes": 1, - "the": 12, - "+": 8, - "ri": 1, - "tools": 1, - "generating": 1, - "displaying": 1, - "from": 1, - "line.": 1, - "Generating": 1, - "Once": 1, - "installed": 1, - "you": 3, - "can": 2, - "create": 1, - "using": 1, - "options": 1, - "names...": 1, - "For": 1, - "an": 1, - "up": 1, - "to": 4, - "date": 1, - "option": 1, - "summary": 1, - "type": 2, - "help": 1, - "A": 1, - "typical": 1, - "use": 1, - "might": 1, - "be": 3, - "generate": 1, - "a": 5, - "package": 1, - "of": 2, - "source": 2, - "(": 3, - "such": 1, - "as": 1, - "itself": 1, - ")": 3, - ".": 2, - "This": 2, - "generates": 1, - "all": 1, - "C": 1, - "files": 2, - "in": 4, - "below": 1, - "current": 1, - "directory.": 1, - "These": 1, - "will": 1, - "stored": 1, - "tree": 1, - "starting": 1, - "subdirectory": 1, - "doc": 1, - "You": 2, - "make": 2, - "this": 1, - "slightly": 1, - "more": 1, - "useful": 1, - "your": 1, - "readers": 1, - "by": 1, - "having": 1, - "index": 1, - "page": 1, - "contain": 1, - "primary": 1, - "file.": 1, - "In": 1, - "our": 1, - "case": 1, - "we": 1, - "could": 1, - "#": 1, - "rdoc/rdoc": 1, - "s": 1, - "OK": 1, - "file": 1, - "bug": 1, - "report": 1, - "anything": 1, - "t": 1, - "figure": 1, - "out": 1, - "how": 1, - "produce": 1, - "output": 1, - "like": 1, - "that": 1, - "is": 4, - "probably": 1, - "bug.": 1, - "License": 1, - "Copyright": 1, - "c": 2, - "Dave": 1, - "Thomas": 1, - "The": 1, - "Pragmatic": 1, - "Programmers.": 1, - "Portions": 2, - "Eric": 1, - "Hodel.": 1, - "copyright": 1, - "others": 1, - "see": 1, - "individual": 1, - "LEGAL.rdoc": 1, - "details.": 1, - "free": 1, - "software": 2, - "may": 1, - "redistributed": 1, - "under": 1, - "terms": 1, - "specified": 1, - "LICENSE.rdoc.": 1, - "Warranty": 1, - "provided": 1, - "without": 2, - "any": 1, - "express": 1, - "or": 1, - "implied": 2, - "warranties": 2, - "including": 1, - "limitation": 1, - "merchantability": 1, - "fitness": 1, - "particular": 1, - "purpose.": 1 - }, - "Rebol": { - "REBOL": 1, - "[": 3, - "]": 3, - "hello": 2, - "func": 1, - "print": 1 - }, - "Ruby": { - "load": 3, - "Dir": 4, - "[": 56, - "]": 56, - ".each": 4, - "{": 68, - "|": 91, - "plugin": 3, - "(": 244, - ")": 256, - "}": 68, - "task": 2, - "default": 2, - "do": 35, - "puts": 12, - "end": 236, - "module": 8, - "Foo": 1, - "require": 58, - "class": 7, - "Formula": 2, - "include": 3, - "FileUtils": 1, - "attr_reader": 5, - "name": 51, - "path": 16, - "url": 12, - "version": 10, - "homepage": 2, - "specs": 14, - "downloader": 6, - "standard": 2, - "unstable": 2, - "head": 3, - "bottle_version": 2, - "bottle_url": 3, - "bottle_sha1": 2, - "buildpath": 1, - "def": 143, - "initialize": 2, - "nil": 21, - "set_instance_variable": 12, - "if": 72, - "@head": 4, - "and": 6, - "not": 3, - "@url": 8, - "or": 7, - "ARGV.build_head": 2, - "@version": 10, - "@spec_to_use": 4, - "@unstable": 2, - "else": 25, - "@standard.nil": 1, - "SoftwareSpecification.new": 3, - "@specs": 3, - "@standard": 3, - "raise": 17, - "@url.nil": 1, - "@name": 3, - "validate_variable": 7, - "@path": 1, - "path.nil": 1, - "self.class.path": 1, - "Pathname.new": 3, - "||": 22, - "@spec_to_use.detect_version": 1, - "CHECKSUM_TYPES.each": 1, - "type": 10, - "@downloader": 2, - "download_strategy.new": 2, - "@spec_to_use.url": 1, - "@spec_to_use.specs": 1, - "@bottle_url": 2, - "bottle_base_url": 1, - "+": 47, - "bottle_filename": 1, - "self": 11, - "@bottle_sha1": 2, - "installed": 2, - "return": 25, - "installed_prefix.children.length": 1, - "rescue": 13, - "false": 26, - "explicitly_requested": 1, - "ARGV.named.empty": 1, - "ARGV.formulae.include": 1, - "linked_keg": 1, - "HOMEBREW_REPOSITORY/": 2, - "/@name": 1, - "installed_prefix": 1, - "head_prefix": 2, - "HOMEBREW_CELLAR": 2, - "head_prefix.directory": 1, - "prefix": 14, - "rack": 1, - ";": 41, - "prefix.parent": 1, - "bin": 1, - "doc": 1, - "info": 2, - "lib": 1, - "libexec": 1, - "man": 9, - "man1": 1, - "man2": 1, - "man3": 1, - "man4": 1, - "man5": 1, - "man6": 1, - "man7": 1, - "man8": 1, - "sbin": 1, - "share": 1, - "etc": 1, - "HOMEBREW_PREFIX": 2, - "var": 1, - "plist_name": 2, - "plist_path": 1, - "download_strategy": 1, - "@spec_to_use.download_strategy": 1, - "cached_download": 1, - "@downloader.cached_location": 1, - "caveats": 1, - "options": 3, - "patches": 2, - "keg_only": 2, - "self.class.keg_only_reason": 1, - "fails_with": 2, - "cc": 3, - "self.class.cc_failures.nil": 1, - "Compiler.new": 1, - "unless": 15, - "cc.is_a": 1, - "Compiler": 1, - "self.class.cc_failures.find": 1, - "failure": 1, - "next": 1, - "failure.compiler": 1, - "cc.name": 1, - "failure.build.zero": 1, - "failure.build": 1, - "cc.build": 1, - "skip_clean": 2, - "true": 15, - "self.class.skip_clean_all": 1, - "to_check": 2, - "path.relative_path_from": 1, - ".to_s": 3, - "self.class.skip_clean_paths.include": 1, - "brew": 2, - "stage": 2, - "begin": 9, - "patch": 3, - "yield": 5, - "Interrupt": 2, - "RuntimeError": 1, - "SystemCallError": 1, - "e": 8, - "#": 100, - "don": 1, - "config.log": 2, - "t": 3, - "a": 10, - "std_autotools": 1, - "variant": 1, - "because": 1, - "autotools": 1, - "is": 3, - "lot": 1, - "std_cmake_args": 1, - "%": 10, - "W": 1, - "-": 34, - "DCMAKE_INSTALL_PREFIX": 1, - "DCMAKE_BUILD_TYPE": 1, - "None": 1, - "DCMAKE_FIND_FRAMEWORK": 1, - "LAST": 1, - "Wno": 1, - "dev": 1, - "self.class_s": 2, - "#remove": 1, - "invalid": 1, - "characters": 1, - "then": 4, - "camelcase": 1, - "it": 1, - "name.capitalize.gsub": 1, - "/": 34, - "_.": 1, - "s": 2, - "zA": 1, - "Z0": 1, - "upcase": 1, - ".gsub": 5, - "self.names": 1, - ".map": 6, - "f": 11, - "File.basename": 2, - ".sort": 2, - "self.all": 1, - "map": 1, - "self.map": 1, - "rv": 3, - "each": 1, - "<<": 15, - "self.each": 1, - "names.each": 1, - "n": 4, - "Formula.factory": 2, - "onoe": 2, - "inspect": 2, - "self.aliases": 1, - "self.canonical_name": 1, - "name.to_s": 3, - "name.kind_of": 2, - "Pathname": 2, - "formula_with_that_name": 1, - "HOMEBREW_REPOSITORY": 4, - "possible_alias": 1, - "possible_cached_formula": 1, - "HOMEBREW_CACHE_FORMULA": 2, - "name.include": 2, - "r": 3, - ".": 3, - "tapd": 1, - ".downcase": 2, - "tapd.find_formula": 1, - "relative_pathname": 1, - "relative_pathname.stem.to_s": 1, - "tapd.directory": 1, - "elsif": 7, - "formula_with_that_name.file": 1, - "formula_with_that_name.readable": 1, - "possible_alias.file": 1, - "possible_alias.realpath.basename": 1, - "possible_cached_formula.file": 1, - "possible_cached_formula.to_s": 1, - "self.factory": 1, - "https": 1, - "ftp": 1, - "//": 3, - ".basename": 1, - "target_file": 6, - "name.basename": 1, - "HOMEBREW_CACHE_FORMULA.mkpath": 1, - "FileUtils.rm": 1, - "force": 1, - "curl": 1, - "install_type": 4, - "from_url": 1, - "Formula.canonical_name": 1, - ".rb": 1, - "path.stem": 1, - "from_path": 1, - "path.to_s": 3, - "Formula.path": 1, - "from_name": 2, - "klass_name": 2, - "klass": 16, - "Object.const_get": 1, - "NameError": 2, - "LoadError": 3, - "klass.new": 2, - "FormulaUnavailableError.new": 1, - "tap": 1, - "path.realpath.to_s": 1, - "/Library/Taps/": 1, - "w": 6, - "self.path": 1, - "mirrors": 4, - "self.class.mirrors": 1, - "deps": 1, - "self.class.dependencies.deps": 1, - "external_deps": 1, - "self.class.dependencies.external_deps": 1, - "recursive_deps": 1, - "Formula.expand_deps": 1, - ".flatten.uniq": 1, - "self.expand_deps": 1, - "f.deps.map": 1, - "dep": 3, - "f_dep": 3, - "dep.to_s": 1, - "expand_deps": 1, - "protected": 1, - "system": 1, - "cmd": 6, - "*args": 16, - "pretty_args": 1, - "args.dup": 1, - "pretty_args.delete": 1, - "ARGV.verbose": 2, - "ohai": 3, - ".strip": 1, - "removed_ENV_variables": 2, - "case": 5, - "args.empty": 1, - "cmd.split": 1, - ".first": 1, - "when": 11, - "ENV.remove_cc_etc": 1, - "safe_system": 4, - "rd": 1, - "wr": 3, - "IO.pipe": 1, - "pid": 1, - "fork": 1, - "rd.close": 1, - "stdout.reopen": 1, - "stderr.reopen": 1, - "args.collect": 1, - "arg": 1, - "arg.to_s": 1, - "exec": 2, - "exit": 2, - "never": 1, - "gets": 1, - "here": 1, - "threw": 1, - "failed": 3, - "wr.close": 1, - "out": 4, - "rd.read": 1, - "until": 1, - "rd.eof": 1, - "Process.wait": 1, - ".success": 1, - "removed_ENV_variables.each": 1, - "key": 8, - "value": 4, - "ENV": 4, - "ENV.kind_of": 1, - "Hash": 3, - "BuildError.new": 1, - "args": 5, - "public": 2, - "fetch": 2, - "install_bottle": 1, - "CurlBottleDownloadStrategy.new": 1, - "mirror_list": 2, - "HOMEBREW_CACHE.mkpath": 1, - "fetched": 4, - "downloader.fetch": 1, - "CurlDownloadStrategyError": 1, - "mirror_list.empty": 1, - "mirror_list.shift.values_at": 1, - "retry": 2, - "checksum_type": 2, - "CHECKSUM_TYPES.detect": 1, - "instance_variable_defined": 2, - "verify_download_integrity": 2, - "fn": 2, - "args.length": 1, - "md5": 2, - "supplied": 4, - "instance_variable_get": 2, - "type.to_s.upcase": 1, - "hasher": 2, - "Digest.const_get": 1, - "hash": 2, - "fn.incremental_hash": 1, - "supplied.empty": 1, - "message": 2, - "EOF": 2, - "mismatch": 1, - "Expected": 1, - "Got": 1, - "Archive": 1, - "To": 1, - "an": 1, - "incomplete": 1, - "download": 1, - "remove": 1, - "the": 8, - "file": 1, - "above.": 1, - "supplied.upcase": 1, - "hash.upcase": 1, - "opoo": 1, - "private": 3, - "CHECKSUM_TYPES": 2, - "sha1": 4, - "sha256": 1, - ".freeze": 1, - "fetched.kind_of": 1, - "mktemp": 1, - "downloader.stage": 1, - "@buildpath": 2, - "Pathname.pwd": 1, - "patch_list": 1, - "Patches.new": 1, - "patch_list.empty": 1, - "patch_list.external_patches": 1, - "patch_list.download": 1, - "patch_list.each": 1, - "p": 2, - "p.compression": 1, - "gzip": 1, - "p.compressed_filename": 2, - "bzip2": 1, - "*": 3, - "p.patch_args": 1, - "v": 2, - "v.to_s.empty": 1, - "s/": 1, - "class_value": 3, - "self.class.send": 1, - "instance_variable_set": 1, - "self.method_added": 1, - "method": 4, - "self.attr_rw": 1, - "attrs": 1, - "attrs.each": 1, - "attr": 4, - "class_eval": 1, - "Q": 1, - "val": 10, - "val.nil": 3, - "@#": 2, - "attr_rw": 4, - "keg_only_reason": 1, - "skip_clean_all": 2, - "cc_failures": 1, - "stable": 2, - "&": 31, - "block": 30, - "block_given": 5, - "instance_eval": 2, - "ARGV.build_devel": 2, - "devel": 1, - "@mirrors": 3, - "clear": 1, - "from": 1, - "release": 1, - "bottle": 1, - "bottle_block": 1, - "Class.new": 2, - "self.version": 1, - "self.url": 1, - "self.sha1": 1, - "sha1.shift": 1, - "@sha1": 6, - "MacOS.cat": 1, - "String": 2, - "MacOS.lion": 1, - "self.data": 1, - "&&": 8, - "bottle_block.instance_eval": 1, - "@bottle_version": 1, - "bottle_block.data": 1, - "mirror": 1, - "@mirrors.uniq": 1, - "dependencies": 1, - "@dependencies": 1, - "DependencyCollector.new": 1, - "depends_on": 1, - "dependencies.add": 1, - "paths": 3, - "all": 1, - "@skip_clean_all": 2, - "@skip_clean_paths": 3, - ".flatten.each": 1, - "p.to_s": 2, - "@skip_clean_paths.include": 1, - "skip_clean_paths": 1, - "reason": 2, - "explanation": 1, - "@keg_only_reason": 1, - "KegOnlyReason.new": 1, - "explanation.to_s.chomp": 1, - "compiler": 3, - "@cc_failures": 2, - "CompilerFailures.new": 1, - "CompilerFailure.new": 2, - "Grit": 1, - "ActiveSupport": 1, - "Inflector": 1, - "extend": 2, - "pluralize": 3, - "word": 10, - "apply_inflections": 3, - "inflections.plurals": 1, - "singularize": 2, - "inflections.singulars": 1, - "camelize": 2, - "term": 1, - "uppercase_first_letter": 2, - "string": 4, - "term.to_s": 1, - "string.sub": 2, - "z": 7, - "d": 6, - "*/": 1, - "inflections.acronyms": 1, - ".capitalize": 1, - "inflections.acronym_regex": 2, - "b": 4, - "A": 5, - "Z_": 1, - "string.gsub": 1, - "_": 2, - "/i": 2, - "underscore": 3, - "camel_cased_word": 6, - "camel_cased_word.to_s.dup": 1, - "word.gsub": 4, - "Za": 1, - "Z": 3, - "word.tr": 1, - "word.downcase": 1, - "humanize": 2, - "lower_case_and_underscored_word": 1, - "result": 8, - "lower_case_and_underscored_word.to_s.dup": 1, - "inflections.humans.each": 1, - "rule": 4, - "replacement": 4, - "break": 4, - "result.sub": 2, - "result.gsub": 2, - "/_id": 1, - "result.tr": 1, - "match": 6, - "w/": 1, - ".upcase": 1, - "titleize": 1, - "<!['’`])[a-z]/)>": 1, - "capitalize": 1, - "Create": 1, - "of": 1, - "table": 2, - "like": 1, - "Rails": 1, - "does": 1, - "for": 1, - "models": 1, - "to": 1, - "names": 2, - "This": 1, - "uses": 1, - "on": 2, - "last": 4, - "in": 3, - "RawScaledScorer": 1, - "tableize": 2, - "class_name": 2, - "classify": 1, - "table_name": 1, - "table_name.to_s.sub": 1, - "/.*": 1, - "./": 1, - "dasherize": 1, - "underscored_word": 1, - "underscored_word.tr": 1, - "demodulize": 1, - "i": 2, - "path.rindex": 2, - "..": 1, - "deconstantize": 1, - "implementation": 1, - "based": 1, - "one": 1, - "facets": 1, - "id": 1, - "outside": 2, - "inside": 2, - "owned": 1, - "constant": 4, - "constant.ancestors.inject": 1, - "const": 3, - "ancestor": 3, - "Object": 1, - "ancestor.const_defined": 1, - "constant.const_get": 1, - "safe_constantize": 1, - "constantize": 1, - "e.message": 2, - "uninitialized": 1, - "wrong": 1, - "const_regexp": 3, - "e.name.to_s": 1, - "camel_cased_word.to_s": 1, - "ArgumentError": 1, - "/not": 1, - "missing": 1, - "ordinal": 1, - "number": 2, - ".include": 1, - "number.to_i.abs": 2, - "ordinalize": 1, - "nodoc": 3, - "parts": 1, - "camel_cased_word.split": 1, - "parts.pop": 1, - "parts.reverse.inject": 1, - "acc": 2, - "part": 1, - "part.empty": 1, - "rules": 1, - "word.to_s.dup": 1, - "word.empty": 1, - "inflections.uncountables.include": 1, - "result.downcase": 1, - "Z/": 1, - "rules.each": 1, - ".unshift": 1, - "File.dirname": 4, - "__FILE__": 3, - "For": 1, - "use/testing": 1, - "no": 1, - "gem": 1, - "require_all": 4, - "glob": 2, - "File.join": 6, - "Jekyll": 3, - "VERSION": 1, - "DEFAULTS": 2, - "Dir.pwd": 3, - "self.configuration": 1, - "override": 3, - "source": 2, - "config_file": 2, - "config": 3, - "YAML.load_file": 1, - "config.is_a": 1, - "stdout.puts": 1, - "err": 1, - "stderr.puts": 2, - "err.to_s": 1, - "DEFAULTS.deep_merge": 1, - ".deep_merge": 1, - "Jenkins": 1, - "Plugin": 1, - "Specification.new": 1, - "plugin.name": 1, - "plugin.display_name": 1, - "plugin.version": 1, - "plugin.description": 1, - "plugin.url": 1, - "plugin.developed_by": 1, - "plugin.uses_repository": 1, - "github": 1, - "plugin.depends_on": 1, - "#plugin.depends_on": 1, - "SHEBANG#!macruby": 1, - "object": 2, - "@user": 1, - "person": 1, - "attributes": 2, - "username": 1, - "email": 1, - "location": 1, - "created_at": 1, - "registered_at": 1, - "node": 2, - "role": 1, - "user": 1, - "user.is_admin": 1, - "child": 1, - "phone_numbers": 1, - "pnumbers": 1, - "extends": 1, - "node_numbers": 1, - "u": 1, - "partial": 1, - "u.phone_numbers": 1, - "Resque": 3, - "Helpers": 1, - "redis": 7, - "server": 11, - "/redis": 1, - "Redis.connect": 2, - "thread_safe": 2, - "namespace": 3, - "server.split": 2, - "host": 3, - "port": 4, - "db": 3, - "Redis.new": 1, - "resque": 2, - "@redis": 6, - "Redis": 3, - "Namespace.new": 2, - "Namespace": 1, - "@queues": 2, - "Hash.new": 1, - "h": 2, - "Queue.new": 1, - "coder": 3, - "@coder": 1, - "MultiJsonCoder.new": 1, - "attr_writer": 4, - "self.redis": 2, - "Redis.respond_to": 1, - "connect": 1, - "redis_id": 2, - "redis.respond_to": 2, - "redis.server": 1, - "nodes": 1, - "distributed": 1, - "redis.nodes.map": 1, - "n.id": 1, - ".join": 1, - "redis.client.id": 1, - "before_first_fork": 2, - "@before_first_fork": 2, - "before_fork": 2, - "@before_fork": 2, - "after_fork": 2, - "@after_fork": 2, - "to_s": 1, - "attr_accessor": 2, - "inline": 3, - "alias": 1, - "push": 1, - "queue": 24, - "item": 4, - "pop": 1, - ".pop": 1, - "ThreadError": 1, - "size": 3, - ".size": 1, - "peek": 1, - "start": 7, - "count": 5, - ".slice": 1, - "list_range": 1, - "decode": 2, - "redis.lindex": 1, - "Array": 2, - "redis.lrange": 1, - "queues": 3, - "redis.smembers": 1, - "remove_queue": 1, - ".destroy": 1, - "@queues.delete": 1, - "queue.to_s": 1, - "enqueue": 1, - "enqueue_to": 2, - "queue_from_class": 4, - "before_hooks": 2, - "Plugin.before_enqueue_hooks": 1, - ".collect": 2, - "hook": 9, - "klass.send": 4, - "before_hooks.any": 2, - "Job.create": 1, - "Plugin.after_enqueue_hooks": 1, - "dequeue": 1, - "Plugin.before_dequeue_hooks": 1, - "Job.destroy": 1, - "Plugin.after_dequeue_hooks": 1, - "klass.instance_variable_get": 1, - "@queue": 1, - "klass.respond_to": 1, - "klass.queue": 1, - "reserve": 1, - "Job.reserve": 1, - "validate": 1, - "NoQueueError.new": 1, - "klass.to_s.empty": 1, - "NoClassError.new": 1, - "workers": 2, - "Worker.all": 1, - "working": 2, - "Worker.working": 1, - "remove_worker": 1, - "worker_id": 2, - "worker": 1, - "Worker.find": 1, - "worker.unregister_worker": 1, - "pending": 1, - "queues.inject": 1, - "m": 3, - "k": 2, - "processed": 2, - "Stat": 2, - "queues.size": 1, - "workers.size.to_i": 1, - "working.size": 1, - "servers": 1, - "environment": 2, - "keys": 6, - "redis.keys": 1, - "key.sub": 1, - "SHEBANG#!ruby": 2, - "SHEBANG#!rake": 1, - "Sinatra": 2, - "Request": 2, - "<": 2, - "Rack": 1, - "accept": 1, - "@env": 2, - "entries": 1, - ".to_s.split": 1, - "entries.map": 1, - "accept_entry": 1, - ".sort_by": 1, - "first": 1, - "preferred_type": 1, - "self.defer": 1, - "pattern": 1, - "path.respond_to": 5, - "path.keys": 1, - "path.names": 1, - "TypeError": 1, - "URI": 3, - "URI.const_defined": 1, - "Parser": 1, - "Parser.new": 1, - "encoded": 1, - "char": 4, - "enc": 5, - "URI.escape": 1, - "helpers": 3, - "data": 1, - "reset": 1, - "set": 36, - "development": 6, - ".to_sym": 1, - "raise_errors": 1, - "Proc.new": 11, - "test": 5, - "dump_errors": 1, - "show_exceptions": 1, - "sessions": 1, - "logging": 2, - "protection": 1, - "method_override": 4, - "use_code": 1, - "default_encoding": 1, - "add_charset": 1, - "javascript": 1, - "xml": 2, - "xhtml": 1, - "json": 1, - "settings.add_charset": 1, - "text": 3, - "session_secret": 3, - "SecureRandom.hex": 1, - "NotImplementedError": 1, - "Kernel.rand": 1, - "**256": 1, - "alias_method": 2, - "methodoverride": 2, - "run": 2, - "via": 1, - "at": 1, - "running": 2, - "built": 1, - "now": 1, - "http": 1, - "webrick": 1, - "bind": 1, - "ruby_engine": 6, - "defined": 1, - "RUBY_ENGINE": 2, - "server.unshift": 6, - "ruby_engine.nil": 1, - "absolute_redirects": 1, - "prefixed_redirects": 1, - "empty_path_info": 1, - "app_file": 4, - "root": 5, - "File.expand_path": 1, - "views": 1, - "reload_templates": 1, - "lock": 1, - "threaded": 1, - "public_folder": 3, - "static": 1, - "File.exist": 1, - "static_cache_control": 1, - "error": 3, - "Exception": 1, - "response.status": 1, - "content_type": 3, - "configure": 2, - "get": 2, - "filename": 2, - "png": 1, - "send_file": 1, - "NotFound": 1, - "HTML": 2, - "<!DOCTYPE>": 1, - "html": 1, - "<html>": 1, - "<head>": 1, - "<style>": 1, - "type=": 1, - "body": 1, - "align": 2, - "center": 1, - "font": 2, - "family": 1, - "helvetica": 1, - "arial": 1, - "px": 3, - "color": 1, - "#888": 1, - "margin": 2, - "#c": 1, - "auto": 1, - "width": 1, - "left": 1, - "</style>": 1, - "</head>": 1, - "<body>": 1, - "<h2>": 1, - "doesn": 1, - "rsquo": 1, - "know": 1, - "this": 2, - "ditty.": 1, - "</h2>": 1, - "<img>": 1, - "src=": 1, - "<div>": 1, - "id=": 1, - "Try": 1, - "<pre>": 1, - "request.request_method.downcase": 1, - "nend": 1, - "</pre>": 1, - "</div>": 1, - "</body>": 1, - "</html>": 1, - "Application": 2, - "Base": 2, - "super": 3, - "self.register": 2, - "extensions": 6, - "added_methods": 2, - "extensions.map": 1, - "m.public_instance_methods": 1, - ".flatten": 1, - "Delegator.delegate": 1, - "Delegator": 1, - "self.delegate": 1, - "methods": 1, - "methods.each": 1, - "method_name": 5, - "define_method": 1, - "respond_to": 1, - "Delegator.target.send": 1, - "delegate": 1, - "put": 1, - "post": 1, - "delete": 1, - "template": 1, - "layout": 1, - "before": 1, - "after": 1, - "not_found": 1, - "mime_type": 1, - "enable": 1, - "disable": 1, - "use": 1, - "production": 1, - "settings": 2, - "target": 1, - "self.target": 1, - "Wrapper": 1, - "stack": 2, - "instance": 2, - "@stack": 1, - "@instance": 2, - "@instance.settings": 1, - "call": 1, - "env": 2, - "@stack.call": 1, - "self.new": 1, - "base": 4, - "base.class_eval": 1, - "Delegator.target.register": 1, - "self.helpers": 1, - "Delegator.target.helpers": 1, - "self.use": 1, - "Delegator.target.use": 1, - "SHEBANG#!python": 1 - }, - "Rust": { - "//": 20, - "use": 10, - "cell": 1, - "Cell": 2, - ";": 218, - "cmp": 1, - "Eq": 2, - "option": 4, - "result": 18, - "Result": 3, - "comm": 5, - "{": 213, - "stream": 21, - "Chan": 4, - "GenericChan": 1, - "GenericPort": 1, - "Port": 3, - "SharedChan": 4, - "}": 210, - "prelude": 1, - "*": 1, - "task": 39, - "rt": 29, - "task_id": 2, - "sched_id": 2, - "rust_task": 1, - "util": 4, - "replace": 8, - "mod": 5, - "local_data_priv": 1, - "pub": 26, - "local_data": 1, - "spawn": 15, - "///": 13, - "A": 6, - "handle": 3, - "to": 6, - "a": 9, - "scheduler": 6, - "#": 61, - "[": 61, - "deriving_eq": 3, - "]": 61, - "enum": 4, - "Scheduler": 4, - "SchedulerHandle": 2, - "(": 429, - ")": 434, - "Task": 2, - "TaskHandle": 2, - "TaskResult": 4, - "Success": 6, - "Failure": 6, - "impl": 3, - "for": 10, - "pure": 2, - "fn": 89, - "eq": 1, - "&": 30, - "self": 15, - "other": 4, - "-": 33, - "bool": 6, - "match": 4, - "|": 20, - "true": 9, - "_": 4, - "false": 7, - "ne": 1, - ".eq": 1, - "modes": 1, - "SchedMode": 4, - "Run": 3, - "on": 5, - "the": 10, - "default": 1, - "DefaultScheduler": 2, - "current": 1, - "CurrentScheduler": 2, - "specific": 1, - "ExistingScheduler": 1, - "PlatformThread": 2, - "All": 1, - "tasks": 1, - "run": 1, - "in": 3, - "same": 1, - "OS": 3, - "thread": 2, - "SingleThreaded": 4, - "Tasks": 2, - "are": 2, - "distributed": 2, - "among": 2, - "available": 1, - "CPUs": 1, - "ThreadPerCore": 2, - "Each": 1, - "runs": 1, - "its": 1, - "own": 1, - "ThreadPerTask": 1, - "fixed": 1, - "number": 1, - "of": 3, - "threads": 1, - "ManualThreads": 3, - "uint": 7, - "struct": 7, - "SchedOpts": 4, - "mode": 9, - "foreign_stack_size": 3, - "Option": 4, - "<uint>": 2, - "TaskOpts": 12, - "linked": 15, - "supervised": 11, - "mut": 16, - "notify_chan": 24, - "<": 3, - "<TaskResult>": 3, - "sched": 10, - "TaskBuilder": 21, - "opts": 21, - "gen_body": 4, - "@fn": 2, - "v": 6, - "can_not_copy": 11, - "<util::NonCopyable>": 1, - "consumed": 4, - "default_task_opts": 4, - "body": 6, - "Identity": 1, - "function": 1, - "None": 23, - "doc": 1, - "hidden": 1, - "FIXME": 1, - "#3538": 1, - "priv": 1, - "consume": 1, - "if": 7, - "self.consumed": 2, - "fail": 17, - "Fake": 1, - "move": 1, - "let": 84, - "self.opts.notify_chan": 7, - "self.opts.linked": 4, - "self.opts.supervised": 5, - "self.opts.sched": 6, - "self.gen_body": 2, - "unlinked": 1, - "..": 8, - "self.consume": 7, - "future_result": 1, - "blk": 2, - "self.opts.notify_chan.is_some": 1, - "notify_pipe_po": 2, - "notify_pipe_ch": 2, - "Some": 8, - "Configure": 1, - "custom": 1, - "task.": 1, - "sched_mode": 1, - "add_wrapper": 1, - "wrapper": 2, - "prev_gen_body": 2, - "f": 38, - "x": 7, - "x.opts.linked": 1, - "x.opts.supervised": 1, - "x.opts.sched": 1, - "spawn_raw": 1, - "x.gen_body": 1, - "Runs": 1, - "while": 2, - "transfering": 1, - "ownership": 1, - "one": 1, - "argument": 1, - "child.": 1, - "spawn_with": 2, - "<A:Owned>": 2, - "arg": 5, - "do": 49, - "self.spawn": 1, - "arg.take": 1, - "try": 5, - "<T:Owned>": 2, - "T": 2, - "<T,()>": 2, - "po": 11, - "ch": 26, - "<T>": 1, - "fr_task_builder": 1, - "self.future_result": 1, - "+": 4, - "r": 6, - "fr_task_builder.spawn": 1, - "||": 11, - "ch.send": 11, - "unwrap": 3, - ".recv": 3, - "Ok": 3, - "po.recv": 10, - "Err": 2, - ".spawn": 9, - "spawn_unlinked": 6, - ".unlinked": 3, - "spawn_supervised": 5, - ".supervised": 2, - ".spawn_with": 1, - "spawn_sched": 8, - ".sched_mode": 2, - ".try": 1, - "yield": 16, - "Yield": 1, - "control": 1, - "unsafe": 31, - "task_": 2, - "rust_get_task": 5, - "killed": 3, - "rust_task_yield": 1, - "&&": 1, - "failing": 2, - "True": 1, - "running": 2, - "has": 1, - "failed": 1, - "rust_task_is_unwinding": 1, - "get_task": 1, - "Get": 1, - "get_task_id": 1, - "get_scheduler": 1, - "rust_get_sched_id": 6, - "unkillable": 5, - "<U>": 3, - "U": 6, - "AllowFailure": 5, - "t": 24, - "*rust_task": 6, - "drop": 3, - "rust_task_allow_kill": 3, - "self.t": 4, - "_allow_failure": 2, - "rust_task_inhibit_kill": 3, - "The": 1, - "inverse": 1, - "unkillable.": 1, - "Only": 1, - "ever": 1, - "be": 2, - "used": 1, - "nested": 1, - ".": 1, - "rekillable": 1, - "DisallowFailure": 5, - "atomically": 3, - "DeferInterrupts": 5, - "rust_task_allow_yield": 1, - "_interrupts": 1, - "rust_task_inhibit_yield": 1, - "test": 31, - "should_fail": 11, - "ignore": 16, - "cfg": 16, - "windows": 14, - "test_cant_dup_task_builder": 1, - "b": 2, - "b.spawn": 2, - "should": 2, - "have": 1, - "been": 1, - "by": 1, - "previous": 1, - "call": 1, - "test_spawn_unlinked_unsup_no_fail_down": 1, - "grandchild": 1, - "sends": 1, - "port": 3, - "ch.clone": 2, - "iter": 8, - "repeat": 8, - "If": 1, - "first": 1, - "grandparent": 1, - "hangs.": 1, - "Shouldn": 1, - "leave": 1, - "child": 3, - "hanging": 1, - "around.": 1, - "test_spawn_linked_sup_fail_up": 1, - "fails": 4, - "parent": 2, - "_ch": 1, - "<()>": 6, - "opts.linked": 2, - "opts.supervised": 2, - "b0": 5, - "b1": 3, - "b1.spawn": 3, - "We": 1, - "get": 1, - "punted": 1, - "awake": 1, - "test_spawn_linked_sup_fail_down": 1, - "loop": 5, - "*both*": 1, - "mechanisms": 1, - "would": 1, - "wrong": 1, - "this": 1, - "didn": 1, - "s": 1, - "failure": 1, - "propagate": 1, - "across": 1, - "gap": 1, - "test_spawn_failure_propagate_secondborn": 1, - "test_spawn_failure_propagate_nephew_or_niece": 1, - "test_spawn_linked_sup_propagate_sibling": 1, - "test_run_basic": 1, - "Wrapper": 5, - "test_add_wrapper": 1, - "b0.add_wrapper": 1, - "ch.f.swap_unwrap": 4, - "test_future_result": 1, - ".future_result": 4, - "assert": 10, - "test_back_to_the_future_result": 1, - "test_try_success": 1, - "test_try_fail": 1, - "test_spawn_sched_no_threads": 1, - "u": 2, - "test_spawn_sched": 1, - "i": 3, - "int": 5, - "parent_sched_id": 4, - "child_sched_id": 5, - "else": 1, - "test_spawn_sched_childs_on_default_sched": 1, - "default_id": 2, - "nolink": 1, - "extern": 1, - "testrt": 9, - "rust_dbg_lock_create": 2, - "*libc": 6, - "c_void": 6, - "rust_dbg_lock_destroy": 2, - "lock": 13, - "rust_dbg_lock_lock": 3, - "rust_dbg_lock_unlock": 3, - "rust_dbg_lock_wait": 2, - "rust_dbg_lock_signal": 2, - "test_spawn_sched_blocking": 1, - "start_po": 1, - "start_ch": 1, - "fin_po": 1, - "fin_ch": 1, - "start_ch.send": 1, - "fin_ch.send": 1, - "start_po.recv": 1, - "pingpong": 3, - "<int>": 2, - "val": 4, - "setup_po": 1, - "setup_ch": 1, - "parent_po": 2, - "parent_ch": 2, - "child_po": 2, - "child_ch": 4, - "setup_ch.send": 1, - "setup_po.recv": 1, - "child_ch.send": 1, - "fin_po.recv": 1, - "avoid_copying_the_body": 5, - "spawnfn": 2, - "p": 3, - "x_in_parent": 2, - "ptr": 2, - "addr_of": 2, - "as": 7, - "x_in_child": 4, - "p.recv": 1, - "test_avoid_copying_the_body_spawn": 1, - "test_avoid_copying_the_body_task_spawn": 1, - "test_avoid_copying_the_body_try": 1, - "test_avoid_copying_the_body_unlinked": 1, - "test_platform_thread": 1, - "test_unkillable": 1, - "pp": 2, - "*uint": 1, - "cast": 2, - "transmute": 2, - "_p": 1, - "test_unkillable_nested": 1, - "Here": 1, - "test_atomically_nested": 1, - "test_child_doesnt_ref_parent": 1, - "const": 1, - "generations": 2, - "child_no": 3, - "return": 1, - "test_sched_thread_per_core": 1, - "chan": 2, - "cores": 2, - "rust_num_threads": 1, - "reported_threads": 2, - "rust_sched_threads": 2, - "chan.send": 2, - "port.recv": 2, - "test_spawn_thread_on_demand": 1, - "max_threads": 2, - "running_threads": 2, - "rust_sched_current_nonlazy_threads": 2, - "port2": 1, - "chan2": 1, - "chan2.send": 1, - "running_threads2": 2, - "port2.recv": 1 - }, - "Sass": { - "blue": 7, - "#3bbfce": 2, - ";": 6, - "margin": 8, - "px": 3, - ".content_navigation": 1, - "{": 2, - "color": 4, - "}": 2, - ".border": 2, - "padding": 2, - "/": 4, - "border": 3, - "solid": 1, - ".content": 1, - "-": 3, - "navigation": 1, - "darken": 1, - "(": 1, - "%": 1, - ")": 1 - }, - "Scala": { - "SHEBANG#!sh": 2, - "exec": 2, - "scala": 2, - "#": 2, - "object": 2, - "Beers": 1, - "extends": 1, - "Application": 1, - "{": 10, - "def": 7, - "bottles": 3, - "(": 34, - "qty": 12, - "Int": 3, - "f": 4, - "String": 5, - ")": 34, - "//": 4, - "higher": 1, - "-": 4, - "order": 1, - "functions": 2, - "match": 2, - "case": 5, - "+": 29, - "x": 3, - "}": 11, - "beers": 3, - "sing": 3, - "implicit": 3, - "song": 3, - "takeOne": 2, - "nextQty": 2, - "nested": 1, - "if": 2, - "else": 2, - "refrain": 2, - ".capitalize": 1, - "tail": 1, - "recursion": 1, - "val": 2, - "headOfSong": 1, - "println": 2, - "parameter": 1, - "name": 4, - "version": 1, - "organization": 1, - "libraryDependencies": 3, - "%": 12, - "Seq": 3, - "libosmVersion": 4, - "from": 1, - "maxErrors": 1, - "pollInterval": 1, - "javacOptions": 1, - "scalacOptions": 1, - "scalaVersion": 1, - "initialCommands": 2, - "in": 12, - "console": 1, - "mainClass": 2, - "Compile": 4, - "packageBin": 1, - "Some": 6, - "run": 1, - "watchSources": 1, - "<+=>": 1, - "baseDirectory": 1, - "map": 1, - "_": 1, - "input": 1, - "add": 2, - "a": 2, - "maven": 2, - "style": 2, - "repository": 2, - "resolvers": 2, - "at": 4, - "url": 3, - "sequence": 1, - "of": 1, - "repositories": 1, - "define": 1, - "the": 4, - "to": 4, - "publish": 1, - "publishTo": 1, - "set": 2, - "Ivy": 1, - "logging": 1, - "be": 1, - "highest": 1, - "level": 1, - "ivyLoggingLevel": 1, - "UpdateLogging": 1, - "Full": 1, - "disable": 1, - "updating": 1, - "dynamic": 1, - "revisions": 1, - "including": 1, - "SNAPSHOT": 1, - "versions": 1, - "offline": 1, - "true": 5, - "prompt": 1, - "for": 1, - "this": 1, - "build": 1, - "include": 1, - "project": 1, - "id": 1, - "shellPrompt": 2, - "ThisBuild": 1, - "state": 3, - "Project.extract": 1, - ".currentRef.project": 1, - "System.getProperty": 1, - "showTiming": 1, - "false": 7, - "showSuccess": 1, - "timingFormat": 1, - "import": 1, - "java.text.DateFormat": 1, - "DateFormat.getDateTimeInstance": 1, - "DateFormat.SHORT": 2, - "crossPaths": 1, - "fork": 2, - "Test": 3, - "javaOptions": 1, - "parallelExecution": 2, - "javaHome": 1, - "file": 3, - "scalaHome": 1, - "aggregate": 1, - "clean": 1, - "logLevel": 2, - "compile": 1, - "Level.Warn": 2, - "persistLogLevel": 1, - "Level.Debug": 1, - "traceLevel": 2, - "unmanagedJars": 1, - "publishArtifact": 2, - "packageDoc": 2, - "artifactClassifier": 1, - "retrieveManaged": 1, - "credentials": 2, - "Credentials": 2, - "Path.userHome": 1, - "/": 2, - "HelloWorld": 1, - "main": 1, - "args": 1, - "Array": 1, - "[": 1, - "]": 1 - }, - "Scheme": { - "(": 359, - "import": 1, - "rnrs": 1, - ")": 373, - "only": 1, - "surfage": 4, - "s1": 1, - "lists": 1, - "filter": 4, - "-": 188, - "map": 4, - "gl": 12, - "glut": 2, - "dharmalab": 2, - "records": 1, - "define": 27, - "record": 5, - "type": 5, - "math": 1, - "basic": 1, - "agave": 4, - "glu": 1, - "compat": 1, - "geometry": 1, - "pt": 49, - "glamour": 2, - "window": 2, - "misc": 1, - "s19": 1, - "time": 24, - "s27": 1, - "random": 27, - "bits": 1, - "s42": 1, - "eager": 1, - "comprehensions": 1, - ";": 1684, - "utilities": 1, - "say": 9, - ".": 1, - "args": 2, - "for": 7, - "each": 7, - "display": 4, - "newline": 2, - "translate": 6, - "p": 6, - "glTranslated": 1, - "x": 8, - "y": 3, - "radians": 8, - "/": 7, - "pi": 2, - "degrees": 2, - "angle": 6, - "a": 19, - "cos": 1, - "sin": 1, - "current": 15, - "in": 14, - "nanoseconds": 2, - "let": 2, - "val": 3, - "+": 28, - "second": 1, - "nanosecond": 1, - "seconds": 12, - "micro": 1, - "milli": 1, - "base": 2, - "step": 1, - "score": 5, - "level": 5, - "ships": 1, - "spaceship": 5, - "fields": 4, - "mutable": 14, - "pos": 16, - "vel": 4, - "theta": 1, - "force": 1, - "particle": 8, - "birth": 2, - "lifetime": 1, - "color": 2, - "particles": 11, - "asteroid": 14, - "radius": 6, - "number": 3, - "of": 3, - "starting": 3, - "asteroids": 15, - "#f": 5, - "bullet": 16, - "pack": 12, - "is": 8, - "initialize": 1, - "size": 1, - "title": 1, - "reshape": 1, - "width": 8, - "height": 8, - "source": 2, - "randomize": 1, - "default": 1, - "wrap": 4, - "mod": 2, - "ship": 8, - "make": 11, - "ammo": 9, - "set": 19, - "list": 6, - "ec": 6, - "i": 6, - "inexact": 16, - "integer": 25, - "buffered": 1, - "procedure": 1, - "lambda": 12, + "rect": 1, + "fill": 6, + "setup": 1, + "ellipse": 1, + "quad": 1, + "triangle": 2, + "TWO_PI": 1, "background": 1, - "glColor3f": 5, - "matrix": 5, - "excursion": 5, - "ship.pos": 5, - "glRotated": 2, - "ship.theta": 10, - "glutWireCone": 1, - "par": 6, - "c": 4, - "vector": 6, - "ref": 3, - "glutWireSphere": 3, - "bullets": 7, - "pack.pos": 3, - "glutWireCube": 1, - "last": 3, - "dt": 7, - "update": 2, - "system": 2, - "pt*n": 8, - "ship.vel": 5, - "pack.vel": 1, - "cond": 2, - "par.birth": 1, - "par.lifetime": 1, - "else": 2, - "par.pos": 2, - "par.vel": 1, - "bullet.birth": 1, - "bullet.pos": 2, - "bullet.vel": 1, - "a.pos": 2, - "a.vel": 1, - "if": 1, - "<": 1, - "a.radius": 1, - "contact": 2, - "b": 4, - "when": 5, - "<=>": 3, - "distance": 3, - "begin": 1, - "1": 2, - "f": 1, - "append": 4, - "4": 1, - "50": 4, - "0": 7, - "100": 6, - "2": 1, - "n": 2, - "null": 1, - "10": 1, - "5": 1, - "glutIdleFunc": 1, - "glutPostRedisplay": 1, - "glutKeyboardFunc": 1, - "key": 2, - "case": 1, - "char": 1, - "#": 6, - "w": 1, - "d": 1, - "s": 1, - "space": 1, - "cons": 1, - "glutMainLoop": 1 - }, - "Scilab": { - "function": 1, - "[": 1, - "a": 4, - "b": 4, - "]": 1, - "myfunction": 1, - "(": 7, - "d": 2, - "e": 4, - "f": 2, - ")": 7, - "+": 5, - "%": 4, - "pi": 3, - ";": 7, - "cos": 1, - "cosh": 1, - "if": 1, - "then": 1, - "-": 2, - "e.field": 1, - "else": 1, - "home": 1, - "return": 1, - "end": 1, - "myvar": 1, - "endfunction": 1, - "disp": 1, - "assert_checkequal": 1, - "assert_checkfalse": 1 - }, - "SCSS": { - "blue": 4, - "#3bbfce": 1, - ";": 7, - "margin": 4, - "px": 1, - ".content": 1, - "-": 3, - "navigation": 1, - "{": 2, - "border": 2, - "color": 3, - "darken": 1, - "(": 1, - "%": 1, - ")": 1, + "draw": 1, + "noStroke": 1, + "size": 1, + "void": 2, "}": 2, - ".border": 1, - "padding": 1, - "/": 2 - }, - "Shell": { - "SHEBANG#!bash": 8, - "typeset": 5, - "-": 391, - "i": 2, - "n": 22, - "bottles": 6, - "no": 16, - "while": 3, - "[": 85, - "]": 85, - "do": 8, - "echo": 71, - "case": 9, - "{": 63, - "}": 61, - "in": 25, - ")": 154, - "%": 5, - "s": 14, - ";": 138, - "esac": 7, - "done": 8, - "exit": 10, - "/usr/bin/clear": 2, - "##": 28, - "if": 39, - "z": 12, - "then": 41, - "export": 25, - "SCREENDIR": 2, - "fi": 34, - "PATH": 14, - "/usr/local/bin": 6, - "/usr/local/sbin": 6, - "/usr/xpg4/bin": 4, - "/usr/sbin": 6, - "/usr/bin": 8, - "/usr/sfw/bin": 4, - "/usr/ccs/bin": 4, - "/usr/openwin/bin": 4, - "/opt/mysql/current/bin": 4, - "MANPATH": 2, - "/usr/local/man": 2, - "/usr/share/man": 2, - "Random": 2, - "ENV...": 2, - "TERM": 4, - "COLORTERM": 2, - "CLICOLOR": 2, - "#": 53, - "can": 3, - "be": 3, - "set": 21, - "to": 33, - "anything": 2, - "actually": 2, - "DISPLAY": 2, - "r": 17, - "&&": 65, - ".": 5, - "function": 6, - "ls": 6, - "command": 5, - "Fh": 2, - "l": 8, - "list": 3, - "long": 2, - "format...": 2, - "ll": 2, - "|": 17, - "less": 2, - "XF": 2, - "pipe": 2, - "into": 3, - "#CDPATH": 2, - "HISTIGNORE": 2, - "HISTCONTROL": 2, - "ignoreboth": 2, - "shopt": 13, - "cdspell": 2, - "extglob": 2, - "progcomp": 2, - "complete": 82, - "f": 68, - "X": 54, - "bunzip2": 2, - "bzcat": 2, - "bzcmp": 2, - "bzdiff": 2, - "bzegrep": 2, - "bzfgrep": 2, - "bzgrep": 2, - "unzip": 2, - "zipinfo": 2, - "compress": 2, - "znew": 2, - "gunzip": 2, - "zcmp": 2, - "zdiff": 2, - "zcat": 2, - "zegrep": 2, - "zfgrep": 2, - "zgrep": 2, - "zless": 2, - "zmore": 2, - "uncompress": 2, - "ee": 2, - "display": 2, - "xv": 2, - "qiv": 2, - "gv": 2, - "ggv": 2, - "xdvi": 2, - "dvips": 2, - "dviselect": 2, - "dvitype": 2, - "acroread": 2, - "xpdf": 2, - "makeinfo": 2, - "texi2html": 2, - "tex": 2, - "latex": 2, - "slitex": 2, - "jadetex": 2, - "pdfjadetex": 2, - "pdftex": 2, - "pdflatex": 2, - "texi2dvi": 2, - "mpg123": 2, - "mpg321": 2, - "xine": 2, - "aviplay": 2, - "realplay": 2, - "xanim": 2, - "ogg123": 2, - "gqmpeg": 2, - "freeamp": 2, - "xmms": 2, - "xfig": 2, - "timidity": 2, - "playmidi": 2, - "vi": 2, - "vim": 2, - "gvim": 2, - "rvim": 2, - "view": 2, - "rview": 2, - "rgvim": 2, - "rgview": 2, - "gview": 2, - "emacs": 2, - "wine": 2, - "bzme": 2, - "netscape": 2, - "mozilla": 2, - "lynx": 2, - "opera": 2, - "w3m": 2, - "galeon": 2, - "curl": 8, - "dillo": 2, - "elinks": 2, - "links": 2, - "u": 2, - "su": 2, - "passwd": 2, - "groups": 2, - "user": 2, - "commands": 8, - "see": 4, - "only": 6, - "users": 2, - "A": 10, - "stopped": 4, - "P": 4, - "bg": 4, - "completes": 10, - "with": 12, - "jobs": 4, - "j": 2, - "fg": 2, - "disown": 2, - "other": 2, - "job": 3, - "v": 11, - "readonly": 4, - "unset": 10, - "and": 5, - "shell": 4, - "variables": 2, - "setopt": 8, - "options": 8, - "helptopic": 2, - "help": 5, - "helptopics": 2, - "a": 12, - "unalias": 4, - "aliases": 2, - "binding": 2, - "bind": 4, - "readline": 2, - "bindings": 2, - "(": 107, - "make": 6, - "this": 6, - "more": 3, - "intelligent": 2, - "c": 2, - "type": 5, - "which": 10, - "man": 6, - "#sudo": 2, - "on": 4, - "d": 9, - "pushd": 2, - "cd": 11, - "rmdir": 2, - "Make": 2, - "directory": 5, - "directories": 2, - "W": 2, - "alias": 42, - "filenames": 2, - "for": 7, - "PS1": 2, - "..": 2, - "cd..": 2, - "t": 3, - "csh": 2, - "is": 11, - "same": 2, - "as": 2, - "bash...": 2, - "quit": 2, - "q": 8, - "even": 3, - "shorter": 2, - "D": 2, - "rehash": 2, - "source": 7, - "/.bashrc": 3, - "after": 2, - "I": 2, - "edit": 2, - "it": 2, - "pg": 2, - "patch": 2, - "sed": 2, - "awk": 2, - "diff": 2, - "grep": 8, - "find": 2, - "ps": 2, - "whoami": 2, - "ping": 2, - "histappend": 2, - "PROMPT_COMMAND": 2, - "umask": 2, - "path": 13, - "/opt/local/bin": 2, - "/opt/local/sbin": 2, - "/bin": 4, - "prompt": 2, - "history": 18, - "endif": 2, - "stty": 2, - "istrip": 2, - "dirpersiststore": 2, - "##############################################################################": 16, - "#Import": 2, - "the": 17, - "agnostic": 2, - "Bash": 3, - "or": 3, - "Zsh": 2, - "environment": 2, - "config": 4, - "/.profile": 2, - "HISTSIZE": 2, - "#How": 2, - "many": 2, - "lines": 2, - "of": 6, - "keep": 3, - "memory": 3, - "HISTFILE": 2, - "/.zsh_history": 2, - "#Where": 2, - "save": 4, - "disk": 5, - "SAVEHIST": 2, - "#Number": 2, - "entries": 2, - "HISTDUP": 2, - "erase": 2, - "#Erase": 2, - "duplicates": 2, - "file": 9, - "appendhistory": 2, - "#Append": 2, - "overwriting": 2, - "sharehistory": 2, - "#Share": 2, - "across": 2, - "terminals": 2, - "incappendhistory": 2, - "#Immediately": 2, - "append": 2, - "not": 2, - "just": 2, - "when": 2, - "term": 2, - "killed": 2, - "#.": 2, - "/.dotfiles/z": 4, - "zsh/z.sh": 2, - "#function": 2, - "precmd": 2, - "rupa/z.sh": 2, - "fpath": 6, - "HOME/.zsh/func": 2, - "U": 2, - "docker": 1, - "version": 12, - "from": 1, - "ubuntu": 1, - "maintainer": 1, - "Solomon": 1, - "Hykes": 1, - "<solomon@dotcloud.com>": 1, - "run": 13, - "apt": 6, - "get": 6, - "install": 8, - "y": 5, - "git": 16, - "https": 2, - "//go.googlecode.com/files/go1.1.1.linux": 1, - "amd64.tar.gz": 1, - "tar": 1, - "C": 1, - "/usr/local": 1, - "xz": 1, - "env": 4, - "/usr/local/go/bin": 2, - "/sbin": 2, - "GOPATH": 1, - "/go": 1, - "CGO_ENABLED": 1, - "/tmp": 1, - "t.go": 1, - "go": 2, - "test": 1, - "PKG": 12, - "github.com/kr/pty": 1, - "REV": 6, - "c699": 1, - "clone": 5, - "http": 3, - "//": 3, - "/go/src/": 6, - "checkout": 3, - "github.com/gorilla/context/": 1, - "d61e5": 1, - "github.com/gorilla/mux/": 1, - "b36453141c": 1, - "iptables": 1, - "/etc/apt/sources.list": 1, - "update": 2, - "lxc": 1, - "aufs": 1, - "tools": 1, - "add": 1, - "/go/src/github.com/dotcloud/docker": 1, - "/go/src/github.com/dotcloud/docker/docker": 1, - "ldflags": 1, - "/go/bin": 1, - "cmd": 1, - "pkgname": 1, - "stud": 4, - "pkgver": 1, - "pkgrel": 1, - "pkgdesc": 1, - "arch": 1, - "i686": 1, - "x86_64": 1, - "url": 4, - "license": 1, - "depends": 1, - "libev": 1, - "openssl": 1, - "makedepends": 1, - "provides": 1, - "conflicts": 1, - "_gitroot": 1, - "//github.com/bumptech/stud.git": 1, - "_gitname": 1, - "build": 2, - "msg": 4, - "pull": 3, - "origin": 1, - "else": 10, - "rm": 2, - "rf": 1, - "package": 1, - "PREFIX": 1, - "/usr": 1, - "DESTDIR": 1, - "Dm755": 1, - "init.stud": 1, - "mkdir": 2, - "p": 2, - "script": 1, - "dotfile": 1, - "repository": 3, - "does": 1, - "lot": 1, - "fun": 2, - "stuff": 3, - "like": 1, - "turning": 1, - "normal": 1, - "dotfiles": 1, - "eg": 1, - ".bashrc": 1, - "symlinks": 1, - "away": 1, - "optionally": 1, - "moving": 1, - "old": 4, - "files": 1, - "so": 1, - "that": 1, - "they": 1, - "preserved": 1, - "setting": 2, - "up": 1, - "cron": 1, - "automate": 1, - "aforementioned": 1, - "maybe": 1, - "some": 1, - "nocasematch": 1, - "This": 1, - "makes": 1, - "pattern": 1, - "matching": 1, - "insensitive": 1, - "POSTFIX": 1, - "URL": 1, - "PUSHURL": 1, - "overwrite": 3, - "true": 2, - "print_help": 2, - "e": 4, - "opt": 3, - "@": 3, - "k": 1, - "local": 22, - "false": 2, - "h": 3, - ".*": 2, - "o": 3, - "continue": 1, - "mv": 1, - "ln": 1, - "remote.origin.url": 1, - "remote.origin.pushurl": 1, - "crontab": 1, - ".jobs.cron": 1, - "x": 1, - "system": 1, - "exec": 3, - "rbenv": 2, - "versions": 1, - "bare": 1, - "&": 5, - "prefix": 1, - "/dev/null": 6, - "rvm_ignore_rvmrc": 1, - "declare": 22, - "rvmrc": 3, - "rvm_rvmrc_files": 3, - "ef": 1, - "+": 1, - "GREP_OPTIONS": 1, - "printf": 4, - "rvm_path": 4, - "UID": 1, - "elif": 4, - "rvm_is_not_a_shell_function": 2, - "rvm_path/scripts": 1, - "rvm": 1, - "sbt_release_version": 2, - "sbt_snapshot_version": 2, - "SNAPSHOT": 3, - "sbt_jar": 3, - "sbt_dir": 2, - "sbt_create": 2, - "sbt_snapshot": 1, - "sbt_launch_dir": 3, - "scala_version": 3, - "java_home": 1, - "sbt_explicit_version": 7, - "verbose": 6, - "debug": 11, - "quiet": 6, - "build_props_sbt": 3, - "project/build.properties": 9, - "versionLine": 2, - "sbt.version": 3, - "versionString": 3, - "versionLine##sbt.version": 1, - "update_build_props_sbt": 2, - "ver": 5, - "return": 3, - "perl": 3, - "pi": 1, - "||": 12, - "Updated": 1, - "Previous": 1, - "value": 1, - "was": 1, - "sbt_version": 8, - "echoerr": 3, - "vlog": 1, - "dlog": 8, - "get_script_path": 2, - "L": 1, - "target": 1, - "readlink": 1, - "get_mem_opts": 3, - "mem": 4, - "perm": 6, - "/": 2, - "<": 2, - "codecache": 1, - "die": 2, - "make_url": 3, - "groupid": 1, - "category": 1, - "default_jvm_opts": 1, - "default_sbt_opts": 1, - "default_sbt_mem": 2, - "noshare_opts": 1, - "sbt_opts_file": 1, - "jvm_opts_file": 1, - "latest_28": 1, - "latest_29": 1, - "latest_210": 1, - "script_path": 1, - "script_dir": 1, - "script_name": 2, - "java_cmd": 2, - "java": 2, - "sbt_mem": 5, - "residual_args": 4, - "java_args": 3, - "scalac_args": 4, - "sbt_commands": 2, - "build_props_scala": 1, - "build.scala.versions": 1, - "versionLine##build.scala.versions": 1, - "execRunner": 2, - "arg": 3, - "sbt_groupid": 3, - "*": 11, - "org.scala": 4, - "tools.sbt": 3, - "sbt": 18, - "sbt_artifactory_list": 2, - "version0": 2, - "F": 1, - "pe": 1, - "make_release_url": 2, - "releases": 1, - "make_snapshot_url": 2, - "snapshots": 1, - "head": 1, - "jar_url": 1, - "jar_file": 1, - "download_url": 2, - "jar": 3, - "dirname": 1, - "fail": 1, - "silent": 1, - "output": 1, - "wget": 2, - "O": 1, - "acquire_sbt_jar": 1, - "sbt_url": 1, - "usage": 2, - "cat": 3, - "<<": 2, - "EOM": 3, - "Usage": 1, - "print": 1, - "message": 1, - "runner": 1, - "chattier": 1, - "log": 2, - "level": 2, - "Debug": 1, - "Error": 1, - "colors": 2, - "disable": 1, - "ANSI": 1, - "color": 1, - "codes": 1, - "create": 2, - "start": 1, - "current": 1, - "contains": 2, - "project": 1, - "dir": 3, - "<path>": 3, - "global": 1, - "settings/plugins": 1, - "default": 4, - "/.sbt/": 1, - "<version>": 1, - "boot": 3, - "shared": 1, - "/.sbt/boot": 1, - "series": 1, - "ivy": 2, - "Ivy": 1, - "/.ivy2": 1, - "<integer>": 1, - "share": 2, - "use": 1, - "all": 1, - "caches": 1, - "sharing": 1, - "offline": 3, - "put": 1, - "mode": 2, - "jvm": 2, - "<port>": 1, - "Turn": 1, - "JVM": 1, - "debugging": 1, - "open": 1, - "at": 1, - "given": 2, - "port.": 1, - "batch": 2, - "Disable": 1, - "interactive": 1, - "The": 1, - "way": 1, - "accomplish": 1, - "pre": 1, - "there": 2, - "build.properties": 1, - "an": 1, - "property": 1, - "disk.": 1, - "That": 1, - "scalacOptions": 3, - "S": 2, - "stripped": 1, - "In": 1, - "duplicated": 1, - "conflicting": 1, - "order": 1, - "above": 1, - "shows": 1, - "precedence": 1, - "JAVA_OPTS": 1, - "lowest": 1, - "line": 1, - "highest.": 1, - "addJava": 9, - "addSbt": 12, - "addScalac": 2, - "addResidual": 2, - "addResolver": 1, - "addDebugger": 2, - "get_jvm_opts": 2, - "process_args": 2, - "require_arg": 12, - "gt": 1, - "shift": 28, - "integer": 1, - "inc": 1, - "port": 1, - "snapshot": 1, - "launch": 1, - "scala": 3, - "home": 2, - "D*": 1, - "J*": 1, - "S*": 1, - "sbtargs": 3, - "IFS": 1, - "read": 1, - "<\"$sbt_opts_file\">": 1, - "process": 1, - "combined": 1, - "args": 2, - "reset": 1, - "residuals": 1, - "argumentCount=": 1, - "we": 1, - "were": 1, - "any": 1, - "opts": 1, - "eq": 1, - "0": 1, - "ThisBuild": 1, - "Update": 1, - "properties": 1, - "explicit": 1, - "gives": 1, - "us": 1, - "choice": 1, - "Detected": 1, - "Overriding": 1, - "alert": 1, - "them": 1, - "here": 1, - "argumentCount": 1, - "./build.sbt": 1, - "./project": 1, - "pwd": 1, - "doesn": 1, - "understand": 1, - "iflast": 1, - "#residual_args": 1, - "SHEBANG#!sh": 2, - "SHEBANG#!zsh": 2, - "name": 1, - "foodforthought.jpg": 1, - "name##*fo": 1 - }, - "Slash": { - "<%>": 1, - "class": 11, - "Env": 1, - "def": 18, - "init": 4, - "memory": 3, - "ptr": 9, - "0": 3, - "ptr=": 1, - "current_value": 5, - "current_value=": 1, - "value": 1, - "AST": 4, - "Next": 1, - "eval": 10, - "env": 16, - "Prev": 1, - "Inc": 1, - "Dec": 1, - "Output": 1, - "print": 1, - "char": 5, - "Input": 1, - "Sequence": 2, - "nodes": 6, - "for": 2, - "node": 2, - "in": 2, - "Loop": 1, - "seq": 4, - "while": 1, - "Parser": 1, - "str": 2, - "chars": 2, - "split": 1, - "parse": 1, - "stack": 3, - "_parse_char": 2, - "if": 1, - "length": 1, - "1": 1, - "throw": 1, - "SyntaxError": 1, - "new": 2, - "unexpected": 2, - "end": 1, - "of": 1, - "input": 1, - "last": 1, - "switch": 1, - "<": 1, - "+": 1, - "-": 1, - ".": 1, - "[": 1, - "]": 1, - ")": 7, - ";": 6, - "}": 3, - "@stack.pop": 1, - "_add": 1, - "(": 6, - "Loop.new": 1, - "Sequence.new": 1, - "src": 2, - "File.read": 1, - "ARGV.first": 1, - "ast": 1, - "Parser.new": 1, - ".parse": 1, - "ast.eval": 1, - "Env.new": 1 - }, - "Squirrel": { - "//example": 1, - "from": 1, - "http": 1, - "//www.squirrel": 1, - "-": 1, - "lang.org/#documentation": 1, - "local": 3, - "table": 1, - "{": 10, - "a": 2, - "subtable": 1, - "array": 3, - "[": 3, - "]": 3, - "}": 10, - "+": 2, - "b": 1, ";": 15, - "foreach": 1, - "(": 10, - "i": 1, - "val": 2, - "in": 1, - ")": 10, - "print": 2, - "typeof": 1, - "/////////////////////////////////////////////": 1, - "class": 2, - "Entity": 3, - "constructor": 2, - "etype": 2, - "entityname": 4, - "name": 2, - "type": 2, - "x": 2, + "{": 2, + ")": 17, + "(": 17 + }, + "Dart": { + "print": 1, + "var": 3, + "main": 1, + "Math.sqrt": 1, + "other": 1, + "distanceTo": 1, + "new": 2, + "return": 1, + "dy": 3, + "dx": 3, + "this.y": 1, + "this.x": 1, + "Point": 7, + "q": 1, + "p": 1, + "}": 3, + "+": 1, + "*": 2, + "other.y": 1, "y": 2, - "z": 2, - "null": 2, - "function": 2, - "MoveTo": 1, - "newx": 2, - "newy": 2, - "newz": 2, - "Player": 2, - "extends": 1, - "base.constructor": 1, - "DoDomething": 1, - "newplayer": 1, - "newplayer.MoveTo": 1 - }, - "Standard ML": { - "signature": 2, - "LAZY_BASE": 3, - "sig": 2, - "type": 2, - "a": 18, - "lazy": 12, - "-": 13, - ")": 23, - "end": 6, - "LAZY": 1, - "bool": 4, - "val": 12, - "inject": 3, - "toString": 2, - "(": 22, - "string": 1, - "eq": 2, - "*": 1, - "eqBy": 3, - "compare": 2, - "order": 2, - "map": 2, - "b": 2, - "structure": 6, - "Ops": 2, - "LazyBase": 2, - "struct": 4, - "exception": 1, - "Undefined": 3, - "fun": 9, - "delay": 3, - "f": 9, - "force": 9, - "undefined": 1, - "fn": 3, - "raise": 1, - "LazyMemoBase": 2, - "datatype": 1, - "|": 1, - "Done": 1, - "of": 1, - "unit": 1, - "let": 1, - "open": 1, - "B": 1, - "x": 15, - "isUndefined": 2, - "ignore": 1, - ";": 1, - "false": 1, - "handle": 1, - "true": 1, - "if": 1, - "then": 1, - "else": 1, - "p": 4, - "y": 6, - "op": 1, - "Lazy": 1, - "LazyFn": 2, - "LazyMemo": 1 - }, - "SuperCollider": { - "BCR2000": 1, - "{": 14, - "var": 2, - "controls": 2, - "controlBuses": 2, - "rangedControlBuses": 2, - "responders": 2, - ";": 32, - "*new": 1, - "super.new.init": 1, - "}": 14, - "init": 1, - "Dictionary.new": 3, - "(": 34, - ")": 34, - "this.createCCResponders": 1, - "createCCResponders": 1, - "Array.fill": 1, - "|": 4, - "i": 5, - "CCResponder": 1, - "src": 3, - "chan": 3, - "num": 3, - "val": 4, - "[": 3, - "]": 3, - ".postln": 1, - "controls.put": 1, - "+": 4, - "controlBuses.put": 1, - "Bus.control": 1, - "Server.default": 1, - "controlBuses.at": 2, - ".value": 1, - "/": 2, - "nil": 4, - "//": 4, - "value": 1, - "at": 1, - "arg": 4, - "controlNum": 6, - "controls.at": 2, - "scalarAt": 1, - "busAt": 1, - "//boot": 1, - "server": 1, - "s.boot": 1, - "SynthDef": 1, - "sig": 7, - "resfreq": 3, - "Saw.ar": 1, - "SinOsc.kr": 1, - "*": 3, - "RLPF.ar": 1, - "Out.ar": 1, - ".play": 2, - "do": 2, - "Pan2.ar": 1, - "SinOsc.ar": 1, - "exprand": 1, - "LFNoise2.kr": 2, - "rrand": 2, - ".range": 2, - "**": 1, - "rand2": 1, - "a": 2, - "Env.perc": 1, - "-": 1, - "b": 1, - "a.delay": 2, - "a.test.plot": 1, - "b.test.plot": 1, - "Env": 1, - ".plot": 2, - "e": 1, - "Env.sine.asStream": 1, - "e.next.postln": 1, - "wait": 1, - ".fork": 1 - }, - "Tea": { - "<%>": 1, - "template": 1, - "foo": 1 - }, - "TeX": { - "%": 59, - "NeedsTeXFormat": 1, - "{": 180, - "LaTeX2e": 1, - "}": 185, - "ProvidesClass": 1, - "reedthesis": 1, - "[": 22, - "/01/27": 1, - "The": 4, - "Reed": 5, - "College": 5, - "Thesis": 5, - "Class": 4, - "]": 22, - "DeclareOption*": 1, - "PassOptionsToClass": 1, - "CurrentOption": 1, - "book": 2, - "ProcessOptions": 1, - "relax": 2, - "LoadClass": 1, - "RequirePackage": 1, - "fancyhdr": 1, - "AtBeginDocument": 1, - "fancyhf": 1, - "fancyhead": 5, - "LE": 1, - "RO": 1, - "thepage": 1, - "above": 1, - "makes": 2, - "your": 1, - "headers": 6, - "in": 10, - "all": 1, - "caps.": 2, - "If": 1, - "you": 1, - "would": 1, - "like": 1, - "different": 1, - "choose": 1, - "one": 1, - "of": 8, - "the": 14, - "following": 1, - "options": 1, - "(": 3, - "be": 3, - "sure": 1, - "to": 8, - "remove": 1, - "symbol": 1, - "from": 1, - "both": 1, - "right": 1, - "and": 2, - "left": 1, - ")": 3, - "RE": 2, - "slshape": 2, - "nouppercase": 2, - "leftmark": 2, - "This": 2, - "on": 1, - "RIGHT": 2, - "side": 2, - "pages": 2, - "italic": 1, - "use": 1, - "lowercase": 1, - "With": 1, - "Capitals": 1, - "When": 1, - "Specified.": 1, - "LO": 2, - "rightmark": 2, - "does": 1, - "same": 1, - "thing": 1, - "LEFT": 2, - "or": 1, - "scshape": 2, - "will": 2, - "small": 2, - "And": 1, - "so": 1, - "pagestyle": 2, - "fancy": 1, - "let": 10, - "oldthebibliography": 2, - "thebibliography": 2, - "endoldthebibliography": 2, - "endthebibliography": 1, - "renewenvironment": 2, - "#1": 12, - "addcontentsline": 5, - "toc": 5, - "chapter": 9, - "bibname": 2, - "end": 5, - "things": 1, - "for": 5, - "psych": 1, - "majors": 1, - "comment": 1, - "out": 1, - "oldtheindex": 2, - "theindex": 2, - "endoldtheindex": 2, - "endtheindex": 1, - "indexname": 1, - "RToldchapter": 1, - "renewcommand": 6, - "if@openright": 1, - "RTcleardoublepage": 3, - "else": 7, - "clearpage": 3, - "fi": 13, - "thispagestyle": 3, - "empty": 4, - "global": 2, - "@topnum": 1, - "z@": 2, - "@afterindentfalse": 1, - "secdef": 1, - "@chapter": 2, - "@schapter": 1, - "def": 12, - "#2": 4, - "ifnum": 2, - "c@secnumdepth": 1, - "m@ne": 2, - "if@mainmatter": 1, - "refstepcounter": 1, - "typeout": 1, - "@chapapp": 2, - "space": 4, - "thechapter.": 1, - "thechapter": 1, - "space#1": 1, - "chaptermark": 1, - "addtocontents": 2, - "lof": 1, - "protect": 2, - "addvspace": 2, - "p@": 3, - "lot": 1, - "if@twocolumn": 3, - "@topnewpage": 1, - "@makechapterhead": 2, - "@afterheading": 1, - "newcommand": 2, - "if@twoside": 1, - "ifodd": 1, - "c@page": 1, - "hbox": 15, - "newpage": 3, - "RToldcleardoublepage": 1, - "cleardoublepage": 4, - "setlength": 10, - "oddsidemargin": 2, - ".5in": 3, - "evensidemargin": 2, - "textwidth": 2, - "textheight": 4, - "topmargin": 6, - "addtolength": 8, - "headheight": 4, - "headsep": 3, - ".6in": 1, - "pt": 1, - "division#1": 1, - "gdef": 6, - "@division": 3, - "@latex@warning@no@line": 3, - "No": 3, - "noexpand": 3, - "division": 2, - "given": 3, - "department#1": 1, - "@department": 3, - "department": 1, - "thedivisionof#1": 1, - "@thedivisionof": 3, - "Division": 2, - "approvedforthe#1": 1, - "@approvedforthe": 3, - "advisor#1": 1, - "@advisor": 3, - "advisor": 1, - "altadvisor#1": 1, - "@altadvisor": 3, - "@altadvisortrue": 1, - "@empty": 1, - "newif": 1, - "if@altadvisor": 3, - "@altadvisorfalse": 1, - "contentsname": 1, - "Table": 1, - "Contents": 1, - "References": 1, - "l@chapter": 1, - "c@tocdepth": 1, - "addpenalty": 1, - "@highpenalty": 2, - "vskip": 4, - "em": 3, - "@plus": 1, - "@tempdima": 2, - "begingroup": 1, - "parindent": 1, - "rightskip": 1, - "@pnumwidth": 3, - "parfillskip": 1, + "other.x": 1, "-": 2, - "leavevmode": 1, - "bfseries": 3, - "advance": 1, - "leftskip": 2, - "hskip": 1, - "nobreak": 2, - "normalfont": 1, - "leaders": 1, - "m@th": 1, - "mkern": 2, - "@dotsep": 2, - "mu": 2, - ".": 1, - "hfill": 1, - "hb@xt@": 1, - "hss": 1, - "par": 6, - "penalty": 1, - "endgroup": 1, - "newenvironment": 1, - "abstract": 1, - "@restonecoltrue": 1, - "onecolumn": 1, - "@restonecolfalse": 1, - "Abstract": 2, - "begin": 4, - "center": 7, - "fontsize": 7, - "selectfont": 6, - "if@restonecol": 1, - "twocolumn": 1, - "ifx": 1, - "@pdfoutput": 1, - "@undefined": 1, - "RTpercent": 3, - "@percentchar": 1, - "AtBeginDvi": 2, - "special": 2, - "LaTeX": 3, - "/12/04": 3, - "SN": 3, - "rawpostscript": 1, - "AtEndDocument": 1, - "pdfinfo": 1, - "/Creator": 1, - "maketitle": 1, - "titlepage": 2, - "footnotesize": 1, - "footnoterule": 1, - "footnote": 1, - "thanks": 1, - "baselineskip": 2, - "setbox0": 2, - "Requirements": 2, - "Degree": 2, - "setcounter": 1, - "page": 3, - "null": 3, - "vfil": 8, - "@title": 1, - "centerline": 8, - "wd0": 7, - "hrulefill": 5, - "A": 1, - "Presented": 1, - "In": 1, - "Partial": 1, - "Fulfillment": 1, - "Bachelor": 1, - "Arts": 1, - "bigskip": 2, - "lineskip": 1, - ".75em": 1, - "tabular": 2, - "t": 1, - "c": 5, - "@author": 1, - "@date": 1, - "Approved": 2, - "just": 1, - "below": 2, - "cm": 2, + "x": 2, + ";": 8, + ")": 7, + "(": 7, + "{": 3, + "class": 1 + }, + "Ecl": { + "generate": 1, + "mumAge": 1, + "//Several": 1, + "left.surname": 2, + "includes": 1, + "record": 1, + "sort": 1, + "true": 1, + "#option": 1, + "r.dadAge": 1, + "end": 1, + "non": 1, + "namesRecord2": 3, + "]": 4, + "examples": 1, + "all": 1, + "extra": 1, + "Also": 1, + "surname": 1, + "namesTable2": 9, + "right": 3, + "and": 10, + "l.mumAge": 1, + ")": 32, + "<": 1, + "output": 9, + "sliding": 2, + "syntax": 1, + "left": 2, + "aveAgeR": 4, + "r": 1, + "integer2": 5, + "join": 11, + "between": 7, + "//Same": 1, + "sliding.": 1, + "is": 1, + "namesRecord": 4, + "RECORD": 1, + "strings.": 1, + "self": 1, + "to": 1, + "+": 16, + "string10": 2, + "of": 1, + "dataset": 2, + "r.mumAge": 1, + "simple": 1, + "aveAgeL": 3, + "done": 1, + "right.surname": 4, + "l": 1, + "right.age": 12, + "END": 1, + "on": 1, + "string20": 1, + "forename": 1, + "left.age": 8, + "a": 1, + "(": 32, + ";": 23, + "but": 1, + "/2": 2, + "l.dadAge": 1, + "dadAge": 1, + "by": 1, + "before": 1, + "should": 1, + "-": 5, + "ensure": 1, + "age": 2, "not": 1, - "copy0": 1, - "approved": 1, - "major": 1, - "sign": 1, - "makebox": 6 + "//This": 1, + "[": 4, + "FLAT": 2, + "namesTable": 11 + }, + "ABAP": { + "furnished": 1, + "cl_object": 1, + "FOR": 2, + "CLASS": 2, + "and": 3, + "IN": 4, + "Method": 2, + "pos": 2, + "CONSTRUCTOR": 1, + "LIMITED": 1, + "permission": 1, + "super": 1, + "LIABLE": 1, + "endclass.": 1, + "csvvalue.": 5, + "BE": 1, + "in": 3, + "method": 2, + "exporting": 1, + "endif.": 6, + "software": 1, + "granted": 1, + "abap": 1, + "indicates": 1, + "AUTHORS": 1, + "]": 5, + "pools": 1, + "be": 1, + "table": 3, + "Software": 3, + "portions": 1, + "Get": 1, + "text_ended": 1, + "Space": 2, + "charge": 1, + "STRING": 1, + "type": 11, + "<": 1, + "symbols": 1, + "here": 3, + "included": 1, + "*/": 1, + "conditions": 1, + "MIT": 2, + "PURPOSE": 1, + "SKIP_FIRST_LINE": 1, + "rights": 1, + "csvvalues.": 2, + "standard": 2, + "files": 4, + "Copyright": 1, + "if_csv_parser_delegate": 1, + "into": 6, + "publish": 1, + "not": 3, + "permit": 1, + "parse": 2, + "WARRANTY": 1, + "ABAP_BOOL": 1, + "is_first_line": 1, + "else.": 4, + "Software.": 1, + "subject": 1, + "following": 1, + "COPYRIGHT": 1, + "csvstring": 1, + "ACTION": 1, + "STRINGTAB": 1, + "final": 1, + "_skip_first_line": 1, + "shall": 1, + "SHALL": 1, + "returning.": 1, + "importing": 1, + "OTHERWISE": 1, + "Ren": 1, + "INCLUDING": 1, + "whom": 1, + "TO": 2, + "separator": 1, + "merge": 1, + "_lines": 1, + "TORT": 1, + "source": 3, + "msg.": 2, + "persons": 1, + "csvstring.": 1, + "private": 1, + "documentation": 1, + "DAMAGES": 1, + "copies": 2, + "IMPLIED": 1, + "create": 1, + "SOFTWARE": 2, + "OUT": 1, + "above": 1, + "including": 1, + "associated": 1, + "(": 8, + "License": 1, + "message": 2, + "person": 1, + "at": 2, + "CONTRACT": 1, + "inheriting": 1, + "<SIGNATURE>": 2, + "EXPRESS": 1, + "Instance": 2, + "DEALINGS": 1, + "skip_first_line": 1, + "FITNESS": 1, + "NO": 1, + "field": 1, + "endwhile.": 2, + "Permission": 1, + ")": 8, + "_textindicator": 1, + "definition": 1, + "separator.": 1, + "split": 1, + "a": 1, + "CONNECTION": 1, + "raising": 1, + "Mil": 1, + "abap_true.": 2, + "cl_abap_char_utilities": 1, + "IS": 1, + "WITHOUT": 1, + "string": 1, + "PARTICULAR": 1, + "cr_lf": 1, + "values": 2, + "this": 2, + "is": 2, + "clear": 1, + "This": 1, + "*": 56, + "REF": 1, + "_parse_line": 2, + "free": 1, + "loop": 1, + "class": 2, + "protected": 1, + "copy": 2, + "KIND": 1, + "SEPARATOR": 1, + "delegate.": 1, + "value": 2, + "TYPE": 5, + "string.": 3, + "and/or": 1, + "THE": 6, + "delegate": 1, + "OTHER": 2, + "distribute": 1, + "from": 1, + "A": 1, + "other": 3, + "e003": 1, + "formatting": 1, + "The": 2, + "assigning": 1, + "MERCHANTABILITY": 1, + "HOLDERS": 1, + "IMPLEMENTATION": 2, + "+": 9, + "abap_bool": 2, + "ref": 1, + "c": 3, + "all": 1, + "error": 1, + "DELEGATE": 1, + "WHETHER": 1, + "line": 1, + "cl_csv_parser": 2, + "append": 2, + "raise": 1, + "data": 3, + "modify": 1, + "BUT": 1, + "deal": 1, + "public": 3, + "copyright": 1, + "<line>": 3, + "limitation": 1, + "restriction": 1, + "the": 10, + "OF": 4, + "include": 3, + "EVENT": 1, + "endmethod.": 2, + "CSV": 1, + "char": 2, + "USE": 1, + "of": 6, + "*/**": 1, + "CSVSTRING": 1, + "constants": 1, + "ANY": 2, + "cx_csv_parse_error": 2, + "WARRANTIES": 1, + "so": 1, + "OR": 7, + "sell": 1, + "exception": 1, + "LIABILITY": 1, + "hereby": 1, + "DEFINITION": 2, + "C": 1, + "_csvstring": 2, + "Public": 1, + "or": 1, + "Parse": 1, + "_separator": 1, + "_lines.": 1, + "-": 978, + "notice": 2, + "RETURNING": 1, + "WITH": 1, + "AN": 1, + "use": 1, + "to": 10, + "csvvalue": 6, + "SOFTWARE.": 1, + "an": 1, + "_delegate": 1, + "AND": 1, + "Private": 1, + "do": 4, + "section.": 3, + "NONINFRINGEMENT.": 1, + "lines": 4, + "|": 7, + "csv": 1, + "concatenate": 4, + ".": 9, + "CLAIM": 1, + "ARISING": 1, + "[": 5, + "any": 1, + "methods": 2, + "constructor.": 1, + "</SIGNATURE>": 2, + "FROM": 1, + "skip_first_line.": 1, + "PROVIDED": 1, + "CL_CSV_PARSER": 6, + "substantial": 1, + "without": 2, + "sublicense": 1, + "NOT": 1, + "IF_CSV_PARSER_DELEGATE": 1, + "_LINES": 1, + "van": 1, + "constructor": 2, + "obtaining": 1, + "implementation.": 1 + }, + "COBOL": { + "S9": 4, + "PROGRAM": 2, + "PIC": 5, + "RECORD.": 1, + "DIVISION.": 4, + "COMP2": 2, + "COMP.": 3, + "STOP": 2, + "DISPLAY": 2, + "COBOL": 7, + "procedure": 1, + "stop": 1, + "PROCEDURE": 2, + "USAGES.": 1, + "run.": 1, + "program": 1, + "TEST": 2, + "display": 1, + "division.": 1, + "id.": 1, + "RUN.": 2, + "hello.": 3, + "ID.": 2, + "COMP": 5, + ")": 5, + "(": 5, + ".": 3, + "-": 19, + "IDENTIFICATION": 2 }, "Turing": { - "function": 1, + "var": 1, + "then": 1, "factorial": 4, - "(": 3, - "n": 9, + "get": 1, + "when": 1, + "put": 3, + "loop": 2, + "exit": 1, + "end": 3, + "else": 1, + "result": 2, + "..": 1, "int": 2, - ")": 3, "real": 1, "if": 2, - "then": 1, - "result": 2, - "else": 1, - "*": 1, "-": 1, - "end": 3, - "var": 1, - "loop": 2, - "put": 3, - "..": 1, - "get": 1, - "exit": 1, - "when": 1 - }, - "TXL": { - "define": 12, - "program": 1, - "[": 38, - "expression": 9, - "]": 38, - "end": 12, - "term": 6, - "|": 3, - "addop": 2, - "primary": 4, - "mulop": 2, - "number": 10, - "(": 2, - ")": 2, - "-": 3, - "/": 3, - "rule": 12, - "main": 1, - "replace": 6, - "E": 3, - "construct": 1, - "NewE": 3, - "resolveAddition": 2, - "resolveSubtraction": 2, - "resolveMultiplication": 2, - "resolveDivision": 2, - "resolveParentheses": 2, - "where": 1, - "not": 1, - "by": 6, - "N1": 8, - "+": 2, - "N2": 8, - "*": 2, - "N": 2 - }, - "TypeScript": { - "class": 3, - "Animal": 4, - "{": 9, - "constructor": 3, - "(": 18, - "public": 1, - "name": 5, - ")": 18, - "}": 9, - "move": 3, - "meters": 2, - "alert": 3, - "this.name": 1, - "+": 3, - ";": 8, - "Snake": 2, - "extends": 2, - "super": 2, - "super.move": 2, - "Horse": 2, - "var": 2, - "sam": 1, - "new": 2, - "tom": 1, - "sam.move": 1, - "tom.move": 1, - "console.log": 1 - }, - "Verilog": { - "////////////////////////////////////////////////////////////////////////////////": 14, - "//": 117, - "timescale": 10, - "ns": 8, - "/": 11, - "ps": 8, - "module": 18, - "button_debounce": 3, - "(": 378, - "input": 68, - "clk": 40, - "clock": 3, - "reset_n": 32, - "asynchronous": 2, - "reset": 13, - "button": 25, - "bouncy": 1, - "output": 42, - "reg": 26, - "debounce": 6, - "debounced": 1, - "-": 73, - "cycle": 1, - "signal": 3, - ")": 378, - ";": 287, - "parameter": 7, - "CLK_FREQUENCY": 4, - "DEBOUNCE_HZ": 4, - "localparam": 4, - "COUNT_VALUE": 2, - "WAIT": 6, - "FIRE": 4, - "COUNT": 4, - "[": 179, - "]": 179, - "state": 6, - "next_state": 6, - "count": 6, - "always": 23, - "@": 16, - "posedge": 11, - "or": 14, - "negedge": 8, - "<": 47, - "begin": 46, - "if": 23, - "end": 48, - "else": 22, - "case": 3, - "<=>": 4, - "1": 7, - "endcase": 3, - "default": 2, - "endmodule": 18, - "control": 1, - "en": 13, - "dsp_sel": 9, - "an": 6, - "wire": 67, - "a": 5, - "b": 3, - "c": 3, - "d": 3, - "e": 3, - "f": 2, - "g": 2, - "h": 2, - "i": 62, - "j": 2, - "k": 2, - "l": 2, - "assign": 23, - "FDRSE": 6, - "#": 10, - ".INIT": 6, - "b0": 27, - "Synchronous": 12, - ".S": 6, - "b1": 19, - "Initial": 6, - "value": 6, - "of": 8, - "register": 6, - "DFF2": 1, - ".Q": 6, - "Data": 13, - ".C": 6, - "Clock": 14, - ".CE": 6, - "enable": 6, - ".D": 6, - ".R": 6, - "set": 6, - "DFF0": 1, - "DFF6": 1, - "DFF4": 1, - "DFF10": 1, - "DFF8": 1, - "hex_display": 1, - "num": 5, - "hex0": 2, - "hex1": 2, - "hex2": 2, - "hex3": 2, - "seg_7": 4, - "hex_group0": 1, - ".num": 4, - ".en": 4, - ".seg": 4, - "hex_group1": 1, - "hex_group2": 1, - "hex_group3": 1, - "mux": 1, - "opA": 4, - "opB": 3, - "sum": 5, - "out": 5, - "cout": 4, - "b0000": 1, - "b01": 1, - "b11": 1, - "pipeline_registers": 1, - "BIT_WIDTH": 5, - "pipe_in": 4, - "pipe_out": 5, - "NUMBER_OF_STAGES": 7, - "generate": 3, - "genvar": 3, - "*": 4, - "BIT_WIDTH*": 5, - "pipe_gen": 6, - "for": 4, - "+": 36, - "pipeline": 2, - "BIT_WIDTH*i": 2, - "endgenerate": 3, - "ps2_mouse": 1, - "Input": 2, - "Reset": 1, - "inout": 2, - "ps2_clk": 3, - "PS2": 2, - "Bidirectional": 2, - "ps2_dat": 3, - "the_command": 2, - "Command": 1, - "to": 3, - "send": 2, - "mouse": 1, - "send_command": 2, - "Signal": 2, - "command_was_sent": 2, - "command": 1, - "finished": 1, - "sending": 1, - "error_communication_timed_out": 3, - "received_data": 2, - "Received": 1, - "data": 4, - "received_data_en": 4, - "If": 1, - "new": 1, - "has": 1, - "been": 1, - "received": 1, - "start_receiving_data": 3, - "wait_for_incoming_data": 3, - "ps2_clk_posedge": 3, - "Internal": 2, - "Wires": 1, - "ps2_clk_negedge": 3, - "idle_counter": 4, - "Registers": 2, - "ps2_clk_reg": 4, - "ps2_data_reg": 5, - "last_ps2_clk": 4, - "ns_ps2_transceiver": 13, - "State": 1, - "Machine": 1, - "s_ps2_transceiver": 8, - "PS2_STATE_0_IDLE": 10, - "h1": 1, - "PS2_STATE_2_COMMAND_OUT": 2, - "h3": 1, - "PS2_STATE_4_END_DELAYED": 4, - "Defaults": 1, - "PS2_STATE_1_DATA_IN": 3, - "||": 1, - "PS2_STATE_3_END_TRANSFER": 3, - "h00": 1, - "&&": 3, - "h01": 1, - "ps2_mouse_cmdout": 1, - "mouse_cmdout": 1, - ".clk": 6, - "Inputs": 2, - ".reset": 2, - ".the_command": 1, - ".send_command": 1, - ".ps2_clk_posedge": 2, - ".ps2_clk_negedge": 2, - ".ps2_clk": 1, - "Bidirectionals": 1, - ".ps2_dat": 1, - ".command_was_sent": 1, - "Outputs": 2, - ".error_communication_timed_out": 1, - "ps2_mouse_datain": 1, - "mouse_datain": 1, - ".wait_for_incoming_data": 1, - ".start_receiving_data": 1, - ".ps2_data": 1, - ".received_data": 1, - ".received_data_en": 1, - "ns/1ps": 2, - "e0": 1, - "x": 41, - "y": 21, - "{": 11, - "}": 11, - "e1": 1, - "ch": 1, - "z": 7, - "o": 6, - "&": 6, - "maj": 1, - "|": 2, - "s0": 1, - "s1": 1, - "sign_extender": 1, - "INPUT_WIDTH": 5, - "OUTPUT_WIDTH": 4, - "original": 3, - "sign_extended_original": 2, - "sign_extend": 3, - "gen_sign_extend": 1, - "sqrt_pipelined": 3, - "start": 12, - "optional": 2, - "INPUT_BITS": 28, - "radicand": 12, - "unsigned": 2, - "data_valid": 7, - "valid": 2, - "OUTPUT_BITS": 14, - "root": 8, - "number": 2, - "bits": 2, - "any": 1, - "integer": 1, - "%": 3, - "start_gen": 7, - "propagation": 1, - "OUTPUT_BITS*INPUT_BITS": 9, - "root_gen": 15, - "values": 3, - "radicand_gen": 10, - "mask_gen": 9, - "mask": 3, - "mask_4": 1, - "is": 4, - "odd": 1, - "this": 2, - "INPUT_BITS*": 27, - "<<": 2, - "i/2": 2, - "even": 1, - "pipeline_stage": 1, - "INPUT_BITS*i": 5, - "t_button_debounce": 1, - ".CLK_FREQUENCY": 1, - ".DEBOUNCE_HZ": 1, - ".reset_n": 3, - ".button": 1, - ".debounce": 1, - "initial": 3, - "bx": 4, - "#10": 10, - "#5": 3, - "#100": 1, - "#0.1": 8, - "t_div_pipelined": 1, - "dividend": 3, - "divisor": 5, - "div_by_zero": 2, - "quotient": 2, - "quotient_correct": 1, - "BITS": 2, - "div_pipelined": 2, - ".BITS": 1, - ".dividend": 1, - ".divisor": 1, - ".quotient": 1, - ".div_by_zero": 1, - ".start": 2, - ".data_valid": 2, - "#50": 2, - "#1": 1, - "#1000": 1, - "finish": 2, - "t_sqrt_pipelined": 1, - ".INPUT_BITS": 1, - ".radicand": 1, - ".root": 1, - "#10000": 1, - "vga": 1, - "wb_clk_i": 6, - "Mhz": 1, - "VDU": 1, - "wb_rst_i": 6, - "wb_dat_i": 3, - "wb_dat_o": 2, - "wb_adr_i": 3, - "wb_we_i": 3, - "wb_tga_i": 5, - "wb_sel_i": 3, - "wb_stb_i": 2, - "wb_cyc_i": 2, - "wb_ack_o": 2, - "vga_red_o": 2, - "vga_green_o": 2, - "vga_blue_o": 2, - "horiz_sync": 2, - "vert_sync": 2, - "csrm_adr_o": 2, - "csrm_sel_o": 2, - "csrm_we_o": 2, - "csrm_dat_o": 2, - "csrm_dat_i": 2, - "csr_adr_i": 3, - "csr_stb_i": 2, - "conf_wb_dat_o": 3, - "conf_wb_ack_o": 3, - "mem_wb_dat_o": 3, - "mem_wb_ack_o": 3, - "csr_adr_o": 2, - "csr_dat_i": 3, - "csr_stb_o": 3, - "v_retrace": 3, - "vh_retrace": 3, - "w_vert_sync": 3, - "shift_reg1": 3, - "graphics_alpha": 4, - "memory_mapping1": 3, - "write_mode": 3, - "raster_op": 3, - "read_mode": 3, - "bitmask": 3, - "set_reset": 3, - "enable_set_reset": 3, - "map_mask": 3, - "x_dotclockdiv2": 3, - "chain_four": 3, - "read_map_select": 3, - "color_compare": 3, - "color_dont_care": 3, - "wbm_adr_o": 3, - "wbm_sel_o": 3, - "wbm_we_o": 3, - "wbm_dat_o": 3, - "wbm_dat_i": 3, - "wbm_stb_o": 3, - "wbm_ack_i": 3, - "stb": 4, - "cur_start": 3, - "cur_end": 3, - "start_addr": 2, - "vcursor": 3, - "hcursor": 3, - "horiz_total": 3, - "end_horiz": 3, - "st_hor_retr": 3, - "end_hor_retr": 3, - "vert_total": 3, - "end_vert": 3, - "st_ver_retr": 3, - "end_ver_retr": 3, - "pal_addr": 3, - "pal_we": 3, - "pal_read": 3, - "pal_write": 3, - "dac_we": 3, - "dac_read_data_cycle": 3, - "dac_read_data_register": 3, - "dac_read_data": 3, - "dac_write_data_cycle": 3, - "dac_write_data_register": 3, - "dac_write_data": 3, - "vga_config_iface": 1, - "config_iface": 1, - ".wb_clk_i": 2, - ".wb_rst_i": 2, - ".wb_dat_i": 2, - ".wb_dat_o": 2, - ".wb_adr_i": 2, - ".wb_we_i": 2, - ".wb_sel_i": 2, - ".wb_stb_i": 2, - ".wb_ack_o": 2, - ".shift_reg1": 2, - ".graphics_alpha": 2, - ".memory_mapping1": 2, - ".write_mode": 2, - ".raster_op": 2, - ".read_mode": 2, - ".bitmask": 2, - ".set_reset": 2, - ".enable_set_reset": 2, - ".map_mask": 2, - ".x_dotclockdiv2": 2, - ".chain_four": 2, - ".read_map_select": 2, - ".color_compare": 2, - ".color_dont_care": 2, - ".pal_addr": 2, - ".pal_we": 2, - ".pal_read": 2, - ".pal_write": 2, - ".dac_we": 2, - ".dac_read_data_cycle": 2, - ".dac_read_data_register": 2, - ".dac_read_data": 2, - ".dac_write_data_cycle": 2, - ".dac_write_data_register": 2, - ".dac_write_data": 2, - ".cur_start": 2, - ".cur_end": 2, - ".start_addr": 1, - ".vcursor": 2, - ".hcursor": 2, - ".horiz_total": 2, - ".end_horiz": 2, - ".st_hor_retr": 2, - ".end_hor_retr": 2, - ".vert_total": 2, - ".end_vert": 2, - ".st_ver_retr": 2, - ".end_ver_retr": 2, - ".v_retrace": 2, - ".vh_retrace": 2, - "vga_lcd": 1, - "lcd": 1, - ".rst": 1, - ".csr_adr_o": 1, - ".csr_dat_i": 1, - ".csr_stb_o": 1, - ".vga_red_o": 1, - ".vga_green_o": 1, - ".vga_blue_o": 1, - ".horiz_sync": 1, - ".vert_sync": 1, - "vga_cpu_mem_iface": 1, - "cpu_mem_iface": 1, - ".wbs_adr_i": 1, - ".wbs_sel_i": 1, - ".wbs_we_i": 1, - ".wbs_dat_i": 1, - ".wbs_dat_o": 1, - ".wbs_stb_i": 1, - ".wbs_ack_o": 1, - ".wbm_adr_o": 1, - ".wbm_sel_o": 1, - ".wbm_we_o": 1, - ".wbm_dat_o": 1, - ".wbm_dat_i": 1, - ".wbm_stb_o": 1, - ".wbm_ack_i": 1, - "vga_mem_arbitrer": 1, - "mem_arbitrer": 1, - ".clk_i": 1, - ".rst_i": 1, - ".csr_adr_i": 1, - ".csr_dat_o": 1, - ".csr_stb_i": 1, - ".csrm_adr_o": 1, - ".csrm_sel_o": 1, - ".csrm_we_o": 1, - ".csrm_dat_o": 1, - ".csrm_dat_i": 1 - }, - "VHDL": { - "-": 2, - "VHDL": 1, - "example": 1, - "file": 1, - "library": 1, - "ieee": 1, - ";": 7, - "use": 1, - "ieee.std_logic_1164.all": 1, - "entity": 2, - "inverter": 2, - "is": 2, - "port": 1, - "(": 1, - "a": 2, - "in": 1, - "std_logic": 2, - "b": 2, - "out": 1, - ")": 1, - "end": 2, - "architecture": 2, - "rtl": 1, - "of": 1, - "begin": 1, - "<": 1, - "not": 1 - }, - "VimL": { - "no": 1, - "toolbar": 1, - "set": 7, - "guioptions": 1, - "-": 1, - "T": 1, - "nocompatible": 1, - "ignorecase": 1, - "incsearch": 1, - "smartcase": 1, - "showmatch": 1, - "showcmd": 1, - "syntax": 1, - "on": 1 - }, - "Visual Basic": { - "VERSION": 1, - "CLASS": 1, - "BEGIN": 1, - "MultiUse": 1, - "-": 6, - "NotPersistable": 1, - "DataBindingBehavior": 1, - "vbNone": 1, - "MTSTransactionMode": 1, - "*************************************************************************************************************************************************************************************************************************************************": 2, - "Copyright": 1, - "(": 14, - "c": 1, - ")": 14, - "David": 1, - "Briant": 1, - "All": 1, - "rights": 1, - "reserved": 1, - "Option": 1, - "Explicit": 1, - "Private": 25, - "Declare": 3, - "Function": 5, - "apiSetProp": 4, - "Lib": 3, - "Alias": 3, - "ByVal": 6, - "hwnd": 2, - "As": 34, - "Long": 10, - "lpString": 2, - "String": 13, - "hData": 1, - "apiGlobalAddAtom": 3, - "apiSetForegroundWindow": 1, - "myMouseEventsForm": 5, - "fMouseEventsForm": 2, - "WithEvents": 3, - "myAST": 3, - "cTP_AdvSysTray": 2, - "Attribute": 3, - "myAST.VB_VarHelpID": 1, - "myClassName": 2, - "myWindowName": 2, - "Const": 9, - "TEN_MILLION": 1, - "Single": 1, - "myListener": 1, - "VLMessaging.VLMMMFileListener": 1, - "myListener.VB_VarHelpID": 1, - "myMMFileTransports": 2, - "VLMessaging.VLMMMFileTransports": 1, - "myMMFileTransports.VB_VarHelpID": 1, - "myMachineID": 1, - "myRouterSeed": 1, - "myRouterIDsByMMTransportID": 1, - "New": 6, - "Dictionary": 3, - "myMMTransportIDsByRouterID": 2, - "myDirectoryEntriesByIDString": 1, - "GET_ROUTER_ID": 1, - "GET_ROUTER_ID_REPLY": 1, - "REGISTER_SERVICE": 1, - "REGISTER_SERVICE_REPLY": 1, - "UNREGISTER_SERVICE": 1, - "UNREGISTER_SERVICE_REPLY": 1, - "GET_SERVICES": 1, - "GET_SERVICES_REPLY": 1, - "Initialize": 1, - "/": 1, - "Release": 1, - "hide": 1, - "us": 1, - "from": 1, - "the": 3, - "Applications": 1, - "list": 1, - "in": 1, - "Windows": 1, - "Task": 1, - "Manager": 1, - "App.TaskVisible": 1, - "False": 1, - "create": 1, - "tray": 1, - "icon": 1, - "Set": 5, - "myAST.create": 1, - "myMouseEventsForm.icon": 1, - "make": 1, - "myself": 1, - "easily": 1, - "found": 1, - "myMouseEventsForm.hwnd": 3, - "End": 7, - "Sub": 7, - "shutdown": 1, - "myAST.destroy": 1, - "Nothing": 2, - "Unload": 1, - "myAST_RButtonUp": 1, - "Dim": 1, - "epm": 1, - "cTP_EasyPopupMenu": 1, - "menuItemSelected": 1, - "epm.addMenuItem": 3, - "MF_STRING": 3, - "epm.addSubmenuItem": 2, - "MF_SEPARATOR": 1, - "MF_CHECKED": 1, - "route": 2, - "to": 1, - "a": 1, - "remote": 1, - "machine": 1, - "Else": 1, - "for": 1, - "moment": 1, - "just": 1, - "between": 1, - "MMFileTransports": 1, - "If": 3, - "myMMTransportIDsByRouterID.Exists": 1, - "message.toAddress.RouterID": 2, - "Then": 1, - "transport": 1, - "transport.send": 1, - "messageToBytes": 1, - "message": 1, - "directoryEntryIDString": 2, - "serviceType": 2, - "address": 1, - "VLMAddress": 1, - "&": 7, - "address.MachineID": 1, - "address.RouterID": 1, - "address.AgentID": 1, - "myMMFileTransports_disconnecting": 1, - "id": 1, - "oReceived": 2, - "Boolean": 1, - "True": 1 - }, - "Volt": { - "module": 1, - "main": 2, - ";": 53, - "import": 7, - "core.stdc.stdio": 1, - "core.stdc.stdlib": 1, - "watt.process": 1, - "watt.path": 1, - "results": 1, - "list": 1, - "cmd": 1, - "int": 8, - "(": 37, - ")": 37, - "{": 12, - "auto": 6, - "cmdGroup": 2, - "new": 3, - "CmdGroup": 1, - "bool": 4, - "printOk": 2, - "true": 4, - "printImprovments": 2, - "printFailing": 2, - "printRegressions": 2, - "string": 1, - "compiler": 3, - "getEnv": 1, - "if": 7, - "is": 2, - "null": 3, - "printf": 6, - ".ptr": 14, - "return": 2, - "-": 3, - "}": 12, - "///": 1, - "@todo": 1, - "Scan": 1, - "for": 4, - "files": 1, - "tests": 2, - "testList": 1, - "total": 5, - "passed": 5, - "failed": 5, - "improved": 3, - "regressed": 6, - "rets": 5, - "Result": 2, - "[": 6, - "]": 6, - "tests.length": 3, - "size_t": 3, - "i": 14, - "<": 3, - "+": 14, - ".runTest": 1, - "cmdGroup.waitAll": 1, - "ret": 1, - "ret.ok": 1, - "cast": 5, - "ret.hasPassed": 4, - "&&": 2, - "ret.test.ptr": 4, - "ret.msg.ptr": 4, - "else": 3, - "fflush": 2, - "stdout": 1, - "xml": 8, - "fopen": 1, - "fprintf": 2, - "rets.length": 1, - ".xmlLog": 1, - "fclose": 1, - "rate": 2, - "float": 2, - "/": 1, "*": 1, - "f": 1, - "double": 1 + ")": 3, + "n": 9, + "(": 3, + "function": 1 }, - "wisp": { - ";": 199, - "#": 2, - "wisp": 6, - "Wisp": 13, - "is": 20, - "homoiconic": 1, - "JS": 17, - "dialect": 1, - "with": 6, - "a": 24, - "clojure": 2, - "syntax": 2, - "s": 7, - "-": 33, - "expressions": 6, - "and": 9, - "macros.": 1, - "code": 3, - "compiles": 1, - "to": 21, - "human": 1, - "readable": 1, - "javascript": 1, - "which": 3, - "one": 3, - "of": 16, - "they": 3, - "key": 3, - "differences": 1, - "from": 2, - "clojurescript.": 1, - "##": 2, - "data": 1, - "structures": 1, - "nil": 4, - "just": 3, - "like": 2, - "js": 1, - "undefined": 1, - "differenc": 1, - "that": 7, - "it": 10, - "shortcut": 1, - "for": 5, - "void": 2, - "(": 77, - ")": 75, - "in": 16, - "JS.": 2, - "Booleans": 1, - "booleans": 2, - "true": 6, - "/": 1, - "false": 2, - "are": 14, - "Numbers": 1, - "numbers": 2, - "Strings": 2, - "strings": 3, - "can": 13, - "be": 15, - "multiline": 1, - "Characters": 2, - "sugar": 1, - "single": 1, - "char": 1, - "Keywords": 3, - "symbolic": 2, - "identifiers": 2, - "evaluate": 2, - "themselves.": 1, - "keyword": 1, - "Since": 1, - "string": 1, - "constats": 1, - "fulfill": 1, - "this": 2, - "purpose": 2, - "keywords": 1, - "compile": 3, - "equivalent": 2, - "strings.": 1, - "window.addEventListener": 1, - "load": 1, - "handler": 1, - "invoked": 2, - "as": 4, - "functions": 8, - "desugars": 1, - "plain": 2, - "associated": 2, - "value": 2, - "access": 1, - "bar": 4, - "foo": 6, - "[": 22, - "]": 22, - "Vectors": 1, - "vectors": 1, - "arrays.": 1, - "Note": 3, - "Commas": 2, - "white": 1, - "space": 1, - "&": 6, - "used": 1, - "if": 7, - "desired": 1, - "Maps": 2, - "hash": 1, - "maps": 1, - "objects.": 1, - "unlike": 1, - "keys": 1, - "not": 4, - "arbitary": 1, - "types.": 1, - "{": 4, - "beep": 1, - "bop": 1, - "}": 4, - "optional": 2, - "but": 7, - "come": 1, - "handy": 1, - "separating": 1, - "pairs.": 1, - "b": 5, - "In": 5, - "future": 2, - "JSONs": 1, - "may": 1, - "made": 2, - "compatible": 1, - "map": 3, - "syntax.": 1, - "Lists": 1, - "You": 1, - "up": 1, - "lists": 1, - "representing": 1, - "expressions.": 1, - "The": 1, - "first": 4, - "item": 2, - "the": 9, - "expression": 6, - "function": 7, - "being": 1, - "rest": 7, - "items": 2, - "arguments.": 2, - "baz": 2, - "Conventions": 1, - "puts": 1, - "lot": 2, - "effort": 1, - "making": 1, - "naming": 1, - "conventions": 3, - "transparent": 1, - "by": 2, - "encouraning": 1, - "lisp": 1, - "then": 1, - "translating": 1, - "them": 1, - "dash": 1, - "delimited": 1, - "dashDelimited": 1, - "predicate": 1, - "isPredicate": 1, - "__privates__": 1, - "list": 2, - "vector": 1, - "listToVector": 1, - "As": 1, - "side": 2, - "effect": 1, - "some": 2, - "names": 1, - "expressed": 3, - "few": 1, - "ways": 1, - "although": 1, - "third": 2, - "expression.": 1, - "<": 1, - "number": 3, - "Else": 1, - "missing": 1, - "conditional": 1, - "evaluates": 2, - "result": 2, - "will": 6, - ".": 6, - "monday": 1, - "today": 1, - "Compbining": 1, - "everything": 1, - "an": 1, - "sometimes": 1, - "might": 1, - "want": 2, - "compbine": 1, - "multiple": 1, - "into": 2, - "usually": 3, - "evaluating": 1, - "have": 2, - "effects": 1, - "do": 4, - "console.log": 2, - "+": 9, - "Also": 1, - "special": 4, - "form": 10, - "many.": 1, - "If": 2, - "evaluation": 1, - "nil.": 1, - "Bindings": 1, - "Let": 1, - "containing": 1, - "lexical": 1, - "context": 1, - "simbols": 1, - "bindings": 1, - "forms": 1, - "bound": 1, - "their": 2, - "respective": 1, - "results.": 1, - "let": 2, - "c": 1, - "Functions": 1, - "fn": 15, - "x": 22, - "named": 1, - "similar": 2, - "increment": 1, - "also": 2, - "contain": 1, - "documentation": 1, - "metadata.": 1, - "Docstring": 1, - "metadata": 1, - "presented": 1, - "compiled": 2, - "yet": 1, - "comments": 1, - "function.": 1, - "incerement": 1, - "added": 1, - "makes": 1, - "capturing": 1, - "arguments": 7, - "easier": 1, - "than": 1, - "argument": 1, - "follows": 1, - "simbol": 1, - "capture": 1, - "all": 4, - "args": 1, - "array.": 1, - "rest.reduce": 1, - "sum": 3, - "Overloads": 1, - "overloaded": 1, - "depending": 1, - "on": 1, - "take": 2, - "without": 2, - "introspection": 1, - "version": 1, - "y": 6, - "more": 3, - "more.reduce": 1, - "does": 1, - "has": 2, - "variadic": 1, - "overload": 1, - "passed": 1, - "throws": 1, - "exception.": 1, - "Other": 1, - "Special": 1, - "Forms": 1, - "Instantiation": 1, - "type": 2, - "instantiation": 1, - "consice": 1, - "needs": 1, - "suffixed": 1, - "character": 1, - "Type.": 1, - "options": 2, - "More": 1, - "verbose": 1, - "there": 1, - "new": 2, - "Class": 1, - "Method": 1, - "calls": 3, - "method": 2, - "no": 1, - "different": 1, - "Any": 1, - "quoted": 1, - "prevent": 1, - "doesn": 1, - "t": 1, - "unless": 5, - "or": 2, - "macro": 7, - "try": 1, - "implemting": 1, - "understand": 1, - "use": 2, - "case": 1, - "We": 1, - "execute": 1, - "body": 4, - "condition": 4, - "defn": 2, - "Although": 1, - "following": 2, - "log": 1, - "anyway": 1, - "since": 1, - "exectued": 1, - "before": 1, - "called.": 1, - "Macros": 2, - "solve": 1, - "problem": 1, - "because": 1, - "immediately.": 1, - "Instead": 1, - "you": 1, - "get": 2, - "choose": 1, - "when": 1, - "evaluated.": 1, - "return": 1, - "instead.": 1, - "defmacro": 3, - "less": 1, - "how": 1, - "build": 1, - "implemented.": 1, - "define": 4, - "name": 2, - "def": 1, - "@body": 1, - "Now": 1, - "we": 2, - "above": 1, - "defined": 1, - "expanded": 2, - "time": 1, - "resulting": 1, - "diff": 1, - "program": 1, - "output.": 1, - "print": 1, - "message": 2, - ".log": 1, - "console": 1, - "Not": 1, - "macros": 2, - "via": 2, - "templating": 1, - "language": 1, - "available": 1, - "at": 1, - "hand": 1, - "assemble": 1, - "form.": 1, - "For": 2, - "instance": 1, - "ease": 1, - "functional": 1, - "chanining": 1, - "popular": 1, - "chaining.": 1, - "example": 1, - "API": 1, - "pioneered": 1, - "jQuery": 1, - "very": 2, - "common": 1, - "open": 2, - "target": 1, - "keypress": 2, - "filter": 2, - "isEnterKey": 1, - "getInputText": 1, - "reduce": 3, - "render": 2, - "Unfortunately": 1, - "though": 1, - "requires": 1, - "need": 1, - "methods": 1, - "dsl": 1, - "object": 1, - "limited.": 1, - "Making": 1, - "party": 1, - "second": 1, - "class.": 1, - "Via": 1, - "achieve": 1, - "chaining": 1, - "such": 1, - "tradeoffs.": 1, - "operations": 3, - "operation": 3, - "cons": 2, - "tagret": 1, - "enter": 1, - "input": 1, - "text": 1 - }, - "XC": { - "int": 2, - "main": 1, - "(": 1, - ")": 1, - "{": 2, - "x": 3, - ";": 4, - "chan": 1, - "c": 3, - "par": 1, - "<:>": 1, - "0": 1, - "}": 2, - "return": 1 - }, - "XML": { - "<?xml>": 3, - "version=": 4, - "<project>": 1, - "name=": 223, - "xmlns": 2, - "ea=": 2, - "<description>": 2, - "This": 21, - "easyant": 3, - "module.ant": 1, - "sample": 2, - "file": 3, - "is": 123, - "optionnal": 1, - "and": 44, - "designed": 1, - "to": 164, - "customize": 1, - "your": 8, - "build": 1, - "with": 23, - "own": 2, - "specific": 8, - "target.": 1, - "</description>": 2, - "<target>": 2, - "<echo>": 2, - "my": 2, - "awesome": 1, - "additionnal": 1, - "target": 6, - "</echo>": 2, - "</target>": 2, - "extensionOf=": 1, - "i": 2, - "would": 2, - "love": 1, + "RDoc": { + "that": 1, + "useful": 1, + "doc": 1, + "source": 2, + "documentation": 8, + "be": 3, + "can": 2, + "for": 9, + "specified": 1, + "date": 1, + "readers": 1, + "typical": 1, + "Dave": 1, + "C": 1, + "rdoc": 7, "could": 1, - "easily": 1, - "plug": 1, - "pre": 1, - "compile": 1, - "step": 1, - "</project>": 1, - "<ivy-module>": 1, - "<info>": 1, - "organisation=": 3, - "module=": 3, - "revision=": 3, - "status=": 1, - "this": 77, - "a": 127, - "module.ivy": 1, - "for": 59, - "java": 1, - "standard": 1, - "application": 2, - "<ea:build>": 1, - "<ea:property>": 1, - "value=": 1, - "<ea:plugin>": 1, - "</ea:build>": 1, - "</info>": 1, - "<configurations>": 1, - "<conf>": 2, - "visibility=": 2, - "description=": 2, - "</configurations>": 1, - "<dependencies>": 1, - "<dependency>": 1, - "org=": 1, - "rev=": 1, - "conf=": 1, - "default": 9, - "junit": 2, - "test": 7, - "-": 49, - "/": 6, - "</dependencies>": 1, - "</ivy-module>": 1, - "<doc>": 1, - "<assembly>": 1, - "<name>": 1, - "ReactiveUI": 2, - "</name>": 1, - "</assembly>": 1, - "<members>": 1, - "<member>": 120, - "<summary>": 120, - "IObservedChange": 5, - "generic": 3, - "interface": 4, - "that": 94, - "replaces": 1, - "the": 260, - "non": 1, - "PropertyChangedEventArgs.": 1, - "Note": 7, - "it": 16, - "used": 19, - "both": 2, - "Changing": 5, - "(": 52, - "i.e.": 23, - ")": 45, - "Changed": 4, - "Observables.": 2, - "In": 6, - "future": 2, - "will": 65, - "be": 57, - "Covariant": 1, - "which": 12, - "allow": 1, - "simpler": 1, - "casting": 1, - "between": 15, - "changes.": 2, - "</summary>": 121, - "</member>": 120, - "The": 74, - "object": 42, - "has": 16, - "raised": 1, - "change.": 12, - "name": 7, - "of": 75, - "property": 74, - "changed": 18, - "on": 35, - "Sender.": 1, - "value": 44, - "changed.": 9, - "IMPORTANT": 1, - "NOTE": 1, - "often": 3, - "not": 9, - "set": 41, - "performance": 1, - "reasons": 1, - "unless": 1, - "you": 20, - "have": 17, - "explicitly": 1, - "requested": 1, - "an": 88, - "Observable": 56, - "via": 8, - "method": 34, - "such": 5, - "as": 25, - "ObservableForProperty.": 1, - "To": 4, - "retrieve": 3, - "use": 5, - "Value": 3, - "extension": 2, - "method.": 2, - "IReactiveNotifyPropertyChanged": 6, - "represents": 4, - "extended": 1, - "version": 3, - "INotifyPropertyChanged": 1, - "also": 17, - "exposes": 1, - "IEnableLogger": 1, - "dummy": 1, - "attaching": 1, - "any": 11, - "class": 11, - "give": 1, - "access": 3, - "Log": 2, - "When": 5, - "called": 5, - "fire": 11, - "change": 26, - "notifications": 22, - "neither": 3, - "traditional": 3, - "nor": 3, - "until": 7, - "return": 11, - "disposed.": 3, - "<returns>": 36, - "An": 26, - "when": 38, - "disposed": 4, - "reenables": 3, - "notifications.": 5, - "</returns>": 36, - "Represents": 4, - "fires": 6, - "*before*": 2, - "about": 5, - "should": 10, - "duplicate": 2, - "if": 27, - "same": 8, - "multiple": 6, - "times.": 4, - "*after*": 2, - "TSender": 1, - "helper": 5, - "adds": 2, - "typed": 2, - "versions": 2, - "Changed.": 1, - "IReactiveCollection": 3, - "collection": 27, - "can": 11, - "notify": 3, - "its": 4, - "contents": 2, - "are": 13, - "either": 1, - "items": 27, - "added/removed": 1, - "or": 24, - "itself": 2, - "changes": 13, - ".": 20, - "It": 1, - "important": 6, - "implement": 5, - "Changing/Changed": 1, - "from": 12, - "semantically": 3, - "Fires": 14, - "added": 6, - "once": 4, - "per": 2, - "item": 19, - "added.": 4, - "Functions": 2, - "add": 2, - "AddRange": 2, - "provided": 14, - "was": 6, - "before": 8, - "going": 4, - "collection.": 6, - "been": 5, - "removed": 4, - "providing": 20, - "removed.": 4, - "whenever": 18, - "number": 9, - "in": 45, - "new": 10, - "Count.": 4, - "previous": 2, - "Provides": 4, - "Item": 4, - "implements": 8, - "IReactiveNotifyPropertyChanged.": 4, - "only": 18, - "enabled": 8, - "ChangeTrackingEnabled": 2, - "True.": 2, - "Enables": 2, - "ItemChanging": 2, - "ItemChanged": 2, - "properties": 29, - ";": 10, - "implementing": 2, - "rebroadcast": 2, - "through": 3, - "ItemChanging/ItemChanged.": 2, - "T": 1, - "type": 23, - "specified": 7, - "Observables": 4, - "IMessageBus": 1, - "act": 2, - "simple": 2, - "way": 2, - "ViewModels": 3, - "other": 9, - "objects": 4, - "communicate": 2, - "each": 7, - "loosely": 2, - "coupled": 2, - "way.": 2, - "Specifying": 2, - "messages": 22, - "go": 2, - "where": 4, - "done": 2, - "combination": 2, - "Type": 9, - "message": 30, - "well": 2, - "additional": 3, - "parameter": 6, - "unique": 12, - "string": 13, - "distinguish": 12, - "arbitrarily": 2, - "by": 13, - "client.": 2, - "Listen": 4, - "provides": 6, - "Message": 2, - "RegisterMessageSource": 4, - "SendMessage.": 2, - "<typeparam>": 12, - "listen": 6, - "to.": 7, - "</typeparam>": 12, - "<param>": 84, - "A": 19, - "identical": 11, - "types": 10, - "one": 27, - "purpose": 10, - "leave": 10, - "null.": 10, - "</param>": 83, - "Determins": 2, - "particular": 2, - "registered.": 2, - "message.": 1, - "True": 6, - "posted": 3, - "Type.": 2, - "Registers": 3, - "representing": 20, - "stream": 7, - "send.": 4, - "Another": 2, - "part": 2, - "code": 4, - "then": 3, - "call": 5, - "Observable.": 6, - "subscribed": 2, - "sent": 2, - "out": 4, - "provided.": 5, - "Sends": 2, - "single": 2, - "using": 9, - "contract.": 2, - "Consider": 2, - "instead": 2, - "sending": 2, - "response": 2, - "events.": 2, - "actual": 2, - "send": 3, - "returns": 5, - "current": 10, - "logger": 2, - "allows": 15, - "log": 2, - "attached.": 1, - "data": 1, - "structure": 1, - "representation": 1, - "memoizing": 2, - "cache": 14, - "evaluate": 1, - "function": 13, - "but": 7, - "keep": 1, - "recently": 3, - "evaluated": 1, - "parameters.": 1, - "Since": 1, - "mathematical": 2, - "sense": 1, - "key": 12, - "*always*": 1, - "maps": 1, - "corresponding": 2, - "value.": 2, - "calculation": 8, - "function.": 6, - "returned": 2, - "Constructor": 2, - "whose": 7, - "results": 6, - "want": 2, - "Tag": 1, - "user": 2, - "defined": 1, - "size": 1, - "maintain": 1, - "after": 1, - "old": 1, - "start": 1, - "thrown": 1, - "out.": 1, - "result": 3, - "gets": 1, - "evicted": 2, - "because": 2, - "Invalidate": 2, - "full": 1, - "Evaluates": 1, - "returning": 1, - "cached": 2, - "possible": 1, - "pass": 2, - "optional": 2, - "parameter.": 1, - "Ensure": 1, - "next": 1, - "time": 3, - "queried": 1, - "called.": 1, - "all": 4, - "Returns": 5, - "values": 4, - "currently": 2, - "MessageBus": 3, - "bus.": 1, - "scheduler": 11, - "post": 2, - "RxApp.DeferredScheduler": 2, - "default.": 2, - "Current": 1, - "RxApp": 1, - "global": 1, - "object.": 3, - "ViewModel": 8, - "another": 3, - "s": 1, - "Return": 1, - "instance": 2, - "type.": 3, - "registered": 1, - "ObservableAsPropertyHelper": 6, - "help": 1, - "backed": 1, - "read": 3, - "still": 1, - "created": 2, - "directly": 1, - "more": 16, - "ToProperty": 2, - "ObservableToProperty": 1, - "methods.": 2, - "so": 1, - "output": 1, - "chained": 2, - "example": 2, - "property.": 12, - "Constructs": 4, - "base": 3, - "on.": 6, - "action": 2, - "take": 2, - "typically": 1, - "t": 2, - "bindings": 13, - "null": 4, - "OAPH": 2, - "at": 2, - "startup.": 1, - "initial": 28, - "normally": 6, - "Dispatcher": 3, - "based": 9, - "last": 1, - "Exception": 1, - "steps": 1, - "taken": 1, - "ensure": 3, - "never": 3, - "complete": 1, - "fail.": 1, - "Converts": 2, - "automatically": 3, - "onChanged": 2, - "raise": 2, - "notification.": 2, - "equivalent": 2, - "convenient.": 1, - "Expression": 7, - "initialized": 2, - "backing": 9, - "field": 10, - "ReactiveObject": 11, - "ObservableAsyncMRUCache": 2, - "memoization": 2, - "asynchronous": 4, - "expensive": 2, - "compute": 1, - "MRU": 1, - "fixed": 1, - "limit": 5, - "cache.": 5, - "guarantees": 6, - "given": 11, - "flight": 2, - "subsequent": 1, - "requests": 4, - "wait": 3, - "first": 1, - "empty": 1, - "web": 6, - "image": 1, - "receives": 1, - "two": 1, - "concurrent": 5, - "issue": 2, - "WebRequest": 1, - "does": 1, - "mean": 1, - "request": 3, - "Concurrency": 1, - "limited": 1, - "maxConcurrent": 1, - "too": 1, - "many": 1, - "operations": 6, - "progress": 1, - "further": 1, - "queued": 1, - "slot": 1, - "available.": 1, - "performs": 1, - "asyncronous": 1, - "async": 3, - "CPU": 1, - "Observable.Return": 1, - "may": 1, - "result.": 2, - "*must*": 1, - "equivalently": 1, - "input": 2, - "being": 1, - "memoized": 1, - "calculationFunc": 2, - "depends": 1, - "varables": 1, - "than": 5, - "unpredictable.": 1, - "reached": 2, - "discarded.": 4, - "maximum": 2, - "regardless": 2, - "caches": 2, - "server.": 2, - "clean": 1, - "up": 25, - "manage": 1, - "disk": 1, - "download": 1, - "save": 1, - "temporary": 1, - "folder": 1, - "onRelease": 1, - "delete": 1, - "file.": 1, - "run": 7, - "defaults": 1, - "TaskpoolScheduler": 2, - "Issues": 1, - "fetch": 1, - "operation.": 1, - "operation": 2, - "finishes.": 1, - "If": 6, - "immediately": 3, - "upon": 1, - "subscribing": 1, - "returned.": 2, - "provide": 2, - "synchronous": 1, - "AsyncGet": 1, - "resulting": 1, - "Works": 2, - "like": 2, - "SelectMany": 2, - "memoizes": 2, - "selector": 5, - "calls.": 2, - "addition": 3, - "no": 4, - "selectors": 2, - "running": 4, - "concurrently": 2, - "queues": 2, - "rest.": 2, - "very": 2, - "services": 2, - "avoid": 2, - "potentially": 2, - "spamming": 2, - "server": 2, - "hundreds": 2, - "requests.": 2, - "similar": 3, - "passed": 1, - "SelectMany.": 1, - "similarly": 1, - "ObservableAsyncMRUCache.AsyncGet": 1, - "must": 2, - "sense.": 1, - "flattened": 2, - "selector.": 2, - "overload": 2, - "useful": 2, - "making": 3, - "service": 1, - "several": 1, - "places": 1, - "paths": 1, - "already": 1, - "configured": 1, - "ObservableAsyncMRUCache.": 1, - "notification": 6, - "Attempts": 1, - "expression": 3, - "false": 2, - "expression.": 1, - "entire": 1, - "able": 1, - "followed": 1, - "otherwise": 1, - "Given": 3, - "fully": 3, - "filled": 1, - "SetValueToProperty": 1, - "apply": 3, - "target.property": 1, - "This.GetValue": 1, - "observed": 1, - "onto": 1, - "convert": 2, - "stream.": 3, - "ValueIfNotDefault": 1, - "filters": 1, - "BindTo": 1, - "takes": 1, - "applies": 1, - "Conceptually": 1, - "child": 2, - "without": 1, - "checks.": 1, - "set.": 3, - "x.Foo.Bar.Baz": 1, - "disconnects": 1, - "binding.": 1, - "ReactiveCollection.": 1, - "ReactiveCollection": 1, - "existing": 3, - "list.": 2, - "list": 1, - "populate": 1, - "anything": 2, - "Change": 2, - "Tracking": 2, - "Creates": 3, - "adding": 2, - "completes": 4, - "optionally": 2, - "ensuring": 2, - "delay.": 2, - "withDelay": 2, - "leak": 2, - "Timer.": 2, - "always": 4, - "UI": 2, - "thread.": 3, - "put": 2, - "into": 2, - "populated": 4, - "faster": 2, - "delay": 2, - "Select": 3, - "item.": 3, - "creating": 2, - "collections": 1, - "updated": 1, - "respective": 1, - "Model": 1, - "updated.": 1, - "Collection.Select": 1, - "mirror": 1, - "ObservableForProperty": 14, - "ReactiveObject.": 1, - "unlike": 13, - "Selector": 1, - "classes": 2, - "INotifyPropertyChanged.": 1, - "monitor": 1, - "RaiseAndSetIfChanged": 2, - "Setter": 2, - "write": 2, - "assumption": 4, - "named": 2, - "RxApp.GetFieldNameForPropertyNameFunc.": 2, - "almost": 2, - "keyword.": 2, - "newly": 2, - "intended": 5, - "Silverlight": 2, - "WP7": 1, - "reflection": 1, - "cannot": 1, - "private": 1, - "field.": 1, - "Reference": 1, - "Use": 13, - "custom": 4, - "raiseAndSetIfChanged": 1, - "doesn": 1, - "x": 1, - "x.SomeProperty": 1, - "suffice.": 1, - "RaisePropertyChanging": 2, - "mock": 4, - "scenarios": 4, - "manually": 4, - "fake": 4, - "invoke": 4, - "raisePropertyChanging": 4, - "faking": 4, - "RaisePropertyChanged": 2, - "helps": 1, + "current": 1, + "options": 1, + "any": 1, + "copyright": 1, + "OK": 1, + "itself": 1, "make": 2, - "them": 1, - "compatible": 1, - "Rx.Net.": 1, - "declare": 1, - "initialize": 1, - "derive": 1, - "properties/methods": 1, - "MakeObjectReactiveHelper.": 1, - "InUnitTestRunner": 1, - "attempts": 1, - "determine": 1, - "heuristically": 1, - "unit": 3, - "framework.": 1, - "we": 1, - "determined": 1, - "framework": 1, - "running.": 1, - "GetFieldNameForProperty": 1, - "convention": 2, - "GetFieldNameForPropertyNameFunc.": 1, - "needs": 1, - "found.": 1, - "name.": 1, - "DeferredScheduler": 1, - "schedule": 2, - "work": 2, - "normal": 2, - "mode": 2, - "DispatcherScheduler": 1, - "Unit": 1, - "Test": 1, - "Immediate": 1, - "simplify": 1, - "writing": 1, - "common": 1, - "tests.": 1, - "background": 1, - "modes": 1, - "TPL": 1, - "Task": 1, - "Pool": 1, - "Threadpool": 1, - "Set": 3, - "provider": 1, - "usually": 1, - "entry": 1, - "MessageBus.Current.": 1, - "override": 1, - "naming": 1, - "one.": 1, - "WhenAny": 12, - "observe": 12, - "constructors": 12, - "need": 12, - "setup.": 12, - "</members>": 1, - "</doc>": 1 - }, - "XProc": { - "<?xml>": 1, - "version=": 2, - "encoding=": 1, - "<p:declare-step>": 1, - "xmlns": 2, - "p=": 1, - "c=": 1, - "<p:input>": 1, - "port=": 2, - "<p:inline>": 1, - "<doc>": 1, - "Hello": 1, - "world": 1, - "</doc>": 1, - "</p:inline>": 1, - "</p:input>": 1, - "<p:output>": 1, - "<p:identity/>": 1, - "</p:declare-step>": 1 - }, - "XQuery": { - "(": 38, - "-": 486, - "xproc.xqm": 1, - "core": 1, - "xqm": 1, - "contains": 1, - "entry": 2, - "points": 1, - "primary": 1, - "eval": 3, - "step": 5, - "function": 3, - "and": 3, - "control": 1, - "functions.": 1, - ")": 38, - "xquery": 1, - "version": 1, - "encoding": 1, - ";": 25, - "module": 6, - "namespace": 8, - "xproc": 17, - "declare": 24, - "namespaces": 5, - "p": 2, - "c": 1, - "err": 1, - "imports": 1, - "import": 4, - "util": 1, - "at": 4, - "const": 1, - "parse": 8, - "u": 2, - "options": 2, - "boundary": 1, - "space": 1, - "preserve": 1, - "option": 1, - "saxon": 1, + "package": 1, + "including": 1, + "see": 1, "output": 1, - "functions": 1, - "variable": 13, - "run": 2, - "run#6": 1, - "choose": 1, - "try": 1, - "catch": 1, - "group": 1, - "for": 1, - "each": 1, - "viewport": 1, - "library": 1, - "pipeline": 8, - "list": 1, + "Description": 1, + "will": 1, + "LEGAL.rdoc": 1, + "Eric": 1, + "<img>": 1, + "starting": 1, + "generating": 1, + "to": 4, + "express": 1, + "LICENSE.rdoc.": 1, + "is": 4, + "//github.com/rdoc/rdoc": 1, + "{": 1, + "subdirectory": 1, + "produces": 1, + "as": 1, + ".": 2, + "index": 1, + "without": 2, + "Thomas": 1, + "figure": 1, + "use": 1, + "+": 8, + "//docs.seattlerb.org/rdoc": 1, + "page": 1, + "Ruby": 4, + "individual": 1, + "(": 3, + "line.": 1, + "bugs": 1, + "installed": 1, + "and": 9, "all": 1, - "declared": 1, - "enum": 3, - "{": 5, - "<namespace>": 1, - "name=": 1, - "ns": 1, - "<dummy>": 1, - "}": 5, - "</dummy>": 1, - "</namespace>": 1, - "point": 1, - "stdin": 1, - "dflag": 1, - "tflag": 1, - "bindings": 2, - "STEP": 3, - "I": 1, - "preprocess": 1, - "let": 6, - "validate": 1, - "explicit": 3, - "AST": 2, - "name": 1, - "type": 1, - "ast": 1, - "element": 1, - "parse/@*": 1, - "sort": 1, - "parse/*": 1, - "II": 1, - "eval_result": 1, - "III": 1, - "serialize": 1, - "return": 2, - "results": 1, - "serialized_result": 2 - }, - "XSLT": { - "<?xml>": 1, - "version=": 2, - "<xsl:stylesheet>": 1, - "xmlns": 1, - "xsl=": 1, - "<xsl:template>": 1, - "match=": 1, - "<html>": 1, - "<body>": 1, - "<h2>": 1, - "My": 1, - "CD": 1, - "Collection": 1, - "</h2>": 1, - "<table>": 1, - "border=": 1, - "<tr>": 2, - "bgcolor=": 1, - "<th>": 2, - "Title": 1, - "</th>": 2, - "Artist": 1, - "</tr>": 2, - "<xsl:for-each>": 1, - "select=": 3, - "<td>": 2, - "<xsl:value-of>": 2, - "</td>": 2, - "</xsl:for-each>": 1, - "</table>": 1, - "</body>": 1, - "</html>": 1, - "</xsl:template>": 1, - "</xsl:stylesheet>": 1 - }, - "Xtend": { - "package": 2, - "example2": 1, - "import": 7, - "org.junit.Test": 2, - "static": 4, - "org.junit.Assert.*": 2, - "class": 4, - "BasicExpressions": 2, - "{": 14, - "@Test": 7, - "def": 7, - "void": 7, - "literals": 5, - "(": 42, - ")": 42, - "//": 11, - "string": 1, - "work": 1, - "with": 2, - "single": 1, - "or": 1, - "double": 2, - "quotes": 1, - "assertEquals": 14, - "number": 1, - "big": 1, - "decimals": 1, - "in": 2, - "this": 1, - "case": 1, - "+": 6, - "*": 1, - "bd": 3, - "boolean": 1, - "true": 1, - "false": 1, - "getClass": 1, - "typeof": 1, - "}": 13, - "collections": 2, - "There": 1, - "are": 1, - "various": 1, - "methods": 2, - "to": 1, + "contain": 1, + "generate": 1, + "may": 1, + "free": 1, + "slightly": 1, + "command": 4, + "such": 1, + "option": 1, + "provided": 1, + "https": 3, "create": 1, - "and": 1, - "numerous": 1, - "extension": 2, - "which": 1, - "make": 1, - "working": 1, - "them": 1, - "convenient.": 1, - "val": 9, - "list": 1, - "newArrayList": 2, - "list.map": 1, - "[": 9, - "toUpperCase": 1, - "]": 9, - ".head": 1, - "set": 1, - "newHashSet": 1, - "set.filter": 1, - "it": 2, - ".size": 2, - "map": 1, - "newHashMap": 1, - "-": 5, - "map.get": 1, - "controlStructures": 1, - "looks": 1, - "like": 1, - "Java": 1, - "if": 1, - ".length": 1, - "but": 1, - "foo": 1, - "bar": 1, - "Never": 2, - "happens": 3, - "text": 2, - "never": 1, - "s": 1, - "cascades.": 1, - "Object": 1, - "someValue": 2, - "switch": 1, - "Number": 1, - "String": 2, - "loops": 1, - "for": 2, - "loop": 2, - "var": 1, - "counter": 8, - "i": 4, - "..": 1, - "while": 2, - "iterator": 1, - ".iterator": 2, - "iterator.hasNext": 1, - "iterator.next": 1, - "example6": 1, - "java.io.FileReader": 1, - "java.util.Set": 1, - "com.google.common.io.CharStreams.*": 1, - "Movies": 1, - "numberOfActionMovies": 1, - "movies.filter": 2, - "categories.contains": 1, - "yearOfBestMovieFrom80ies": 1, - ".contains": 1, - "year": 2, - ".sortBy": 1, - "rating": 3, - ".last.year": 1, - "sumOfVotesOfTop2": 1, - "long": 2, - "movies": 3, - "movies.sortBy": 1, - ".take": 1, - ".map": 1, - "numberOfVotes": 2, - ".reduce": 1, - "a": 2, - "b": 2, - "|": 2, - "_229": 1, - "new": 2, - "FileReader": 1, - ".readLines.map": 1, + "help": 1, + "A": 1, + "Portions": 2, + "c": 2, + "License": 1, + "particular": 1, "line": 1, - "segments": 1, - "line.split": 1, - "return": 1, - "Movie": 2, - "segments.next": 4, - "Integer": 1, - "parseInt": 1, - "Double": 1, - "parseDouble": 1, - "Long": 1, - "parseLong": 1, - "segments.toSet": 1, - "@Data": 1, - "title": 1, + "Pragmatic": 1, + "using": 1, + "by": 1, + "from": 1, + "]": 3, + "You": 2, + "file.": 1, + "These": 1, + "The": 1, + "like": 1, + "Generating": 1, + "you": 3, + "out": 1, + "//github.com/rdoc/rdoc/issues": 1, + "in": 4, + "Warranty": 1, + "produce": 1, + "up": 1, + "an": 1, + "the": 12, + "generates": 1, + ")": 3, + "For": 1, + "s": 1, + "primary": 1, + "purpose.": 1, + "terms": 1, + "details.": 1, + "Copyright": 1, + "summary": 1, + "ri": 1, + "stored": 1, + "displaying": 1, + "we": 1, + "or": 1, + "In": 1, + "#": 1, + "home": 1, + "under": 1, + "src=": 1, + "directory.": 1, + "below": 1, + "redistributed": 1, + "report": 1, + "tree": 1, + "quality": 1, + "//codeclimate.com/github/rdoc/rdoc": 1, + "warranties": 2, + "probably": 1, + "how": 1, + "anything": 1, + "a": 5, + "projects.": 1, + "of": 2, + "RDoc": 7, + "your": 1, + "HTML": 1, + "might": 1, + "Documentation": 2, + "rdoc/rdoc": 1, + "Programmers.": 1, + "file": 1, + "[": 3, + "more": 1, + "type": 2, + "This": 2, + "code": 1, + "}": 1, + "tools": 1, + "this": 1, + "System": 1, + "Hodel.": 1, + "files": 2, + "having": 1, + "http": 1, + "case": 1, + "includes": 1, + "merchantability": 1, + "others": 1, + "bug.": 1, + "bug": 1, + "-": 9, + "limitation": 1, + "software": 2, + "t": 1, + "our": 1, + "names...": 1, + "fitness": 1, + "implied": 2, + "Once": 1, + "alt=": 1 + }, + "Standard ML": { + "LazyMemo": 1, + "then": 1, + "fun": 9, + "exception": 1, + "LazyBase": 2, + "val": 12, + "type": 2, + "sig": 2, + "true": 1, + "force": 9, + "string": 1, + "lazy": 12, + "delay": 3, + "bool": 4, + "LAZY_BASE": 3, + "handle": 1, + "false": 1, + "eq": 2, + "let": 1, + "struct": 4, + "Ops": 2, + "datatype": 1, + "raise": 1, + "eqBy": 3, + "Lazy": 1, + "else": 1, + "open": 1, + "LAZY": 1, + "end": 6, + "op": 1, + "unit": 1, + "of": 1, + "Done": 1, + "Undefined": 3, + "signature": 2, + "LazyMemoBase": 2, + "undefined": 1, + "order": 2, + "if": 1, + "ignore": 1, + "structure": 6, + "map": 2, + "compare": 2, + "toString": 2, + "inject": 3, + "LazyFn": 2, + "y": 6, + "p": 4, + ";": 1, + "isUndefined": 2, + "x": 15, + "B": 1, + "|": 1, + "fn": 3, + "f": 9, + "b": 2, + "*": 1, + "(": 22, + ")": 23, + "-": 13, + "a": 18 + }, + "Objective-C": { + "accumulator": 1, + "entryIdx": 4, + "on": 26, + "}": 532, + "<=>": 15, + "succeeded": 1, + "notify": 3, + "need": 10, + "NSEvent": 3, + "NSMallocException": 2, + "SecIdentityRef": 3, + "about": 4, + "futureMakeFirstResponderRequestToken": 1, + "*_headerView": 1, + "styleType": 3, + "requestFinished": 4, + "ASIAuthenticationError": 1, + "will": 57, + "useful": 1, + "isKindOfClass": 2, + "beginning": 1, + "dispatch_get_main_queue": 1, + "*throttleWakeUpTime": 1, + "set": 24, + "numberOfRowsInSection": 9, + "JK_WARN_UNUSED_PURE_NONNULL_ARGS": 1, + "indexPathForLastRow": 2, + "JKEncodeOptionAsString": 1, + "#ifdef": 10, + "responseEncoding": 3, + "much": 2, + "DEBUG_THROTTLING": 2, + "UNI_SUR_HIGH_START": 1, + "newURL": 16, + "removeTemporaryUploadFile": 1, + "DO": 1, + "sure": 1, + "previously": 1, + "TUIFastIndexPath": 89, + "string": 9, + "opened": 3, + "<CoreFoundation/CFString.h>": 1, + "comes": 3, + "objectWithData": 7, + "xF0": 1, + "execute": 4, + ".": 2, + "serializeUnsupportedClassesUsingDelegate": 4, + "kCFStreamSSLValidatesCertificateChain": 1, + "bound": 1, + "callBlock": 1, + "JSONStringStateEscapedUnicodeSurrogate4": 1, + "NSBundle": 1, + "setSelected": 2, + "||": 42, + "array": 84, + "*headerView": 6, + "grouped": 1, + "allowResumeForFileDownloads": 2, + "wait": 1, + "*indexPathsToRemove": 1, + "pinnedHeaderFrame": 2, + "*a": 2, + "returnObject": 3, + "initWithURL": 4, + "*adapter": 1, + "sectionUpperBound": 3, + "requestFailed": 2, + "shouldSelectRowAtIndexPath": 3, + "rangeOfString": 1, + "happens": 4, + "CFStreamEventType": 2, + "<ASIHTTPRequestDelegate>": 1, + "v.size.height": 2, + "pinnedHeader": 1, + "<": 56, + "x.": 1, + "invocation": 4, + "Private": 1, + "persistence": 2, + "bandwidth": 3, + "recordBandwidthUsage": 1, + "style": 29, + "didCreateTemporaryPostDataFile": 1, + "viewDidAppear": 2, + "localeIdentifier": 1, + "Issue": 2, + "mutationsPtr": 2, + "jk_encode_write1fast": 2, + "shouldCompressRequestBody": 6, + "subclasses": 2, + "addTarget": 1, + "JSONNumberStateStart": 1, + "needsRedirect": 3, + "forKey": 9, + "atAddEntry": 6, + "Type": 1, + "offsetsFromUTF8": 1, + "*error_": 1, + "sectionRowOffset": 2, + "*pass": 1, + "useSessionPersistence": 6, + "initialization": 1, + "JKBuffer": 2, + "requests": 21, + "resize": 3, + "checkRequestStatus": 2, + "imageFrame.size": 1, + "kCFStreamEventErrorOccurred": 1, + "jk_parse_skip_newline": 1, + "JSONDataWithOptions": 8, + "authenticationScheme": 4, + "ui": 1, + "*proxyHost": 1, + "ASIInternalErrorWhileApplyingCredentialsType": 1, + "atScrollPosition": 3, + "NSDefaultRunLoopMode": 2, + "*postBodyWriteStream": 1, + "duration": 1, + "iPhone": 3, + "setComplete": 3, + "header.frame.size.height": 1, + "connect": 1, + "*readStream": 1, + "clickCount": 1, + "store": 4, + "objectsPtr": 3, + "oldStream": 4, + "X": 1, + "Authentication": 3, + "showAuthenticationDialog": 1, + "shouldUseRFC2616RedirectBehaviour": 2, + "_pullDownView.frame.size.height": 2, + "Example": 1, + "updatePartialDownloadSize": 1, + "@try": 1, + "decompressed": 3, + "FALSE": 2, + "startedBlock": 5, + "JKClassUnknown": 1, + "setLastActivityTime": 1, + "Record": 1, + "attemptToApplyProxyCredentialsAndResume": 1, + "Delegate": 2, + "newValue": 2, + "bundle": 3, + "LONG_MIN": 3, + "removeObject": 2, + "setConnectionInfo": 2, + "self": 500, + "upload/download": 1, + "Defaults": 2, + "downloadComplete": 2, + "@selector": 28, + "removeObjectForKey": 1, + "JKValueTypeString": 1, + "f": 8, + "contentOffset": 2, + "built": 2, + "This": 7, + "responseHeaders": 5, + "//": 317, + "capacityForCount": 4, + "section.headerView.superview": 1, + "height": 19, + "repr": 5, + "isEqual": 4, + "setHaveBuiltPostBody": 1, + "connection": 17, + "_JKDictionaryResizeIfNeccessary": 3, + "UIBackgroundTaskIdentifier": 1, + "whether": 1, + "stringBuffer.bytes.ptr": 2, + "HEADRequest": 1, + "buttonWithType": 1, + "enumerateIndexesUsingBlock": 1, + "JKParseToken": 2, + "dictionaryWithCapacity": 2, + "incremented": 4, + "fails.": 1, + "ASIHTTPRequestDelegate": 1, + "NSComparator": 1, + "Foo": 2, + "forget": 2, + "trailingBytesForUTF8": 1, + "TUIScrollViewDelegate": 1, + "t": 15, + "<stddef.h>": 1, + "TTDASSERT": 2, + "*topVisibleIndex": 1, + "*responseCookies": 3, + "chance": 2, + "//self.variableHeightRows": 1, + "change": 2, + "uploadBufferSize": 6, + "header": 20, + "secondsToCache": 3, + "resume": 2, + "allocate": 2, + "mouse": 2, + "stringEncoding": 1, + "aBytesReceivedBlock": 1, + "*sections": 1, + "setAuthenticationScheme": 1, + "won": 3, + "longer": 2, + "NSUInteger": 93, + "path": 11, + "kTextStyleType": 2, + "setNeedsRedirect": 1, + "needs": 1, + "objectAtIndex": 8, + "*encodeState": 9, + "clearDelegatesAndCancel": 2, + "sortedVisibleCells": 2, + "above.": 1, + "largely": 1, + "UITableView": 1, + "blocks": 16, + "returns": 4, + "authenticationNeededBlock": 5, + "error_": 2, + "query": 1, + "authenticationCredentials": 4, + "warning***": 1, + "parser.maxDepth": 1, + "targetIndexPathForMoveFromRowAtIndexPath": 1, + "malloc": 1, + "backgroundTask": 7, + "fires": 1, + "nextRequestID": 1, + "responseStatusMessage": 1, + "*ASIRequestTimedOutError": 1, + "%": 30, + "cookies": 5, + "hasBytesAvailable": 1, + "Unexpected": 1, + "buildRequestHeaders": 3, + "Serializing": 1, + "might": 4, + "trip": 1, + "you": 10, + "JSONStringStateEscapedUnicode4": 1, + "CFRetain": 4, + "useHTTPVersionOne": 3, + "Digest": 2, + "TTStyleSheet": 4, + "requires": 4, + "performSelector": 7, + "JKValueTypeLongLong": 1, + "read": 3, + "selectValidIndexPath": 3, + "location": 3, + "newObject": 12, + "JSONStringStateError": 1, + "*parser": 1, + "NOT": 1, + "Necessary": 1, + "do": 5, + "range.location": 2, + "uint8_t": 1, + "round": 1, + "shouldRedirect": 3, + "JKParseAcceptComma": 2, + "We": 7, + "handleNetworkEvent": 2, + "runMode": 1, + "NSInputStream": 7, + "handling": 4, + "NSData*": 1, + "scanUpToString": 1, + "//Some": 1, + "redirects": 2, + "didReceiveBytes": 2, + "targetExhausted": 1, + "<Foundation/NSObjCRuntime.h>": 2, + "option.": 1, + "Set": 4, + "xFC": 1, + "tableView": 45, + "storeProxyAuthenticationCredentialsInSessionStore": 1, + "setMaintainContentOffsetAfterReload": 1, + "didn": 3, + "NSString*": 13, + "decoder": 1, + "NSTemporaryDirectory": 2, + "A": 4, + "*runLoopMode": 2, + "starts": 2, + "didChangeValueForKey": 1, + "proxyDomain": 1, + "than": 9, + "expiryDateForRequest": 1, + "*indexes": 2, + "Stupid": 2, + "port": 17, + "startingObjectIndex": 1, + "pass": 5, + "setNeedsLayout": 3, + "frame.origin.y": 16, + "*bandwidthThrottlingLock": 1, + "preset": 2, + "UNI_MAX_UTF32": 1, + "similar": 1, + "authenticationNeeded": 3, + "initDictionary": 4, + "must": 6, + "MaxValue": 2, + "numberOfSectionsInTableView": 3, + "_tableView.dataSource": 3, + "timeout": 6, + "stuff": 1, + "visibleRect": 3, + "alpha": 3, + "&&": 123, + "C82080UL": 1, + "failureBlock": 5, + "UIProgressView": 2, + "NSStringEncoding": 6, + "them": 10, + "KB": 4, + "beginBackgroundTaskWithExpirationHandler": 1, + "bandwidthThrottlingLock": 1, + "UIScrollView": 1, + "allKeys": 1, + "_pullDownView": 4, + "JKRange": 2, + "before": 6, + "@property": 150, + "passed": 2, + "compressDataFromFile": 1, + "findCredentials": 1, + "requestReceivedResponseHeaders": 1, + "charset": 5, + "]": 1227, + "objectToRelease": 1, + "isSynchronous": 2, + "aFailedBlock": 1, + "false.": 1, + "frame.size.height": 15, + "_visibleSectionHeaders": 6, + "exits": 1, + "failWithError": 11, + "<Foundation/NSError.h>": 1, + "downloading": 5, + "incrementBandwidthUsedInLastSecond": 1, + "setRequestRedirectedBlock": 1, + "TTDCONDITIONLOG": 3, + "kImageStyleType": 2, + "memcpy": 2, + "TTDPRINT": 9, + "*failedRequest": 1, + "conversionOK": 1, + "expiring": 1, + "bit": 1, + "TUITableViewInsertionMethodAtIndex": 1, + "directly": 1, + "doesn": 1, + "CFHashCode": 1, + "JKManagedBuffer": 5, + "temp_NSNumber": 4, + "compressed": 2, + "also": 1, + "processInfo": 2, + "stored": 9, + "etc": 1, + "show": 2, + "rowCount": 3, + "y": 12, + "_tableView.delegate": 1, + "sectionHeight": 9, + "self.view.bounds": 2, + "objectWithString": 5, + "basic": 3, + "objectWithUTF8String": 4, + "TUIScrollView": 1, + "encoding": 7, + "*postBody": 1, + "TUITableViewCalculateNextIndexPathBlock": 3, + "initWithNibName": 3, + "*certificates": 1, + "stringByAppendingPathComponent": 2, + "sentinel": 1, + "*dictionary": 13, + "Connection": 1, + "reusable": 1, + "apply": 2, + "shouldUpdateNetworkActivityIndicator": 1, + "setAuthenticationNeeded": 2, + "run": 1, + "_dragToReorderCell": 5, + "releasingObject": 2, + "cache": 17, + "again": 1, + "global": 1, + "readStream": 5, + "requestAuthentication": 7, + "collection": 11, + "<Foundation/NSData.h>": 2, + "<objc/runtime.h>": 1, + "NSISOLatin1StringEncoding": 2, + "#define": 65, + "JK_WARN_UNUSED_SENTINEL": 1, + "JKTokenTypeObjectEnd": 1, + "*requestHeaders": 1, + "defaults": 2, + "been": 1, + "SBJsonParser": 2, + "_futureMakeFirstResponderToken": 2, + "shouldStreamPostDataFromDisk": 4, + "NSMutableIndexSet": 6, + "downloads": 1, + "HTTP": 9, + "removeTemporaryDownloadFile": 1, + "presented": 2, + "Ok": 1, + "len": 6, + "ptr": 3, + "_JKArrayInstanceSize": 4, + "setShouldThrottleBandwidthForWWAN": 1, + "*theRequest": 1, + "protocol": 10, + "*": 311, + "#warning": 1, + "ASIUnableToCreateRequestErrorType": 2, + "_selectedIndexPath": 9, + "there": 1, + "*1.5": 1, + "reaches": 1, + "partial": 2, + "*ASIRequestCancelledError": 1, + "pinnedHeader.frame.origin.y": 1, + "save": 3, + "timer": 5, + "atEntry": 45, + "visibleCells": 3, + "NSStringFromClass": 18, + "gzipped": 7, + "noCurrentSelection": 2, + "*format": 7, + "forRowAtIndexPath": 2, + "__IPHONE_4_0": 6, + "release": 66, + "JKFlags": 5, + "*stop": 7, + "removeUploadProgressSoFar": 1, + "remain": 1, + "performInvocation": 2, + "target": 5, + "isa": 2, + "status": 4, + "NSComparisonResult": 1, + ".offset": 2, + "__BLOCKS__": 1, + "JK_STATIC_INLINE": 10, + "JSONNumberStateError": 1, + "NSInvocation": 4, + "threadForRequest": 3, + "Otherwise": 2, + "raw": 3, + "inflate": 2, + "local": 1, + "sectionLowerBound": 2, + "Not": 2, + "TUITableViewScrollPositionBottom": 1, + "JKDictionaryEnumerator": 4, + "error": 75, + "JKEncodeOptionCollectionObj": 1, + "useCookiePersistence": 3, + "flashScrollIndicators": 1, + "reachabilityChanged": 1, + "arrayWithCapacity": 2, + "uniquely": 1, + "param": 1, + "view.autoresizingMask": 2, + "text.backgroundColor": 1, + "sent": 6, + "nothing": 2, + "get": 4, + "JSONStringStateEscape": 1, + "reorder": 1, + "sourceIllegal": 1, + "indexPathsForVisibleRows": 2, + "ASIRequestTimedOutErrorType": 2, + "browsers": 1, + "fails": 2, + "F": 1, + "stackbuf": 8, + "data.": 1, + "You": 1, + "textFrame": 3, + "storeAuthenticationCredentialsInSessionStore": 2, + "relativeOffset": 5, + "JSONNumberStateExponentPlusMinus": 1, + "*compressedPostBody": 1, + "client": 1, + "UILabel*": 2, + "ideal.": 1, + "cancelLoad": 3, + "ld": 2, + "TTSectionedDataSource": 1, + "removeIndex": 1, + "jk_max": 3, + "cancelOnRequestThread": 2, + "probably": 4, + "DEBUG_REQUEST_STATUS": 4, + "withOptions": 4, + "once": 3, + "countByEnumeratingWithState": 2, + "record": 1, + "lastIndexPath": 8, + "switch": 3, + "FooAppDelegate": 2, + "NSRangeException": 6, + "JKEncodeOptionType": 2, + "us": 2, + "*PACFileData": 2, + "toIndexPath.section": 1, + "like": 1, + "ASINetworkErrorType": 1, + "lastIndexPath.row": 2, + "UIControlStateHighlighted": 1, + "cbInvocation": 5, + "capacity": 51, + "Must": 1, + "*accumulator": 1, + "setAnimationsEnabled": 1, + "b": 4, + "proxies": 3, + "rebuild": 2, + "kCFStreamSSLAllowsExpiredCertificates": 1, + "<UIKit/UIKit.h>": 1, + "lastIndexPath.section": 2, + "uploaded": 2, + "**": 27, + "persistentConnectionsPool": 3, + ".size.height": 1, + "UIFont": 3, + "unsafe_unretained": 2, + "*array": 9, + "here": 2, + "rowLowerBound": 2, + "request.": 1, + "mutableObjectFromJSONStringWithParseOptions": 2, + "jk_encode_writePrettyPrintWhiteSpace": 1, + "scrollPosition": 9, + "withProgress": 4, + "bits": 1, + "*_JKArrayCreate": 2, + "setCompletionBlock": 1, + "p": 3, + "sourceExhausted": 1, + "identifies": 1, + "TTPathForDocumentsResource": 1, + "expires": 1, + "text": 12, + "setSelector": 1, + "maxBandwidthPerSecond": 2, + "willRedirectToURL": 1, + "drag": 1, + "nibNameOrNil": 1, + "didReceiveResponseHeadersSelector": 2, + "ASISizeBlock": 5, + "onThread": 2, + "removeCredentialsForProxy": 1, + "didReceiveDataSelector": 2, + "contain": 4, + "jk_cache_age": 1, + "bytesReadSoFar": 3, + "Class": 3, + "JKClassNull": 1, + "forceSaveScrollPosition": 1, + "readonly": 19, + "setDefaultUserAgentString": 1, + "methodSignatureForSelector": 1, + "JSONStringStateParsing": 1, + "be": 49, + "reportFailure": 3, + "*statusTimer": 2, + "memset": 1, + "handleBytesAvailable": 1, + "*temporaryUncompressedDataDownloadPath": 2, + "newCredentials": 16, + "numberWithBool": 3, + "sharedQueue": 4, + "NSNumberAllocImp": 2, + "updateProgressIndicator": 4, + "class_getInstanceSize": 2, + "Also": 1, + "*identifier": 1, + "NSFastEnumerationState": 2, + "*_JKDictionaryHashTableEntryForKey": 2, + "TUITableViewStyle": 4, + "*ui": 1, + "only.": 1, + "roundf": 2, + "lastActivityTime": 1, + "JKTokenTypeFalse": 1, + "canMoveRowAtIndexPath": 2, + "willAskDelegateForCredentials": 1, + "temporaryFileDownloadPath": 2, + "UTF8": 2, + "JKParseAcceptValueOrEnd": 1, + "_JKArrayReplaceObjectAtIndexWithObject": 3, + "maxLength": 3, + "setStartedBlock": 1, + "Incremented": 1, + "inopportune": 1, + "includeQuotes": 6, + "throttled": 1, + "appendData": 2, + "shouldAttemptPersistentConnection": 2, + "setRunLoopMode": 2, + "adding": 1, + "CGRectMake": 8, + "*path": 1, + "willAskDelegateForProxyCredentials": 1, + "ASIDataCompressor": 2, + "green": 3, + "look": 1, + "TUIFastIndexPath*": 1, + "/": 18, + "reliable": 1, + "__APPLE_CC__": 2, + "CFReadStreamCreateForHTTPRequest": 1, + "close": 5, + "best": 1, + "decompress": 1, + "JSONNumberStateFractionalNumberStart": 1, + "aBytesSentBlock": 1, + "frame.size.width": 4, + "acceptsFirstResponder": 1, + "INT_MAX": 2, + "setUpdatedProgress": 1, + "kFramePadding": 7, + "*b": 2, + "forProxy": 2, + "scanner": 5, + "__has_feature": 3, + "inProgress": 4, + "tag": 2, + "*cbInvocation": 1, + "delegate": 29, + "<Foundation/NSAutoreleasePool.h>": 1, + "set.": 1, + "contents": 1, + "setResponseEncoding": 2, + "ASIDataDecompressor": 4, + "setQueue": 2, + "DEBUG_HTTP_AUTHENTICATION": 4, + "*postBodyReadStream": 1, + "*startForNoSelection": 2, + "NSError**": 2, + "CFReadStreamRef": 5, + "numberOfSections": 10, + "session": 5, + "CFTypeRef": 1, + "doing": 1, + "reuse": 3, + "since": 1, + "startRequest": 3, + "parse": 1, + "didStartSelector": 2, + "kViewStyleType": 2, + "<Foundation/NSString.h>": 1, + "JKConstPtrRange": 2, + "JKValueTypeUnsignedLongLong": 1, + "jk_error_parse_accept_or3": 1, + "initWithJKDictionary": 3, + "err": 8, + "self.view": 4, + "less": 1, + "reading": 1, + "button": 5, + "overlapped": 1, + "manually": 1, + "xffffffffU": 1, + "rect": 10, + "_lastSize": 1, + "JKHash": 4, + "isEqualToString": 13, + "mutations": 20, + "enumerateIndexPathsUsingBlock": 2, + "those": 1, + "readStreamIsScheduled": 1, + "ASINoAuthenticationNeededYet": 3, + "does": 3, + "*proxyAuthenticationRealm": 3, + "itemWithText": 48, + "SIZE_MAX": 1, + "shouldTimeOut": 2, + "JKSerializeOptionValidFlags": 1, + "jk_managedBuffer_setToStackBuffer": 1, + "indexPath.row": 1, + "colorWithRed": 3, + "...": 11, + "shouldThrottleBandwidthForWWANOnly": 1, + "NSLocalizedDescriptionKey": 10, + "_setupRowHeights": 2, + "JKClassArray": 1, + "information": 5, + "_tableFlags.didFirstLayout": 1, + "releaseState": 1, + "JK_AT_STRING_PTR": 1, + "*compressedPostBodyFilePath": 1, + "hassle": 1, + "dragged": 1, + "*user": 1, + "far": 2, + "buffer.": 2, + "key": 32, + "JK_EXPECTED": 4, + "addTimer": 1, + "dataSourceWithObjects": 1, + "_preLayoutCells": 2, + "jk_encode_updateCache": 1, + "__IPHONE_OS_VERSION_MAX_ALLOWED": 4, + "*inflatedFileDownloadOutputStream": 2, + "policy": 7, + "*jk_cachedObjects": 1, + "serializeUnsupportedClassesUsingBlock": 4, + "keyEnumerator": 1, + "JK_WARN_UNUSED_CONST_NONNULL_ARGS": 1, + "sessionCredentialsLock": 1, + "count": 99, + "anything": 1, + "*authenticationRealm": 2, + "http": 4, + "current": 2, + "defaultUserAgentString": 1, + "happened": 1, + "label.font": 3, + "startForNoSelection": 1, + "self.title": 2, + "JKTokenTypeSeparator": 1, + "lowercaseString": 1, + "static": 102, + "NSOutputStream": 6, + "OK": 1, + "_tableFlags.layoutSubviewsReentrancyGuard": 3, + "stream": 13, + "const": 28, + "calls": 1, + "*jk_managedBuffer_resize": 1, + "_ASIAuthenticationState": 1, + "_tableFlags.dataSourceNumberOfSectionsInTableView": 2, + "JKSerializeOptionEscapeForwardSlashes": 2, + "NSEvent*": 1, + "bytesRead": 5, + "assign": 84, + "handle": 4, + "pinned": 5, + "TTImageView*": 1, + "of": 34, + "kCFStreamEventHasBytesAvailable": 1, + "u": 4, + "TARGET_OS_IPHONE": 11, + "jk_parse_number": 1, + "TUITableViewSection": 16, + "JK_FAST_TRAILING_BYTES": 2, + "when": 46, + "irow": 3, + "setDefaultResponseEncoding": 1, + "from": 18, + "keys": 5, + "setup": 2, + "self.headerView.frame.size.height": 1, + "atIndex": 6, + "responseCookies": 1, + "completes": 6, + "memory": 3, + "adapter": 1, + "which": 1, + "IBOutlet": 1, + "systemFontSize": 1, + "UIViewController": 2, + "write": 4, + "NSLock": 2, + "redirectCount": 2, + "connectionInfo": 13, + "statusTimer": 3, + "TTPathForBundleResource": 1, + "selected": 2, + "rectForSection": 3, + "timeOutPACRead": 1, + "ULLONG_MAX": 1, + "*oldStream": 1, + "nibBundleOrNil": 1, + "threading": 1, + "setUploadSizeIncrementedBlock": 1, + "automatic": 1, + "attempt": 3, + "earth": 1, + "not": 29, + "we": 73, + "detection": 2, + "available": 1, + "totalSize": 2, + "removeAuthenticationCredentialsFromSessionStore": 3, + "proxy": 11, + "setDidStartSelector": 1, + "CFEqual": 2, + "technically": 1, + "analyzer...": 2, + "&": 36, + "setMaxBandwidthPerSecond": 1, + "setRequestCookies": 2, + "range.length": 1, + "uint32_t": 1, + "NSException": 19, + "lastBytesRead": 3, + "TUITableView": 25, + "SEL": 19, + "constructor": 1, + "_JKArrayRemoveObjectAtIndex": 3, + "removeTemporaryUncompressedDownloadFile": 1, + "Blocks": 1, + "#error": 6, + "***Black": 1, + "ULONG_MAX": 3, + "removeFileAtPath": 1, + "loop": 1, + "ones": 3, + "fileSize": 1, + "jk_error": 1, + "JSONNumberStateFractionalNumber": 1, + "starts.": 1, + "isARepeat": 1, + "_updateSectionInfo": 2, + "throttle": 1, + "yes": 1, + "label.frame": 4, + "*newVisibleIndexPaths": 1, + "self.headerView": 2, + "*requestID": 3, + "TUITableViewScrollPosition": 5, + "shouldPresentProxyAuthenticationDialog": 2, + "moved": 2, + "ASIHeadersBlock": 3, + "oldEntry": 9, + "Are": 1, + "setUseCookiePersistence": 1, + "NSURL": 21, + "*requestMethod": 1, + "helper": 1, + "endBackgroundTask": 1, + "averageBandwidthUsedPerSecond": 2, + "JKObjectStackLocationShift": 1, + "_headerView": 8, + "usingCache": 5, + "*redirectURL": 2, + "asks": 1, + "download.": 1, + "Last": 2, + "usually": 2, + "Obtain": 1, + "whatever": 1, + "downloadProgressDelegate": 10, + "postBodyReadStream": 2, + "*blocks": 1, + "_jk_encode_prettyPrint": 1, + "lround": 1, + "viewDidUnload": 2, + "UIButtonTypeRoundedRect": 1, + "begin": 1, + "JK_CACHE_SLOTS": 1, + "andPassword": 2, + "rectForRowAtIndexPath": 7, + "track": 1, + "JSONKitSerializing": 3, + "*u": 1, + "support": 4, + "performThrottling": 2, + "setBytesReceivedBlock": 1, + "Will": 7, + "...then": 1, + "NSMethodSignature": 1, + "JKManagedBufferOnHeap": 1, + "*jk_create_dictionary": 1, + "NSDate": 9, + "progressLock": 1, + "very": 2, + "JKObjCImpCache": 2, + "shouldUpdate": 1, + "setProxyAuthenticationNeededBlock": 1, + "*mainRequest": 2, + "textFrame.size": 1, + "YES": 62, + "buffer": 7, + "then": 1, + "_tableFlags.animateSelectionChanges": 3, + "totalBytesRead": 4, + "retrying": 1, + "ASIRequestTimedOutError": 1, + "_reusableTableCells": 5, + "SBJsonStreamParserAccumulator": 2, + "into": 1, + "*temporaryFileDownloadPath": 2, + "respondsToSelector": 8, + "lastBytesSent": 3, + "setLastBytesRead": 1, + ".keyHash": 2, + "mutableObjectFromJSONData": 1, + "max": 7, + "aKey": 13, + "ntlmComponents": 1, + "JKParseOptionPermitTextAfterValidJSON": 2, + "JK_TOKENBUFFER_SIZE": 1, + "proxyAuthentication": 7, + "buildPostBody": 3, + "kCFHTTPAuthenticationSchemeBasic": 2, + "jk_parse_string": 1, + "repeative": 1, + "NSArray*": 1, + "_JKDictionaryClass": 5, + "s.height": 3, + "explicitly": 2, + "*bandwidthUsageTracker": 1, + "CFRelease": 19, + "self.maxDepth": 2, + "present": 3, + "network": 4, + "ASIUseDefaultCachePolicy": 1, + "distantFuture": 1, + "*or3String": 1, + "void": 253, + "<math.h>": 1, + "reachability": 1, + "startSynchronous.": 1, + "Number": 1, + "apps": 1, + "__IPHONE_3_2": 2, + "animateSelectionChanges": 3, + "*ASIHTTPRequestVersion": 2, + "point": 11, + "setupPostBody": 3, + "setTarget": 1, + "compressData": 1, + "*or2String": 1, + "xC0": 1, + "cond": 12, + "CFStringRef": 1, + "performBlockOnMainThread": 2, + "extern": 6, + "Check": 1, + "Content": 1, + "bringSubviewToFront": 1, + "try": 3, + "#if": 41, + "TTCurrentLocale": 2, + "*error": 3, + "JSONKIT_VERSION_MINOR": 1, + "setShouldResetUploadProgress": 1, + "TTTableViewController": 1, + "NSUpArrowFunctionKey": 1, + "sec": 3, + "JKTokenTypeArrayBegin": 1, + "started": 1, + "originalURL": 1, + "methodForSelector": 2, + "savedCredentialsForProxy": 1, + "TTMAXLOGLEVEL": 1, + "AUTH": 6, + "ok": 1, + "userAgentString": 1, + "_NSStringObjectFromJSONString": 1, + "////////////": 4, + "*lastIndexPath": 5, + "extract": 1, + "floor": 1, + "indexesOfSectionsInRect": 2, + "maxAge": 2, + "isNetworkInUse": 1, + "registerForNetworkReachabilityNotifications": 1, + "Counting": 1, + "andKeys": 1, + "kCFStreamSSLPeerName": 1, + "fffffffffffffffLL": 1, + "newTimeOutSeconds": 1, + "stores": 1, + "NSOrderedSame": 1, + "format": 18, + "calloc.": 2, + "custom": 2, + "indexPathsToAdd": 2, + "TTStyleContext*": 1, + "safest": 1, + "*cbSignature": 1, + "objectFromJSONStringWithParseOptions": 2, + "*dataDecompressor": 2, + "NSLog": 4, + "StyleViewController": 2, + "number": 2, + "willAskDelegateToConfirmRedirect": 1, + "NSNotFound": 1, + "nextObject": 6, + "initToFileAtPath": 1, + "jk_parse_skip_whitespace": 1, + "feature": 1, + "_tableFlags.maintainContentOffsetAfterReload": 2, + "attr": 3, + "xDC00": 1, + "jk_parse_is_newline": 1, + "entry": 41, + "<MobileCoreServices/MobileCoreServices.h>": 1, + "NSEnumerationOptions": 4, + "SBJsonStreamParserComplete": 1, + "cacheStoragePolicy": 2, + "Credentials": 1, + "headerView": 14, + "different": 4, + "defined": 16, + "downloadCache": 5, + "TUITableViewStylePlain": 2, + "JKManagedBufferLocationMask": 1, + "Though": 1, + "aCompletionBlock": 1, + "responder": 2, + "uploadSizeIncrementedBlock": 5, + "+": 195, + "*sessionProxyCredentialsStore": 1, + "UILabel": 2, + "text.autoresizingMask": 1, + "JSONStringStateEscapedUnicodeSurrogate1": 1, + "server": 8, + "proxyAuthenticationScheme": 2, + "__OBJC__": 4, + "changes": 4, + "JKTokenTypeNumber": 1, + "already.": 1, + "respectively.": 1, + "https": 1, + "something": 1, + "size.height": 1, + "setProxyAuthenticationRetryCount": 1, + "same": 6, + "didFirstLayout": 1, + "PAC": 7, + "responseCode": 1, + "*parseState": 16, + "didSelectRowAtIndexPath": 3, + "E2080UL": 1, + "setShowAccurateProgress": 1, + "JK_INIT_CACHE_AGE": 1, + "handleStreamComplete": 1, + "useKeychainPersistence": 4, + "timerWithTimeInterval": 1, + "jk_objectStack_resize": 1, + "newObjects": 2, + "Clear": 3, + "updates": 2, + "sizeToFit": 1, + "self.bounds.size.width": 4, + "kCFHTTPAuthenticationSchemeNTLM": 1, + "free": 4, + "mainRequest": 9, + "_style": 8, + "findSessionProxyAuthenticationCredentials": 1, + "*proxyDomain": 2, + "pullDownRect": 4, + "newly": 1, + "during": 4, + "JKParseAcceptValue": 2, + "errorWithDomain": 6, + "populate": 1, + "website": 1, + "inSection": 11, + "properties": 1, + "scannerWithString": 1, + "self.delegate": 10, + "styleWithSelector": 4, + "requestCookies": 1, + "intValue": 4, + "middle": 1, + "that": 23, + "type": 5, + "An": 2, + "*proxyAuthenticationScheme": 2, + "headerViewRect": 3, + "addSubview": 8, + "tableViewDidReloadData": 3, + "responses": 5, + "total": 4, + "addIndex": 3, + "script": 1, + "NSOrderedAscending": 4, + "associated": 1, + "true.": 1, + "<CoreFoundation/CoreFoundation.h>": 1, + "useDataFromCache": 2, + "Objective": 2, + "call": 8, + "JSONStringStateEscapedNeedEscapedUForSurrogate": 1, + "argc": 1, + "setDataReceivedBlock": 1, + "true": 9, + "context.frame": 1, + "heightForRowAtIndexPath": 2, + "JKParseOptionFlags": 12, + "U": 2, + "*domain": 2, + "case": 8, + "*objectStack": 3, + "pure": 2, + "NSRunLoop": 2, + "handleStreamError": 1, + "users": 1, + "section.sectionOffset": 1, + "*jk_parse_dictionary": 1, + "defaultTimeOutSeconds": 3, + "firstIndexPath": 4, + "this": 50, + "follow": 1, + "connections": 3, + "optionFlags": 1, + "cancel": 5, + "JKParseState": 18, + "enumerateIndexPathsFromIndexPath": 4, + "*cancelledLock": 2, + "aNotification": 1, + "inflated": 6, + "addView": 5, + "text.frame": 1, + "CFMutableDictionaryRef": 1, + "animated": 27, + "JKParseOptionComments": 2, + "anObject": 16, + "c": 7, + "prevent": 2, + "HEADER_Z_POSITION": 2, + "absoluteURL": 1, + "have": 15, + "CFNetwork": 3, + "<NSCopying>": 1, + "MainMenuViewController": 2, + "fail": 1, + "JK_HASH_INIT": 1, + "downloadDestinationPath": 11, + "<TargetConditionals.h>": 1, + "maintainContentOffsetAfterReload": 3, + "account": 1, + "willChangeValueForKey": 1, + "indexPath": 47, + "told": 1, + "cell": 21, + "behaviour": 2, + "sizes": 1, + "how": 2, + "TUIViewAutoresizingFlexibleWidth": 1, + "NSURLCredential": 8, + "incase": 1, + "setDidReceiveDataSelector": 1, + "block": 18, + "proxyHost": 2, + "cell.reuseIdentifier": 1, + "kCFStreamSSLAllowsAnyRoot": 1, + "disk": 1, + "encodeOption": 2, + "setInProgress": 3, + "TUITableViewScrollPositionToVisible": 3, + "addIdx": 5, + "activity": 1, + "didFinishSelector": 2, + "q": 2, + "regular": 1, + "responseStatusCode": 3, + "size": 12, + "section": 60, + "Request": 6, + "NSLocalizedFailureReasonErrorKey": 1, + "serializeObject": 1, + "delegateAuthenticationLock": 1, + "nextConnectionNumberToCreate": 1, + "left/right": 2, + "performSelectorOnMainThread": 2, + "just": 4, + "sizeof": 13, + "JKObjectStackOnStack": 1, + "cached": 2, + "adapter.delegate": 1, + "didFailSelector": 2, + "calling": 1, + "v1.4.": 4, + "These": 1, + "restart": 1, + "usingBlock": 6, + "ID": 1, + "displaying": 2, + "bottom": 6, + "updating": 1, + "parser": 3, + "indicator": 4, + "realm": 14, + "cookie": 1, + "*connectionsLock": 1, + "bandwidthUsageTracker": 1, + "__unsafe_unretained": 2, + "JKEncodeOptionStringObjTrimQuotes": 1, + "objects": 58, + "toFile": 1, + "supported": 1, + "old": 5, + "self.tableViewStyle": 1, + "miscellany": 1, + "ensure": 1, + "setValidatesSecureCertificate": 1, + "are": 15, + "JKManagedBufferOnStack": 1, + "_relativeOffsetForReload": 2, + "Automatic": 1, + "conjunction": 1, + "exists": 1, + "so": 15, + "*atCharacterPtr": 1, + "releaseBlocks": 3, + "sharedApplication": 2, + "JSONStringStateEscapedUnicode1": 1, + "<sys/errno.h>": 1, + "either": 1, + "compare": 4, + "cachePolicy": 3, + "setDelegate": 4, + "JKParseAcceptEnd": 3, + "nn": 4, + "responseData": 5, + "<Three20Core/NSDataAdditions.h>": 1, + "systemFontOfSize": 2, + "text.text": 1, + "let": 8, + "rather": 4, + "setShouldPresentCredentialsBeforeChallenge": 1, + "requestRedirectedBlock": 5, + "JK_PREFETCH": 2, + "*oldIndexPath": 1, + "0": 2, + "andResponseEncoding": 2, + "NS_BLOCK_ASSERTIONS": 1, + "setStatusTimer": 2, + "isCancelled": 6, + "hideNetworkActivityIndicatorAfterDelay": 1, + "didUseCachedResponse": 3, + "NSMakeCollectable": 3, + "UIApplication": 2, + "NSTimer": 5, + "jk_collectionClassLoadTimeInitialization": 2, + "normal": 1, + "setCachePolicy": 1, + "indexPathForRowAtPoint": 2, + "queue": 12, + "NSIndexSet": 4, + "ASICacheStoragePolicy": 2, + "last": 1, + "*stream": 1, + "<stdint.h>": 2, + "__GNUC_MINOR__": 3, + "savedCredentialsForHost": 1, + "setContentSize": 1, + "firstResponder": 3, + "*c": 1, + "environment": 1, + "jk_encode_write1": 1, + "ASICacheDelegate.h": 2, + "*cell": 7, + "canUseCachedDataForRequest": 1, + "__attribute__": 3, + "ASIFileManagementError": 2, + "jsonText": 1, + "our": 6, + "removeIdx": 3, + "JKArray": 14, + "No": 1, + "Expected": 3, + "NSMutableArray": 31, + "finished": 3, + "complete": 12, + "xE0": 1, + "<string.h>": 1, + "nil": 131, + "addSessionCookie": 1, + "especially": 1, + "StyleView*": 2, + "delegateTableViewWillDisplayCellForRowAtIndexPath": 1, + "inspect": 1, + "@synthesize": 7, + "setHaveBuiltRequestHeaders": 1, + "setObject": 9, + "CFDictionaryRef": 1, + "JKConstBuffer": 2, + "partially": 1, + "saveCredentialsToKeychain": 3, + "Handle": 1, + "But": 1, + "NSData": 28, + "ASITooMuchRedirectionError": 1, + "kCFStreamPropertySSLSettings": 1, + "postBodyWriteStream": 7, + "affects": 1, + "don": 2, + "TUITableViewSectionHeader": 5, + "brief": 1, + "CFReadStreamCreateForStreamedHTTPRequest": 1, + "setWillRedirectSelector": 1, + "isNetworkReachableViaWWAN": 1, + "uncompressData": 1, + "int": 55, + "JK_NONNULL_ARGS": 1, + "Whether": 1, + "relativeToURL": 1, + "magic": 1, + "jk_encode_printf": 1, + "dataReceivedBlock": 5, + "As": 1, + "newCookie": 1, + "Tells": 1, + "JKObjectStackMustFree": 1, + "willRedirect": 1, + "runPACScript": 1, + "JSONNumberStateExponentStart": 1, + "else": 35, + "rawResponseData": 4, + "one.": 1, + "apache": 1, + "auth": 2, + "requestStarted": 3, + "JKValueType": 1, + "tableViewWillReloadData": 3, + "JKParseOptionNone": 1, + "task": 1, + "_styleSelected": 6, + "kCFHTTPAuthenticationPassword": 2, + "_JKDictionaryCapacityForCount": 4, + "unsubscribeFromNetworkReachabilityNotifications": 1, + "*sessionCredentialsLock": 1, + "xDBFF": 1, + "delete": 1, + "username": 8, + "complain": 1, + "context": 4, + "All": 2, + "JK_STACK_OBJS": 1, + "runLoopMode": 2, + "clientCertificateIdentity": 5, + "jk_encode_add_atom_to_buffer": 1, + "NS_BLOCKS_AVAILABLE": 8, + "stringBuffer.bytes.length": 1, + "credentials": 35, + "window": 1, + "proxyPort": 2, + "dataSourceNumberOfSectionsInTableView": 1, + "JKTokenType": 2, + ".location": 1, + "Basic": 2, + "cellRect": 7, + "h": 3, + "*acceptHeader": 1, + "mid": 5, + "oldCapacity": 2, + "jk_min": 1, + "*sessionCredentialsStore": 1, + "responses.": 1, + "_ASINetworkErrorType": 1, + "_scrollView.autoresizingMask": 1, + "length": 32, + "slow.": 1, + "_JKArrayInsertObjectAtIndex": 3, + "*jsonString": 1, + "initWithUnsignedLongLong": 1, + "logic": 1, + "enumeratedCount": 8, + "scheduleReadStream": 1, + "found": 4, + "JKClassString": 1, + "CGPoint": 7, + "NSZone": 4, + "**error": 1, + "setClientCertificateIdentity": 1, + "//block": 12, + "*indexPathsToAdd": 1, + "derepeaterEnabled": 1, + "JK_JSONBUFFER_SIZE": 1, + "only": 12, + "defaultCache": 3, + "xDFFF": 1, + "setTotalBytesSent": 1, + "TTDERROR": 1, + "CGSizeMake": 3, + "v": 4, + "JK_DEPRECATED_ATTRIBUTE": 6, + "cancelled": 5, + "NSLocalizedString": 9, + "configureProxies": 2, + "body": 8, + "ConversionResult": 1, + "argumentNumber": 1, + "retain": 73, + "setShouldWaitToInflateCompressedResponses": 1, + "unsignedLongLongValue": 1, + "JKObjectStackFlags": 1, + "@end": 37, + "*underlyingError": 1, + "Reference": 1, + "SBJsonStreamParserAdapter": 2, + "anAuthenticationBlock": 1, + "expire": 2, + "scanInt": 2, + "jk_encode_error": 1, + "setCancelledLock": 1, + "challenge": 1, + "ASIConnectionFailureErrorType": 2, + "defaultResponseEncoding": 4, + "parseStringEncodingFromHeaders": 2, + "NSStringFromSelector": 16, + "postLength": 6, + "anUploadSizeIncrementedBlock": 1, + "redirectToURL": 2, + "setRedirectURL": 2, + "regenerated": 3, + "TTImageView": 1, + "received": 5, + "indexOfSectionWithHeaderAtVerticalOffset": 2, + "es": 3, + "init": 34, + "timing": 1, + "blue": 3, + "id": 170, + "wanted": 1, + "JK_ALIGNED": 1, + "releaseBlocksOnMainThread": 4, + "callerToRetain": 7, + "architectures.": 1, + "headersReceivedBlock": 5, + "dc": 3, + "any": 3, + "deselectRowAtIndexPath": 3, + "throttleBandwidthForWWANUsingLimit": 1, + "URLs": 2, + "downloaded": 6, + "kCFNull": 1, + "greater": 1, + "payload": 1, + "TTLOGLEVEL_INFO": 1, + "got": 1, + "by": 12, + "proxyCredentials": 1, + "requestHeaders": 6, + "expirePersistentConnections": 1, + "*request": 1, + "getObjects": 2, + "theData": 1, + "indexOfSectionWithHeaderAtPoint": 2, + "setShouldResetDownloadProgress": 1, + "atObject": 12, + "host": 9, + "sessionCredentialsStore": 1, + "*responseHeaders": 2, + "SortCells": 1, + "NTLM": 6, + "fromContentType": 2, + "break": 13, + "NSMaxRange": 4, + "*256": 1, + "synchronous": 1, + "CFURLRef": 1, + "currentHash": 1, + "indexPathsForRowsInRect": 3, + "unless": 2, + "callback": 3, + "<Foundation/NSException.h>": 1, + "yet": 1, + "setContentOffset": 2, + "setCompressedPostBodyFilePath": 1, + "Agent": 1, + "C": 6, + "dequeueReusableCellWithIdentifier": 2, + "range": 8, + "_headerView.frame.size.height": 2, + "parent": 1, + "newCount": 1, + "_dataSource": 6, + "initWithDomain": 5, + "standard": 1, + "closed": 1, + "willRedirectSelector": 2, + "incrementing": 2, + "JSONKitDeserializing": 2, + "NS_BUILD_32_LIKE_64": 3, + "JKParseOptionStrict": 1, + "strong": 4, + "self.contentSize": 3, + "*v": 2, + "appendPostData": 3, + "JK_WARN_UNUSED": 1, + "JKTokenTypeArrayEnd": 1, + "supply": 2, + "INT_MIN": 3, + "_JKDictionaryHashTableEntryForKey": 1, + "setUploadProgressDelegate": 2, + "JK_ATTRIBUTES": 15, + "POST": 2, + "JKParseOptionUnicodeNewlines": 2, + "mark": 42, + "webservers": 1, + "dateWithTimeIntervalSinceNow": 1, + "isResponseCompressed": 3, + "index": 11, + "WORD_BIT": 1, + "JKSerializeOptionEscapeUnicode": 2, + "safely": 1, + "large": 1, + "intersecting": 1, + "addToSize": 1, + "///////////////////////////////////////////////////////////////////////////////////////////////////": 24, + "findProxyCredentials": 2, + "update": 6, + "token": 1, + "up": 4, + "TUITableViewInsertionMethodBeforeIndex": 1, + "applicationDidFinishLaunching": 1, + "removeProxyAuthenticationCredentialsFromSessionStore": 1, + "prevents": 1, + "may": 8, + "JKSerializeOptionFlags": 16, + "lower": 1, + "*decoder": 1, + "LONG_BIT": 1, + "#else": 8, + ".key": 11, + "JKValueTypeDouble": 1, + "setShouldAttemptPersistentConnection": 2, + "base64forData": 1, + "streaming": 1, + "TTDPRINTMETHODNAME": 1, + "generate": 1, + "Invalid": 1, + "order": 1, + "measure": 1, + "*entry": 4, + "*keyHashes": 2, + "ASICompressionError": 1, + "dataUsingEncoding": 2, + "<TUITableViewDataSource>": 4, + "mutableObjectWithData": 2, + "lock": 19, + "another": 1, + "to.": 2, + "setFrame": 2, + "subsequent": 2, + "bounds": 2, + "*scanner": 1, + "NSProgressIndicator": 4, + "mutableObjectWithUTF8String": 2, + "CFHTTPMessageCreateRequest": 1, + "JK_EXPECT_F": 14, + "JSONNumberStateWholeNumber": 1, + "*clientCallBackInfo": 1, + "used": 16, + "request": 113, + "setDidUseCachedResponse": 1, + "files": 5, + "loadView": 4, + "addKeyEntry": 2, + "isExecuting": 1, + "rowInfo": 7, + "m": 1, + "NULL": 152, + "toIndexPath.row": 1, + "#endif": 59, + "NSFileManager": 1, + "<CoreFoundation/CFArray.h>": 1, + "TTTableTextItem": 48, + "main": 8, + "JK_CACHE_PROBES": 1, + "now.": 1, + "FFFD": 1, + "__builtin_prefetch": 1, + "dataWithBytes": 1, + "JK_EXPECT_T": 22, + "*proxyCredentials": 2, + "label.numberOfLines": 2, + "user": 6, + "parseUTF8String": 2, + "jk_encode_writen": 1, + "jk_encode_write": 1, + "char": 19, + "internal": 2, + "label.text": 2, + "iterations": 1, + "iteration...": 1, + "measureBandwidthUsage": 1, + "postBody": 11, + "JKSERIALIZER_BLOCKS_PROTO": 1, + "_JKDictionaryCapacity": 3, + "what": 3, + "appendPostDataFromFile": 3, + "*oldEntry": 1, + "__LP64__": 4, + "keyHashes": 2, + "{": 541, + "_contentHeight": 7, + "downloadSizeIncrementedBlock": 5, + "progress": 13, + "_JSONDecoderCleanup": 1, + "updateProgressIndicators": 1, + "recording": 1, + "commit": 1, + "Invokes": 2, + "JKTokenCache": 2, + "willRetryRequest": 1, + "successfully": 4, + "visible.size.width": 3, + "*ASIAuthenticationError": 1, + "currently": 4, + "Unable": 2, + "connection.": 2, + "implemented": 7, + "selection.": 1, + "Directly": 2, + "xD800": 1, + "**keys": 1, + "NSScanner": 2, + "NO": 30, + "was": 4, + "totalBytesSent": 5, + "NSIntegerMax": 4, + "ASIHTTPRequests": 1, + "IN": 1, + "_delegate": 2, + "indexPathForLastVisibleRow": 2, + "remove": 4, + "NSRecursiveLock": 13, + "*lastActivityTime": 2, + "successfully.": 1, + "allValues": 1, + "NSUnderlyingErrorKey": 3, + "according": 2, + "expect": 3, + "return": 165, + "setDownloadCache": 3, + "timeOutSeconds": 3, + "most": 1, + "label.frame.size.height": 2, + "prepareForReuse": 1, + "_headerView.layer.zPosition": 1, + "but": 5, + "NSUIntegerMax": 7, + "UNI_SUR_LOW_END": 1, + "connectionsLock": 3, + "__GNUC__": 14, + "JSONStringStateEscapedUnicodeSurrogate2": 1, + "kGroupSpacing": 5, + "UITableViewStylePlain": 1, + "fetchPACFile": 1, + "//lists.apple.com/archives/Macnetworkprog/2006/Mar/msg00119.html": 1, + "TUITableViewCell": 23, + "called": 3, + "shouldPresentCredentialsBeforeChallenge": 4, + "necessary": 2, + "its": 9, + "authenticating": 2, + "NSMenu": 1, + "an": 20, + "JKSerializeOptionNone": 3, + "interval": 1, + "clearSession": 2, + "self.nsWindow": 3, + "CGRectIntersectsRect": 5, + "jk_dictionaryCapacities": 4, + "with": 19, + "new": 10, + "haveBuiltRequestHeaders": 1, + "retryUsingNewConnection": 1, + "_topVisibleIndexPath": 1, + "saveCredentials": 4, + "__builtin_expect": 1, + "contentLength": 6, + "*firstResponder": 1, + "superview": 1, + "contentType": 1, + "caller": 1, + "TTLOGLEVEL_WARNING": 1, + "advanceBy": 1, + "*m": 1, + "JKEncodeOptionAsTypeMask": 1, + "@protocol": 3, + "all": 3, + "push": 1, + "<NSCopying,>": 2, + "When": 15, + "state": 35, + "JKTokenTypeString": 1, + "unused": 3, + "typedef": 47, + "mimeTypeForFileAtPath": 1, + "signed": 1, + "<CFNetwork/CFNetwork.h>": 1, + "UL": 138, + "aReceivedBlock": 2, + "addText": 5, + "initialize": 1, + "JK_ALLOC_SIZE_NON_NULL_ARGS_WARN_UNUSED": 2, + "TUITableViewScrollPositionTop": 2, + "<ASIProgressDelegate>": 2, + "initWithObjects": 2, + "_currentDragToReorderInsertionMethod": 1, + "file": 14, + "bytes": 8, + "Opaque": 1, + "removeObjectAtIndex": 1, + "*requestCredentials": 1, + "*proxyUsername": 2, + "Domain": 2, + "amount": 12, + "event": 8, + "using": 8, + "streamSuccessfullyOpened": 1, + "headers": 11, + "removeAllObjects": 1, + "mutableCopyWithZone": 1, + "enumerateIndexPathsWithOptions": 2, + "initWithBytes": 1, + "PlaygroundViewController": 2, + "setNeedsDisplay": 2, + "UTF16": 1, + "setPersistentConnectionTimeoutSeconds": 2, + "allocWithZone": 4, + "*cacheSlot": 4, + "ReadStreamClientCallBack": 1, + "*sharedQueue": 1, + "_JKArrayClass": 5, + "*newIndexPath": 1, + "tableSize": 2, + "toIndexPath": 12, + "Even": 1, + "instance": 2, + "sizeWithFont": 2, + "UIEdgeInsetsMake": 3, + "types": 2, + "ASITooMuchRedirectionErrorType": 3, + "setCompressedPostBody": 1, + "negative": 1, + "d": 11, + "globallyUniqueString": 2, + "writing": 2, + "fffffff": 1, + "tmp": 3, + "indexPathWithIndexes": 1, + "next": 2, + "needed": 3, + "NSMutableCopying": 2, + "JKTokenValue": 2, + "startingAtIndex": 4, + "Prevents": 1, + "_tableFlags.delegateTableViewWillDisplayCellForRowAtIndexPath": 1, + "ASIHTTPRequest": 31, + "always_inline": 1, + "HEAD": 10, + "reason": 1, + "NSHTTPCookie": 1, + "configure": 2, + "Stores": 1, + "size.width": 1, + "CFHTTPMessageRef": 3, + "NSArray": 27, + "Text": 1, + "enable": 1, + "r": 6, + "*jk_parse_array": 1, + "compressedBody": 1, + "JKEncodeOptionAsData": 1, + "object": 36, + "UIScrollView*": 1, + "JK_WARN_UNUSED_PURE": 1, + "jk_objectStack_setToStackBuffer": 1, + "performKeyAction": 2, + "subview": 1, + "fileDownloadOutputStream": 1, + "Range": 1, + "alloc": 47, + "self.error": 3, + "r.size.height": 4, + "setAnimateSelectionChanges": 1, + "*userAgentHeader": 1, + "until": 2, + "JKEncodeOptionStringObj": 1, + "addRequestHeader": 5, + "beforeDate": 1, + "<limits.h>": 2, + "objectIndex": 48, + "TTRectInset": 3, + "can": 20, + "initWithParseOptions": 1, + "forControlEvents": 1, + "UNI_REPLACEMENT_CHAR": 1, + "deprecated": 1, + "jsonData": 6, + "talking": 1, + "UIButton*": 1, + "view.urlPath": 1, + "FFFFFFF": 1, + "JK_UTF8BUFFER_SIZE": 1, + "NSNotification": 2, + "jk_managedBuffer_release": 1, + "efficient": 1, + "CGRectZero": 5, + "proposedPath": 1, + "#import": 53, + "particular": 2, + "mutableCollection": 7, + "JSONStringStateEscapedNeedEscapeForSurrogate": 1, + "_scrollView": 9, + "cell.frame": 1, + "LLONG_MIN": 1, + "TUITableViewStyleGrouped": 1, + "JKManagedBufferFlags": 1, + "#": 2, + "setPostLength": 3, + "nonnull": 6, + "fromIndexPath.section": 1, + "sectionIndex": 23, + "title": 2, + "kCFStreamPropertyHTTPResponseHeader": 1, + "fromIndexPath": 6, + "name": 7, + "while": 11, + "JSONNumberStateFinished": 1, + "date": 3, + "*url": 2, + "authentication": 18, + "add": 5, + "JKTokenTypeComma": 1, + "JSONStringStateEscapedUnicode2": 1, + "<TUITableViewDelegate>": 4, + "actually": 2, + "origin": 1, + "throw": 1, + "NSRange": 1, + "no": 7, + "ASINetworkQueue": 4, + "zero": 1, + "didClickRowAtIndexPath": 1, + "already": 4, + "in": 42, + "indexPathForSelectedRow": 4, + "post": 2, + "secondsSinceLastActivity": 1, + "time": 9, + "NSThread": 4, + "copyWithZone": 1, + "reused": 2, + "generated": 3, + "inflatedFileDownloadOutputStream": 1, + "incrementDownloadSizeBy": 1, + "*clientCertificates": 2, + "INDEX_PATHS_FOR_VISIBLE_ROWS": 4, + "context.font": 1, + "_JKDictionaryInstanceSize": 4, + "temporary": 2, + "super": 25, + "representing": 1, + "*credentials": 1, + "self.contentInset.bottom": 1, + "JSONDecoder": 2, + "unlock": 20, + "*fileDownloadOutputStream": 2, + "oldCount": 2, + "UNI_MAX_LEGAL_UTF32": 1, + "*header": 1, + "NSEnumerator": 2, + "populated": 1, + "newIndexPath": 6, + "keyEntry": 4, + "didReceiveResponseHeaders": 2, + "as": 17, + "JKParseAcceptCommaOrEnd": 1, + "setShouldPresentProxyAuthenticationDialog": 1, + "proceed.": 1, + "dataSource": 2, + "selectRowAtIndexPath": 3, + "valueForKey": 2, + "shouldResetUploadProgress": 3, + "newQueue": 3, + "rowHeight": 2, + "applyCookieHeader": 2, + "keepAliveHeader": 2, + "setRequestHeaders": 2, + "maxUploadReadLength": 1, + "hasn": 1, + "authenticate": 1, + "UIBackgroundTaskInvalid": 3, + "updateDownloadProgress": 3, + "implement": 1, + "stop": 4, + "shouldResetDownloadProgress": 3, + "*postBodyFilePath": 1, + "setBytesSentBlock": 1, + "Generally": 1, + "ASIDataBlock": 3, + "topVisibleIndex": 2, + "ASIUnableToCreateRequestError": 3, + "<AvailabilityMacros.h>": 1, + "updatedProgress": 3, + "parser.delegate": 1, + "*PACurl": 2, + "rowsInSection": 7, + "_headerView.hidden": 4, + "added": 5, + "*proxyType": 1, + "press": 1, + "theError": 6, + "JKManagedBufferLocationShift": 1, + "addOperation": 1, + "ASICachePolicy": 4, + "still": 2, + "stick": 1, + "storing": 1, + "seconds": 2, + "notified": 2, + "cellRect.origin.y": 1, + "class": 30, + "setMaxConcurrentOperationCount": 1, + "every": 3, + "include": 1, + "UNI_MAX_BMP": 1, + "depthChange": 2, + "[": 1227, + "@implementation": 13, + "addHeader": 5, + "munge": 2, + "ASIFallbackToCacheIfLoadFailsCachePolicy": 2, + "didReceiveData": 2, + "*atEntry": 3, + "rectForHeaderOfSection": 4, + "sortedArrayUsingSelector": 1, + "they": 6, + "scanString": 2, + "ssize_t": 2, + "Mac": 2, + "DEBUG": 1, + "forMode": 1, + "possible": 3, + "avoids": 1, + "failure": 1, + "sessionCookiesLock": 1, + "pullDownViewIsVisible": 3, + "dataDecompressor": 1, + "uploadProgressDelegate": 8, + "i": 41, + "applyAuthorizationHeader": 2, + "domain": 2, + "examined": 1, + "runningRequestCount": 1, + "NSTimeInterval": 10, + "stringWithFormat": 6, + "first": 9, + "runRequests": 1, + "#include": 18, + "setDownloadProgressDelegate": 2, + "NSNumber": 11, + "Realm": 1, + "<SystemConfiguration/SystemConfiguration.h>": 1, + "methods": 2, + "Default": 10, + "_pullDownView.frame": 1, + "the": 197, + "*progressLock": 1, + "*defaultUserAgent": 1, + "indexPathForRow": 11, + "sessionProxyCredentialsStore": 1, + "BOOL": 137, + "<stdlib.h>": 1, + "ASIProxyAuthenticationNeeded": 1, + "For": 2, + "own": 3, + "connectionCanBeReused": 4, + "self.dataSource": 1, + "TTDINFO": 1, + "layout": 3, + "context.delegate": 1, + "setPostBodyWriteStream": 2, + "setSynchronous": 2, + "JK_ENABLE_CF_TRANSFER_OWNERSHIP_CALLBACKS": 2, + "your": 2, + "sortedArrayUsingComparator": 1, + "clang": 3, + "JSONNumberStateWholeNumberStart": 1, + "NSInternalInconsistencyException": 4, + "CGRect": 41, + "ASIInputStream": 2, + "secure": 1, + "containing": 1, + "various": 1, + "point.y": 1, + "indexes": 4, + "UIViewAutoresizingFlexibleWidth": 4, + "userAgentHeader": 2, + "these": 3, + "CFOptionFlags": 1, + "start": 3, + "specify": 2, + "pool": 2, + "forEvent": 3, + "bodies": 1, + "could": 1, + "numberOfRows": 13, + "note": 1, + "storage": 2, + "extra": 1, + "warn_unused_result": 9, + "compressedPostBodyFilePath": 4, + "jk_encode_write1slow": 2, + "calloc": 5, + "itself": 1, + "invalidate": 2, + "_layoutSectionHeaders": 2, + "remaining": 1, + "*data": 2, + "NSFastEnumeration": 2, + "*keys": 2, + "compatible": 1, + "askDelegateForCredentials": 1, + "serializeOptions": 14, + "removeAllIndexes": 2, + "NSMutableData": 5, + "table": 7, + "NSAutoreleasePool": 2, + "*objects": 5, + "kCFStreamPropertyHTTPRequestBytesWrittenCount": 1, + "indexAtPosition": 2, + "(": 2109, + "append": 1, + "setAuthenticationNeededBlock": 1, + "section.headerView.frame": 1, + "currentRunLoop": 2, + "@required": 1, + "JK_WARN_UNUSED_NONNULL_ARGS": 1, + "never": 1, + "_pullDownView.hidden": 4, + "keep": 2, + "theRequest": 1, + "__cplusplus": 2, + "struct": 20, + "receives": 3, + "NSDownArrowFunctionKey": 1, + "take": 1, + "completionBlock": 5, + "delegates": 2, + "JKTokenTypeObjectBegin": 1, + "Details": 1, + "accept": 2, + "reloadLayout": 2, + "is": 77, + "offset": 23, + "xF8": 1, + "send": 2, + "re": 9, + "Location": 1, + "UIViewAutoresizingFlexibleHeight": 1, + "ve": 7, + ".object": 7, + "aProxyAuthenticationBlock": 1, + "initWithStyleName": 1, + "row": 36, + "isMainThread": 2, + "moveRowAtIndexPath": 2, + "**objects": 1, + "result": 4, + "setAllowCompressedResponse": 1, + "_enqueueReusableCell": 2, + "view.frame": 2, + "parsing": 2, + "open": 2, + "setPostBodyFilePath": 1, + "If": 30, + "Size": 3, + "likely": 1, + "charactersIgnoringModifiers": 1, + "visibleCellsNeedRelayout": 5, + "offscreen": 2, + "*i": 4, + "self.contentInset.top*2": 1, + "top": 8, + "<CoreFoundation/CFDictionary.h>": 1, + "jk_set_parsed_token": 1, + "make": 3, + "*authenticationScheme": 1, + "limit": 1, + "moment": 1, + "message": 2, + "_jk_NSNumberAllocImp": 2, + "clearCache": 1, + "setURL": 3, + "NSInvalidArgumentException": 6, + "*rawResponseData": 1, + "params": 1, + "*atAddEntry": 1, + "submitting": 1, + "aRedirectBlock": 1, + "setDidReceiveResponseHeadersSelector": 1, + "perhaps": 1, + "LONG_MAX": 3, + "andCachePolicy": 3, + "ASINetworkQueue.h": 1, + "initWithCapacity": 2, + "It": 2, + "private": 1, + "NSOrderedDescending": 4, + "give": 2, + "Methods": 1, + "indexPathForFirstVisibleRow": 2, + "instead.": 4, + "asked": 3, + "jk_objectStack_release": 1, + "where": 1, + "StyleView": 2, + "maxDepth": 2, + "NSProcessInfo": 2, + "reportFinished": 1, + "*ASIHTTPRequestRunLoopMode": 1, + "_previousDragToReorderInsertionMethod": 1, + "kCFHTTPVersion1_0": 1, + "original": 2, + "setTitle": 1, + "viewFrame": 4, + "jk_parse_next_token": 1, + "setRequestMethod": 3, + "setShouldRedirect": 1, + "occurs": 1, + "_headerView.autoresizingMask": 1, + "TTStyle*": 7, + "keychain": 7, + "invocationWithMethodSignature": 1, + "character": 1, + "layoutSubviewsReentrancyGuard": 1, + "NSString": 127, + "setShouldUpdateNetworkActivityIndicator": 1, + "removeTemporaryCompressedUploadFile": 1, + "Another": 1, + "findSessionAuthenticationCredentials": 2, + "SBJsonStreamParserWaitingForData": 1, + "redirections": 1, + "YES.": 1, + "TUITableViewInsertionMethod": 3, + "concurrency": 1, + "JSONKIT_VERSION_MAJOR": 1, + "scheme": 5, + "_makeRowAtIndexPathFirstResponder": 2, + "newVisibleIndexPaths": 2, + "had": 1, + "URLWithString": 1, + "one": 1, + "partialDownloadSize": 8, + "objectFromJSONDataWithParseOptions": 2, + "Description": 1, + "initWithNumberOfRows": 2, + "redirect": 4, + "clientCertificates": 2, + "arrayIdx": 5, + "_cmd": 16, + "Likely": 1, + "view.image.size": 1, + "view.style": 2, + "text.style": 1, + "parseMimeType": 2, + "JK_UNUSED_ARG": 2, + "JKHashTableEntry": 21, + "raise": 18, + "_JKDictionaryHashEntry": 2, + "aStartedBlock": 1, + "*proxyPassword": 2, + "created": 3, + "setTimeOutSeconds": 1, + "_currentDragToReorderMouseOffset": 1, + "proxyAuthenticationRetryCount": 4, + "setUseSessionPersistence": 1, + "<CoreFoundation/CFNumber.h>": 1, + "isPACFileRequest": 3, + "*originalURL": 2, + "*sessionCookies": 1, + "SBJsonStreamParser": 2, + "__MAC_10_5": 2, + "CATransaction": 3, + "kCFStreamEventEndEncountered": 1, + "setDidCreateTemporaryPostDataFile": 1, + "n": 7, + "Custom": 1, + "imageFrame": 2, + "JKTokenCacheItem": 2, + "JKObjectStackOnHeap": 1, + "NSNumberInitWithUnsignedLongLongImp": 2, + "itemsPtr": 2, + "<Foundation/NSArray.h>": 2, + "_indexPathShouldBeFirstResponder": 2, + "alloc_size": 1, + "see": 1, + "*ctx": 1, + "UIControlStateDisabled": 1, + "firstByteMark": 1, + "//If": 2, + "TUITableViewDelegate": 1, + "<NSApplicationDelegate>": 1, + "accumulator.value": 1, + "cancelAuthentication": 1, + "*_JKDictionaryCreate": 2, + "|": 13, + "@private": 2, + "componentsSeparatedByString": 1, + "TUITableViewScrollPositionMiddle": 1, + "*objectPtr": 2, + "cancelledLock": 37, + "JKObjectStackLocationMask": 1, + "scrollRectToVisible": 2, + "value": 21, + "visible": 16, + "*ptr": 2, + "setMaxValue": 2, + "type.": 3, + "setRequestCredentials": 1, + "allowCompressedResponse": 3, + "_tableFlags.derepeaterEnabled": 1, + "mutableCopy": 2, + "indexPath.section": 3, + "data": 27, + "JSONNumberStateWholeNumberMinus": 1, + "SSIZE_MAX": 1, + "Tested": 1, + "indexesOfSectionHeadersInRect": 2, + "_jk_NSNumberInitWithUnsignedLongLongImp": 2, + "*ASITooMuchRedirectionError": 1, + "*connectionInfo": 2, + "*_tableView": 1, + "The": 15, + "download": 9, + "*_JKDictionaryHashEntry": 2, + "throttling": 1, + "TTLOGLEVEL_ERROR": 1, + "b.frame.origin.y": 2, + "_JSONKIT_H_": 3, + "NSOperationQueue": 4, + "temporaryUncompressedDataDownloadPath": 3, + "setFailedBlock": 1, + "*password": 2, + "webserver": 1, + "mimeType": 2, + "*managedBuffer": 3, + "JKSerializeOptionPretty": 2, + "nonatomic": 40, + "-": 595, + "UNI_SUR_HIGH_END": 1, + "JSONStringStateEscapedUnicodeSurrogate3": 1, + "requestMethod": 13, + "ofTotal": 4, + "certificates": 2, + "development": 1, + "cbSignature": 1, + "CFReadStreamCopyProperty": 2, + "_keepVisibleIndexPathForReload": 2, + "after": 5, + "CFHash": 1, + "more": 5, + "askDelegateForProxyCredentials": 1, + "want": 5, + "url": 24, + "credentialWithUser": 2, + "proxyAuthenticationRealm": 2, + "ARC": 1, + "indexPathForRowAtVerticalOffset": 2, + "hideNetworkActivityIndicator": 1, + "tell": 2, + "pullDownView": 1, + ".height": 4, + "_currentDragToReorderIndexPath": 1, + "jk_encode_object_hash": 1, + "destroyReadStream": 3, + "TUITableViewInsertionMethodAfterIndex": 1, + "SBJsonStreamParserError": 1, + "dateFromRFC1123String": 1, + "_tableView": 3, + ";": 2003, + "enum": 17, + "down": 1, + "debugging": 1, + "*indexPaths": 1, + "means": 1, + "redirected": 2, + "setArgument": 4, + "ASIAuthenticationState": 5, + "//#include": 1, + "NSParameterAssert": 15, + "compressedPostBody": 4, + "_jk_NSNumberClass": 2, + "TT_RELEASE_SAFELY": 12, + "applyProxyCredentials": 2, + "setDidFinishSelector": 1, + "redirectURL": 1, + "long": 71, + "CGFloat": 44, + "showProxyAuthenticationDialog": 1, + "check": 1, + "setDataSource": 1, + "unsigned": 62, + "JSONData": 3, + "double": 3, + "<Foundation/NSDictionary.h>": 2, + "URL": 48, + "values": 3, + "certificate": 2, + "makeFirstResponderIfNotAlreadyInResponderChain": 1, + "would": 2, + "*jk_object_for_token": 1, + "validatesSecureCertificate": 3, + "calculateNextIndexPath": 4, + "objectFromJSONString": 1, + "JKDictionary": 22, + "LL": 1, + "clientCallBackInfo": 1, + "zone": 8, + "applyCredentials": 1, + "appropriate": 4, + "_tableFlags": 1, + "were": 5, + "_JKDictionaryRemoveObjectWithEntry": 3, + "should": 8, + "proxyPassword": 3, + "making": 1, + "false": 3, + "saveProxyCredentialsToKeychain": 1, + "*cfHashes": 1, + "<ASICacheDelegate>": 9, + "bytesSentBlock": 5, + "theUsername": 1, + "upwards.": 1, + "_styleDisabled": 6, + "Make": 1, + "NSInteger": 56, + "decoderWithParseOptions": 1, + "yOffset": 42, + "returned": 1, + "tableRowOffset": 2, + "asynchronously": 1, + "constrainedToSize": 2, + "CFHTTPAuthenticationRef": 2, + "bandwidthUsedInLastSecond": 1, + "JK_WARN_UNUSED_CONST": 1, + "simply": 1, + "laid": 1, + "for": 99, + "allObjects": 2, + "NSCParameterAssert": 19, + "*encoding": 1, + "anIdentity": 1, + "authenticationRetryCount": 2, + "upload": 4, + "onTarget": 7, + "discarded": 1, + "ASIAuthenticationDialog": 2, + "numberOfTimesToRetryOnTimeout": 2, + "UIButton": 1, + "toRemove": 1, + "TRUE": 1, + "UIViewAutoresizingFlexibleBottomMargin": 3, + "Force": 2, + "ASIUnhandledExceptionError": 3, + "JSONKitSerializingBlockAdditions": 2, + "Leopard": 1, + "oldIndexPath": 2, + "JKTokenTypeInvalid": 1, + "e": 1, + "JKValueTypeNone": 1, + "showAccurateProgress": 7, + "previous": 2, + "dealloc": 13, + "waitUntilDone": 4, + "automatically": 2, + "ASIWWANBandwidthThrottleAmount": 2, + "setReadStream": 2, + "other": 3, + "realloc": 1, + "aDownloadSizeIncrementedBlock": 1, + "sections": 4, + "redirecting": 2, + "isMultitaskingSupported": 2, + "<Foundation/Foundation.h>": 4, + "retryCount": 3, + "agent": 2, + "made": 1, + "userInfo": 15, + "JKEncodeCache": 6, + "xFA082080UL": 1, + "whose": 2, + "removeFromSuperview": 4, + "requestCredentials": 1, + "s": 35, + "*persistentConnectionsPool": 1, + "newRequestMethod": 3, + "newSize": 1, + "attemptToApplyCredentialsAndResume": 1, + "*oldVisibleIndexPaths": 1, + "intoString": 3, + "#ifndef": 9, + "CFHTTPMessageApplyCredentialDictionary": 2, + "_JKDictionaryAddObject": 4, + "Internal": 2, + "shouldWaitToInflateCompressedResponses": 4, + "autorelease": 21, + "JSONNumberStateWholeNumberZero": 1, + "*argv": 1, + "determine": 1, + "pinnedHeader.frame": 2, + "globalStyleSheet": 4, + "readResponseHeaders": 2, + "JKTokenTypeTrue": 1, + "UNI_MAX_UTF16": 1, + "*bandwidthMeasurementDate": 1, + "reference": 1, + "UINT_MAX": 3, + "characterAtIndex": 1, + "clear": 3, + "*sslProperties": 2, + "@catch": 1, + "use": 26, + "*pool": 1, + "underlyingError": 1, + "NSURLCredentialPersistencePermanent": 2, + "_currentDragToReorderLocation": 1, + "memmove": 2, + "Why": 1, + "or": 18, + "foundValidNextRow": 4, + "CGRectGetMaxY": 2, + "UIColor": 3, + "know": 3, + "*or1String": 1, + "@optional": 2, + "line": 2, + "NetworkRequestErrorDomain": 12, + "fromIndexPath.row": 1, + "required": 2, + "TUITableViewScrollPositionNone": 2, + "TUITableViewDataSource": 2, + "<<": 16, + "//#import": 1, + "sessionCredentials": 6, + "selector": 12, + "TUITableView*": 1, + "persistent": 5, + "*authenticationCredentials": 2, + "JKTokenTypeNull": 1, + "way": 1, + "arg": 11, + "mutableObjectFromJSONString": 1, + "without": 1, + "USE": 1, + "oldVisibleIndexPaths": 2, + "*mimeType": 1, + "Collection": 1, + "JSONNumberStatePeriod": 1, + "UTF32": 11, + "JSONStringStateEscapedUnicode3": 1, + "behind": 1, + "selection": 3, + "TTStyleContext": 1, + "replaceObjectAtIndex": 1, + "inputStreamWithData": 2, + "process": 1, + "UITableViewStyleGrouped": 1, + "primarily": 1, + "label": 6, + "*compressedBody": 1, + "weak": 2, + "<NSObject>": 1, + "shouldContinueWhenAppEntersBackground": 3, + "See": 5, + "NSDictionary": 37, + "isBandwidthThrottled": 2, + "creation.": 1, + "Called": 6, + "TTDWARNING": 1, + "headerFrame.size.height": 1, + "*sessionCredentials": 1, + "__OBJC_GC__": 1, + "CGSize": 5, + "@finally": 1, + "JKClassNumber": 1, + "a.frame.origin.y": 2, + "isFinished": 1, + "v1.4": 1, + "*delegateAuthenticationLock": 1, + "NSIntegerMin": 3, + "incrementUploadSizeBy": 3, + "aligned": 1, + "indexPathForFirstRow": 2, + "pulled": 1, + "*userInfo": 2, + "*rowInfo": 1, + "_styleType": 6, + "bytesReceivedBlock": 8, + "method": 5, + "*err": 3, + "at": 10, + "mime": 1, + "handlers": 1, + "operations": 1, + "_headerView.frame": 1, + "acceptHeader": 2, + "@": 258, + "#pragma": 44, + "out": 7, + "ASI_DEBUG_LOG": 11, + "setHeadersReceivedBlock": 1, + "performRedirect": 1, + "ASIHTTPRequest*": 1, + "objectForKey": 29, + "CFReadStreamSetProperty": 1, + "JKClassDictionary": 1, + "ASIHTTPRequestRunLoopMode": 2, + "exception": 3, + "didDeselectRowAtIndexPath": 3, + "setSessionCookies": 1, + "match": 1, + "work.": 1, + "frame.origin.x": 3, + "being": 4, + "*s": 3, + "_updateDerepeaterViews": 2, + "_previousDragToReorderIndexPath": 1, + "Do": 3, + "required.": 1, + "timeIntervalSinceNow": 1, + "shouldPresentAuthenticationDialog": 1, + "scrollToRowAtIndexPath": 3, + "requestID": 2, + "password": 11, + "removeCredentialsForHost": 1, + "NSWindow": 2, + "valid": 5, + "@class": 4, + "JSONStringStateFinished": 1, + "arrayWithObjects": 1, + "view": 11, + "ll": 6, + "DEBUG_PERSISTENT_CONNECTIONS": 3, + "withObject": 10, + "JKParseOptionLooseUnicode": 2, + "md5Hash": 1, + "JKEncodeState": 11, + "ASIAuthenticationErrorType": 3, + "JK_ENCODE_CACHE_SLOTS": 1, + "updateStatus": 2, + "Controls": 1, + "*requestCookies": 2, + "r.origin.y": 1, + "objectFromJSONData": 1, + "@interface": 23, + "JKManagedBufferMustFree": 1, + "cleanup": 1, + "*firstIndexPath": 1, + "_layoutCells": 3, + "addImageView": 5, + "addTextView": 5, + "NSIndexPath": 5, + "JK_END_STRING_PTR": 1, + "addBasicAuthenticationHeaderWithUsername": 2, + "via": 5, + "headerViewForSection": 6, + "mutableObjectFromJSONDataWithParseOptions": 2, + "jk_calculateHash": 1, + "determining": 1, + "yourself": 4, + "kNetworkEvents": 1, + "JKPtrRange": 2, + "finishedDownloadingPACFile": 1, + "sslProperties": 2, + "_visibleItems": 14, + "response": 17, + "unscheduleReadStream": 1, + "sessionCookies": 2, + "<Cocoa/Cocoa.h>": 2, + "j": 5, + "size_t": 23, + "checking": 1, + "content": 5, + "scenes": 1, + "slower": 1, + "JK_CACHE_SLOTS_BITS": 2, + "setter": 2, + "always": 2, + "dictionaryWithObjectsAndKeys": 10, + "background": 1, + "rand": 1, + "specified": 1, + "tells": 1, + "<NSObject,>": 1, + "JKObjectStack": 5, + "NO.": 1, + "indexPaths": 2, + "forState": 4, + "option": 1, + "proxyAuthenticationNeededBlock": 5, + "frame": 38, + "Garbage": 1, + "JSONStringWithOptions": 8, + "x": 10, + "ASIRequestCancelledErrorType": 2, + "internally": 3, + "cell.layer.zPosition": 1, + "rowUpperBound": 3, + "*section": 8, + "kCFHTTPAuthenticationUsername": 2, + "requestWithURL": 7, + "RedirectionLimit": 1, + "dictionary": 64, + "newDelegate": 6, + "measurement": 1, + "eg": 2, + "*newCredentials": 1, + "markAsFinished": 4, + "PRODUCTION": 1, + "forHost": 2, + "Deprecated": 4, + "options": 6, + "JSONKit": 11, + "retryUsingSuppliedCredentials": 1, + "reflect": 1, + "Temporarily": 1, + "ASIProgressBlock": 5, + "because": 1, + "cells": 7, + "some": 1, + "failedRequest": 4, + "responseString": 3, + "ASIHTTPAuthenticationNeeded": 1, + "NSResponder": 1, + "headerHeight": 4, + "load": 1, + "setDidFailSelector": 1, + "willDisplayCell": 2, + "initWithFileAtPath": 1, + "uint16_t": 1, + "TTViewController": 1, + "allows": 1, + "ignore": 1, + "JKFastClassLookup": 2, + "said": 1, + "JSONString": 3, + "__inline__": 1, + "startSynchronous": 2, + "allow": 1, + "headers.": 1, + "setDisableActions": 1, + "parseJSONData": 2, + "initWithObjectsAndKeys": 1, + "ASIS3Request": 1, + "xffffffffffffffffULL": 1, + "PUT": 1, + "*userAgentString": 2, + "layoutSubviews": 5, + "entryForKey": 3, + "if": 297, + "parseOptionFlags": 11, + "_sectionInfo": 27, + "running": 4, + "NSOperation": 1, + ")": 2106, + "reloadData": 3, + "hideNetworkActivityIndicatorIfNeeeded": 1, + "debugTestAction": 2, + ".pinnedToViewport": 2, + "<assert.h>": 1, + "their": 3, + "NSError": 51, + "create": 1, + "ASIInternalErrorWhileBuildingRequestType": 3, + "use.": 1, + "menuForRowAtIndexPath": 1, + "isConcurrent": 1, + "dispatch_async": 1, + "fromPath": 1, + "setDefaultCache": 2, + "Once": 2, + "persistentConnectionTimeoutSeconds": 4, + "insertObject": 1, + "it": 28, + "Use": 6, + "proxyType": 1, + "newHeaders": 1, + "width": 1, + "_styleHighlight": 6, + "authenticationRealm": 4, + "__clang_analyzer__": 3, + "headerFrame": 4, + "up/down": 1, + "<stdio.h>": 2, + "#19.": 2, + "JSONStringStateStart": 1, + "*ASIUnableToCreateRequestError": 1, + "readwrite": 1, + "reloadDataMaintainingVisibleIndexPath": 2, + "addObject": 16, + "UIControlStateNormal": 1, + "UIControlStateSelected": 1, + "objc_getClass": 2, + "newSessionCookies": 1, + "setDownloadSizeIncrementedBlock": 1, + "NSUTF8StringEncoding": 2, + "*exception": 1, + "retry": 3, + "toProposedIndexPath": 1, + "postBodyFilePath": 7, + "existing": 1, + "removeObjectsInArray": 2, + "keyHash": 21, + "JKParseOptionValidFlags": 1, + "setDefaultTimeOutSeconds": 1, + "operation": 2, + "displayNameForKey": 1, + "kElementSpacing": 3, + "recycle": 1, + "setConnectionCanBeReused": 2, + "CGSizeZero": 1, + "default": 8, + "proxyUsername": 3, + "showNetworkActivityIndicator": 1, + "UIControlEventTouchUpInside": 1, + "action": 1, + "self.animateSelectionChanges": 1, + "NSObject": 5, + "kCFHTTPVersion1_1": 1, + "NSLocaleIdentifier": 1, + "pinnedHeaderFrame.origin.y": 1, + "hard": 1, + "resuming": 1, + "*pullDownView": 1, + "haveBuiltPostBody": 3, + "JKTokenTypeWhiteSpace": 1, + "*username": 2, + "*downloadDestinationPath": 2, + "lastObject": 1, + "NSINTEGER_DEFINED": 3, + "released": 2, + "cellForRowAtIndexPath": 9, + "copy": 4, + "scroll": 3, + "GET": 1, + "button.frame": 2, + "sectionOffset": 8, + "setError": 2, + "Create": 1, + "Setting": 1, + "gzipped.": 1, + "CGRectContainsPoint": 1, + "removeLastObject": 1, + "failAuthentication": 1, + "*sessionCookiesLock": 1, + "Username": 2, + "section.headerView": 9, + "TUITableViewRowInfo": 3, + "auto": 2, + "updateUploadProgress": 3, + "*newObjects": 1, + "PACurl": 1, + "kCFAllocatorDefault": 3, + "indexPathForCell": 2, + "alive": 1, + "authenticated": 1, + "Used": 13, + "initWithFrame": 12, + "repeats": 1, + "*networkThread": 1, + "a": 78, + "attributesOfItemAtPath": 1, + "inform": 1, + "startAsynchronous": 2, + "parser.error": 1, + "expired": 1, + "thePassword": 1, + "value.": 1, + "comments": 1, + "*window": 2, + "*indexPath": 11, + "idx": 33, + "ASIBasicBlock": 15, + "Currently": 1, + "has": 6, + "pointer": 2, + "Deserializing": 1, + "objc_arc": 1, + "setPostBodyReadStream": 2, + "##__VA_ARGS__": 7, + "connectionID": 1, + "synchronously": 1, + "User": 1, + "__MAC_10_6": 2, + "TUIView": 17, + "*responseStatusMessage": 3, + "*PACFileRequest": 2, + "ASIRequestCancelledError": 2, + "setPostBody": 1, + "identifier": 7, + "<Foundation/NSNull.h>": 1, + "occurred": 1, + "indexPathsToRemove": 2, + "_tableFlags.forceSaveScrollPosition": 1, + "withEvent": 2, + "code": 16, + "NSMutableDictionary": 18, + "FFFF": 3, + "checks": 1, + "OS": 1, + "*PACFileReadStream": 2, + "JSONNumberStateExponent": 1, + "redirects.": 1, + "view.backgroundColor": 2, + "Apply": 1, + "away.": 1, + "connecting": 2, + "UNI_SUR_LOW_START": 1, + "to": 115, + "and": 44 + }, + "Python": { + "nested_types": 1, + "FieldError": 4, + "lookup_kwargs.keys": 1, + "self.request_callback": 5, + "delete": 1, + "ordered_obj._meta.order_with_respect_to.rel.field_name": 2, + "clean": 1, + "pass": 4, + "django.core.exceptions": 1, + "view.view_class": 1, + "dy": 4, + "j": 2, + "errors": 20, + "_reflection.GeneratedProtocolMessageType": 1, + "ModelBase": 4, + "except": 17, + "**2": 2, + "cls.__new__": 1, + "os.path.abspath": 1, + "base._meta.concrete_model": 2, + "no_keep_alive": 4, + "alpha*R0": 2, + "ssl.SSLError": 1, + "os.chdir": 1, + "socket.SOCK_STREAM": 1, + "property": 2, + "PrettyTable": 6, + "self.validate_unique": 1, + "get_text_list": 2, + "io_loop": 3, + "def": 68, + "dispatch_request": 1, + "self._meta.order_with_respect_to": 1, + "pl.grid": 5, + "numpy": 1, + "self._meta": 2, + "base_meta": 2, + "schwarz_table": 2, + "sigma": 4, + "transaction": 1, + "self._state.adding": 4, + "I_err": 2, + "delimiter": 8, + "c": 3, + "*glanz_popt": 1, + "type": 6, + "or": 27, + "package": 1, + "full_name": 2, + "ValueError": 5, + "rel_obj": 3, + "httputil.HTTPHeaders.parse": 1, + "schwarz_table.add_row": 1, + "args": 8, + ".partition": 1, + "sender": 5, + "connection.xheaders": 1, + "label": 18, + "-": 30, + "cls.get_absolute_url": 3, + "request.method": 2, + "order_field": 1, + "future_builtins": 1, + "color": 8, + "socket.AF_UNSPEC": 1, + "attrs.items": 1, + "opts.order_with_respect_to": 2, + "OneToOneField": 3, + "defers": 2, + "rows": 3, + ".join": 3, + "*lookup_kwargs": 2, + "date": 3, + "*weiss_popt": 1, + "_parse_args": 2, + "extensions": 1, + "host": 2, + "self.save_base": 2, + "model_module": 1, + "TCPServer": 2, + "else": 30, + "http_method_funcs": 2, + "based": 1, + "exclude": 23, + "frozenset": 2, + "cls.get_next_in_order": 1, + "__future__": 2, + "prop": 5, + "descriptor": 1, + "weiss_pconv.diagonal": 2, + "schwarz_phi": 4, + "A": 1, + "where": 1, + "new_class.Meta": 1, + "version.startswith": 1, + "django.db.models.query_utils": 2, + "__eq__": 1, + "cls.methods": 1, + "router": 1, + "meta.auto_created": 2, + "max": 11, + "np.linspace": 9, + "content_type.startswith": 2, + "set": 3, + ".count": 1, + "stack_context.wrap": 2, + "argparse": 1, + "##############################################": 2, + "functools": 1, + ".__init__": 1, + "original_base": 1, + "defers.append": 1, + "check": 4, + "options": 3, + "p": 1, + "start_line": 1, + "socket.AI_NUMERICHOST": 1, + "ugettext_lazy": 1, + "matt_y": 2, + "deferred_class_factory": 2, + "View": 2, + "f3": 1, + "glanz_table": 2, + "U": 10, + "disconnect": 5, + "__init__": 5, + "Exception": 2, + "base._meta.abstract": 2, + "directory": 9, + "signals.pre_save.send": 1, + "django.utils.translation": 1, + "import": 47, + "attr_meta": 5, + "__hash__": 1, + "self._cookies.load": 1, + "object": 6, + "cachename": 4, + "django.db.models": 1, + "args_len": 2, + "unicode_literals": 1, + "f.name": 5, + "logging.info": 1, + "x.DoesNotExist": 1, + "__ne__": 1, + "dx": 6, + "f.attname": 5, + "i": 7, + "e.messages": 1, + "add_to_class": 1, + "request": 1, + "xheaders": 4, + "model_unpickle.__safe_for_unpickle__": 1, + "meth": 5, + "ip": 2, + "self.path": 1, + "created": 1, + "f.pre_save": 1, + "files": 2, + "router.db_for_write": 2, + "self._on_write_complete": 1, + "parent_class._meta.unique_together": 2, + "new_class._meta.get_latest_by": 1, + "order_field.attname": 1, + "self._meta.get_field_by_name": 1, + "declaration": 1, + "attrs": 7, + "__str__": 1, + "date_checks": 6, + "printDelimiter": 4, + "SHEBANG#!python": 4, + "sys.argv": 2, + "_deferred": 1, + "handler.": 1, + "headers": 5, + "}": 25, + "np.sqrt": 17, + "unused": 1, + "copy_managers": 1, + "full_url": 1, + "*beta*R0": 7, + "b": 11, + "raw_value": 3, + "curry": 6, + "unique_checks": 6, + "update_fields": 23, + "dx_err": 3, + "self._meta.unique_together": 1, + "connection_header.lower": 1, + "meta": 12, + "model_class": 11, + "copy": 1, + "force_unicode": 3, + "__docformat__": 1, + "self.uri": 2, + "model_class_pk": 3, + "usage": 3, + "meta.has_auto_field": 1, + "also": 1, + "file": 1, + "R0_err": 2, + "only_installed": 2, + "dy.size": 1, + "since": 1, + "glanz_y": 2, + "/I1": 1, + "v": 11, + "get_model": 3, + "field.primary_key": 1, + "glanz_popt": 3, + "django.db.models.manager": 1, + "clean_fields": 1, + "[": 152, + "self._deferred": 1, + "UnicodeDecodeError": 1, + "val": 14, + "epsilon": 7, + "self._request.supports_http_1_1": 1, + "filename": 1, + "self.protocol": 7, + "os.getcwd": 1, + "self.host": 2, + "_descriptor": 1, + "other": 4, + "field.flatchoices": 1, + "attr_meta.abstract": 1, + "_descriptor.FieldDescriptor": 1, + "django.core": 1, + "*U_err/S": 4, + "self.clean": 1, + "new_class._meta.parents": 1, + "serializable_value": 1, + "%": 32, + "origin": 7, + "google.protobuf": 4, + "DEFAULT_DB_ALIAS": 2, + "as_view": 1, + "add_lazy_relation": 2, + "_get_unique_checks": 1, + "unique_togethers.append": 1, + "*popt": 2, + "date_checks.append": 3, + "extension_ranges": 1, + "matt_x": 3, + "cls._base_manager": 1, + "f.blank": 1, + "self._state.db": 2, + "f2": 1, + "T": 6, + "self._get_pk_val": 6, + "f3**2": 1, + "f.rel.to": 1, + "self.unique_error_message": 1, + "obj_name": 2, + "is_extendable": 1, + "*beta": 1, + "phi": 5, + "base._meta.local_many_to_many": 1, + "base._meta.local_fields": 1, + "instance": 5, + "new_class._default_manager": 2, + "_on_headers": 1, + "filter": 3, + "pconv.diagonal": 3, + "connection": 5, + "strings_only": 1, + "unique_checks.append": 2, + "pl.title": 5, + "cls": 32, + "self": 100, + "map": 1, + "gitDirectory": 2, + "new_class.copy_managers": 2, + ".encode": 1, + "base._meta.parents": 1, + "base._meta.module_name": 1, + "elif": 4, + "ordered_obj._meta.order_with_respect_to.name": 2, + "self.stream.read_until": 2, + "copy.deepcopy": 2, + "self.__class__._meta.object_name": 1, + "is_proxy": 5, + "os.walk": 1, + "header": 5, + "pl": 1, + "unique_check": 10, + "new_class._meta.ordering": 1, + "httputil.HTTPHeaders": 1, + "########": 2, + "collector.delete": 1, + "signals.class_prepared.send": 1, + "I1": 3, + "logging": 1, + "action": 1, + "and": 35, + "self._meta.fields": 5, + "rv.methods": 2, + "Cookie": 1, + "_get_pk_val": 2, + "to": 4, + "qs.exclude": 2, + "field.attname": 17, + "hash": 1, + "field.name": 14, + "from": 34, + "django.utils.functional": 1, + "_finish_request": 1, + "seed_cache": 2, + "save": 1, + "django.db.models.fields": 1, + "unique_together": 2, + "*dy_err": 1, + "self._meta.proxy_for_model": 1, + "super": 2, + "f.unique_for_month": 3, + "this": 2, + "unique_togethers": 2, + "schwarz_y": 2, + "_on_request_body": 1, + "containing_type": 2, + "_valid_ip": 1, + "HTTPConnection": 2, + "pk_set": 5, + "help": 2, + "new_class._meta.setup_proxy": 1, + "|": 1, + "False": 28, + "save.alters_data": 1, + ".get": 2, + "ImportError": 1, + "save_base": 1, + "a": 2, + "Cookie.SimpleCookie": 1, + "delete.alters_data": 1, + "key.upper": 1, + "argparse.ArgumentParser": 1, + "DESCRIPTOR.message_types_by_name": 1, + "model_class._default_manager.filter": 2, + "op": 6, + "get": 1, + "ur": 11, + "factory": 5, + "_get_next_or_previous_in_order": 1, + "Person": 1, + "dest": 1, + "address": 4, + "sys.modules": 1, + "*schwarz_popt": 1, + "used": 1, + "e.update_error_dict": 3, + "eol": 3, + "force_insert": 7, + "Collector": 2, + "manager._copy_to_model": 1, + "+": 37, + "signals.post_init.send": 1, + ".exists": 1, + "as": 11, + "self.headers": 4, + "qs.exists": 2, + "signal": 1, + "logging.warning": 1, + "django.db": 1, + "np.abs": 1, + "glanz_x": 3, + "make_foreign_order_accessors": 2, + "manager._insert": 1, + "not": 64, + "new_class.add_to_class": 7, + "u": 9, + "field_name": 8, + "command": 4, + "schwarz_popt": 3, + "callback": 7, + "model_module.__name__.split": 1, + "T0**4": 1, + "weiss_pconv": 1, + "class": 14, + "order_value": 2, + "@property": 1, + "sorted": 1, + "date_errors": 1, + ".globals": 1, + "self._start_time": 3, + "result": 2, + "default": 1, + "matt_phi.size": 1, + "op.curve_fit": 6, + "sys.exit": 1, + "epsilon_err": 2, + "reflection": 1, + "specified": 1, + "unique_error_message": 1, + "ssl_options": 3, + "self.connection.write": 1, + "self._finish_time": 4, + "pconv": 2, + "weiss_table": 2, + "self._state": 1, + "_message.Message": 1, + "n": 3, + "field.null": 1, + "new_class._meta.local_fields": 3, + "o2o_map": 3, + "*T_err": 4, + "collector": 1, + "_PERSON": 3, + "f1": 1, + "**6": 6, + "S": 4, + "db": 2, + "update_pk": 3, + "connection_header": 5, + "moves": 1, + "zip": 8, + "manager.using": 3, + "weiss_phi": 4, + ".values": 1, + "register_models": 2, + "__new__": 2, + "is_related_object": 3, + "alpha**2*R0": 5, + "*matt_popt": 1, + "scipy.optimize": 1, + "self.stream.close": 2, + "field.rel": 2, + "django.db.models.loading": 1, + "exclude.append": 1, + "table.align": 1, + "matt_table.add_row": 1, + "non_model_fields": 2, + "version": 6, + "kwargs": 9, + "django.utils.text": 1, + "pl.ylabel": 5, + "self.db": 1, + "original_base._meta.concrete_managers": 1, + "break": 2, + "self._on_headers": 1, + "serialized_end": 1, + "enum_type": 1, + "*beta*R0**2": 1, + "cls._meta": 3, + "string": 1, + "cls.__doc__": 3, + "pk": 5, + "update_fields.difference": 1, + "#parser.add_argument": 3, + "d**": 2, + "socket.gaierror": 1, + "logic": 1, + "base._meta.virtual_fields": 1, + "socket": 1, + "method_set_order": 2, + "popt": 5, + "in": 79, + "parent_class._meta.local_fields": 1, + "new_class._base_manager._copy_to_model": 1, + "x._meta.abstract": 2, + "validate_unique": 1, + "connection.stream": 1, + "id_list": 2, + "weiss_phi.size": 1, + ".next": 1, + "socket.getaddrinfo": 1, + "pk_val": 4, + "pk_name": 3, + "MultipleObjectsReturned": 2, + "e.args": 1, + "lookup_value": 3, + "extension_scope": 1, + "self._order": 1, + "field_label": 2, + "new_class._prepare": 1, + "key": 5, + "self.arguments": 2, + "a*x": 1, + "time": 1, + "new_class.__module__": 1, + "simple_class_factory": 2, + "obj": 4, + ".verbose_name": 3, + "schwarz_x": 3, + "field_names": 5, + "f.unique_for_year": 3, + "{": 25, + "data.decode": 1, + "self.connection.finish": 1, + "gitDirectories": 2, + "MethodViewType": 2, + "fields_iter": 4, + "isGitDirectory": 2, + "non_pks": 5, + "table": 2, + "min": 10, + "handle_stream": 1, + "serialized_start": 1, + "enum_types": 1, + "ssl": 2, + "self._request.headers": 1, + ".__new__": 1, + "self._header_callback": 3, + "self.stream.writing": 2, + "DatabaseError": 3, + "*": 33, + "with_statement": 1, + "subdirectories": 3, + "marker": 4, + "errors.setdefault": 3, + "matt": 13, + "field.verbose_name": 1, + "glanz_phi": 4, + "self.method": 1, + "TCPServer.__init__": 1, + "DeferredAttribute": 3, + "############################################": 2, + "uri": 5, + "t": 8, + "date.day": 1, + "_on_write_complete": 1, + "field.strip": 1, + "raise": 22, + "has_default_value": 1, + "cls.__module__": 1, + "prettytable": 1, + "data.find": 1, + "validators.EMPTY_VALUES": 1, + "metavar": 1, + "_reflection": 1, + "base._meta.abstract_managers": 1, + "R_err": 2, + "schwarz_phi.size": 1, + "pl.xlabel": 5, + "__reduce__": 1, + "serialized_pb": 1, + "#": 13, + "T_err": 7, + "self.DoesNotExist": 1, + "return": 57, + "rv": 2, + "django.db.models.fields.related": 1, + "None": 86, + "cls.get_previous_in_order": 1, + "arguments": 2, + "self._perform_date_checks": 1, + "self._request.headers.get": 2, + "new_class._default_manager._copy_to_model": 1, + "protocol": 4, + "self._request.arguments": 1, + "signals.pre_init.send": 1, + "m": 3, + "phif": 7, + "methods": 5, + "request_callback": 4, + "R": 1, + "matt_phi": 4, + "it": 1, + "socket.EAI_NONAME": 1, + "os.system": 1, + "fields_with_class.append": 1, + "T0": 1, + "tornado.escape": 1, + "len": 9, + "new_class._meta.concrete_model": 2, + "self._meta.get_field": 1, + "field.get_default": 3, + "other._get_pk_val": 1, + "self._request.files": 1, + "table.add_row": 1, + "Imported": 1, + "validators": 1, + "kwargs.pop": 6, + "*beta*R0*T0": 2, + "capfirst": 6, + "tornado.util": 1, + "getSubdirectories": 2, + "ValidationError": 8, + "self._meta.local_fields": 1, + "glanz_phi.size": 1, + "new_class": 9, + "f": 19, + "order_name": 4, + "self.adding": 1, + "opts.get_field": 4, + "order": 5, + "boltzmann": 12, + "ordered_obj.objects.filter": 2, + "fields_with_class": 2, + "description": 1, + "alpha**2": 1, + "self.__class__.__name__": 3, + "enumerate": 1, + "pluggable": 1, + "tornado.netutil": 1, + "matt_pconv": 1, + "offset": 13, + "os.path.isdir": 1, + "date.month": 1, + "pl.savefig": 5, + "cookies": 1, + "order_field.name": 1, + "_descriptor.FileDescriptor": 1, + "True": 20, + "parents": 8, + "MethodView": 1, + "_set_pk_val": 2, + "base_meta.get_latest_by": 1, + "self._meta.object_name": 1, + "absolute_import": 1, + "method": 5, + "qs": 6, + "phi_err": 3, + "linestyle": 8, + "iostream": 1, + "using": 30, + "_": 5, + "base_managers": 2, + "**kwargs": 9, + "django.conf": 1, + "U2": 2, + "base": 13, + "tuple": 3, + "socket.AF_INET6": 1, + "self._cookies": 3, + "new_class._meta.app_label": 3, + "if": 145, + "sys": 2, + "subclass_exception": 3, + "socket.AF_INET": 2, + "_BadRequestException": 5, + "prepare_database_save": 1, + "_prepare": 1, + "django.db.models.options": 1, + "f1**2": 1, + "U_err/S": 4, + "collector.collect": 1, + "bytes_type": 2, + ")": 730, + "message_type": 1, + "self.__dict__": 1, + "list": 1, + "transaction.commit_unless_managed": 2, + "x.MultipleObjectsReturned": 1, + "new_class._meta.parents.update": 1, + "views": 1, + "abstract": 3, + "rel_val": 4, + "field": 32, + "date_errors.items": 1, + "HTTPServer": 1, + "_perform_date_checks": 1, + "tornado": 3, + "param": 3, + "self._perform_unique_checks": 1, + "data": 22, + "f.clean": 1, + "_message": 1, + "s": 1, + "parser": 1, "int": 1, - "Set": 1, - "<String>": 1, - "categories": 1 + "_order": 1, + "x.size": 2, + "fields": 12, + "self._request_finished": 4, + "field.error_messages": 1, + "try": 17, + "parser.parse_args": 1, + "_get_next_or_previous_by_FIELD": 1, + "handle.": 1, + "self.stream.socket": 1, + "*kwargs": 1, + "T**4": 1, + "request.method.lower": 1, + "self._default_manager.values": 1, + "setattr": 14, + "weiss_table.add_row": 1, + "pl.legend": 5, + "bool": 2, + "super_new": 3, + "parent._meta.fields": 1, + "cls.__name__.lower": 2, + "sep": 2, + "self._on_request_body": 1, + "instantiating": 1, + "self.address": 3, + "register": 1, + "U_err": 7, + "methods.add": 1, + "content_length": 6, + "opts._prepare": 1, + "self._request": 7, + "view.__doc__": 1, + "cls.__name__": 1, + "cls._get_next_or_previous_in_order": 2, + "pl.plot": 9, + "np.ones": 11, + "self._meta.pk.name": 1, + "self.remote_ip": 4, + "lookup_kwargs": 8, + "httputil.parse_multipart_form_data": 1, + "self.stream.write": 2, + "chunk": 5, + "base.__name__": 2, + "weiss_y": 2, + "glanz": 13, + "module": 6, + ".extend": 2, + "view.methods": 1, + "parent._meta.pk.attname": 2, + "._update": 1, + "Q": 3, + "is": 29, + "utf8": 2, + "remote_ip": 8, + "division": 1, + "message": 1, + "f.primary_key": 2, + "self._meta.parents.keys": 2, + "nargs": 1, + "attrs.pop": 2, + "parse_qs_bytes": 3, + "parent_fields": 3, + "index": 1, + "R0": 6, + "weiss": 13, + "self.headers.get": 5, + "FieldDoesNotExist": 2, + "assert": 7, + "f2**2": 1, + "xerr": 6, + "raw": 9, + "start_line.split": 1, + "iostream.SSLIOStream": 1, + "iter": 1, + "T0_err": 2, + "ObjectDoesNotExist": 2, + "_perform_unique_checks": 1, + "_get_FIELD_display": 1, + "opts.module_name": 1, + "self.stream.read_bytes": 1, + "headers.get": 2, + "new_class._meta.local_many_to_many": 2, + "mgr_name": 3, + "field_labels": 4, + ".filter": 7, + "matt_table": 2, + "matt_pconv.diagonal": 2, + "update_wrapper": 2, + "*args": 4, + "e": 13, + "print": 39, + "self.__class__.__dict__.get": 2, + "directories": 1, + "TypeError": 4, + "httputil": 1, + "body": 2, + "time.time": 3, + "get_absolute_url": 2, + "decorate": 2, + "return_id": 1, + "/": 23, + "self.__class__._default_manager.using": 1, + "self._meta.pk.attname": 2, + "settings": 1, + "settings.ABSOLUTE_URL_OVERRIDES.get": 1, + "value.contribute_to_class": 1, + "self._get_unique_checks": 1, + "self.__eq__": 1, + "way": 1, + "new_class._meta.virtual_fields": 1, + "Model": 2, + "meta.order_with_respect_to": 2, + "pl.clf": 5, + "y": 10, + "native_str": 4, + "AttributeError": 1, + "schwarz_pconv.diagonal": 2, + "place": 1, + "res": 2, + "self._finish_request": 2, + "finish": 2, + "The": 1, + "However": 1, + "U1": 3, + "self.clean_fields": 1, + "descriptor_pb2": 1, + "f.unique": 1, + "self.connection": 1, + "DESCRIPTOR": 3, + "stack_context": 1, + "request_time": 1, + "django.db.models.deletion": 1, + "kwargs.keys": 2, + "record_exists": 5, + "parent._meta.abstract": 1, + "(": 719, + "git": 1, + "self.body": 1, + "opts.verbose_name": 1, + "base_managers.sort": 1, + "self._write_callback": 5, + "cls.add_to_class": 1, + "parent_link": 1, + "parts": 1, + "Python": 1, + "content_type.split": 1, + "opts.fields": 1, + "KeyError": 3, + "meta.parents.items": 1, + "self.version": 2, + "r": 3, + "base_meta.abstract": 1, + "parent._meta": 1, + "of": 3, + "auto_created": 1, + "self.stream.max_buffer_size": 1, + "name": 39, + "<": 1, + "method_get_order": 2, + "meta.proxy": 5, + "base_meta.ordering": 1, + "opts": 5, + "model_name": 3, + "default_value": 1, + "stream": 4, + "func": 2, + "continue": 10, + "view.__name__": 1, + "value": 9, + "errors.keys": 1, + "self.query": 2, + "AutoField": 2, + "force_update": 10, + "bases": 6, + "lookup_type": 7, + "ManyToOneRel": 3, + "get_ssl_certificate": 1, + "lambda": 1, + "UnicodeEncodeError": 1, + "k": 4, + "weiss_x": 3, + "org": 3, + "supports_http_1_1": 1, + "meta.local_fields": 2, + "pl.errorbar": 8, + "_descriptor.Descriptor": 1, + "__name__": 2, + "self._request.arguments.setdefault": 1, + "self._valid_ip": 1, + "hasattr": 11, + "cpp_type": 1, + ".update": 1, + "values": 13, + "full_clean": 1, + "self.no_keep_alive": 4, + ".size": 4, + ".append": 2, + "opts.app_label": 1, + "is_next": 9, + "self._default_manager.filter": 1, + "arguments.iteritems": 2, + ".format": 11, + "date.year": 1, + "type.__new__": 1, + "self.xheaders": 3, + "the": 5, + "np.genfromtxt": 8, + "number": 1, + "*beta*R": 5, + "schwarz_pconv": 1, + "np.mean": 1, + "d": 5, + "ordered_obj._meta.pk.name": 1, + "new_class._base_manager": 2, + "parent_class": 4, + "self._request.method": 2, + "alpha": 2, + "os": 1, + "write": 2, + "IndexError": 2, + "matplotlib.pyplot": 1, + "model": 8, + "Options": 2, + "date_error_message": 1, + "isinstance": 11, + "model_class._meta": 2, + ".order_by": 2, + "*np.sqrt": 6, + "beta": 1, + "matt_popt": 3, + "can": 1, + ".": 1, + "dy_err": 2, + "weiss_popt": 3, + "signals.post_save.send": 1, + "django.utils.encoding": 1, + "smart_str": 3, + "opts.order_with_respect_to.rel.to": 1, + "schwarz": 13, + "uri.partition": 1, + "ModelState": 2, + "self.pk": 6, + "self.connection.stream.socket.getpeercert": 1, + "*beta*T0": 1, + "unique_for": 9, + "attr_name": 3, + "__metaclass__": 3, + "x": 22, + "for": 59, + "self._request.body": 2, + "]": 152, + "self.__class__": 10, + "glanz_table.add_row": 1, + "self.stream.closed": 1, + "which": 1, + "new_manager": 2, + "model_unpickle": 2, + "signals": 1, + "is_extension": 1, + "row": 10, + "glanz_pconv.diagonal": 2, + "view": 2, + "content_type": 1, + "U1/I1**2": 1, + "self.date_error_message": 1, + "canonical": 1, + "self.files": 1, + "ordered_obj": 2, + "main": 4, + "django.db.models.query": 1, + "dict": 3, + "parent": 5, + "manager": 3, + "loc": 5, + "yerr": 8, + "unicode": 8, + "new_fields": 2, + "meta.pk.attname": 2, + "q": 4, + "self.stream": 1, + "getattr": 30, + "Empty": 1, + "f.unique_for_date": 3, + "save_base.alters_data": 1, + "V": 12, + "__repr__": 2, + "str": 2, + "NON_FIELD_ERRORS": 3, + "glanz_pconv": 1, + "np": 1, + "new_class._meta.proxy": 1, + "view.__module__": 1, + "HTTPRequest": 2, + "field.rel.to": 2 + }, + "Common Lisp": { + "compile": 1, + "defmacro": 1, + "optional": 1, + "eval": 1, + "body": 1, + "foo": 2, + "Multi": 1, + "key": 1, + "when": 1, + "Header": 1, + "Inline": 1, + "load": 1, + "line": 2, + "add": 1, + "toplevel": 2, + "execute": 1, + "After": 1, + "comment.": 4, + "or": 1, + "*foo*": 1, + "if": 1, + "ignore": 1, + "package": 1, + "in": 1, + "lisp": 1, + "b": 1, + "|": 2, + "#": 2, + "+": 2, + "declare": 1, + "z": 2, + "y": 2, + "&": 3, + "x": 5, + "defun": 1, + "defvar": 1, + ")": 14, + "(": 14, + "*": 2, + "-": 10, + ";": 10 }, "YAML": { - "gem": 1, - "-": 16, - "local": 1, - "gen": 1, - "rdoc": 2, - "run": 1, - "tests": 1, - "inline": 1, - "source": 1, - "line": 1, - "numbers": 1, + "/home/gavin/.rubygems": 1, "gempath": 1, + "gen": 1, + "gem": 1, + "run": 1, + "line": 1, + "source": 1, + "tests": 1, + "local": 1, "/usr/local/rubygems": 1, - "/home/gavin/.rubygems": 1 + "inline": 1, + "rdoc": 2, + "numbers": 1, + "-": 16 + }, + "Pascal": { + "True": 1, + "Application.CreateForm": 1, + "Unit2": 1, + "gmail": 1, + "Application.Initialize": 1, + "begin": 1, + "Form2": 2, + "Forms": 1, + "uses": 1, + "program": 1, + "*.res": 1, + "end.": 1, + "TForm2": 1, + "in": 1, + "Application.Run": 1, + ")": 1, + "(": 1, + "Application.MainFormOnTaskbar": 1, + "R": 1, + "}": 2, + "{": 2, + ";": 6 + }, + "INI": { + "end_of_line": 1, + "true": 3, + "root": 1, + "editorconfig.org": 1, + "name": 1, + "charset": 1, + "josh@github.com": 1, + "insert_final_newline": 1, + "space": 1, + "user": 1, + "indent_style": 1, + "utf": 1, + "lf": 1, + "email": 1, + "Josh": 1, + "trim_trailing_whitespace": 1, + "-": 1, + "indent_size": 1, + "*": 1, + ";": 1, + "Peek": 1, + "]": 2, + "[": 2 + }, + "OpenCL": { + "*x": 1, + "#define": 2, + "for": 1, + "foo": 1, + "__kernel": 1, + "p1": 3, + "FOO": 1, + "foo_t": 3, + "FFTW_ESTIMATE": 1, + "FFTW_FORWARD": 1, + "fftwf_plan_dft_1d": 1, + "fftwf_plan": 1, + "run_fftw": 1, + "fftwf_execute": 1, + "realTime": 2, + "barrier": 1, + "ZERO": 3, + "return": 1, + "fftwf_destroy_plan": 1, + "nops": 3, + "op": 3, + "int": 3, + "__local": 1, + "__global": 1, + "#endif": 1, + "#ifndef": 1, + "fftwf_complex": 2, + "CLK_LOCAL_MEM_FENCE": 1, + "uint": 1, + "cl": 2, + "if": 1, + "const": 4, + "void": 1, + "typedef": 1, + "/": 1, + "-": 1, + "<": 1, + "t": 4, + "double": 3, + "}": 4, + "{": 4, + "n": 4, + "y": 4, + "*": 5, + "+": 4, + "x": 5, + ")": 18, + "(": 18, + ";": 12, + "float": 3 + }, + "CoffeeScript": { + "@restart": 1, + "nack.createPool": 1, + "signs": 1, + "starting": 1, + "unless": 19, + "NS_C_IN": 5, + "remainder": 1, + "re.match": 1, + "doc": 11, + "path": 3, + "escaped": 1, + "doubles": 1, + "///g": 1, + "res.header.rcode": 1, + "console.log": 1, + "comment.length": 1, + "@loadEnvironment": 1, + "@quitCallbacks.push": 1, + "fs.readFile": 1, + "@pool.quit": 1, + "@pool": 2, + "script.src": 2, + "leading": 1, + "str": 1, + "/": 44, + "@stringToken": 1, + "@on": 1, + ".join": 2, + "binaryLiteral": 2, + "createSOA": 2, + "id.reserved": 1, + "root": 1, + "NOT_REGEX.concat": 1, + "while": 4, + "vm.runInThisContext": 1, + "alert": 4, + "CoffeeScript.require": 1, + "code.replace": 1, + "exports.compile": 1, + "runScripts": 3, + "BOOL": 1, + "Hello": 1, + "question.type": 2, + "-": 107, + "@labels.length": 1, + "@rootAddress": 2, + "question": 5, + "coffees": 2, + "package": 1, + "default": 1, + "code.": 1, + "@error": 10, + "NS_T_NS": 2, + "tokens.": 1, + "basename": 2, + "up": 1, + "encode": 1, + "join": 8, + "tom.move": 1, + "+": 31, + "MULTILINER": 2, + "pairing": 1, + "@configuration.env": 1, + "@name": 2, + "INDEXABLE": 2, + "@escapeLines": 1, + "path.dirname": 2, + "@sanitizeHeredoc": 2, + "options.bare": 2, + "do": 2, + "@extract": 1, + "@terminate": 2, + "is": 36, + "Rewriter": 2, + ")": 196, + "string.length": 1, + "value.length": 2, + "parser": 1, + "COMMENT": 2, + "@length": 3, + "size": 1, + "whitespace": 1, + "void": 1, + "/E/.test": 1, + "COFFEE_KEYWORDS": 1, + "@logger.info": 1, + "indent.length": 1, + "lex": 1, + "tokens": 5, + "when": 16, + "s*#": 1, + "@extractSubdomain": 1, + "}": 34, + "ip.join": 1, + "@for": 2, + "JSTOKEN.exec": 1, + "subdomain": 10, + "@indebt": 1, + "Script": 2, + "@rvmBoilerplate": 1, + "%": 1, + "import": 1, + "SHIFT": 3, + "options": 16, + "@ends.pop": 1, + "path.extname": 1, + "subdomain.getAddress": 1, + "levels.": 1, + "runners": 1, + "heredocToken": 1, + "parser.lexer": 1, + "s.type": 1, + "HEREDOC_INDENT.exec": 1, + "global": 3, + "document.getElementsByTagName": 1, + "##": 1, + "{": 31, + "._nodeModulePaths": 1, + "herecomment": 4, + "Animal": 3, + "let": 2, + "#": 35, + "setInput": 1, + "err": 20, + "expire": 2, + "process.argv": 1, + "ip.split": 1, + "contents": 2, + "anything": 1, + "arguments": 1, + "missing": 1, + "@loadRvmEnvironment": 1, + "attempt.length": 1, + ".spaced": 1, + "require.extensions": 3, + "@lineToken": 1, + "STRING": 2, + "commentToken": 1, + "Date": 1, + "no": 3, + "readyCallback": 2, + "async": 1, + "w": 2, + "SIMPLESTR": 1, + "__bind": 1, + "||": 3, + "@seenFor": 4, + "@labels.slice": 1, + "res.send": 1, + "throw": 3, + "@ready": 3, + "NOT_REGEX": 2, + "vm": 1, + ".replace": 3, + "@readyCallbacks.push": 1, + "window": 1, + "CALLABLE.concat": 1, + "#.*": 1, + "sandbox": 8, + "compile": 5, + "number": 13, + "@outdebt": 1, + "forcedIdentifier": 4, + "eval": 2, + "str.charAt": 1, + "@yytext": 1, + "level.": 3, + "race": 1, + "dnsserver": 1, + "@restartIfNecessary": 1, + "balancedString": 1, + "@tag": 3, + "INVERSES": 2, + "res": 3, + "sandbox.__filename": 3, + "try": 3, + "mainModule.moduleCache": 1, + "@setPoolRunOnceFlag": 1, + "@configuration.timeout": 1, + "@queryRestartFile": 2, + "Snake": 2, + ".type": 1, + "s": 10, + "word": 1, + "tokens.push": 1, + "prev": 17, + "cube": 1, + "match": 23, + "CoffeeScript.load": 2, + "identifierToken": 1, + "the": 4, + "@firstHost": 1, + "req.question": 1, + "req": 4, + "options.modulename": 1, + "parsed": 1, + "fs": 2, + "coffees.length": 1, + "WHITESPACE": 1, + "str.length": 1, + "value...": 1, + "or": 22, + "res.addRR": 2, + "under": 1, + "restart": 1, + "sandbox.module": 2, + "sandbox.require": 2, + "index": 4, + ".*": 1, + "zero": 1, + "*/": 2, + "octalEsc": 1, + "o": 4, + "@heredocToken": 1, + "sandbox.global": 1, + "@statCallbacks.length": 1, + "private": 1, + "body.replace": 1, + "TRAILING_SPACES": 2, + "quote": 5, + "mainModule": 1, + "delete": 1, + "THROW": 1, + "yes": 5, + "IDENTIFIER.exec": 1, + "loadEnvironment": 1, + "XMLHttpRequest": 1, + "CoffeeScript": 1, + "comments": 1, + "vm.Script": 1, + "on": 3, + "@regexToken": 1, + "HEREDOC_INDENT": 1, + "elvis": 1, + "@value": 1, + "@root": 8, + "doc.replace": 2, + "xFF": 1, + "heredoc": 4, + "@state": 11, + "@configuration.getLogger": 1, + "pause": 2, + "xhr.readyState": 1, + "body.indexOf": 1, + "exports.encode": 1, + "k": 4, + "for": 14, + "id.toUpperCase": 1, + "@mtime": 5, + "//": 1, + "other": 1, + "var": 1, + "continue": 3, + "WHITESPACE.test": 1, + "i..": 1, + "sam.move": 1, + "own": 2, + "/.test": 4, + "@loadScriptEnvironment": 1, + "loadScriptEnvironment": 1, + "stats": 1, + "equals": 1, + "isNSRequest": 2, + "Module._resolveFilename": 1, + "o.bare": 1, + "@code": 1, + "_module.filename": 1, + "@balancedString": 1, + "print": 1, + "i": 8, + "alwaysRestart": 2, + "with": 1, + "math.cube": 1, + "prev.spaced": 3, + "extractSubdomain": 1, + "Subdomain.extract": 1, + "exports.Lexer": 1, + "@configuration.dstPort.toString": 1, + "@quitCallbacks": 3, + "module.exports": 1, + "nack": 1, + "HEREGEX": 1, + "tokens.length": 1, + "address": 4, + "d*": 1, + "<": 6, + "quit": 1, + "xhr.onreadystatechange": 1, + "case": 1, + "exports.createServer": 1, + "///": 12, + "here": 3, + "upcomingInput": 1, + "vm.runInContext": 1, + "not": 4, + "__hasProp": 1, + "opts": 1, + "token": 1, + "r/g": 1, + "resume": 2, + "heregex": 1, + "of": 7, + "@indent": 3, + ".isEmpty": 1, + "heredoc.charAt": 1, + "code": 20, + "fill": 1, + "typeof": 2, + "starts": 1, + "NS_T_A": 3, + "makeString": 1, + "statCallback": 2, + "callback": 35, + "HEREDOC_ILLEGAL": 1, + "process.cwd": 1, + "Stream": 1, + "lexer.tokenize": 3, + "@constructor.rvmBoilerplate": 1, + "domain.toLowerCase": 1, + "comment": 2, + "value.replace": 2, + "line": 6, + "The": 7, + "@literalToken": 1, + "ready": 1, + "reserved": 1, + "@handleRequest": 1, + "_require.paths": 1, + "queryRestartFile": 1, + "resolve": 2, + "__indexOf": 1, + "&&": 1, + "false": 4, + "exports.Subdomain": 1, + "a": 2, + "id.length": 1, + "COFFEE_ALIASES": 1, + "every": 1, + "access": 1, + ".toString": 3, + "loadRvmEnvironment": 1, + "meters": 2, + "IPAddressSubdomain.pattern.test": 1, + "options.sandbox": 4, + "name.toLowerCase": 1, + "libexecPath": 1, + "COMPARE": 3, + "domain": 6, + "cubes": 1, + "@chunk": 9, + "@logger.debug": 2, + "move": 3, + "addEventListener": 1, + "scripts": 2, + "loop": 1, + "LOGIC": 3, + "class": 11, + "async.reduce": 1, + "@readyCallbacks": 3, + "assign": 1, + "stack.length": 1, + "stringToken": 1, + "@identifierToken": 1, + "exports.VERSION": 1, + "SERVER_PORT": 1, + "fs.readFileSync": 1, + "Matches": 1, + "string.indexOf": 1, + "]": 134, + "return": 29, + "getAddress": 3, + "@logger": 1, + "break": 1, + "consumes": 1, + "exports.helpers": 2, + "_module": 3, + "colon": 3, + "@logger.error": 3, + "@initialize": 2, + "script.innerHTML": 1, + "LINE_CONTINUER": 1, + "@indents": 1, + "@address": 2, + "contents.indexOf": 1, + "[": 134, + "minimum": 2, + "LINE_BREAK": 2, + "req.proxyMetaVariables": 1, + "native": 1, + "HEREGEX.exec": 1, + "NUMBER.exec": 1, + "all": 1, + "runners...": 1, + "s*": 1, + "body": 2, + ".": 13, + "sandbox.__dirname": 1, + "@whitespaceToken": 1, + "SIMPLESTR.exec": 1, + "exports.run": 1, + "tom": 1, + "protected": 1, + "export": 1, + "HEREDOC_ILLEGAL.test": 1, + "quitCallback": 2, + "doc.indexOf": 1, + "@ends.push": 1, + "COFFEE_ALIAS_MAP": 1, + "null": 15, + "name": 5, + "Math.sqrt": 1, + "boilerplate": 2, + ".compile": 1, + "question.class": 2, + "PATTERN": 1, + "Object.getOwnPropertyNames": 1, + "isnt": 7, + "JS_KEYWORDS": 1, + "fs.writeFile": 1, + "@configuration.rvmPath": 1, + "imgy": 2, + "interface": 1, + "implements": 1, + "tok": 5, + "this": 6, + "Lexer": 3, + "handle": 1, + "setPoolRunOnceFlag": 1, + "bufferLines": 3, + "right": 1, + "OUTDENT": 1, + "@yylineno": 1, + "String": 1, + "HEREDOC.exec": 1, + "exports.decode": 1, + "then": 24, + "input.length": 1, + "next": 3, + "Script.createContext": 2, + "*": 21, + "source": 5, + "RELATION": 3, + "byte": 2, + "RESERVED": 3, + "serial": 2, + "require.registerExtension": 2, + "math": 1, + "extends": 6, + "name.slice": 2, + "@logger.warning": 1, + "tagParameters": 1, + "sanitizeHeredoc": 1, + "regexToken": 1, + "Subdomain": 4, + "@interpolateString": 2, + "merge": 1, + "isEmpty": 1, + "ensure": 1, + "IPAddressSubdomain": 2, + "(": 193, + "tokenize": 1, + "S": 10, + "interpolateString": 1, + "xhr.responseText": 1, + "form": 1, + "question.name": 3, + "stats.mtime.getTime": 1, + "Horse": 2, + "regex": 5, + "octalLiteral": 2, + "code.trim": 1, + "indexOf": 1, + "@commentToken": 1, + "ip": 2, + "request": 2, + "&": 4, + "@pool.stdout": 1, + "match.length": 1, + "flags": 2, + "num": 2, + "Module._load": 1, + "@pool.runOnce": 1, + "RackApplication": 1, + "xhr": 2, + "@pair": 1, + "|": 21, + "new": 12, + "JSTOKEN": 1, + "options.header": 1, + "in": 32, + "continueCount": 3, + "else": 53, + "mainModule.paths": 1, + "refresh": 2, + "winner": 2, + "@numberToken": 1, + "rname": 2, + "@outdentToken": 1, + "isARequest": 2, + "true": 8, + "offset": 4, + "catch": 2, + "@configuration.workers": 1, + "env": 18, + "@heregexToken": 1, + "lastMtime": 2, + "fs.stat": 1, + "ip.push": 1, + "PATTERN.test": 1, + "parser.parse": 3, + "thing": 1, + "heregex.length": 1, + "@token": 12, + "retry": 2, + "x": 6, + "EncodedSubdomain": 2, + "last": 3, + "domain.length": 1, + "powrc": 3, + ".trim": 1, + "@configuration": 1, + "BOX": 1, + "@tokens.pop": 1, + "/g": 3, + "js": 5, + "@domain": 3, + "@pattern": 2, + "name.length": 1, + "scriptExists": 2, + "OPERATOR": 1, + "switch": 7, + "v": 4, + "x/.test": 1, + "parseInt": 5, + ".POW_TIMEOUT": 1, + "string": 9, + "@pos": 2, + "mname": 2, + ".POW_WORKERS": 1, + "disallow": 1, + "require": 21, + "options.filename": 5, + "@pool.stderr": 1, + "REGEX": 1, + "range": 1, + "MATH": 3, + "..1": 1, + "sandbox.root": 1, + "exports.Server": 1, + "xhr.send": 1, + "compound": 1, + "//g": 1, + "<<": 1, + "NS_T_SOA": 2, + "if": 102, + "_module.paths": 1, + "before": 2, + "@statCallbacks.push": 1, + "xhr.overrideMimeType": 1, + "compare": 1, + "debugger": 1, + "re": 1, + "square": 4, + "at": 2, + ".constructor": 1, + "jsToken": 1, + "_require.resolve": 1, + "require.main": 1, + "r": 4, + "@closeIndentation": 1, + "attempt": 2, + "COMPOUND_ASSIGN": 2, + "@tokens.push": 1, + "id": 16, + "list": 2, + "@pool.on": 2, + "undefined": 1, + "finally": 2, + "lexer": 1, + "soak": 1, + "function": 2, + "outdentation": 1, + "opts.line": 1, + "process": 2, + "execute": 3, + "constructor": 6, + "module": 1, + "number.length": 1, + "rvm": 1, + "static": 1, + "exports.tokens": 1, + ".getTime": 1, + "enum": 1, + "by": 1, + "n": 16, + "mainModule.filename": 4, + "exports.nodes": 1, + "indent": 7, + "@statCallbacks": 3, + "header": 1, + "length": 4, + "window.ActiveXObject": 1, + "__slice": 1, + "spaced": 1, + "lexedLength": 2, + "@jsToken": 1, + "splat": 1, + "input": 1, + "JS_FORBIDDEN": 1, + "Module._nodeModulePaths": 1, + "_require": 2, + "attachEvent": 1, + "xhr.open": 1, + "shift": 2, + "<=>": 1, + "and": 20, + "CoffeeScript.run": 3, + "n/g": 1, + "character": 1, + "__extends": 1, + "script.length": 1, + "parser.yy": 1, + "z0": 2, + "logic": 1, + "stack.push": 1, + "over": 1, + "script": 7, + "@chunk.charAt": 3, + "writeRvmBoilerplate": 1, + "Error": 1, + "MULTI_DENT": 1, + "HEREGEX_OMIT": 3, + "module._compile": 1, + "fs.realpathSync": 2, + "exports.RESERVED": 1, + "line.": 1, + "/.exec": 2, + "content": 4, + "NS_RCODE_NXDOMAIN": 2, + "numberToken": 1, + "@pool.proxy": 1, + "idle": 1, + "rvmExists": 2, + "sam": 1, + "window.addEventListener": 1, + "end": 2, + "rvmrcExists": 2, + "sourceScriptEnv": 3, + ".split": 1, + "@tokens": 7, + "url": 2, + "heregexToken": 1, + "CoffeeScript.eval": 1, + "const": 1, + "filename": 6, + "instanceof": 2, + "dnsserver.createSOA": 1, + "super": 4, + "public": 1, + "REGEX.exec": 1, + "NOT_SPACED_REGEX": 2, + "current": 5, + "@labels": 2, + "dnsserver.Server": 1, + ".rewrite": 1, + "xhr.status": 1, + "CODE": 1, + "letter": 1, + "decode": 2, + "d": 2, + "opposite": 2, + "count": 5, + "mtimeChanged": 2, + "restartIfNecessary": 1, + "n/": 1, + "value": 25, + "terminate": 1, + "until": 1, + "NS_T_CNAME": 1, + "Array": 1, + "opts.rewrite": 1, + "EncodedSubdomain.pattern.test": 1, + "mainModule._compile": 2, + "exists": 5, + "name.capitalize": 1, + "UNARY": 4, + "b": 1, + "Server": 2, + "@ends": 1, + "Function": 1, + "CoffeeScript.compile": 2, + "yield": 1, + "closeIndentation": 1, + "exports.eval": 1, + "handleRequest": 1, + "initialize": 1, + "EXTENDS": 1, + "Module": 2, + "@subdomain": 1, + "off": 1, + "@soa": 2, + "sandbox.GLOBAL": 1, + "tag": 33, + "@quit": 3, + "stack.pop": 2, + "CALLABLE": 2, + "stack": 4, + "@line": 4, + "indentation": 3, + "###": 3, + "@chunk.match": 1, + "err.message": 2, + "compact": 1 + }, + "Squirrel": { + "Player": 2, + "type": 2, + "print": 2, + "val": 2, + "array": 3, + "name": 2, + "etype": 2, + "typeof": 1, + "extends": 1, + "constructor": 2, + "Entity": 3, + "foreach": 1, + "from": 1, + "newplayer": 1, + "/////////////////////////////////////////////": 1, + "table": 1, + "local": 3, + "//example": 1, + "//www.squirrel": 1, + "http": 1, + "newplayer.MoveTo": 1, + "newz": 2, + "newy": 2, + "newx": 2, + "lang.org/#documentation": 1, + "DoDomething": 1, + "in": 1, + "subtable": 1, + "base.constructor": 1, + "MoveTo": 1, + "function": 2, + "null": 2, + "z": 2, + "y": 2, + "x": 2, + "entityname": 4, + "class": 2, + ")": 10, + "i": 1, + "(": 10, + ";": 15, + "b": 1, + "+": 2, + "}": 10, + "]": 3, + "[": 3, + "a": 2, + "{": 10, + "-": 1 + }, + "OpenEdge ABL": { + "COPY": 1, + "n": 13, + "email.SendEmailAlgorithm": 1, + "BASE64": 1, + "FINAL": 1, + "CHARACTER": 9, + "ttSenders": 2, + "Receipt": 1, + "Personal": 1, + "AVAILABLE": 2, + "BYTES": 2, + "cHostname": 1, + "LOGICAL": 1, + "email.SendEmailSocket": 1, + "objSendEmailAlg": 2, + "VARIABLE": 12, + "#@": 1, + "readable": 3, + "OBJECT": 2, + "CHARACTER.": 1, + "LONGCHAR": 4, + "EXTENT": 1, + "@#": 1, + "To": 8, + "Bcc": 2, + "High": 1, + "NO": 13, + "lcPreBase64Data": 4, + "ttToRecipients": 1, + "boundary": 1, + "Expiry": 2, + "Mime": 1, + "DO": 2, + "INTERFACE.": 1, + "but": 3, + "send": 1, + "vlength": 5, + "MODULO": 1, + "Content": 10, + "Notification": 1, + "BY": 1, + "LENGTH": 3, + "INTEGER": 6, + "METHOD.": 6, + "text/plain": 2, + "base64": 2, + "INTERFACE": 1, + "CLOSE.": 1, + "is": 3, + "WIN": 1, + "filename": 2, + "Company": 2, + "Encoding": 4, + "normal": 1, + "not": 3, + "DEFINE": 16, + "charset": 2, + ".": 14, + "ttDeliveryReceiptRecipients": 1, + "MTIME": 1, + "TZ": 2, + "CLASS.": 2, + "Cannot": 3, + "+": 21, + "ttAttachments.cFileName": 2, + "ALERT": 1, + "ECHO.": 1, + "TRUNCATE": 2, + "(": 44, + "non": 1, + "PROCEDURE.": 2, + "ENCODE": 1, + "iplcNonEncodedData": 2, + "ABLTimeZoneToString": 2, + "%": 2, + "Subject": 2, + "Priority": 2, + "Cc": 2, + "Progress.Lang.*.": 3, + "ReadSocketResponse": 1, + "THEN": 2, + "UNFORMATTED": 1, + "mptrPostBase64Data": 3, + "attachment": 2, + "i": 3, + "stream": 1, + "filesystem": 3, + "CLASS": 2, + "pstring.": 1, + "ipdtDateTime": 2, + "PUBLIC": 6, + "cEmailAddress": 8, + "Private": 1, + "confidential": 2, + "FUNCTION": 1, + "lcPostBase64Data": 3, + "WRITE": 1, + "PROCEDURE": 2, + "FUNCTION.": 1, + "STATIC": 5, + ";": 5, + "Error": 3, + "Date": 4, + "cNewLine.": 1, + "vstatus": 1, + "SUBSTRING": 1, + "mptrPostBase64Data.": 1, + "DAY": 1, + "]": 2, + "multipart/mixed": 1, + "locate": 3, + "INPUT": 11, + "SCOPED": 1, + "from": 3, + "handleResponse": 1, + "PUT": 1, + "vbuffer": 9, + "<\">": 8, + "ttBCCRecipients": 1, + "objSendEmailAlgorithm": 1, + "/": 2, + "By": 1, + "Return": 1, + "v": 1, + "newState": 2, + "PARAMETER": 3, + "LOB": 1, + "ipdttzDateTime": 6, + "ABLDateTimeToEmail": 3, + "cMonthMap": 2, + "copying": 3, + "ttCCRecipients": 1, + "in": 3, + "Reply": 3, + "READ": 1, + "BOX.": 1, + "str": 3, + "INTEGER.": 1, + "FROM": 1, + "File": 3, + "the": 3, + ")": 44, + "getHostname": 1, + "vState": 2, + "email.Email": 2, + "&": 3, + "newState.": 1, + "vstate": 1, + "ASSIGN": 2, + "SET": 5, + "H": 1, + "Sensitivity": 2, + "._MIME_BOUNDARY_.": 1, + "IF": 2, + "TO": 2, + "QUOTES": 1, + "exists": 3, + "Importance": 3, + "RETURN": 7, + "urgent": 2, + "Transfer": 4, + "Low": 1, + "hostname": 1, + "CHR": 2, + "Disposition": 3, + "WIDGET": 2, + "application/octet": 1, + "MESSAGE": 2, + "SELF": 4, + "METHOD": 6, + "POOL": 2, + "bit": 2, + "VIEW": 1, + "GET": 3, + "lcPostBase64Data.": 1, + "MEMPTR": 2, + "email.Util": 1, + "BCC": 2, + "Version": 1, + "UNDO.": 12, + "MONTH": 1, + "lcReturnData.": 1, + "ipobjEmail": 1, + "THROUGH": 1, + "[": 2, + "INITIAL": 1, + "USING": 3, + "file": 6, + "pstring": 4, + "SIZE": 5, + "ABSOLUTE": 1, + "TIMEZONE": 1, + "YEAR": 1, + "STRING": 7, + "PRIVATE": 1, + "USE": 2, + "-": 73, + "END": 12, + "R": 3, + "ttReplyToRecipients": 1, + "RETURN.": 1, + "cHostname.": 2, + "RETURNS": 1, + "END.": 2, + "DATETIME": 3, + "CC": 2, + "AS": 21, + "*": 2, + "Type": 4, + "IMPORT": 1, + "ConvertDataToBase64": 1, + "ipiTimeZone": 3, + "ttReadReceiptRecipients": 1, + "THIS": 1, + "L": 1, + "sendEmail": 2, + "From": 4 + }, + "Visual Basic": { + "for": 1, + "machine": 1, + "Task": 1, + "REGISTER_SERVICE": 1, + "myRouterSeed": 1, + "GET_ROUTER_ID_REPLY": 1, + "found": 1, + "Then": 1, + "vbNone": 1, + "False": 1, + "Initialize": 1, + "Const": 9, + "myRouterIDsByMMTransportID": 1, + "hData": 1, + "Long": 10, + "tray": 1, + "New": 6, + "myAST_RButtonUp": 1, + "address.RouterID": 1, + "If": 3, + "Function": 5, + "epm": 1, + "make": 1, + "MF_SEPARATOR": 1, + "rights": 1, + "Attribute": 3, + "myAST.create": 1, + "oReceived": 2, + "Windows": 1, + "GET_ROUTER_ID": 1, + "cTP_AdvSysTray": 2, + "cTP_EasyPopupMenu": 1, + "lpString": 2, + "to": 1, + "VLMAddress": 1, + "message.toAddress.RouterID": 2, + "DataBindingBehavior": 1, + "Dictionary": 3, + "App.TaskVisible": 1, + "End": 7, + "menuItemSelected": 1, + "NotPersistable": 1, + "directoryEntryIDString": 2, + "myMMTransportIDsByRouterID.Exists": 1, + "ByVal": 6, + "Dim": 1, + "Alias": 3, + "Applications": 1, + "transport.send": 1, + "Lib": 3, + "apiGlobalAddAtom": 3, + "(": 14, + "MF_CHECKED": 1, + "myMouseEventsForm.hwnd": 3, + "As": 34, + "id": 1, + "myMMFileTransports_disconnecting": 1, + "VERSION": 1, + "MTSTransactionMode": 1, + "Single": 1, + "fMouseEventsForm": 2, + "myMachineID": 1, + "UNREGISTER_SERVICE_REPLY": 1, + "Manager": 1, + "create": 1, + "CLASS": 1, + "True": 1, + "just": 1, + "myClassName": 2, + "MultiUse": 1, + "Private": 25, + "list": 1, + "Explicit": 1, + "address": 1, + "moment": 1, + "Declare": 3, + "David": 1, + "c": 1, + "address.MachineID": 1, + "myDirectoryEntriesByIDString": 1, + "icon": 1, + "Release": 1, + "from": 1, + "Unload": 1, + "MMFileTransports": 1, + "address.AgentID": 1, + "BEGIN": 1, + "String": 13, + "MF_STRING": 3, + "myself": 1, + "/": 1, + "serviceType": 2, + "us": 1, + "in": 1, + "messageToBytes": 1, + "between": 1, + "route": 2, + "apiSetForegroundWindow": 1, + "the": 3, + ")": 14, + "shutdown": 1, + "myWindowName": 2, + "&": 7, + "transport": 1, + "Copyright": 1, + "myMMTransportIDsByRouterID": 2, + "myMouseEventsForm.icon": 1, + "TEN_MILLION": 1, + "Nothing": 2, + "myMMFileTransports": 2, + "reserved": 1, + "Sub": 7, + "remote": 1, + "myAST": 3, + "myAST.destroy": 1, + "UNREGISTER_SERVICE": 1, + "VLMessaging.VLMMMFileTransports": 1, + "hide": 1, + "message": 1, + "a": 1, + "Boolean": 1, + "epm.addMenuItem": 3, + "myMMFileTransports.VB_VarHelpID": 1, + "VLMessaging.VLMMMFileListener": 1, + "easily": 1, + "Option": 1, + "GET_SERVICES_REPLY": 1, + "WithEvents": 3, + "myAST.VB_VarHelpID": 1, + "GET_SERVICES": 1, + "-": 6, + "epm.addSubmenuItem": 2, + "apiSetProp": 4, + "All": 1, + "hwnd": 2, + "myMouseEventsForm": 5, + "REGISTER_SERVICE_REPLY": 1, + "Briant": 1, + "*************************************************************************************************************************************************************************************************************************************************": 2, + "Else": 1, + "Set": 5, + "myListener.VB_VarHelpID": 1, + "myListener": 1 + }, + "Awk": { + "sockets.": 1, + "data": 1, + "zero": 1, + "used": 8, + "kilobytes.": 7, + "received": 4, + "fragments": 1, + "Number": 4, + "kernels.": 1, + "X": 1, + "Percentage": 2, + "cpu": 1, + "transmitted": 4, + "socket": 1, + "cswch": 1, + "eth0": 1, + "{": 17, + "/": 2, + "values": 1, + "next": 1, + "]": 1, + "switches": 1, + "last4": 3, + "currently": 4, + "transfers": 1, + "proc/s": 1, + "cache": 1, + "into": 1, + "if": 14, + "kbmemfree": 1, + "Skip": 1, + "in": 11, + "mem": 1, + ")": 14, + "/all/": 1, + "write": 1, + "total": 1, + "UDP": 1, + "TCP": 1, + "shared": 1, + "Amount": 7, + "}": 17, + "read": 1, + "printf": 1, + "per": 14, + "totsck/": 1, + "space.": 1, + "swap": 3, + "account": 1, + "free": 2, + "packets": 4, + "second.": 8, + "This": 8, + "last6": 3, + "Always": 1, + "itself.": 1, + "is": 7, + "SHEBANG#!awk": 1, + "else": 4, + "second": 6, + "tps": 1, + "to": 1, + "#": 48, + "the": 12, + "number": 9, + "FILENAME": 35, + "last3": 3, + "with": 1, + "of": 22, + "/Average/": 1, + "print": 35, + "END": 1, + "buffers": 1, + "memory.": 1, + "bytes": 4, + "Average": 1, + "sockets": 3, + "kernel": 3, + "available": 1, + ";": 55, + "(": 14, + "network_max_packet_per_second": 3, + "requests": 2, + "/eth0/": 1, + "context": 1, + "RAW": 1, + "system": 1, + "by": 4, + "take": 1, + "|": 4, + "block": 2, + "space": 2, + "does": 1, + "memory": 6, + "reads": 1, + "/proc": 1, + "network_max_bandwidth_in_byte": 3, + "last5": 3, + "writes": 1, + "IP": 1, + "use.": 4, + "-": 2, + "BEGIN": 1, + "Total": 9, + "info": 7, + "as": 1, + "not": 1, + "n": 13, + "[": 1, + "network": 1, + "disk": 1 + }, + "C++": { + "on": 1, + "__pyx_t_5numpy_uint16_t": 1, + "POINT_CONVERSION_COMPRESSED": 1, + "}": 552, + "EQ": 1, + "succeeded": 1, + "fields": 1, + "PyObject_Call": 11, + "SCI_CHARRIGHT": 1, + "seed_random": 2, + "npy_cdouble": 2, + "ReturnAddressLocationResolver": 2, + "x16": 1, + "SCI_LINEUPEXTEND": 1, + "SCI_CHARRIGHTRECTEXTEND": 1, + "will": 2, + "<unibrow::LineTerminator,>": 1, + "from.name": 1, + "SCI_PARAUP": 1, + "__pyx_k_12": 1, + "__pyx_k_1": 1, + "*__pyx_empty_bytes": 1, + "<iostream>": 1, + "PyBytes_Repr": 1, + "SCI_REDO": 1, + "__Pyx_PySequence_DelSlice": 2, + "set": 1, + "__pyx_k__O": 2, + "__Pyx_c_conjf": 3, + "imag": 2, + "HexValue": 2, + "PyString_Check": 2, + "__pyx_t_9": 7, + "SCI_LOWERCASE": 1, + "#ifdef": 16, + "sure": 1, + "__pyx_builtin_ValueError": 5, + "*modname": 1, + "envp": 4, + "string": 10, + "PyString_Concat": 1, + "PyNumber_InPlaceDivide": 1, + "end": 18, + "PyInt_CheckExact": 1, + "NPY_CDOUBLE": 1, + "__pyx_k____test__": 1, + "image": 1, + "handle_uninterpreted": 2, + "QWebFrame": 4, + ".": 2, + "DeleteWordRight": 1, + "SCI_VCHOMERECTEXTEND": 1, + "execute": 1, + "has_been_set_up_": 4, + "__pyx_v_endian_detector": 6, + "bound": 4, + "nextItemsIndices": 1, + "LineEnd": 1, + "each": 2, + "<google/protobuf/wire_format_lite_inl.h>": 1, + "||": 17, + "*obj": 2, + "ram": 1, + "<Token::Value>": 1, + "descriptor": 2, + "PyLong_FromUnicode": 1, + "SCI_HOMEDISPLAYEXTEND": 1, + "Random": 3, + "QTemporaryFile*": 2, + "NPY_INT": 2, + "NPY_USHORT": 2, + "*__pyx_n_s__descr": 1, + "dynamic_cast_if_available": 1, + "<": 56, + "AddLiteralChar": 2, + "MergeFrom": 9, + "GDS_DIR": 1, + "__pyx_kp_s_2": 1, + "is_literal_ascii": 1, + "kIsLineTerminator": 1, + "Utf16CharacterStream": 3, + "setMagnification": 2, + "*__pyx_n_s____main__": 1, + "init.": 1, + "cudaReadModeElementType": 1, + "FLAG_max_new_space_size": 1, + "*__pyx_n_s____test__": 1, + "*o": 1, + "r.uint64_t_value": 1, + "PyUnicode_CheckExact": 1, + "move": 2, + "__pyx_v_data": 7, + "__pyx_n_s__work_module": 3, + "entropy_mutex": 1, + "kAllowNativesSyntax": 1, + "injectJsInFrame": 2, + "NPY_UBYTE": 2, + "DocumentEndExtend": 1, + "swap": 3, + "SCI_STUTTEREDPAGEDOWNEXTEND": 1, + "//end": 1, + "LiteralBuffer*": 2, + "magnification": 3, + "myclass.depth": 2, + "SetFatalError": 2, + "PySet_CheckExact": 2, + "__pyx_v_dims": 4, + "DocumentStartExtend": 1, + "dim3": 2, + "SCI_PAGEUP": 1, + "escape": 1, + "StutteredPageUpExtend": 1, + "PyBytes_GET_SIZE": 1, + "libraryPath": 5, + "SCI_TAB": 1, + "ComputeUnknownFieldsSize": 1, + "PyTuple_GET_ITEM": 3, + "__pyx_print_kwargs": 1, + "npy_uint32": 1, + "IMPLEMENT_SERIALIZE": 1, + "PyLong_AsSsize_t": 1, + "__pyx_v_num_x": 4, + "__pyx_k__buf": 1, + "<complex.h>": 1, + "X": 2, + "*qsb": 1, + "__Pyx_PyInt_AsInt": 1, + "alternate": 3, + "PyBytes_Size": 1, + "SerializeWithCachedSizes": 2, + "showUsage": 1, + "*__pyx_t_4": 3, + "__pyx_lineno": 80, + "*__pyx_m": 1, + "has_been_disposed_": 6, + "Home": 1, + "ECDSA_SIG_recover_key_GFp": 3, + "LiteralScope": 4, + "PyLong_CheckExact": 1, + "MoveSelectedLinesUp": 1, + "InternalRegisterGeneratedFile": 1, + "decompressed": 1, + "IsDead": 2, + "GOOGLE_CHECK": 1, + "ScreenResolution": 1, + "__pyx_builtin_RuntimeError": 2, + "new_store": 6, + "QCoreApplication": 1, + "self": 5, + "<unsigned>": 19, + "__pyx_k__ones": 1, + "__Pyx_c_conj": 3, + "clipboard.": 5, + "operation.": 1, + "RemoveCallCompletedCallback": 2, + "f": 5, + "kEndOfInput": 2, + "*__pyx_k_tuple_6": 1, + "//": 239, + "This": 6, + "*__pyx_f_5numpy_PyArray_MultiIterNew4": 2, + "height": 5, + "*name_": 1, + "<unibrow::WhiteSpace,>": 1, + "STRING": 1, + "minidump_id": 1, + "reserve": 1, + "isolate": 15, + "PyString_AsStringAndSize": 1, + "PyBaseString_Type": 1, + "SetReturnAddressLocationResolver": 3, + "v8": 9, + "nextItems": 1, + "PyLong_AsUnsignedLongMask": 1, + "__Pyx_DelAttrString": 2, + "wmode": 1, + "__pyx_v_new_offset": 5, + "__pyx_v_childname": 4, + "SEMICOLON": 2, + "t": 13, + "<stddef.h>": 1, + "ASSIGN_BIT_OR": 1, + "page.": 13, + "__pyx_v_fields": 7, + "__pyx_k__base": 1, + "npy_float64": 1, + "<uc16*>": 2, + "*order": 1, + "set_value": 1, + "change": 1, + "uc16*": 3, + "double_value": 1, + "generated_pool": 2, + "generated_factory": 1, + "__Pyx_PyInt_AsUnsignedLongLong": 1, + "LineEndWrap": 1, + "<4;>": 1, + "CPU": 2, + "CSecret": 4, + "tex.addressMode": 2, + "nSize": 2, + "father": 1, + "is_ascii": 3, + "QRect": 2, + "__pyx_k_tuple_10": 1, + "malloc": 2, + "PY_VERSION_HEX": 9, + "clear_name": 2, + "InitializeOncePerProcessImpl": 3, + "klass": 1, + "%": 4, + "setWrapMode": 2, + "GetID": 1, + "__STDC_VERSION__": 2, + "fall": 2, + "__Pyx_PyInt_FromSize_t": 1, + "Deserializer*": 2, + "SCI_MOVESELECTEDLINESUP": 1, + "you": 1, + "PyArray_MultiIterNew": 5, + "ScanRegExpFlags": 1, + "asVariantMap": 2, + "Transpose": 1, + "__Pyx_Raise": 8, + "SCI_PAGEUPRECTEXTEND": 1, + "xFFFF": 2, + "WordRightEnd": 1, + "read": 1, + "*__pyx_v_e": 1, + "right.": 2, + "location": 4, + "CurrentPerIsolateThreadData": 4, + "SCI_LINESCROLLDOWN": 1, + "__pyx_k__b": 2, + "NOT": 1, + "do": 5, + "float*": 1, + "We": 1, + "SCI_HOMEDISPLAY": 1, + "SetSecret": 1, + "PyFrozenSet_Type": 1, + "*type": 3, + "<google/protobuf/io/coded_stream.h>": 1, + "WireFormatLite": 9, + "displayed": 10, + "WordRightExtend": 1, + "undo": 4, + "PyBUF_F_CONTIGUOUS": 3, + "executed": 1, + "*targetFrame": 4, + "PyLong_AsUnsignedLongLongMask": 1, + "SCI_CANCEL": 1, + "represents": 1, + "QTemporaryFile": 1, + "NilValue": 1, + "odata": 2, + "A": 1, + "than": 1, + "__pyx_t_5numpy_clongdouble_t": 1, + "FindFileByName": 1, + "literal_utf16_string": 1, + "npy_ulonglong": 1, + "*reinterpret_cast": 1, + "Key_Left": 1, + "EC_GROUP_get_order": 1, + "SCI_FORMFEED": 1, + "IsIdentifier": 1, + "BN_zero": 1, + "*msg": 2, + "must": 1, + "__Pyx_c_sum": 2, + "*internal": 1, + "HarmonyScoping": 1, + "*ecsig": 1, + "EditToggleOvertype": 1, + "readResourceFileUtf8": 1, + "*__pyx_k_tuple_13": 1, + "PageDownRectExtend": 1, + "O": 5, + "alter": 1, + "&&": 24, + "PyInt_FromUnicode": 1, + "__pyx_v_a": 5, + "__pyx_k_tuple_6": 1, + "__pyx_t_5numpy_cdouble_t": 1, + "Move": 26, + "PyExc_TypeError": 5, + "ECDSA_SIG": 3, + "buffered_chars": 2, + "metadata.descriptor": 1, + "SCI_WORDRIGHT": 1, + "before": 1, + "platform": 1, + "removed.": 2, + "*this": 1, + "WHITESPACE": 6, + "UnknownFieldSet": 2, + "vchSecret": 1, + "STRICT_MODE": 2, + "tex": 4, + "]": 204, + "GlobalSetUp": 1, + "over": 1, + "*__pyx_v_offset": 1, + "__pyx_mdef_13wrapper_inner_pure_py_test": 1, + "ALT": 1, + "<google/protobuf/repeated_field.h>": 1, + "google_breakpad": 1, + "SCI_CHARLEFTRECTEXTEND": 1, + "*__pyx_t_9": 1, + "*__pyx_r": 7, + "PyDict_CheckExact": 1, + "free_buffer": 3, + "INTERNAL_SUPPRESS_PROTOBUF_FIELD_DEPRECATION": 1, + "Bar": 2, + "IncrementCallDepth": 1, + "<google/protobuf/wire_format.h>": 1, + "PyString_FromString": 1, + "__Pyx_RefNannyImportAPI": 1, + "new_capacity": 2, + "metadata": 2, + "fOk": 3, + "protoc.": 1, + "memcpy": 1, + "kUC16Size": 2, + "npy_longlong": 1, + "npy_int32": 1, + "fj": 1, + "DeleteLineLeft": 1, + "kStrictEquality": 1, + "print": 4, + "*__pyx_n_s__names": 1, + "harmony_modules_": 4, + "myclass.uniqueID": 2, + "__Pyx_c_is_zero": 3, + "is_str": 1, + "else_": 2, + "EC_POINT_is_at_infinity": 1, + "SCI_STUTTEREDPAGEDOWN": 1, + "m_tempWrapper": 1, + "*__pyx_kp_u_15": 1, + "ECDSA_SIG_new": 1, + "PyString_AS_STRING": 1, + "y": 16, + "encoding": 1, + "ScanOctalEscape": 1, + "WordPartLeftExtend": 1, + "pkey": 14, + "LiteralBuffer": 6, + "new_content_size": 4, + "key.GetPubKey": 1, + "SCI_VCHOME": 1, + "<Qsci/qsciglobal.h>": 2, + "__pyx_L11": 7, + "__pyx_t_float_complex": 27, + "eh": 1, + "ctx": 26, + "c0_": 64, + "LTE": 1, + "Token": 212, + "word": 6, + "*qs": 1, + "pos_": 6, + "#define": 190, + "PyNumber_Index": 1, + "fit": 1, + "OnShutdown": 1, + "overload.": 1, + "__pyx_t_5": 75, + "UnknownFieldSet*": 1, + "has_fatal_error_": 5, + "ASSIGN_DIV": 1, + "SelectionCopy": 1, + "SCI_LINEDOWNRECTEXTEND": 1, + "next_.token": 3, + "Context*": 4, + "*__pyx_f_5numpy__util_dtypestring": 2, + "provided": 1, + "*O": 1, + "PySequence_DelSlice": 2, + "len": 1, + "ReadTag": 1, + "PyInt_Check": 1, + "altkey": 3, + "__Pyx_c_pow": 3, + "SetupContext": 1, + "PyLong_AsLong": 1, + "*": 159, + "dbDataStructure": 2, + "there": 1, + "<vector>": 2, + "__pyx_k__format": 1, + "*tb": 2, + "LEVEL_THREE": 1, + "__Pyx_RaiseNoneNotIterableError": 1, + "random": 1, + "ReadString": 1, + "PyType_Modified": 1, + "LineDown": 1, + "*format": 1, + "VCHome": 1, + "mapping": 1, + "output": 5, + "Value": 23, + "literal.Complete": 2, + "PyBUF_WRITABLE": 1, + "__pyx_n_s__do_awesome_work": 3, + "__pyx_k__g": 2, + "SkipSingleLineComment": 6, + "secret": 2, + "LineScrollUp": 1, + "target": 6, + "Scanner*": 2, + "NPY_BYTE": 2, + "DECREF": 1, + "SetHarmonyModules": 1, + "set_allocated_name": 2, + "unchanged.": 1, + "error": 1, + "buffer_end_": 3, + "left.": 2, + "__Pyx_XDECREF": 26, + "Hash160": 1, + "PyString_Repr": 1, + "cudaAddressModeClamp": 2, + "protobuf_AssignDescriptorsOnce": 4, + "total_size": 5, + "drawing": 4, + "__pyx_v_nd": 6, + "ECDSA_SIG_free": 2, + "whole": 2, + "Py_TPFLAGS_HAVE_NEWBUFFER": 1, + "EntropySource": 3, + "dump_path": 1, + "names": 2, + "*__pyx_n_s__type_num": 1, + "__pyx_k__RuntimeError": 1, + "Newline": 1, + "resolver": 3, + "*__pyx_v_child": 1, + "SCI_SELECTIONDUPLICATE": 1, + "actual": 1, + "PY_FORMAT_SIZE_T": 1, + "Select": 33, + "**envp": 1, + "DropLiteral": 2, + "qUncompress": 2, + "PyArray_CHKFLAGS": 2, + "Key_PageUp": 1, + "StutteredPageUp": 1, + "vchSig": 18, + "GetTagWireType": 2, + ".data": 3, + "Formfeed": 1, + "coffee2js": 1, + "SCI_WORDLEFT": 1, + "switch": 3, + "normalize": 1, + "LEVEL_TWO": 1, + "Q_INIT_RESOURCE": 2, + "foo": 2, + "Scroll": 5, + "PyObject_SetAttrString": 2, + "__pyx_v_f": 31, + "Person": 65, + "drawn": 2, + "PushBack": 8, + "WordPartRightExtend": 1, + "__pyx_L6": 6, + "PyArray_SimpleNewFromData": 2, + "capacity": 3, + "cleanupFromDebug": 1, + "SerializeWithCachedSizesToArray": 2, + "EC_GROUP": 2, + "b": 57, + "CopyFrom": 5, + "<string>": 1, + "input": 6, + "SCI_CHARRIGHTEXTEND": 1, + "entropy_source": 4, + "DescriptorPool": 3, + "Scanner": 16, + "PyArray_HASFIELDS": 1, + "__pyx_v_t": 29, + "PyInt_FromString": 1, + "**": 2, + "LEVEL_ONE": 1, + "SCI_LINEENDDISPLAY": 1, + "node": 1, + "des": 3, + "BN_rshift": 1, + "__pyx_k__itemsize": 1, + "lines.": 1, + "PyLongObject": 2, + "Qt": 1, + "backing_store_.length": 4, + "SCI_LINESCROLLUP": 1, + "**p": 1, + "EC_KEY_regenerate_key": 1, + "p": 5, + "__sun__": 1, + "Key_Tab": 1, + "ScanString": 3, + "Scintilla": 2, + "text": 5, + "SupportsCrankshaft": 1, + "Py_SIZE": 1, + "inline": 39, + "Serializer": 1, + "Max": 1, + "IsValid": 4, + "__pyx_v_data_ptr": 2, + "__pyx_t_5numpy_long_t": 1, + "PY_SSIZE_T_MIN": 1, + "HEAP": 1, + "__pyx_v_copy_shape": 5, + "__pyx_k__B": 2, + "*buf": 1, + "PostSetUp": 1, + "out.": 1, + "IsInitialized": 3, + "AddChar": 2, + "EC_GROUP_get_curve_GFp": 1, + "hint": 3, + "*eor": 1, + "detect": 1, + "readonly": 2, + "be": 9, + "memset": 2, + "myclass.fileName": 2, + "*__pyx_v_new_offset": 1, + "definition": 1, + "<openssl/obj_mac.h>": 1, + "__pyx_k_2": 1, + "SCI_PARADOWN": 1, + "*value": 2, + "Return": 3, + "LineEndWrapExtend": 1, + "__pyx_k__byteorder": 1, + "vchPubKeyIn": 2, + "temp": 2, + "<uc32>": 1, + "min_capacity": 2, + "adding": 2, + "uchar": 4, + "vector": 14, + "MB": 1, + "LineEndRectExtend": 1, + "<Qsci/qsciscintillabase.h>": 1, + "QVariant": 1, + "*__pyx_v_a": 5, + "suboffsets": 1, + "*__pyx_n_s__work_module": 1, + "npy_int64": 1, + "HasAnyLineTerminatorBeforeNext": 1, + "EC_POINT_free": 4, + "<QApplication>": 1, + "InspectorBackendStub": 1, + "random_base": 3, + "setKey": 3, + "already_here": 3, + "look": 1, + "FileDescriptor*": 1, + "/": 15, + "cudaMallocArray": 1, + "UTILS_H": 3, + "Q_OS_LINUX": 2, + "PyDict_Contains": 1, + "SCI_WORDPARTLEFT": 1, + "myclass.label": 2, + "literal_buffer1_": 3, + "CharLeftExtend": 1, + "*pub_key": 1, + "INT_MAX": 1, + "overflow": 1, + "myclass.firstLineData": 4, + "SCI_ZOOMOUT": 1, + "<QtGlobal>": 1, + "NPY_CLONGDOUBLE": 1, + "cpow": 1, + "tag": 6, + "formfeed.": 1, + "printing": 2, + "strides": 5, + "__pyx_k__l": 2, + "Python": 1, + "IsByteOrderMark": 2, + "PyArray_DIMS": 2, + "__pyx_kp_s_3": 1, + "ASSIGN": 1, + "LineUpRectExtend": 1, + "Shrink": 1, + "__Pyx_PyObject_IsTrue": 8, + "__pyx_k__names": 1, + "__Pyx_RefNannySetupContext": 13, + "<qstring.h>": 1, + "GetCachedSize": 1, + "byteorder": 4, + "__pyx_k__readonly": 1, + "*p": 1, + "SerializeUnknownFieldsToArray": 1, + "GOOGLE3": 2, + "wrap": 4, + "*__pyx_kp_u_7": 1, + "__pyx_t_5numpy_uint32_t": 1, + "err": 26, + "parse": 3, + "WIRETYPE_LENGTH_DELIMITED": 1, + "modified": 2, + "PyDataType_HASFIELDS": 2, + "ASSERT": 17, + "ASSIGN_SHL": 1, + "__pyx_k__Zf": 2, + "resourceFilePath": 1, + "*shape": 1, + "byte": 1, + "kIsIdentifierPart": 1, + "QApplication": 1, + "Insert": 2, + "Hash": 1, + "IsIdentifierPart": 1, + "SCI_LINEDUPLICATE": 1, + "*__pyx_v_answer_ptr": 2, + "conjf": 1, + "Tab": 1, + "BN_copy": 1, + "ascii_literal": 3, + "PHANTOMJS_VERSION_STRING": 1, + "kIsIdentifierPart.get": 1, + "insert/overtype.": 1, + "HomeDisplayExtend": 1, + "__pyx_v_num_y": 2, + "GOOGLE_PROTOBUF_VERSION": 1, + "SHR": 1, + "PyBytes_AS_STRING": 1, + "void*": 1, + "sized.": 1, + "__Pyx_UnpackTupleError": 2, + "Raw": 1, + "kAllowModules": 1, + "take_snapshot": 1, + "UnregisterAll": 1, + "*__pyx_t_5": 1, + "__Pyx_AddTraceback": 7, + "key": 23, + "__fastcall": 2, + "SCI_LINECUT": 1, + "ScanHtmlComment": 3, + "source_length": 3, + "short": 3, + "GOTREF": 1, + "SerializeUnknownFields": 1, + "GetMetadata": 2, + "current": 9, + "location.end_pos": 1, + "*__pyx_f_5numpy_PyArray_MultiIterNew5": 2, + "app.setOrganizationDomain": 1, + "continue": 2, + "static": 260, + "_unknown_fields_": 5, + "STATIC_BUILD": 1, + "RegisteredExtension": 1, + "stream": 5, + "msglen": 2, + "kIsIdentifierStart.get": 1, + "const": 166, + "*__pyx_kp_u_11": 1, + "assign": 3, + "of": 48, + "next_": 2, + "Key_Right": 1, + "myclass.noFatherRoot": 2, + "u": 9, + "SCI_SCROLLTOSTART": 1, + "when": 5, + "*priv_key": 1, + "nV": 6, + "SWIG": 2, + "invalid": 5, + "upper": 1, + "from": 25, + "enabled": 1, + "keys": 3, + "*__pyx_refnanny": 1, + "SHIFT": 1, + "GOOGLE_PROTOBUF_DECLARE_ONCE": 1, + "has_name": 6, + "current_pos": 4, + "Py_TYPE": 4, + "PyString_ConcatAndDel": 1, + "*sig": 2, + "SelectAll": 1, + "GOOGLE_PROTOBUF_MIN_PROTOC_VERSION": 1, + "SeekForward": 4, + "__pyx_t_1": 154, + "which": 2, + "next_literal_length": 1, + "setup.": 1, + "__pyx_f_5numpy_set_array_base": 1, + "Protocol": 2, + "SCI_HOME": 1, + "Lazy": 1, + "selected": 2, + "app.setApplicationName": 1, + "*__pyx_n_s__suboffsets": 1, + "IsCompressed": 2, + "Utf16CharacterStream*": 3, + "kIsWhiteSpace.get": 1, + "not": 2, + "cout": 1, + "__pyx_k_7": 1, + "__Pyx_PrintOne": 4, + "VerifyCompact": 2, + "jsFileEnc": 2, + "Buffer": 2, + "InitAsDefaultInstance": 3, + "&": 148, + "uniqueID": 1, + "app.setWindowIcon": 1, + "SCI_COPY": 1, + "uint32_t": 8, + "Key_Down": 1, + "clear_has_name": 5, + "FLAG_crankshaft": 1, + "descr": 2, + "__pyx_f": 79, + "BN_cmp": 1, + "code_unit": 6, + "kNameFieldNumber": 2, + "#error": 9, + "Deserializer": 1, + "NPY_FLOAT": 1, + "*__pyx_v_f": 2, + "__Pyx_PyIndex_AsSsize_t": 1, + "octal": 1, + "scriptPath": 1, + "V8_V8_H_": 3, + "GeneratedMessageReflection": 1, + "SharedCtor": 4, + "EC_KEY_set_public_key": 2, + "*__pyx_n_s__byteorder": 1, + "__pyx_k__np": 1, + "key2": 1, + "source_": 7, + "digits": 3, + "r.double_value": 3, + "immediately": 1, + "__Pyx_PyInt_AsUnsignedLong": 1, + "*__pyx_v_t": 1, + "<complex>": 1, + "beg_pos": 5, + "<byte>": 6, + "By": 1, + "__pyx_k__q": 2, + "__inline": 1, + "command": 9, + "ReflectionOps": 1, + "xffu": 3, + "cpowf": 1, + "NUM_TOKENS": 1, + "EC_POINT": 4, + "UnicodeCache*": 4, + "envvar": 2, + "jsFilePath": 5, + "WrapMode": 3, + "*__pyx_k_tuple_14": 1, + "__Pyx_PyInt_AsLong": 1, + "Sign": 1, + "newline.": 1, + "__Pyx_PyNumber_Int": 1, + "SCI_LINEUP": 1, + "WIN32": 2, + "Py_TPFLAGS_HAVE_INDEX": 1, + "buffer": 1, + "__pyx_v_b": 4, + "__pyx_t_5numpy_double_t": 1, + "npy_double": 2, + "then": 6, + "__pyx_L2": 2, + "PyImport_ImportModule": 1, + "ThreadId": 1, + "startingScript": 2, + "CharLeftRectExtend": 1, + "GDSDBREADER_H": 3, + "cabs": 1, + "<27>": 1, + "<IdentifierStart,>": 1, + "recid": 3, + "ASSIGN_BIT_AND": 1, + "__pyx_t_5numpy_float32_t": 1, + "SCI_PARAUPEXTEND": 1, + "func": 3, + "SCI_CUT": 1, + "PyBytes_Type": 1, + "uint32_t*": 2, + "PyMethod_New": 2, + "void": 152, + "<math.h>": 1, + "COMMA": 2, + "NPY_LONG": 1, + "__pyx_cfilenm": 1, + "WriteString": 1, + "Q_OBJECT": 1, + "current_": 2, + "m_map": 2, + "end_pos": 4, + "PyTuple_GET_SIZE": 2, + "Descriptor*": 3, + "QsciScintillaBase": 100, + "l": 1, + "extern": 4, + "try": 1, + "#if": 44, + "StutteredPageDownExtend": 1, + "NPY_OBJECT": 1, + "*group": 2, + "qsb.": 1, + "__pyx_refnanny": 5, + "Copy": 2, + "EC_KEY*": 1, + "List": 3, + "BN_mod_mul": 2, + "mode.": 1, + "uint64_t_value": 1, + "ExpectAtEnd": 1, + "z": 46, + "hello": 2, + "ok": 3, + "pagenr": 2, + "npy_float32": 1, + "app.exec": 1, + "EC_KEY_dup": 1, + "Paste": 2, + "ahead": 1, + "PyBUF_STRIDES": 5, + "instantiated": 1, + "example.": 1, + "__pyx_L12": 2, + "PyLong_FromSsize_t": 1, + "*zero": 1, + "IsGlobalContext": 1, + "numbered": 1, + "format": 6, + "*__pyx_n_s__itemsize": 1, + "mutable_name": 3, + "both": 1, + "next_literal_utf16_string": 1, + "*__pyx_v_self": 4, + "__pyx_k__L": 2, + "cudaMemcpyToArray": 1, + "src": 2, + "threadIdx.x": 1, + "FLAG_random_seed": 2, + "__pyx_t_6": 40, + "//Don": 1, + "SAR": 1, + "EC_KEY_new_by_curve_name": 2, + "keyword": 1, + "number": 3, + "classed": 1, + "through": 2, + "ParsingFlags": 1, + "__pyx_k_tuple_16": 1, + "PyFrozenSet_Check": 1, + "wrapMode": 2, + "defined": 21, + "Unescaped": 1, + "DecrementCallDepth": 1, + "protobuf_AddDesc_protocol_2dbuffer_2eproto": 6, + "different": 1, + "SCI_WORDLEFTEND": 1, + "SERIALIZE": 2, + "text.": 3, + "PyErr_SetString": 4, + "+": 55, + "BN_CTX_free": 2, + "has_line_terminator_before_next_": 9, + "Print": 1, + "Initialize": 4, + "EXPRESSION": 2, + "shape": 3, + "Redo": 2, + "SCI_DELWORDRIGHTEND": 1, + "LPAREN": 2, + "_Complex": 2, + "qCompress": 2, + "commands": 1, + "LineDuplicate": 1, + "*__pyx_n_s__obj": 1, + "inner_work_2d": 2, + "__pyx_k__h": 2, + "float": 9, + "VCHomeRectExtend": 1, + "PyBUF_FORMAT": 1, + "ASSERT_EQ": 1, + "Clear": 5, + "word.": 9, + "free": 2, + "Person_reflection_": 4, + "ScanEscape": 2, + "obj": 42, + "SCI_VCHOMEWRAPEXTEND": 1, + "SCI_HOMEEXTEND": 1, + "INLINE": 2, + "__pyx_v_flags": 4, + "PyBUF_INDIRECT": 1, + "hash": 20, + "bindKey": 1, + "PyVarObject_HEAD_INIT": 1, + "utf8_decoder_": 2, + "tex.filterMode": 1, + "PyObject_HEAD_INIT": 1, + "Binds": 2, + "namespace": 26, + "TearDownCaches": 1, + "persons": 4, + "texture": 1, + "_unknown_fields_.Swap": 1, + "StringSize": 1, + "that": 7, + "type": 6, + "WrapWord.": 1, + "__Pyx_PyInt_AsUnsignedInt": 1, + "NE_STRICT": 1, + "current_token": 1, + "union": 1, + "protobuf_ShutdownFile_protocol_2dbuffer_2eproto": 4, + "mailing": 1, + "from.unknown_fields": 1, + "script": 1, + "Sets": 2, + "CPrivKey": 3, + "vchPubKey.end": 1, + "128": 4, + "stacklevel": 1, + "formatPage": 1, + "true.": 1, + "__pyx_t_5numpy_float_t": 1, + "MOD": 1, + "QsciCommand": 7, + "mode": 4, + "Key_Return.": 1, + "WordRight": 1, + "true": 39, + "argc": 2, + "BIT_AND": 1, + "__pyx_n_s__np": 1, + "SkipMultiLineComment": 3, + "PageDown": 1, + "case": 33, + "PyUnicodeObject": 1, + "*__pyx_t_1": 8, + "__Pyx_c_diff": 2, + "QString": 20, + "qInstallMsgHandler": 1, + "peek_location": 1, + "*__pyx_n_s__buf": 1, + "StaticDescriptorInitializer_protocol_2dbuffer_2eproto": 2, + "this": 22, + "tex.normalized": 1, + "__pyx_L7": 2, + "MessageFactory": 3, + "QsciScintilla": 7, + "SCI_LINEUPRECTEXTEND": 1, + "c": 52, + "__Pyx_Print": 1, + "_Complex_I": 3, + "have": 1, + "prevent": 1, + "relative": 1, + "*__pyx_f_5numpy_PyArray_MultiIterNew1": 1, + "blockDim.x": 2, + "Metadata": 3, + "page": 4, + "__Pyx_INCREF": 36, + "PyBytes_FromFormat": 1, + "phantom.returnValue": 1, + "kInitialCapacity": 2, + "PyTuple_New": 4, + "Current": 5, + "ch": 5, + "ReadBlock": 2, + "disk": 1, + "LAZY_MUTEX_INITIALIZER": 1, + "GeneratedMessageReflection*": 1, + "kIsLineTerminator.get": 1, + "modules": 2, + "size": 9, + "SCI_LINEENDRECTEXTEND": 1, + "ob": 6, + "PyString_DecodeEscape": 1, + "in.": 1, + "__pyx_k__ValueError": 1, + "__Pyx_PyInt_AsSignedInt": 1, + "GetSecret": 2, + "SCI_LINEENDWRAPEXTEND": 1, + "LazyMutex": 1, + "SCI_PASTE": 1, + "VCHomeWrap": 1, + "sizeof": 14, + "SCI_EDITTOGGLEOVERTYPE": 1, + "Format": 1, + "NPY_C_CONTIGUOUS": 1, + "PyIndex_Check": 1, + "SCI_LINEENDDISPLAYEXTEND": 1, + "SamplerRegistry": 1, + "eckey": 7, + "calling": 1, + "PyArray_ISWRITEABLE": 1, + "*__pyx_n_s__ValueError": 1, + "SCI_DELLINERIGHT": 1, + "op": 6, + "NE": 1, + "StartLiteral": 2, + "NPY_ULONGLONG": 1, + "__pyx_k__strides": 1, + "__Pyx_PyInt_AsLongLong": 1, + "quote": 3, + "CharRightRectExtend": 1, + "sa": 8, + "*__pyx_v_data": 1, + "*__pyx_n_s__do_awesome_work": 1, + "__Pyx_RefNannyAPIStruct": 4, + "ScrollToEnd": 1, + "__Pyx_PyInt_AsSize_t": 1, + "SCI_BACKTAB": 1, + "__pyx_v_offset": 9, + "__pyx_k_3": 1, + "*__Pyx_RefNanny": 1, + "NDEBUG": 4, + "further": 1, + "*__pyx_v_dims": 2, + "__pyx_k__Q": 2, + "setAlternateKey": 3, + "app.setOrganizationName": 1, + "sig": 11, + ".empty": 3, + "editor": 1, + "m_tempHarness": 1, + "are": 3, + "SCI_LINEEND": 1, + "x36.": 1, + "*__pyx_n_s__ones": 1, + "__Pyx_c_quotf": 2, + "__Pyx_RefNanny": 6, + "FLAG_gc_global": 1, + "so": 1, + "#undef": 3, + "ScanRegExpPattern": 1, + "V8_DECLARE_ONCE": 1, + "*__pyx_n_s__base": 1, + "either": 1, + "Remove": 1, + "coordinates": 1, + "rather": 1, + "*__pyx_v_b": 4, + "NPY_SHORT": 2, + "__pyx_t_5numpy_uint64_t": 1, + "mutable": 1, + "pow": 2, + "scanner_": 5, + "SelectionCut": 1, + "RBRACE": 2, + "SCI_WORDRIGHTEND": 1, + "WebKit": 1, + "__Pyx_SET_CREAL": 2, + "Delete": 10, + "literal": 2, + "WordLeftExtend": 1, + "*__pyx_kp_s_1": 1, + "__GNUC_MINOR__": 1, + "last": 4, + "WIRETYPE_END_GROUP": 1, + "key.": 1, + "field": 3, + "unknown_fields": 7, + "FillHeapNumberWithRandom": 2, + "width*height*sizeof": 1, + "ADD": 1, + "PyObject_GetItem": 1, + "SCI_WORDRIGHTENDEXTEND": 1, + "indent": 1, + "call_completed_callbacks_": 16, + "heap_number": 4, + "AddLiteralCharAdvance": 3, + "MUL": 1, + "__APPLE__": 4, + "envvar.indexOf": 1, + "Utf8InputBuffer": 2, + "fCompr": 3, + "CharacterStream*": 1, + "LineCut": 1, + "SelectionUpperCase": 1, + "Scan": 5, + "CPubKey": 11, + "release_name": 2, + "google": 72, + "__pyx_k__work_module": 1, + "__pyx_t_5numpy_longdouble_t": 1, + "__FILE__": 2, + "kCharacterLookaheadBufferSize": 3, + "Merge": 1, + "QSCIPRINTER_H": 2, + "*__pyx_v_fields": 1, + "*__pyx_k_tuple_10": 1, + "__pyx_k__fields": 1, + "depth": 1, + "brief": 2, + "L": 1, + "CallDepthIsZero": 1, + "METH_NOARGS": 1, + "__pyx_k__Zg": 2, + "*__pyx_builtin_RuntimeError": 1, + "ByteArray*": 1, + "qk": 1, + "int": 148, + "font": 2, + "current_.token": 4, + "PyNumber_InPlaceTrueDivide": 1, + "CallCompletedCallback": 4, + "QVariantMap": 3, + "root": 1, + "current_.literal_chars": 11, + "member": 2, + "__Pyx_PyBytes_FromUString": 1, + "msg": 1, + "else": 46, + "Py_intptr_t": 1, + "__pyx_t_5numpy_cfloat_t": 1, + "complex": 2, + "PyErr_WarnEx": 1, + "friend": 10, + "New": 4, + "PyLong_FromString": 1, + "position_": 17, + "kPageSizeBits": 1, + "PyFloat_CheckExact": 1, + "__Pyx_c_abs": 3, + "StutteredPageDown": 1, + "*__pyx_v_end": 1, + "__pyx_t_double_complex_from_parts": 1, + "vchPubKey.begin": 1, + "SelectionDuplicate": 1, + "nRecId": 4, + "_USE_MATH_DEFINES": 1, + "delete": 6, + "GetHash": 1, + "context": 8, + "Py_buffer": 5, + "list": 2, + "GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN": 2, + "PyBUF_C_CONTIGUOUS": 3, + "intern": 1, + "PyBytes_FromStringAndSize": 1, + "<google/protobuf/generated_message_reflection.h>": 1, + "__Pyx_GIVEREF": 10, + "argv": 2, + "<char*>": 1, + "PyObject_DelAttrString": 2, + "SCI_LINETRANSPOSE": 1, + "*__pyx_k_tuple_8": 1, + "xxx": 1, + "*rr": 1, + "length": 8, + "PyNumber_Check": 1, + "public": 27, + "phantom.execute": 1, + "QSCINTILLA_EXPORT": 2, + "signifies": 2, + "only": 1, + "*__pyx_kp_u_12": 1, + "SignCompact": 2, + "SCI_DELETEBACK": 1, + "quint32": 3, + "wmode.": 1, + "Valid": 1, + "case.": 2, + "SCI_WORDPARTRIGHT": 1, + "Py_True": 2, + "Stuttered": 4, + "v": 3, + "<qprinter.h>": 1, + "__pyx_pf_5numpy_7ndarray___getbuffer__": 2, + "*__pyx_n_s__np": 1, + "kIsWhiteSpace": 1, + "BN_CTX_start": 1, + "BIT_OR": 1, + "key.SetCompactSignature": 1, + "SCI_LINEDOWNEXTEND": 1, + "Object*": 4, + "SetCompressedPubKey": 4, + "__pyx_k__H": 2, + "validKey": 3, + "PyInt_AsUnsignedLongMask": 1, + "__pyx_t_2": 120, + "__pyx_k__type_num": 1, + "QSCICOMMAND_H": 2, + "Person_offsets_": 2, + "PyBytes_ConcatAndDel": 1, + "set_has_name": 7, + "NPY_CFLOAT": 1, + "INCREF": 1, + "SCI_WORDPARTRIGHTEXTEND": 1, + "Key_Backspace": 1, + "DeleteWordRightEnd": 1, + "*strides": 1, + "*__pyx_n_s__wrapper_inner": 1, + "HomeWrap": 1, + "GOOGLE_PROTOBUF_VERIFY_VERSION": 1, + "next_literal_ascii_string": 1, + "Min": 1, + "Message": 7, + "any": 5, + "expected": 1, + "__global__": 1, + "PY_SSIZE_T_CLEAN": 1, + "modname": 1, + "by": 5, + "SCI_LINEDELETE": 1, + "NPY_LONGLONG": 1, + "__pyx_module_is_main_wrapper_inner": 1, + "TearDown": 5, + "LBRACE": 2, + "__pyx_k__d": 2, + "__Pyx_PyInt_AsChar": 1, + "cudaArray*": 1, + "compile": 1, + "endl": 1, + "type_num": 2, + "key2.SetSecret": 1, + "Zoom": 2, + "break": 34, + "explicit": 3, + "BN_bn2bin": 2, + "SCI_LINEENDEXTEND": 1, + "vertically": 1, + "callback": 7, + "METH_COEXIST": 1, + "VCHomeWrapExtend": 1, + "rr": 4, + "range": 1, + "PyArray_ITEMSIZE": 1, + "C": 1, + "SCI_DOCUMENTSTARTEXTEND": 1, + "myclass.userIndex": 2, + "__pyx_t_5numpy_float64_t": 1, + "Add": 1, + "goto": 156, + "PyString_Size": 1, + "SetHarmonyScoping": 1, + "footers": 2, + "*__pyx_self": 2, + "autorun": 2, + "NPY_ULONG": 1, + "SCI_PAGEDOWN": 1, + "Duplicate": 2, + "combination": 1, + "INT_MIN": 1, + "clear_octal_position": 1, + "<google/protobuf/reflection_ops.h>": 1, + "GOOGLE_CHECK_NE": 2, + "WireFormat": 10, + "Q": 5, + "ASSIGN_SHR": 1, + "MoveSelectedLinesDown": 1, + "thread_id": 1, + "LT": 2, + "index": 2, + "friendly": 2, + "ParaDownExtend": 1, + "ScanIdentifierUnicodeEscape": 1, + "BN_CTX_get": 8, + "error.": 1, + "__pyx_v_c": 3, + "__pyx_k_tuple_8": 1, + "*__pyx_f": 1, + "DL_EXPORT": 2, + "update": 1, + "token": 64, + "command.": 5, + "up": 13, + "PyString_FromStringAndSize": 1, + "userIndex": 1, + "SlowSeekForward": 2, + "may": 2, + "Py_TPFLAGS_CHECKTYPES": 1, + "SCI_WORDLEFTENDEXTEND": 1, + "#else": 24, + "CodedInputStream*": 2, + "lower": 1, + "order": 8, + "Person*": 7, + "dependent": 1, + "PySequence_Contains": 1, + "lock": 1, + "ob_refcnt": 1, + "Advance": 44, + "EQ_STRICT": 1, + "Isolate": 9, + "used": 4, + "IsLineFeed": 2, + "CYTHON_WITHOUT_ASSERTIONS": 1, + "**env": 1, + "SkipWhiteSpace": 4, + "secure_allocator": 2, + "lines": 3, + "DEC": 1, + "m": 4, + "assigned": 1, + "key_error": 6, + "SCI_CHARLEFTEXTEND": 1, + "NULL": 108, + "__pyx_v_descr": 10, + "__Pyx_c_powf": 3, + "#endif": 82, + "unicode_cache": 3, + "main": 2, + "keyRec": 5, + "octal_pos_": 5, + "SCI_HOMERECTEXTEND": 1, + "char": 122, + "user": 2, + "internal": 46, + "<QCoreApplication>": 1, + "__Pyx_StringTabEntry": 1, + "SCI_PAGEUPEXTEND": 1, + "unlikely": 69, + "META.": 1, + "Predicate": 4, + "EC_KEY_copy": 1, + "{": 553, + "*__pyx_n_s__fields": 1, + "__Pyx_RefNannyFinishContext": 12, + "uint32": 2, + "QtMsgType": 1, + "__pyx_L13": 2, + "currently": 2, + "__pyx_k__numpy": 1, + "SkipField": 1, + "EXTENDED_MODE": 2, + "selection.": 1, + "buf": 1, + "PyObject_GetAttr": 4, + "ASSIGN_MUL": 1, + "static_cast": 7, + "literal_contains_escapes": 1, + "threadIdx.y": 1, + "customised": 2, + "__pyx_t_7": 9, + "was": 3, + "from.has_name": 1, + "LOperand": 2, + "eor": 3, + "LONG_LONG": 1, + "PyBytes_FromString": 2, + "remove": 1, + "__pyx_PyFloat_AsDouble": 3, + "CodedOutputStream*": 2, + "*Q": 1, + "*__pyx_n_s__ndim": 1, + "new_store.start": 3, + "return": 147, + "<google/protobuf/generated_message_util.h>": 1, + "#elif": 3, + "printable": 1, + "QPrinter": 3, + "__Pyx_ErrFetch": 1, + "pos": 12, + "__Pyx_PySequence_SetSlice": 2, + "__GNUC__": 5, + "tex2D": 1, + "PyStringObject": 2, + "has_multiline_comment_before_next_": 5, + "Py_PYTHON_H": 1, + "PyLong_Check": 1, + "necessary": 1, + "called": 1, + "EOS": 1, + "Init": 3, + "returned.": 4, + "quint64": 1, + "BN_add": 1, + "*__pyx_f_5numpy_get_array_base": 1, + "__pyx_print": 1, + "defines": 1, + ".length": 3, + "PyBoolObject": 1, + "SetCachedSize": 2, + "an": 3, + "__pyx_k__i": 2, + "with": 6, + "PyObject_TypeCheck": 3, + "BN_mod_inverse": 1, + "LineUp": 1, + "new": 9, + "PY_LONG_LONG": 5, + "__builtin_expect": 2, + "PyBytesObject": 1, + "level": 1, + "HomeWrapExtend": 1, + "device": 1, + "PyString_FromFormat": 1, + "<1024>": 2, + "PyInt_FromLong": 13, + "__pyx_v_little_endian": 8, + "__Pyx_XGOTREF": 1, + "*m": 1, + "handle_scope_implementer": 5, + "PySet_Type": 2, + "state": 15, + "__Pyx_PyNumber_Divide": 2, + "IsCarriageReturn": 2, + "DeleteBack": 1, + "typedef": 38, + "signed": 5, + "__pyx_t_5numpy_int64_t": 1, + "BN_CTX_end": 1, + "d_data": 1, + "QDataStream": 2, + "BITCOIN_KEY_H": 2, + "SCI_VCHOMEEXTEND": 1, + "peek": 1, + "__cdecl": 2, + "use_crankshaft_": 6, + "SCI_DELWORDLEFT": 1, + "SCI_PAGEDOWNEXTEND": 1, + "__pyx_k__suboffsets": 1, + "*desc": 1, + "file": 6, + "extensions": 1, + "__Pyx_MODULE_NAME": 1, + "INC": 1, + "PyInt_FromSize_t": 1, + "PyString_Type": 2, + "using": 1, + "headers": 3, + "cudaMemcpyHostToDevice": 1, + "<openssl/ec.h>": 1, + "kEmptyString": 12, + "PyObject_RichCompare": 8, + "alternateKey": 3, + "left": 7, + "QT_BEGIN_NAMESPACE": 1, + "*__pyx_t_2": 4, + "is_running_": 6, + "PyInt_AsUnsignedLongLongMask": 1, + "instance": 4, + "__pyx_L8": 2, + "__pyx_k__pure_py_test": 1, + "optimize": 1, + "double_int_union": 2, + "VerifyUTF8String": 3, + "LineEndDisplay": 1, + "shouldn": 1, + "negative": 2, + "d": 8, + "PyTuple_SET_ITEM": 4, + "*__pyx_k_tuple_4": 1, + "CYTHON_CCOMPLEX": 12, + "cast": 1, + "PyString_AsString": 1, + "*__pyx_f_5numpy_PyArray_MultiIterNew2": 2, + "next": 6, + "blockDim.y": 2, + "needed": 1, + "paint": 1, + "NPY_F_CONTIGUOUS": 1, + "<google/protobuf/message.h>": 1, + "LineDownRectExtend": 1, + "unibrow": 11, + "__Pyx_PyInt_AsShort": 1, + "conj": 3, + "__Pyx_TypeCheck": 1, + "r": 36, + "CKeyID": 5, + "*field": 1, + "operator": 10, + "uint8*": 4, + "HarmonyModules": 1, + "points": 2, + "*__pyx_n_s__pure_py_test": 1, + "scanner_contants": 1, + "AddCallCompletedCallback": 2, + "<algorithm>": 1, + "__pyx_k__obj": 1, + "tuple": 3, + "ScanIdentifierOrKeyword": 2, + "Phantom": 1, + "SetUp": 4, + "IsRunning": 1, + "can": 3, + "noFatherRoot": 1, + "source": 9, + "<QDir>": 1, + "PyBytes_DecodeEscape": 1, + "cudaFilterModePoint": 1, + "SCI_HOMEWRAP": 1, + "npy_uint8": 1, + "default_instance": 3, + "magnification.": 1, + "LineEndExtend": 1, + "Key_Insert": 1, + "draw": 1, + "__pyx_k_15": 1, + "fCompressedPubKey": 5, + "<google/protobuf/stubs/once.h>": 1, + "__pyx_n_s__ones": 1, + "__pyx_k__ndim": 1, + "Py_ssize_t": 17, + "Verify": 2, + "PyDict_Type": 1, + "PyNumber_Subtract": 2, + "NewCapacity": 3, + "name": 21, + "while": 11, + "PyInt_FromSsize_t": 2, + "add": 3, + "__pyx_v_hasfields": 4, + "**value": 1, + "no": 1, + "actually": 1, + "envvar.left": 1, + "throw": 4, + "const_cast": 3, + "*__pyx_v_c": 3, + "default_instance_": 8, + "entropy_mutex.Pointer": 1, + "uc16": 5, + "zero": 3, + "in": 9, + "jsFromScriptFile": 1, + "Keys": 1, + "kNonStrictEquality": 1, + "1": 2, + "GetTagFieldNumber": 1, + "generated": 2, + "*env_instance": 1, + "<google/protobuf/extension_set.h>": 1, + "*__pyx_kp_s_2": 1, + "__Pyx_c_quot": 2, + "__Pyx_c_prod": 2, + "myclass.linesNumbers": 2, + "blockIdx.x*blockDim.x": 1, + "right": 8, + "kNoOctalLocation": 1, + "npy_long": 1, + "Reset": 5, + "tok": 2, + "itemsize": 2, + "Key_Home": 1, + "*__pyx_v_childname": 1, + "messageHandler": 2, + "as": 1, + "kernel": 2, + "char**": 2, + "SetUpCaches": 1, + "npy_longdouble": 1, + "EqualityKind": 1, + "int32_t": 1, + "Py_DECREF": 1, + "dialogs.": 1, + "HeapNumber": 1, + "LineTranspose": 1, + "PyString_CheckExact": 2, + "mag": 2, + "*r": 1, + "IsNull": 1, + "Key_End": 1, + "m_map.insert": 1, + "PySequence_GetSlice": 2, + "hasn": 1, + "EC_POINT_mul": 3, + "__pyx_pf_13wrapper_inner_pure_py_test": 1, + "*__pyx_kp_u_9": 1, + "PyErr_Warn": 1, + "PyLong_AS_LONG": 1, + "level.": 2, + "*descCmd": 1, + "random_seed": 1, + "npy_uintp": 1, + "VCHomeExtend": 1, + "EC_KEY_set_private_key": 1, + "desc": 2, + "Key_PageDown": 1, + "ScopedLock": 1, + "__pyx_k_tuple_4": 1, + "*__pyx_b": 1, + "older": 1, + "<Utf8Decoder>": 2, + "NID_secp256k1": 2, + "__Pyx_PyInt_AsLongDouble": 1, + "__pyx_t_5numpy_int_t": 1, + "PySet_Check": 1, + "cudaBindTextureToArray": 1, + "__Pyx_CREAL": 4, + "backing_store_.Dispose": 3, + "AllStatic": 1, + "blockDim": 2, + "class": 34, + "Person_descriptor_": 6, + "protected": 4, + "app": 1, + "[": 204, + "SCI_WORDLEFTEXTEND": 1, + "std": 49, + "incompatible": 2, + "PyErr_Format": 4, + "SCI_HOMEWRAPEXTEND": 1, + "InitializeOncePerProcess": 4, + "CKey": 26, + "Cancel": 2, + "vchSig.clear": 2, + "__Pyx_XGIVEREF": 7, + "scoping": 2, + "__Pyx_GetName": 4, + "DEBUG": 3, + "FlagList": 1, + "BIT_NOT": 2, + "__Pyx_c_difff": 2, + "str": 2, + "ASSERT_NOT_NULL": 9, + "paragraph.": 4, + "uint256": 10, + "i": 47, + "CharRight": 1, + "RuntimeProfiler": 1, + "vchPubKey.size": 3, + "first": 8, + "ECDSA_do_sign": 1, + "#include": 106, + "methods": 1, + "LineDelete": 1, + "CYTHON_UNUSED": 7, + "GOOGLE_SAFE_CONCURRENT_WRITES_END": 2, + "PyInt_AS_LONG": 1, + "BN_bin2bn": 3, + "PyCFunction": 1, + "__Pyx_GOTREF": 60, + "the": 178, + "*instance": 1, + "STATIC_ASSERT": 5, + "__pyx_k__shape": 1, + "__Pyx_RaiseNeedMoreValuesError": 1, + "<google/protobuf/unknown_field_set.h>": 1, + "UnicodeCache": 3, + "__Pyx_PySequence_GetSlice": 2, + "V8_SCANNER_H_": 3, + "w": 1, + "layout": 1, + "SCI_LINEDOWN": 1, + "QVector": 2, + "category": 2, + "Key_Delete": 1, + "key2.GetPubKey": 1, + "your": 3, + "DISALLOW_COPY_AND_ASSIGN": 2, + "Next": 3, + "uint160": 8, + "document.": 8, + "__Pyx_CIMAG": 4, + "start": 11, + "SCI_DOCUMENTSTART": 1, + "__pyx_k__I": 2, + "BN_CTX": 2, + "kMaxAsciiCharCodeU": 1, + "kGrowthFactory": 2, + "PyUnicode_Check": 1, + "__pyx_t_3": 113, + "offsetof": 2, + "Cut": 2, + "IsDefaultIsolate": 1, + "__pyx_f_5numpy__util_dtypestring": 1, + "kASCIISize": 1, + "WordPartLeft": 1, + "<stdexcept>": 1, + "<float,>": 1, + "*eckey": 2, + "PROTOBUF_protocol_2dbuffer_2eproto__INCLUDED": 3, + "__pyx_k_tuple_13": 1, + "__pyx_L1_error": 88, + "*__pyx_v_data_np": 2, + "__Pyx_DECREF": 66, + "npy_clongdouble": 1, + "__pyx_k_9": 1, + "qkey": 2, + "CYTHON_INLINE": 68, + "ScanLiteralUnicodeEscape": 3, + "is_unicode": 1, + "EC_POINT_set_compressed_coordinates_GFp": 1, + "source_pos": 10, + "IsDecimalDigit": 2, + "line.": 33, + "seed": 2, + "__Pyx_PyInt_AsSignedChar": 1, + "(": 2438, + "buffer_cursor_": 5, + "ExternalReference": 1, + "BN_mod_sub": 1, + "Constructs": 1, + "__pyx_int_15": 1, + "PageUpExtend": 1, + "PyLong_FromSize_t": 1, + "LineUpExtend": 1, + "SCI_NEWLINE": 1, + "__pyx_v_info": 33, + "current_.location": 2, + "from._has_bits_": 1, + "__cplusplus": 10, + "runtime_error": 2, + "struct": 8, + "RPAREN": 2, + "*__pyx_v_info": 4, + "Undo": 2, + "InternalRegisterGeneratedMessage": 1, + "is": 35, + "__Pyx_PyInt_AsSignedLongLong": 1, + "RBRACK": 2, + "Location": 14, + "utf8_decoder": 1, + "*__pyx_n_s__range": 1, + "PageDownExtend": 1, + "Backtab": 1, + "<QWebFrame>": 1, + "If": 4, + "make": 1, + "*__pyx_v_descr": 2, + "y*width": 1, + "Py_False": 2, + "De": 1, + "likely": 15, + "SCI_SELECTALL": 1, + "*env": 1, + "PyFloat_AS_DOUBLE": 1, + "ASSIGN_BIT_XOR": 1, + "ourselves": 1, + "*__pyx_n_s__format": 1, + "GIVEREF": 1, + "envvar.mid": 1, + "Py_REFCNT": 1, + "message": 2, + "cu_array": 4, + "npy_int8": 1, + "__pyx_clineno": 80, + "message_type": 1, + "ILLEGAL": 120, + "PyBytes_AsStringAndSize": 1, + "__Pyx_PyBool_FromLong": 1, + "SCI_CHARLEFT": 1, + "EnforceFlagImplications": 1, + "__Pyx_PyBytes_AsUString": 1, + "vchPrivKey": 1, + "LiteralScope*": 1, + "tp_name": 4, + "__Pyx_GetAttrString": 2, + "PyObject_GetAttrString": 3, + "NPY_LONGDOUBLE": 1, + "__Pyx_RaiseTooManyValuesError": 1, + "private": 12, + "tp_as_mapping": 3, + "protobuf_AssignDesc_protocol_2dbuffer_2eproto": 4, + "HomeRectExtend": 1, + "ob_size": 1, + "ret": 24, + "PyInstanceMethod_New": 1, + "FatalProcessOutOfMemory": 1, + "Methods": 1, + "PageUp": 1, + "Python.": 1, + "*__pyx_k_tuple_16": 1, + "npy_uint64": 1, + "ZoomIn": 1, + "R": 6, + "__Pyx_PyInt_AsSignedShort": 1, + "character": 8, + "GT": 1, + "IsLineTerminator": 6, + "__pyx_v_d": 2, + ".real": 3, + "kUndefinedValue": 1, + "GoogleOnceInit": 1, + "Env": 13, + "it.": 2, + "EC_KEY_set_conv_form": 1, + "__pyx_k__do_awesome_work": 1, + "*dict": 1, + "fatherIndex": 1, + "DL_IMPORT": 2, + "CharLeft": 1, + "NPY_UINT": 2, + "myclass.nextItemsIndices": 2, + "cudaCreateChannelDesc": 1, + "env_instance": 3, + "DeleteLineRight": 1, + "__pyx_kp_u_11": 1, + "__imag__": 1, + "one": 42, + "__stdcall": 2, + "ZoomOut": 1, + "StackFrame": 1, + "able": 1, + "abs": 2, + "__pyx_t_5numpy_complex_t": 1, + "*sor": 1, + "virtual": 10, + "Vector": 13, + "PyLong_Type": 1, + "kNullValue": 1, + "n": 28, + "SCI_WORDPARTLEFTEXTEND": 1, + "PrinterMode": 1, + "EC_POINT_new": 4, + "phantom": 1, + "nBitsR": 3, + "b.vchPubKey": 3, + "FLAG_force_marking_deque_overflows": 1, + "__Pyx_TypeTest": 4, + "CScriptID": 3, + "OR": 1, + "*ctx": 2, + "Encoding": 3, + "TokenDesc": 3, + "next_.location.end_pos": 4, + "protoc": 2, + "__pyx_t_float_complex_from_parts": 1, + "npy_intp": 10, + "PyNumber_TrueDivide": 1, + "SCI_CLEAR": 1, + "PyBUF_ANY_CONTIGUOUS": 1, + "|": 8, + "__pyx_v_end": 2, + ".imag": 3, + "**type": 1, + "_has_bits_": 14, + "__pyx_L14": 18, + "__Pyx_c_absf": 3, + "Something": 1, + "*msglen": 1, + "QPainter": 2, + "__pyx_k_11": 1, + "npy_uint16": 1, + "value": 18, + "literal_buffer2_": 2, + "visible": 6, + "DocumentEnd": 1, + "SCI_DOCUMENTENDEXTEND": 1, + "backing_store_": 7, + "SCI_WORDRIGHTEXTEND": 1, + "__pyx_t_8": 16, + "__pyx_filename": 79, + "gridDim": 2, + "data": 2, + "TerminateLiteral": 2, + "_cached_size_": 7, + "PyBUF_SIMPLE": 1, + "**tb": 1, + "AND": 1, + "Please": 3, + "*name": 6, + "LineEndDisplayExtend": 1, + "is_ascii_": 10, + "enc": 1, + "*__pyx_t_11": 1, + "PyArray_Descr": 6, + "The": 8, + "SCI_DELWORDRIGHT": 1, + "*R": 1, + "__pyx_ptype_5numpy_ndarray": 2, + "__Pyx_ExportFunction": 1, + "location.beg_pos": 1, + "BN_mul_word": 1, + "-": 227, + "__pyx_v_self": 16, + "__Pyx_PyInt_AsUnsignedShort": 1, + "after": 1, + "want": 2, + "development": 1, + "BIT_XOR": 1, + "__pyx_m": 4, + "real": 2, + "GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET": 3, + "__Pyx_DOCSTR": 3, + "mutable_unknown_fields": 4, + "QT_END_NAMESPACE": 1, + "__pyx_ptype_5numpy_dtype": 1, + "Py_None": 38, + "__pyx_v_typenum": 6, + "__Pyx_c_sumf": 2, + "npy_cfloat": 1, + "InternalAddGeneratedFile": 1, + "PyBUF_ND": 2, + "LBRACK": 2, + "HomeExtend": 1, + "FLAG_stress_compaction": 1, + "binary_million": 3, + "tell": 1, + "__pyx_v_answer_ptr": 2, + ";": 2308, + "enum": 6, + "<quint32>": 1, + "down": 12, + "static_descriptor_initializer_protocol_2dbuffer_2eproto_": 1, + "is_next_literal_ascii": 1, + "__pyx_kp_s_1": 1, + "ecsig": 3, + "__pyx_v_data_np": 10, + "Utils": 4, + "long": 5, + "protobuf_RegisterTypes": 2, + "CONDITIONAL": 2, + "sub": 2, + "unsigned": 22, + "double": 23, + "check": 2, + "*__pyx_kp_u_5": 1, + "__pyx_t_5numpy_ulong_t": 1, + "PyBytes_Concat": 1, + "<dbDataStructure*>": 1, + "SCI_DOCUMENTEND": 1, + "val": 3, + "findScript": 1, + "should": 1, + "Py_EQ": 6, + "__pyx_k__Zd": 2, + "inner_work_1d": 2, + "__Pyx_c_eqf": 2, + "__LINE__": 84, + "<map>": 1, + "__pyx_pf_5numpy_7ndarray_1__releasebuffer__": 2, + "bool": 99, + "false": 43, + "PyExc_SystemError": 3, + "random_bits": 2, + "private_random_seed": 1, + "_MSC_VER": 3, + "__pyx_k____main__": 1, + "PyArrayObject": 19, + "*__pyx_filename": 1, + "returned": 2, + "vchSig.resize": 2, + "ScanHexNumber": 2, + "__pyx_t_5numpy_int16_t": 1, + "PyNumber_Divide": 1, + "for": 18, + "code_unit_count": 7, + "LineCopy": 1, + "SUB": 1, + "__pyx_v_i": 6, + "*__pyx_t_3": 4, + "HomeDisplay": 1, + "EC_KEY_get0_group": 2, + "*Env": 1, + "xFEFF": 1, + "PyErr_Occurred": 2, + "scicmd": 2, + "cudaUnbindTexture": 1, + "FireCallCompletedCallback": 2, + "next_.location": 1, + "start_position": 2, + "elsize": 1, + "cabsf": 1, + "app.setApplicationVersion": 1, + "fCompressed": 3, + "ByteSize": 2, + "control": 1, + "__pyx_self": 2, + "*__pyx_builtin_range": 1, + "npy_ulong": 1, + "Execute": 1, + "e": 14, + "previous": 5, + "argument": 1, + "literal_chars": 1, + "character.": 9, + "Utf8Decoder": 2, + "VerticalCentreCaret": 1, + "other": 7, + "*__pyx_f_5numpy_PyArray_MultiIterNew3": 2, + "*__Pyx_Import": 1, + "Complete": 1, + "instance.": 2, + "priv_key": 2, + "<uint32_t*>": 1, + "literal_length": 1, + "__pyx_t_double_complex": 27, + "CharRightExtend": 1, + "<float>": 1, + "FinishContext": 1, + "s": 9, + "harmony_scoping_": 4, + "SCI_DELETEBACKNOTLINE": 1, + "PyArray_DATA": 1, + "*__pyx_n_s__strides": 1, + "#ifndef": 23, + "PyVarObject*": 1, + "PyUnicode_Type": 2, + "Key_Up": 1, + "blockIdx.y*blockDim.y": 1, + "utf16_literal": 3, + "MakeNewKey": 1, + "__pyx_k__range": 1, + "COMPRESSED": 1, + "<const>": 12, + "kMinConversionSlack": 1, + "SetPubKey": 1, + "area": 5, + "WordLeftEndExtend": 1, + "PyInt_AsLong": 2, + "PyNumber_Int": 1, + "use": 1, + "clear": 2, + "NPY_DOUBLE": 3, + "QIcon": 1, + "kNoParsingFlags": 1, + "or": 10, + "MergePartialFromCodedStream": 2, + "*__pyx_pf_13wrapper_inner_pure_py_test": 2, + "__Pyx_PyInt_AsSignedLong": 1, + "ParaDown": 1, + "line": 10, + "metadata.reflection": 1, + "PyTuple_CheckExact": 1, + "__Pyx_SET_CIMAG": 2, + "PyFloat_AsDouble": 1, + "<<": 19, + "reinterpret_cast": 7, + "scialtkey": 1, + "V8": 21, + "__pyx_k_5": 1, + "WordLeft": 1, + "BIGNUM": 9, + "QsciPrinter": 9, + "*unused": 2, + "__pyx_t_5numpy_intp_t": 1, + "__pyx_t_5numpy_int8_t": 1, + "octal_position": 1, + "PyBytes_AsString": 2, + "__Pyx_BUILTIN_MODULE_NAME": 2, + "report": 2, + "EC_GROUP_get_degree": 1, + "SCI_PARADOWNEXTEND": 1, + "<Qsci/qsciscintilla.h>": 1, + "__Pyx_c_neg": 2, + "ConvertToUtf16": 2, + "DIV": 1, + "description": 5, + "ASSIGN_SAR": 1, + "*__pyx_int_15": 1, + "*__pyx_builtin_ValueError": 1, + "LineScrollDown": 1, + "regenerate": 1, + "SCI_SCROLLTOEND": 1, + "selection": 39, + "xFFFE": 1, + "EnterDefaultIsolate": 1, + "SCI_VCHOMEWRAP": 1, + "PyObject": 221, + "*__pyx_v_d": 2, + "__pyx_v_ndim": 6, + "*from_list": 1, + "CYTHON_REFNANNY": 3, + "GTE": 1, + "SCI_LINECOPY": 1, + "io": 4, + "label": 1, + "*__pyx_n_s__shape": 1, + "npy_int16": 1, + "backing_store_.start": 5, + "2": 1, + "myclass.fatherIndex": 2, + "loadJSForDebug": 2, + "__pyx_k__wrapper_inner": 1, + "version": 4, + "QsciCommandSet": 1, + "PERIOD": 1, + "*__pyx_kp_s_3": 1, + "Toggle": 1, + "PySequence_SetSlice": 2, + "group": 12, + "name_": 30, + "please": 1, + "QByteArray": 1, + "uint64_t": 2, + "__pyx_r": 39, + "*__pyx_n_s__RuntimeError": 1, + "space": 2, + "*e": 1, + "QT_VERSION": 1, + "EC_KEY": 3, + "env": 3, + "__Pyx_c_prodf": 2, + "SCI_STUTTEREDPAGEUPEXTEND": 1, + "GetPrivKey": 1, + "at": 4, + "ParaUpExtend": 1, + "PyMethodDef": 1, + "*__pyx_int_5": 1, + "<QString>": 1, + "Isolate*": 6, + "PyInt_Type": 1, + "Each": 1, + "__pyx_t_10": 7, + "*__Pyx_PyInt_to_py_Py_intptr_t": 1, + "__Pyx_ErrRestore": 1, + "SharedDtor": 3, + "consume": 2, + "next_.location.beg_pos": 3, + "being": 2, + "*s": 1, + "protobuf_AssignDescriptors_once_": 2, + "__Pyx_NAMESTR": 3, + "valid": 2, + "SCI_VERTICALCENTRECARET": 1, + "indexOfEquals": 5, + "printer": 1, + "__pyx_v_child": 8, + "SCI_PAGEDOWNRECTEXTEND": 1, + "MS_WINDOWS": 2, + "Indent": 1, + "view": 2, + "__PYX_HAVE_API__wrapper_inner": 1, + "SelectionLowerCase": 1, + "wrong": 1, + "qaltkey": 2, + "PyTypeObject": 2, + "__pyx_L0": 24, + "*__pyx_n_s__numpy": 1, + "HandleScopeImplementer*": 1, + "ASSIGN_MOD": 1, + "Command": 4, + "DocumentStart": 1, + "printRange": 2, + "SCI_ZOOMIN": 1, + "PY_SSIZE_T_MAX": 1, + "PY_MAJOR_VERSION": 10, + "*__pyx_t_8": 1, + "Py_INCREF": 3, + "GetDataStartAddress": 1, + "ndim": 2, + "<IdentifierPart,>": 1, + "ECDSA_verify": 1, + "DeleteWordLeft": 1, + "IdleNotification": 3, + "uc32": 19, + "Destroys": 1, + "size_t": 5, + "myclass.data": 4, + "j": 4, + "<CallCompletedCallback>": 3, + "sor": 3, + "WordLeftEnd": 1, + "<QFile>": 1, + "SetEntropySource": 2, + "DO_": 4, + "expected_length": 4, + "PyInt_AsSsize_t": 2, + "SCI_MOVESELECTEDLINESDOWN": 1, + "ExpandBuffer": 2, + "b.fSet": 2, + "PyLong_FromLong": 1, + "kMaxGrowth": 2, + "__Pyx_c_eq": 2, + "__pyx_t_5numpy_int32_t": 1, + "<QVariantMap>": 2, + "*suboffsets": 1, + "next_.literal_chars": 13, + "x": 48, + "centre": 1, + "myclass": 1, + "__Pyx_SetAttrString": 2, + "kIsIdentifierStart": 1, + "PageUpRectExtend": 1, + "__pyx_L10": 2, + "BN_num_bits": 2, + "scikey": 1, + "binding": 3, + "set_name": 7, + "PyBytes_Check": 1, + "type*": 1, + "PyBytes_CheckExact": 1, + "because": 2, + "*default_instance_": 1, + "PyArray_STRIDES": 2, + "__pyx_t_4": 35, + "xx": 1, + "DeleteBackNotLine": 1, + "pub_key": 6, + "__inline__": 1, + "vchPubKey": 6, + "__pyx_k_tuple_14": 1, + "headers.": 3, + "kAllowLazy": 1, + "dbDataStructure*": 1, + "<openssl/ecdsa.h>": 1, + "printing.": 2, + "Key_Escape": 1, + "if": 296, + "ob_type": 7, + "<QObject>": 1, + "example": 1, + ".Equals": 1, + "ParaUp": 1, + ")": 2440, + "ScrollToStart": 1, + "*__pyx_v_data_ptr": 2, + "IsWhiteSpace": 2, + "in_character_class": 2, + "setFullPage": 1, + "cmd": 1, + "Use": 1, + "document": 16, + "it": 2, + "scik": 1, + "ASSIGN_SUB": 1, + "__pyx_k__descr": 1, + "__pyx_k__f": 2, + "__Pyx_PyInt_AsUnsignedChar": 1, + "READWRITE": 1, + "SetPrivKey": 1, + "init_once": 2, + "*qsCmd": 1, + "width": 5, + "SetCompactSignature": 2, + "CTRL": 1, + "protobuf": 72, + "IsIdentifierStart": 2, + "StaticResource": 2, + "char*": 14, + "one_char_tokens": 2, + "Convert": 2, + "__pyx_v_sum": 6, + "*__pyx_empty_tuple": 1, + "WriteStringToArray": 1, + "seen_period": 1, + "fSet": 7, + "ElementsAccessor": 2, + "ScanDecimalDigits": 1, + "CallOnce": 1, + "PYREX_WITHOUT_ASSERTIONS": 1, + "ASSIGN_ADD": 1, + "E": 3, + "__Pyx_c_negf": 2, + "RandomPrivate": 2, + "BN_CTX_new": 2, + "painter": 4, + "__pyx_t_5numpy_uintp_t": 1, + "__pyx_t_5numpy_uint8_t": 1, + "*x": 1, + "default": 4, + "PyArray_NDIM": 1, + "Swap": 2, + "PyString_GET_SIZE": 1, + "cudaChannelFormatDesc": 1, + "kLanguageModeMask": 4, + "ENV_H": 3, + "ScanIdentifierSuffix": 1, + "Extend": 33, + "extend": 2, + "exceptionHandler": 2, + "SHL": 1, + "PyNumber_Remainder": 1, + "SCI_STUTTEREDPAGEUP": 1, + "UseCrankshaft": 1, + "__pyx_v_e": 1, + "*__pyx_n_s__readonly": 1, + "SCI_LINEENDWRAP": 1, + "Py_LT": 2, + "CLASSIC_MODE": 2, + "binding.": 1, + "__pyx_L5": 6, + "SCI_UNDO": 1, + "a.vchPubKey": 3, + "Py_XDECREF": 3, + "two": 1, + "rectangular": 9, + "vchSig.size": 2, + "ScanNumber": 3, + "Used": 1, + "a": 84, + "literal_ascii_string": 1, + "EC_KEY_free": 1, + "dst": 2, + "part.": 4, + "__Pyx_c_is_zerof": 3, + "WordRightEndExtend": 1, + "PyObject*": 16, + "newer": 2, + "SCI_UPPERCASE": 1, + "PARSE": 1, + "__PYX_EXTERN_C": 2, + "b.pkey": 2, + "string*": 11, + "graphics.": 2, + "_WIN32": 1, + "<google/protobuf/descriptor.h>": 1, + "has": 2, + "QT_VERSION_CHECK": 1, + "WordPartRight": 1, + "complete_": 4, + "FLAG_use_idle_notification": 1, + "GetPubKey": 5, + "SetUpJSCallerSavedCodeData": 1, + "ExceptionHandler": 1, + "o": 20, + "__real__": 1, + "nBitsS": 3, + "/8": 2, + "PyIntObject": 1, + "*__Pyx_GetName": 1, + "QObject": 2, + "__Pyx_PyNumber_InPlaceDivide": 2, + "LineDownExtend": 1, + "COLON": 2, + "FFFF": 1, + "unicode_cache_": 10, + "PyLong_AsVoidPtr": 1, + "__pyx_t_5numpy_uint_t": 1, + "SCI_DELLINELEFT": 1, + "OS": 3, + "<google/protobuf/stubs/common.h>": 2, + "install": 1, + "clean": 1, + "__Pyx_WriteUnraisable": 3, + "seen_equal": 1, + "to": 75, + "and": 14 + }, + "Slash": { + "Parser": 1, + "seq": 4, + "for": 2, + "Parser.new": 1, + "ARGV.first": 1, + "node": 2, + "value": 1, + "str": 2, + "ptr=": 1, + ".parse": 1, + "while": 1, + "end": 1, + "current_value": 5, + "chars": 2, + "Sequence": 2, + "]": 1, + "AST": 4, + "_add": 1, + "init": 4, + "class": 11, + "Env.new": 1, + "if": 1, + "length": 1, + "nodes": 6, + "split": 1, + "Loop.new": 1, + "def": 18, + "<": 1, + ")": 7, + "in": 2, + "1": 1, + "}": 3, + "last": 1, + "eval": 10, + "ast.eval": 1, + "char": 5, + "Sequence.new": 1, + "current_value=": 1, + ".": 1, + "env": 16, + "src": 2, + "<%>": 1, + "SyntaxError": 1, + "Inc": 1, + "+": 1, + "Next": 1, + "of": 1, + "stack": 3, + "new": 2, + "parse": 1, + "throw": 1, + "print": 1, + "ast": 1, + "Dec": 1, + ";": 6, + "(": 6, + "unexpected": 2, + "Prev": 1, + "0": 3, + "Env": 1, + "Loop": 1, + "File.read": 1, + "switch": 1, + "memory": 3, + "Input": 1, + "-": 1, + "ptr": 9, + "Output": 1, + "@stack.pop": 1, + "input": 1, + "[": 1, + "_parse_char": 2 + }, + "fish": { + "set_color": 4, + "n": 5, + "set": 49, + "that": 1, + "if": 21, + "full": 4, + "be": 1, + "for": 1, + "functions": 5, + "fish_sigtrap_handler": 1, + "nend": 2, + "h": 1, + "argv": 9, + "work": 1, + "TMPDIR": 2, + "printf": 3, + "mode": 5, + "If": 2, + "e": 6, + "job": 5, + "res": 2, + "__fish_sysconfdir/functions": 1, + "cmd": 2, + "init": 5, + "_": 3, + "none": 1, + "self": 2, + "read": 1, + "to": 1, + "__fish_sysconfdir/completions": 1, + "else": 3, + "path_list": 4, + "normal": 2, + "/usr/local/sbin": 1, + "is": 3, + "fish_indent": 2, + "red": 2, + "not": 8, + "S": 1, + "PATH": 6, + ".": 2, + "eval": 5, + "funcname": 14, + "(": 7, + "expect": 1, + "/sbin": 1, + "echo": 3, + "__fish_bin_dir": 1, + "%": 2, + "/tmp": 1, + "eval.": 1, + "l": 15, + "configdir/fish/completions": 1, + "/usr/sbin": 1, + "i": 5, + "on": 2, + "fish_complete_path": 4, + "prompt": 2, + "f": 3, + "help": 1, + "configdir": 2, + "no": 2, + "c": 1, + "__fish_config_interactive": 1, + "USER": 1, + "/.config": 1, + "do": 1, + "test": 7, + ";": 7, + "status": 7, + "stat": 2, + "begin": 2, + "using": 1, + "behave": 1, + "enable": 1, + "commands": 1, + "]": 13, + "/bin": 1, + "control": 5, + "used": 1, + "/usr/X11R6/bin": 1, + "|": 3, + "/usr/local/bin": 1, + "fish_function_path": 4, + "breakpoint": 1, + "TRAP": 1, + "shadowing": 1, + "it": 1, + "don": 1, + "like": 2, + "in": 2, + "shell": 1, + "end": 33, + "s": 1, + ")": 7, + "an": 1, + "the": 1, + "p": 1, + "editor_cmd": 2, + "should": 2, + "&": 1, + "we": 2, + "or": 3, + "__fish_datadir/functions": 3, + "#": 18, + "XDG_CONFIG_HOME": 2, + "fish_prompt": 1, + "executed.": 1, + "switch": 3, + "/usr/xpg4/bin": 3, + "g": 1, + "signal": 1, + "funced": 3, + "__fish_datadir/completions": 3, + "function": 6, + "d": 3, + "was": 1, + "less": 1, + "wont": 1, + "__fish_on_interactive": 2, + "real": 1, + "return": 6, + "<": 1, + "random": 2, + "indent": 1, + "are": 1, + "type": 1, + "__fish_print_help": 1, + "while": 2, + "[": 13, + "code": 1, + "description": 2, + "editor": 7, + "scope": 1, + "this": 1, + "z": 1, + "fish": 3, + "IFS": 4, + "interactive": 8, + "case": 9, + "/usr/bin": 1, + "configdir/fish/functions": 1, + "EDITOR": 1, + "root": 1, + "-": 102, + "interactively": 1, + "event": 1, + "rm": 1, + "/dev/null": 2, + "t": 2, + "tmpname": 8, + "q": 9, + "contains": 4, + "since": 1 + }, + "Shell": { + "sharing": 1, + "versionLine##build.scala.versions": 1, + "rvm_rvmrc_files": 3, + "binding": 2, + "xmms": 2, + "silent": 1, + "SNAPSHOT": 3, + "rvm_path/scripts": 1, + "exit": 10, + "same": 2, + "help": 5, + "xdvi": 2, + "dirname": 1, + "build_props_scala": 1, + "file": 9, + "path": 13, + "gview": 2, + "mv": 1, + "/usr/local/bin": 6, + "which": 10, + "x86_64": 1, + "verbose": 6, + "opt": 3, + "rvim": 2, + "pkgver": 1, + "bg": 4, + "accomplish": 1, + "<integer>": 1, + "completes": 10, + "texi2dvi": 2, + "log": 2, + "build.scala.versions": 1, + "/": 2, + "away": 1, + "SHEBANG#!sh": 2, + "dirpersiststore": 2, + "alert": 1, + "dlog": 8, + "while": 3, + "PATH": 14, + "/usr/bin/clear": 2, + "be": 3, + "ThisBuild": 1, + "scalacOptions": 3, + "given": 2, + "elif": 4, + "more": 3, + "pkgrel": 1, + "scala": 3, + "colors": 2, + "wget": 2, + "scalac_args": 4, + "moving": 1, + "fun": 2, + "-": 391, + "/tmp": 1, + "killed": 2, + "In": 1, + "default": 4, + "create": 2, + "residual_args": 4, + "POSTFIX": 1, + "stuff": 3, + "/usr/openwin/bin": 4, + "package": 1, + "X": 54, + "pipe": 2, + "ivy": 2, + "releases": 1, + "up": 1, + "that": 1, + "command": 5, + "/usr/xpg4/bin": 4, + "gqmpeg": 2, + "/.sbt/": 1, + "make_release_url": 2, + "tools.sbt": 3, + "Previous": 1, + "+": 1, + "/go/src/github.com/dotcloud/docker/docker": 1, + "after": 2, + "put": 1, + "diff": 2, + "#Share": 2, + "bzegrep": 2, + "them": 1, + "use": 1, + "java_cmd": 2, + "sbt_opts_file": 1, + "do": 8, + "PKG": 12, + "i686": 1, + "iflast": 1, + "properties": 1, + "property": 1, + "disown": 2, + "is": 11, + ")": 154, + "PREFIX": 1, + "any": 1, + "alias": 42, + "term": 2, + "/.bashrc": 3, + "latex": 2, + "CLICOLOR": 2, + "emacs": 2, + "rgvim": 2, + "HOME/.zsh/func": 2, + "get": 6, + "there": 2, + "codecache": 1, + "sbt.version": 3, + "/usr/share/man": 2, + "iptables": 1, + "pkgdesc": 1, + "shopt": 13, + "//go.googlecode.com/files/go1.1.1.linux": 1, + "caches": 1, + "version0": 2, + "some": 1, + "when": 2, + "versionLine##sbt.version": 1, + "}": 61, + "test": 1, + "Detected": 1, + "order": 1, + "%": 5, + "unalias": 4, + "options": 8, + "global": 1, + "perm": 6, + "update_build_props_sbt": 2, + "P": 4, + "istrip": 2, + "mozilla": 2, + "argumentCount": 1, + "keep": 3, + "{": 63, + "##": 28, + "Solomon": 1, + "tools": 1, + "Hykes": 1, + "cd": 11, + "#": 53, + "#Erase": 2, + "pdflatex": 2, + "anything": 2, + "appendhistory": 2, + "turning": 1, + "rvm_is_not_a_shell_function": 2, + "/dev/null": 6, + "y": 5, + "su": 2, + "duplicates": 2, + "netscape": 2, + "port": 1, + "bare": 1, + "make_snapshot_url": 2, + "L": 1, + "rbenv": 2, + "no": 16, + "doesn": 1, + "die": 2, + "Updated": 1, + "||": 12, + "debug": 11, + "HISTCONTROL": 2, + "pdftex": 2, + "jvm": 2, + "output": 1, + "vlog": 1, + "#Import": 2, + "xpdf": 2, + "mkdir": 2, + "maybe": 1, + "setting": 2, + "build.properties": 1, + "dvips": 2, + "echo": 71, + "ubuntu": 1, + "u": 2, + "PS1": 2, + "latest_28": 1, + "scala_version": 3, + "rf": 1, + "aufs": 1, + "wine": 2, + "format...": 2, + "bzdiff": 2, + "jobs": 4, + "freeamp": 2, + "links": 2, + "_gitname": 1, + "less": 2, + "conflicting": 1, + "so": 1, + "dotfiles": 1, + "cmd": 1, + "..": 2, + "/sbin": 2, + "/.dotfiles/z": 4, + "mpg123": 2, + "s": 14, + "incappendhistory": 2, + "vi": 2, + "extglob": 2, + "the": 17, + "/.zsh_history": 2, + "/.ivy2": 1, + "F": 1, + "build_props_sbt": 3, + "This": 1, + "config": 4, + "as": 2, + "crontab": 1, + "q": 8, + "or": 3, + "/usr/local/man": 2, + "jvm_opts_file": 1, + "nocasematch": 1, + "memory": 3, + "just": 2, + "history": 18, + "many": 2, + "D": 2, + "mpg321": 2, + "github.com/gorilla/context/": 1, + "./project": 1, + "argumentCount=": 1, + "jar_file": 1, + "execRunner": 2, + "default_sbt_opts": 1, + "exec": 3, + "o": 3, + ".*": 2, + "edit": 2, + "Fh": 2, + "reset": 1, + "sbtargs": 3, + "ef": 1, + "actually": 2, + "realplay": 2, + "progcomp": 2, + "java_args": 3, + "typeset": 5, + "ggv": 2, + "#CDPATH": 2, + "directory": 5, + "printf": 4, + "/usr/sbin": 6, + "on": 4, + "readonly": 4, + "bindings": 2, + "usage": 2, + "stty": 2, + "HISTFILE": 2, + "zfgrep": 2, + "@": 3, + "bzcmp": 2, + "tar": 1, + "bind": 4, + "openssl": 1, + "k": 1, + "UID": 1, + "#How": 2, + "gv": 2, + "zsh/z.sh": 2, + "display": 2, + "for": 7, + "<version>": 1, + "continue": 1, + "cd..": 2, + "other": 2, + "//": 3, + "Update": 1, + "EOM": 3, + "normal": 1, + "github.com/gorilla/mux/": 1, + "gt": 1, + "ANSI": 1, + "print": 1, + "Make": 2, + "i": 2, + "/.sbt/boot": 1, + "bottles": 6, + "bzme": 2, + "ps": 2, + "passwd": 2, + "TERM": 4, + "shorter": 2, + "with": 12, + "uncompress": 2, + "<": 2, + "system": 1, + "lot": 1, + "zcat": 2, + "ignoreboth": 2, + "fi": 34, + "#function": 2, + "across": 2, + "here": 1, + "Overriding": 1, + "disk.": 1, + "case": 9, + "lynx": 2, + "version": 12, + "quit": 2, + "addResidual": 2, + "unset": 10, + "zmore": 2, + "not": 2, + "opts": 1, + "settings/plugins": 1, + "remote.origin.url": 1, + "insensitive": 1, + "znew": 2, + "fg": 2, + "head": 1, + "e": 4, + "helptopics": 2, + "agnostic": 2, + "of": 6, + "see": 4, + "disk": 5, + "shared": 1, + "project": 1, + "get_mem_opts": 3, + "preserved": 1, + "/usr/local/sbin": 6, + "environment": 2, + "home": 2, + "playmidi": 2, + "inc": 1, + "/opt/local/sbin": 2, + "c": 2, + "explicit": 1, + "line": 1, + "The": 1, + "dviselect": 2, + "/go/src/github.com/dotcloud/docker": 1, + "zipinfo": 2, + "curl": 8, + "c699": 1, + "/opt/local/bin": 2, + "J*": 1, + "stripped": 1, + "/go/bin": 1, + "<\"$sbt_opts_file\">": 1, + "series": 1, + "false": 2, + "a": 12, + "precmd": 2, + "&&": 65, + "color": 1, + "quiet": 6, + "aforementioned": 1, + ".bashrc": 1, + "repository": 3, + "docker": 1, + "whoami": 2, + "#sudo": 2, + "port.": 1, + "jar_url": 1, + "ogg123": 2, + "addResolver": 1, + "done": 8, + "long": 2, + "msg": 4, + "only": 6, + "pwd": 1, + "gives": 1, + "pi": 1, + "ln": 1, + "#Append": 2, + "<solomon@dotcloud.com>": 1, + "opera": 2, + "return": 3, + "rvm_ignore_rvmrc": 1, + "checkout": 3, + "##############################################################################": 16, + "]": 85, + "combined": 1, + "fail": 1, + "pg": 2, + "//github.com/bumptech/stud.git": 1, + "bunzip2": 2, + "github.com/kr/pty": 1, + "ll": 2, + "0": 1, + "bzgrep": 2, + "HISTIGNORE": 2, + "maintainer": 1, + "xanim": 2, + "echoerr": 3, + "[": 85, + "us": 1, + "all": 1, + "pe": 1, + "/usr/bin": 8, + "#.": 2, + "d61e5": 1, + "stopped": 4, + ".": 5, + "#Immediately": 2, + "zegrep": 2, + "Turn": 1, + "mode": 2, + "offline": 3, + "runner": 1, + "remote.origin.pushurl": 1, + "export": 25, + "ENV...": 2, + "name": 1, + "launch": 1, + "dir": 3, + "sbt_commands": 2, + "cron": 1, + "git": 16, + "sbt_snapshot_version": 2, + "symlinks": 1, + "/usr/sfw/bin": 4, + "job": 3, + "shell": 4, + "/go/src/": 6, + "slitex": 2, + "W": 2, + "this": 6, + "rehash": 2, + "pdfjadetex": 2, + "lxc": 1, + "require_arg": 12, + "lines": 2, + "then": 41, + "*": 11, + "ldflags": 1, + "it": 2, + "galeon": 2, + "source": 7, + "provides": 1, + "script_path": 1, + "amd64.tar.gz": 1, + "U": 2, + "save": 4, + "process_args": 2, + "addScalac": 2, + "above": 1, + "sbt_create": 2, + "entries": 2, + "endif": 2, + "update": 2, + "matching": 1, + "like": 1, + "dotfile": 1, + "(": 107, + "read": 1, + "S": 2, + "/etc/apt/sources.list": 1, + "project/build.properties": 9, + "b36453141c": 1, + "Dm755": 1, + "groups": 2, + "start": 1, + "cat": 3, + "category": 1, + "target": 1, + "&": 5, + "add": 1, + "qiv": 2, + "java": 2, + "noshare_opts": 1, + "overwrite": 3, + "histappend": 2, + "http": 3, + "rgview": 2, + "rmdir": 2, + "foodforthought.jpg": 1, + "were": 1, + "SHEBANG#!zsh": 2, + "|": 17, + "commands": 8, + "even": 3, + "in": 25, + "O": 1, + "perl": 3, + "REV": 6, + "else": 10, + "rm": 2, + "xfig": 2, + "snapshot": 1, + "addSbt": 12, + "interactive": 1, + "true": 2, + "z": 12, + "pull": 3, + "depends": 1, + "rview": 2, + "understand": 1, + "eq": 1, + "highest.": 1, + "JVM": 1, + "run": 13, + "stud": 4, + "env": 4, + "jadetex": 2, + "type": 5, + "DISPLAY": 2, + "Debug": 1, + "sbt_snapshot": 1, + "make": 6, + "dillo": 2, + "filenames": 2, + "default_sbt_mem": 2, + "sbt_launch_dir": 3, + "x": 1, + "zgrep": 2, + "java_home": 1, + "/usr": 1, + "zcmp": 2, + "can": 3, + "directories": 2, + "erase": 2, + "name##*fo": 1, + "makes": 1, + "automate": 1, + "optionally": 1, + "MANPATH": 2, + "append": 2, + "Random": 2, + "build": 2, + "pkgname": 1, + "tex": 2, + "COLORTERM": 2, + "v": 11, + "xine": 2, + "IFS": 1, + "jar": 3, + "latest_29": 1, + "rupa/z.sh": 2, + "make_url": 3, + "readlink": 1, + "SHEBANG#!bash": 8, + "find": 2, + "helptopic": 2, + "I": 2, + "sbt_artifactory_list": 2, + "script_name": 2, + "sbt_dir": 2, + "set": 21, + "intelligent": 2, + "into": 3, + "t": 3, + "zless": 2, + "t.go": 1, + "lowest": 1, + "<<": 2, + "sbt_groupid": 3, + "timidity": 2, + "if": 39, + "at": 1, + "arg": 3, + "mem": 4, + "old": 4, + "conflicts": 1, + "variables": 2, + "Ivy": 1, + "files": 1, + "r": 17, + "compress": 2, + "awk": 2, + "get_jvm_opts": 2, + "precedence": 1, + "codes": 1, + "fpath": 6, + "/usr/local": 1, + "list": 3, + "way": 1, + "https": 2, + "clone": 5, + "D*": 1, + "p": 2, + "sharehistory": 2, + "Zsh": 2, + "XF": 2, + "xz": 1, + "function": 6, + "process": 1, + "ver": 5, + "sbt_explicit_version": 7, + "eg": 1, + "aviplay": 2, + "view": 2, + "pushd": 2, + "vim": 2, + "#Number": 2, + "#residual_args": 1, + "./build.sbt": 1, + "sbt_jar": 3, + "rvm": 1, + "readline": 2, + "C": 1, + "user": 2, + "man": 6, + "addJava": 9, + "groupid": 1, + "esac": 7, + "n": 22, + "SCREENDIR": 2, + "install": 8, + "residuals": 1, + "boot": 3, + "Usage": 1, + "prefix": 1, + "pattern": 1, + "bzfgrep": 2, + "ping": 2, + "bash...": 2, + "ee": 2, + "args": 2, + "an": 1, + "level": 2, + "local": 22, + "rvmrc": 3, + "A": 10, + "from": 1, + "DESTDIR": 1, + "w3m": 2, + "acroread": 2, + "Disable": 1, + "sbt_mem": 5, + "l": 8, + "xv": 2, + "acquire_sbt_jar": 1, + "_gitroot": 1, + "shift": 28, + "download_url": 2, + "was": 1, + "GOPATH": 1, + "umask": 2, + "gvim": 2, + "overwriting": 2, + "and": 5, + "duplicated": 1, + "open": 1, + "get_script_path": 2, + "URL": 1, + "bzcat": 2, + "/go": 1, + "j": 2, + "org.scala": 4, + "sbt_version": 8, + "versionString": 3, + "versions": 1, + "script": 1, + "to": 33, + "That": 1, + "Error": 1, + "/usr/local/go/bin": 2, + "csh": 2, + "users": 2, + "init.stud": 1, + "<port>": 1, + "share": 2, + "snapshots": 1, + "h": 3, + "does": 1, + "grep": 8, + "zdiff": 2, + "apt": 6, + "choice": 1, + "default_jvm_opts": 1, + "gunzip": 2, + "HISTSIZE": 2, + "terminals": 2, + ";": 138, + "contains": 2, + "versionLine": 2, + ".jobs.cron": 1, + "arch": 1, + "f": 68, + "PROMPT_COMMAND": 2, + "url": 4, + "shows": 1, + "sbt": 18, + "script_dir": 1, + "aliases": 2, + "we": 1, + "current": 1, + "print_help": 2, + "/usr/ccs/bin": 4, + "/opt/mysql/current/bin": 4, + "SAVEHIST": 2, + "origin": 1, + "pre": 1, + "<path>": 3, + "message": 1, + "latest_210": 1, + "GREP_OPTIONS": 1, + "patch": 2, + "d": 9, + "sed": 2, + "go": 2, + "addDebugger": 2, + "value": 1, + "PUSHURL": 1, + "declare": 22, + "dvitype": 2, + "ls": 6, + "libev": 1, + "HISTDUP": 2, + "license": 1, + "batch": 2, + "sbt_release_version": 2, + "complete": 82, + "Bash": 3, + "setopt": 8, + "elinks": 2, + "cdspell": 2, + "S*": 1, + "JAVA_OPTS": 1, + "debugging": 1, + "chattier": 1, + "makedepends": 1, + "disable": 1, + "they": 1, + "rvm_path": 4, + "CGO_ENABLED": 1, + "texi2html": 2, + "unzip": 2, + "/bin": 4, + "makeinfo": 2, + "integer": 1, + "prompt": 2, + "sbt_url": 1, + "/.profile": 2, + "#Where": 2 + }, + "OCaml": { + "hd": 6, + "waiters": 5, + "k": 21, + "map": 3, + "Some": 5, + "value": 3, + "match": 4, + "{": 11, + "mutable": 1, + "end": 5, + "p": 1, + "pcdata": 4, + "get_params": 1, + "]": 13, + "unit": 5, + "option": 1, + "l.waiters": 5, + "rec": 3, + "application_name": 1, + "force": 1, + "x": 14, + "push": 4, + "l.value": 2, + "lazy_from_val": 1, + "struct": 5, + "a_onclick": 1, + "body": 1, + "path": 1, + ")": 23, + "<": 1, + "Example": 1, + "l.push": 1, + "h2": 1, + "}": 13, + "acc": 5, + "shared": 1, + "Html5.D": 1, + "None": 5, + "main": 2, + "Example.register": 1, + "client": 1, + "_": 2, + "fold": 2, + "type": 2, + "get_state": 1, + "title": 1, + "head": 1, + "service": 1, + "Eliom_content": 1, + "Eliom_parameter": 1, + "Lwt.return": 1, + "Base.List.iter": 1, + "with": 4, + "Ops": 2, + "module": 5, + "when": 1, + "Eliom_registration.App": 1, + "html": 1, + "l": 8, + "function": 1, + "tl": 6, + "<->": 3, + "server": 2, + "a": 4, + "(": 21, + ";": 14, + "Option": 1, + "h1": 1, + "Dom_html.window##alert": 1, + "Eliom_service.service": 1, + "|": 15, + "cps": 7, + "Lazy": 1, + "fun": 9, + "Js.string": 1, + "hello_popup": 2, + "make": 1, + "let": 13, + "-": 22, + "@": 6, + "f": 10, + "open": 4, + "[": 13, + "List": 1, + "opt": 2 + }, + "SCSS": { + "padding": 1, + ".border": 1, + ".content": 1, + "blue": 4, + "color": 3, + "border": 2, + "#3bbfce": 1, + "px": 1, + "darken": 1, + "navigation": 1, + "margin": 4, + "/": 2, + "}": 2, + ")": 1, + "%": 1, + "(": 1, + "{": 2, + "-": 3, + ";": 7 + }, + "Lasso": { + "<?LassoScript>": 6, + "occurrence": 2, + "next.": 2, + "2008": 6, + "knop_cache": 2, + "we": 2, + "errors": 12, + "response_filepath": 8, + "Literal": 2, + "//##################################################################": 4, + "except": 2, + "form": 2, + "datatype": 2, + "much": 2, + "when": 10, + "11": 8, + "misplaced": 2, + "comment": 2, + "input": 2, + "#xhtmlparam": 4, + "required=": 2, + "foreachpair": 1, + "QT": 4, + "TODO": 2, + "framework": 2, + "getrecord": 8, + "ibytes": 9, + "out": 2, + "LassoSoft": 1, + "errors.": 2, + "convert": 4, + "#_records": 1, + "merge": 2, + "Cache": 2, + "knop_user": 4, + "PostParams": 1, + "incorrect": 2, + "seconds": 4, + "condition": 4, + "removeleading": 2, + "seed": 6, + "Wiki": 2, + "compatibility": 4, + "hoping": 2, + "priority=": 2, + "than": 2, + "String_Remove": 2, + "tag": 11, + "boolean": 4, + "type": 63, + "doesn": 4, + "matches": 1, + "tagtime": 4, + "or": 6, + "stripbackticks": 2, + "scratch.": 2, + "reaching": 2, + "boilerplate": 2, + "description=": 2, + "consume_string": 1, + "05": 4, + "datasources": 2, + "read": 1, + "eachPair": 1, + "knop_unique": 2, + "json_consume_string": 3, + "Contains": 2, + "-": 2248, + "deserialize": 2, + "Namespace": 1, + "cache_name": 2, + "in.": 2, + "capturesearchvars": 2, + "FileMaker": 2, + "rows": 1, + "too": 4, + "locked": 2, + "excludefield": 1, + "json_serialize": 18, + "#error_lang_custom": 2, + "custom": 8, + "again": 2, + "date": 23, + "String": 1, + "Code": 2, + "host": 6, + "bytes": 8, + "incorporated": 1, + "each": 8, + "identify": 2, + "been": 2, + "else": 32, + "second": 8, + "resultset_count": 6, + "standard": 2, + "23": 4, + "always": 2, + "better": 2, + "find": 57, + "correctly": 2, + "captured": 2, + "Changed": 6, + "verification": 2, + "#output": 50, + "caused": 2, + "&": 21, + "set": 10, + "sense": 2, + "//www.lassosoft.com/json": 1, + "an": 8, + "#sql": 42, + "onassign": 2, + "compatibility.": 2, + "Required": 1, + "Decode_JSON": 2, + "getrecord.": 2, + "properly": 4, + "options": 2, + "<http://json-rpc.org/>": 1, + "cache": 4, + "recorddata": 6, + "check": 6, + "_fields": 1, + "p": 2, + "operations": 2, + "automatically": 2, + "inserting": 2, + "old": 4, + "current_record": 2, + "how": 2, + "parameter.": 2, + "Custom": 2, + "long": 2, + "#value": 14, + "no": 2, + "object": 7, + "generated": 2, + "UTF": 4, + "keys": 6, + "#custom_string": 4, + "knop_cachedelete": 2, + "json_rpccall": 1, + "/define_tag": 36, + "precision": 2, + "querys": 2, + "handling": 2, + "uselimit": 2, + "knop": 6, + "used.": 2, + "Max": 2, + "fixed": 4, + "2007": 6, + "JSON_Records": 3, + "/resultset": 2, + "REALLY": 2, + "that": 18, + "varname": 4, + "Size": 2, + "request": 2, + "loop": 2, + "slower": 2, + "#RandChars": 4, + "/Protect": 1, + "internal": 2, + "json_literal": 1, + "provided": 1, + "10": 2, + "output.": 2, + "readunlock": 2, + "Debug": 2, + "access": 2, + "/Define_Tag": 1, + "new": 14, + "ms": 2, + "remains": 2, + "without": 4, + "Created": 4, + "end": 2, + "string_IsNumeric": 1, + "example.": 2, + "knop_debug": 4, + "thought": 2, + "Object": 2, + "Lasso": 15, + "prototype": 4, + "Loop_Abort": 1, + "}": 18, + "local": 116, + "b": 2, + "/while": 7, + "such": 2, + "#host": 4, + "any": 14, + "retreive": 2, + "#custom_language": 10, + "support": 6, + "#e": 13, + "namespace=": 12, + "copy": 4, + "HHmmssZ": 1, + "04": 8, + "Introduced": 2, + "sql.": 2, + "increments": 2, + "isknoptype": 2, + "reading": 2, + "known": 2, + "knop_base": 8, + "unescape": 1, + "tags": 14, + "also": 5, + "//localhost/lassoapps.8/rpc/rpc.lasso": 1, + "at": 10, + "sure": 2, + "lve": 2, + "since": 4, + "HHmmss": 1, + "SQL": 2, + "tag_name": 2, + "BeginsWith": 1, + "specifying": 2, + "_date_msec": 4, + "__lassoservice_ip__": 2, + "resultset": 2, + "ORDER": 2, + "Escape": 1, + "should": 4, + "First": 4, + "[": 22, + "updates": 2, + "Syntax": 4, + "val": 1, + "adding": 2, + "session": 4, + "separate": 2, + "versions": 2, + "@": 8, + "Done": 2, + "Default": 2, + "warning": 2, + "other": 4, + "cached": 8, + "shown_first": 2, + "it.": 2, + "%": 14, + "lower": 2, + "//bugs.mysql.com/bug.php": 2, + "#id": 2, + "2012": 4, + "While": 1, + "gets": 2, + "asstring": 4, + "ignored": 2, + "Encode_JSON": 1, + "here": 2, + "T": 3, + "specific": 2, + "9": 2, + "instance": 8, + "user": 4, + "asString": 3, + "#maxage": 4, + "_field": 1, + "/inline": 2, + "duration": 4, + "self": 72, + "map": 23, + "StartPosition": 2, + "/While": 1, + "deleterecord": 4, + "#timer": 2, + "decimal": 5, + "loop_abort": 2, + "_return": 1, + "Base": 2, + "//Replace": 1, + "#temp": 19, + "Supports": 4, + "Lasso_TagExists": 1, + "conversion": 4, + "and": 52, + "documentation.": 2, + "to": 98, + "mixed": 2, + "isa": 25, + "transparently": 2, + "provide": 2, + "#delimit": 7, + "from": 6, + "save": 2, + "will": 12, + "_exclude": 1, + "this": 14, + "see": 16, + "error_code": 11, + "able": 14, + "Lasso_UniqueID": 1, + "#numericValue": 4, + "//............................................................................": 2, + "#params": 5, + "#base": 8, + "|": 13, + "Map": 3, + "site": 4, + "help": 10, + "False": 1, + "28": 2, + "TZ": 2, + "variables": 2, + "Thanks": 2, + "a": 52, + "SP": 4, + "false": 8, + "var": 38, + "get": 12, + "Decode_": 1, + "once": 4, + "onconvert": 2, + "readlock": 2, + "Optional": 1, + "03": 2, + "LassoScript": 1, + "honors": 2, + "used": 12, + "Include_URL": 1, + "+": 146, + "variable": 8, + "first": 12, + "addlanguage": 4, + "/If": 3, + "#session": 10, + "priority": 8, + "statement": 4, + "as": 26, + "COUNT": 2, + "whitespace": 3, + "It": 2, + "#tags": 2, + "obytes": 3, + "different": 2, + "stored": 2, + "output": 30, + "u": 1, + "not": 10, + "gmt": 1, + "between": 2, + "</LassoNativeType>": 3, + "<http://www.ietf.org/rfc/rfc4627.txt?number=4627>": 1, + "delimit": 7, + "iterate": 12, + "query.": 2, + "strings": 6, + "BY": 6, + "still": 2, + "Z": 1, + "addrecord": 4, + "/iterate": 12, + "inline": 4, + "replace": 8, + "inlinename.": 4, + "This": 5, + "Implemented": 2, + "//tagswap.net/found_rows": 2, + "json_object": 2, + "session_id": 6, + "export8bits": 6, + "explicitly": 2, + "result": 6, + "define_type": 14, + "databases": 2, + "Get": 2, + "Google": 2, + "all": 6, + "never": 2, + "fallback": 4, + "default": 4, + "stack": 2, + "specified": 8, + "MySQL": 2, + "json_consume_array": 3, + "current": 10, + "knop_knoptype": 2, + "knop_lang": 8, + "array": 20, + "store": 4, + "session_addvar": 4, + "pr": 1, + "avoid": 2, + "n": 30, + "literal": 3, + "||": 8, + "decrypt_blowfish": 2, + "keeplock": 4, + "test": 2, + "Knop": 6, + "db": 2, + "S": 2, + "15": 2, + "8": 6, + "optionally": 2, + "client_ip": 1, + "queries": 2, + "there": 2, + "version": 4, + "All": 4, + "If": 4, + "remove": 6, + "split": 2, + "break": 2, + "performance.": 2, + "contains": 2, + "#data": 14, + "string": 59, + "corresponding": 2, + "well": 2, + "work": 6, + "in": 46, + "renderfooter": 2, + "**/": 1, + "L": 2, + "<http://json.org/>": 1, + "09": 10, + "level": 2, + "run": 2, + "__html_reply__": 4, + "1": 2, + "doctype": 6, + "inaccurate": 2, + "Addedd": 2, + "optional": 36, + "key": 3, + "client_address": 1, + "time": 8, + "earlier": 2, + "unlock": 6, + "use": 10, + "_records": 1, + "field_names": 2, + "{": 18, + "Parameters": 4, + "_output": 1, + "ID": 1, + "create": 6, + "format": 7, + "zero": 2, + "must": 4, + "//fail_if": 6, + "reference": 10, + "longer": 2, + "table": 6, + "properties": 4, + "Looks": 2, + "buffer.": 2, + "response_localpath": 8, + "oncreate": 2, + "returns": 4, + "marker": 4, + "pair": 1, + "double": 2, + "Is": 1, + "Ric": 2, + "construction": 2, + "trace": 2, + "local_defined": 26, + "locking": 4, + "called": 2, + "maxrecords_value": 2, + "available": 2, + "size": 24, + "t": 8, + "http": 6, + "<LassoNativeType>": 3, + "Copyright": 1, + "Moved": 6, + "join": 5, + "#type": 26, + "Useful": 2, + "objects": 2, + "Used": 2, + "supports": 2, + "removed": 2, + "added": 10, + "lock": 24, + "returned": 6, + "improved": 4, + "numbers": 2, + "corrected": 2, + "codes": 2, + "ReturnField": 1, + "both": 2, + "Min": 2, + "EndsWith": 1, + "nicely": 2, + "return": 75, + "foreach": 1, + "2010": 4, + "debug_trace": 2, + "add": 12, + "more": 2, + "unless": 2, + "reached.": 2, + "internally": 2, + "grid": 2, + "define": 20, + "touch": 2, + "keyvalue": 10, + "#cache_name": 72, + "#obytes": 5, + "/if": 53, + "trait_forEach": 1, + "improve": 2, + "it": 20, + "html": 4, + "knoptype": 2, + "found": 5, + "14": 4, + "string_replaceregexp": 8, + "yyyyMMdd": 2, + "JSON_": 1, + "priorityqueue": 2, + "FROM": 2, + "#error_code": 10, + "unescapes": 1, + "//": 169, + "later": 2, + "variable.": 2, + "upper": 2, + "html.": 2, + "lang": 2, + "found_count": 11, + "Internal.": 2, + "handler": 2, + "ignorecase": 12, + "lockfield": 2, + "@#_output": 1, + "supported": 2, + "true": 12, + "f": 2, + "Decoding": 1, + "EndPosition": 2, + "query": 4, + "Add": 2, + "reporting": 2, + "description": 34, + "Finds": 2, + "LIMIT": 2, + "recursion": 2, + "existing": 2, + "saverecord": 8, + "maxage": 2, + "0": 2, + "JSON_RPCCall": 1, + "knop_timer": 2, + "thread": 6, + "are": 4, + "caching": 2, + "Added": 40, + "before": 4, + "returnfield": 1, + "JS": 126, + "method": 7, + "import8bits": 4, + "pre": 4, + "#key": 12, + "interact": 2, + "#anyChar": 2, + "plain": 2, + "keyvalues": 4, + "until": 2, + "releasing": 2, + "start": 5, + "using": 8, + "base": 6, + "serialize": 1, + "&&": 30, + "on": 1, + "if": 76, + "#lock": 12, + "When": 2, + "global": 40, + "up": 4, + "error_lang": 2, + "01": 4, + "vars": 8, + "fastest.": 2, + "touble": 2, + "incremented": 2, + "#seed": 36, + "NOTES": 4, + ")": 639, + "xml": 1, + "example": 2, + "list": 4, + "only": 2, + "debug": 2, + "native": 2, + "queue": 2, + "_unknowntag": 6, + "while": 9, + "was": 6, + "names": 4, + "recordpointer": 2, + "field": 26, + "creating": 4, + "data": 12, + "__jsonclass__": 6, + "s": 2, + "general": 2, + "Seed": 2, + "knop_seed": 2, + "Replace": 19, + "_keyfield": 4, + "fields": 2, + "array.": 2, + "language": 10, + "Make": 2, + "public": 1, + "below": 2, + "most": 2, + "length": 8, + "working": 2, + "messages": 6, + "#endslash": 10, + "Format": 1, + "keyfield": 4, + "one": 2, + "writing": 6, + "Local": 7, + "objects.": 2, + "Second": 1, + "substring": 6, + "chunk": 2, + "entire": 4, + "_knop_data": 10, + "page": 14, + "knop_databaserows": 2, + "json_consume_token": 2, + "error": 22, + "Corrected": 8, + "is": 35, + "records": 4, + "searchresult": 2, + "normal": 2, + "message": 6, + "#item": 10, + "nextrecord": 12, + "CHANGE": 4, + "ctype": 2, + "6": 2, + "token": 1, + "consume_array": 1, + "#ibytes": 17, + "settable": 4, + "index": 4, + "Math_Random": 2, + "error_data": 12, + "update": 2, + "#rest": 1, + "GROUP": 4, + "bom_utf8": 1, + "Else": 7, + "around": 2, + "Extended": 2, + "select": 1, + "instead": 4, + "found.": 2, + "writeunlock": 4, + "member": 10, + "usually": 2, + "e": 13, + "Find": 3, + "problems": 2, + "content_body": 14, + "newoptions": 1, + "adjustments": 4, + "record": 20, + "expression": 6, + "_index": 1, + "atbegin": 2, + "07": 6, + "Lewis": 2, + "*/": 2, + "/": 6, + "Encoding": 1, + "nParameters": 2, + "getstring": 2, + "json_consume_object": 2, + "lasso": 2, + "sql": 2, + "null": 26, + "SQL_CALC_FOUND_ROWS": 2, + "works": 4, + "shortcut": 2, + "through": 2, + "@#errorcodes": 2, + "The": 6, + "Fix": 2, + "simple": 2, + "includes": 2, + "Centralized": 2, + "dummy": 2, + "(": 640, + "case.": 2, + "code": 2, + "iterated.": 2, + "String_IsAlphaNumeric": 2, + "be": 38, + "KeyField": 1, + "documentation": 2, + "already": 2, + "returning": 2, + "values.": 2, + "database": 14, + "relevant": 2, + "Removed": 2, + "r": 8, + "normalize": 4, + "#method": 1, + "exit": 2, + "after": 2, + "common": 4, + "temp": 12, + "initiate": 10, + "exists.": 2, + "removetrailing": 8, + "progress.": 2, + "of": 24, + "recordindex": 4, + "with": 25, + "formatted": 2, + "name": 32, + "#errorcodes": 4, + "<": 7, + "Protect": 1, + "error_msg": 15, + "by": 12, + "backwards": 2, + "#eol": 8, + "suppressed": 2, + "#pr": 2, + "records.": 2, + "define_tag": 48, + "#charlist": 6, + "normally": 2, + "value": 14, + "serialization_reader": 1, + "parameter": 8, + "2009": 14, + "exists": 2, + "have": 6, + "paren...": 2, + "iterating": 2, + "_record": 1, + "integer": 30, + "#cryptvalue": 10, + "..onCreate": 1, + "nav": 4, + "regexp": 1, + "12": 8, + "ReplaceOnlyOne": 2, + "5": 4, + "server_name": 6, + "flag": 2, + "causes": 4, + "Faster": 2, + "params": 11, + "#doctype": 4, + "ExcludeField": 1, + "mysteriously": 2, + "even": 2, + "bug": 2, + "namespace": 16, + "millisecond": 2, + "accurate": 2, + "Reset": 1, + "over": 2, + "knop_stripbackticks": 2, + "removeLeading": 1, + "require": 1, + "the": 86, + "knop_cachefetch": 4, + "writelock": 4, + "root": 2, + "d": 2, + "aliases": 2, + "required": 10, + "#error_lang": 12, + "action_statement": 2, + "/define_type": 4, + "look": 2, + "I": 4, + "proper": 2, + "knop_foundrows": 2, + "Define_Tag": 1, + "06": 2, + "can": 14, + ".": 5, + "calling": 2, + "knop_cachestore": 4, + "knop_base.": 2, + "oops": 4, + "trait": 1, + "onCreate": 1, + "consume_object": 1, + "last": 4, + "#1": 3, + "option": 2, + "math_random": 2, + "Discard": 1, + "No": 1, + "deprecation": 2, + "registered": 2, + "now": 23, + "bad": 2, + "#trace": 4, + "RPCCall": 1, + "24": 2, + "for": 65, + "...": 3, + "same": 4, + "Looking": 2, + "@#output": 2, + "]": 23, + "lasso_tagexists": 4, + "which": 2, + "localized": 2, + "defined": 4, + "id": 7, + "RW": 6, + "Returns": 2, + "row": 2, + "JSON": 2, + "but": 2, + "#expires": 4, + "pointer": 8, + "so": 16, + "string_findregexp": 8, + "types": 10, + "insert": 18, + "Return": 7, + "Fields": 1, + "Inc.": 1, + "parent": 5, + "xhtml": 28, + "#varname": 6, + "Encrypt_Blowfish": 2, + "Can": 2, + "_temp": 1, + "reset": 2, + "timestamp": 4, + "consume_token": 1, + "Adding": 2, + "#t": 2, + "json_deserialize": 1, + "resets": 2, + "For": 2, + ";": 573, + "storage": 8, + "Johan": 2, + "trait_json_serialize": 2, + "Thread_RWLock": 6, + "knop_databaserow": 2 + }, + "R": { + "print": 1, + "hello": 2, + "filename": 1, + "levels": 2, + "aes": 2, + "hours": 2, + "times": 2, + "plot": 1, + "Freq": 1, + "TRUE": 3, + "scale_size": 1, + "system": 1, + "ggsave": 1, + "ggplot": 1, + "dates": 3, + "table": 1, + "all.hours": 2, + "lines": 4, + "SHEBANG#!Rscript": 1, + "width": 1, + "Hour": 2, + "days": 2, + "ParseDates": 2, + "data.frame": 1, + "byrow": 2, + "ncol": 2, + "strsplit": 2, + "unlist": 2, + "range": 1, + "ggplot2": 6, + "as.data.frame": 1, + "intern": 1, + "Main": 2, + "all.days": 2, + "matrix": 2, + "height": 1, + "size": 1, + "punchcard": 4, + "factor": 2, + "geom_point": 1, + "+": 2, + "x": 1, + "y": 1, + "}": 3, + "Day": 2, + "c": 2, + "]": 3, + "[": 3, + "{": 3, + ")": 28, + "(": 28, + "function": 3, + "-": 12, + "<": 12 + }, + "Apex": { + "langCodes.add": 1, + "expected.size": 4, + ".getAccount": 2, + "SUPPORTED_LANGUAGE_CODES.contains": 2, + "StringUtils.substring": 1, + "ALL": 1, + "sObjects": 1, + "TwilioAPI": 2, + "<Attachment>": 2, + "1": 2, + "anArray": 14, + "languageFromBrowser": 6, + "accountAddressString": 2, + "negate": 1, + "xor": 1, + "/": 4, + "FORCE.COM": 1, + "fileAttachments.size": 1, + "str": 10, + "must": 1, + "while": 8, + "TwilioCapability": 2, + "getSuppLangCodeSet": 2, + "TwilioConfig__c": 5, + "reverse": 2, + "//Turkish": 1, + "ApexPages.currentPage": 4, + "given": 2, + "StringUtils.defaultString": 4, + ".getParameters": 2, + "trueString": 2, + "-": 18, + "DEFAULTS": 1, + "langCodes": 2, + "acct.billingstreet": 1, + "sendHTMLEmail": 1, + "StringUtils.equalsIgnoreCase": 1, + "fileAttachments": 5, + "fileAttachment.setFileName": 1, + "textBody": 2, + "+": 75, + "returnList.add": 8, + "twilioCfg.AccountSid__c": 3, + "use": 1, + "activity.": 1, + "pivot": 14, + "is": 5, + "StringUtils.split": 1, + ")": 481, + "//Russian": 1, + "LANGUAGES_FROM_BROWSER_AS_LIST": 3, + "merged": 6, + "acct": 1, + "translatedLanguageNames.containsKey": 1, + "void": 9, + "size": 2, + "get": 4, + "//Italian": 1, + "attachmentIDs": 2, + "mail.setSaveAsActivity": 1, + "param": 2, + "tokens": 3, + "EMPTY_STRING_ARRAY": 1, + "object": 1, + "}": 219, + "returnList": 11, + "list2": 9, + "also": 1, + "GeoUtils.generateFromContent": 1, + "PRIMITIVES": 1, + "getLanguageName": 1, + "MAX_NUMBER_OF_ELEMENTS_IN_LIST": 5, + "lowerCase": 1, + "createClient": 1, + "etc.": 1, + "LANGUAGES_FROM_BROWSER_AS_LIST.size": 1, + "global": 70, + "{": 219, + "lo0": 6, + "getDefaultAccount": 1, + "objectArray": 17, + "boolArray.size": 1, + "trueValue": 2, + "Id": 1, + "strs": 9, + "pluck": 1, + "may": 1, + "@isTest": 1, + "split.size": 2, + "accountSid": 2, + "node": 1, + "Traditional": 1, + "||": 12, + "TwilioRestClient": 5, + "//Finnish": 1, + "throw": 6, + "plucked": 3, + "expected": 16, + "produces": 1, + "need": 1, + "boolArray": 4, + "DEFAULTS.containsKey": 3, + "LANGUAGES_FROM_BROWSER_AS_STRING": 2, + "ArrayUtils.toString": 12, + "toBoolean": 2, + "billingcountry": 1, + "actual": 16, + "array2.size": 2, + "try": 1, + "billingstate": 1, + "trim": 1, + "TwilioAPI.client": 2, + "SORTING": 1, + "<String,>": 2, + "Integer": 34, + "the": 4, + "list1.size": 6, + "//Japanese": 1, + "//Dutch": 1, + "as": 1, + "toStringYesNo": 1, + "values.": 1, + "system.debug": 2, + "LanguageUtils": 1, + "actual.size": 2, + "<String>": 30, + "array1": 8, + "many": 1, + "ret.replaceAll": 4, + "<String,String>": 29, + "getLangCodeByBrowser": 4, + "translatedLanguageNames.get": 2, + "OBJECTS": 1, + "authToken": 2, + "StringUtils.isNotBlank": 1, + "quote": 1, + "private": 10, + "reference": 1, + "pr.getContent": 1, + "fileAttachments.add": 1, + "elmt": 8, + "Account": 2, + "escape": 1, + "ArrayUtils": 1, + "Test.setCurrentPage": 1, + "firstItem": 2, + "Messaging.EmailFileAttachment": 2, + "str.toUpperCase": 1, + "for": 24, + "email": 1, + "other": 2, + "//": 11, + "hi0": 8, + "assertArraysAreEqual": 2, + "Page.kmlPreviewTemplate": 1, + "getLangCodeByHttpParam": 4, + "//Swedish": 1, + "sid": 1, + ".length": 2, + "Messaging.SingleEmailMessage": 3, + "i": 55, + "TwilioAccount": 1, + "mail.setHtmlBody": 1, + "address": 1, + "objects.size": 1, + "<": 32, + "//FOR": 2, + "UserInfo.getLanguage": 1, + "//Korean": 1, + "theList.size": 2, + "not": 3, + "Messaging.sendEmail": 1, + "token.indexOf": 1, + "token": 7, + "generate": 1, + "e": 2, + "Test.isRunningTest": 1, + "mail.setPlainTextBody": 1, + "getLangCodeByHttpParamOrIfNullThenBrowser": 1, + "see": 2, + "system.assertEquals": 1, + "StringUtils.replaceChars": 2, + "splitAndFilterAcceptLanguageHeader": 2, + "getDefaultClient": 2, + "geo_response": 1, + "IN": 1, + "stdAttachments": 4, + "line": 1, + "getTwilioConfig": 3, + "acct.billingpostalcode": 2, + "getLangCodeByHttpParamOrIfNullThenUser": 1, + "attachment.Body": 1, + "getAllLanguages": 3, + "array1.size": 4, + "SUPPORTED_LANGUAGE_CODES": 2, + "false": 13, + "a": 6, + "&&": 46, + "chars": 1, + "Double": 1, + "one": 2, + ".toString": 1, + "BooleanUtils": 1, + "obj": 3, + "subset": 6, + "Map": 33, + "adr": 9, + "aList": 4, + "//Thai": 1, + "recipients": 11, + "insert": 1, + "class": 7, + "page": 1, + "//Spanish": 1, + "client": 2, + "System.assertEquals": 5, + "isTrue": 1, + "//Danish": 1, + "]": 102, + "return": 106, + "strToBoolean": 1, + "TwilioAPI.getDefaultAccount": 1, + "billingcity": 1, + "filterLanguageCode": 4, + "[": 102, + "mail.setSubject": 1, + "System.assert": 6, + "recipients.size": 1, + "list2.size": 2, + ".get": 4, + "token.contains": 1, + "sObj": 4, + "body": 8, + "ID": 1, + "IllegalArgumentException": 5, + "null": 92, + "name": 2, + "TwilioAPI.getDefaultClient": 2, + "mail.setToAddresses": 1, + "specifying": 1, + "getLangCodeByBrowserOrIfNullThenHttpParam": 1, + "SELECT": 1, + "t1": 1, + "String": 60, + "then": 1, + "//underscore": 1, + "call": 1, + "HTTP_LANGUAGE_CODE_PARAMETER_KEY": 2, + ".getAccountSid": 1, + "attachment": 1, + "extends": 1, + "qsort": 18, + "toBooleanDefaultIfNull": 1, + "hi": 50, + "isEmpty": 7, + "(": 481, + "Boolean": 38, + "generateFromContent": 1, + "toString": 3, + "Simplified": 1, + "form": 1, + "SALESFORCE": 1, + "upperCase": 1, + "translatedLanguageNames": 1, + "testmethod": 1, + "DEFAULT_LANGUAGE_CODE": 3, + "EmailUtils": 1, + "sendEmail": 4, + ".AccountSid__c": 1, + "new": 60, + "list1": 15, + "htmlBody": 2, + "fileAttachment": 2, + "in": 1, + "else": 25, + "<Id>": 1, + "<SObject>": 19, + "true": 12, + "mail.setFileAttachments": 1, + "split": 5, + "catch": 1, + "fieldName": 3, + "getLangCodeByBrowserOrIfNullThenUser": 1, + "//check": 2, + "objectArray.size": 6, + "billingpostalcode": 1, + "MissingTwilioConfigCustomSettingsException": 2, + "system.assert": 1, + "getContent": 1, + "//Chinese": 2, + "objectToString": 1, + "emailSubject": 10, + "token.substring": 1, + "KML": 1, + "merged.add": 2, + "str.split": 1, + "dummy": 2, + "string": 7, + "//Returns": 1, + "ret": 7, + "saved": 1, + ".AuthToken__c": 1, + "isValidEmailAddress": 2, + "StringUtils.lowerCase": 3, + "these": 2, + "int": 1, + "acct.billingcity": 1, + "StringUtils.length": 1, + "if": 91, + "mail.setBccSender": 1, + "account": 2, + "test_TwilioAPI": 1, + "defaultVal": 2, + "prs": 8, + "str.trim": 3, + "array2": 9, + "TwilioConfig__c.getOrgDefaults": 1, + "DEFAULTS.get": 3, + "id": 1, + ".getSid": 2, + "PageReference": 2, + "strings": 3, + "useHTML": 6, + "//English": 1, + "falseString": 2, + "tmp": 6, + "//Czech": 1, + "sortAsc": 24, + "GeoUtils": 1, + "//German": 1, + "static": 83, + "LANGUAGE_HTTP_PARAMETER": 7, + "exception": 1, + "Object": 23, + "langCode": 3, + "//Throws": 1, + "boolean": 1, + "cleanup": 1, + "//Hungarian": 1, + "an": 4, + "header": 2, + "sendTextEmail": 1, + "//Converts": 1, + "//the": 2, + "//LIST/ARRAY": 1, + "pageRef": 3, + "//French": 1, + "billingstreet": 1, + "createCapability": 1, + "twilioCfg.AuthToken__c": 3, + "Brazilian": 1, + "<=>": 2, + "Exception": 1, + "ISObjectComparator": 3, + "fileAttachment.setBody": 1, + "languageCode": 2, + "PrimitiveComparator": 2, + "//dash": 1, + "j": 10, + "to": 4, + "ObjectComparator": 3, + "comparator.compare": 12, + "content": 1, + "isNotTrue": 1, + "isNotFalse": 1, + "twilioCfg": 7, + "TwilioAPI.getTwilioConfig": 2, + "SObject": 19, + "mergex": 2, + "comparator": 14, + "pr": 1, + "isNotValidEmailAddress": 1, + "mail": 2, + "//Indonesian": 1, + "displayLanguageCode": 13, + ".split": 1, + ";": 308, + "since": 1, + "toInteger": 1, + "str.toLowerCase": 1, + "adr.replaceAll": 4, + "objects": 3, + "bool": 32, + "acct.billingstate": 1, + "LANGUAGE_CODE_SET": 1, + "instanceof": 1, + "strs.size": 3, + "public": 10, + "we": 1, + "returnValue.add": 3, + "toStringYN": 1, + "startIndex": 9, + "isNotEmpty": 4, + "count": 10, + "final": 6, + "merg": 2, + "list1.get": 2, + "strings.add": 1, + "Set": 6, + "mail.setUseSignature": 1, + "value": 10, + "sendEmailWithStandardAttachments": 3, + "conversion": 1, + "but": 2, + "returnValue": 22, + "<Object>": 22, + "output.": 1, + "getLangCodeByUser": 3, + "WHERE": 1, + "falseValue": 2, + "//Polish": 1, + "attachment.Name": 1, + "List": 71, + "FROM": 1, + "theList": 72, + "<Messaging.EmailFileAttachment>": 3, + "fieldName.trim": 2, + "anArray.size": 2, + "//Portuguese": 1, + "acct.billingcountry": 2, + "isFalse": 1, + "lo": 42, + "Attachment": 2, + ".getHeaders": 1 + }, + "NSIS": { + "SysWOW64": 1, + "SetOutPath": 3, + "Would": 1, + "Q": 2, + "define": 4, + "myfunc": 1, + "CreateDirectory": 1, + "*.*": 2, + "license": 1, + "and": 1, + "DisableX64FSRedirection": 4, + "MyProjectFamily": 2, + ";": 39, + "next": 1, + "NOCOMPRESS": 1, + "s": 1, + "LicenseData": 1, + "icon": 1, + "bigtest.nsi": 1, + "HKCR": 1, + "MyLabel": 2, + "macros": 1, + "be": 1, + "admin": 1, + "defined": 1, + "BeginTestSection": 1, + "Software": 1, + "Graphics": 1, + "xdeadbeef": 1, + "ifndef": 2, + "Ctrl": 1, + "with": 1, + "IDOK": 1, + "SMPROGRAMS": 2, + "NoError": 2, + "only": 1, + "SW_SHOWMINIMIZED": 1, + "most": 1, + "macroend": 3, + "t": 1, + "exehead.": 1, + "Microsoft": 1, + "instfiles": 2, + "system": 2, + "test.ini": 2, + "If": 1, + "not": 2, + "directory": 3, + "continue.": 1, + "HKLM": 9, + "ifdef": 2, + "DeleteINIStr": 1, + "x64": 1, + "xyz_cc_does_not_exist": 1, + "fun": 1, + "for": 2, + "skipped": 2, + "MB_OK": 8, + "NSISDIR": 1, + "MySectionIni": 1, + "InstType": 6, + "_t": 2, + "HAVE_UPX": 1, + "SectionIn": 4, + "UninstPage": 2, + "/COMPONENTSONLYONCUSTOM": 1, + "_": 1, + "test": 1, + "InstallDir": 1, + "NSIS": 3, + "/e": 1, + "uninstall.ico": 1, + "Value1": 1, + "NSISTest": 7, + "IfErrors": 1, + "Big": 1, + "SilentInstall": 1, + "ReadRegStr": 1, + "Hit": 1, + "create": 1, + "SOFTWARE": 7, + "SectionEnd": 5, + "CONTROL": 1, + "exist": 1, + "handle": 1, + "machines.": 1, + "(": 5, + "if": 4, + "RunningX64": 4, + "INSTDIR": 15, + "GetCurrentProcess": 1, + "enables": 1, + "hidden": 1, + "*i.s": 1, + "macro": 3, + "CurrentVersion": 1, + "give": 1, + "ShowInstDetails": 1, + "SHIFT": 1, + "Windows": 3, + "running": 1, + "components": 1, + "on": 6, + "IDNO": 1, + "BigNSISTest": 8, + "bt": 1, + "BiG": 1, + ")": 5, + "installer": 1, + "a": 2, + "DeleteINISec": 1, + "EnableX64FSRedirection": 4, + "MB_ICONQUESTION": 1, + "AutoCloseWindow": 1, + "Start": 2, + "File": 3, + "like": 1, + "endif": 4, + "cpdest": 3, + "_LOGICLIB_TEMP": 3, + "Page": 4, + "Uninstall": 2, + "string": 1, + "CheckBitmap": 1, + "extracts": 2, + "remove": 1, + "silent.nsi": 1, + "i0": 1, + "WriteUninstaller": 1, + "is": 2, + "System32": 1, + "disables": 1, + "TextInSection": 1, + "This": 2, + "x64.nsh": 1, + "WriteRegStr": 4, + "recursively": 1, + "_a": 1, + "false": 1, + "few": 1, + "SectionGroup": 2, + "x64.": 1, + "insertmacro": 2, + "LogicLib.nsh": 1, + "FF8080": 1, + "OutFile": 1, + "BranchTest69": 1, + "uninstall": 2, + "doesn": 2, + "ReadINIStr": 1, + "simple": 1, + "A": 1, + "minimized": 1, + "i1": 1, + "checks": 1, + "DetailPrint": 1, + "Call": 6, + "it": 3, + "normal": 1, + "Pop": 1, + "IsWow64Process": 1, + "installations": 1, + "packhdr": 1, + "XPStyle": 1, + "InstallColors": 1, + "+": 2, + "System": 4, + "___X64__NSH___": 3, + "functionality": 1, + "Icon": 1, + "_b": 1, + "start": 1, + "MyTestVar": 1, + "InstallDirRegKey": 1, + "StrCpy": 2, + "empty": 1, + "SectionGroup1": 1, + "LogicLib.nsi": 1, + "CSCTest": 1, + "Nop": 1, + "CRCCheck": 1, + "Note": 1, + "StrCmp": 1, + "WriteRegDword": 3, + "the": 4, + "_RunningX64": 1, + "include": 1, + "starting": 1, + "uninstConfirm": 1, + "EndIf": 1, + "of": 3, + "Wow64EnableWow64FsRedirection": 2, + "nsis1": 1, + "MyProject": 1, + "WriteINIStr": 5, + "reg": 1, + "hotkey": 1, + "strings": 1, + "so": 1, + "SetDatablockOptimize": 1, + "could": 1, + "C": 2, + "NoErrorMsg": 1, + "failed": 1, + "Section": 5, + "NOINSTTYPES": 1, + "makes": 1, + "{": 8, + "kernel32": 4, + "-": 205, + "Test": 2, + "IDYES": 2, + "fun.": 1, + "to": 6, + "tmp.dat": 1, + "write": 2, + "removed": 1, + "i.s": 1, + "ErrorYay": 2, + "info": 1, + "show": 1, + "off": 1, + "|": 3, + "script": 1, + "Group2": 1, + "NoOverwrite": 1, + "#": 3, + "LicenseText": 1, + "BGGradient": 1, + "you": 1, + "MB_YESNO": 3, + "Icons": 1, + "MyFunctionTest": 1, + "IfFileExists": 1, + "RequestExecutionLevel": 1, + "example2.": 1, + "some.dll": 2, + "file": 4, + "uninst.exe": 1, + "/a": 1, + "FFFFFF": 1, + "WriteRegBin": 1, + "would": 1, + "}": 8, + "attempts": 1, + "Name": 1, + "SYSDIR": 1, + "Caption": 1, + "redirection.": 2, + "CreateShortCut": 2, + "SetCompress": 1, + "ClearErrors": 1, + "MessageBox": 11, + "Shift": 1, + "_f": 2, + "SetDateSave": 1, + "/NOCUSTOM": 1, + "Contrib": 1, + "INIDelSuccess": 2, + "will": 1, + "Goto": 1 + }, + "Handlebars": { + "By": 2, + "</h2>": 1, + "</div>": 5, + "class=": 5, + "body": 3, + "fullName": 2, + "<h1>": 3, + "<div>": 5, + "</h1>": 3, + "/each": 1, + "comments": 1, + "author": 2, + "<h2>": 1, + "Comments": 1, + "title": 1, + "#each": 1, + "}": 16, + "{": 16 } }, + "md5": "06f7609bb3a8141f0a98f9ca4e13004a", + "extnames": { + "Ruby": [ + ".pluginspec", + ".rabl", + ".rake", + ".rb", + ".script!" + ], + "Racket": [ + ".scrbl", + ".script!" + ], + "Elm": [ + ".elm" + ], + "Nimrod": [ + ".nim" + ], + "MediaWiki": [ + ".mediawiki" + ], + "Handlebars": [ + ".handlebars", + ".hbs" + ], + "M": [ + ".m" + ], + "TeX": [ + ".cls" + ], + "Haml": [ + ".haml" + ], + "Matlab": [ + ".m" + ], + "Squirrel": [ + ".nut" + ], + "Org": [ + ".org" + ], + "Omgrofl": [ + ".omgrofl" + ], + "XC": [ + ".xc" + ], + "JavaScript": [ + ".js", + ".script!" + ], + "Logtalk": [ + ".lgt" + ], + "Parrot Internal Representation": [ + ".pir" + ], + "FORTRAN": [ + ".f" + ], + "Ecl": [ + ".ecl" + ], + "Gosu": [ + ".gs", + ".gsp", + ".gst", + ".gsx", + ".vark" + ], + "Ioke": [ + ".ik" + ], + "Makefile": [ + ".script!" + ], + "Scala": [ + ".sbt", + ".script!" + ], + "R": [ + ".R", + ".script!" + ], + "edn": [ + ".edn" + ], + "Opa": [ + ".opa" + ], + "CoffeeScript": [ + ".coffee" + ], + "Volt": [ + ".volt" + ], + "JSON": [ + ".json", + ".maxhelp", + ".maxpat" + ], + "Scilab": [ + ".sce", + ".sci", + ".tst" + ], + "Common Lisp": [ + ".lisp" + ], + "Python": [ + ".py", + ".script!" + ], + "Processing": [ + ".pde" + ], + "C++": [ + ".cc", + ".cpp", + ".cu", + ".h", + ".hpp" + ], + "Lasso": [ + ".las", + ".lasso", + ".lasso9", + ".ldml" + ], + "Apex": [ + ".cls" + ], + "Objective-C": [ + ".h", + ".m" + ], + "Max": [ + ".mxt" + ], + "Markdown": [ + ".md" + ], + "Verilog": [ + ".v" + ], + "Monkey": [ + ".monkey" + ], + "Julia": [ + ".jl" + ], + "PowerShell": [ + ".ps1", + ".psm1" + ], + "Rebol": [ + ".r" + ], + "LiveScript": [ + ".ls" + ], + "Xtend": [ + ".xtend" + ], + "OpenCL": [ + ".cl" + ], + "Less": [ + ".less" + ], + "Awk": [ + ".awk" + ], + "Standard ML": [ + ".sig", + ".sml" + ], + "Arduino": [ + ".ino" + ], + "SuperCollider": [ + ".sc", + ".scd" + ], + "Ceylon": [ + ".ceylon" + ], + "CSS": [ + ".css" + ], + "Nu": [ + ".nu", + ".script!" + ], + "RDoc": [ + ".rdoc" + ], + "XQuery": [ + ".xqm" + ], + "Literate CoffeeScript": [ + ".litcoffee" + ], + "AsciiDoc": [ + ".adoc", + ".asc", + ".asciidoc" + ], + "XProc": [ + ".xpl" + ], + "AutoHotkey": [ + ".ahk" + ], + "Parrot Assembly": [ + ".pasm" + ], + "VHDL": [ + ".vhd" + ], + "OCaml": [ + ".eliom", + ".ml" + ], + "Visual Basic": [ + ".cls" + ], + "Shell": [ + ".bash", + ".script!", + ".sh", + ".zsh" + ], + "wisp": [ + ".wisp" + ], + "Dart": [ + ".dart" + ], + "fish": [ + ".fish" + ], + "Slash": [ + ".sl" + ], + "Lua": [ + ".pd_lua" + ], + "Java": [ + ".java" + ], + "MoonScript": [ + ".moon" + ], + "Kotlin": [ + ".kt" + ], + "Groovy": [ + ".gradle", + ".script!" + ], + "Ragel in Ruby Host": [ + ".rl" + ], + "TXL": [ + ".txl" + ], + "Forth": [ + ".forth", + ".fth" + ], + "Erlang": [ + ".erl", + ".escript", + ".script!" + ], + "Pascal": [ + ".dpr" + ], + "GAS": [ + ".s" + ], + "Groovy Server Pages": [ + ".gsp" + ], + "AppleScript": [ + ".applescript" + ], + "TypeScript": [ + ".ts" + ], + "Logos": [ + ".xm" + ], + "COBOL": [ + ".cbl", + ".ccp", + ".cob", + ".cpy" + ], + "Diff": [ + ".patch" + ], + "old-FORTRAN": [ + ".f", + ".~1~" + ], + "Tea": [ + ".tea" + ], + "Scheme": [ + ".sps" + ], + "C": [ + ".c", + ".h" + ], + "ABAP": [ + ".abap" + ], + "Coq": [ + ".v" + ], + "Perl": [ + ".fcgi", + ".pl", + ".pm", + ".script!", + ".t" + ], + "PogoScript": [ + ".pogo" + ], + "GLSL": [ + ".fp", + ".glsl" + ], + "PHP": [ + ".module", + ".php", + ".script!" + ], + "Sass": [ + ".sass", + ".scss" + ], + "Emacs Lisp": [ + ".el" + ], + "Rust": [ + ".rs" + ], + "OpenEdge ABL": [ + ".cls", + ".p" + ], + "XSLT": [ + ".xslt" + ], + "SCSS": [ + ".scss" + ], + "Turing": [ + ".t" + ], + "Prolog": [ + ".pl" + ], + "Nemerle": [ + ".n" + ], + "Creole": [ + ".creole" + ], + "XML": [ + ".ant", + ".ivy", + ".xml" + ], + "NSIS": [ + ".nsh", + ".nsi" + ], + "LFE": [ + ".lfe" + ] + }, "language_tokens": { - "ABAP": 1500, - "ApacheConf": 1449, - "Apex": 4408, - "AppleScript": 1862, - "Arduino": 20, - "AsciiDoc": 103, - "AutoHotkey": 3, - "Awk": 544, - "C": 58732, - "C++": 21480, - "Ceylon": 50, - "COBOL": 90, - "CoffeeScript": 2951, - "Coq": 18259, - "Creole": 134, - "CSS": 43867, - "Dart": 68, - "Diff": 16, - "Ecl": 281, - "edn": 227, - "Elm": 628, - "Emacs Lisp": 1756, - "Erlang": 2928, - "fish": 636, - "Forth": 1516, - "GAS": 133, - "GLSL": 3766, - "Gosu": 413, - "Groovy": 69, - "Groovy Server Pages": 91, - "Haml": 4, - "Handlebars": 69, - "INI": 27, - "Ioke": 2, - "Java": 8987, "JavaScript": 76934, - "JSON": 619, - "Julia": 247, - "Kotlin": 155, - "Lasso": 9849, - "Less": 39, - "LFE": 1711, - "Literate CoffeeScript": 275, - "LiveScript": 123, - "Logos": 93, - "Logtalk": 36, - "Lua": 724, - "M": 23373, - "Makefile": 50, - "Markdown": 1, - "Matlab": 11787, - "Max": 136, - "MediaWiki": 766, - "Monkey": 207, - "MoonScript": 1718, - "Nemerle": 17, - "Nginx": 179, - "Nimrod": 1, - "NSIS": 725, - "Nu": 116, - "Objective-C": 26518, - "OCaml": 382, - "Omgrofl": 57, - "Opa": 28, - "OpenCL": 88, - "OpenEdge ABL": 762, - "Org": 358, - "Parrot Assembly": 6, - "Parrot Internal Representation": 5, - "Pascal": 30, - "Perl": 17497, - "PHP": 20724, - "PogoScript": 250, - "PowerShell": 12, - "Processing": 74, - "Prolog": 4040, - "Python": 5715, - "R": 175, - "Racket": 360, - "Ragel in Ruby Host": 593, - "RDoc": 279, - "Rebol": 11, - "Ruby": 3854, - "Rust": 3566, - "Sass": 56, - "Scala": 420, - "Scheme": 3478, - "Scilab": 69, - "SCSS": 39, - "Shell": 3744, - "Slash": 187, - "Squirrel": 130, - "Standard ML": 243, - "SuperCollider": 268, - "Tea": 3, - "TeX": 1155, - "Turing": 44, - "TXL": 213, - "TypeScript": 109, - "Verilog": 3778, - "VHDL": 42, - "VimL": 20, - "Visual Basic": 345, - "Volt": 388, - "wisp": 1363, "XC": 24, - "XML": 5622, - "XProc": 22, + "Matlab": 11787, "XQuery": 801, - "XSLT": 44, + "C": 58732, + "old-FORTRAN": 9322, + "edn": 227, + "LFE": 1711, + "AsciiDoc": 103, + "TXL": 213, "Xtend": 399, - "YAML": 30 - }, - "languages": { - "ABAP": 1, - "ApacheConf": 3, - "Apex": 6, - "AppleScript": 7, - "Arduino": 1, - "AsciiDoc": 3, - "AutoHotkey": 1, - "Awk": 1, - "C": 24, - "C++": 20, - "Ceylon": 1, - "COBOL": 4, - "CoffeeScript": 9, - "Coq": 12, - "Creole": 1, - "CSS": 2, - "Dart": 1, - "Diff": 1, - "Ecl": 1, - "edn": 1, - "Elm": 3, - "Emacs Lisp": 2, - "Erlang": 5, - "fish": 3, - "Forth": 7, - "GAS": 1, - "GLSL": 3, - "Gosu": 5, - "Groovy": 2, - "Groovy Server Pages": 4, - "Haml": 1, - "Handlebars": 2, - "INI": 2, - "Ioke": 1, - "Java": 6, - "JavaScript": 20, - "JSON": 5, - "Julia": 1, - "Kotlin": 1, - "Lasso": 4, - "Less": 1, - "LFE": 4, - "Literate CoffeeScript": 1, - "LiveScript": 1, - "Logos": 1, - "Logtalk": 1, - "Lua": 3, - "M": 28, - "Makefile": 2, + "XML": 5622, + "Sass": 56, + "Groovy Server Pages": 91, + "CSS": 43867, + "Logtalk": 36, + "Org": 358, + "Racket": 360, + "Prolog": 4040, + "Arduino": 20, + "Nemerle": 17, + "PogoScript": 250, + "Julia": 247, + "Omgrofl": 57, + "Logos": 93, + "MoonScript": 1718, + "Parrot Assembly": 6, + "JSON": 619, + "Ioke": 2, + "Ruby": 3854, + "GAS": 133, + "XProc": 22, + "ApacheConf": 1449, + "Less": 39, + "Rust": 3566, + "Parrot Internal Representation": 5, + "M": 23373, + "Lua": 724, + "VHDL": 42, + "Creole": 134, + "Tea": 3, + "LiveScript": 123, + "Verilog": 3778, + "VimL": 20, + "AppleScript": 1862, + "XSLT": 44, + "Forth": 1516, + "Nu": 116, + "Java": 8987, + "Monkey": 207, + "TeX": 1155, + "Emacs Lisp": 1756, + "Scheme": 3478, + "TypeScript": 109, + "Groovy": 69, + "SuperCollider": 268, + "Scala": 420, + "Kotlin": 155, + "Ceylon": 50, "Markdown": 1, - "Matlab": 37, - "Max": 1, - "MediaWiki": 1, - "Monkey": 1, - "MoonScript": 1, - "Nemerle": 1, - "Nginx": 1, + "Scilab": 69, + "Volt": 388, + "PHP": 20724, + "Ragel in Ruby Host": 593, + "wisp": 1363, + "AutoHotkey": 3, + "Rebol": 11, "Nimrod": 1, - "NSIS": 2, - "Nu": 2, - "Objective-C": 19, - "OCaml": 2, - "Omgrofl": 1, - "Opa": 2, - "OpenCL": 1, - "OpenEdge ABL": 5, - "Org": 1, - "Parrot Assembly": 1, - "Parrot Internal Representation": 1, - "Pascal": 1, - "Perl": 14, - "PHP": 9, - "PogoScript": 1, - "PowerShell": 2, - "Processing": 1, - "Prolog": 6, - "Python": 7, - "R": 2, - "Racket": 3, - "Ragel in Ruby Host": 3, - "RDoc": 1, - "Rebol": 1, - "Ruby": 16, - "Rust": 1, - "Sass": 2, - "Scala": 3, - "Scheme": 1, - "Scilab": 3, - "SCSS": 1, - "Shell": 37, - "Slash": 1, - "Squirrel": 1, - "Standard ML": 2, - "SuperCollider": 2, - "Tea": 1, - "TeX": 1, - "Turing": 1, - "TXL": 1, - "TypeScript": 3, - "Verilog": 13, - "VHDL": 1, - "VimL": 2, - "Visual Basic": 1, - "Volt": 1, - "wisp": 1, - "XC": 1, - "XML": 3, - "XProc": 1, - "XQuery": 1, - "XSLT": 1, - "Xtend": 2, - "YAML": 1 + "Elm": 628, + "Nginx": 179, + "Haml": 4, + "Perl": 17497, + "Coq": 18259, + "PowerShell": 12, + "Opa": 28, + "Max": 136, + "FORTRAN": 1980, + "MediaWiki": 766, + "Diff": 16, + "GLSL": 3766, + "Erlang": 2928, + "Literate CoffeeScript": 275, + "Makefile": 50, + "Gosu": 413, + "Processing": 74, + "Dart": 68, + "Ecl": 281, + "ABAP": 1500, + "COBOL": 90, + "Turing": 44, + "RDoc": 279, + "Standard ML": 243, + "Objective-C": 26518, + "Python": 5715, + "Common Lisp": 103, + "YAML": 30, + "Pascal": 30, + "INI": 27, + "OpenCL": 144, + "CoffeeScript": 2951, + "Squirrel": 130, + "OpenEdge ABL": 762, + "Visual Basic": 345, + "Awk": 544, + "C++": 21480, + "Slash": 187, + "fish": 636, + "Shell": 3744, + "OCaml": 382, + "SCSS": 39, + "Lasso": 9849, + "R": 175, + "Apex": 4408, + "NSIS": 725, + "Handlebars": 69 }, - "md5": "92d88e885308e835f820dfb0aa5aa73e" + "tokens_total": 426831 } \ No newline at end of file From d5002ef06a9f3463919a3fe8919844c3aea46fc0 Mon Sep 17 00:00:00 2001 From: Ted Nyman <ted@ted.io> Date: Wed, 30 Oct 2013 19:12:52 -0700 Subject: [PATCH 177/184] Start vendor work for bootstrap by ignoring minimized bootstrap js and css --- lib/linguist/vendor.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/linguist/vendor.yml b/lib/linguist/vendor.yml index e7efd0a8..c87e5294 100644 --- a/lib/linguist/vendor.yml +++ b/lib/linguist/vendor.yml @@ -27,6 +27,9 @@ # Erlang bundles - ^rebar$ +# Bootstrap minified css and js +- (^|/)bootstrap([^.]*)(\.min)\.(js|css)$ + # Vendored dependencies - vendors?/ From 569eac22227213d0d9cd9d7d7942a14dd0667e90 Mon Sep 17 00:00:00 2001 From: Ted Nyman <ted@ted.io> Date: Wed, 30 Oct 2013 23:46:42 -0700 Subject: [PATCH 178/184] Whitespace --- lib/linguist/languages.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 52eb8f03..6e1a738e 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -1133,7 +1133,6 @@ REALbasic: - .rbtbar - .rbuistate - RHTML: type: markup group: HTML From 6ee999617ea3ee97077a89d983250b3360736b29 Mon Sep 17 00:00:00 2001 From: Ted Nyman <ted@ted.io> Date: Mon, 4 Nov 2013 19:05:56 -0800 Subject: [PATCH 179/184] Add syscalldefs.h sample --- lib/linguist/samples.json | 84830 ++++++++++++++++++------------------ samples/C/syscalldefs.h | 5 + 2 files changed, 41600 insertions(+), 43235 deletions(-) create mode 100644 samples/C/syscalldefs.h diff --git a/lib/linguist/samples.json b/lib/linguist/samples.json index 5e733a3a..1a568173 100644 --- a/lib/linguist/samples.json +++ b/lib/linguist/samples.json @@ -1,6 +1,395 @@ { - "languages_total": 473, + "extnames": { + "ABAP": [ + ".abap" + ], + "Apex": [ + ".cls" + ], + "AppleScript": [ + ".applescript" + ], + "Arduino": [ + ".ino" + ], + "AutoHotkey": [ + ".ahk" + ], + "Awk": [ + ".awk" + ], + "Bluespec": [ + ".bsv" + ], + "C": [ + ".c", + ".h" + ], + "C++": [ + ".cc", + ".cpp", + ".cu", + ".h", + ".hpp" + ], + "Ceylon": [ + ".ceylon" + ], + "COBOL": [ + ".cbl", + ".ccp", + ".cob", + ".cpy" + ], + "CoffeeScript": [ + ".coffee" + ], + "Common Lisp": [ + ".lisp" + ], + "Coq": [ + ".v" + ], + "CSS": [ + ".css" + ], + "Dart": [ + ".dart" + ], + "Diff": [ + ".patch" + ], + "Ecl": [ + ".ecl" + ], + "edn": [ + ".edn" + ], + "Elm": [ + ".elm" + ], + "Emacs Lisp": [ + ".el" + ], + "Erlang": [ + ".erl", + ".escript", + ".script!" + ], + "fish": [ + ".fish" + ], + "Forth": [ + ".forth", + ".fth" + ], + "GAS": [ + ".s" + ], + "GLSL": [ + ".fp", + ".glsl" + ], + "Gosu": [ + ".gs", + ".gsp", + ".gst", + ".gsx", + ".vark" + ], + "Groovy": [ + ".gradle", + ".script!" + ], + "Groovy Server Pages": [ + ".gsp" + ], + "Haml": [ + ".haml" + ], + "Handlebars": [ + ".handlebars", + ".hbs" + ], + "Ioke": [ + ".ik" + ], + "Java": [ + ".java" + ], + "JavaScript": [ + ".js", + ".script!" + ], + "JSON": [ + ".json", + ".maxhelp", + ".maxpat" + ], + "Julia": [ + ".jl" + ], + "Kotlin": [ + ".kt" + ], + "Lasso": [ + ".las", + ".lasso", + ".lasso9", + ".ldml" + ], + "Less": [ + ".less" + ], + "LFE": [ + ".lfe" + ], + "Literate CoffeeScript": [ + ".litcoffee" + ], + "LiveScript": [ + ".ls" + ], + "Logos": [ + ".xm" + ], + "Logtalk": [ + ".lgt" + ], + "Lua": [ + ".pd_lua" + ], + "M": [ + ".m" + ], + "Makefile": [ + ".script!" + ], + "Markdown": [ + ".md" + ], + "Matlab": [ + ".m" + ], + "Max": [ + ".mxt" + ], + "Monkey": [ + ".monkey" + ], + "MoonScript": [ + ".moon" + ], + "Nemerle": [ + ".n" + ], + "Nimrod": [ + ".nim" + ], + "NSIS": [ + ".nsh", + ".nsi" + ], + "Nu": [ + ".nu", + ".script!" + ], + "Objective-C": [ + ".h", + ".m" + ], + "OCaml": [ + ".eliom", + ".ml" + ], + "Omgrofl": [ + ".omgrofl" + ], + "Opa": [ + ".opa" + ], + "OpenCL": [ + ".cl" + ], + "OpenEdge ABL": [ + ".cls", + ".p" + ], + "Parrot Assembly": [ + ".pasm" + ], + "Parrot Internal Representation": [ + ".pir" + ], + "Pascal": [ + ".dpr" + ], + "Perl": [ + ".fcgi", + ".pl", + ".pm", + ".script!", + ".t" + ], + "PHP": [ + ".module", + ".php", + ".script!" + ], + "PogoScript": [ + ".pogo" + ], + "PowerShell": [ + ".ps1", + ".psm1" + ], + "Processing": [ + ".pde" + ], + "Prolog": [ + ".pl" + ], + "Python": [ + ".py", + ".script!" + ], + "R": [ + ".R", + ".script!" + ], + "Racket": [ + ".scrbl", + ".script!" + ], + "Ragel in Ruby Host": [ + ".rl" + ], + "Rebol": [ + ".r" + ], + "Ruby": [ + ".pluginspec", + ".rabl", + ".rake", + ".rb", + ".script!" + ], + "Rust": [ + ".rs" + ], + "Sass": [ + ".sass", + ".scss" + ], + "Scala": [ + ".sbt", + ".script!" + ], + "Scheme": [ + ".sps" + ], + "Scilab": [ + ".sce", + ".sci", + ".tst" + ], + "SCSS": [ + ".scss" + ], + "Shell": [ + ".bash", + ".script!", + ".sh", + ".zsh" + ], + "Slash": [ + ".sl" + ], + "Squirrel": [ + ".nut" + ], + "Standard ML": [ + ".sig", + ".sml" + ], + "SuperCollider": [ + ".sc", + ".scd" + ], + "Tea": [ + ".tea" + ], + "TeX": [ + ".cls" + ], + "Turing": [ + ".t" + ], + "TXL": [ + ".txl" + ], + "TypeScript": [ + ".ts" + ], + "Verilog": [ + ".v" + ], + "VHDL": [ + ".vhd" + ], + "Visual Basic": [ + ".cls" + ], + "Volt": [ + ".volt" + ], + "wisp": [ + ".wisp" + ], + "XC": [ + ".xc" + ], + "XML": [ + ".ant", + ".ivy", + ".xml" + ], + "XProc": [ + ".xpl" + ], + "XQuery": [ + ".xqm" + ], + "XSLT": [ + ".xslt" + ], + "Xtend": [ + ".xtend" + ] + }, "filenames": { + "ApacheConf": [ + ".htaccess", + "apache2.conf", + "httpd.conf" + ], + "INI": [ + ".editorconfig", + ".gitconfig" + ], + "Makefile": [ + "Makefile" + ], + "Nginx": [ + "nginx.conf" + ], + "Perl": [ + "ack" + ], + "Ruby": [ + "Capfile", + "Rakefile" + ], "Shell": [ ".bash_logout", ".bash_profile", @@ -27,43343 +416,41314 @@ "zshenv", "zshrc" ], - "YAML": [ - ".gemrc" - ], - "ApacheConf": [ - ".htaccess", - "apache2.conf", - "httpd.conf" - ], "VimL": [ ".gvimrc", ".vimrc" ], - "Perl": [ - "ack" - ], - "Makefile": [ - "Makefile" - ], - "INI": [ - ".editorconfig", - ".gitconfig" - ], - "Ruby": [ - "Capfile", - "Rakefile" - ], - "Nginx": [ - "nginx.conf" + "YAML": [ + ".gemrc" ] }, - "languages": { - "JavaScript": 20, - "XC": 1, - "Matlab": 37, - "XQuery": 1, - "C": 24, - "old-FORTRAN": 11, - "edn": 1, - "LFE": 4, - "AsciiDoc": 3, - "TXL": 1, - "Xtend": 2, - "XML": 3, - "Sass": 2, - "Groovy Server Pages": 4, - "CSS": 2, - "Logtalk": 1, - "Org": 1, - "Racket": 3, - "Prolog": 6, - "Arduino": 1, - "Nemerle": 1, - "PogoScript": 1, - "Julia": 1, - "Omgrofl": 1, - "Logos": 1, - "MoonScript": 1, - "Parrot Assembly": 1, - "JSON": 5, - "Ioke": 1, - "Ruby": 16, - "GAS": 1, - "XProc": 1, - "ApacheConf": 3, - "Less": 1, - "Rust": 1, - "Parrot Internal Representation": 1, - "M": 28, - "Lua": 3, - "VHDL": 1, - "Creole": 1, - "Tea": 1, - "LiveScript": 1, - "Verilog": 13, - "VimL": 2, - "AppleScript": 7, - "XSLT": 1, - "Forth": 7, - "Nu": 2, - "Java": 6, - "Monkey": 1, - "TeX": 1, - "Emacs Lisp": 2, - "Scheme": 1, - "TypeScript": 3, - "Groovy": 2, - "SuperCollider": 2, - "Scala": 3, - "Kotlin": 1, - "Ceylon": 1, - "Markdown": 1, - "Scilab": 3, - "Volt": 1, - "PHP": 9, - "Ragel in Ruby Host": 3, - "wisp": 1, - "AutoHotkey": 1, - "Rebol": 1, - "Nimrod": 1, - "Elm": 3, - "Nginx": 1, - "Haml": 1, - "Perl": 14, - "Coq": 12, - "PowerShell": 2, - "Opa": 2, - "Max": 1, - "FORTRAN": 1, - "MediaWiki": 1, - "Diff": 1, - "GLSL": 3, - "Erlang": 5, - "Literate CoffeeScript": 1, - "Makefile": 2, - "Gosu": 5, - "Processing": 1, - "Dart": 1, - "Ecl": 1, - "ABAP": 1, - "COBOL": 4, - "Turing": 1, - "RDoc": 1, - "Standard ML": 2, - "Objective-C": 19, - "Python": 7, - "Common Lisp": 1, - "YAML": 1, - "Pascal": 1, - "INI": 2, - "OpenCL": 2, - "CoffeeScript": 9, - "Squirrel": 1, - "OpenEdge ABL": 5, - "Visual Basic": 1, - "Awk": 1, - "C++": 20, - "Slash": 1, - "fish": 3, - "Shell": 37, - "OCaml": 2, - "SCSS": 1, - "Lasso": 4, - "R": 2, - "Apex": 6, - "NSIS": 2, - "Handlebars": 2 - }, + "tokens_total": 415223, + "languages_total": 457, "tokens": { - "JavaScript": { - "ct=": 5, - "serialize": 1, - "handler=": 1, - "ck.contentDocument": 1, - "chunk.": 1, - "EX_EOF": 3, - "714953": 5, - "ut.translate": 3, - "rr": 21, - "a.parentNode": 6, - "a.isResolved": 1, - "req.end": 1, - "socket.destroySoon": 2, - "BackgroundColor": 1, - "200": 2, - "steelseries.LcdColor.STANDARD": 9, - "cancelled": 5, - "lt.getContext": 1, - "ii.width": 2, - "stack.shift": 1, - "relatedNode": 4, - "Set": 4, - "RE_OCT_NUMBER": 1, - "fn.call": 2, - "omPrefixes.toLowerCase": 1, - "Unexpected": 3, - "elem.setAttribute": 2, - "d/": 3, - "f*.471962": 2, - "41": 3, - "unit": 1, - "default": 21, - "u200f": 1, - "h.splice.apply": 1, - "around": 1, - "digits": 3, - "each": 17, - "a.medium.getHexColor": 2, - "steelseries.BackgroundColor.TURNED": 2, - "this.update": 2, - "s*.093457": 5, - "*f": 2, - "c.isXMLDoc": 1, - "C": 4, - "self.agent": 3, - "parserOnMessageComplete": 2, - "w.labelColor.setAlpha": 1, - "i.size": 6, - "s.createTextNode": 2, - "n.shadowOffsetY": 4, - "i.getGreen": 1, - "offsetSupport.subtractsBorderForOverflowNotVisible": 1, - "option.parentNode": 2, - "tds": 6, - "boolean": 8, - "m.elem.disabled": 1, - "self.chunkedEncoding": 1, - "<l?l:n>": 2, - "</g,>": 1, - "node": 23, - "parser.incoming.httpVersionMajor": 1, - "i*.012135": 1, - "n.fillStyle": 36, - "a.parentWindow": 2, - ".style.display": 5, - "input.value": 5, - ".replace": 38, - "f.trim": 2, - "gr.getContext": 1, - "e.documentElement": 4, - "recursively": 1, - "f.expr.filters.visible": 1, - "d.toggleClass": 1, - ".1": 18, - "itself": 4, - "i.handle": 2, - "s.fillText": 2, - ".8725*t": 3, - "options=": 1, - "a.currentStyle.left": 1, - "frag.cloneNode": 1, - "docElement": 1, - "backgroundColor": 2, - "offsetParent": 1, - "i.childNodes.length": 1, - "c.support": 2, - "eliminate": 2, - ".clone": 1, - "viewOptions.length": 1, - "Index": 1, - "teardown": 6, - "document.createElement": 26, - "bool.wav": 1, - "*10": 2, - "f.getRgbaColor": 8, - "i.lcdDecimals": 8, - "c.replace": 4, - "rmsie.exec": 1, - "SHEBANG#!node": 2, - "ft": 70, - "k.appendChild": 1, - "parse_eolChar": 6, - "backslash": 2, - "opera": 4, - "w.": 17, - "specialEasing": 2, - "j.boxModel": 1, - "static": 2, - "unary": 2, - "angle": 1, - "s*.130841": 1, - "f.offset.doesNotIncludeMarginInBodyOffset": 1, - "no": 19, - "user": 1, - "location.hash": 1, - "this.getUTCFullYear": 1, - "parser.onBody": 1, - "f*.009": 1, - "pointer": 28, - "xA0": 7, - "onload": 2, - "jshint": 1, - "req.headers": 2, - "identifier": 1, - "w*.093457": 2, - ".0189*t": 4, - "This": 3, - "failDeferred.resolveWith": 1, - "linear": 1, - "currentTarget": 4, - "jQuery.camelCase": 6, - "jQuery.fn.init.prototype": 2, - "b.handle": 2, - ".hasOwnProperty": 2, - "testing": 1, - "parse___": 2, - "_.isFunction": 1, - "f.context": 1, - "cu": 18, - "p": 110, - "item": 4, - "is_digit": 3, - "setPointerTypeAverage=": 1, - "f*.556074": 9, - "kt=": 4, - "this.setSection": 4, - "a.constructor": 2, - "bi": 27, - "this.triggerHandler": 6, - "this.setTimeout": 3, - "field.slice": 1, - "lineCap=": 5, - "<0?0:n>": 1, - "fresh": 1, - "inner.style.position": 2, - "i.join": 2, - "j.fragment": 2, - "RFC": 16, - "setCssAll": 2, - "defun": 1, - "<ZWJ>": 1, - ".892523*ut": 1, - "e/2": 2, - "Backbone.View.extend": 1, - "cp.concat.apply": 1, - "replaceWith": 1, - "r.live": 1, - "options.host": 4, - "info.versionMajor": 2, - "200934": 2, - "<=o-4&&(e=0,c=!1),u.fillText(n,o-2-e,h*.5+v*.38)),u.restore()},dt=function(n,i,r,u){var>": 1, - "cr*.38": 1, - "cacheable": 2, - "e.href": 1, - "a.parentNode.nodeType": 2, - "contentType": 4, - "isFunction": 12, - "frag.createElement": 2, - "Boolean.prototype.toJSON": 1, - "changeData": 3, - "self._paused": 1, - "inputElem.offsetHeight": 1, - "Animal": 12, - "readyList.resolveWith": 1, - "this.live": 1, - "property.": 1, - "e*.0375": 1, - "fired": 12, - "old=": 1, - "this._last": 3, - "ch.charCodeAt": 1, - "f.event.special.change.filters": 1, - "e.browser.safari": 1, - "status": 3, - "HTML5": 3, - "this._storeHeader": 2, - "21028": 1, - "html": 10, - "Error": 16, - ".bind": 3, - "existence": 1, - "self.disable": 1, - "part.rawText": 1, - "270": 1, - "h.call": 2, - "d.firstChild.nodeType": 1, - "functions": 6, - "f.isNaN": 3, - "f.boxModel": 1, - "outer.style.overflow": 1, - "a.runtimeStyle.left": 2, - "trend": 2, - "t.playing": 1, - "d.src": 1, - "bI.exec": 1, - "end": 14, - "sock": 1, - "36": 2, - "l.done": 1, - "this.data": 5, - "debugger": 2, - "u.pointerColorAverage": 2, - "f*.15": 2, - "f.support.hrefNormalized": 1, - "this._hasPushState": 6, - "noop": 3, - "elem.attributes": 1, - "T": 4, - "u.rotate": 4, - "h*u": 1, - "__hasProp.call": 2, - "soFar": 1, - "provided": 1, - "data.": 1, - "e.call": 1, - "bM": 2, - "options.shivMethods": 1, - "s*": 15, - "Modernizr.addTest": 2, - "e.strokeStyle": 1, - "k.labelColor.getRgbaColor": 5, - "y.canvas.width": 3, - "No": 1, - "selector.nodeType": 2, - "socket.destroy": 10, - "s*.523364": 2, - "s/r": 1, - "h.scrollTop": 2, - "p.setup": 1, - "a.oRequestAnimationFrame": 1, - "o*.2": 1, - "steelseries.FrameDesign.METAL": 7, - "json": 2, - "key.replace": 2, - "leading": 1, - "getValueLatest=": 1, - "this._onModelEvent": 1, - "i.origType.replace": 1, - "assert": 8, - "Modernizr._domPrefixes": 1, - "OPERATOR_CHARS": 1, - "ut.addColorStop": 2, - "ot/": 1, - "i.useValueGradient": 4, - "Snake.prototype.move": 2, - "actual": 1, - "b.innerHTML": 3, - "docElement.style": 1, - "kt.width": 1, - "their": 3, - "applet": 2, - "The": 9, - "this._headerNames": 5, - "uXXXX": 1, - "Expecting": 1, - "r.toFixed": 8, - "hi.pause": 1, - "clientX": 6, - "background": 56, - "Try": 4, - "this.doesNotIncludeMarginInBodyOffset": 1, - "j.indexOf": 1, - "self.httpAllowHalfOpen": 1, - "link": 2, - "base": 2, - "historyStarted": 3, - "document": 26, - "support.reliableHiddenOffsets": 1, - "Ready": 2, - "u.canvas.width": 7, - "setRequestHeader": 6, - "f.cssNumber": 1, - "a.style.display": 3, - "mozilla": 4, - "pointerColor": 4, - "8": 2, - "e*.116822": 3, - "k.elem": 2, - "ajaxSetup": 1, - "c=": 24, - "this.write": 1, - "c.specified": 1, - ".slice": 6, - "flags.length": 1, - "Are": 2, - "chunk": 14, - "prop.charAt": 1, - "u*r*": 1, - "s*.075": 1, - "this.css": 1, - "Math": 51, - "Transport": 1, - "Array.prototype.slice.call": 1, - "is_identifier_start": 2, - "overwrite": 4, - "subject": 1, - "append": 1, - "a.length": 23, - "uuid": 2, - "style": 30, - "100": 4, - ".33*f": 2, - "bz": 7, - "j.reliableHiddenOffsets": 1, - "up": 4, - ".exec": 2, - "t.repaint": 4, - "k*.803738": 2, - "/2": 25, - "getImageData": 1, - "an": 12, - "n.leftMatch": 1, - "IE8": 2, - "giving": 1, - "actually": 2, - "b.nodeName.toLowerCase": 1, - "properties": 7, - "propFix": 1, - "support.noCloneEvent": 1, - "DTRACE_HTTP_SERVER_RESPONSE": 1, - "e*.485981": 3, - "global": 5, - "ot.width": 1, - "this.state": 3, - "a.scriptCharset": 2, - "a.className": 1, - "et.restore": 1, - "n*kt": 1, - "wi.width": 1, - "s.createElement": 10, - "f.support.noCloneChecked": 1, - "parser.incoming.httpVersionMinor": 1, - "WHITE": 1, - "794392": 1, - "this.setArea": 1, - "gu": 9, - "concerning": 2, - "class2type": 3, - "route": 18, - "this.": 2, - "S.peek": 1, - "y.save": 1, - "fi": 26, - "a.runtimeStyle": 2, - "isWindow": 2, - "a.removeAttributeNode": 1, - "strings": 8, - "nt.save": 1, - "t.stroke": 2, - "responseFields": 1, - "object.url": 4, - "</div>": 3, - "_change_data": 6, - "i*.12864": 2, - "Values": 1, - "shadowColor=": 1, - "handy": 2, - "Backbone.emulateHTTP": 1, - "self.removeSocket": 2, - "self._emitEnd": 1, - "s*.12": 1, - "this.setOdoValue": 1, - "cj": 4, - "between": 1, - "e": 663, - "P.test": 1, - "col": 7, - "buttons": 1, - "removeAttribute": 3, - "outer.nextSibling.firstChild.firstChild": 1, - "exports.parse": 1, - "c.cache": 2, - "purpose": 1, - "e.isFunction": 5, - "upon.": 1, - "docCreateElement": 5, - "html5.elements": 1, - "is_letter": 3, - "154205": 1, - "i.playAlarm": 10, - "working": 1, - "056074": 1, - "r.toPrecision": 4, - "cu.setValue": 1, - "this.setTrendVisible": 2, - "has": 9, - "name.toLowerCase": 6, - "display": 7, - "f.shift": 1, - "self.setHeader": 1, - "<f?f:n>": 3, - "l.left": 1, - "nth": 5, - "f.noop": 4, - "Ta.exec": 1, - "response": 3, - "div.parentNode.removeChild": 1, - "jQuery.Deferred": 1, - "a.fragment": 1, - "thead": 2, - "camel": 2, - "cache.setInterval": 1, - "marginTop": 3, - "jQuery.fn.trigger": 2, - "et.rotate": 1, - "he": 1, - "f.offset.subtractsBorderForOverflowNotVisible": 1, - "bg._default": 2, - "RegExp.": 1, - "h*.415": 1, - "g.scrollTop": 1, - "well": 2, - "ticket": 4, - "document.addEventListener": 6, - "using": 5, - "begin.data.charCodeAt": 1, - ".08*f": 1, - "u.clearRect": 5, - "An": 1, - "f.clean": 1, - "act": 1, - "ID": 8, - "bg.td": 1, - "page": 1, - "document.styleSheets.length": 1, - "350466": 1, - "drawImage": 12, - "e/r*": 1, - "DOMready/load": 2, - "a.relatedTarget": 2, - "timeStamp": 1, - "a.global": 1, - "this.agent": 2, - "i.html": 1, - "n.measureText": 2, - "di.height": 1, - "A.attachEvent": 1, - "jQuery.isNumeric": 1, - "Map": 4, - "else": 307, - "_results.push": 2, - "array": 7, - "this.socket.write": 1, - "Object.prototype.hasOwnProperty.call": 1, - "u.frameDesign": 4, - "u.canvas.height*.105": 2, - "n.strokeStyle": 27, - "ei.textColor": 2, - "c.bindReady": 1, - "I": 7, - "least": 4, - "sentTransferEncodingHeader": 3, - "h.responseXML": 1, - "b.jsonpCallback": 4, - "div.lastChild": 1, - "asynchronously": 2, - "toggleClass": 2, - "layout": 2, - "bB": 5, - "b.defaultValue": 1, - "socket.setTimeout": 1, - "f*.443925": 9, - "e*.149532": 8, - ".053": 1, - "bi/": 2, - "<h;g++){var>": 2, - "c.support.changeBubbles": 1, - "a.ownerDocument.defaultView": 1, - "f.Deferred": 2, - "at/yt*t": 1, - "customEvent": 1, - ".0465*t": 2, - "t.addColorStop": 6, - "tt": 53, - "boundary": 1, - "unit=": 1, - "this.unbind": 2, - "classes.slice": 1, - "<e&&270>": 2, - "yt.getEnd": 2, - "vi.height": 1, - "i.ledColor": 10, - "I.focus": 1, - "elem.removeAttribute": 6, - "this.valueOf": 2, - "float": 3, - "<p.length;j++){q=p[j];if(d.guid===q.guid){if(l||n.test(q.namespace))e==null&&p.splice(j--,1),o.remove&&o.remove.call(a,q);if(e!=null)break}}if(p.length===0||e!=null&&p.length===1)(!o.teardown||o.teardown.call(a,m)===!1)&&f.removeEvent(a,h,s.handle),g=null,delete>": 1, - "blur": 8, - "selected": 5, - "mStyle.opacity": 1, - ".7": 1, - "Promise": 1, - "closest": 3, - "DELETE": 1, - "issue.": 1, - "self.host": 1, - "comments_before": 1, - "autoScroll": 2, - "d.nextSibling.firstChild.firstChild": 1, - "s.documentElement": 2, - "r.attr": 1, - "add": 15, - "valHooks": 1, - "a.defaultChecked": 1, - "g=": 15, - "warn": 3, - "fi=": 1, - "closePath": 8, - "f1": 1, - "b.css": 1, - "req.res.readable": 1, - "Agent.prototype.defaultPort": 1, - "r.repaint": 1, - "this.setFrameDesign": 7, - ".scrollLeft": 1, - "scoped": 1, - "bK.test": 1, - "nodes": 14, - "this._headers": 13, - "e6e6e6": 1, - "i*.152857": 1, - "isDefaultPrevented": 1, - "getComputedStyle": 3, - "ti.length": 1, - "f.support.htmlSerialize": 1, - "b.toFixed": 1, - "h.send": 1, - "typeof": 132, - "a.jQuery": 2, - "serverSocketCloseListener": 3, - "yi.setAttribute": 2, - "nu": 11, - "deferred": 25, - "-": 705, - "entry": 1, - "differently": 1, - "db": 1, - "str1": 6, - "parent.prototype": 6, - "this.get": 1, - "h.length": 3, - "h.substr": 1, - "this.elements": 2, - ".StringDecoder": 1, - "cloned": 1, - "func": 3, - "v": 135, - "arguments.length": 18, - "IncomingMessage": 4, - "03": 1, - ".67*u": 1, - "steelseries.GaugeType.TYPE5": 1, - "ue": 1, - "prune": 1, - "/Until": 1, - "i.exec": 1, - "approach": 1, - "bo": 2, - "options.socketPath": 1, - "_super": 4, - ".044*t": 1, - "Useragent": 2, - "b.type": 4, - "b.removeAttribute": 3, - ".ready": 2, - "res.upgrade": 1, - "//avoid": 1, - "s.font": 2, - "u.restore": 6, - "deletion": 1, - "res.writeContinue": 1, - "s*.4": 1, - "l.innerHTML": 1, - "setting": 2, - "e.elem": 2, - "marginDiv": 5, - "HANDLE": 2, - "f.lastModified": 1, - "parser.incoming.upgrade": 4, - "createHangUpError": 3, - "result4": 12, - "dt.onMotionChanged": 2, - "h.toLowerCase": 2, - "rinlinejQuery": 1, - "h.handler.guid": 2, - "orphans": 1, - "Deferred": 5, - "been": 5, - "prependTo": 1, - "u*.004": 1, - "kt.restore": 1, - "oe": 2, - "exec.call": 1, - "l.match.ID.test": 2, - "exports.KEYWORDS": 1, - ".7825*t": 5, - "Snake": 12, - "than": 3, - "ua.toLowerCase": 1, - "</colgroup>": 1, - "G=": 1, - "fragment.appendChild": 2, - "process.binding": 1, - "alert": 11, - "a.nodeName.toLowerCase": 3, - "client": 3, - "parse": 1, - "sometimes": 1, - "select.disabled": 1, - "wa": 1, - "e.firstChild": 1, - ".toString": 3, - "<e&&360>": 2, - "repaint": 23, - "i.fractionalScaleDecimals": 4, - "b.guid": 2, - "this.route": 1, - "Z": 6, - "parser.incoming": 9, - "vi.getEnd": 1, - "ci/2": 1, - "fn.apply": 1, - "f.support.getSetAttribute": 2, - "a.style.marginRight": 1, - "bS": 1, - "f.text": 2, - "ClientRequest.prototype.abort": 1, - "nlb": 1, - "e*.546728": 5, - "clearRect": 8, - "firingLength": 4, - "div.innerHTML": 7, - ".matches": 1, - "u1680": 1, - "u.pointerColor": 4, - "u.shadowOffsetX": 2, - "ba.test": 1, - "<\\/\\1>": 4, - "p.add.call": 1, - "this.writable": 1, - "KEYWORDS_BEFORE_EXPRESSION": 2, - "ni=": 1, - "this.color": 1, - "window.history": 2, - "onbeforeunload=": 3, - "dblclick": 3, - "a.removeAttribute": 3, - "inputElem.value": 2, - "i.pageYOffset": 1, - "if": 1230, - "following": 1, - "onunload": 1, - "a.contains": 2, - "E.call": 1, - ".addClass": 1, - "pair": 1, - ".get": 3, - "nextAll": 1, - "options.port": 4, - "self.options": 2, - "d.width": 4, - "i*.142857": 1, - "he.drawImage": 1, - "boxModel": 1, - ".lastChild.checked": 2, - "With": 1, - "qa": 1, - ".Event": 1, - "req.res.emit": 1, - "urlError": 2, - "this.className": 10, - "UserAgent": 2, - "j.deleteExpando": 1, - "s.removeListener": 3, - "c.attr": 4, - "OutgoingMessage.prototype._flush": 1, - "/src/i.test": 1, - ".66*e": 1, - "n=": 10, - ".preventDefault": 1, - "hook": 1, - "d*": 8, - "f*.37": 3, - "exposing": 2, - "across": 1, - "h.rejectWith": 1, - "rootjQuery": 8, - "c.fn.attr.call": 1, - "ownerDocument.documentElement": 1, - "node.currentStyle": 2, - "this.found": 1, - "matched": 2, - "Class": 2, - "image": 5, - "socket.on": 2, - "this.setMinValue": 4, - "n.foreground": 22, - "test": 21, - "String.prototype.toJSON": 1, - ".emit": 1, - "store": 3, - "shadowOffsetX=": 1, - "n.charAt": 1, - "later": 1, - "Bug": 1, - "promisy": 1, - "exports.OutgoingMessage": 1, - "result1.push": 3, - "comment1": 1, - "a.getElementsByTagName": 9, - "f.removeAttr": 3, - "u00A0": 2, - "firing": 16, - "this.once": 2, - "n.drawImage": 14, - "TODO": 2, - "rdashAlpha": 1, - "rsingleTag": 2, - "bool.webm": 1, - "t*.13": 3, - "ti": 39, - "h.clientLeft": 1, - "e.reverse": 1, - "webforms": 2, - "hi.getContext": 6, - "func.call": 1, - "at": 58, - "Wa": 2, - "c.isEmptyObject": 1, - "this.remove": 1, - "ClientRequest.prototype._implicitHeader": 1, - "g.width": 4, - "k.offsetWidth": 1, - "ck.createElement": 1, - "u2028": 3, - "j.cacheable": 1, - "node.offsetTop": 1, - "lastToggle": 4, - "d.mimeType": 1, - "this.complete": 2, - "rawText": 5, - "valid": 4, - "allow": 6, - "f.support.radioValue": 1, - "g.promise": 1, - "attr": 13, - "outgoing": 2, - "frag.appendChild": 1, - "TypeError": 2, - "exports.tokenizer": 1, - "ut=": 6, - "slow": 1, - "d.attr": 1, - "Save": 2, - "All": 1, - "cache": 45, - "i*.053": 1, - "If": 21, - "d.parseFromString": 1, - "dt=": 2, - "wi.height": 1, - "a.splice": 1, - "/opacity": 1, - "hot": 3, - "element.removeAttribute": 2, - "punc": 27, - "u.fillStyle": 2, - "e.handleObj.data": 1, - ".nodeValue": 1, - "a.prototype": 1, - "Qa": 1, - "e.fn": 2, - "self.onSocket": 3, - "u.lcdTitleStrings": 2, - "hi.play": 1, - "this.name": 7, - ".childNodes": 2, - "s.removeEventListener": 1, - "wr": 18, - "Feb": 1, - "xhr.setRequestHeader": 1, - "more": 6, - "open": 2, - "whitespace": 7, - "widget": 1, - "c.wrapAll": 1, - "OutgoingMessage.prototype._send": 1, - "vf": 5, - "b.style": 1, - "dealing": 2, - ".append": 6, - "cp": 1, - "k": 302, - "shived": 5, - "errorPosition.line": 1, - "loc.host": 2, - "wrapError": 1, - "__sizzle__": 1, - "sizcache=": 4, - "get/set": 2, - "f.fx.speeds": 1, - "bd": 1, - "len": 11, - "yi.drawImage": 2, - "ft/2": 2, - "jQuery.isReady": 6, - "checkbox": 14, - "api": 1, - "socket.end": 2, - "allowHalfOpen": 1, - "this.client": 1, - "90": 3, - "_id": 1, - "isRejected": 2, - "c.charAt": 1, - "a.mozRequestAnimationFrame": 1, - "inputElem.setAttribute": 1, - "this.now": 3, - "noCloneEvent": 3, - "h.split": 2, - "l.split": 1, - "Callbacks": 1, - "g.disabled": 1, - "deep": 12, - "e.uaMatch": 1, - ".sort": 9, - "paddingMarginBorderVisibility": 3, - "d.timeout": 1, - "res._emitEnd": 1, - "<r?10:5:2:1,i*Math.pow(10,u)}function>": 1, - "Opera": 2, - "this.clone": 1, - "handler": 14, - "TEXT.replace": 1, - "it.labelColor.getRgbaColor": 4, - "n.canvas.width": 3, - "pf": 4, - "f.fx.stop": 1, - "1e8": 1, - "bW.href": 2, - "d.statusCode": 1, - "c.prototype": 1, - "fallback": 4, - "Number.prototype.toJSON": 1, - "ii.getContext": 5, - "i*kt": 1, - "correctly": 1, - "c.trim": 3, - "481308": 4, - "31": 26, - "sans": 12, - "pi.width": 1, - "steelseries.TrendState.DOWN": 2, - "li.getContext": 6, - "*r": 4, - ".8125*t": 2, - "u2060": 1, - "O": 6, - "feature": 12, - "bH": 2, - "are": 18, - ".type.toLowerCase": 1, - "message": 5, - "ht/": 2, - "a.setAttribute": 7, - "wrap": 2, - "dateExpression": 1, - "this.message": 3, - "289719": 1, - "gt.height/2": 2, - "at.drawImage": 1, - "decimals": 1, - "Backbone.Router": 1, - "br=": 1, - "v.canvas.width": 4, - "ut.save": 1, - ".display": 1, - "skip_whitespace": 1, - "mouseenter": 9, - "this._headers.length": 1, - "docElement.className.replace": 1, - "expected.length": 4, - "_default": 5, - "e.val": 1, - "iterate": 1, - "u/22": 2, - "d.prevObject": 1, - "e.nodeName.toLowerCase": 1, - "div.firstChild.nodeType": 1, - "delegate": 1, - "error": 20, - "socketOnEnd": 1, - "setHost": 2, - "stream.Stream.call": 2, - "037383": 1, - "lt=": 4, - "ut.drawImage": 2, - "parent.firstChild": 1, - "f/2": 13, - "charCode": 7, - "supports": 2, - "parse_multiLineComment": 2, - "f*.3": 4, - "this.bind": 2, - "n.canvas.height/2": 4, - "argument": 2, - ".offsetHeight": 4, - "<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\\w:]+)[^>": 1, - "j.checkClone": 1, - "i*.571428": 2, - "this.setGradient": 2, - "et": 45, - "innerHTML": 1, - "parse_class": 1, - "095": 1, - "f*.12864": 2, - "3": 13, - "OutgoingMessage.prototype.setHeader": 1, - ".fillText": 1, - "k*.831775": 1, - "colspan": 2, - "ServerResponse.prototype.statusCode": 1, - "implemented": 1, - "URLs": 1, - "view": 4, - "function": 1210, - "submitBubbles": 3, - "element": 19, - "exports.OPERATORS": 1, - "hack": 2, - "|": 206, - "this.toArray": 3, - "_hasOwnProperty": 2, - "u.addColorStop": 14, - "ki.setAttribute": 2, - "ONLY.": 2, - "l.order.splice": 1, - "operations": 1, - "bu": 11, - "&&": 1017, - "foregroundVisible": 4, - "u*.856796": 1, - "ri.width": 3, - "f*.075": 1, - "ai": 21, - "/red/.test": 1, - "f.cssHooks.opacity": 1, - "inputElemType": 5, - "h3": 3, - "host": 29, - "case": 136, - "a.location": 1, - "steelseries.BackgroundColor.STAINLESS": 2, - ".*version": 4, - "a.dataType": 1, - "jQuery.browser": 4, - "CSS1Compat": 1, - "n.fillText": 54, - "f*.028037": 6, - "_fired": 5, - "b.jsonp": 3, - "Math.PI": 13, - "reject": 4, - "self.readable": 1, - "i*.851941": 1, - ".0415*t": 2, - "e*.060747": 2, - "f/ht": 1, - "a.lastChild.className": 1, - "k.find": 6, - "c.xhr": 1, - "</table>": 5, - "a.eval.call": 1, - "substr": 2, - "n.rect": 4, - "i.scrollTop": 1, - "a.elem.style": 3, - "d.toLowerCase": 1, - "ba.apply": 1, - "sizset=": 2, - "h.parentNode": 3, - "headers.length": 2, - "options.shivCSS": 1, - "pred": 2, - "f._Deferred": 2, - "href": 9, - "elem.nodeName": 2, - "cancelable": 4, - "c.fn.init": 1, - "GC": 2, - "inside": 3, - "that": 33, - ".ajax": 1, - "lastModified": 3, - "skipBody": 3, - "cleanupExpected": 2, - "s*.29": 1, - "25": 9, - "Strange": 1, - "b.name": 2, - "map": 7, - "rvalidbraces": 2, - "shadowBlur=": 1, - "Make": 17, - "ce": 6, - "j.substr": 1, - "defined": 3, - "y.resolveWith": 1, - "response.": 1, - "f*.05": 2, - "rt.getContext": 2, - "i.ledVisible": 10, - "h.get": 1, - "bY": 1, - "setup": 5, - "isEvents": 1, - "console.log": 3, - "this.cid": 3, - "classes.join": 1, - "dt.stop": 2, - "r*": 2, - ".unbind": 4, - "radio": 17, - "model.previous": 1, - "Modernizr.hasEvent": 1, - "hi.width": 3, - "u.textAlign": 2, - "this.handlers": 2, - "c.apply": 2, - "f.event.remove": 5, - "attr.length": 2, - "Browsers": 1, - "f.noData": 2, - "date": 1, - "part.data": 1, - "u.test": 1, - "_hasOwnProperty.call": 2, - "ii.push": 1, - "parent": 15, - "a.charAt": 2, - "this.connection.writable": 3, - ".34*f": 2, - "t.height*.9": 6, - ".6*s": 1, - "n.documentElement": 1, - "h.checked": 2, - "p.innerHTML": 1, - "ot.height": 1, - "digitalFont": 4, - "i.medium.getHexColor": 1, - "this.start": 2, - "window.frameElement": 2, - "freeParser": 9, - ".46": 3, - "unwrap": 1, - "a.test": 2, - "loc.hash.replace": 1, - "#x": 1, - ".EventEmitter": 1, - "i.useSectionColors": 4, - "deferred.cancel": 2, - "ending": 2, - "this.getOdoValue": 1, - "e.duration": 3, - "c.replaceWith": 1, - "pvt": 8, - "e.push": 3, - "c.length": 8, - "hasOwn": 2, - "D": 9, - "dataTypes=": 1, - "u0604": 1, - "leadingWhitespace": 3, - "shivDocument": 3, - "k.symbolColor.getRgbaColor": 1, - "b=": 25, - "ondrain": 3, - "hi.setAttribute": 2, - "ii.length": 2, - "this.delegateEvents": 1, - "lt": 55, - "bindReady": 5, - "ai.width": 1, - "this.setUnitString": 4, - "nu.drawImage": 3, - "hasContent=": 1, - "methods": 8, - "file": 5, - "occurred.": 2, - "jQuery.type": 4, - "k.replace": 2, - "_.isString": 1, - "color": 4, - "node.id": 1, - "836448": 5, - "textBaseline=": 4, - "div.setAttribute": 1, - "to": 92, - "bytesParsed": 4, - "365": 2, - "cells": 3, - "selector": 40, - "bc.test": 2, - "conditional": 1, - "expando": 14, - "information": 5, - "parsers.alloc": 1, - "parser.incoming._pendings.length": 2, - "l/Math.PI*180": 4, - "jQuery.data": 15, - "async": 5, - "x.version": 1, - "m.assignSocket": 1, - "self.on": 1, - "parser._url": 4, - "Inspect": 1, - "n.attr": 1, - "this.method": 2, - "socket": 26, - "out": 1, - "s.canvas.width": 4, - "u.exec": 1, - "protoProps.hasOwnProperty": 1, - "va.concat.apply": 1, - "f.inArray": 4, - "prevValue": 3, - "container.style.cssText": 1, - "navigator.userAgent": 3, - "oldIE": 3, - "testnames": 3, - "fu": 13, - "a.firstChild.nodeType": 2, - "f.expr": 4, - "b.apply": 2, - "g.charAt": 1, - "this.one": 1, - "st*10": 2, - "s*.006": 1, - "ei": 26, - "found": 10, - "param": 3, - "contentLengthExpression.test": 1, - "i.pointerColor": 4, - "uses": 3, - "(": 8513, - "this._routeToRegExp": 1, - "this.path": 1, - "S.tokpos": 3, - "ri.height": 3, - "firstParam": 6, - "128": 2, - "255": 3, - "model": 14, - "entries": 2, - "parentsUntil": 1, - "k.matches": 1, - "classes": 1, - "fi.width": 2, - "cv": 2, - "q": 34, - "f.globalEval": 2, - "u205F": 1, - "Math.PI*.5": 2, - "v.fail": 1, - "opt.disabled": 1, - "bj": 3, - "parser.incoming._addHeaderLine": 2, - "this.SyntaxError": 2, - "f.fn.load": 1, - "let": 1, - "b.nodeName": 2, - "DocumentTouch": 1, - "i.orientation": 2, - "loc.hash": 1, - "s.readyState": 2, - "lineHeight": 1, - "this.writeHead.apply": 1, - "this.expected": 1, - "u.frameVisible": 4, - "/loaded": 1, - "A.JSON": 1, - "window.onload": 4, - "socketErrorListener": 2, - "ci/": 2, - "show=": 1, - ".appendTo": 2, - "ct*2.5": 1, - "<h?h:n>": 5, - "b.each": 1, - "a.contents": 1, - "ajaxTransport": 1, - "explicit": 1, - "noData": 3, - "token": 5, - "bt.labelColor.setAlpha": 1, - "a.offsetTop": 2, - "bt.test": 1, - "Label": 1, - "serif": 13, - "c.liveFired": 1, - "b.translate": 2, - "camelCase": 3, - "grep": 6, - "a.liveFired": 4, - "self._storeHeader": 2, - "t.start": 1, - "yt": 32, - "deferred.done": 2, - "*/": 2, - "fieldset": 1, - "statement": 1, - "rotate": 31, - "n/Math.pow": 1, - ".toFixed": 3, - "scroll": 6, - "h.childNodes.length": 1, - "a.apply": 2, - "f.support.leadingWhitespace": 2, - "socketOnData": 1, - "self.sockets": 3, - "sourceIndex": 1, - "_.each": 1, - "Modernizr.input": 1, - "characters": 6, - "U": 1, - "beforedeactivate": 1, - "elems.length": 1, - "htmlFor": 2, - "reSkip": 1, - "Snake.__super__.constructor.apply": 2, - "bug": 3, - "d.onreadystatechange": 2, - "none": 4, - "bN": 2, - "this._buffer": 2, - "eventName": 21, - "W/": 2, - "height": 25, - "string.length": 1, - "t.stop": 1, - "sliceDeferred": 1, - "j.test": 3, - "has_x": 5, - ".color": 13, - "this.animate": 2, - "events": 18, - "img": 1, - "st": 59, - "ecma": 1, - "p*st": 1, - "u070f": 1, - "isImmediatePropagationStopped": 2, - ".1025*t": 8, - "i.unitString": 10, - "c.borderLeftWidth": 2, - "g.nodeType": 6, - "p.length": 10, - "Please": 1, - "part": 8, - "<tag>": 1, - "obj": 40, - "checkClone": 1, - "A.addEventListener": 1, - "||": 648, - "socket._httpMessage._last": 1, - "attached": 1, - "stack.length": 1, - "f.events": 1, - "this.filter": 2, - "next": 9, - "select": 20, - "f=": 13, - "name.split": 1, - "backdrop.call": 1, - "EventEmitter": 3, - "bu.test": 1, - "d.readOnly": 1, - "getScript": 1, - "ck.frameBorder": 1, - "clientY": 5, - "handleObj=": 1, - "ut/2": 4, - "all": 16, - "bg.caption": 1, - ".replaceWith": 1, - "jQuerySub.fn.init.prototype": 1, - "exports.Agent": 1, - "y*.093457": 2, - "yi.getContext": 2, - "serialized": 3, - "a.offsetWidth": 6, - "f.exec": 2, - "transition": 1, - "Math.sqrt": 2, - "specific": 2, - "layerX": 3, - "t.beginPath": 4, - "n.restore": 35, - "cssText": 4, - "decimalForeColor": 1, - "sam": 4, - "a.style.position": 1, - "undelegate": 1, - "f.support.cssFloat": 1, - "httpSocketSetup": 2, - "globalAgent": 3, - "parserOnBody": 2, - "<\",>": 1, - "kt/at*l": 1, - "li": 19, - "extra": 1, - "b.elem": 1, - "sizzle": 1, - "print": 2, - "chunkExpression.test": 1, - ".7725*t": 6, - "u.save": 7, - "i.pointerType": 4, - "rdigit": 1, - "b.getElementsByTagName": 1, - "window.history.replaceState": 1, - "seed": 1, - "d.parentNode.removeChild": 1, - "td": 3, - "this.iframe": 4, - "k.filter": 5, - "b*.093457": 2, - "steelseries.TrendState.STEADY": 2, - "a.offsetParent": 1, - "button": 24, - "exceptions": 2, - "parser.incoming.httpVersion": 1, - "S.regex_allowed": 1, - "nr.drawImage": 2, - "i.toPrecision": 1, - "rmsie": 2, - "tbody": 7, - "optgroup": 5, - "separated": 1, - "d.style.position": 1, - "Math.random": 2, - "cased": 1, - "getAttribute": 3, - "e*.12864": 3, - "li.height": 3, - "b.left": 2, - "aren": 5, - "//javascript.nwbox.com/IEContentLoaded/": 2, - "this.setThresholdVisible": 4, - "<m;l++)d.call(c?bh(this[l],g):this[l],e.cacheable||m>": 1, - "yi.height": 1, - "failCallbacks": 2, - "c.props": 2, - "Buffer.isBuffer": 2, - "element.setAttribute": 3, - "parse_eol": 4, - "n.shift": 1, - "isPropagationStopped": 1, - "v.success": 1, - "about": 1, - "bezierCurveTo": 6, - "getElementById": 4, - "kt.rotate": 1, - "*Math.PI": 10, - "attrMap": 2, - "<g;f++)if(h=a[f]){while((h=h.previousSibling)&&h.nodeType!==1);a[f]=e||h&&h.nodeName.toLowerCase()===b?h||!1:h===b}e&&k.filter(b,a,!0)},\">": 1, - "splatParam": 2, - "c.attrFn": 1, - "is_unicode_connector_punctuation": 2, - ".0013*t": 12, - "hu.repaint": 1, - "gr.drawImage": 3, - "ne": 2, - "443": 2, - "bS.exec": 1, - "window.HTMLDataListElement": 1, - "h*.475": 1, - "this.setTrend": 2, - "tick": 3, - "isFunction.": 2, - "delete": 39, - "e.style.cssFloat": 1, - "Client": 6, - "url.parse": 1, - "this.readable": 1, - "exports.parsers": 1, - "sessionStorage.removeItem": 1, - ".7975*t": 2, - "steelseries.Orientation.NORTH": 2, - "tom": 4, - "i.pageXOffset": 1, - "Backbone.Router.prototype": 1, - "h.onreadystatechange": 2, - ".contentWindow": 1, - "WebKit": 9, - "a.nextSibling": 1, - "this.parent": 2, - "docElement.className": 2, - "strokeStyle=": 8, - "f.offset.doesNotAddBorder": 1, - "D/g": 2, - "ck": 5, - "f": 666, - "this._byId": 2, - "exports.curry": 1, - ".67*e": 1, - "e*.055": 2, - "ot.addColorStop": 2, - "h.promise": 1, - "b_": 4, - ".getElementsByTagName": 2, - "type": 49, - "exports._connectionListener": 1, - "l.type": 26, - "ii.height": 2, - "ti.stop": 1, - "exist": 2, - "result": 9, - "decodeURIComponent": 2, - "cssHooks": 1, - "vi.getColorAt": 1, - "this.setValueAnimated": 7, - "f.support.reliableMarginRight": 1, - "f.nth": 2, - "left": 14, - "Agent": 5, - "exports.IncomingMessage": 1, - "u*.65": 2, - ".038": 1, - "dt.type": 4, - "i.valueGradient": 4, - "e.events": 2, - "Event": 3, - "this.url": 1, - "k*.4": 1, - "le.type": 1, - "ir": 23, - "Full": 1, - ".hide": 2, - "c.username": 2, - "a.currentTarget": 4, - "this._paused": 3, - "const": 2, - "read_escaped_char": 1, - "f*.19857": 1, - "hr.getContext": 1, - "hf": 4, - "b.scrollTop": 1, - "objects": 7, - "s.getElementsByTagName": 2, - "child.extend": 1, - "mStyle.backgroundImage": 1, - "u.titleString": 2, - "pi.height": 1, - "String.prototype.trim": 3, - "see": 6, - ".test": 1, - "u.section": 2, - ".0113*t": 10, - "rt.width": 1, - "decrement": 2, - "pa": 1, - "IE": 28, - "forgettable": 1, - "except": 1, - "reSkip.test": 1, - "350467": 5, - "at/": 1, - "h*.365": 2, - "returned.promise": 2, - "self.socketPath": 4, - "eof": 6, - "yi": 17, - "/alpha": 1, - "e.each": 2, - "d.readyState": 2, - "finding": 2, - "o.firstChild.childNodes": 1, - "48": 1, - "i*.435714": 4, - "this.getUTCMonth": 1, - "m=": 2, - "142857": 2, - "i.height": 6, - "iterating": 1, - "this.disabled": 1, - "square": 10, - "andSelf": 1, - "name=": 2, - "f.attrHooks": 5, - "vt=": 2, - "vi.drawImage": 2, - "Test": 3, - "J": 5, - "ns.svg": 4, - "bC": 2, - "this.iframe.location.hash": 3, - "a.addEventListener": 4, - "e*.481308": 2, - "et=": 6, - "si.height": 2, - "steelseries.ColorDef.RED.medium.getRgbaColor": 6, - "filter": 10, - "div.style.marginTop": 1, - "target": 44, - "this._decoder": 2, - "ut.restore": 1, - "t.width*.9": 4, - "<q;m++)if(p=g[m]){for(;(p=p.previousSibling)&&p.nodeType!==1;);g[m]=l||p&&p.nodeName.toLowerCase()===h?p||false:p===h}l&&k.filter(h,g,true)},\">": 1, - "f.acceptData": 4, - "Prioritize": 1, - "req": 32, - "ut.height": 1, - "tu": 13, - "selects": 1, - "rboolean.test": 4, - "exports.slice": 1, - "si": 23, - "DOMParser": 1, - ".concat": 3, - "a.String": 1, - "e.insertBefore": 1, - "parserOnIncomingClient": 1, - "HTTPParser": 2, - "binary": 1, - "setLcdTitleStrings=": 1, - "e.textAlign": 1, - ".8": 1, - "Va": 1, - "b.appendChild": 1, - "f.event.special.change": 1, - "280373": 3, - "f.filter": 2, - "C.apply": 1, - "f2": 1, - "any": 12, - "f.unique": 4, - "l.order.length": 1, - "input.charCodeAt": 18, - "64": 1, - "l/ot": 1, - "u.fillText": 2, - "jQuery.removeData": 2, - "d.firstChild": 2, - "curry": 1, - "y*.012135": 2, - "srcElement": 5, - "textAlign=": 7, - "u*.22": 3, - "n/lt*": 1, - "a.target": 5, - "quoteForRegexpClass": 1, - "_removeReference": 1, - "debug": 15, - "shiv": 1, - "solve": 1, - "f.offset.initialize": 3, - "split": 4, - "k.set": 1, - ".": 91, - "str2": 4, - "WARNING": 1, - "m.level": 1, - "va.slice": 1, - "submit=": 1, - "getJSON": 1, - "flags.once": 1, - "f.event.handle.call": 1, - "f.dir": 6, - "attrHooks": 3, - "array_to_hash": 11, - "e*.1": 1, - "window.navigator": 2, - "b.append": 1, - "a.style.cssText.toLowerCase": 1, - "dir": 1, - "body.removeChild": 1, - "this.setHeader": 2, - "u.pointSymbols": 4, - "vr": 20, - "startTime=": 1, - "w": 110, - "04": 2, - "f*.093457": 10, - "uf": 5, - "RegExp": 12, - "a.superclass": 1, - "bp": 1, - "req.upgradeOrConnect": 1, - "args.concat": 2, - "setValueLatest=": 1, - "this.setPointerType": 3, - "undefined": 328, - "dataTypes": 4, - "j.radioValue": 1, - "s*.5": 1, - "ti.playing": 1, - "Matches": 1, - "80": 2, - "separate": 1, - "c.noData": 2, - "ufeff": 1, - ".each": 3, - "o.split": 1, - "onFree": 3, - "u*n": 2, - "f.selector": 2, - "a.getElementsByClassName": 3, - "b.text": 3, - ".createSVGRect": 1, - "setArea=": 1, - "si.width": 2, - "keypress": 4, - "outgoing.push": 1, - "result5": 4, - "parse_simpleSingleQuotedCharacter": 2, - "pr": 16, - "overzealous": 4, - "document.detachEvent": 2, - "c.documentElement.doScroll": 2, - "this.maxHeadersCount": 2, - "parser.execute": 2, - ".ok": 1, - "f.removeData": 4, - "i.nodeType": 1, - "of": 28, - "a.isPropagationStopped": 1, - "outgoing.shift": 1, - "y.drawImage": 6, - "b.selected": 1, - "fontWeight": 1, - "A.call": 1, - "self._deferToConnect": 1, - "/Connection/i": 1, - "errorPosition.column": 1, - "ki.play": 1, - "req.socket": 1, - "fillText": 23, - "h*.035": 1, - "n.pointer": 10, - ".children": 1, - "this.navigate": 2, - "b.offsetParent": 2, - "this.attributes": 1, - "[": 1459, - "self._last": 4, - "docCreateFragment": 2, - "Error.prototype": 1, - "startRule": 1, - "t.closePath": 4, - "bT": 2, - "keys": 11, - "t=": 19, - "multiline": 1, - "have": 6, - "Content": 1, - "documentElement": 2, - "a.webkitRequestAnimationFrame": 1, - "ti/2": 1, - "t*.435714": 4, - ".455*h": 1, - "u.shadowOffsetY": 2, - "__hasProp": 2, - "Backbone.History.prototype": 1, - "needed": 2, - "f.unshift": 2, - "js": 1, - "ft.getContext": 2, - "u.customLayer": 4, - "this.setLedColor": 5, - "Preliminary": 1, - "converted": 2, - "subtracts": 1, - "S.tokcol": 3, - "t.width": 2, - "d.replace": 1, - "beforeSend": 2, - "tag": 2, - "Encoding/i": 1, - "start_token": 1, - "yi.play": 1, - "steelseries.ColorDef.RED": 7, - "step": 7, - "nodeType=": 6, - "l.appendChild": 1, - "Users": 1, - "Xa.exec": 1, - "messageHeader": 7, - "tr.width": 1, - "i.frameDesign": 10, - "Cancel": 1, - "this.make": 1, - "q.test": 1, - "#*": 1, - "Construct": 1, - "this.output.shift": 2, - "process.env.NODE_DEBUG": 2, - "uFEFF/": 1, - "st*di": 1, - "trimRight": 4, - "e*.121428": 2, - "e*.007": 5, - "this.maxSockets": 1, - "59": 3, - ".start": 12, - "n.textBaseline": 10, - "this.nodeName": 4, - "swing": 2, - "g.getAttribute": 1, - "field.toLowerCase": 1, - "f*.38": 7, - "window.attachEvent": 2, - "parent.apply": 1, - "c.isPlainObject": 3, - "e.originalEvent": 1, - "UnicodeEscapeSequence": 1, - ".686274": 1, - "i.maxValue": 10, - "start=": 1, - "readyWait": 6, - "elem=": 4, - "#000": 2, - "frag.createDocumentFragment": 1, - "this.setLcdColor": 5, - "dt": 30, - "browsers": 2, - "colSpan": 2, - "f.pixelLeft": 1, - "u*i*": 2, - "pt.type": 6, - "e.css": 1, - "items": 2, - "R.call": 2, - "comment2": 1, - "<f.length;n++)if(a>": 1, - "checkSet": 1, - "after": 7, - "jQuery.cache": 3, - ".elem": 1, - "exports.array_to_hash": 1, - "kt.medium.getRgbaColor": 1, - "outside": 2, - "a.now": 4, - "margin": 8, - "Function": 3, - "i.style.width": 1, - "determining": 3, - "c.set": 1, - "cl.write": 1, - "n.order": 1, - "a.nodeName": 12, - "360": 15, - "au": 10, - "complete/.test": 1, - "slideUp": 1, - "timeout": 2, - "newDefer": 3, - "a.innerHTML": 7, - "this._ensureElement": 1, - "msie": 4, - "/chunk/i": 1, - "u2029": 2, - "div.style.display": 2, - "a.handleObj": 2, - "cur": 6, - "e.selector": 1, - "acceptData": 3, - "err.message": 1, - "this.writeHead": 1, - "additional": 1, - "75": 3, - "#x27": 1, - "elem.nodeType": 8, - "attrFn": 2, - "</p>": 2, - "b.firstChild": 5, - "a.setInterval": 2, - "n.moveTo": 37, - "scrollTop": 2, - ".0516*t": 7, - "callback.apply": 1, - "url=": 1, - "a.preventDefault": 3, - "self.fireWith": 1, - "you": 1, - "info.statusCode": 1, - "window.openDatabase": 1, - "kt.height": 1, - "window.": 6, - "normalizes": 1, - "this.extend": 1, - "#": 13, - "even": 3, - "fillStyle=": 13, - "lookups": 2, - "k.style.paddingLeft": 1, - "widows": 1, - "fragment.substr": 1, - "OPERATORS": 2, - "rgb": 6, - "i.set": 1, - "prevAll": 2, - "str": 4, - ".1075*t": 2, - "i*.7475": 1, - "st.getContext": 2, - "t.dark.getRgbaColor": 2, - "f.easing": 1, - "cos": 1, - "parseJSON": 4, - "n.match.ID.test": 2, - "cq": 3, - "l": 312, - "Ban": 1, - "a.getAttribute": 11, - "closeExpression.test": 1, - "stream": 1, - "r.test": 1, - "constructor": 8, - "be": 12, - "f.makeArray": 5, - "options.localAddress": 3, - "s.addColorStop": 4, - "tu.drawImage": 1, - "ends": 1, - "fcamelCase": 1, - "little": 4, - "toggle": 10, - "F.prototype": 1, - "expected.sort": 1, - "parse_bracketDelimitedCharacter": 2, - "this.setMinMeasuredValueVisible": 4, - "removeAttr": 5, - "Gets": 2, - "d.length": 8, - "standalone": 2, - "this.headers": 2, - ".76*t": 4, - "or.drawImage": 1, - "t.getBlue": 4, - "this.models": 1, - "wt.valueForeColor": 1, - "/f": 3, - "b.parentNode.removeChild": 2, - "i.each": 1, - "script": 7, - "<st&&(it=!1,vi(it)):(it=!0,vi(it)),l>": 1, - "e/10": 3, - "Recurse": 2, - "protoProps": 6, - "isDefaultPrevented=": 2, - "Flag": 2, - "sessionStorage.setItem": 1, - "u/vt": 1, - "d/ot": 1, - "b.getElementsByClassName": 2, - "u202f": 1, - "lowercase": 1, - "option.getAttribute": 2, - "n.bargraphled": 4, - "gradientStartColor": 1, - "r.getRgbaColor": 8, - "frag.indexOf": 1, - "camelizing": 1, - "eol": 2, - "internal": 8, - "e.ready": 6, - "reliable": 1, - "**": 1, - "s*.35": 1, - "results": 4, - "_Deferred": 4, - "_routeToRegExp": 1, - "c.globalEval": 1, - "a.getAttributeNode": 7, - "this.getHeader": 2, - "s*.023364": 2, - "32": 1, - "A.frameElement": 1, - "sub": 4, - "params.type": 1, - "navigator.userAgent.toLowerCase": 1, - "connectionListener": 3, - "oi.play": 1, - "vertical": 1, - ".close": 1, - "repeatable": 1, - "P": 4, - "recognize": 1, - "prefix": 6, - "h.offsetTop": 1, - "c.error": 2, - "simple": 3, - "bI": 1, - "Modernizr.prefixed": 1, - "Math.PI*2": 1, - "h/e.duration": 1, - "internally": 5, - "a.nodeName.toUpperCase": 2, - "c.target.ownerDocument": 1, - "a=": 23, - "this.output.unshift": 1, - ".528036*f": 5, - "clip": 1, - "kt": 24, - "cw.test": 1, - "f.error": 4, - "#11217": 1, - "mStyle.cssText": 1, - "setPointerColor=": 1, - ".480099": 1, - "yt.getStart": 2, - ".12*t": 4, - ".length": 24, - "st.height": 1, - "r.getElementById": 7, - "push": 11, - "so": 8, - "355": 1, - "i.height*.9": 6, - "injectElementWithStyles": 9, - "i/255": 1, - "readyList.fireWith": 1, - "f.prop": 2, - "c.split": 2, - "window.postMessage": 1, - "<=\",>": 1, - "n.frame": 22, - "references": 1, - "this.supportsFixedPosition": 1, - "See": 9, - "optSelected": 3, - "window.addEventListener": 2, - ".getRgbaColor": 3, - "insertBefore": 1, - "Catch": 2, - "run": 1, - "No.": 1, - "encodeURIComponent": 2, - ".indexOf": 2, - "d.cloneNode": 1, - "i.resolve": 1, - "self.useChunkedEncodingByDefault": 2, - "7757": 1, - "490654": 3, - "currentPos": 20, - "u.canvas.width*.4865": 2, - "issue": 1, - "support.radioValue": 2, - "model.unbind": 1, - "socket.emit": 1, - "434579": 4, - "lt/ct": 2, - "w*.012135": 2, - "eu": 13, - "route.replace": 1, - "this.mouseenter": 1, - "v/": 1, - "di": 22, - "/gi": 2, - ".val": 5, - "4": 4, - ".0377*t": 2, - "h.abort": 1, - "jQuery.ready": 16, - "p.pop": 4, - "v.get": 1, - "g.domManip": 1, - "instanceof": 19, - "e.getComputedStyle": 1, - "incoming.length": 2, - "JS_Parse_Error.prototype.toString": 1, - "datetime": 1, - "s.body.appendChild": 1, - "A.jQuery": 3, - "a.style.cssFloat": 1, - "info.url": 1, - "yi=": 1, - "e*.850467": 4, - "i.width": 6, - "rBackslash": 1, - "a.event": 1, - "c.ready": 7, - "}": 2712, - "/Expect/i": 1, - "addStyleSheet": 2, - "ul": 1, - "this.setPointSymbols": 1, - "f*.453271": 2, - "bv": 2, - "<e;d++){g=this[d];while(g){if(l?l.index(g)>": 1, - "</\"+d+\">": 1, - ".getContext": 8, - "stopPropagation": 5, - "exists": 9, - "protoProps.constructor": 1, - "h4": 3, - "steelseries.BackgroundColor.BRUSHED_STAINLESS": 2, - "Sizzle": 1, - "work": 6, - "expr": 2, - "copyIsArray": 2, - "RED": 1, - "h*.41": 1, - "resolve": 7, - "a.detachEvent": 1, - "Will": 2, - "Stack": 1, - "entire": 1, - "passed": 5, - "classes.push": 1, - "cr.drawImage": 3, - "these": 2, - "_.toArray": 1, - "removeProp": 1, - "html5.shivCSS": 1, - "assume": 1, - "Normalize": 1, - "copy": 16, - "Either": 2, - "interval": 3, - "f.guid": 3, - "defaultPrevented": 1, - "expectedHumanized": 5, - "n.lineCap": 5, - "font=": 28, - "fe": 2, - "c.event.add": 1, - "f.ajaxSettings.traditional": 2, - "px": 31, - "ol": 1, - "Horse.__super__.constructor.apply": 2, - "T.ready": 1, - "appendTo": 1, - "attempt": 2, - "which=": 3, - "exports.Server": 1, - "util": 1, - "setPointerColorAverage=": 1, - "toString": 4, - "this.parentNode": 1, - "f.isXMLDoc": 4, - "bound": 8, - "wheelDelta": 3, - "maintains": 1, - "Perini": 2, - "this.sockets": 9, - "lastData": 2, - "ensure": 2, - "from": 7, - "here": 1, - "tickCounter*a": 2, - "font": 1, - "cf": 7, - "a": 1489, - "multiple=": 1, - "catch": 38, - "setFrameDesign=": 1, - "hr.drawImage": 2, - "f*.06": 1, - "g.document.documentElement": 1, - "bZ": 3, - "unique": 2, - "speeds": 4, - "Clear": 1, - "OutgoingMessage.prototype.removeHeader": 1, - "OutgoingMessage.prototype._writeRaw": 1, - "this._decoder.write": 1, - "w.labelColor": 1, - "led": 18, - "u.font": 2, - "steelseries.PointerType.TYPE1": 3, - "Only": 5, - "j.appendChecked": 1, - "nextSibling": 3, - "accepts": 5, - "f.support.parentNode": 1, - "RE_DEC_NUMBER.test": 1, - "promiseMethods.length": 1, - "<e;d++)this[d].style&&(this[d].style.display=\"none\");return>": 1, - "listen": 1, - ".8425*t": 1, - "i.trendVisible": 4, - "clientTop": 2, - "position": 7, - "d.style.display": 5, - "rt": 45, - "jQuery.each": 2, - "several": 1, - "c.filter": 2, - "atRoot": 3, - "list.push": 1, - "into": 2, - "f.timers": 2, - "fire": 4, - "etag": 3, - "only.": 2, - "cubes": 4, - "caution": 1, - "with_eof_error": 1, - "f*.033": 1, - "e=": 21, - "f.ajaxPrefilter": 2, - "b.parentNode": 4, - "a.firstChild": 6, - "flags.unique": 1, - "chars": 1, - ".47": 3, - "a.isImmediatePropagationStopped": 1, - "based": 1, - "g.getPropertyValue": 1, - "modified": 3, - "setBackgroundColor=": 1, - "n.value": 4, - "extension": 1, - "f.event.triggered": 3, - "u00ad": 1, - "mousedown": 3, - "ServerResponse": 5, - "f*.121428": 2, - "shouldn": 2, - "E": 11, - "f.buildFragment": 2, - "m.test": 1, - "directly": 2, - "IncomingMessage.prototype._emitEnd": 1, - "pi=": 1, - "s.fillStyle": 1, - "inArray": 5, - "n.slice": 1, - "flagsCache": 3, - "defer": 1, - ".delegate": 2, - "c.async": 4, - "this.socket.resume": 1, - "save": 27, - "t*.142857": 8, - "lu": 10, - "document.documentElement": 2, - "/top/.test": 2, - "a.defaultView": 2, - "callback": 23, - "isReady": 5, - "req.method": 5, - "li.width": 3, - "ki": 21, - "via": 2, - "b.outerHTML": 1, - "a.sub": 1, - "e*.556074": 3, - "rt/2": 2, - "s/c": 1, - "get/setAttribute": 1, - "i.scrollLeft": 1, - "load": 5, - "j.nodeName": 1, - "readyList": 6, - "filters": 1, - "ServerResponse.prototype.writeContinue": 1, - ".149019": 1, - ".046728*h": 1, - "f.fn.offset": 2, - "positionTopLeftWidthHeight": 3, - "flags.split": 1, - "f.camelCase": 5, - "cellPadding": 2, - "d.height": 4, - "*ot": 2, - ".3": 8, - "k.left": 1, - "padding": 4, - "b.replace": 3, - "this.options.root.length": 1, - "this.selectedIndex": 1, - "a.style.opacity": 2, - "them": 3, - "gradientFraction1Color": 1, - "i.lcdColor": 8, - "a.document.nodeType": 1, - "jQuery.browser.webkit": 1, - "relative": 4, - "minute": 1, - "options.method": 2, - "document.defaultView": 1, - "f.active": 1, - "Since": 3, - "h.clientTop": 1, - "c.map": 1, - "loc.pathname": 1, - "exports.ServerResponse": 1, - "parser.incoming._emitData": 1, - "steelseries.TrendState.OFF": 4, - "k.position": 4, - "class": 5, - "f.support.appendChecked": 1, - "h.open": 2, - "connectionExpression": 1, - "Prevent": 2, - "c.defaultView": 2, - "OutgoingMessage.prototype.write": 1, - "floor": 13, - "s*.007": 3, - "browserMatch": 3, - "prev": 2, - "<-180&&e>": 2, - "789719": 1, - "st/": 1, - "w.labelColor.getRgbaColor": 2, - "destroy": 1, - ")": 8521, - "this.outputEncodings.push": 2, - "i.knobStyle": 4, - "Array.isArray": 7, - "them.": 1, - "bt/": 1, - "ui.length": 2, - "attrs": 6, - "overflowX": 1, - "bring": 2, - "HEAD": 3, - "partsConverted": 2, - "k*.130841": 1, - "cw": 1, - "r": 261, - "attrName": 4, - "c.on": 2, - "this._header": 10, - "e.fillStyle": 1, - "foregroundType": 4, - "steelseries.GaugeType.TYPE1": 4, - "bk": 5, - "ua": 6, - "IncomingMessage.prototype.setEncoding": 1, - "featureName": 5, - "k*.16": 1, - "complete=": 1, - "this.getUTCSeconds": 1, - "bg.colgroup": 1, - "DTRACE_HTTP_SERVER_REQUEST": 1, - "parser.incoming.url": 1, - "wt=": 3, - "app": 2, - "f.extend": 23, - "<(\\w+)\\s*\\/?>": 4, - "n.order.length": 1, - "parser.onHeaders": 1, - "<2)for(b>": 1, - "a.style.paddingLeft": 1, - "existent": 2, - "at.getContext": 1, - "ft=": 3, - "ui.height": 2, - "callbacks.push": 1, - "sort": 4, - "span": 1, - "fakeBody.appendChild": 1, - "i*.05": 2, - "u*i": 1, - "hr": 17, - "allows": 1, - "input.setAttribute": 5, - "goggles": 1, - "triggerRoute": 4, - "prepend": 1, - "OutgoingMessage.prototype.getHeader": 1, - "seq": 1, - "frameVisible": 4, - "gf": 2, - "keyCode": 6, - "u2000": 1, - "result0": 264, - "k*.61": 1, - "its": 2, - "matchesSelector=": 1, - "e*.73": 3, - "kt.clearRect": 1, - "ties": 1, - "oa": 1, - "parse_classCharacterRange": 3, - "exports.is_alphanumeric_char": 1, - "f.restore": 5, - "this.setMaxMeasuredValueVisible": 4, - "yu": 10, - "e.style.position": 2, - "alive": 1, - "specified": 4, - "use": 10, - "trigger": 4, - "jQuery.fn.init": 2, - "isExplorer.exec": 1, - "readonly": 3, - "38": 5, - "l=": 10, - "/xml/": 1, - "u.degreeScale": 4, - "s.rotate": 3, - "V": 2, - "v.drawImage": 2, - "insert": 1, - "Infinity": 1, - "keypress.specialSubmit": 2, - "bO": 2, - "like": 5, - "c.createDocumentFragment": 1, - "this.outputEncodings.unshift": 1, - "originalEvent=": 1, - ".112149*ut": 1, - "had": 1, - "returnValue=": 2, - "browser": 11, - "createElement": 3, - ".toJSON": 4, - "incoming.shift": 2, - "field": 36, - "omPrefixes.split": 1, - "zero": 2, - "c*u": 1, - "su": 12, - "Math.min": 5, - "elem.removeAttributeNode": 1, - "i.offsetTop": 1, - "attribute": 5, - "P.version": 1, - "ri": 24, - "f.offset.doesAddBorderForTableAndCells": 1, - "document.documentMode": 3, - "f.event.fix": 2, - "this.each": 42, - "c.target": 3, - "e*.462616": 2, - "context": 48, - "this.length": 40, - "Ua": 1, - "wait": 12, - "req.listeners": 1, - "f.event.global": 2, - "e.handleObj": 1, - "undocumented": 1, - "jQuery.support.optDisabled": 2, - "t.fillStyle": 2, - "s*.57": 1, - "*vt": 4, - "props.length": 2, - "this.setGradientActive": 2, - "c.nodeName": 4, - "flags.memory": 1, - "TYPE1": 2, - "rt.height": 1, - "e.animatedProperties": 5, - "uffff": 1, - "cp.slice": 1, - "c.isReady": 4, - "lastEncoding": 2, - "bool.m4a": 1, - "Function.prototype.bind": 2, - "selectedIndex": 1, - "layerY": 3, - "c.browser": 1, - "body.offsetTop": 1, - "context.ownerDocument": 2, - "b.createDocumentFragment": 1, - "a.style.zoom": 1, - "c.exclusive": 2, - "s.length": 2, - ".specialChange": 4, - "marked": 1, - ".splice": 5, - "do": 15, - "c.readyState": 2, - "this.port": 1, - "dr=": 1, - "div.test": 1, - "DOMElement": 2, - "traditional": 1, - "res._last": 1, - "ownerDocument.createDocumentFragment": 2, - "t*.007142": 4, - "p.send": 1, - "e.browser": 1, - ".promise": 5, - "this.selector": 16, - "inherits": 2, - "n.target._pos": 7, - "c.fx": 1, - "a.contentDocument": 1, - "joiner": 2, - "nt=": 5, - "this.setTitleString": 4, - "ur": 20, - "te": 2, - "slideDown": 1, - "jQuery.attrFn": 2, - "this.domManip": 4, - "rea": 1, - "f.param": 2, - "self.maxSockets": 1, - "e.handleObj.origHandler.apply": 1, - "isFinite": 1, - "Sets": 3, - "k.createElement": 1, - "First": 3, - "h/2": 1, - "Math.round": 7, - "window.jQuery": 7, - ".detach": 1, - "e.clearRect": 1, - "extend": 13, - "f.call": 1, - "this.fragment": 13, - "s.canvas.height": 4, - "ownerDocument": 9, - "c.dataTypes.unshift": 1, - "msecs": 4, - "docElement.appendChild": 2, - "471962": 4, - ".19857": 6, - "/href": 1, - "preventDefault": 4, - "h.readyState": 3, - "i.live.slice": 1, - "email": 2, - "this.trigger.apply": 2, - "c.toLowerCase": 4, - "handler.callback": 1, - "need": 10, - "self._flush": 1, - ".897195*ut": 1, - "foreground": 30, - "s*.626168": 1, - "y=": 5, - "u200A": 1, - "sam.move": 2, - "where": 2, - "e.fn.attr.call": 1, - "currently": 4, - "ready": 31, - "a.done": 1, - "fadeOut": 1, - "token.type": 1, - ".805*t": 2, - "yt.getContext": 5, - "option": 12, - "or": 38, - "target.modal": 1, - "u*.7475": 1, - "n.toFixed": 2, - "nf": 7, - "f.createElement": 1, - "details": 3, - "children": 3, - "document.createDocumentFragment": 3, - "Keep": 2, - "wt.valueBackColor": 1, - "steelseries.LcdColor.STANDARD_GREEN": 4, - "j.toggleClass": 1, - "focus": 7, - ".name": 3, - "util._extend": 1, - "assign": 1, - "k*Math.PI/180": 1, - ".15": 2, - "this.setLcdDecimals": 3, - "this._configure": 1, - "</tbody>": 3, - "For": 5, - "y.done": 1, - "isReady=": 1, - "prototype=": 2, - "cl": 3, - "g": 441, - "keyup": 3, - "parser._headers": 6, - "window.Worker": 1, - "String.fromCharCode": 4, - "i.gaugeType": 6, - "l.match.PSEUDO": 1, - "altKey": 4, - "i*": 3, - "s=": 12, - "this.eq": 4, - "mStyle.backgroundColor": 3, - "ut.rotate": 1, - "Do": 2, - "div.style.padding": 1, - "opacity": 13, - "Backbone.Collection.extend": 1, - "parser.incoming.method": 1, - "i.toFixed": 2, - ".attributes": 2, - "this.createSocket": 2, - "ti.start": 1, - "vi.getContext": 2, - "model.trigger": 1, - "/a": 1, - "is": 67, - "text": 14, - "normalize": 2, - "Name": 1, - "f.support.focusinBubbles": 1, - "P.browser": 2, - "this.nodeType": 4, - "e.className": 14, - "IncomingMessage.prototype.resume": 1, - "i*.121428": 1, - "f.merge": 2, - "borderTopWidth": 1, - "still": 4, - "corresponding": 2, - "release": 2, - "this.setMinMeasuredValue": 3, - "added": 1, - "params.contentType": 2, - "lr=": 1, - "i.repaint": 1, - "space": 1, - "merge": 2, - "parser.incoming._pendings.push": 2, - "h.medium.getRgbaColor": 6, - "49": 1, - "s/10": 1, - "attrFixes": 1, - "storage": 1, - "m.selector": 1, - "c.detachEvent": 1, - "this.sendDate": 3, - "f*.28": 6, - "a.offsetLeft": 1, - "now": 5, - "password": 5, - "cellspacing": 2, - "offsetSupport": 2, - "e.apply": 1, - "fragment.replace": 1, - "elem.getAttribute": 7, - "Fallback": 2, - "K": 4, - "must": 4, - "window.matchMedia": 1, - "lastExpected": 3, - "easing": 3, - "val": 13, - "But": 1, - "bD": 3, - "click.specialSubmit": 2, - "//don": 1, - "fakeBody": 4, - "textColor": 2, - "inlineBlockNeedsLayout": 3, - "s*.checked.": 1, - "a.keyCode": 2, - "g.get": 1, - "duration": 4, - "array.length": 1, - ".98": 1, - "fill": 10, - "this.checkUrl": 3, - "j.style.cssFloat": 1, - "callbacks": 10, - "exports.ClientRequest": 1, - ".36*f": 6, - "g.scrollTo": 1, - "a.frameElement": 1, - "p.splice": 1, - "keydown": 4, - "res.end": 1, - "released": 2, - ".document": 1, - "scrollTo": 1, - "<i;h++){var>": 3, - "localStorage.setItem": 1, - "r.live.slice": 1, - "style.cssText": 1, - "f.fx": 2, - "Can": 2, - "_i": 10, - ".69": 1, - "b.triggerHandler": 2, - "65": 2, - ".8525*t": 2, - "pop": 1, - "testPropsAll": 17, - "parse_js_number": 2, - "ri=": 1, - "Math.ceil": 63, - "metadata": 2, - "v.error": 1, - "Verify": 3, - "nodeType": 1, - "hashStrip": 4, - "ClientRequest.prototype.clearTimeout": 1, - "lazy": 1, - "code": 2, - "Is": 2, - "rspace": 1, - "b.contents": 1, - "marginDiv.style.width": 1, - "this.useChunkedEncodingByDefault": 4, - "ai=": 1, - "e.canvas.width": 2, - "t.save": 2, - "gt.width": 2, - "ServerResponse.prototype.detachSocket": 1, - "e*.728155*": 1, - "yt.playing": 1, - "i.area": 4, - "b.events": 4, - "f.support.ajax": 1, - "div.style.zoom": 2, - "Check": 10, - "/": 290, - "IncomingMessage.prototype._emitPending": 1, - "defaultView": 2, - "str3": 2, - "digit": 3, - "h.light.getRgbaColor": 6, - "rmsPrefix": 1, - "socket.once": 1, - "foundHumanized": 3, - "f*.012135": 2, - "i.backgroundColor": 10, - "h.getAllResponseHeaders": 1, - "document.removeEventListener": 2, - "c.password": 1, - "root": 5, - "mouseup": 3, - "g.selected": 1, - "n.canvas.height": 3, - "b.using.call": 1, - "x": 33, - "f.each": 21, - "PUNC_CHARS": 1, - "05": 2, - "lists": 2, - "a.JSON.parse": 2, - "bq": 2, - "engine": 2, - "outgoing.length": 2, - "ownerDocument.getElementsByTagName": 1, - "ae": 2, - "be.test": 1, - "req.res._emitPending": 1, - "omPrefixes": 1, - "meters": 4, - "e.preventDefault": 1, - "i.getRed": 1, - "java": 1, - "Date": 4, - "Don": 1, - "f.attrHooks.style": 1, - "jQuery.isXMLDoc": 2, - "setTimeout": 19, - "nodeHook": 1, - "socket.addListener": 2, - "result.SyntaxError.prototype": 1, - "/r": 1, - "overrideMimeType": 1, - "custom": 5, - "f.fn.extend": 9, - "signal_eof": 4, - "or*.5": 1, - "valueBackColor": 1, - "a.attributes.value": 1, - "fadeTo": 1, - "f.event.customEvent": 1, - "b.data": 5, - "q.expr": 4, - "f.removeEvent": 1, - "i.preType": 2, - "char": 2, - "_ensureElement": 1, - "f.expr.filters.hidden": 2, - "a.DOMParser": 1, - "addColorStop": 25, - "pt.height": 1, - "q.set": 4, - "a.style.width": 1, - "b.top": 2, - "/radio": 1, - "dataAttr": 6, - "jQuery.noData": 2, - "duration=": 2, - ".extend": 1, - "ClientRequest.prototype.setNoDelay": 1, - "this.getMaxValue": 4, - "b.url": 4, - "e.browser.webkit": 1, - "c.body.removeChild": 1, - "_onModelEvent": 1, - "removal": 1, - "escape.call": 1, - "http.createServer": 1, - "net": 1, - "ei.labelColor.setAlpha": 1, - "live": 8, - "parts": 28, - "c.clean": 1, - "chunk.length": 2, - "target.prototype": 1, - "21": 2, - "t.moveTo": 4, - "helper": 1, - "hold": 6, - "dateCache": 5, - "parser.socket.readable": 1, - "ni.height": 2, - "this.setMaxMeasuredValue": 3, - "ca": 6, - "setInterval": 6, - "arguments": 83, - "bg.tfoot": 1, - "class=": 5, - "<0||e==null){e=a.style[b];return>": 1, - "bU": 4, - "a.indexOf": 2, - "this._implicitHeader": 2, - "S.comments_before": 2, - "ei/": 1, - "newDefer.resolve": 1, - "Math.max": 10, - "a.cacheable": 1, - "viewOptions": 2, - "it.height": 1, - "Object.prototype.hasOwnProperty": 6, - "d.nodeName": 4, - "jQuery.readyWait": 6, - "options.agent": 3, - "Agent.prototype.createSocket": 1, - "StringDecoder": 2, - "lineTo": 22, - "Syntax": 3, - "c.body": 4, - "assignment": 1, - "toFixed": 3, - "timers": 3, - "data": 145, - "situation": 2, - "a.converters": 3, - "matchFailed": 40, - "tr.drawImage": 2, - "jQuery.parseJSON": 2, - "uaMatch": 3, - "b.ownerDocument": 6, - "jQuery.acceptData": 2, - "f.parseJSON": 2, - "Get": 4, - "emitTimeout": 4, - "inputElem.style.cssText": 1, - "node.offsetLeft": 1, - "<i)}lr(d)}r&&nr&&hi(d,c,h,f,s,k),r&&fr&&(oi=p(gt,er,ht),d.drawImage(oi,hr,or),d.drawImage(oi,hr,cr),yr(d)),e&&(nt(ai,f,ri,ii,k.labelColor),nt(ki,f,ri,kt,k.labelColor,!0),nt(ci,f,dt,kt,k.labelColor),nt(li,f,dt,kt,k.labelColor,!0)),l&&ir&&(u=dt.type===\"type15\"||dt.type===\"type16\"?!1:!0,y(yi,si,f,s,u,kr,dr))},pt=function(n){n=n||{};var>": 1, - "gradientStopColor": 1, - "l.push": 2, - "s.events": 1, - "self.once": 2, - "ii=": 2, - "translate": 38, - "/.test": 19, - "c.type": 9, - "g.replace": 1, - "c.addClass": 1, - "Height": 1, - "faster": 1, - "stored": 4, - "n.save": 35, - "Use": 7, - "u200c": 1, - "f.propHooks.selected": 2, - "this._expect_continue": 1, - "connectionExpression.test": 1, - "Horse.name": 1, - "testMediaQuery": 2, - "steelseries.KnobType.STANDARD_KNOB": 14, - "tables": 1, - "c.text": 2, - "a.attachEvent": 6, - "optimize": 3, - "jQuerySub.sub": 1, - "auth": 1, - "this.connection": 8, - "e.save": 2, - "*c": 2, - "nt.translate": 2, - "du": 10, - "@": 1, - "g.sort": 1, - "info": 2, - "u0600": 1, - "oi.pause": 1, - ".825*t": 9, - "u/": 3, - "d.style.overflow": 1, - "Return": 2, - "setAlpha": 8, - "e.complete.call": 1, - "m.exec": 1, - "f.left": 3, - "sentExpect": 3, - "this.output": 3, - "thisCache.data": 3, - "c.isLocal": 1, - "t*.15": 1, - ".0314*t": 5, - "kt.getContext": 2, - "<j;i++)f.event.add(b,h+(g[h][i].namespace?\".\":\"\")+g[h][i].namespace,g[h][i],g[h][i].data)}}}}function>": 1, - "body": 22, - "j.handleObj": 1, - "c.head": 1, - "h.firstChild": 2, - "fakeBody.parentNode.removeChild": 1, - "f.drawImage": 9, - "Unexpose": 1, - "c.guid": 1, - "quickExpr.exec": 2, - "div.style.border": 1, - "this._endEmitted": 3, - "navigator": 3, - "removed": 3, - "headers": 41, - "Backbone.history.navigate": 1, - "splice": 5, - "sentDateHeader": 3, - "attrs.list": 2, - "i.digitalFont": 8, - "attrNames.length": 1, - "window.location.hash": 3, - "JSON.stringify": 4, - "sure": 18, - "h*.2": 2, - "Math.PI/": 1, - "this.die": 1, - "mode": 1, - "s.splice": 1, - "frowned": 1, - "script/i": 1, - "there": 6, - "obj.constructor": 2, - "Client.prototype.request": 1, - "a.sort": 1, - "d.slice": 2, - "IncomingMessage.prototype.pause": 1, - "version": 10, - "info.versionMinor": 2, - "end.rawText": 2, - "S.text.indexOf": 1, - "ee": 2, - "isPropagationStopped=": 1, - "Math.PI/180": 5, - "b.scrollLeft": 1, - "complete": 6, - "HTTPParser.REQUEST": 2, - "f*.006": 2, - "d.text": 1, - "speed": 4, - "a.namespace.split": 1, - "this.queue": 4, - "wt": 26, - "f.event.special": 5, - "b.attributes.value": 1, - "container.": 1, - "docMode": 3, - "i.width*.9": 6, - "contextXML": 1, - "solves": 1, - ".cloneNode": 4, - "bg.tbody": 1, - "c.isArray": 5, - "cr": 20, - "m": 76, - "cube": 2, - "/msie": 1, - ".785*t": 1, - "two": 1, - "v.status": 1, - "bf": 6, - "bool.ogg": 2, - "hide=": 1, - "DOMContentLoaded": 14, - "makeArray": 3, - "c.namespace": 2, - "a.text": 1, - "PEG.parser": 1, - "this.valueAverage": 1, - "92": 1, - "one": 15, - "a.currentStyle": 4, - "guid": 5, - "f.style": 4, - "this.initialize.apply": 2, - "this.removeAttribute": 1, - "str1.length": 1, - "Invalid": 2, - "setPointerType=": 1, - "yt.onMotionChanged": 1, - "wi.getContext": 2, - "requires": 1, - "this.prop": 2, - ".wrapAll": 2, - "/g": 37, - "f*.142857": 4, - "gt.height": 1, - "m.text": 2, - "nt.drawImage": 3, - "wt.decimals": 1, - "natively": 1, - "ga": 2, - "previousSibling": 5, - "ctor.prototype": 3, - "pageX": 4, - "indexOf": 5, - "Boolean": 2, - "<st&&(it=!1,gt=pt),v.drawImage(gt,ur,sr));var>": 1, - ".871012": 3, - "occurs.": 2, - "jQuery.isEmptyObject": 1, - "jQuerySub.prototype": 1, - "options.protocol": 3, - ".onSocket": 1, - "headerIndex": 4, - "setValue=": 2, - "u*.046728": 1, - "n.led": 20, - "context.nodeType": 2, - "finally": 3, - "n.removeClass": 1, - "d=": 15, - "s*.36": 1, - ".4*k": 1, - "since": 1, - "dest": 12, - "relatedTarget=": 1, - "f.expr.match.POS": 1, - "hover": 3, - "<ZWNJ>": 1, - "ii.medium.getRgbaColor": 1, - "ht.textColor": 2, - "lt.textColor": 2, - "ft.type": 1, - "*t": 3, - "quadraticCurveTo": 4, - "origContext": 1, - "Optionally": 1, - "Q": 6, - "process.nextTick": 1, - "s.textBaseline": 1, - "st.medium.getHexColor": 2, - "g.getContext": 2, - "dt.height/2": 2, - "fragmentOverride": 2, - "bJ": 1, - ".wrapInner": 1, - "Array.prototype.push": 4, - "proxy": 4, - "tabindex": 4, - "var": 910, - ".off": 1, - "element.hasClass": 1, - "this._httpMessage": 3, - "w.textColor": 1, - ".8175*t": 2, - "u*.88": 2, - "steelseries": 10, - "ck.contentWindow": 1, - "a.fn.constructor": 1, - "optDisabled": 1, - "socket.writable": 2, - "console.error": 3, - "this.document": 1, - "u3000": 1, - "begin.data": 1, - "ut.width": 1, - "ku": 9, - "expandos": 2, - "i.selector": 3, - "core": 2, - "d.removeChild": 1, - "computed": 1, - "parse_digit": 3, - "bt.length": 4, - "this.setThreshold": 4, - "q.namespace": 1, - "d.onload": 3, - "j.handleObj.origHandler.apply": 1, - ".8025*t": 1, - "they": 2, - "q.length": 1, - "unload": 5, - "attrNames": 3, - "net.Server.call": 1, - "tt.symbolColor.getRgbaColor": 1, - "_.extend": 9, - "a.namespace": 1, - "onClose": 3, - "self.shouldKeepAlive": 4, - "x.length": 8, - "a.constructor.prototype": 2, - "support.pixelMargin": 1, - "this.value": 4, - "_results": 6, - "exports.STATUS_CODES": 1, - "f*.5": 17, - "e.toFixed": 2, - "jQuery.support": 1, - "g.defaultView": 1, - "b.options": 1, - "this.trailers": 2, - "/Date/i": 1, - "bt.type": 1, - "gt=": 1, - "Snake.__super__.move.call": 2, - "action": 3, - "c.mimeType": 2, - "option.selected": 2, - "jQuery=": 2, - "<div>": 4, - "j.call": 2, - "month": 1, - "reset": 2, - "continue": 18, - "ev": 5, - "RE_OCT_NUMBER.test": 1, - "719626": 3, - "this.setForegroundType": 5, - "n.beginPath": 39, - "rinvalidChar.test": 1, - "5": 23, - "isBool": 4, - "outer.firstChild": 1, - "options.auth": 2, - "mq": 3, - "defining": 1, - "Fails": 2, - "*ht": 8, - "le": 1, - "c.boxModel": 1, - "UNICODE.letter.test": 1, - "for": 262, - "/100": 2, - "oi.setAttribute": 2, - ".0365*t": 9, - ".0264*t": 4, - "boolHook": 3, - "bw": 2, - "require": 9, - "p.rotate": 4, - "failDeferred.isResolved": 1, - "v.getResponseHeader": 2, - "chainable": 4, - "d.context": 2, - "//": 410, - "h5": 1, - "operator": 14, - "rwebkit": 2, - "jQuery.fn": 4, - "o.insertBefore": 1, - ".value": 1, - "l.leftMatch": 1, - "this._writeRaw": 2, - "Unterminated": 2, - "dt.getContext": 1, - "h*.42": 1, - "tabIndex": 4, - "Left": 1, - "Length/i": 1, - ".145098": 1, - "and": 42, - "Mozilla": 2, - "last": 6, - "pageXOffset": 2, - "before": 8, - "bW.toLowerCase": 1, - "exports.createClient": 1, - "self.listeners": 2, - "Found": 1, - "backgroundVisible": 2, - "div.style.width": 2, - "c.documentElement.compareDocumentPosition": 1, - "inputElem.type": 1, - "without": 1, - "dark": 2, - "t.light.getRgbaColor": 2, - "gr": 12, - "height=": 17, - ".style": 1, - "fi.play": 1, - "r.addColorStop": 6, - "ff": 5, - "Avoids": 2, - "b.parentNode.selectedIndex": 1, - "called": 2, - "changed": 3, - "read_num": 1, - "shortcut": 1, - "failDeferred.done": 1, - "getData": 3, - "h.slice": 1, - "na": 1, - "used": 13, - "f.support.opacity": 1, - "135": 1, - "f.expr.filters": 3, - "hidden": 12, - "u.backgroundColor": 4, - "v.clearRect": 2, - "wi": 24, - "d.appendChild": 3, - "d.ownerDocument": 1, - "exports.globalAgent": 1, - "m.replace": 1, - "k=": 11, - "cg": 7, - "b": 961, - "obsoleted": 1, - "this._url": 1, - "666666": 2, - "et.drawImage": 1, - "e*.023364": 2, - "first": 10, - "holdReady": 3, - "but": 4, - ".style.textShadow": 1, - "steelseries.PointerType.TYPE2": 1, - "this.el": 10, - "b.clearAttributes": 2, - "d.always": 1, - "parser.finish": 6, - "f*.82": 1, - "<pt&&(tt=!1,vi(tt)):(tt=!0,vi(tt)),b>": 1, - "know": 3, - "f.support.checkClone": 2, - "h.overrideMimeType": 2, - "e*.518691": 2, - "u221e": 2, - ".specified": 1, - "e/22": 2, - "i.trendColors": 4, - "A.JSON.parse": 2, - "in": 170, - "shrink": 1, - "ex.name": 1, - "rt.addColorStop": 4, - "e*.04": 1, - "n.closePath": 34, - "ru": 14, - "can": 10, - "a.fn.init.prototype": 1, - "799065": 2, - "ot=": 4, - "m.xml": 1, - "n.bezierCurveTo": 42, - "n.translate": 93, - "c.removeData": 2, - "Ta": 1, - "aa.call": 3, - "i/2": 1, - "b.offsetLeft": 2, - "a.prop": 5, - "initialize": 3, - "d.join": 1, - "f.clone": 2, - "net.Server": 1, - ".48": 7, - "f*.571428": 8, - "*ut": 2, - "ye": 2, - "body.insertBefore": 1, - "C.call": 1, - "a.style.filter": 1, - "parser.incoming.statusCode": 2, - "Modernizr._version": 1, - "checkbox/": 1, - "f.event": 2, - "nor": 2, - "props": 21, - "htmlSerialize": 3, - "jQuery.expando": 12, - "pageYOffset": 1, - "F": 8, - "Horse.__super__.move.call": 2, - "ba.call": 1, - "event": 31, - "child.prototype.constructor": 1, - "res.emit": 1, - "result2.push": 1, - "u.roseVisible": 4, - "u.translate": 8, - "2d": 26, - "Static": 1, - "name.substring": 2, - "a.JSON": 1, - "f.support.cors": 1, - "offsets": 1, - "t.width*.5": 4, - "returned": 4, - "PUT": 1, - "args.length": 3, - "getSetAttribute": 3, - "u17b4": 1, - "Buffer": 1, - "strong": 1, - "e.show": 1, - "d.charset": 1, - "b.value": 4, - "list": 21, - "s.textAlign": 1, - "se": 1, - "this.hide": 1, - "this.line": 3, - ".4": 2, - "number": 13, - "then": 8, - "this.appendChild": 1, - "anyone": 1, - "shouldKeepAlive": 4, - "f*i*ft/": 1, - "t*.571428": 2, - "l*u": 1, - "e.length": 9, - "this.prevObject": 3, - "don": 5, - "once": 4, - "f.attrHooks.value": 1, - "expected": 12, - "h*.8": 1, - "e.offset": 1, - "A.document": 1, - "yt/at": 1, - "form": 12, - "this.socket": 10, - "Modernizr.testStyles": 1, - "shivMethods": 2, - "computeErrorPosition": 2, - "S.pos": 4, - "b.restore": 1, - "st*2.5": 1, - "bi*.05": 1, - "w/r": 1, - "Otherwise": 2, - "Math.log10": 1, - "a.guid": 7, - "e.clone": 1, - "x=": 1, - "model.toJSON": 1, - "this.id": 2, - "rightmostFailuresPos": 2, - "resetBuffers": 1, - "di.width": 1, - "f/r": 1, - "x.pop": 4, - ".type": 2, - "jQuery.browser.version": 1, - "c/": 2, - "nr": 22, - "*": 70, - "this.host": 1, - "this._trailer": 5, - "e*.58": 1, - ".049*t": 8, - "steelseries.TrendState.UP": 2, - "b.ownerDocument.body": 2, - "break": 111, - "render": 1, - "at.getImageData": 1, - "bt.labelColor": 2, - "elem.getAttributeNode": 1, - "overflowY": 1, - "false": 142, - "g.selector": 3, - "o.push": 1, - "o._default": 1, - "promise": 14, - "i.live": 1, - "g.namespace": 1, - "parse_unicodeEscapeSequence": 3, - "s.save": 4, - "pi.getContext": 2, - "cx": 2, - "s": 290, - "<map>": 1, - "autofocus": 1, - "Z.exec": 1, - "important": 1, - "onServerResponseClose": 3, - "pt.getContext": 2, - ".05": 2, - "s*.04": 1, - "bl": 3, - "c.stopPropagation": 1, - "Type": 1, - "e.liveFired": 1, - "f.push": 5, - "statusCode": 7, - "html5.shivMethods": 1, - ".04*f": 1, - "y.substr": 1, - "r=": 18, - "s*.1": 1, - "values": 10, - "zIndex": 1, - "string.replace": 1, - "r.exec": 1, - "j.noCloneChecked": 1, - "s*.475": 1, - ".split": 19, - ".guid": 1, - "get": 24, - "f.get": 2, - "steelseries.LedColor.CYAN_LED": 2, - "rNonWord": 1, - "prevUntil": 2, - "staticProps": 3, - "data.constructor": 1, - "cssText.indexOf": 1, - "n.lineTo": 33, - "f.curCSS": 1, - "Backbone.Collection.prototype": 1, - "a.value": 8, - "b.toUpperCase": 3, - "getPreventDefault": 2, - "escapeHTML": 1, - "options.defaultPort": 1, - "result1": 81, - "onto": 2, - "<=>": 1, - "f.queue": 3, - "jQuerySub.fn": 2, - "createFlags": 2, - "jQuery.isArray": 1, - "a.style.cssText": 3, - "<\\/script>": 2, - "bd.test": 2, - "socket.removeListener": 5, - "parse_whitespace": 3, - "supported": 2, - "a.push.apply": 2, - "route.exec": 1, - "click.modal.data": 1, - "hostHeader": 3, - "this._send": 8, - "k.translate": 2, - "c.toFixed": 2, - ".selector": 1, - "f.dequeue": 4, - "loop": 7, - "self.requests": 6, - "ajaxSettings": 1, - "queue": 7, - "a.fn": 2, - "wrapAll": 1, - "Internet": 1, - "overflow=": 2, - "<table>": 4, - "f.isPlainObject": 1, - "statusCode.toString": 1, - "si=": 1, - "f*.18": 4, - "ar.drawImage": 1, - "bt.labelColor.getRgbaColor": 2, - "handleObj": 2, - "W": 3, - "Event=": 1, - "v.readyState": 1, - "cancelBubble=": 1, - "f.parseXML": 1, - "bP": 1, - "#9521": 1, - "jQuery.fn.extend": 4, - "res.writeHead": 1, - "e*.856796": 3, - "<h?i=h:i>": 1, - "u.canvas.height": 7, - "cx.test": 2, - "c.html": 3, - "m.slice": 1, - "isSupported": 7, - "info.headers": 1, - "s*.365": 2, - ".childNodes.length": 1, - "j.elem": 2, - "c.createElement": 12, - "eventPhase": 4, - "x.shift": 4, - "spaces": 3, - "b.converters": 1, - "dataType": 6, - "this._extractParameters": 1, - "e*.15": 2, - ".107476*ut": 1, - "shallow": 1, - "newDefer.reject": 1, - ".attr": 1, - "x.push": 1, - "e.nodeType": 7, - "f.length": 5, - "supportsHtml5Styles": 5, - "r.createElement": 11, - "j.handleObj.data": 1, - "is_token": 1, - "DARK_GRAY": 1, - "hf*.5": 1, - "f.ajax": 3, - "f.sibling": 2, - "o.lastChild": 1, - "a.slice": 2, - "input.charAt": 21, - "failDeferred": 1, - "getResponseHeader": 1, - "all.length": 1, - "parser.maxHeaderPairs": 4, - "what": 2, - "e3": 5, - ".59": 4, - "i.maxMeasuredValueVisible": 8, - "method": 30, - "fromElement": 6, - ".7675*t": 2, - "existing": 1, - "e.fn.init.call": 1, - "this.isShown": 3, - "f*.34": 3, - ".63*u": 3, - "ut.type": 6, - "persist": 1, - "pageY=": 1, - "j.reliableMarginRight": 1, - "c.extend": 7, - "node.canHaveChildren": 1, - "PDF": 1, - "e*kt": 1, - "u.shadowColor": 2, - "some": 2, - "e.makeArray": 1, - "special": 3, - "rr.restore": 1, - "n*6": 2, - ";": 4052, - "normal": 2, - "skip": 5, - "will": 7, - "res.shouldKeepAlive": 1, - "lcdColor": 4, - "f.map": 5, - "l.match.PSEUDO.exec": 1, - "c.zoom": 1, - "j.style.opacity": 1, - "rbrace": 1, - "pairs": 2, - "f.isWindow": 2, - "ClientRequest": 6, - "space_combining_mark": 1, - "width=": 17, - "failDeferred.resolve": 1, - "More": 1, - "isExplorer": 1, - "c.browser.version": 1, - "bind": 3, - "d.getMilliseconds": 1, - ".FreeList": 1, - "pos0": 51, - "e*.537383": 2, - "f*.546728": 2, - "c.borderTopWidth": 2, - "i.hasClass": 1, - "u*.055": 2, - "tf": 5, - "orig": 3, - "j.length": 2, - "window.document": 2, - "fadeToggle": 1, - "us": 2, - "f.canvas.width*.4865": 2, - "remove": 9, - "g.join": 1, - "ClientRequest.prototype.setTimeout": 1, - "closeExpression": 1, - "regexp": 5, - "WHITESPACE_CHARS": 2, - "d.stop": 2, - "steelseries.TickLabelOrientation.TANGENT": 2, - "...": 1, - "<tbody>": 3, - "e.getAttribute": 2, - "f.find": 2, - "self.emit": 9, - "d.toUTCString": 1, - "d.start": 2, - "g/": 1, - "v.canvas.height": 4, - "h*.48": 1, - "replaceAll": 1, - "loses": 1, - "e.isDefaultPrevented": 2, - "b.checked": 1, - "doesn": 2, - "doc": 4, - "u.toPrecision": 1, - "Horse.prototype.move": 2, - "g.top": 1, - "old": 2, - "fledged": 1, - "d.shift": 2, - "methodMap": 2, - "_.bindAll": 1, - "automatically": 2, - "gets": 6, - "cssNumber": 3, - "DOM": 21, - "d.playing": 2, - "bT.apply": 1, - ".find": 5, - "fix": 1, - "Modal.prototype": 1, - "s*.831775": 1, - "k*.57": 1, - "sibling": 1, - "Diego": 2, - "c.inArray": 2, - "bg.optgroup": 1, - "OutgoingMessage.prototype._storeHeader": 1, - "this.output.length": 5, - "a.currentStyle.filter": 1, - "Assume": 2, - "c.crossDomain": 3, - "rvalidchars": 2, - "offsetSupport.fixedPosition": 1, - "b.insertBefore": 3, - "math": 4, - "self.getHeader": 1, - "cleanExpected.push": 1, - "u.knobStyle": 4, - "max": 1, - "CDATA": 1, - "too": 1, - "d.nodeType": 5, - "<[\\w\\W]+>": 4, - "parserOnHeadersComplete": 2, - "window.DocumentTouch": 1, - "setCss": 7, - "window.msMatchMedia": 1, - "ignoreCase": 1, - "u.lcdVisible": 2, - "tickCounter*h": 2, - "e/1.95": 1, - ".875*t": 3, - "b.getBoundingClientRect": 1, - "c.expando": 2, - "cm": 2, - "h": 499, - "b.src": 4, - ".specialSubmit": 2, - "scrollLeft": 2, - "self.socket": 5, - "transferEncodingExpression": 1, - "history.pushState": 1, - "c.support.style": 1, - "appendChild": 1, - "Ensure": 1, - "click": 11, - "ba": 3, - "n.test": 2, - "steelseries.PointerType.TYPE8": 1, - "e.bindReady": 1, - "means": 1, - "d.resolveWith": 1, - "js_error": 2, - "_=": 1, - "r.addClass": 1, - "changeBubbles": 3, - "seenCR": 5, - "parse_letter": 1, - "this.setMaxValue": 3, - "f.support.shrinkWrapBlocks": 1, - "it": 112, - "c.defaultView.getComputedStyle": 3, - "m.apply": 1, - "option.disabled": 2, - "parentNode": 10, - "./g": 2, - "ru=": 1, - "s*.035": 2, - "b.jquery": 1, - "exec": 8, - "paddingMarginBorder": 5, - "parseFloat": 30, - "inline": 3, - "_pos": 2, - "ForegroundType": 2, - "stroke": 7, - "e.isReady": 1, - "child.prototype": 4, - "JS": 7, - "item.bind": 1, - ".8225*t": 3, - "kt.drawImage": 1, - "bJ.test": 1, - "focusin": 9, - "u.useColorLabels": 2, - "h*.04": 1, - "c.left": 4, - "__slice": 2, - "params.url": 2, - "socket._httpMessage": 9, - "fakeBody.style.background": 1, - "trying": 1, - "/json/": 1, - "bg.option": 1, - "c.removeClass": 1, - "div.cloneNode": 1, - "x.browser": 2, - "property": 15, - "f.now": 2, - "f*.29": 19, - "Create": 1, - "c.loadXML": 1, - "time": 1, - "a.exec": 2, - "e.isWindow": 2, - "Convert": 1, - "g.origType.replace": 1, - "this.add": 1, - "f.fragments": 3, - "L": 10, - "Object": 4, - "bE": 2, - "over": 7, - ".parentNode.removeChild": 2, - "model.id": 1, - "y.exec": 1, - "loc": 2, - "self.socket.once": 1, - "res": 14, - ".8*t": 2, - "pu.state": 1, - "this.resetMinMeasuredValue": 4, - "rbrace.test": 2, - "jQuery.nodeName": 3, - "apply": 8, - "show": 10, - "jQuery._data": 2, - "begin": 1, - "225": 1, - "t*.05": 2, - "Q.test": 1, - "hooks.get": 2, - "style/": 1, - "a.execScript": 1, - "RESERVED_WORDS": 2, - "i.height*.5": 2, - "gt.length": 2, - "Tween.regularEaseInOut": 6, - "_jQuery": 4, - "f.find.matchesSelector": 2, - "a.responseText": 1, - "controls": 1, - "incoming": 2, - "ServerResponse.prototype.writeHeader": 1, - "isEventSupported": 5, - "u202F": 1, - "dot": 2, - "UNARY_POSTFIX": 1, - "k*.446666": 2, - "memory": 8, - "Ba": 3, - "self": 17, - "509345": 1, - "i.substring": 3, - "handlers": 1, - "rejectWith": 2, - "n/g": 1, - "bool.h264": 1, - "createLinearGradient": 6, - "div.attachEvent": 2, - "window.location.search": 1, - "<td>": 1, - "fixed": 1, - "LcdColor": 4, - "ci.getContext": 1, - "namespace_re": 1, - "p.push": 2, - "safari": 1, - "parse_eolEscapeSequence": 3, - "ut.getContext": 2, - "514018": 6, - "d.left": 2, - "e.fn.extend": 1, - "this.serializeArray": 1, - "self.agent.addRequest": 1, - "this._emitPending": 1, - "decimalsVisible": 2, - "p.translate": 8, - "wrapper": 1, - "W/.test": 1, - "focusinBubbles": 2, - "eq": 2, - "hasData": 2, - "u180E": 1, - "forms": 1, - "formHook": 3, - "de": 1, - "browserMatch.version": 1, - "this.interval": 1, - "0": 220, - "jsonp": 1, - "//docs.jquery.com/Utilities/jQuery.browser": 1, - "socket.ondata": 3, - "parser.socket.ondata": 1, - "/Content": 1, - "tel": 2, - "isResolved": 3, - "Z.test": 2, - "res._expect_continue": 1, - "parse_singleLineComment": 2, - "e.medium.getHexColor": 1, - "match": 30, - "opportunity": 2, - ".documentElement": 1, - "<d;c++){g=e.length,f.find(a,this[c],e);if(c>": 1, - "self._pendings.shift": 1, - "toSource": 1, - ".7475": 2, - "vt": 50, - "this.insertBefore": 1, - "c.fn": 2, - "f.support.boxModel": 4, - "y": 101, - "a.selected": 1, - "continueExpression.test": 1, - "06": 1, - "refuse": 1, - "self.triggerHandler": 2, - "screenX": 4, - "br": 19, - "tt.labelColor.getRgbaColor": 2, - "yt.start": 1, - "i.useOdometer": 2, - "af": 5, - "params": 2, - "matching": 3, - "bold": 1, - "t*.025": 1, - "path": 5, - "k.ownerDocument": 1, - "attrs.id": 1, - "basic": 1, - "firingIndex": 5, - "steelseries.LedColor.GREEN_LED": 2, - ".domManip": 1, - "firstLine": 2, - ".8075*t": 4, - "y.clearRect": 2, - "frag": 13, - "p.shift": 4, - "<select>": 1, - "d.innerHTML": 2, - "supportsUnknownElements": 3, - "#id": 3, - "<colgroup>": 1, - "this.loadUrl": 4, - "Modal": 2, - "ut/": 1, - "Math.PI/2": 40, - "c.dataTypes": 1, - "parent.insertBefore": 1, - "toString.call": 2, - "modElem": 2, - "<0&&(n+=360),n=\"00\"+Math.round(n),n=n.substring(n.length,n.length-3),(ht===steelseries.LcdColor.STANDARD||ht===steelseries.LcdColor.STANDARD_GREEN)&&(e.shadowColor=\"gray\",e.shadowOffsetX=f*.007,e.shadowOffsetY=f*.007,e.shadowBlur=f*.007),e.font=pr?gr:br,e.fillText(n+\"\\u00b0\",f/2+gt*.05,(t?or:cr)+er*.5+ui*.38,gt*.9),e.restore()},wi=function(n,t,i,r,u){n.save(),n.strokeStyle=r,n.fillStyle=r,n.lineWidth=f*.035;var>": 1, - "t*.114285": 1, - "t.strokeStyle": 2, - "pt": 48, - "breaking": 1, - "params.data._method": 1, - "prefixes": 2, - "u*.007": 2, - "e.document.body": 1, - "isn": 2, - "fails": 2, - "u.backgroundVisible": 4, - "noConflict": 4, - "c.browser.safari": 1, - "div.offsetWidth": 2, - "this.requests": 5, - "parse_simpleBracketDelimitedCharacter": 2, - "jQuery.support.getSetAttribute": 1, - "e.trim": 1, - "defaultPort": 3, - "a.childNodes.length": 1, - "swap": 1, - "self._pendings.length": 2, - "bool": 30, - "HOP": 5, - "yt=": 4, - "e*.012135": 2, - "strips": 1, - "cb": 16, - "]": 1456, - "S.col": 3, - "t.onMotionChanged": 1, - "s/2": 2, - "opt.selected": 1, - "bV": 3, - "Support": 1, - "ht=": 6, - "c.handler": 1, - "legend": 1, - "location": 2, - "b/2": 2, - "p.restore": 3, - "Va.test": 1, - "socket.onend": 3, - "wrong": 1, - "value": 98, - "mouseout": 12, - "fragment.indexOf": 1, - "h.indexOf": 3, - "ucProp": 5, - "parse_simpleEscapeSequence": 3, - "has_dot": 3, - "s*.71": 1, - "setMaxValue=": 1, - "fi.height": 2, - "ii": 29, - "d.style": 3, - "#9897": 1, - "race": 4, - "data.length": 3, - "et.getContext": 2, - ".053*e": 1, - "promiseMethods": 3, - "explanation": 1, - "bulk": 3, - "#3333": 1, - "/Transfer": 1, - "r*1.035": 4, - "this.setBackgroundColor": 7, - "parse_upperCaseLetter": 2, - "i.labelNumberFormat": 10, - "f.find.matches": 1, - "NAME": 2, - "opposite": 6, - "this._httpMessage.emit": 2, - "f*.467289": 6, - "e*.009": 1, - "l/et": 8, - "b.offset": 1, - "obj.constructor.prototype": 2, - "rowspan": 2, - "this.socket.pause": 1, - "fi.getContext": 4, - "i.backgroundVisible": 10, - "this._bindRoutes": 1, - "stack": 2, - "this.socket.setTimeout": 1, - "parseFunctions": 1, - "f.clearRect": 2, - "scriptEval": 1, - "doesNotAddBorder": 1, - "k.restore": 1, - "uu.drawImage": 1, - "display=": 3, - "this.routes": 4, - "f.translate": 10, - "wt.font": 1, - "t.getAlpha": 4, - "f.offset.supportsFixedPosition": 2, - "originalEvent": 2, - "o.childNodes": 2, - "A": 24, - "inner.offsetTop": 4, - "l.indexOf": 1, - "e*u": 1, - "CLASS": 1, - "abort": 4, - "e.buildFragment": 1, - "is_unicode_combining_mark": 2, - "f*.695": 4, - "kt/at*t": 1, - "jQuery.isNaN": 1, - "j.shrinkWrapBlocks": 1, - "a.": 2, - "arguments_": 2, - "Cloning": 2, - "this.events": 1, - "B.call": 3, - "key.split": 2, - "selector.charAt": 4, - "this.stack": 2, - "steelseries.LabelNumberFormat.STANDARD": 5, - "d.attachEvent": 2, - "getUrl": 2, - "true": 147, - "p.drawImage": 1, - "model.collection": 2, - "instead": 6, - "jQuery.attr": 2, - "zoom=": 1, - "f.support.optSelected": 1, - "476635": 2, - "resolveFunc": 2, - "container": 4, - "nightlies": 3, - "rnotwhite": 2, - "styleFloat": 1, - "_.any": 1, - "j.replace": 2, - ".html": 1, - "this.setSectionActive": 2, - ".stop": 11, - "f.fn": 9, - "Buffer.byteLength": 2, - "dt.width": 1, - "h*.3": 1, - "*this.pos": 1, - "quickExpr": 2, - "cleanData": 1, - "p.labelColor.getRgbaColor": 4, - ".0289*t": 8, - "e.document.documentElement": 1, - "d.type": 2, - "waiting": 2, - "chaining.": 1, - "parse_singleQuotedCharacter": 3, - "setLcdColor=": 2, - "f.support.noCloneEvent": 1, - "conn": 3, - "elem.getContext": 2, - "fr": 21, - "g.documentElement": 1, - "processData": 3, - "c.event.handle.apply": 1, - "origType": 2, - "playing": 2, - "ef": 5, - "Used": 3, - "g.preType": 3, - "setValueAnimatedLatest=": 1, - "j.inlineBlockNeedsLayout": 1, - "child.__super__": 3, - "a.XMLHttpRequest": 1, - "how": 2, - "%": 26, - "pt=": 5, - "o/r*": 1, - "f*.007": 2, - "e*.53": 1, - "div.className": 1, - "overflow": 2, - "ma": 3, - "wu": 9, - "document.createElementNS": 6, - "vi": 16, - "b/vt": 1, - "cs": 3, - "n": 874, - "a.ownerDocument.documentElement": 1, - "l.find.CLASS": 1, - "<d;c++)if((\">": 1, - "PRECEDENCE": 1, - "moveTo": 10, - "serializeArray": 1, - "j=": 14, - "bg": 3, - "XSS": 1, - ".toArray": 1, - "target.apply": 2, - "o.addColorStop": 4, - "i*.0486/2": 1, - "nt/2": 2, - "ta.test": 1, - "f.attrFix": 3, - "clearQueue": 2, - "handle": 15, - "b.toLowerCase": 3, - "num.substr": 2, - "e.position": 1, - "embed": 3, - "outer.style.position": 1, - "u.pointerType": 2, - "wt.repaint": 1, - "div.fireEvent": 1, - "n.exec": 1, - "close": 2, - "si.getContext": 4, - "Explorer": 1, - "f.cssProps": 2, - "A.": 3, - "c.originalEvent": 1, - "this.parentNode.insertBefore": 2, - "UNICODE.connector_punctuation.test": 1, - "document.title": 2, - "Reference": 1, - "this.options.root": 6, - "exports.ATOMIC_START_TOKEN": 1, - "RE_HEX_NUMBER": 1, - "f.offset.bodyOffset": 2, - "pageY": 4, - "contenteditable": 1, - "inputElem": 6, - "pi": 24, - "this.type": 3, - "pr*.38": 1, - "getFragment": 1, - "leading/trailing": 2, - "enableClasses": 3, - "u.foregroundVisible": 4, - "b.createTextNode": 2, - "a.offsetHeight": 2, - "support": 13, - "rootjQuerySub": 2, - "hasOwn.call": 6, - "34": 2, - ".14857": 1, - "k*.733644": 1, - "steelseries.KnobStyle.SILVER": 4, - "U.test": 1, - "already": 6, - "cancel": 6, - "m.shift": 1, - "div.getElementsByTagName": 6, - ".then": 3, - "<e&&180>": 2, - "*u": 1, - ".createTextNode": 1, - "R": 2, - "something": 3, - "c.addEventListener": 4, - "onMotionFinished=": 2, - "s.restore": 6, - "this.pos": 4, - "jQuery.access": 2, - "bK": 1, - "IncomingMessage.prototype._emitData": 1, - "this.maxHeaderPairs": 2, - "e*.490654": 2, - ".030373*e": 1, - "<tr>": 2, - "params.data": 5, - "OutgoingMessage.prototype._buffer": 1, - "g.length": 2, - "Backbone.Model.extend": 1, - "fade": 4, - "statusLine": 2, - "this._headerSent": 5, - "/close/i": 1, - "member": 2, - "e*.453271": 5, - "converters": 2, - "name.indexOf": 2, - "metaKey": 5, - "R.test": 1, - "parser": 27, - "Modernizr.testProp": 1, - "r*255": 1, - "privateCache": 1, - "g.trigger": 2, - "b.selectedIndex": 2, - "KEYWORDS_ATOM": 2, - "f*.365": 2, - "re": 2, - "crossDomain=": 2, - "s.test": 1, - ".fail": 2, - "a.dataFilter": 2, - "J=": 1, - "f.Event": 2, - "prop.substr": 1, - "k.labelColor.setAlpha": 1, - "c.browser.webkit": 1, - "borderLeftWidth": 1, - "jQuerySub": 7, - "TAG": 2, - "oi*.05": 1, - "callbacks.shift": 1, - "defaults": 3, - "za": 3, - "parser.socket.parser": 1, - ".WebkitAppearance": 1, - "section": 2, - "mminMeasuredValue": 1, - "jQuery.attrFix": 2, - "h.value": 3, - "level": 3, - "index": 5, - "yet": 2, - "c.shift": 2, - "i*.007142": 4, - "this.empty": 3, - "ck.height": 1, - "w=": 4, - "h*1.17": 2, - "c.push": 3, - "should": 1, - "submit": 14, - "875": 2, - "co=": 2, - "jQuery.removeAttr": 2, - "jQuery.propFix": 2, - "UNICODE.non_spacing_mark.test": 1, - "i.frameVisible": 10, - "tests": 48, - "a.childNodes": 1, - "tokpos": 1, - "lf": 5, - "end=": 1, - "removeEventListener": 3, - "b.specified": 2, - "ajaxStart": 1, - "keep": 1, - "STATUS_CODES": 2, - "valuesNumeric": 4, - "cssProps": 1, - "l.order": 1, - "S.line": 2, - "getValueAverage=": 1, - "this.setScrolling": 1, - "fi.setAttribute": 2, - "n.stroke": 31, - "bx": 2, - "transferEncodingExpression.test": 1, - "s*.060747": 2, - "ki.pause": 1, - "width": 32, - "e.browser.version": 1, - "IE6": 1, - "ownerDocument.documentShived": 2, - "h6": 1, - "Internal": 1, - ".triggerHandler": 1, - "ft.width": 1, - "ti=": 2, - ".79*t": 1, - "f.expr.filters.animated": 1, - "options.routes": 2, - "y.length": 1, - "f.valHooks": 7, - "this.getFragment": 6, - "q=": 1, - "result.SyntaxError": 1, - "ci=": 1, - "u.size": 4, - "orig=": 1, - "this.map": 3, - "ck.width": 1, - "animate": 4, - "single": 2, - "IncomingMessage.prototype.destroy": 1, - "stream.Stream": 2, - "check": 8, - "req.httpVersionMajor": 2, - "RE_DEC_NUMBER": 1, - ".cssText": 2, - "/ig": 3, - "f.event.handle.apply": 1, - "track": 2, - "result=": 1, - "yt.width": 2, - "p.setup.call": 1, - "escapeRegExp": 2, - "on": 37, - "d.push": 1, - "Date.prototype.toJSON": 2, - "addClass": 2, - "iframes": 2, - "DTRACE_HTTP_CLIENT_REQUEST": 1, - "this._finish": 2, - "expectExpression": 1, - "regular": 1, - "wt.light.getRgbaColor": 2, - "u.strokeStyle": 2, - "o/r": 1, - "safety": 1, - "f.ajaxSettings.xhr": 2, - "<k;j++)if((a=arguments[j])!=null)for(c>": 1, - "also": 5, - "options.createConnection": 4, - "ex.stack": 1, - "STANDARD": 3, - "Za": 2, - "want": 1, - "e.isPlainObject": 1, - "wrapInner": 1, - "085": 4, - "c.overflow": 1, - "isNode": 11, - "ch": 58, - "c": 775, - "this": 577, - "removeData": 8, - "regularEaseInOut": 2, - "unitStringVisible": 4, - "min": 2, - "c.ajax": 1, - "data=": 2, - ".fireEvent": 3, - "this.selected": 1, - "self.createConnection": 2, - "this.output.push": 2, - "parser.incoming.complete": 2, - "d.onMotionChanged": 2, - "560747": 4, - "name.length": 1, - "getElementsByTagName": 1, - "cssomPrefixes.join": 1, - "k*.037383": 11, - "propHooks": 1, - "h.set": 1, - "f.ajaxTransport": 2, - "iframe": 3, - "reasonPhrase": 4, - "this.outputEncodings.shift": 2, - "info.upgrade": 2, - "523364": 5, - "gradientFraction2Color": 1, - "d*.093457": 2, - "s*.355": 1, - "ot.type": 10, - ".is": 2, - "e.map": 1, - "late": 2, - "cl.createElement": 1, - "c.support.scriptEval": 2, - "destroyed": 2, - "div.firstChild": 3, - "type=": 5, - "ret.comments_before": 1, - "kt.textColor": 2, - "0px": 1, - "input.length": 9, - "b.drawImage": 1, - "ut*.61": 1, - ".when": 1, - "f.ajaxSettings": 4, - "j.parentNode": 1, - "b.nodeType": 6, - "rv": 4, - "care": 1, - "cssFloat": 4, - "req.onSocket": 1, - "t.toFixed": 2, - "k.nodeType": 1, - "elem.nodeName.toLowerCase": 2, - "this.shouldKeepAlive": 4, - "exports.set_logger": 1, - "doneCallbacks": 2, - "which": 8, - "res.statusCode": 1, - "parsers.free": 1, - "window.html5": 2, - "chars.join": 1, - "ECMA": 1, - ".85*t": 2, - "properly": 2, - "JSON": 5, - "c.isDefaultPrevented": 2, - "*st/": 1, - ".49": 4, - "t.height": 2, - "yf": 3, - ".innerHTML": 3, - "Match": 3, - "object": 59, - "f.ready": 1, - "e.error": 2, - "45": 5, - "t*.121428": 1, - "t.lineTo": 8, - "v.expr": 4, - "originalTarget": 1, - "/.exec": 4, - "continueExpression": 1, - "steelseries.ColorDef.BLUE": 1, - ".471962*f": 5, - "<e?e:n>": 5, - "make": 2, - "pageX=": 2, - "e._Deferred": 1, - "g.guid": 3, - "h.status": 1, - "*.05": 4, - "auto": 3, - "m.elem": 1, - "math.cube": 2, - "G": 11, - "free": 1, - "Object.keys": 5, - "this._headers.concat": 1, - "bo.test": 1, - "f.fn.jquery": 1, - "dequeue": 6, - "child": 17, - "a.compareDocumentPosition": 1, - "u.pointerTypeLatest": 2, - "this.constructor": 5, - "ajax": 2, - "target=": 2, - "s.getElementById": 1, - "change": 16, - "Agent.prototype.addRequest": 1, - "mStyle.background": 1, - "et.length": 2, - "ai.height": 1, - "iu.getContext": 1, - "e.body": 3, - "inner": 2, - "u17b5": 1, - "q.splice": 1, - "resp": 3, - "regex_allowed": 1, - "ki=": 1, - "c.hasContent": 1, - "tr": 23, - "enumerated": 2, - "sf": 5, - "Sizzle.isXML": 1, - "works": 1, - "g.reject": 1, - "socket.parser": 3, - "self.path": 3, - "gradientFraction3Color": 1, - "n.shadowBlur": 4, - "i.valueColor": 6, - ".5": 7, - "getContext": 26, - "d.guid": 4, - "classProps": 2, - "e.isArray": 2, - "a.defaultValue": 1, - "bool.mp3": 1, - "i.lcdVisible": 8, - "this.doesAddBorderForTableAndCells": 1, - "<e;d++)i=a[d],j[i]||(j[i]=U.test(i)?f(i,b||this.context):i);while(g&&g.ownerDocument&&g!==b){for(i>": 1, - "/bfnrt": 1, - "trick": 2, - "d.unshift": 2, - "d.events": 1, - "res.detachSocket": 1, - "f/": 1, - "e.splice": 1, - "div.appendChild": 4, - "e.type": 6, - "y*.121428": 2, - "input.cloneNode": 1, - "</fieldset>": 1, - "rnotwhite.test": 2, - "usemap": 2, - "jQuery.uaMatch": 1, - "res.assignSocket": 1, - "stopImmediatePropagation": 1, - "removeClass": 2, - "Document": 2, - "collection": 3, - "parser.socket.onend": 1, - "//basic": 1, - "inverted": 4, - ".63*e": 3, - "u*.028037": 6, - ".nodeType": 9, - "fx": 10, - "saveClones.test": 1, - "fnDone": 2, - "Non": 3, - "mouseleave": 9, - "h.id": 1, - "el": 4, - "ns": 1, - "k*.47": 1, - "c.fn.extend": 4, - "i.sort": 1, - "+": 1135, - "h/vt": 1, - "hrefNormalized": 3, - "find": 7, - "h.guid": 2, - "keyup.dismiss.modal": 2, - "b.rotate": 1, - "n.lineJoin": 5, - ".89*f": 2, - "offsetX": 4, - "zoom": 1, - "parser.incoming.readable": 1, - ".12864": 2, - "<ii.length;t++)if(n>": 1, - "key/value": 1, - ".innerHTML.replace": 1, - "bubbles": 4, - "bF.test": 1, - "a.selector": 4, - "Hold": 2, - "f.concat.apply": 1, - "cy": 4, - "t": 436, - "util.inherits": 7, - "document.styleSheets": 1, - "ATOMIC_START_TOKEN": 1, - "Missing": 1, - "d.getContext": 2, - "bm": 3, - "isEmptyDataObject": 3, - "g.handler": 1, - "resolveWith": 4, - "01": 1, - "docElement.removeChild": 1, - "aa": 1, - "g.height": 4, - "steelseries.Odometer": 1, - "this.end": 2, - "support.optDisabled": 1, - "v.statusCode": 2, - "pushStack": 4, - "non_spacing_mark": 1, - "ct*5": 1, - "t*.856796": 1, - "ku.repaint": 1, - "flags.stopOnFalse": 1, - "<p>": 2, - "this.iframe.document.open": 1, - "Modernizr": 12, - ".7925*t": 3, - "tickCounter": 4, - "l.push.apply": 1, - "ht": 34, - "trim": 5, - "access": 2, - "rt=": 3, - "e.level": 1, - "d.ifModified": 1, - "result2": 77, - "u.foregroundType": 4, - "FrameDesign": 2, - "#9699": 1, - "collisions": 1, - "exports.get": 1, - "req._hadError": 3, - "result0.push": 1, - "label": 2, - "S.tokline": 3, - "at=": 3, - "r*1.014": 5, - "because": 1, - ".51*k": 1, - "key.match": 1, - "</td>": 1, - "selected=": 1, - "f*r*bt/": 1, - "f.attr": 2, - "letter": 3, - "h.hasClass": 1, - "a.toLowerCase": 4, - "c.getElementById": 1, - "Backbone.history.route": 1, - "OutgoingMessage.prototype.destroy": 1, - "div.id": 1, - "parse_classCharacter": 5, - ".22": 1, - "<g;f++)e=!!b(a[f],f),c!==e&&d.push(a[f]);return>": 1, - "doScrollCheck": 6, - "loc.protocol": 2, - "mStyle": 2, - "bargraphled": 3, - "rvalidescape": 2, - "X": 6, - "labelColor": 6, - "i.getAlpha": 1, - "bQ": 3, - ".checked": 2, - "parser.socket": 4, - "JS_Parse_Error": 2, - "h.dark.getRgbaColor": 3, - "<-270&&e>": 2, - ".0163*t": 7, - "s.": 1, - ".events": 1, - "Agent.prototype.removeSocket": 1, - "this.chunkedEncoding": 6, - "u.pointerTypeAverage": 2, - "504672": 2, - "u*.73": 3, - "f.cleanData": 4, - "END_OF_FILE": 3, - "//XXX": 1, - "d.async": 1, - ".remove": 2, - "//abort": 1, - "i.foregroundVisible": 10, - "t.getRed": 4, - "Own": 2, - "id": 38, - "div.style.cssText": 1, - "isLocal": 1, - "self.port": 1, - "OutgoingMessage.prototype._finish": 1, - "parser.onMessageComplete": 1, - "is_comment": 2, - "it.getContext": 2, - "at/yt": 4, - "div.addEventListener": 1, - ".parentNode": 7, - "being": 2, - "a.checked": 4, - "nodeName": 20, - "support.reliableMarginRight": 1, - "n.substring": 1, - ".toUpperCase": 3, - "a.jquery": 2, - "Aa": 3, - "a.context": 2, - "value.call": 1, - "f.support": 2, - "fnFail": 2, - ".marginTop": 1, - "css": 7, - "jQuery.uuid": 1, - "this.getUTCHours": 1, - "Grab": 1, - ".end": 1, - "safe": 3, - "prefixes.join": 3, - "crashing": 1, - "f*.35": 26, - ".0038*t": 2, - "steelseries.TickLabelOrientation.NORMAL": 2, - "this.offset": 2, - "detail": 3, - "this.connection.write": 4, - "n.lineWidth/2": 2, - "vt/": 3, - "a.removeChild": 2, - "/javascript": 1, - "window.location": 5, - "<": 209, - "this._hasBody": 6, - "fi.pause": 1, - "ut*.13": 1, - "c.get": 1, - "lastData.constructor": 1, - "u.shadowBlur": 2, - "active": 2, - "c.result": 3, - "with": 18, - "this.httpAllowHalfOpen": 1, - "s.on": 4, - "pos1": 63, - "keyword": 11, - "_len": 6, - "u206f": 1, - "b.mergeAttributes": 2, - "k.uniqueSort": 5, - "b.createElement": 2, - "border": 7, - "/SVGAnimate/.test": 1, - "getRgbaColor": 21, - "METAL": 2, - "u.createRadialGradient": 1, - "this.resetMaxMeasuredValue": 4, - "ut": 59, - "routes.length": 1, - "shift": 1, - "jQuery.browser.safari": 1, - "net.createConnection": 3, - "ar": 20, - "row": 1, - "et.width": 1, - "steelseries.ForegroundType.TYPE1": 5, - "nType": 8, - ".*": 20, - "useGradient": 2, - ".76": 1, - "throw": 27, - "propName": 8, - "checked": 4, - "domManip": 1, - "this.col": 2, - "72": 1, - "it=": 7, - "t/2": 1, - "d.detachEvent": 1, - "specialSubmit": 3, - "WebSockets": 1, - ".HTTPParser": 1, - "i.minValue": 10, - "__extends": 6, - "i.offsetLeft": 1, - "eventSplitter": 2, - "e.ownerDocument": 1, - "c.namespace_re": 1, - "element.appendTo": 1, - "empty": 3, - "g.scrollLeft": 1, - "hasClass": 2, - "model.idAttribute": 2, - "checkOn": 4, - "measureText": 4, - "ot": 43, - "h.nodeType": 4, - "s.body.removeChild": 1, - "focusout": 11, - "value.length": 1, - "n.shadowColor": 2, - "isEmptyObject": 7, - "i.get": 1, - "range": 2, - "leftMatch": 2, - "target.data": 1, - "or.restore": 1, - "c.support.submitBubbles": 1, - "c.currentTarget": 2, - ".push": 3, - "clone": 5, - "url": 23, - "top": 12, - "<=1&&a&&f.isFunction(a.promise)?a:f.Deferred();if(d>": 1, - "http": 6, - "i.width*.5": 2, - "b.currentStyle": 2, - "doesAddBorderForTableAndCells": 1, - "f.attrHooks.name": 1, - "cn": 1, - "i": 853, - "<d;j++){var>": 1, - "bb": 2, - "order": 1, - "c.call": 3, - "href=": 2, - "<k;j++){e=p[j];if(c&&e.level>": 1, - "OutgoingMessage.prototype._renderHeaders": 1, - "et.height": 1, - "f.hasData": 2, - "string": 41, - "er.getContext": 1, - "n.lineWidth": 30, - "tom.move": 2, - "a.outerHTML": 1, - "I.beforeactivate": 1, - "when": 20, - "UNICODE": 1, - ".7875*t": 4, - "l.match.PSEUDO.test": 1, - "c.fn.triggerHandler": 1, - "tokcol": 1, - "n.fillRect": 16, - "iu": 14, - "copied": 1, - "s.addEventListener": 3, - "dashed": 1, - ".unload": 1, - "<ft.length;c++)if(e>": 1, - "hi": 15, - "setOffset": 1, - "u.length": 3, - "a.contentWindow.document": 1, - "OutgoingMessage.prototype.addTrailers": 1, - "self._emitData": 1, - "<=f[n].stop){t=et[n],i=ut[n];break}u.drawImage(t,0,0),kt(a,i)},this.repaint(),this},wr=function(n,t){t=t||{};var>": 1, - "hi.height": 3, - "content": 5, - "emptyGet": 3, - "k.style.width": 1, - "TEXT": 1, - "f.canvas.height*.27": 2, - "deferred.resolveWith": 5, - "rowSpan": 2, - "length": 48, - "bg.th": 1, - "ufff0": 1, - "h.replace": 2, - "*lt": 9, - "GET": 1, - "reference": 5, - "certain": 2, - "continually": 2, - "b.dataTypes": 2, - "eE": 4, - "frameborder": 2, - "a.href": 2, - "j.optDisabled": 1, - "CRLF": 13, - "parse_zeroEscapeSequence": 3, - "s*.32": 1, - "v.done": 1, - "document.body": 8, - "keyCode=": 1, - "f.expando": 23, - "namedParam": 2, - "executing": 1, - "support.shrinkWrapBlocks": 1, - "handler.route.test": 1, - "c.getResponseHeader": 1, - "Chrome": 2, - "wu.repaint": 1, - "oi/2": 2, - "n.createLinearGradient": 17, - "same": 1, - "class.": 1, - "visible": 1, - "M": 9, - "window.applicationCache": 1, - "errorPosition": 1, - "arc": 2, - "wt.decimalForeColor": 1, - "bF": 1, - "xhr": 1, - "vt.getContext": 1, - "options": 56, - "_.bind": 2, - "this.checked": 1, - "b.textContent": 2, - "call": 9, - "</a>": 2, - "err.stack": 1, - "tfoot": 1, - "setValueAnimatedAverage=": 1, - "ft.length": 2, - "able": 1, - "toElement": 5, - "d.call": 3, - "returns": 1, - "other": 3, - "ret": 62, - "detachEvent": 2, - "object.constructor.prototype": 1, - "yt.height": 2, - "k/2": 1, - "this.sub": 2, - "is_alphanumeric_char": 3, - "e.fragment": 1, - "_bindRoutes": 1, - "b.handle.elem": 2, - "/http/.test": 1, - "clearInterval": 6, - "a.call": 17, - "o.test": 1, - "t*.82": 1, - "ai.getContext": 2, - "live.": 2, - "elements": 9, - "D.apply": 1, - "cleanExpected": 2, - "di.getContext": 2, - "jQuery.noop": 2, - "deferred.done.apply": 2, - "fragment": 27, - "Last": 2, - "char_": 9, - "f*.1": 5, - "u*.093457": 10, - "notxml": 8, - "obj.nodeType": 2, - "absolute": 2, - "j.getAttribute": 2, - "getByName": 3, - "fadeIn": 1, - "OutgoingMessage.call": 2, - "ni.textColor": 2, - "n.createRadialGradient": 4, - "n.textAlign": 12, - "c.support.hrefNormalized": 1, - "ClientRequest.prototype.setSocketKeepAlive": 1, - "er": 19, - "beginPath": 12, - "done": 10, - "browserMatch.browser": 2, - "Not": 4, - "testProps": 3, - "345794": 3, - "df": 3, - "contains": 8, - "1": 97, - "bP.test": 1, - "c.getElementsByTagName": 1, - "selectorDelegate": 2, - "b.indexOf": 2, - "cb.test": 1, - "c.preventDefault": 3, - "STANDARD_GREEN": 1, - "e*.4": 1, - "vu": 10, - ".fail.apply": 1, - "state=": 1, - "z": 21, - "reportFailures": 64, - "130841": 1, - "ui": 31, - "option.parentNode.disabled": 2, - "screenY": 4, - "a.fireEvent": 1, - "bs": 2, - "params.processData": 1, - "halted": 1, - "parserOnHeaders": 2, - "h.scrollLeft": 2, - "f.support.reliableHiddenOffsets": 1, - "f.nodeName": 16, - "i=": 31, - "this.addListener": 2, - "h1": 5, - "v.createRadialGradient": 2, - "ui.getContext": 4, - "b.contentType": 1, - "</tr>": 2, - "calls": 1, - "a.responseFields": 1, - "ctrlKey": 6, - "maxSockets": 1, - "onMotionChanged=": 2, - "textOrientationFixed": 2, - "83": 1, - "marginRight": 2, - "was": 6, - "s.clearRect": 3, - "12864": 2, - "frame": 23, - "marks": 1, - "d.parentNode": 4, - "useMap": 2, - "window.location.pathname": 1, - "v.complete": 1, - "Necessary": 1, - "t.getGreen": 4, - "a.parentNode.firstChild": 1, - ".nodeName": 2, - "uFEFF": 1, - "k.drawImage": 3, - "Math.PI/3": 1, - "steelseries.BackgroundColor.DARK_GRAY": 7, - "ab.test": 1, - "shiftKey": 4, - "Fire": 1, - "//if": 2, - "void": 1, - "is_identifier_char": 1, - "pu": 9, - "_.exec": 2, - "just": 2, - "this._renderHeaders": 3, - "ServerResponse.prototype._implicitHeader": 1, - "495327": 2, - "steelseries.BackgroundColor.PUNCHED_SHEET": 2, - "i.getContext": 2, - "oi": 23, - "i.knobType": 4, - "ie6/7": 1, - "e.offsetTop": 4, - "input.substr": 9, - "S.newline_before": 3, - "tokline": 1, - "s/vt": 1, - "a.navigator": 1, - "c.each": 2, - "i.resolveWith": 1, - "style.cssRules": 3, - "domPrefixes": 3, - "a.dataTypes": 2, - "c.merge": 4, - ".06*f": 2, - "ui/2": 1, - "*st": 1, - "character": 3, - "we": 25, - "triggerHandler": 1, - "q.push": 1, - "Agent.defaultMaxSockets": 2, - "shouldSendKeepAlive": 2, - "71028": 1, - "d.nodeValue": 3, - "bb.test": 2, - "cc": 2, - "jQuery.prototype": 2, - "utcDate": 2, - "i.getBlue": 1, - "FF4": 1, - "Backbone.Router.extend": 1, - "unless": 2, - ".before": 1, - "bW": 5, - "i.shift": 1, - "f._data": 15, - "setSection=": 1, - "et.save": 1, - "k*.514018": 2, - ".closest": 4, - "elvis": 4, - "num": 23, - "a.url": 1, - "ServerResponse.prototype.writeHead": 1, - "slice.call": 3, - "n.setAttribute": 1, - "required": 1, - "k.parentNode": 1, - "t.exec": 1, - "h.setRequestHeader": 1, - "e.style.top": 2, - "a.cloneNode": 3, - ".698039": 1, - "this.setValueColor": 3, - "both": 2, - "jquery": 3, - "options.headers": 7, - "token.value": 1, - "nt.restore": 1, - "jsonpCallback": 1, - "parseXML": 1, - "u00c0": 2, - "counter": 2, - "parsers": 2, - "begin.rawText": 2, - "it.labelColor": 2, - "kt.save": 1, - "jQuerySub.superclass": 1, - "e.handle": 2, - "rr.length": 1, - "a.fn.init": 2, - "/html/": 1, - "<d;b++)if((\">": 1, - "ya": 2, - "fail": 10, - "cache=": 1, - "execute": 4, - "setValueAverage=": 1, - "rect": 3, - "k.length": 2, - "c.data": 12, - "s*.565": 1, - "deferred.promise": 1, - "jQuery.prop": 2, - "this._wantsPushState": 3, - "c.xhrFields": 3, - "a.fragment.cloneNode": 1, - "non": 8, - "this.emit": 5, - "wt.getContext": 1, - "v=": 5, - "s.attachEvent": 3, - "B": 5, - "OutgoingMessage": 5, - "kt.translate": 2, - "n.font": 34, - "g.resolveWith": 3, - "f.grep": 3, - "self.socket.writable": 1, - "CONNECT": 1, - "i*.45": 4, - "n.shadowOffsetX": 4, - "n.rotate": 53, - "lr": 19, - "cl.body.appendChild": 1, - "options.hostname": 1, - "t.width*.1": 2, - "kf": 3, - "Accept": 1, - "jQuerySub.fn.constructor": 1, - "e.fn.init.prototype": 1, - "keys.length": 5, - "parser.onIncoming": 3, - "ownerDocument.createElement": 3, - "has_e": 3, - ".12*f": 2, - "e.orig": 1, - "ya.call": 1, - "this.tagName": 1, - "ajaxPrefilter": 1, - "a.appendChild": 3, - "offsetSupport.doesNotIncludeMarginInBodyOffset": 1, - "contentLengthExpression": 1, - "odo": 1, - "p/r": 1, - "e.hide": 2, - "forcePushState": 2, - "className": 4, - "sa": 2, - "We": 6, - "e.prototype": 1, - "port": 29, - "len.toString": 2, - "sentConnectionHeader": 3, - "exports.PRECEDENCE": 1, - "4c4c4c": 1, - ".65*u": 1, - "plain": 2, - "count": 4, - "f.offset": 1, - "shrinkWrapBlocks": 2, - "Array.prototype.indexOf": 4, - "size": 6, - "continue/i": 1, - "this._source": 1, - "f*": 5, - "attrChange": 4, - "p=": 5, - ".0214*t": 13, - "e/ut": 1, - "i.customLayer": 4, - "internalCache": 3, - "attrFix": 1, - "PUNC_BEFORE_EXPRESSION": 2, - "b.save": 1, - "f*.012135/2": 1, - "ht*yi": 1, - "inner.style.top": 2, - "bodyHead": 4, - "parser.onHeadersComplete": 1, - "rightmostFailuresExpected": 1, - "setPointSymbols=": 1, - "f.ajaxSetup": 3, - "Styles": 1, - "column": 8, - "se.drawImage": 1, - "c.isPropagationStopped": 1, - "isArray": 10, - "encoding": 26, - "&": 13, - "readOnly": 2, - "rule.split": 1, - "read_while": 2, - ".0467*f": 1, - "wt.medium.getRgbaColor": 3, - "r.setAlpha": 8, - "against": 1, - "list.length": 5, - "readyState": 1, - "Backbone.sync": 1, - "i.test": 1, - "this.socket.once": 1, - "obj.length": 1, - ".86*t": 4, - "et.translate": 2, - "/255": 1, - "now=": 1, - "always": 6, - "a.nodeType": 27, - "i*.856796": 2, - "h.toFixed": 3, - "ct": 34, - "o": 322, - "thisCache": 15, - "contentEditable": 2, - "inspect": 1, - "Ya": 2, - "onSocket": 3, - "this._deferToConnect": 3, - "this.column": 1, - "f/10": 1, - "ft.height": 1, - "bh": 1, - "c.unshift": 1, - "window.Modernizr": 1, - "k*.13": 2, - "i.events": 2, - "res.on": 1, - "localAddress": 15, - "Tween.elasticEaseOut": 1, - "f.save": 5, - "94": 1, - "nextUntil": 1, - "args": 31, - "h.setAttribute": 2, - "c.makeArray": 3, - "v.abort": 1, - "exports.KEYWORDS_ATOM": 1, - "h/ht": 1, - "g.left": 1, - "isPlainObject": 4, - "k.error": 2, - "h.responseText": 1, - "own": 4, - "i.titleString": 10, - "this.nodeName.toLowerCase": 1, - "elem": 101, - "/i": 22, - "pipe": 2, - "toUpperCase": 1, - "j.attr": 1, - "jQuery.Callbacks": 2, - "div.style.overflow": 2, - "t*.19857": 1, - "e*.35514": 2, - "wt.decimalBackColor": 1, - "i.threshold": 10, - "xml": 3, - "Unique": 1, - "self._renderHeaders": 1, - "li=": 1, - "<h;g++)i=c[g],j=f.type(i),j===\"array\"?e.done.apply(e,i):j===\"function\"&&a.push(i);k&&e.resolveWith(k[0],k[1])}return>": 1, - "autoplay": 1, - "collection.": 1, - "Sa": 2, - "R.apply": 1, - ".trigger": 3, - "yr": 17, - "e.document.compatMode": 1, - "a.elem": 2, - "Object.prototype.toString": 7, - "tagName": 3, - "s*.38": 2, - "incorrectly": 1, - "35": 1, - "Top": 1, - "<<": 4, - "RE_HEX_NUMBER.test": 1, - "t*.053": 1, - "f.toFixed": 1, - "S": 8, - "outer": 2, - "appended": 2, - "h*t": 1, - "ifModified": 1, - "rwebkit.exec": 1, - "bL": 1, - "offsetWidth/Height": 3, - "isNaN": 6, - "steelseries.BackgroundColor.CARBON": 2, - "bi*.9": 1, - "attributes": 14, - "jQuery.isWindow": 2, - "_.isRegExp": 1, - "UNICODE.space_combining_mark.test": 1, - "lineWidth": 1, - "ni.width": 2, - "st.width": 1, - "l.top": 1, - "week": 1, - "ua.indexOf": 1, - "T.find": 1, - ".call": 10, - "Mark": 1, - "1_=": 1, - "onError": 3, - "this.pushStack": 12, - "sr": 21, - "central": 2, - "trimming": 2, - "f.attrFn": 3, - "textarea": 8, - ".support.transition": 1, - "e*.504672": 4, - "rf": 5, - "inserted": 1, - "available": 1, - "flag": 1, - "a.options": 2, - "l.style": 1, - "70588": 4, - "856796": 4, - "current": 7, - "exports.RESERVED_WORDS": 1, - "#10870": 1, - "only": 10, - "search": 5, - "params.beforeSend": 1, - "onRemove": 3, - "XXX": 1, - "this.finished": 4, - "i.thresholdVisible": 8, - "offset": 21, - "many": 3, - ".55": 1, - "setData": 3, - "a.mimeType": 1, - "f*.856796": 2, - "f*.7": 2, - "*ue": 1, - "Call": 1, - "fast": 1, - "_mark": 2, - "jQuery.attrHooks": 2, - "Handle": 14, - "regex": 3, - "a.selectedIndex": 3, - "readyState=": 1, - "f.fn.css": 1, - "marginDiv.style.marginRight": 1, - "Modernizr._prefixes": 1, - "ex": 3, - "yt.stop": 1, - "at/kt": 1, - "maybe": 2, - "flags": 13, - "h.namespace": 2, - "_.uniqueId": 1, - ".selected": 1, - "f.support.deleteExpando": 3, - "st=": 3, - "i.addColorStop": 27, - "parse_comment": 3, - "g.document.body": 1, - "a.unit": 1, - "ms": 2, - "g.className": 4, - "parseInt": 12, - "i.style.marginRight": 1, - "bt=": 3, - "t.createLinearGradient": 2, - "u.toFixed": 2, - "k.isXML": 4, - "names": 2, - "select.appendChild": 1, - "exports.createServer": 1, - "connector_punctuation": 1, - "i.tickLabelOrientation": 4, - "Avoid": 1, - "f.data": 25, - "return": 944, - "v.set": 5, - "h.resolveWith": 1, - "info.shouldKeepAlive": 1, - "steelseries.Orientation.WEST": 6, - "by": 12, - "queue=": 2, - "elements.split": 1, - "h*.006": 1, - "n/255": 1, - "possible": 3, - "c.body.appendChild": 1, - "Trigger": 2, - "odd": 2, - "beforeactivate": 1, - ".proxy": 1, - "pt.width": 1, - "<h?t=h:t>": 1, - "trimLeft": 4, - "f.valHooks.button": 1, - "ctor": 6, - "Modernizr.mq": 1, - "h*.44": 3, - "animatedProperties=": 1, - "jQuery.support.deleteExpando": 3, - "way": 2, - "insertAfter": 1, - "a.document": 3, - "repaint=": 2, - "yi.width": 1, - "detach": 1, - "parser.incoming._emitEnd": 1, - "/checked": 1, - "container.appendChild": 1, - "Modernizr.testAllProps": 1, - "gt": 32, - "c.style": 1, - "req.parser": 1, - "defaultView.getComputedStyle": 2, - "S.text.charAt": 2, - "removeEvent=": 1, - "delegateEvents": 1, - "_toggle": 2, - "#10080": 1, - "this.repaint": 126, - "n.relative": 5, - "parser.socket.resume": 1, - "feature.toLowerCase": 2, - "315": 1, - "g.body": 1, - "n.length": 1, - "k.cloneNode": 1, - "f.support.tbody": 1, - "this.socket.writable": 2, - "hasOwnProperty": 5, - "k.labelColor": 1, - ".115*t": 5, - "bodyStyle": 1, - "K.call": 2, - "d.concat": 1, - "HTML": 9, - "c.support.checkClone": 2, - "u0000": 1, - "tok": 1, - "t*.45": 4, - "f.canvas.width": 3, - "yf.repaint": 1, - "i.minMeasuredValueVisible": 8, - "cellpadding": 1, - "this.firstChild": 1, - "sentContentLengthHeader": 4, - "t.fill": 2, - "yi.pause": 1, - "ri.getContext": 6, - "ci": 29, - "d": 771, - "f.appendChild": 1, - "exports.request": 2, - "options.elements": 1, - "end.data.charCodeAt": 1, - "of.state": 1, - "k.top": 1, - "internalKey": 12, - "null/undefined": 2, - "f.event.add": 2, - "a.ActiveXObject": 3, - "opt": 2, - ".142857": 5, - "d.toFixed": 1, - "a.querySelectorAll": 1, - "winner": 6, - "elem.canPlayType": 10, - "solid": 2, - "ecmascript/": 1, - "f.cache": 5, - "<fieldset>": 1, - "td.offsetTop": 1, - "element.parent": 1, - "s.translate": 6, - "lcdDecimals": 4, - "c.attachEvent": 3, - "window.getComputedStyle": 6, - "attrHandle": 2, - "<-90&&e>": 2, - "ft/": 1, - "c.fragments": 2, - "batch": 2, - "g.indexOf": 2, - "fetch": 4, - "maxLength": 2, - "o.firstChild": 2, - "end.data": 1, - "String": 2, - "necessary": 1, - "Snake.name": 1, - "modElem.style": 1, - "i.alarmSound": 10, - "d.top": 2, - "e.merge": 3, - "slice": 10, - "f.isFunction": 21, - "this._pendings.length": 1, - "u.digitalFont": 2, - "205607": 1, - "this.offsetParent": 2, - "this.subtractsBorderForOverflowNotVisible": 1, - "body.firstChild": 1, - "e.toPrecision": 1, - "reliableMarginRight": 2, - "F.call": 1, - "that.": 3, - "46": 1, - "u/2": 5, - "u*255": 1, - "g.clientLeft": 1, - "e.removeChild": 1, - ".map": 1, - "this.getUTCDate": 1, - "dateExpression.test": 1, - ".298039": 1, - "it.labelColor.setAlpha": 1, - "Math.abs": 19, - "switch": 30, - "namespace": 1, - "not": 26, - "inputElem.style.WebkitAppearance": 1, - "ot.getContext": 3, - "support.deleteExpando": 1, - "clean": 3, - "method.": 3, - "animatedProperties": 2, - "a.type": 14, - "H": 8, - "ropera.exec": 1, - "a.insertBefore": 2, - "i.done": 1, - "Backbone.History": 2, - "g.splice": 2, - "<a.length;b++)a[b]===a[b-1]&&a.splice(b--,1)}return>": 1, - ".listen": 1, - "ServerResponse.prototype.assignSocket": 1, - "valueForeColor": 1, - "this.doesNotAddBorder": 1, - "bA": 3, - "container.style.zoom": 2, - "Unicode": 1, - "h.type": 1, - "b.id": 1, - "msg": 4, - "nothing": 2, - "bt.getContext": 1, - "pos=": 1, - "None": 1, - "tbody/i": 1, - ".toLowerCase": 7, - "navigate": 2, - "e*.22": 3, - "s*.336448": 1, - "a.crossDomain": 2, - "test/unit/core.js": 2, - "self.has": 1, - "a.data": 2, - "s.documentElement.doScroll": 2, - "getAllResponseHeaders": 1, - "kf.repaint": 1, - "t.format": 7, - "thing": 2, - "e.overflow": 2, - "camelCased": 1, - "JSON.parse": 1, - "stop": 7, - "firstly": 2, - "pass": 7, - "options.path": 2, - "node.hidden": 1, - "ropera": 2, - "g.parentNode": 2, - "hasContent": 2, - "cases": 4, - "this.valueLatest": 1, - "s.createDocumentFragment": 1, - "j.removeAttribute": 2, - "c.removeEventListener": 2, - "block": 4, - "this.getUTCMinutes": 1, - "._last": 1, - "ColorDef": 2, - "62": 1, - "f.push.apply": 1, - "change.": 1, - "Server": 6, - "k.get": 1, - "toLowerCase": 3, - "frameBorder": 2, - "f*i*at/": 1, - "this._remove": 1, - ".eq": 1, - "this.statusCode": 3, - "logger": 2, - "it.width": 1, - "t.restore": 2, - "clearTimeout": 2, - "replace": 8, - "h.statusText": 1, - "exports.member": 1, - "REGEXP_MODIFIERS": 1, - "u.lcdColor": 2, - "kt/at": 2, - "nt": 75, - "b.map": 1, - "through": 3, - "da": 1, - "this.socket.destroy": 3, - "s*.085": 1, - "canvas": 22, - "</select>": 1, - "f.isArray": 8, - "df.type": 1, - "i.section": 8, - "d.getElementsByTagName": 6, - "e.access": 1, - "offsetY": 4, - ".data": 3, - "elems": 9, - "newValue": 3, - "n.fill": 17, - "#8421": 1, - "D.call": 4, - "u": 304, - "this._pendings": 1, - "Modernizr._cssomPrefixes": 1, - "ni.length": 2, - "s*.06": 1, - "steelseries.GaugeType.TYPE4": 2, - "webkit": 6, - "this.context": 17, - "a.style": 8, - "bn": 2, - "longer": 2, - "b.offsetTop": 2, - "src": 7, - "g.ownerDocument": 1, - "ab": 1, - "catch/finally": 1, - ".82": 2, - "u.drawImage": 22, - "cellSpacing": 2, - "bp.test": 1, - "continuing": 1, - "checkUrl": 1, - "blocks": 1, - "***": 1, - "285046": 5, - "s*.3": 1, - "T.call": 1, - "null": 427, - "buildMessage": 2, - "f*.53271": 6, - "u*.58": 1, - "tr.getContext": 1, - "sliceDeferred.call": 2, - "c.top": 4, - "area": 2, - "window.history.pushState": 2, - "disabled": 11, - "getElements": 2, - "mod": 12, - "u*.12864": 3, - "hu": 11, - "c.url": 2, - "Bulk": 1, - "maxlength": 2, - "this._flush": 1, - "u.area": 2, - "gi": 26, - "b.removeChild": 3, - "resize": 3, - "set": 22, - "AGENT": 2, - "req.emit": 8, - ".shift": 1, - "expected.slice": 1, - "result3": 35, - "toArray": 2, - "a.cache": 2, - "conMarginTop": 3, - "routes": 4, - "Backbone.Events": 2, - "globalEval": 2, - "u*.003": 2, - "lt*fr": 1, - "prop=": 3, - "prop": 24, - "this.parser": 2, - "vi.getStart": 1, - "*kt": 5, - ".scrollTop": 1, - "formatted": 2, - "uncatchable": 1, - "rmozilla.exec": 1, - "_data": 3, - "e.value": 1, - "table": 6, - "g.childNodes.length": 1, - ".TEST": 2, - "j.nodeName.toLowerCase": 1, - "error.code": 1, - "OutgoingMessage.prototype.end": 1, - "FreeList": 2, - ".32*f": 2, - "f.rotate": 5, - "steelseries.ColorDef.BLUE.dark.getRgbaColor": 6, - "errorDeferred": 1, - "c.support.boxModel": 1, - "f.propHooks": 1, - "n.unbind": 1, - "e*.495327": 4, - ".03*t": 2, - "existed": 1, - "b.length": 12, - "req.httpVersionMinor": 2, - "b.clearRect": 1, - ".856796": 2, - "i.odometerUseValue": 2, - "Animal.prototype.move": 2, - "support.inlineBlockNeedsLayout": 1, - "jQuerySub.fn.init": 2, - "Y": 3, - "atom": 5, - "oi*.9": 1, - "timeStamp=": 1, - "bR": 2, - "abortIncoming": 3, - "TAGNAMES": 2, - "tokenizer": 2, - "<e&&90>": 2, - "privateCache.events": 1, - "escapable": 1, - ".filter": 2, - "self.options.maxSockets": 1, - "peek": 5, - "s.drawImage": 8, - "light": 5, - "deferred.reject": 1, - "f.offset.setOffset": 2, - "multiple": 7, - "manipulated": 1, - "<u?u:n>": 5, - "gt.getContext": 3, - "occur": 1, - "jQuery.extend": 11, - "</map>": 1, - "modal": 4, - ".047058": 2, - "t.getContext": 2, - "ie": 2, - "setAttribute": 1, - "failDeferred.cancel": 1, - "a.button": 2, - "setForegroundType=": 1, - "y.canvas.height": 3, - ".apply": 7, - "/#.*": 1, - "#5145": 1, - "<q;p++)f.event.add(n[p],\"live.\"+O(h,m),{data:d,selector:m,handler:e,origType:h,origHandler:e,preType:l});else>": 1, - "d.selector": 2, - "shown": 2, - "socketCloseListener": 2, - "u/10": 2, - "this.getMinValue": 3, - "support.noCloneChecked": 1, - "this.trigger": 2, - "f.css": 24, - "fA": 2, - "delay": 4, - "c.uaMatch": 1, - "this.options": 6, - "dt.playing": 2, - "this.startTime": 2, - "Extend": 2, - "s.exec": 1, - "while": 53, - "this._sent100": 2, - "57": 1, - "n.arc": 6, - "window": 16, - "Backbone.history": 2, - "p.lastChild": 1, - "parse_error": 3, - "w*.121428": 2, - "f*.36": 4, - "t/255": 1, - "End": 1, - "a.ownerDocument": 1, - "unbind": 2, - "u*.15": 2, - "this.setPointerColor": 4, - "d.fireEvent": 1, - "expression": 4, - "success": 2, - "t.setValue": 1, - "dr": 16, - "f.contains": 5, - "uFFFF": 2, - "this.slice": 5, - "parse_lowerCaseLetter": 2, - "my": 1, - "fires.": 2, - "/compatible/.test": 1, - "info.method": 2, - "KEYWORDS": 2, - "or/2": 1, - "l.relative": 6, - "executed": 1, - "cssomPrefixes": 2, - "pos2": 22, - "7fd5f0": 2, - "h*1.17/2": 1, - "at/yt*h": 1, - "f.swap": 2, - "h.cloneNode": 1, - "th": 1, - ".0875*t": 3, - "uu": 13, - "matches=": 1, - "c.value": 1, - "checked=": 1, - "jQuery.fn.jquery": 1, - "ActiveXObject": 1, - "input": 25, - "t*.012135": 1, - "rr.drawImage": 1, - "aspect": 1, - "as": 11, - "o.innerHTML": 1, - "Backbone.View.prototype": 1, - "a.push": 2, - "lineJoin=": 5, - "180": 26, - "728155": 2, - "i.createDocumentFragment": 1, - "d.filter": 1, - "Width": 1, - "right": 3, - "p.abort": 1, - "h=": 19, - "f.uuid": 1, - "this.connection._httpMessage": 3, - ".815*t": 1, - "_extractParameters": 1, - "h.push": 1, - "et.clearRect": 1, - "Math.floor": 26, - "S/": 4, - "_configure": 1, - "hex_bytes": 3, - "isHeadResponse": 2, - "Animal.name": 1, - "relatedTarget": 6, - "init": 7, - "bg.thead": 1, - "f.setAlpha": 8, - "fn": 14, - ".appendChild": 1, - "e.style.opacity": 1, - ".marginRight": 2, - "c.dequeue": 4, - "obj.push": 1, - "/SVGClipPath/.test": 1, - "ou": 13, - "ai/": 2, - "jQuery.isFunction": 6, - "Backbone.View": 1, - "this.nextSibling": 2, - "visibility": 3, - ".ownerDocument": 5, - "Flash": 1, - "u.knobType": 4, - "ni": 30, - "hooks": 14, - "f.prevObject": 1, - "does": 9, - "options.setHost": 1, - "s/ut": 1, - ".getTime": 3, - "r/g": 2, - "a.split": 4, - "f.concat": 1, - "Backbone.emulateJSON": 2, - "inputs": 3, - "224299": 1, - "lineWidth=": 6, - "c.queue": 3, - "c.fx.speeds": 1, - "die": 3, - "d.userAgent": 1, - "html5": 3, - "ve": 3, - "co": 5, - "j": 265, - "off": 1, - "bc": 1, - "deleteExpando": 3, - "Array": 3, - "ei=": 1, - "yt.getColorAt": 2, - "y.restore": 1, - "f.cssHooks.marginRight": 1, - "ft.push": 1, - "ajaxSend": 1, - "saveClones": 1, - "rule": 5, - "f*.528037": 2, - "restore": 14, - "n.background": 22, - "doing": 3, - "v.statusText": 1, - "e.extend": 2, - "this.isLocal": 1, - "k*.8": 1, - "n.trend": 4, - "i.niceScale": 10, - "selector.length": 4, - "rmozilla": 2, - "IncomingMessage.prototype._addHeaderLine": 1, - ".775*t": 3, - "dt.start": 2, - "mousemove": 3, - "e.fn.init": 1, - "given": 3, - "#5443": 4, - "u00b0": 8, - "pe": 2, - "parents": 2, - "the": 107, - "comment": 3, - "bs.test": 1, - "cd.test": 2, - "value.toLowerCase": 2, - "inputElem.checkValidity": 2, - "window.WebGLRenderingContext": 1, - "prefixed": 7, - "e*.88": 2, - "ui.width": 2, - "slideToggle": 1, - "H=": 1, - "try": 44, - "#6781": 2, - "this.click": 1, - "f*.871012": 2, - ".66*u": 1, - "document.attachEvent": 6, - "g.substring": 1, - "document.readyState": 4, - "isImmediatePropagationStopped=": 1, - "q.handler": 1, - ".34": 1, - "p.save": 2, - "Horse": 12, - "xa": 3, - "e.fn.trigger": 1, - "Q.push": 1, - "key": 85, - "div.firstChild.namespaceURI": 1, - "stat": 1, - "i*.114285": 1, - "self.method": 3, - "e.canvas.height": 2, - "Reset": 1, - "N": 2, - "loadUrl": 1, - "module.deprecate": 2, - "chunkExpression": 1, - "<e&&(v=e),g({background:!0}),this.repaint()},this.getMinValue=function(){return>": 1, - "bG": 3, - "u=": 12, - "b.test": 1, - "this.childNodes": 1, - "c.documentElement": 4, - "firingStart": 3, - ".charAt": 1, - "jQuery": 48, - "upgraded": 1, - "f.canvas.height": 3, - "kr": 17, - "Has": 1, - "marginLeft": 2, - "o._default.call": 1, - "d.promise": 1, - "incoming.push": 1, - "p.addColorStop": 4, - "e*.28": 1, - "f*.046728": 1, - "own.": 2, - "localStorage.removeItem": 1, - "jQuery._Deferred": 3, - "name": 161, - "/mg": 1, - "e.guid": 3, - "b.remove": 1, - "parse_hexEscapeSequence": 3, - "read_string": 1, - "ra": 1, - "z.test": 3, - "sizset": 2, - "b.slice": 1, - "err": 5, - "beforeunload": 1, - "hooks.set": 2, - "t*.871012": 1, - "vi.width": 1, - "#4512": 1, - "#x2F": 1, - "pos": 197, - "unitString": 4, - "k.contains": 5, - "toplevel": 7, - "o=": 13, - "parse_hexDigit": 7, - "newline_before": 1, - "f*.2": 1, - "163551": 5, - "k.save": 1, - "b.defaultChecked": 1, - "f.support.checkOn": 1, - "parser.reinitialize": 1, - "line": 14, - ".845*t": 1, - "i.foregroundType": 6, - "hide": 8, - "c.isFunction": 9, - "deal": 2, - "_unmark": 3, - "f.etag": 1, - "c.documentElement.currentStyle": 1, - "Array.prototype.slice": 6, - "postfix": 1, - "shadowOffsetY=": 1, - "2": 66, - "this.handlers.unshift": 1, - "c.support.noCloneEvent": 1, - "runners": 6, - "a.replace": 7, - "p.add": 1, - "k*.32": 1, - "n.odo": 2, - "v.exec": 1, - "unrecognized": 3, - "c.fn.init.prototype": 1, - "f.support.style": 1, - "testDOMProps": 2, - "e*.5": 10, - "Tween": 11, - "input.checked": 1, - "Modified": 1, - "s.detachEvent": 1, - "div": 28, - "node.offsetHeight": 2, - "resolved": 1, - "g.clientTop": 1, - "{": 2736, - "08": 1, - "Xa": 1, - "t.test": 2, - "bt": 42, - "n.canvas.width/2": 6, - "wt.digits": 2, - "send": 2, - ".join": 14, - "expectExpression.test": 1, - "h2": 5, - "s.body": 2, - "manipulation": 1, - "matchMedia": 3, - "after_e": 5, - ".substring": 2, - "<ft.length;c++)if(o>": 1, - "it.addColorStop": 4, - ".65*e": 1, - "this.setValue": 7, - "84": 1, - "hasDuplicate": 1, - "Actual": 2, - "Remember": 2, - "f.cssHooks": 3, - "scripts": 2, - "Add": 4, - "<c;a++)if(f.contains(this,b[a]))return!0})},not:function(a){return>": 1, - "quote": 3, - "/u": 3, - "j.noCloneEvent": 1, - "fireWith": 1, - "h.concat.apply": 1, - "this.outputEncodings": 2, - "u*r": 1, - "fromElement=": 1, - "routes.unshift": 1, - "clientLeft": 2, - "frameDesign": 4, - "<ti&&(ht=!1,ur(ht)):(ht=!0,ur(ht)),l>": 1, - "c.documentElement.contains": 1, - "b.addColorStop": 4, - "it/2": 2, - ".mouseleave": 1, - "u*.009": 1, - ".width": 2, - "bubbling": 1, - "jQuery.fn.init.call": 1, - "Ra": 2, - "g.html": 1, - "k.selectors": 1, - "x0B": 1, - "this.getValue": 7, - "i.odometerParams": 2, - "metaKey=": 1, - "a.target.disabled": 1, - "b.call": 4, - "d.jquery": 1, - "parser.incoming._paused": 2, - "006": 1, - "<f||(r=\"8px>": 1, - "ni.getContext": 4, - "h*.0375": 1, - "ei.labelColor.getRgbaColor": 2, - "PI": 54, - "this.options.pushState": 2, - "avoid": 5, - "new": 86, - "<a>": 4, - "d.handler": 1, - "element.trigger": 1, - "read_name": 1, - "decimalBackColor": 1, - "wf": 4, - "f*255": 1, - "f.disabled": 1, - "f.access": 3, - "__slice.call": 2, - "userAgent": 3, - "e*.53271": 2, - "steelseries.LedColor.RED_LED": 7, - "bodyOffset": 1, - "j.getComputedStyle": 2, - "mouseover": 12, - "never": 2, - "document.documentElement.doScroll": 4, - "b*100": 1, - "cd": 3, - "_": 9, - "contents": 4, - "exports.Client": 1, - "req.res": 8, - "t*.12864": 1, - "bX": 8, - "smile": 4, - "kr.type": 1, - "baseHasDuplicate": 2, - "f.propFix": 6, - "f.event.trigger": 6, - "3c4439": 2, - "ti.onMotionChanged": 1, - "start": 20, - "k.getText": 1, - "a.defaultSelected": 1, - "u.splice": 1, - "siblings": 1, - "requestListener": 6, - "this.httpVersion": 1, - "tt=": 3, - "_context": 1, - "cors": 1, - "rmultiDash": 3, - "c.support.deleteExpando": 2, - "ua.test": 1 - }, - "XC": { - "<:>": 1, - "main": 1, - "return": 1, - "chan": 1, - "int": 2, - "}": 2, - "0": 1, - "par": 1, - "c": 3, - ";": 4, - "x": 3, - "{": 2, - ")": 1, - "(": 1 - }, - "Matlab": { - "overrideSettings": 3, - "vy0": 2, - "parallel": 2, - "Definition": 1, - "data.system.B": 1, - "area": 1, - "close": 4, - "h2": 5, - "plotyy": 3, - "dArrow1": 2, - "ones": 6, - "analytic.D": 1, - "dy": 5, - "j": 242, - "x_T": 25, - "goodness": 1, - "Frequency": 2, - "defaultSettings.": 1, - "red": 1, - "k2*h/2": 1, - "bops": 7, - "YTickLabel": 1, - "steerAngle": 4, - "currentGuess": 2, - "@fH": 1, - "input": 14, - "opts.PhaseMatchingValue": 2, - "Setting": 1, - "h_r/2": 4, - "_H": 1, - "openLoops.Y.num": 1, - "y_r": 6, - "contents": 1, - "TODO": 1, - "E_T": 11, - "create_ieee_paper_plots": 2, - "resultPlantTwo": 1, - "dataPlantOne": 3, - "openLoops": 1, - "nominalData": 1, - "YTick": 1, - "dbstack": 1, - "defaultSettings.inputs": 1, - "xn": 4, - "sigma": 6, - "delta_E": 7, - "history": 7, - "eye": 9, - "VX_T": 4, - "CPU": 1, - "plantOneSlopeOffset": 3, - "grid_max": 3, - "type": 4, - "Hands": 1, - "parser.parse": 1, - "Lateral": 1, - "xl1": 13, - "rad/sec": 1, - "args": 1, - "sprintf": 11, - "vx_0_max": 8, - "grid_width": 1, - "-": 672, - "@cr3bp_jac": 1, - "parser.addParamValue": 3, - "numeric.OutputName": 1, - "OutputName": 1, - "vx_gpu": 3, - "yl4": 9, - "lines": 17, - "downSlope": 3, - "kP1": 4, - "primary": 1, - "defaultSettings.states": 1, - "x_a": 10, - "w": 3, - ".2f": 5, - "removeStates": 1, - "bicycle.OutputName": 4, - "data.modelPar.B": 1, - "come": 1, - "each": 2, - "else": 23, - "sum": 2, - "statefcn": 2, - "w_r": 5, - "aux.plantFirst": 2, - "gains.Fisher.Slow": 1, - "ok": 2, - "gray": 7, - "find": 24, - "Diagrams": 1, - "Handling.eps": 1, - "metricLine": 1, - "yellow": 1, - "A": 11, - "k2": 3, - "nominalData.": 2, - "rollData.speed": 1, - "&": 4, - "settings.outputs": 1, - "set": 43, - "max": 9, - "sense": 2, - "vy_gpu": 3, - "system_state_space": 2, - "convert_variable": 1, - "function": 32, - "Kinetic": 2, - "y_0.": 2, - "bikes": 24, - "options": 14, - "p": 7, - "path": 3, - "sqrt": 14, - "y_gpu": 3, - "@getState": 1, - "plantTwoSlopeOffset": 3, - "colorbar": 1, - "change": 1, - "RK4": 3, - "how": 1, - "odeset": 4, - "y_min": 3, - "px_0": 2, - "struct": 1, - "XColor": 1, - "directory": 2, - "PaperUnits": 3, - "uses": 1, - "Check": 6, - "axes": 9, - "defaultSettings.outputs": 1, - "/abs": 3, - "gain": 1, - "From": 1, - "/2": 3, - "sg": 1, - "phiDotNum": 2, - "squeeze": 1, - "coords": 2, - "columns": 4, - "dataAdapting": 3, - "args.detrend": 1, - "data.system.A": 1, - "choose_plant": 4, - "Metric": 2, - "many": 1, - "settings.inputs": 1, - "legLines": 1, - "h1": 5, - "setting": 4, - "<=>": 1, - "iirFilter": 1, - "analytic.C": 1, - "black": 1, - "dataPlantTwo": 3, - "data.bicycle.inputs": 1, - "yShift": 16, - "interesting": 4, - "dx": 6, - "num2str": 10, - "i": 334, - "@iirFilter": 1, - "loop": 1, - "obj.R": 2, - "Szebehely": 1, - "N": 9, - "numeric.InputName": 1, - "delta_E0": 1, - "equations": 2, - "resides": 2, - "human": 1, - "gainChanges": 2, - "box": 4, - "xlim": 8, - "results": 1, - "vOut": 2, - "data.forceTF.PhiDot.den": 1, - "end": 147, - "Distance": 1, - "zeros": 60, - "bodeplot": 6, - "YColor": 2, - "varargin_to_structure": 2, - "keepStates": 2, - "calcolare": 2, - "*Omega": 5, - "none": 1, - "keep": 1, - "InputName": 1, - "sort": 1, - "rollData.time": 1, - "}": 157, - "Conditions": 1, - "zeroIndices": 3, - "bops.FreqUnits": 1, - "Saving": 4, - "Jacobian": 3, - "b": 12, - "gains.Benchmark.Medium": 1, - "isreal": 8, - "G": 1, - "range": 2, - "tolerance": 2, - "Color": 13, - "energy": 8, - "compute": 2, - "resultPlantTwo.fit.par": 1, - "ecc": 2, - "Southeast": 1, - "*phi": 2, - "also": 1, - "matrice": 1, - "at": 3, - "@f_reg": 1, - "filesep": 14, - "opts.PhaseMatching": 2, - "t3": 1, - "./": 1, - "Lagr": 6, - "yl3": 8, - "unit": 1, - "figWidth": 24, - "inputParser": 1, - "LineStyle": 2, - "subplot": 3, - "setoptions": 2, - "plotAxes": 22, - "adapting_structural_model": 2, - "v": 12, - "data.modelPar.A": 1, - "paths.eps": 1, - "bikeData": 2, - "[": 309, - "largest": 1, - "average": 1, - "filtfcn": 2, - "x0": 4, - "ylabel": 4, - "text": 11, - "keepOutputs": 2, - "bicycle.InputName": 2, - "filename": 21, - "@": 1, - "nu": 2, - "parfor": 5, - "k1": 4, - "slope": 3, - "warning": 1, - "ss2tf": 2, - "teoricamente": 1, - "rad/s": 4, - "arrayfun": 2, - "%": 552, - "write_gains": 1, - "twentyPercent.": 2, - "Offset": 2, - "opts.Title.String": 2, - "distance": 6, - "py_T": 4, - "In": 1, - "gains.Browser.Slow": 1, - "*e_0": 3, - "Call": 2, - "ylim": 2, - "openLoops.Y.den": 1, - "pints": 1, - "inches": 3, - "f_x_t": 2, - "data.forceTF.PhiDot.num": 1, - "y_res": 7, - "non": 2, - "floatSpec": 3, - "openLoops.Phi.num": 1, - "*T": 3, - "Bode": 1, - "T": 22, - "gains.Browserins.Fast": 1, - "La": 1, - "system": 2, - "phi": 13, - "par_text_to_struct": 4, - "mod": 3, - "pathLength": 3, - "filter": 14, - "conditions": 3, - "delta_e": 3, - "yh": 2, - "self": 2, - "Short": 1, - "openBode.eps": 1, - "vx_f": 3, - "Manual": 2, - "gains.Yellow.Fast": 1, - "mass": 2, - "resultPlantTwo.fit": 1, - "analytic.B": 1, - "h*k3": 1, - "wc": 14, - "*log": 2, - "h": 19, - "RelTol": 2, - "data.bicycle.outputs": 1, - "vx_0": 37, - "line.": 2, - "and": 7, - "deltaNum": 2, - "*Potential": 5, - "Omega": 7, - "io": 7, - "gains.Yellowrev.Medium": 1, - "setxor": 1, - "to": 9, - "chil": 2, - ".file": 1, - "Compute": 3, - "C_L1": 3, - "idnlgrey": 1, - "possible": 1, - "from": 2, - "arg": 2, - "prettyNames": 3, - "generate_data": 5, - "visualize": 2, - "e_0": 7, - "@cross_y": 1, - "aux.plantSecond": 2, - "save": 2, - "this": 2, - "nvx": 32, - "mai": 1, - "/length": 1, - "difference": 2, - "gains.Benchmark.Slow": 1, - ".handlingMetric.num": 1, - "xlabel": 8, - "speeds": 21, - "x_f": 3, - "fit": 6, - "|": 2, - "x_0_max": 8, - "Location": 2, - "display": 10, - "resultPlantOne.fit": 1, - "variables": 2, - "a": 17, - "green": 1, - "advected_y": 12, - "Computation": 9, - "var": 3, - "Moon": 2, - "get": 11, - "EastOutside": 1, - "x_0": 45, - "guess.plantTwo": 2, - "linspace": 14, - "Plot": 1, - "th": 1, - "lambda_max": 2, - "ftle": 10, - "ss": 3, - "+": 169, - "ischar": 1, - "variable": 10, - "first": 3, - "aux.b": 3, - "maxLine": 7, - "numeric.D": 1, - "Energy": 4, - "direzione": 1, - "*E_L1": 1, - "as": 4, - "settings.states": 3, - "It": 1, - "stored": 1, - "E_0": 4, - "t2": 6, - "yl2": 8, - "Y_T": 4, - "contents.colheaders": 1, - "output": 7, - "log": 2, - "gains.Yellow.Medium": 1, - "not": 3, - "u": 3, - "command": 2, - "points": 11, - "phiDotDen": 2, - "nome": 2, - "_n": 2, - "lane_change": 1, - "gainSlopeOffset": 6, - "resultPlantOne.fit.par": 1, - "pzplot": 1, - "states": 7, - "inline": 1, - "equal": 2, - "figure": 17, - "elseif": 14, - "closedLoops": 1, - "result": 5, - "gains.": 1, - "speedsInFile": 5, - "par": 7, - "Y0": 6, - "all": 15, - "yn": 2, - "eigenvalue": 2, - "C_L1/2": 1, - "Integration": 2, - "wnm": 11, - "xLimits": 6, - "xy": 7, - "bicycle_state_space": 1, - "store": 4, - "clear": 13, - "settings.": 1, - "zetanm": 5, - "decide": 1, - "holder": 2, - "notGiven": 5, - "*ds_vx": 2, - "n": 102, - "matrix": 3, - "aux.timeDelay": 2, - "pathToFile": 11, - "mkdir": 1, - "||": 3, - "*n": 2, - "meaningless": 2, - "whipple_pull_force_ABCD": 1, - "S": 5, - "Quality": 2, - "col": 5, - "result.": 2, - "matlab_class": 2, - "deps2c": 3, - "magnitudes": 1, - "free": 1, - "guessPlantOne": 4, - "Lagrangian": 3, - "frontWheel": 3, - "vy_T": 12, - "sameSpeedIndices": 5, - "filtro_1": 12, - "arrays": 1, - "benchmark": 1, - "gca": 8, - "validation": 2, - "minLine": 4, - "grid_min": 3, - "dim": 2, - "parser.Results": 1, - "u.": 1, - "oneSpeed.time": 2, - "Range": 1, - "detrend": 1, - "fclose": 2, - "normalized": 1, - "width": 3, - "analytic.A": 3, - "randomGuess": 1, - "g": 5, - "Ys": 1, - "h_a": 5, - "rectangle": 2, - "resultPlantOne": 1, - "xl5": 8, - "l2": 2, - "in": 8, - "data.Browser": 1, - "makeFilter": 1, - "varargin": 25, - "1": 1, - "Transforming": 1, - "vals": 2, - "motion": 2, - "fopen": 2, - "oneSpeed.speed": 2, - "initial": 5, - "Data": 2, - "grid_spacing": 5, - "pad": 10, - "conservation": 2, - "maxValue": 4, - "Back": 1, - "y_T": 17, - "var_xvx_": 2, - "*ds": 4, - "time": 21, - "obj": 2, - "isterminal": 2, - "ode45": 6, - "position": 2, - "FIXME": 1, - "la": 2, - "positions": 2, - "inset": 3, - "maxEvals": 4, - "@RKF45_FILE_gpu": 1, - "x_gpu": 3, - "wfs": 1, - "gains.Benchmark.Fast": 1, - "inputs": 14, - "{": 157, - "deps2": 1, - "feedback": 1, - "integrator": 2, - "opts.YLim": 3, - "find_structural_gains": 2, - "eigenValues": 1, - ".fit.par": 1, - "handling_all_bikes": 1, - "advected_x": 12, - "linestyles": 15, - "E": 8, - "min": 1, - "integrare": 2, - "properties": 1, - "*E": 2, - "eVals": 5, - "gainsInFile": 3, - "magenta": 1, - "VY_T": 3, - "sr": 1, - "*": 46, - "closedLoops.PhiDot.num": 1, - "mu./": 1, - "bicycle": 7, - "openLoops.Phi.den": 1, - "openBode": 3, - "double": 1, - "numeric.C": 1, - "legends": 3, - "oneSpeed": 3, - "Compute_FILE_gpu": 1, - "t1": 6, - "yl1": 12, - "dArrow": 2, - "dphi*dphi": 1, - "plantNum": 1, - "i/n": 1, - "size": 8, - "*grid_width/": 4, - "t": 32, - "plot_io": 1, - "integrating": 1, - "startOfSlope": 3, - "essere": 1, - "plantNum.plantOne": 2, - "off": 10, - "raise": 19, - "value2": 4, - "like": 1, - "Y": 19, - "*ds_x": 2, - "rollData.inputs": 1, - "obj.B": 2, - "Handling": 2, - "numbers": 2, - "plot": 26, - "spostamento": 1, - "gains.Browserins.Medium": 1, - "both": 1, - "results.mat": 1, - "y_a": 10, - "tspan": 7, - "fillColors": 1, - "Integrate_FTLE_Gawlick_ell": 1, - "bikeData.handlingMetric.den": 1, - "xShift": 3, - "deltaDen": 2, - "arguments": 7, - "parser.addRequired": 1, - "tic": 7, - "curPos2": 4, - "measure": 1, - "textscan": 1, - "gains.Browser.Fast": 1, - "overrideNames": 2, - "closedLoops.Delta.den": 1, - "pcolor": 2, - "x_r": 6, - "manual": 3, - "grid": 1, - "contourf": 2, - "m": 44, - "typ": 3, - "numeric": 2, - "methods": 1, - "get_variables": 2, - "it": 1, - "VAF": 2, - "vx_0_min": 8, - "loopNames": 4, - ".handlingMetric.den": 1, - "R": 1, - "colors": 13, - "contents.data": 2, - "*mu": 6, - "ci": 9, - "v_y": 3, - "gains.Fisher.Medium": 1, - "iddata": 1, - "ds_x": 1, - "neuroDen": 2, - "tf2ss": 1, - "bikeData.modelPar.": 1, - "units": 3, - "secData.": 1, - "gather": 4, - "axis": 5, - "c3": 3, - "pem": 1, - "py_0": 2, - "true": 2, - "num": 24, - "f": 13, - "abs": 12, - "ticks": 4, - "StateName": 1, - "Dimensionless": 1, - "y0": 2, - "order": 11, - "gains.Fisher.Fast": 1, - "xl4": 10, - "l1": 2, - "phisically": 2, - "classdef": 1, - "FTLE": 14, - "w_a": 7, - "Position": 6, - "speedInd": 12, - "Hill": 1, - "gains.Browserins.Slow": 1, - "rollData.path": 1, - "round": 1, - "suppresses": 2, - "load_data": 4, - "xAxis": 12, - "ne": 29, - "plot_io_roll": 3, - "transfer": 1, - "are": 1, - "var_": 2, - "k1*h/2": 1, - "gains.Pista.Slow": 1, - "ax": 15, - "speedNames": 12, - "line": 15, - "defaultNames": 2, - "mag": 4, - "minStates": 2, - "bicycle.StateName": 2, - "*vx_0": 1, - "appear": 2, - "LineWidth": 2, - "vx0": 2, - "memory": 1, - "E_L1": 4, - "useful": 9, - "z": 3, - "bikeData.handlingMetric.num": 1, - "oneSpeed.": 3, - "ret": 3, - "meaningful": 6, - "*k3": 1, - "start": 4, - "r2": 3, - "_": 2, - "closedLoops.Delta.num": 1, - "laneLength": 4, - "bottomRow": 1, - "bikeData.": 2, - "&&": 13, - "on": 13, - "allGains": 4, - "if": 52, - "freq": 12, - "m/s": 6, - "D": 7, - "global": 6, - "ny": 29, - "tf": 18, - "db2": 2, - "load_bikes": 2, - "total": 6, - "guess.": 2, - "Points": 2, - "fix_ps_linestyle": 6, - "speed": 20, - "plantNum.plantTwo": 2, - ")": 1358, - "dvx": 3, - "only": 7, - "while": 1, - "numeric.B": 1, - "data.bicycle.states": 1, - "options.": 1, - "clc": 1, - "neuroNum": 2, - "CURRENT_DIRECTORY": 2, - "names": 6, - "t0": 6, - "phase": 2, - "field": 2, - "C/2": 1, - "tempo": 4, - "data": 27, - "filter_ftle": 11, - "single": 1, - "maxMag": 2, - "s": 13, - "vy": 2, - "guessPlantTwo": 3, - "parser": 1, - "t_integr": 1, - "dphi": 12, - "plant": 4, - "value1": 4, - "solutions": 2, - "X": 6, - "approach": 1, - "twentyPercent.modelPar.": 1, - "plots/": 1, - "semicolon": 2, - "rollAngle": 4, - "final": 2, - "figHeight": 19, - "waitbar": 6, - "h/6*": 1, - "ecc*cos": 1, - "@dg": 1, - "white": 1, - "Selection": 1, - "enumeration": 1, - "rollData.outputs": 3, - "guesses": 1, - "length": 49, - "gcf": 17, - "Fontsize": 4, - "data.system.D": 1, - "strtrim": 2, - "plots": 4, - "curPos1": 4, - "one": 3, - "denominatore": 1, - "legWords": 3, - "findobj": 5, - "fun": 5, - "gains.Browser.Medium": 1, - "l": 64, - "fid": 7, - "advected": 2, - "Look": 2, - "coordinates": 6, - "Y_0": 4, - "w_r/2": 4, - "_e": 1, - "error": 14, - "is": 7, - "E_cin": 4, - "str2num": 1, - "fieldnames": 5, - "Southwest": 1, - "getState": 1, - "bode": 5, - "rollData": 8, - "@f": 6, - "defaultSettings": 3, - "aux.m": 3, - "index": 6, - "goldenRatio": 12, - "x_0_min": 8, - "y_max": 3, - "ye": 9, - "raw": 1, - "allSpeeds": 4, - "RK4_par": 1, - "c2": 5, - "Xlabel": 1, - "closedBode": 3, - "closedLoops.PhiDot.den": 1, - "loop_shape_example": 3, - "bikeData.openLoops": 1, - "Linewidth": 7, - ".png": 1, - "e": 14, - "print": 6, - "Kutta": 1, - "inf": 1, - "data/": 1, - "xl3": 8, - "getoptions": 2, - "l0": 1, - "il": 1, - "Hamiltonian": 1, - "gains": 12, - "vy_f": 3, - "bikeData.closedLoops": 1, - "settings": 3, - "ode00": 2, - "/": 59, - "AbsTol": 2, - "closed": 1, - "endOfSlope": 1, - "ndgrid": 2, - "vy_0": 22, - "leg2": 2, - "openLoops.Psi.den": 1, - "would": 2, - "x_min": 3, - "guess.plantOne": 3, - "y": 22, - "Latex": 1, - "through": 1, - "place": 2, - "importdata": 1, - "data.modelPar.D": 1, - "grid_y": 3, - "px_T": 4, - "sections": 13, - "*k2": 1, - "handling.eps": 1, - "The": 6, - "r1": 3, - "hold": 23, - "obj.G": 2, - "overwrite_settings": 2, - "annotation": 13, - "cleaning": 1, - "grid_width/": 1, - "ie": 2, - "Double": 1, - "C": 13, - "nx": 32, - "k4": 4, - "energy_tol": 6, - "te": 2, - "userSettings": 3, - "Inf": 1, - "xLab": 8, - "db1": 4, - "eig": 6, - "y_f": 3, - "Edgecolor": 1, - "(": 1357, - "Linestyle": 6, - "positive": 2, - "rollTorque": 4, - "fprintf": 18, - "numeric.A": 2, - "xData": 3, - "whipple_pull_force_abcd": 2, - "integrated": 5, - "Potential": 1, - "closeLeg": 2, - "Path": 1, - "y_0": 29, - "legend": 7, - "disp": 8, - "phase_portraits": 2, - "shading": 3, - "r": 2, - "computation": 2, - "vx": 2, - "orbit": 1, - "Initial": 3, - "textX": 3, - "Yc": 5, - "twentyPercent": 1, - "of": 35, - "with": 2, - "name": 4, - "<": 9, - "gains.Yellowrev.Slow": 1, - "analytic": 3, - "opts": 4, - "den": 15, - "C_star": 1, - "ridotta": 1, - "PaperPositionMode": 3, - "i/nx": 2, - "load": 1, - "mandatory": 2, - "data.system.C": 1, - "integration": 9, - "args.sampleTime": 1, - "mine": 1, - "EnergyH": 1, - "value": 2, - "dArrow2": 2, - "toc": 5, - "arg1": 1, - "parameter": 2, - ".vaf": 1, - "per": 5, - "Construction": 1, - "because": 1, - "metricLines": 2, - "ode113": 2, - "k": 75, - "open_loop_all_bikes": 1, - "ismember": 15, - "openLoops.Psi.num": 1, - "direction": 2, - "they": 2, - "f.": 2, - "regexp": 1, - "portrait": 3, - "lane.": 1, - "prod": 3, - "dello": 1, - "real": 3, - "raw.theta": 1, - "args.directory": 1, - "Level": 6, - "mu": 73, - "Choice": 2, - "par.": 1, - "negative": 1, - "lane": 4, - "task": 1, - "roots": 3, - "c1": 5, - "Ys.den": 1, - "PaperSize": 3, - "exist": 1, - "aux": 3, - "data.Benchmark.Medium": 2, - "the": 14, - "Runge": 1, - "number": 2, - "gains.Yellowrev.Fast": 1, - "d": 3, - "Yp": 2, - "fileparts": 1, - "ds": 1, - "gains.Yellow.Slow": 1, - "xl2": 9, - "filtro": 15, - "ylabels": 2, - "data.": 6, - "X_T": 4, - "ds_vx": 1, - "gpuArray": 4, - "PaperOrientation": 3, - "Earth": 2, - "GPU": 3, - "point": 14, - ".": 13, - "velocity": 2, - "vx_0.": 2, - "x_res": 7, - "gains.Pista.Fast": 1, - "leg1": 2, - "yl5": 8, - "Units": 1, - "Parallel": 2, - "outputs": 10, - "Deviation": 1, - "kP2": 3, - "back": 1, - "pathToParFile": 2, - "steps": 2, - "bad": 4, - "x": 42, - "spiegarsi": 1, - "xlabels": 2, - "h_r": 5, - "data.modelPar.C": 1, - "PaperPosition": 3, - "for": 77, - "...": 162, - "grid_x": 3, - "same": 2, - "cyan": 1, - "aux.pars": 3, - "]": 309, - "needs": 1, - "raw.theta_c": 1, - "x2": 1, - "plot.": 1, - "bodeoptions": 1, - "data.Ts": 6, - "which": 2, - "location": 1, - "flat": 3, - "eigenvalues": 2, - "x_max": 3, - "B": 9, - "k3": 3, - "matlab_function": 5, - "Elements": 1, - "ftle_norm": 1, - "strcmp": 24, - "row": 6, - "Open": 1, - "@f_ell": 1, - "into": 1, - "blue": 1, - "whichLines": 3, - "h/2": 2, - "xySource": 7, - "wShift": 5, - "depends": 1, - "guess": 1, - ".*": 2, - "Integrate": 6, - "vx_T": 22, - "loc": 3, - "tau": 1, - "pu": 1, - "Loop": 1, - "definition": 2, - "gains.Pista.Medium": 1, - "path_plots": 1, - "Ys.num": 1, - "de": 4, - "str": 2, - "compare": 3, - "loose": 4, - "e_T": 7, - "Integrate_FILE": 1, - "numeric.StateName": 1, - ";": 891, - "Consider": 1, - "np": 8, - "identified": 1, - "t_integrazione": 3, - "removeInputs": 2 - }, - "XQuery": { - "dflag": 1, - "primary": 1, - "declare": 24, - "c": 1, - "for": 1, - "sort": 1, - "validate": 1, - "const": 1, - "serialized_result": 2, - "name": 1, - "list": 1, - "control": 1, - "</dummy>": 1, - "options": 2, - "version": 1, - "{": 5, - "name=": 1, - "declared": 1, - "AST": 2, - "</namespace>": 1, - "p": 2, - "option": 1, - "import": 4, - "err": 1, - "xquery": 1, - "parse/*": 1, - "entry": 2, - "variable": 13, - "all": 1, - "parse/@*": 1, - "namespaces": 5, - "and": 3, - "encoding": 1, - "points": 1, - ")": 38, - "u": 2, - "output": 1, - "imports": 1, - "eval_result": 1, - "}": 5, - "viewport": 1, - "try": 1, - "library": 1, - "eval": 3, - "return": 2, - "II": 1, - "type": 1, - "each": 1, - "pipeline": 8, - "boundary": 1, - "group": 1, - "results": 1, - "preprocess": 1, - "I": 1, - "enum": 3, - "at": 4, - "saxon": 1, - "core": 1, - "serialize": 1, - "element": 1, - "tflag": 1, - "xqm": 1, - "catch": 1, - "<namespace>": 1, - "module": 6, - "parse": 8, - "functions": 1, - "namespace": 8, - "ast": 1, - "function": 3, - "run": 2, - "III": 1, - "stdin": 1, - "point": 1, - "(": 38, - ";": 25, - "explicit": 3, - "contains": 1, - "ns": 1, - "let": 6, - "xproc": 17, - "<dummy>": 1, - "space": 1, - "functions.": 1, - "preserve": 1, - "STEP": 3, - "-": 486, - "run#6": 1, - "util": 1, - "xproc.xqm": 1, - "bindings": 2, - "step": 5, - "choose": 1 - }, - "C": { - "statloc": 5, - "getDecodedObject": 3, - "setenv": 1, - "WIN32": 2, - "conjf": 1, - "SUNDOWN_VER_MAJOR": 1, - "got": 1, - "*state": 1, - "snprintf": 2, - "rfString_Assign_fUTF32": 2, - "__linux__": 3, - "HVIDEOOUTPUTDEVICENV*": 1, - "run_command_v_opt": 1, - "git_pool_swap": 1, - "thisstr": 210, - "WGL_GENERIC_ACCELERATION_EXT": 1, - "bgsaveCommand": 1, - "s_req_fragment": 7, - "redisServer": 1, - "*commit": 10, - "*X_data_ptr": 2, - "PFNWGLGETGPUINFOAMDPROC": 2, - "__Pyx_AddTraceback": 7, - "__pyx_obj_7sklearn_5utils_13weight_vector_WeightVector": 3, - "free_commit_extra_headers": 1, - "HTTP_MKACTIVITY": 1, - "okay": 1, - "uint64_t": 8, - "__pyx_k__shape": 1, - "*__pyx_n_s__c": 1, - "WGLEW_ARB_create_context": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_13ModifiedHuber_4__reduce__": 1, - "HTTP_##name": 1, - "cmd_verify_pack": 1, - "default": 33, - "WGL_DIGITAL_VIDEO_CURSOR_ALPHA_VALUE_I3D": 1, - "PyFrozenSet_Check": 1, - "i_NPSELECT_RF_STRING_REMOVE1": 1, - "diff_pathspec_is_interesting": 2, - "equals": 1, - "invalid": 2, - "refcount": 2, - "rb_str_cat": 4, - "WGL_GENLOCK_SOURCE_EDGE_BOTH_I3D": 1, - "__Pyx_StringTabEntry": 2, - "C": 14, - "*f": 2, - "msetCommand": 1, - "__pyx_k_21": 1, - "SUNDOWN_VER_REVISION": 1, - "i_rfLMSX_WRAP6": 2, - "diff_from_iterators": 5, - "during": 1, - "Consider": 2, - "i_NVrfString_Init": 3, - "PyBUF_RECORDS": 1, - "__pyx_f_7sklearn_12linear_model_8sgd_fast_12LossFunction_loss": 1, - "__pyx_k__n_samples": 1, - "node": 9, - "i_SELECT_RF_STRING_INIT_NC1": 1, - "HTTP_PROPFIND": 2, - "*description": 1, - "LF": 21, - "lookupCommandByCString": 3, - "__Pyx_c_is_zerof": 3, - "git_cache": 4, - "*graft": 3, - "PyVarObject_HEAD_INIT": 1, - "b__": 3, - "AE_ERR": 2, - "cmd_receive_pack": 1, - "rfString_ToUTF8": 2, - "*__pyx_n_s__q_data_ptr": 1, - "passes": 1, - "__pyx_t_5numpy_int32_t": 4, - "PyInt_AS_LONG": 1, - "lexer": 4, - "hSrcRC": 1, - "git_futils_open_ro": 1, - "__Pyx_PyInt_FromHash_t": 2, - "WGL_DIGITAL_VIDEO_CURSOR_INCLUDED_I3D": 1, - "yajl_bs_init": 1, - "WARN_ON": 1, - "o2": 7, - "WGLEW_NV_gpu_affinity": 1, - "GIT_DIFFCAPS_HAS_SYMLINKS": 2, - "yajl_set_default_alloc_funcs": 1, - "WGL_GPU_NUM_RB_AMD": 1, - "HTTP_SEARCH": 1, - "zstrdup": 5, - "rfUTF8_IsContinuationbyte": 1, - "pollfd": 1, - "__Pyx_c_prod": 2, - "yajl_do_parse": 1, - "server.repl_syncio_timeout": 1, - "REDIS_ENCODING_RAW": 1, - "WGL_TYPE_COLORINDEX_EXT": 1, - "numLen": 8, - "old_file.mode": 2, - "cmd_init_db": 2, - "static": 454, - "HPE_PAUSED": 2, - "CPU_UP_CANCELED": 1, - "user": 2, - "WGL_GPU_NUM_SIMD_AMD": 1, - "no": 4, - "PFNWGLCHOOSEPIXELFORMATARBPROC": 2, - "WGL_NO_RESET_NOTIFICATION_ARB": 1, - "*REDIS_EXPIRELOOKUPS_TIME_PERC/REDIS_HZ/100": 1, - "pointer": 5, - "include": 6, - "__Pyx_RefNanny": 8, - "__WGLEW_ARB_make_current_read": 2, - "rfFgetc_UTF32BE": 3, - "Strings": 2, - "wglGetCurrentReadDCARB": 1, - "WGL_FULL_ACCELERATION_EXT": 1, - "i_NPSELECT_RF_STRING_BEFORE0": 1, - "This": 1, - "subLength": 6, - "dictVanillaFree": 1, - "uv_process_options_t": 2, - "wglGetExtensionsStringEXT": 1, - "PFNWGLCREATECONTEXTATTRIBSARBPROC": 2, - "Py_SIZE": 1, - "p": 60, - "**pathspec": 1, - "HDC": 65, - "cell_work": 3, - "rb_funcall": 14, - "charValue": 12, - "REDIS_MAXMEMORY_NO_EVICTION": 2, - "__wglewWaitForSbcOML": 2, - "cmd_format_patch": 1, - "__pyx_k__power_t": 1, - "item": 24, - "__pyx_k__isnan": 1, - ".active_writer": 1, - "sdscat": 14, - "__wglewDXUnregisterObjectNV": 2, - "*feature_indices_ptr": 2, - "clusterCommand": 1, - "fseek": 19, - "ignore": 1, - "git_iterator_free": 4, - "local": 5, - "wake_up_process": 1, - "POLLHUP": 1, - "__Pyx_GetItemInt_Generic": 6, - "WGL_TEXTURE_CUBE_MAP_POSITIVE_X_ARB": 1, - "*curtag": 2, - "rstrP": 5, - "buffAllocated": 11, - "listRelease": 1, - "PAUSED": 1, - "__real__": 1, - "complex": 2, - "A0": 3, - "server.lua_caller": 1, - "redisCommand": 6, - "WGL_ACCESS_READ_ONLY_NV": 1, - "*__pyx_args": 9, - "git_cache_free": 1, - "0xBF": 1, - "__wglew_h__": 2, - "i_SELECT_RF_STRING_FWRITE": 1, - "Qtrue": 10, - "pexpireatCommand": 1, - "zremrangebyrankCommand": 1, - "WEXITSTATUS": 2, - "have_repository": 1, - "*__pyx_n_s__zeros": 1, - "__Pyx_PyObject_IsTrue": 1, - "s_chunk_size_start": 4, - "PM_HIBERNATION_PREPARE": 1, - "revents": 2, - "To": 1, - "I_KEEPSTR_": 2, - "status": 57, - "WGL_ALPHA_SHIFT_EXT": 1, - "MKD_NOLINKS": 1, - "Error": 2, - "numclients/": 1, - "dictEncObjKeyCompare": 4, - "existence": 2, - "abs": 2, - "**pptr": 1, - "__Pyx_StructField": 2, - "*argv0": 1, - "NEW_MESSAGE": 6, - "lpGpuDevice": 1, - "functions": 2, - "*__pyx_n_s__t": 1, - "_param": 1, - "appendServerSaveParams": 3, - "noPreloadGetKeys": 6, - "wglIsEnabledFrameLockI3D": 1, - "WGL_EXT_pbuffer": 2, - "PyBUF_STRIDES": 6, - "author": 1, - "end": 48, - "WGL_VIDEO_OUT_ALPHA_NV": 1, - "srcX": 1, - "func_name": 2, - "*__pyx_n_s__class_weight": 1, - "handle_alias": 1, - "__Pyx_RaiseNoneNotIterableError": 1, - "NEED_WORK_TREE": 18, - "STRICT_CHECK": 15, - "T": 3, - "REDIS_REPL_PING_SLAVE_PERIOD": 1, - "server.aof_rewrite_time_last": 2, - "STRICT": 1, - "rfString_Count": 4, - "*w": 2, - "PyObject_DelAttrString": 2, - "WGL_TEXTURE_RGBA_ARB": 1, - "hRegion": 3, - "*diff_ptr": 2, - "buf": 57, - "i_rfString_Afterv": 16, - "getClientsMaxBuffers": 1, - "__pyx_k_16": 1, - "WGLEW_ARB_pixel_format_float": 1, - "appendCommand": 1, - "environ": 4, - "dstName": 1, - "git_buf_len": 1, - "i_SELECT_RF_STRING_BEFORE4": 1, - "dstY0": 1, - "*what": 1, - "GIT_DIFF_INCLUDE_UNTRACKED": 1, - ".id": 1, - "server.cronloops": 3, - "PFNWGLBINDSWAPBARRIERNVPROC": 2, - "epsilon": 2, - "*codepoints": 2, - "cmd_mailsplit": 1, - "__pyx_k____main__": 1, - "deref_tag": 1, - "i_StringCHandle": 1, - "i_STRING2_": 2, - "__pyx_k__B": 1, - "new_argv": 7, - "*header_value_mark": 1, - "stime": 1, - "server.ops_sec_samples": 4, - "PyBytes_Check": 1, - "PyInt_FromSize_t": 1, - "#elif": 14, - "assert": 41, - "is_ref": 1, - "RF_UTF32_LE//": 2, - "self_ru.ru_utime.tv_usec/1000000": 1, - "their": 1, - "wglCreateDisplayColorTableEXT": 1, - "i_SELECT_RF_STRING_CREATE_NC0": 1, - "The": 1, - "WGL_OPTIMAL_PBUFFER_HEIGHT_EXT": 1, - "Local": 2, - "shared.noscripterr": 1, - "__pyx_k__penalty_type": 1, - "wglQueryPbufferARB": 1, - "PFNWGLDISABLEGENLOCKI3DPROC": 2, - "REDIS_SLAVE": 3, - "uint16_t*": 11, - "i_SEARCHSTR_": 26, - "__wglewLoadDisplayColorTableEXT": 2, - "document": 9, - "base": 1, - "new_src": 3, - "HTTP_POST": 2, - "REDIS_REPL_WAIT_BGSAVE_START": 1, - "*phGpu": 1, - "GLboolean": 53, - "yajl_status_ok": 1, - "tree": 3, - "*__Pyx_ImportType": 1, - "SUNDOWN_VER_MINOR": 1, - "DECLARE_BITMAP": 6, - "__WGLEW_EXT_multisample": 2, - "free_ptr": 2, - "8": 15, - "R_Zero/R_Zero": 1, - "psubscribeCommand": 2, - "state": 104, - "i_rfString_Before": 5, - "__Pyx_PyUnicode_READY": 2, - "commit_tree_extended": 1, - "spopCommand": 1, - "*w_data_ptr": 1, - "HPE_INVALID_VERSION": 12, - "sig": 2, - "server.masterauth": 1, - "tp_as_sequence": 1, - "rfFReadLine_UTF32LE": 4, - "alloc_cpumask_var": 1, - "C4": 1, - "PFNWGLGENLOCKSOURCEDELAYI3DPROC": 2, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_SquaredEpsilonInsensitive": 1, - "tmp": 6, - "wglBindDisplayColorTableEXT": 1, - "PyString_Check": 2, - "keepstrP": 2, - "big": 14, - "linuxOvercommitMemoryValue": 2, - "REDIS_LIST_MAX_ZIPLIST_ENTRIES": 1, - "iGpuIndex": 2, - "an": 2, - "cmp": 9, - "cpumask_test_cpu": 1, - "num_pos_args": 1, - "yajl_free_error": 1, - "nid": 5, - "LOG_PID": 1, - "decrRefCount": 6, - "*message": 1, - "i_NPSELECT_RF_STRING_FWRITE1": 1, - "__Pyx_ErrFetch": 1, - "i_rfString_KeepOnly": 3, - "is_str": 1, - "PROXY_CONNECTION": 4, - "DeviceName": 1, - "WGL_I3D_swap_frame_lock": 2, - "*__pyx_k_tuple_17": 1, - "__pyx_args": 21, - "WGL_PBUFFER_HEIGHT_EXT": 1, - "<unistd.h>": 1, - "dictResize": 2, - "on_message_begin": 1, - "HTTP_OPTIONS": 1, - "sunionstoreCommand": 1, - "on_url": 1, - "__Pyx_c_eqf": 2, - "strings": 5, - "op": 8, - "HPBUFFEREXT": 6, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Huber_6__reduce__": 1, - "clineno": 1, - "nd": 1, - "__pyx_k__shuffle": 1, - "git_iterator_for_workdir_range": 2, - "ust": 7, - "PyDict_Size": 3, - "PFNWGLRELEASEPBUFFERDCEXTPROC": 2, - "*data": 12, - "__pyx_v_C": 1, - "yajl_handle": 10, - "addReplyMultiBulkLen": 1, - "sleep": 1, - "uv_process_t*": 3, - "GIT_SUBMODULE_IGNORE_ALL": 1, - "__Pyx_IterFinish": 1, - "*msg": 6, - "col": 9, - "e": 4, - "SET_ERRNO": 47, - "<signal.h>": 1, - "FLEX_ARRAY": 1, - "WGL_STEREO_EMITTER_DISABLE_3DL": 1, - "dst": 15, - "__pyx_clineno": 58, - "__wglewGetExtensionsStringEXT": 2, - "PyObject_HEAD": 3, - "redisLogRaw": 3, - "child_fd": 3, - "UV_CREATE_PIPE": 4, - "INVALID_CHUNK_SIZE": 1, - "PFNWGLENABLEFRAMELOCKI3DPROC": 2, - "__wglewReleaseImageBufferEventsI3D": 2, - "__builtin_expect": 2, - "PyNumber_InPlaceTrueDivide": 1, - "Py_TPFLAGS_HAVE_NEWBUFFER": 1, - "use_pager": 8, - "REF_TABLE_SIZE": 1, - "__init": 2, - "server.requirepass": 4, - "bufferSize": 6, - "i_rfString_Find": 5, - "WGL_DEPTH_BITS_ARB": 1, - "zmalloc_enable_thread_safeness": 1, - "pfd.fd": 1, - "has": 2, - "rfFReadLine_UTF16BE": 6, - "getsetCommand": 1, - "is_connect": 4, - "*pointer": 1, - "B1": 1, - "Py_False": 2, - "wglGetSwapIntervalEXT": 1, - "*__pyx_self": 1, - "int*": 22, - "WGL_TEXTURE_FORMAT_ARB": 1, - "git_pool_strndup": 1, - "cmd_gc": 1, - "RF_UTF32_LE": 3, - "__wglewIsEnabledFrameLockI3D": 2, - "__Pyx_c_sumf": 2, - "*desc": 1, - "#else": 94, - "__Pyx_PyInt_AsLong": 1, - "REDIS_MAX_LOGMSG_LEN": 1, - "WGL_AUX2_ARB": 1, - "wglSetDigitalVideoParametersI3D": 1, - "PFNWGLGETCONTEXTGPUIDAMDPROC": 2, - "done_alias": 4, - "cb.blockhtml": 6, - "cpu_hotplug.refcount": 3, - "usage": 2, - "zrangebyscoreCommand": 1, - "__wglewDXCloseDeviceNV": 2, - "cmd_clone": 1, - "WGL_NUMBER_UNDERLAYS_EXT": 1, - "act": 6, - "CB_message_complete": 1, - "__pyx_vtabstruct_7sklearn_5utils_13weight_vector_WeightVector": 3, - "__wglext_h_": 2, - "RF_HEXLE_UI": 8, - "counters.process_init": 1, - "yajl_status_client_canceled": 1, - "*new_entry": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_18EpsilonInsensitive_4dloss": 1, - "parNP": 6, - "rfUTF16_Decode": 5, - "server.aof_current_size*100/base": 1, - "dictSdsDestructor": 4, - "*__pyx_n_s__i": 1, - "xSrc": 1, - "*PGPU_DEVICE": 1, - "47": 1, - "dateptr": 2, - "dup": 15, - "rfFgetc_UTF8": 3, - "cmd_ls_tree": 1, - "array": 1, - "determine": 1, - "bgrewriteaofCommand": 1, - "options.stdio_count": 4, - "http_parser_parse_url": 2, - "i_SELECT_RF_STRING_AFTERV13": 1, - "else": 190, - "PyTuple_GET_SIZE": 14, - "__pyx_pw_7sklearn_12linear_model_8sgd_fast_12LossFunction_3dloss": 1, - "idle_thread_get": 1, - "<5)>": 1, - "ask": 3, - "llenCommand": 1, - "PFNWGLGETPIXELFORMATATTRIBIVEXTPROC": 2, - "__pyx_k__zeros": 1, - "**subject": 2, - "*l": 1, - "bSize*sizeof": 1, - "SA_RESETHAND": 1, - "/sizeof": 4, - "REDIS_AOF_ON": 2, - "dumpCommand": 1, - "i_FSEEK_CHECK": 14, - "INVALID_URL": 1, - "DWORD": 5, - "__pyx_v_p": 46, - "void*": 135, - "cmd_write_tree": 1, - "rfString_Init_fUTF16": 3, - "server.el": 7, - "signum": 4, - "__wglewGenlockSourceI3D": 2, - "git_hash_ctx": 7, - "RF_COMPILE_ERROR": 33, - "opts.flags": 8, - "cmd_mktree": 1, - "PyString_FromFormat": 1, - "fclose": 5, - "***tail": 1, - "*__pyx_ptype_7cpython_4type_type": 1, - "__wglewBlitContextFramebufferAMD": 2, - "endif": 6, - "WGL_DOUBLE_BUFFER_EXT": 1, - "*__pyx_vtabptr_7sklearn_5utils_11seq_dataset_SequentialDataset": 1, - "PyUnicode_AS_UNICODE": 1, - "__Pyx_RaiseTooManyValuesError": 1, - "*rev2": 1, - "variable": 1, - "server.hash_max_ziplist_value": 1, - "num*100/slots": 1, - "*fp": 3, - "rfUTILS_SwapEndianUI": 11, - "CE": 1, - "YA_MALLOC": 1, - "WGL_AUX3_ARB": 1, - "i_SELECT_RF_STRING_BEFOREV15": 1, - "cpu_hotplug_begin": 4, - "put_online_cpus": 2, - "c_ru.ru_stime.tv_sec": 1, - "*__pyx_ptype_5numpy_broadcast": 1, - "WGL_ALPHA_BITS_EXT": 1, - "float": 26, - "REDIS_MAX_CLIENTS": 1, - "DELETE": 2, - "__pyx_k__update": 1, - "WGL_EXT_pixel_format_packed_float": 2, - "handle_options": 2, - "HTTP_COPY": 1, - "message_complete": 7, - "MARK": 7, - "Allocation": 2, - "<String/rfc_stringx.h>": 1, - "cell_end": 6, - "existsCommand": 1, - "eofReached": 4, - "*pulCounterOutputVideo": 1, - "i_rfString_Init_nc": 3, - "arraysize": 1, - "macros": 1, - "server.set_max_intset_entries": 1, - "server.ops_sec_last_sample_ops": 3, - "WTERMSIG": 2, - "nodes": 10, - "KERN_INFO": 2, - "*16": 2, - "anetTcpServer": 1, - "REDIS_NOTUSED": 5, - "__wglewEnumerateVideoCaptureDevicesNV": 2, - "GIT_UNUSED": 1, - "commit_tree": 1, - "git_oid_cmp": 6, - "server.aof_selected_db": 1, - "lookup_tree": 1, - "decoration": 1, - "for_each_cpu": 1, - "SA_NODEFER": 1, - "server.rdb_compression": 1, - "wglGetSyncValuesOML": 1, - "WGL_TEXTURE_FLOAT_R_NV": 1, - "CMIT_FMT_ONELINE": 1, - "WGL_ACCUM_GREEN_BITS_ARB": 1, - "__pyx_t_5numpy_float_t": 1, - "rfString_Init_fUTF32": 3, - "cmd_apply": 1, - "graft": 10, - "*__pyx_t_4": 3, - "*subValues": 2, - "c2": 13, - "options.uid": 1, - "-": 1803, - "CYTHON_UNUSED": 14, - "entry": 17, - "db": 10, - "prepareForShutdown": 2, - "mi": 5, - "rfString_Init_cp": 3, - "new_file.size": 3, - "lru_count": 1, - "s_req_spaces_before_url": 5, - "mkd_compile": 2, - "ipc": 1, - "INVALID_HOST": 1, - "real": 2, - "yajl_state_start": 1, - "WGL_ARB_create_context": 2, - "old_file.flags": 2, - "discardCommand": 2, - "WGL_NUM_VIDEO_SLOTS_NV": 1, - "*new_parent": 2, - "v": 11, - "cmd_help": 1, - "func": 3, - "*cell_work": 1, - "WGLEW_3DFX_multisample": 1, - "*ref_name": 2, - "s_req_query_string_start": 8, - "*clientData": 1, - "save_our_env": 3, - "PyObject_GetBuffer": 1, - "PyBUF_ND": 2, - "PFNWGLDXCLOSEDEVICENVPROC": 2, - "i_SELECT_RF_STRING_BEFOREV": 1, - "*__pyx_v_info": 2, - "offsetof": 2, - "PFNWGLGENLOCKSAMPLERATEI3DPROC": 2, - "bytesWritten": 2, - "i_SELECT_RF_STRING_BETWEEN1": 1, - "npy_longlong": 2, - "**environ": 1, - "*swap": 1, - "read_sha1_file": 1, - "A6": 2, - "*read_commit_extra_header_lines": 1, - "__pyx_n_s__p": 6, - "ZMALLOC_LIB": 2, - "http_major": 11, - "__pyx_k__d": 1, - "HANDLE": 14, - "__Pyx_ReleaseBuffer": 2, - "*get_octopus_merge_bases": 1, - "HPE_INVALID_METHOD": 4, - "__wglewQueryCurrentContextNV": 2, - "WGL_ARB_extensions_string": 2, - "diff_delta__dup": 3, - "cpu_hotplug_done": 4, - "vkeys": 8, - "*uMaxPixelDelay": 1, - "__Pyx_GetItemInt_Tuple_Fast": 1, - "been": 1, - "cpumask": 7, - "<stdarg.h>": 1, - "*patch_mode": 1, - "GLEW_STATIC": 1, - "rb_intern": 15, - "ustime": 7, - "than": 5, - "UV_PROCESS_DETACHED": 2, - "target_msc": 3, - "cmd_tag": 1, - "hpVideoDevice": 1, - "__WGLEW_NV_render_texture_rectangle": 2, - "<assert.h>": 5, - "long": 105, - "cmd_config": 1, - "PFNWGLGETGAMMATABLEPARAMETERSI3DPROC": 2, - "cmd_push": 1, - "__wglewGetPbufferDCARB": 2, - "setup_git_directory": 1, - "jsonTextLen": 4, - "obuf_bytes": 3, - "*sp": 1, - "RUN_CLEAN_ON_EXIT": 1, - "unsigned": 140, - "__pyx_k__fit_intercept": 1, - "_ms_": 2, - "hlenCommand": 1, - "npy_uint64": 1, - "*old_entry": 1, - "PTR_ERR": 1, - "ptr": 18, - "server.syslog_enabled": 3, - "pack": 2, - "__Pyx_RaiseImportError": 1, - "*cause": 1, - "<linux/bug.h>": 1, - "server.maxidletime": 3, - "wglBeginFrameTrackingI3D": 1, - "__WGLEW_I3D_swap_frame_lock": 2, - "git_diff_list_free": 3, - "rfString_Deinit": 3, - "rb_rdiscount__get_flags": 3, - "WGLEW_NV_copy_image": 1, - "*__pyx_n_s__alpha": 1, - "__wglewGenlockSampleRateI3D": 2, - "utf16": 11, - "code=": 2, - "shared.emptybulk": 1, - "rfString_Append_fUTF8": 2, - "npy_cdouble": 2, - "__wglewReleaseVideoDeviceNV": 2, - "if": 1015, - "convert": 1, - "BITS_TO_LONGS": 1, - "pair": 4, - "WGL_LOSE_CONTEXT_ON_RESET_ARB": 1, - "S_ISGITLINK": 1, - "PyGILState_Ensure": 1, - "__pyx_k__H": 1, - "__Pyx_RaiseArgtupleInvalid": 7, - "WGL_NO_ACCELERATION_EXT": 1, - "*keepChars": 1, - "lremCommand": 1, - "*__pyx_n_s__xnnz": 1, - "otherwise": 1, - "///Internal": 1, - "b_index_": 6, - "PFNWGLGETPIXELFORMATATTRIBIVARBPROC": 2, - "git_cached_obj_incref": 3, - "rfString_StripEnd": 3, - "<keepLength;>": 1, - "**diff": 4, - "npy_float32": 1, - "i_NPSELECT_RF_STRING_BETWEEN": 1, - "HPE_INVALID_CHUNK_SIZE": 2, - "server.syslog_facility": 2, - "ssize_t": 1, - "temporary": 4, - "h_matching_proxy_connection": 3, - "due": 2, - "ob_refcnt": 1, - "parse_url_char": 5, - "watchdogScheduleSignal": 1, - "unsubscribeCommand": 2, - "WGL_NV_video_capture": 2, - "__pyx_k__xnnz": 1, - "clear_commit_marks_for_object_array": 1, - "__Pyx_c_abs": 3, - "WGL_ATI_render_texture_rectangle": 2, - "*a": 9, - "WGL_NV_vertex_array_range": 2, - "WGL_BIND_TO_TEXTURE_RECTANGLE_DEPTH_NV": 1, - "PyLong_AsSsize_t": 1, - "ER": 4, - "<linux/gfp.h>": 1, - "utf32": 10, - "ln": 8, - "UV__O_CLOEXEC": 1, - "PFNWGLDXLOCKOBJECTSNVPROC": 2, - "i_SELECT_RF_STRING_BEFORE": 1, - "npy_ulong": 1, - "PyDict_GetItem": 6, - "rfString_PruneEnd": 2, - "cmd.buf": 1, - "self_ru": 2, - "saveCommand": 1, - "hDC": 33, - "RF_UTF16_LE": 9, - "va_start": 3, - "TARGET_OS_IPHONE": 1, - "__wglewDXOpenDeviceNV": 2, - "*__pyx_kp_s_3": 1, - "__Pyx_GetItemInt_List_Fast": 1, - "unregister_shallow": 1, - "indexing": 1, - "slaves": 3, - "bpop.timeout": 2, - "at": 3, - "**argv": 6, - "uDelay": 2, - "*__pyx_n_s__eta": 1, - "file_size": 6, - "RF_HEXGE_C": 1, - "wglDXUnlockObjectsNV": 1, - "*__pyx_kwds": 9, - "PyLong_Type": 1, - "DL_IMPORT": 2, - "*get_shallow_commits": 1, - "__Pyx_PyInt_AsInt": 2, - "*ver_revision": 2, - "shared.nokeyerr": 1, - "server.slaves": 9, - "gettimeofday": 4, - "process": 19, - "PFNWGLENUMERATEVIDEODEVICESNVPROC": 2, - "__pyx_t_5numpy_complex_t": 1, - "performed": 1, - "PyBytes_FromStringAndSize": 1, - "i_SELECT_RF_STRING_AFTERV7": 1, - "PARSING_HEADER": 2, - "HPVIDEODEV*": 1, - "__Pyx_PyInt_AsShort": 1, - "WGL_ARB_pixel_format_float": 2, - "url_mark": 2, - "<linux/oom.h>": 1, - "<stdint.h>": 1, - "WGL_NV_video_output": 2, - "valid": 1, - "__WGLEW_ARB_create_context_profile": 2, - "*from": 1, - "__pyx_k__u": 1, - "TASK_UNINTERRUPTIBLE": 1, - "old_tree": 5, - "i_SOURCE_": 2, - "*__pyx_n_s__any": 1, - "All": 1, - "cache": 26, - "__STDC_VERSION__": 2, - "create": 2, - "timeval": 4, - "INVALID_STATUS": 1, - "__pyx_k__intercept": 1, - "WGL_3DFX_multisample": 2, - "mem_freed": 4, - "server.loading_start_time": 2, - "*key": 5, - "parent_offset": 1, - "pAddress": 2, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12SquaredHinge_6__reduce__": 1, - "CPU_STARTING_FROZEN": 1, - "<linux/stop_machine.h>": 1, - "WGLEW_OML_sync_control": 1, - "cmd_rev_parse": 1, - "i_rfString_StripStart": 3, - "s_body_identity": 3, - "PM_POST_HIBERNATION": 1, - "REDIS_BIO_AOF_FSYNC": 1, - "addReplyBulk": 1, - "uv_ok_": 1, - "exit_status": 3, - "hObjects": 2, - "__pyx_f_7sklearn_12linear_model_8sgd_fast_12LossFunction_dloss": 1, - "int32_t": 112, - "__wglewGetPixelFormatAttribfvEXT": 2, - "HTTP_CHECKOUT": 1, - "subP": 7, - "more": 2, - "open": 4, - "cmit_fmt": 3, - "*opts": 6, - "*__Pyx_GetItemInt_List_Fast": 1, - "__pyx_k__np": 1, - "characterLength": 16, - "http_parser_pause": 2, - "__wglewGetSyncValuesOML": 2, - "srcY0": 1, - "__pyx_v_flags": 1, - "uint32_t*": 34, - "cp": 12, - "k": 15, - "server.lua": 1, - "growth": 3, - "<sys/wait.h>": 2, - "*__pyx_v_loss": 1, - "*ret": 20, - "__pyx_t_7sklearn_12linear_model_8sgd_fast_INTEGER": 3, - "commit_pager_choice": 4, - "__pyx_t_4": 27, - "len": 30, - "WGL_FULL_ACCELERATION_ARB": 1, - "s_req_schema_slash": 6, - "dictSdsCaseHash": 2, - "INVALID_CONTENT_LENGTH": 1, - "check_commit": 2, - "PFNWGLGETPIXELFORMATATTRIBFVARBPROC": 2, - "wglGetExtensionsStringARB": 1, - "alloc_commit_node": 1, - "needs": 1, - "cpu_possible_bits": 6, - "updateDictResizePolicy": 2, - "SPAWN_WAIT_EXEC": 5, - "uv__process_child_init": 2, - "PFNWGLENUMGPUSFROMAFFINITYDCNVPROC": 2, - "B7": 1, - "wglext.h": 1, - "i_NPSELECT_RF_STRING_REPLACE": 1, - "loss": 1, - "object_array": 2, - "*__pyx_refnanny": 1, - "rfString_Create_f": 2, - "repo": 23, - "WGLEW_EXT_create_context_es2_profile": 1, - "rlim_t": 3, - "<sys/stat.h>": 1, - "wglGetGenlockSampleRateI3D": 1, - "i_SELECT_RF_STRING_AFTER3": 1, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Log": 5, - "__Pyx_PyInt_AsLongLong": 1, - "i_SELECT_RF_STRING_CREATE0": 1, - "PFNWGLMAKECONTEXTCURRENTARBPROC": 2, - "dloss": 1, - "ERROR_INVALID_PIXEL_TYPE_EXT": 1, - "i_rfLMSX_WRAP14": 2, - "noid": 4, - "h_content_length": 5, - "take_cpu_down_param": 3, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_3Log_2dloss": 1, - "cmd_patch_id": 1, - "*1024*256": 1, - "__wglewDXObjectAccessNV": 2, - "__wglewQueryFrameLockMasterI3D": 2, - "get_online_cpus": 2, - "loops": 2, - "__pyx_L0": 18, - "WGL_ALPHA_SHIFT_ARB": 1, - "RUN_SETUP_GENTLY": 16, - "object.sha1": 8, - "cmd_count_objects": 1, - "check_pager_config": 3, - "http_message_needs_eof": 4, - "REDIS_WARNING": 19, - "http_minor": 11, - "lookup_object": 2, - "*pfValues": 2, - "sd_version": 1, - "arch_disable_nonboot_cpus_end": 2, - "sstr2": 2, - "sdscatrepr": 1, - "i_NPSELECT_RF_STRING_AFTER0": 1, - "*r": 7, - "i_SELECT_RF_STRING_REPLACE": 1, - "node_zonelists": 1, - "mutex_unlock": 6, - "RF_String*sub": 2, - "server.ops_sec_idx": 4, - "__pyx_t_double_complex_from_parts": 1, - "are": 6, - "typename": 2, - ".hard_limit_bytes": 3, - "idletime": 2, - "message": 3, - "RF_SELECT_FUNC": 10, - "i_SELECT_RF_STRING_REPLACE2": 1, - ".expires": 8, - "PFNWGLQUERYSWAPGROUPNVPROC": 2, - "RF_SELECT_FUNC_IF_NARGGT": 10, - "i_SELECT_RF_STRING_BEFOREV9": 1, - "server.syslog_ident": 2, - "incrCommand": 1, - "GIT_DIFFCAPS_TRUST_CTIME": 2, - "**stack": 1, - "cmd_rm": 1, - "header_flag": 3, - "clear_tasks_mm_cpumask": 1, - "uname": 1, - "wglQuerySwapGroupNV": 1, - "__pyx_kwds": 15, - "fmt": 4, - "uType": 1, - "WGL_SWAP_UNDEFINED_EXT": 1, - "cmd_unpack_file": 1, - "yajl_status": 4, - "*feature_indices": 2, - "*__pyx_n_s__epoch": 1, - "__pyx_doc_7sklearn_12linear_model_8sgd_fast_12LossFunction_loss": 1, - "error": 96, - "server.unixtime/REDIS_LRU_CLOCK_RESOLUTION": 1, - "setgid": 1, - "__pyx_k__plain_sgd": 1, - "_MSC_VER": 5, - "struct": 359, - "WGL_ACCUM_ALPHA_BITS_EXT": 1, - "PyBUF_WRITABLE": 3, - "PyLong_AsUnsignedLongMask": 1, - "single_parent": 1, - "wglCreatePbufferEXT": 1, - "unwatchCommand": 1, - "lstr": 6, - "pptr": 5, - "rfUTF8_IsContinuationByte": 12, - "*__pyx_n_s__intercept_decay": 1, - "get_sha1_hex": 2, - "cpu_hotplug": 1, - "shared.punsubscribebulk": 1, - "bitopCommand": 1, - "lastsaveCommand": 1, - "brpoplpushCommand": 1, - "RF_HEXEQ_C": 9, - "WGL_MAX_PBUFFER_PIXELS_EXT": 1, - "date_mode": 2, - "GL_RGBA_FLOAT_MODE_ATI": 1, - "__Pyx_Raise": 4, - "__cpu_notify": 6, - "Init_rdiscount": 1, - "dictGenCaseHashFunction": 1, - "xF": 5, - "SOCK_STREAM": 2, - "argument": 1, - "__pyx_k__count": 1, - "*new": 1, - "h_connection": 6, - "REDIS_NOTICE": 13, - "cmd_cat_file": 1, - "git_diff_list": 17, - "get_sha1": 1, - "cmd_update_index": 1, - "h_matching_upgrade": 3, - "moveCommand": 1, - "UF_FRAGMENT": 2, - "INVALID_INTERNAL_STATE": 1, - "gid": 2, - "create_object": 2, - "///closing": 1, - "GL_COLOR_CLEAR_UNCLAMPED_VALUE_ATI": 1, - "yajl_parser_config": 1, - "function": 6, - "goto": 159, - "*title": 1, - "shared.loadingerr": 2, - "|": 132, - "__Pyx_PyBytes_FromUString": 1, - "Py_HUGE_VAL": 2, - "PM_SUSPEND_PREPARE": 1, - "EBUSY": 3, - "termination": 3, - "operations": 1, - "09": 1, - "*util": 1, - "&&": 248, - "bib": 3, - "free_commit_list": 1, - "__Pyx_TypeInfo_nn___pyx_t_7sklearn_12linear_model_8sgd_fast_DOUBLE": 1, - "RF_MODULE_STRINGS//": 1, - "*ob": 3, - "settings": 6, - "server.loading_total_bytes": 3, - "case": 273, - "*onto": 1, - "GIT_IDXENTRY_SKIP_WORKTREE": 1, - "s_headers_almost_done": 4, - "server.stat_numconnections": 2, - "replicationCron": 1, - "__wglewReleaseVideoCaptureDeviceNV": 2, - "GPU_DEVICE": 1, - "itemsize": 1, - "free_obj": 4, - "*X_indices_ptr": 1, - "*__pyx_ptype_5numpy_dtype": 1, - "execv_dashed_external": 2, - "REDIS_SHUTDOWN_NOSAVE": 1, - "server.aof_fsync": 1, - "F_TRAILING": 3, - "PFNWGLISENABLEDFRAMELOCKI3DPROC": 2, - "dstX": 1, - "wglGetCurrentAssociatedContextAMD": 1, - "*__pyx_n_s__penalty_type": 1, - "PFNWGLQUERYPBUFFEREXTPROC": 2, - "rb_rdiscount_to_html": 2, - "processInputBuffer": 1, - "isinherited": 1, - "SHA1_Final": 3, - "sdiffCommand": 1, - "PFNWGLENDFRAMETRACKINGI3DPROC": 2, - "fd": 34, - "cmd_describe": 1, - "deltas.contents": 1, - "sdscatprintf": 24, - "*eventLoop": 2, - "WGL_PBUFFER_HEIGHT_ARB": 1, - "WGL_IMAGE_BUFFER_MIN_ACCESS_I3D": 1, - "__pyx_k__sumloss": 1, - "PyBUF_FULL": 1, - "*encodingP": 1, - "PyArrayObject": 8, - "memcmp": 6, - "__int64": 3, - "that": 9, - "inside": 2, - "setnxCommand": 1, - "wglEnableFrameLockI3D": 1, - "WGLEW_EXT_extensions_string": 1, - "__Pyx_TypeTest": 1, - "PyCFunction_GET_FUNCTION": 3, - "__Pyx_GetBuffer": 2, - "subscribeCommand": 2, - "WGL_TYPE_RGBA_FLOAT_ATI": 1, - "rfString_Strip": 2, - "*__pyx_kp_u_10": 1, - "*const": 4, - "pbytePos": 2, - "zrevrangeCommand": 1, - "WGL_VIDEO_OUT_COLOR_AND_ALPHA_NV": 1, - "pFlag": 3, - "defined": 42, - "ltrimCommand": 1, - "INVALID_PORT": 1, - "cmd_upload_archive": 1, - "*blob_type": 2, - "shared.err": 1, - "__wglewBindVideoImageNV": 2, - "PFNWGLDXOPENDEVICENVPROC": 2, - "i_rfString_Fwrite": 5, - "WGL_TEXTURE_CUBE_MAP_NEGATIVE_X_ARB": 1, - "*retval": 1, - "MKD_NOPANTS": 1, - "__wglewGetExtensionsStringARB": 2, - "RF_HEXGE_UI": 6, - "*__Pyx_Import": 1, - "dstX0": 1, - "git__free": 15, - "WGL_PBUFFER_LARGEST_EXT": 1, - "i_SELECT_RF_STRING_FWRITE1": 1, - "bestval": 5, - "REDIS_BLOCKED": 2, - "WGL_I3D_genlock": 2, - "date": 5, - "cpu_possible_mask": 2, - "cpu_maps_update_begin": 9, - "server.master": 3, - "server.zset_max_ziplist_entries": 1, - "REDIS_OPS_SEC_SAMPLES": 3, - "WGL_NV_copy_image": 2, - "__pyx_t_5numpy_intp_t": 1, - "i_STRING1_": 2, - "__Pyx_GIVEREF": 9, - "wglGetDigitalVideoParametersI3D": 1, - "*scan": 2, - "*server.dbnum": 1, - "setCommand": 1, - "REPORT": 2, - "commit": 59, - "parent": 7, - "__wglewGetGammaTableI3D": 2, - "n_samples": 1, - "PFNWGLGENLOCKSOURCEI3DPROC": 2, - "CMIT_FMT_MEDIUM": 2, - "ENOENT": 3, - "__Pyx_SET_CIMAG": 2, - "git_version_string": 1, - "yajl_handle_t": 1, - "REDIS_MAXMEMORY_ALLKEYS_RANDOM": 2, - "oid": 17, - "DIFF_NEW_PREFIX_DEFAULT": 1, - "subdir": 3, - "WGL_PIXEL_TYPE_EXT": 1, - "stateStack": 3, - "CONFIG_MEMORY_HOTPLUG": 2, - "*1024*8": 1, - "git_iterator_advance_into_directory": 1, - "wglMakeContextCurrentARB": 1, - "git_buf_detach": 1, - "dictSdsKeyCaseCompare": 2, - "delCommand": 1, - "CB_headers_complete": 1, - "*__pyx_builtin_NotImplementedError": 1, - "PyInt_FromString": 1, - "WGL_BIND_TO_TEXTURE_RECTANGLE_RGBA_NV": 1, - "FILE*": 64, - "D": 8, - "cmd_fetch": 1, - "*result": 1, - "http_strerror_tab": 7, - "<linux/unistd.h>": 1, - "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_EpsilonInsensitive": 2, - "rfString_ToUTF16": 4, - "tempBuff": 6, - "i_rfLMSX_WRAP7": 2, - "__pyx_t_5numpy_int8_t": 1, - "i_WHENCE_": 4, - "*__pyx_v_dataset": 1, - "file": 6, - "uv__nonblock": 5, - "INVALID_VERSION": 1, - "wscale": 1, - "__pyx_k__sample_weight": 1, - "N_": 1, - "rstatus": 1, - "to": 37, - "i_SELECT_RF_STRING_BEFOREV10": 1, - "evalCommand": 1, - "RE_UTF8_INVALID_SEQUENCE_END": 6, - "PyCodeObject": 1, - "openlog": 1, - "server.unixsocketperm": 2, - "listNode": 4, - "GLEWAPI": 6, - "shareHandle": 1, - "PFNWGLGETFRAMEUSAGEI3DPROC": 2, - "WGL_DOUBLE_BUFFER_ARB": 1, - "Py_PYTHON_H": 1, - "PyList_CheckExact": 1, - "ev_child_stop": 2, - "__pyx_k__learning_rate": 1, - "createSharedObjects": 2, - "i_rfPopen": 2, - "Attempted": 1, - "wglDisableGenlockI3D": 1, - "WGL_ALPHA_BITS_ARB": 1, - "EXPORT_SYMBOL_GPL": 4, - "cpu_hotplug_disabled": 7, - "scriptingInit": 1, - "xD800": 8, - "fork": 2, - "out": 18, - "<rf_setup.h>": 2, - "__Pyx_Print": 1, - "method_strings": 2, - "RSTRING_LEN": 2, - "server.cluster.myself": 1, - "shared.pong": 2, - "echoCommand": 2, - "PyGILState_STATE": 1, - "USE_PAGER": 3, - "__pyx_pyargnames": 3, - "WGL_MAX_PBUFFER_HEIGHT_EXT": 1, - "xFFFE0000": 1, - "HAVE_BACKTRACE": 1, - "wglReleaseVideoDeviceNV": 1, - "wglDXObjectAccessNV": 1, - "cmd_grep": 1, - "param": 2, - "changes": 2, - "found": 20, - "CMIT_FMT_UNSPECIFIED": 1, - "*index": 2, - "RF_OPTION_DEFAULT_ARGUMENTS": 24, - "rfString_ToUTF32": 4, - "*__pyx_n_s____main__": 1, - "uses": 1, - "slaveseldb": 1, - "*privdata": 8, - "PyBytes_Concat": 1, - "__pyx_f_7sklearn_12linear_model_8sgd_fast_l1penalty": 1, - "(": 6213, - "depth": 2, - "WGL_SWAP_EXCHANGE_EXT": 1, - "**msg_p": 2, - "md": 18, - "col_data": 2, - "__wglewCreateBufferRegionARB": 2, - "new_file.path": 6, - "*buf": 10, - "PyLong_AsLong": 1, - "strncmp": 1, - "REDIS_AOF_REWRITE_PERC": 1, - "wglFreeMemoryNV": 1, - "entries": 2, - "Py_UNICODE*": 1, - "i_NPSELECT_RF_STRING_BEFORE1": 1, - "WGL_TYPE_RGBA_ARB": 1, - "old_uf": 4, - "classes": 1, - "xFEFF": 1, - "surrogate": 4, - "*bufferSize": 1, - "D0": 1, - "*tail": 2, - "<Preprocessor/rf_xmacro_argcount.h>": 1, - "HPE_INVALID_URL": 4, - "PFNWGLALLOCATEMEMORYNVPROC": 2, - "WGL_ATI_pixel_format_float": 2, - "aeMain": 1, - "hDstRC": 1, - "opts.new_prefix": 4, - "interactive_add": 1, - "WGL_SAMPLES_EXT": 1, - "*__pyx_n_s__threshold": 1, - "curtag": 8, - "ENOMEM": 4, - "HPE_##n": 1, - "cmd_fmt_merge_msg": 1, - "*diff_prefix_from_pathspec": 1, - "pfd.events": 1, - "prefix.ptr": 2, - "*__pyx_n_s__loss": 1, - "peak_hmem": 3, - "A1": 1, - "i_OFFSET_": 4, - "<sys/time.h>": 1, - "priority": 1, - "PFNWGLENABLEGENLOCKI3DPROC": 2, - "strerror": 4, - "macro": 2, - "server.aof_current_size": 2, - "dup2": 4, - "_GPU_DEVICE": 1, - "ob_type": 7, - "RF_STRING_INDEX_OUT_OF_BOUNDS": 2, - "sep": 3, - "CPU_STARTING": 1, - "UINT": 30, - "*piFormats": 2, - "hAffinityDC": 1, - "__pyx_k__loss": 1, - "_Complex_I": 3, - "_Complex": 2, - "i_rfString_CreateLocal": 2, - "__Pyx_GetBufferAndValidate": 1, - "environment": 3, - "*__pyx_n_s__u": 1, - "git_delta_t": 5, - "*/": 1, - "*__pyx_n_s__isinf": 1, - "HTTP_NOTIFY": 1, - "CPU_BITS_ALL": 2, - "encoded": 2, - "server.aof_fd": 4, - "clientsCron": 2, - "srcY": 1, - "StringX": 2, - "PyInt_FromLong": 3, - "__wglewGetGenlockSourceI3D": 2, - "cmd_column": 1, - "PyNumber_Divide": 1, - "hand": 28, - "shallow_flag": 1, - "opts.old_prefix": 4, - "HPE_INVALID_CONSTANT": 3, - "s_start_req_or_res": 4, - "atoi": 3, - "tolower": 2, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_SquaredHinge": 6, - "*__pyx_k_tuple_7": 1, - "dwSize": 1, - "cpu_bit_bitmap": 2, - "rfLMS_Push": 4, - "sdsfree": 2, - "Rebuild": 1, - "i_LIMSELECT_RF_STRING_BEFOREV": 1, - "memset": 4, - "height": 3, - "lol": 3, - "server.aof_rewrite_base_size": 4, - "WGL_TEXTURE_TARGET_ARB": 1, - "wglCreateAssociatedContextAttribsAMD": 1, - "dstY1": 1, - "git__prefixcmp": 2, - "new_entry": 5, - "IS_URL_CHAR": 6, - "s_res_first_status_code": 3, - "WGL_TEXTURE_FLOAT_RGB_NV": 1, - "WGLEW_EXT_swap_control": 1, - "PyString_FromStringAndSize": 1, - "__int16": 2, - "wglEnumGpuDevicesNV": 1, - "WGL_MIPMAP_TEXTURE_ARB": 1, - "PFNWGLDELETEASSOCIATEDCONTEXTAMDPROC": 2, - "st": 2, - "cmd_checkout": 1, - "<=thisstr->": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Hinge": 1, - "__pyx_k__C": 1, - "hcpu": 10, - "COVERAGE_TEST": 1, - "obj": 48, - "||": 141, - "set_cpu_online": 1, - "testity": 2, - ".blocking_keys": 1, - "wglJoinSwapGroupNV": 1, - "next": 8, - "__WGLEW_EXT_pixel_format": 2, - "rfString_Between": 3, - "i_SELECT_RF_STRING_CREATE_NC1": 1, - "rfPclose": 1, - "#ifdef": 64, - "redisGitSHA1": 3, - "uv__process_close_stream": 2, - "git_usage_string": 2, - "signal_pipe": 7, - "paused": 3, - "all": 2, - "ffff": 4, - "rfUTF16_Decode_swap": 5, - "ev_child_start": 1, - "FLOAT": 4, - "UV_PROCESS_SETUID": 2, - "specific": 1, - "9": 1, - "server.multiCommand": 1, - "INVALID_QUERY_STRING": 1, - "_PyUnicode_Ready": 1, - "__FILE__": 4, - "**orig_argv": 1, - "Does": 1, - "*__pyx_builtin_ValueError": 1, - "li": 6, - "__pyx_v_self": 15, - "WGL_STEREO_POLARITY_INVERT_3DL": 1, - "HTTP_HEAD": 2, - "__int32": 2, - "new_file.mode": 4, - "__Pyx_c_neg": 2, - "__pyx_k__n_features": 1, - "endian": 20, - "server.aof_no_fsync_on_rewrite": 1, - "C5": 1, - "PFNWGLGETSWAPINTERVALEXTPROC": 2, - "__wglewIsEnabledGenlockI3D": 2, - "yajl_parse_complete": 1, - "STDIN_FILENO": 1, - "shared.crlf": 2, - "UV_PROCESS_WINDOWS_VERBATIM_ARGUMENTS": 1, - "wglQueryVideoCaptureDeviceNV": 1, - "RAW_NOTIFIER_HEAD": 1, - "COPY": 2, - "MS_WINDOWS": 2, - "RF_STRING_ITERATEB_START": 2, - "nitem": 32, - "__Pyx_c_absf": 3, - "WGL_ACCUM_RED_BITS_EXT": 1, - "int32_t*": 1, - "cmd_mktag": 1, - "refs": 2, - "self_ru.ru_utime.tv_sec": 1, - "http_parser_settings": 5, - "wglEndFrameTrackingI3D": 1, - "__wglewSwapIntervalEXT": 2, - "source": 8, - "hash": 12, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_SquaredLoss": 1, - "strides": 1, - "s_req_fragment_start": 7, - "__wglewEndFrameTrackingI3D": 2, - "*dict": 5, - "__Pyx_BufFmt_Context": 1, - "hDrawDC": 2, - "temp": 11, - "*__pyx_k_tuple_18": 1, - "__pyx_k__p": 1, - "PyBytes_Repr": 1, - "sdsnew": 27, - "server.unblocked_clients": 4, - "cmd_unpack_objects": 1, - "FinishContext": 1, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Huber": 6, - "*col_data": 1, - "dictSetHashFunctionSeed": 1, - "clusterNodesDictType": 1, - "hashDictType": 1, - "*dup": 1, - "hShareContext": 2, - "old_entry": 5, - "RFS_": 8, - "fj": 1, - "R_Nan": 2, - "header_state": 42, - "__Pyx_c_quotf": 2, - "RF_String": 27, - "maxfiles": 6, - "WGL_GENLOCK_SOURCE_EDGE_RISING_I3D": 1, - "__cplusplus": 18, - "*git_cache_get": 1, - "__pyx_k__numpy": 1, - "threshold": 2, - "shared.integers": 2, - "phDeviceList": 2, - "WGL_I3D_swap_frame_usage": 2, - "WGL_CONTEXT_MAJOR_VERSION_ARB": 1, - "*__pyx_n_s__learning_rate": 1, - "pragma": 1, - "__Pyx_c_is_zero": 3, - "notifier_to_errno": 1, - "*__pyx_kp_u_16": 1, - "poll": 1, - "__MINGW32__": 1, - "cabsf": 1, - "f": 184, - "WGLEW_NV_render_texture_rectangle": 1, - "parse_signed_commit": 1, - "new_packmode": 1, - "<string.h>": 4, - "type": 36, - "PyLong_FromSsize_t": 1, - "__wglewGetPixelFormatAttribfvARB": 2, - "lookup_commit_graft": 1, - "exist": 2, - "result": 48, - "RF_LF": 10, - "PFNWGLQUERYPBUFFERARBPROC": 2, - "h_matching_connection_keep_alive": 3, - "MKD_TABSTOP": 1, - "sdsavail": 1, - "__wglewGetVideoInfoNV": 2, - "PFNWGLBINDVIDEOIMAGENVPROC": 2, - "WGL_CONTEXT_FORWARD_COMPATIBLE_BIT_ARB": 1, - "diff_strdup_prefix": 2, - "format": 4, - "aeCreateFileEvent": 2, - "B2": 1, - "__WGLEW_I3D_genlock": 2, - "__pyx_module_is_main_sklearn__linear_model__sgd_fast": 1, - "PFNWGLGETGENLOCKSOURCEEDGEI3DPROC": 2, - "__wglewCreatePbufferARB": 2, - "__pyx_k__nonzero": 1, - "MASK_DECLARE_4": 3, - "rcu_read_unlock": 1, - "EV_CHILD": 1, - "PFNWGLQUERYGENLOCKMAXSOURCEDELAYI3DPROC": 2, - "accomplish": 1, - "hReadDC": 2, - "xFF": 1, - "SOCK_CLOEXEC": 1, - "PFNWGLQUERYFRAMECOUNTNVPROC": 2, - "__wglewReleasePbufferDCEXT": 2, - "CYTHON_PEP393_ENABLED": 2, - "const": 357, - "tokensN": 2, - "server.loading": 4, - "querybuf_size": 3, - "see": 2, - "*signature": 1, - "__Pyx_PyIdentifier_FromString": 3, - "*__pyx_n_s__NotImplementedError": 1, - "raw_notifier_chain_register": 1, - "WGLEW_NV_swap_group": 1, - "__pyx_v_power_t": 1, - "__WGLEW_I3D_gamma": 2, - "WGLEW_ARB_pbuffer": 1, - "finding": 1, - "ERROR_INVALID_PIXEL_TYPE_ARB": 1, - "WGL_GAMMA_TABLE_SIZE_I3D": 1, - "S_ISLNK": 2, - "nMaxFormats": 2, - "eof": 53, - "NODE_DATA": 1, - "MOVE": 2, - "__WGLEW_EXT_depth_float": 2, - "48": 1, - "__pyx_k__sys": 1, - "*__pyx_n_s__isnan": 1, - "rfString_Equal": 4, - "block_lines": 3, - "start_of_line": 2, - "act.sa_sigaction": 1, - "l1": 4, - "F_SKIPBODY": 4, - "__wglewWaitForMscOML": 2, - "pathspec.count": 2, - "#ifndef": 84, - "i_SELECT_RF_STRING_AFTERV14": 1, - "cpu_active_bits": 4, - "WGL_SHARE_DEPTH_EXT": 1, - "PYREX_WITHOUT_ASSERTIONS": 1, - "npy_cfloat": 1, - "*m": 1, - "RF_String*": 222, - "cpow": 1, - "__cpu_die": 1, - "sigsegvHandler": 1, - "WGL_NV_gpu_affinity": 2, - "__wglewMakeContextCurrentEXT": 2, - "diff_delta__cmp": 3, - "__pyx_t_5numpy_int16_t": 1, - "*check_commit": 1, - "git_cache_init": 1, - "OBJ_COMMIT": 5, - "*src": 3, - "Little": 1, - "SIGFPE": 1, - "*cmd": 5, - "filter": 1, - "server.assert_failed": 1, - "psetexCommand": 1, - "ignore_dups": 2, - "__Pyx_GOTREF": 24, - "lookup_commit_reference_gently": 1, - "CF": 1, - "__wglewQueryMaxSwapGroupsNV": 2, - "PyLong_Check": 1, - "bogus": 1, - "i_SELECT_RF_STRING_BEFOREV16": 1, - "git_hash_vec": 1, - "pBytePos": 15, - "adjustOpenFilesLimit": 2, - "PyNumber_TrueDivide": 1, - "anetUnixServer": 1, - "iterations": 4, - "propagateExpire": 2, - "__wglewQueryPbufferEXT": 2, - "PyErr_Warn": 1, - "__Pyx_PyNumber_Divide": 2, - "wglGetGenlockSourceEdgeI3D": 1, - "cpu_present": 1, - "pttlCommand": 1, - "__WGLEW_NV_render_depth_texture": 2, - "yajl_status_error": 1, - "i_AFTERSTR_": 8, - "wglCreateContextAttribsARB": 1, - "__GNUC_MINOR__": 2, - "PyBUF_INDIRECT": 2, - "git_startup_info": 2, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Hinge": 6, - "parse_htmlblock": 1, - "EINTR": 1, - "i_MODE_": 2, - "any": 3, - "__pyx_t_5numpy_double_t": 1, - "frozen_cpus": 9, - "could": 2, - "REDIS_VERBOSE": 3, - "ttlCommand": 1, - "*delta": 6, - "PyObject_GetItem": 1, - "sstr": 39, - "WGL_TEXTURE_CUBE_MAP_ARB": 1, - "rfFgetc_UTF16BE": 4, - "stacklevel": 1, - "REDIS_SET_MAX_INTSET_ENTRIES": 1, - "punsubscribeCommand": 2, - "xA": 1, - "wglDXCloseDeviceNV": 1, - "WGL_AUX4_ARB": 1, - "c3": 9, - "child_watcher.data": 1, - "PyFloat_FromDouble": 9, - "i_rfString_Between": 4, - ".": 1, - "HTTP_UNSUBSCRIBE": 1, - "*ptr": 1, - "i_WRITE_CHECK": 1, - "WGL_MAX_PBUFFER_PIXELS_ARB": 1, - "*__pyx_kp_u_8": 1, - "wglDestroyPbufferEXT": 1, - "*tokensN": 1, - "firstkey": 1, - "WGL_NUMBER_PIXEL_FORMATS_ARB": 1, - "git_pool_strdup": 3, - "mask": 1, - "rfFback_UTF32BE": 2, - "w": 6, - "shared.czero": 1, - "syslogLevelMap": 2, - "incrbyCommand": 1, - "*__Pyx_RefNannyImportAPI": 1, - "WGL_FRONT_COLOR_BUFFER_BIT_ARB": 1, - "__pyx_pf_5numpy_7ndarray___getbuffer__": 1, - "cmd_diff": 1, - "diff_path_matches_pathspec": 3, - "parse_blob_buffer": 2, - "uf": 14, - "xDFFF": 8, - "//invalid": 1, - "srcX0": 1, - "HTTP_PURGE": 1, - "zonelists_mutex": 2, - "HTTP_REQUEST": 7, - "__pyx_k__range": 1, - "shared.emptymultibulk": 1, - "PFNWGLENUMERATEVIDEOCAPTUREDEVICESNVPROC": 2, - "CYTHON_COMPILING_IN_PYPY": 3, - "__pyx_vtab": 2, - "data.fd": 1, - "CB_message_begin": 1, - "i_SELECT_RF_STRING_BETWEEN2": 1, - "git_oid_cpy": 5, - "dstCtx": 1, - "BUFFER_BLOCK": 5, - "sremCommand": 1, - "PyCodeObject*": 2, - "p_fnmatch": 1, - "__Pyx_XCLEAR": 1, - "A7": 2, - "yajl_parse": 2, - "*commandTable": 1, - "socketpair": 2, - "PFNWGLCREATEASSOCIATEDCONTEXTAMDPROC": 2, - "REDIS_LOG_RAW": 2, - "__Pyx_Owned_Py_None": 1, - "pager_command_config": 2, - "calling": 4, - "WGL_GREEN_BITS_ARB": 1, - "vec": 2, - "clientCommand": 1, - "PFNWGLQUERYFRAMETRACKINGI3DPROC": 2, - "i_SELECT_RF_STRING_CREATE": 1, - "fgets": 1, - "REDIS_HT_MINFILL": 1, - "<rf_io.h>": 1, - "i_rfString_Equal": 3, - "of": 44, - "__Pyx_ArgTypeTest": 1, - "assumed": 1, - "header_field": 5, - "server.slowlog_max_len": 1, - "*settings": 2, - "WGL_SWAP_COPY_EXT": 1, - "__wglewGetSwapIntervalEXT": 2, - "fstat": 1, - "*lookup_commit_reference_by_name": 2, - "sum": 3, - "getCommand": 1, - "uv__set_sys_error": 2, - "pathspec.length": 1, - "i_SELECT_RF_STRING_REMOVE0": 1, - "rfFseek": 2, - "[": 597, - "init_cpu_possible": 1, - "cpu_notify_nofail": 4, - "keys": 4, - "REDIS_CLIENT_LIMIT_CLASS_PUBSUB": 3, - "*context": 1, - "__wglewSetDigitalVideoParametersI3D": 2, - "decrCommand": 1, - "have": 2, - "c_line": 1, - "s1": 6, - "http_errno_name": 1, - "ULLONG_MAX": 10, - "keys_freed": 3, - "LOG_NOTICE": 1, - "use_fd": 7, - "SEARCH": 3, - "WGL_GREEN_SHIFT_EXT": 1, - "needed": 10, - "typedef": 189, - "*__Pyx_RefNanny": 1, - "yajl_alloc_funcs": 3, - "patch": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_18EpsilonInsensitive_6__reduce__": 1, - "__pyx_obj_7sklearn_5utils_11seq_dataset_ArrayDataset": 2, - "tag": 1, - "equal": 1, - "rfUTF16_Encode": 1, - "WIFEXITED": 1, - "PATCH": 2, - "__pyx_k__I": 1, - "Py_XINCREF": 1, - "npy_ulonglong": 2, - "s_res_first_http_major": 3, - "uv__handle_stop": 1, - "compile": 1, - "__pyx_t_5numpy_cfloat_t": 1, - "CONFIG_INIT_ALL_POSSIBLE": 1, - "T_STRING": 2, - "GIT_DIFF_FILE_VALID_OID": 4, - "git_cached_obj": 5, - "numberP": 1, - "name.sysname": 1, - "shared.rpop": 1, - "code_line": 4, - "PyLong_FromSize_t": 1, - "WGL_GENERIC_ACCELERATION_ARB": 1, - "WGLEW_NV_float_buffer": 1, - "WGL_NV_float_buffer": 2, - "__Pyx_PyIndex_Check": 3, - "rfUTF32_Length": 1, - "PFNWGLRELEASEVIDEOIMAGENVPROC": 2, - "__pyx_k__t_start": 1, - "pair.": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Hinge_6__reduce__": 1, - "Py_buffer*": 2, - "HTTP_PATCH": 1, - "cpu_chain": 4, - "yajl_lex_alloc": 1, - "__pyx_obj_7sklearn_5utils_11seq_dataset_CSRDataset": 2, - "*b": 6, - "cmd_merge_file": 1, - "__pyx_k__Zf": 1, - "ignore_prefix": 6, - "validity": 2, - "sdiffstoreCommand": 1, - "options.gid": 1, - "i_rfLMSX_WRAP2": 4, - "after": 6, - "lo": 6, - "typegroup": 1, - "cpumask_var_t": 1, - "bestkey": 9, - "__WGLEW_NV_copy_image": 2, - "PySet_Type": 2, - "under_end": 1, - "shared.ok": 3, - "wglSwapBuffersMscOML": 1, - "pUsage": 1, - "ref": 1, - "*__pyx_n_s__fit_intercept": 1, - "__wglewGetCurrentReadDCEXT": 2, - "new_count": 1, - "*__pyx_kp_s_4": 1, - "GIT_DELTA_UNMODIFIED": 11, - "s_res_status_code": 3, - "addReplyError": 6, - "*head": 1, - "HTTP_ERRNO_GEN": 3, - "__pyx_pf_7sklearn_12linear_model_8sgd_fast_12LossFunction_2dloss": 1, - "shared.roslaveerr": 2, - "http_should_keep_alive": 2, - "GIT_IDXENTRY_INTENT_TO_ADD": 1, - "*nb": 3, - "i_SELECT_RF_STRING_AFTERV8": 1, - "cmd_whatchanged": 1, - "createPidFile": 2, - "REDIS_MAXMEMORY_ALLKEYS_LRU": 2, - "dictRehashMilliseconds": 2, - "USHORT*": 2, - "sizeof": 71, - "cell": 4, - "hello": 1, - "*configfile": 1, - "WGLEW_NV_video_capture": 1, - "i_REPSTR_": 16, - "__Pyx_CLEAR": 1, - "WGL_RED_SHIFT_EXT": 1, - "<linux/smp.h>": 1, - "shared.oomerr": 2, - "UNKNOWN": 1, - "*__pyx_n_s__C": 1, - "PySet_Check": 1, - "SHA_CTX": 3, - "checkUTF8": 1, - "*lookup_commit": 2, - "fp": 13, - "GIT_DELTA_DELETED": 7, - "you": 1, - "h_matching_connection_close": 3, - "c_ru": 2, - "__wglewSetGammaTableI3D": 2, - "WGL_SUPPORT_GDI_ARB": 1, - "WGL_MAX_PBUFFER_HEIGHT_ARB": 1, - "even": 1, - "GIT_ATTR_FNMATCH_ALLOWSPACE": 1, - "SUBSCRIBE": 2, - "*in": 1, - "*__pyx_pw_7sklearn_12linear_model_8sgd_fast_12LossFunction_3dloss": 3, - "rfUTF8_VerifySequence": 7, - "PFNWGLQUERYMAXSWAPGROUPSNVPROC": 2, - "PyObject_GetAttr": 3, - "old_iter": 8, - "WGLEW_EXT_display_color_table": 1, - "*match": 3, - "srcY1": 1, - "ERROR_INCOMPATIBLE_DEVICE_CONTEXTS_ARB": 1, - "str": 162, - "l": 7, - "pid": 13, - "rfFgets_UTF16LE": 2, - "constructor": 1, - "stream": 3, - "be": 6, - "**encoding_p": 1, - "PyBaseString_Type": 1, - "header_states": 1, - "s_req_query_string": 7, - "little": 7, - "ends": 3, - "used*100/size": 1, - "sortCommand": 1, - "__wglewDeleteAssociatedContextAMD": 2, - "__pyx_t_5": 12, - "off.": 1, - "WGL_ARB_create_context_profile": 2, - "__pyx_v_penalty_type": 1, - "sunionCommand": 1, - "B8": 1, - "WGL_CONTEXT_DEBUG_BIT_ARB": 1, - "BOOL": 84, - "iAttribute": 8, - "WGL_ACCUM_BITS_EXT": 1, - "WGL_SAMPLES_ARB": 1, - "Lefteris": 1, - "PFNWGLMAKEASSOCIATEDCONTEXTCURRENTAMDPROC": 2, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Huber_4dloss": 1, - "TRACE": 2, - "i_SELECT_RF_STRING_AFTER4": 1, - "WGL_ACCUM_BLUE_BITS_EXT": 1, - "WGL_GENLOCK_SOURCE_EXTERNAL_SYNC_I3D": 1, - "Py_None": 8, - "i_SELECT_RF_STRING_CREATE1": 1, - "help": 4, - "cmd_var": 1, - "field_data": 5, - "bufptr": 12, - "i_rfLMSX_WRAP15": 2, - "i_NVrfString_Create_nc": 3, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Regression": 11, - "hashcmp": 2, - "MKD_STRICT": 1, - "shared.select": 1, - "uv__process_close": 1, - "cmd_annotate": 1, - "internal": 4, - "*__pyx_n_s__p": 1, - "*__pyx_n_s__ValueError": 1, - "verbose": 2, - "**": 6, - "bytePositions": 17, - "server.zset_max_ziplist_value": 1, - "CB_header_field": 1, - "rfString_IterateB_Start": 1, - "*get_merge_parent": 1, - "*pop_most_recent_commit": 1, - "IS_HOST_CHAR": 4, - "HPE_OK": 10, - "32": 1, - "sub": 12, - "rfString_ScanfAfter": 2, - "code_object": 2, - "self_ru.ru_stime.tv_sec": 1, - "REDIS_SLOWLOG_LOG_SLOWER_THAN": 1, - "server.repl_down_since": 2, - "shared.outofrangeerr": 1, - "infoCommand": 4, - "WGL_VIDEO_OUT_COLOR_NV": 1, - "WGLEW_NV_multisample_coverage": 1, - "*s": 3, - "uMaxLineDelay": 1, - "__pyx_print": 1, - "strbuf": 12, - "git_diff_list_alloc": 1, - "i_NPSELECT_RF_STRING_AFTER1": 1, - "VALUE": 13, - "pth": 2, - "server.delCommand": 1, - "aeEventLoop": 2, - "content_length": 27, - "iBufferType": 1, - "prefix": 34, - "nAttributes": 4, - "WGL_STEREO_POLARITY_NORMAL_3DL": 1, - "WGL_SWAP_LAYER_BUFFERS_EXT": 1, - "WGL_BACK_RIGHT_ARB": 1, - "internally": 1, - "*60": 1, - "server.maxmemory_samples": 3, - "CMIT_FMT_FULL": 1, - "i_SELECT_RF_STRING_REPLACE3": 1, - "__pyx_v_learning_rate": 1, - "RUN_SILENT_EXEC_FAILURE": 1, - "__pyx_k_12": 1, - "i_SELECT_RF_STRING_BEFORE0": 1, - "*diff": 8, - "MKD_NO_EXT": 1, - "zrevrankCommand": 1, - "zrankCommand": 1, - "<ctype.h>": 3, - "type*": 1, - "*__pyx_n_s__dataset": 1, - "done_help": 3, - "RF_STRING_ITERATE_END": 9, - "so": 4, - "server.dirty": 3, - "push": 1, - "pEvent": 1, - "xF0": 2, - "error_lineno": 3, - "WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_RGB_NV": 1, - "omode": 8, - "rfString_Assign": 2, - "__WGLEW_ARB_render_texture": 2, - "WGL_OPTIMAL_PBUFFER_WIDTH_EXT": 1, - "back": 1, - "configfile": 2, - "HPE_INVALID_HEADER_TOKEN": 2, - "execvp": 1, - "current_index": 2, - "setup_pager": 1, - "<stdlib.h>": 3, - "cmd_shortlog": 1, - "num_found": 1, - "backs": 1, - "server.lua_timedout": 2, - "server.current_client": 3, - "versions": 1, - "PyLong_FromString": 1, - "CMIT_FMT_SHORT": 1, - "rfString_Find": 3, - "getbitCommand": 1, - "__WGLEW_NV_present_video": 2, - "yajl_buf_free": 1, - "off64_t": 1, - "*subLength": 2, - "C0000": 2, - "ndim": 2, - "*argv": 6, - "PFNWGLCREATEDISPLAYCOLORTABLEEXTPROC": 2, - "cmd_read_tree": 1, - "BOM": 1, - "__wglewResetFrameCountNV": 2, - "WGL_CONTEXT_MINOR_VERSION_ARB": 1, - "listRotate": 1, - "*key1": 4, - "WGLEW_I3D_genlock": 1, - "*diff_strdup_prefix": 1, - "*__pyx_builtin_range": 1, - "SIGSEGV": 1, - "uv_err_t": 1, - "lock": 6, - "*header_field_mark": 1, - "minPosLength": 3, - "*_entry": 1, - "*vtable": 1, - "__pyx_k_6": 1, - "*sample_weight_data": 2, - "}": 1544, - "CPU_DYING": 1, - "aeCreateTimeEvent": 1, - "shared.queued": 2, - "multiCommand": 2, - "C0": 3, - "WGL_NV_render_texture_rectangle": 2, - "rfString_Init_i": 2, - "PFNWGLASSOCIATEIMAGEBUFFEREVENTSI3DPROC": 2, - "rfFback_UTF16LE": 2, - "exists": 6, - "work": 4, - "wglReleasePbufferDCEXT": 1, - "__pyx_k__intercept_decay": 1, - "klass": 1, - "GITERR_OS": 1, - "Stack": 2, - "rlimit": 1, - "DICT_HT_INITIAL_SIZE": 2, - "wglQueryCurrentContextNV": 1, - "rfFgets_UTF8": 2, - "cmd_repo_config": 1, - "RF_IAMHERE_FOR_DOXYGEN": 22, - "__wglewGetPixelFormatAttribivEXT": 2, - "hgetallCommand": 1, - "PFNWGLDXOBJECTACCESSNVPROC": 2, - "///Fseek": 1, - "__pyx_cfilenm": 1, - "__pyx_k__seed": 1, - "copy": 4, - "serverCron": 2, - "dstY": 1, - "rev_info": 2, - "interval": 1, - "git_buf_sets": 1, - "diff_delta__alloc": 2, - "commit_buffer": 1, - "HTTP_MSEARCH": 1, - "DICT_NOTUSED": 6, - "WGL_TRANSPARENT_ALPHA_VALUE_ARB": 1, - "argv0": 2, - "*oid": 2, - "GIT_DELTA_ADDED": 4, - "WGL_ACCUM_RED_BITS_ARB": 1, - "CALLBACK_NOTIFY_NOADVANCE": 2, - "char**": 7, - "s_req_host": 8, - "s_start_req": 6, - "WGL_ERROR_INCOMPATIBLE_AFFINITY_MASKS_NV": 1, - "*__pyx_n_s__RuntimeError": 1, - "__pyx_k__threshold": 1, - "*__pyx_n_s__update": 1, - "__WGLEW_ARB_extensions_string": 2, - "kill": 4, - "uint16_t": 12, - "util": 3, - "VOID": 6, - "here": 5, - "*msc": 3, - "__pyx_v_eta0": 1, - "i_STRING_": 2, - "from": 16, - "CONFIG_PM_SLEEP_SMP": 2, - "CPU_ONLINE": 1, - "WGL_BLUE_BITS_EXT": 1, - "a": 80, - "enc_count": 1, - "__pyx_k__weights": 1, - "i_SELECT_RF_STRING_FIND0": 1, - "GITERR_CHECK_ALLOC": 3, - "REDIS_REPL_TIMEOUT": 1, - "dbDelete": 2, - "RP_SELECT_FUNC_IF_NARGIS": 5, - "bytes": 225, - "*__pyx_n_s__rho": 1, - "i_STR_": 8, - "library": 3, - "s_chunk_size_almost_done": 4, - "PM_POST_SUSPEND": 1, - "REDIS_ENCODING_INT": 4, - "Python.": 1, - "npy_uintp": 1, - "i_NPSELECT_RF_STRING_BETWEEN0": 1, - "commit_list_set_next": 1, - "REDIS_LRU_CLOCK_MAX": 1, - "i_SELECT_RF_STRING_FWRITE2": 1, - "dstX1": 1, - "*rndr": 4, - "LEN": 2, - "*idle": 1, - "*_param": 1, - "utf8BufferSize": 4, - "position": 1, - "strftime": 1, - "writable": 8, - "WGL_BLUE_SHIFT_EXT": 1, - "rfString_Append_fUTF16": 2, - "userformat_want": 2, - "DeviceString": 1, - "*out": 3, - "WGL_NEED_PALETTE_EXT": 1, - "__pyx_k__O": 1, - "into": 8, - "char*": 166, - "memcpy": 34, - "ERROR_INVALID_PROFILE_ARB": 1, - "WGL_DEPTH_COMPONENT_NV": 1, - "wglDXLockObjectsNV": 1, - "__Pyx_GetItemInt": 1, - "**twos": 1, - "cmd_fsck": 2, - "goes": 1, - "WGL_TEXTURE_CUBE_MAP_POSITIVE_Z_ARB": 1, - "__pyx_t_double_complex": 27, - "*envchanged": 1, - "strdup": 1, - "WGL_NUMBER_UNDERLAYS_ARB": 1, - "git_buf_vec": 1, - "0x7a": 1, - "chars": 3, - "failed": 2, - "alloc_blob_node": 1, - "*subject": 1, - "GIT_MODE_TYPE": 3, - "wglDeleteAssociatedContextAMD": 1, - "PFNWGLISENABLEDGENLOCKI3DPROC": 2, - "IS_NUM": 14, - "Failure": 1, - "bysignal": 4, - "<time.h>": 1, - "__Pyx_SetAttrString": 2, - "cmd_remote_ext": 1, - "iteration": 6, - "i_RFI8_": 54, - "s_header_field_start": 12, - "rfUTF8_Decode": 2, - "git_cached_obj_decref": 3, - "name_decoration": 3, - "PyVarObject*": 1, - "WGL_EXT_make_current_read": 2, - "WGL_MAX_PBUFFER_WIDTH_EXT": 1, - "*__pyx_ptype_7sklearn_5utils_11seq_dataset_CSRDataset": 1, - "server.clients": 7, - "E": 11, - "rfString_Copy_OUT": 2, - "fwrite": 5, - "server.rdb_save_time_start": 2, - "flushAppendOnlyFile": 2, - "RECT": 1, - "__wglewBeginFrameTrackingI3D": 2, - "SHA1_Update": 3, - "WGL_NEED_SYSTEM_PALETTE_ARB": 1, - "wglGetPbufferDCEXT": 1, - "WGL_AUX6_ARB": 1, - "save": 2, - "clusterInit": 1, - "REDIS_MAXMEMORY_VOLATILE_LRU": 3, - "askingCommand": 1, - "__wglewSwapLayerBuffersMscOML": 2, - "PyErr_SetString": 3, - "i_rfLMSX_WRAP8": 2, - "_isspace": 3, - "freeClientsInAsyncFreeQueue": 1, - "*__pyx_n_s__sumloss": 1, - "rfString_Append_fUTF32": 2, - "PyBUF_FORMAT": 3, - "__Pyx_PyInt_AsHash_t": 2, - "CA": 1, - "__wglewMakeContextCurrentARB": 2, - "WGLEW_ARB_make_current_read": 1, - "i_SELECT_RF_STRING_BEFOREV11": 1, - "rfString_BytePosToCharPos": 4, - "cmd_merge_recursive": 4, - "s_req_port_start": 7, - "__GFP_ZERO": 1, - "CPU_DEAD": 1, - "MKD_SAFELINK": 1, - "for_each_commit_graft": 1, - "them": 3, - "new_oid": 3, - "sismemberCommand": 1, - "i_OTHERSTR_": 4, - "userformat_find_requirements": 1, - "__pyx_k__class_weight": 1, - "cmd_clean": 1, - "POST": 2, - "*git_diff_list_alloc": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Huber": 1, - "cpu_hotplug_pm_callback": 2, - "CPU_UP_PREPARE": 1, - "server.rdb_save_time_last": 2, - "uv__make_pipe": 2, - "__wglewQueryPbufferARB": 2, - "i_SELECT_RF_STRING_AFTERV": 1, - "http_parser_url": 3, - "__wglewEnumerateVideoDevicesNV": 2, - "yajl_status_insufficient_data": 1, - "git_iterator_current": 2, - "*__pyx_n_s__seed": 1, - "FILE*f": 2, - "server.bug_report_start": 1, - "i_SELECT_RF_STRING_CREATELOCAL0": 1, - "fv": 4, - "shared.bgsaveerr": 2, - "server.verbosity": 4, - "expireCommand": 1, - "__wglewReleaseVideoImageNV": 2, - "server.aof_child_pid": 10, - "srcName": 1, - ")": 6215, - "git_vector": 1, - "__Pyx_ParseOptionalKeywords": 4, - "*commit_list_insert_by_date": 1, - "MMIOT": 2, - "i_rfString_Remove": 6, - "*nNumFormats": 2, - "new_parent": 6, - "*__pyx_pw_7sklearn_12linear_model_8sgd_fast_10Regression_1loss": 3, - "__Pyx_RefNannySetupContext": 12, - "rfString_Create_nc": 3, - "WGL_EXT_extensions_string": 2, - "HEAD": 2, - "git_buf_free": 4, - "git_repository_config__weakptr": 1, - "st.st_mode": 2, - "GIT_DIFF_IGNORE_SUBMODULES": 1, - "__pyx_k__NotImplementedError": 1, - "quiet": 5, - "pybuffer": 1, - "linuxOvercommitMemoryWarning": 2, - "rpushxCommand": 1, - "D1": 1, - "__pyx_k__order": 1, - "npy_uint8": 1, - "r": 58, - "s_res_HT": 4, - "nBytePos": 23, - "sourceP": 2, - "XX": 63, - "*phGpuList": 1, - "cmd_merge_ours": 1, - "preserve_subject": 1, - "acquire_gil": 4, - "git_buf_common_prefix": 1, - "__PYX_HAVE__sklearn__linear_model__sgd_fast": 1, - "s_header_value": 5, - "cpu_present_bits": 5, - "utime": 1, - "addReplyBulkLongLong": 2, - "PFNWGLQUERYFRAMELOCKMASTERI3DPROC": 2, - "__Pyx_zeros": 1, - "diminfo": 1, - "enable_nonboot_cpus": 1, - "server.pidfile": 3, - "hmgetCommand": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_18EpsilonInsensitive_2loss": 1, - "wglQueryGenlockMaxSourceDelayI3D": 1, - "argv": 54, - "wglEnableGenlockI3D": 1, - "HVIDEOINPUTDEVICENV*": 1, - "WGLEW_NV_vertex_array_range": 1, - "*obj": 9, - "CONFIG_SMP": 1, - "PyInt_AsLong": 2, - "A2": 2, - "enc_packmode": 1, - "new_file.flags": 4, - "PFNWGLCREATEIMAGEBUFFERI3DPROC": 2, - "scardCommand": 1, - "_WIN32": 3, - "CMIT_FMT_FULLER": 1, - "PyInt_FromSsize_t": 6, - "__pyx_t_5numpy_uint64_t": 1, - "**p": 1, - "rb_define_class": 1, - "F000": 2, - "server.aof_rewrite_scheduled": 4, - "zfree": 2, - "wglAllocateMemoryNV": 1, - "PyString_CheckExact": 2, - "its": 1, - "saveparam": 1, - "PyInstanceMethod_New": 1, - "wglGetGPUInfoAMD": 1, - "WGL_GENLOCK_SOURCE_EXTERNAL_TTL_I3D": 1, - "cmd_branch": 1, - "is_empty": 4, - "*numP": 1, - "zmalloc_get_rss": 1, - "__Pyx_GetItemInt_Tuple": 1, - "use": 1, - "server.maxclients": 6, - "slots": 2, - "numDevices": 1, - "__WGLEW_NV_gpu_affinity": 2, - "specified": 1, - "new_tree": 2, - "readonly": 1, - "sdsempty": 8, - "WGLEW_NV_render_depth_texture": 1, - "srcZ": 1, - "i_ARG4_": 56, - "i_LEFTSTR_": 6, - "notifier_block": 3, - "shared.cone": 1, - "cmd_merge_tree": 1, - "WGL_CONTEXT_FLAGS_ARB": 1, - "microseconds/c": 1, - "i_SELECT_RF_STRING_COUNT0": 1, - "git_diff_options": 7, - "WGL_ARB_multisample": 2, - "rfString_Create_cp": 2, - "__weak": 4, - "mkd_toc": 1, - "RE_UTF16_INVALID_SEQUENCE": 20, - "ref_name": 2, - "REFU_USTRING_H": 2, - "__Pyx_c_conj": 3, - "fds": 20, - "divisor": 3, - "wglCreateAffinityDCNV": 1, - "__Pyx_Buffer": 2, - "yajl_bs_push": 1, - "CR": 18, - "zero": 2, - "hObject": 2, - "CYTHON_REFNANNY": 3, - "new_iter": 13, - "One": 1, - "int": 446, - "field": 1, - "kw_name": 1, - "WGLEW_EXT_framebuffer_sRGB": 1, - "s_header_field": 4, - "zremCommand": 1, - "setrlimit": 1, - "*de": 2, - "__pyx_t_5numpy_float64_t": 4, - "alias_command": 4, - "i_DESTINATION_": 2, - "WGLEW_ARB_multisample": 1, - "optionsP": 11, - "PFNWGLSWAPLAYERBUFFERSMSCOMLPROC": 2, - "__pyx_PyFloat_AsDouble": 12, - "cmd_show_branch": 1, - "__wglewSetPbufferAttribARB": 2, - "RE_FILE_EOF": 22, - "__PYX_BUF_FLAGS_PACKED_STRUCT": 1, - "*parents": 4, - "startCharacterPos_": 4, - "__Pyx_RaiseDoubleKeywordsError": 1, - "cpumask_copy": 3, - "utf8ByteLength": 34, - "/server.loading_loaded_bytes": 1, - "target_sbc": 1, - "rfString_After": 4, - "#n": 1, - ".refcount": 1, - "pipes": 23, - "*use_noid": 1, - ".real": 3, - "_USE_MATH_DEFINES": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_3Log_loss": 1, - "lpushxCommand": 1, - "INT64": 18, - "wglGetVideoInfoNV": 1, - "WGL_TEXTURE_FLOAT_RGBA_NV": 1, - "i_NPSELECT_RF_STRING_FIND0": 1, - "*values": 1, - "__Pyx_TypeInfo*": 2, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Regression": 1, - "s_res_H": 3, - "cpu_online_bits": 5, - "option_count": 1, - "append_merge_tag_headers": 1, - "git__iswildcard": 1, - "_entry": 1, - "CALLBACK_DATA_NOADVANCE": 6, - "idle": 4, - "shared.lpop": 1, - "dictListDestructor": 2, - "INT32*": 1, - "BOOL*": 3, - "PyInt_Type": 1, - "marked": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Huber_2loss": 1, - "*path": 2, - "do": 21, - "dbDictType": 2, - "persistCommand": 1, - "git_index_entry": 8, - "*lookup_commit_or_die": 2, - "PyType_Modified": 1, - "__WGLEW_EXT_display_color_table": 2, - "cpu_down": 2, - "REDIS_REPL_ONLINE": 1, - "UV_PROCESS": 1, - "*denominator": 1, - "PFNWGLSENDPBUFFERTOVIDEONVPROC": 2, - "PyIntObject": 1, - "__Pyx_StructField*": 1, - "defvalue": 2, - "HPE_CLOSED_CONNECTION": 1, - "s_req_method": 4, - "LOG_LOCAL0": 1, - "shared.pmessagebulk": 1, - "zsetDictType": 1, - "uv__chld": 2, - "__wglewJoinSwapGroupNV": 2, - "mark": 3, - "INCREF": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_3Log_4__reduce__": 1, - "<linux/cpu.h>": 1, - "redisAsciiArt": 2, - "server.watchdog_period": 3, - "<poll.h>": 1, - "C6": 1, - "REDIS_MONITOR": 1, - "RUSAGE_CHILDREN": 1, - "retval": 3, - "dictGetRandomKey": 4, - "ap": 4, - "i_LIMSELECT_RF_STRING_AFTERV0": 1, - "S_ISFIFO": 1, - "slaveofCommand": 2, - "standard": 1, - "server.aof_filename": 3, - "HVIDEOINPUTDEVICENV": 5, - "pos_args": 12, - "__wglewGenlockSourceEdgeI3D": 2, - "__Pyx_PyUnicode_GET_LENGTH": 2, - "header_value_mark": 2, - "rb_define_method": 2, - "occurs": 1, - "WGL_IMAGE_BUFFER_LOCK_I3D": 1, - "__pyx_k__q": 1, - "rfString_PruneMiddleF": 2, - "need": 5, - "*ver_major": 2, - "pubsub_channels": 2, - "UV_STREAM_WRITABLE": 2, - "WGL_ARB_create_context_robustness": 2, - "ev_child_init": 1, - "new_prefix": 2, - "performs": 1, - "wglDXRegisterObjectNV": 1, - "creates": 1, - "option": 9, - "git_oid_iszero": 2, - "or": 1, - "*new_oid": 1, - "bytesToHuman": 3, - "REDIS_ERR": 5, - "getrlimit": 1, - "exitcode": 3, - "dictEncObjHash": 4, - "rpoplpushCommand": 1, - "__wglewDXSetResourceShareHandleNV": 2, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_LossFunction": 15, - "**value": 1, - "ERROR_INVALID_VERSION_ARB": 1, - "__wglewGenlockSourceDelayI3D": 2, - "s_message_done": 3, - "REDIS_MULTI": 1, - "__wglewGetGenlockSampleRateI3D": 2, - "__inline": 1, - "git_pool_init": 2, - ".name": 1, - "__pyx_k__alpha": 1, - "CMIT_FMT_RAW": 1, - "cmd_fetch_pack": 1, - "ascii_logo": 1, - "rfUTILS_Endianess": 24, - "UF_QUERY": 2, - "REDIS_SERVERPORT": 1, - "rewriteAppendOnlyFileBackground": 2, - "git_iterator_for_tree_range": 4, - "i_SELECT_RF_STRING_INIT0": 1, - "RE_STRING_INIT_FAILURE": 8, - "wglDXOpenDeviceNV": 1, - "__Pyx_PyInt_AsSignedLongLong": 1, - "__pyx_k__is_hinge": 1, - "cabs": 1, - "cmd_pack_objects": 1, - "s_req_first_http_major": 3, - "listNodeValue": 3, - "HTTP_PARSER_DEBUG": 4, - "PFNWGLDXUNREGISTEROBJECTNVPROC": 2, - "size_t": 52, - "*after_subject": 1, - "tokens": 5, - "tv.tv_sec": 4, - "B3": 1, - "PyUnicode_GET_LENGTH": 1, - "text": 22, - "act.sa_flags": 2, - "server.repl_transfer_left": 1, - "is": 17, - "_OPENMP": 1, - "clusterNode": 1, - "server.rdb_checksum": 1, - "uv__cloexec": 4, - "__wglewDestroyImageBufferI3D": 2, - "server.saveparamslen": 3, - "<errno.h>": 4, - "WGL_ACCUM_BITS_ARB": 1, - "i_rfString_After": 5, - "PyString_AS_STRING": 1, - "is_descendant_of": 1, - "cpu_possible": 1, - "i_rfLMSX_WRAP10": 2, - "cmd_notes": 1, - "git_oid": 7, - "fgetc": 9, - "*__pyx_n_s__sys": 1, - "added": 1, - "WGL_ACCUM_BLUE_BITS_ARB": 1, - "__pyx_k__ValueError": 1, - "cmd_merge_index": 1, - "cpu_hotplug.active_writer": 6, - "substring": 5, - "utf": 1, - "space": 4, - "c_ru.ru_utime.tv_sec": 1, - "WGL_GENLOCK_SOURCE_EDGE_FALLING_I3D": 1, - "REDIS_CMD_WRITE": 2, - "rfString_ToCstr": 2, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_13ModifiedHuber_2dloss": 1, - "rfString_Before": 3, - "fline": 4, - "HPE_UNKNOWN": 1, - "__GNUC_PATCHLEVEL__": 1, - "now": 5, - "l2": 3, - "MERGE": 2, - "*__pyx_int_15": 1, - "i_LIMSELECT_RF_STRING_BEFOREV0": 1, - "i_SELECT_RF_STRING_AFTERV15": 1, - "*filename": 2, - "__Pyx_PyIndex_AsSsize_t": 1, - "*n": 1, - "PFNWGLGETVIDEOINFONVPROC": 2, - "wglSetGammaTableI3D": 1, - "limit.rlim_max": 1, - "server.repl_state": 6, - "UV_PROCESS_SETGID": 2, - "diffcaps": 13, - "val": 20, - "yajl_lex_realloc": 1, - "git_config_maybe_bool": 1, - "cmd_index_pack": 1, - "PFNWGLGETDIGITALVIDEOPARAMETERSI3DPROC": 2, - "*eofReached": 14, - "WGL_RED_BITS_EXT": 1, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_ModifiedHuber": 5, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_LossFunction": 1, - "__WGLEW_EXT_pixel_format_packed_float": 2, - "server.db": 23, - "*o1": 2, - "i_SELECT_RF_STRING_BEFOREV5": 1, - "callbacks": 3, - "__pyx_L4_argument_unpacking_done": 6, - "<0)>": 1, - "tv": 8, - "flushdbCommand": 1, - "<arpa/inet.h>": 1, - "WGL_NV_swap_group": 2, - "PFNWGLDISABLEFRAMELOCKI3DPROC": 2, - "i_SELECT_RF_STRING_BEFOREV17": 1, - "WGL_SWAP_LAYER_BUFFERS_ARB": 1, - "PFNWGLGETPBUFFERDCARBPROC": 2, - "REDIS_HASH_MAX_ZIPLIST_ENTRIES": 1, - "ev_child*": 1, - "__WGLEW_NV_vertex_array_range": 2, - "PyBUF_ANY_CONTIGUOUS": 1, - "__wglewChoosePixelFormatEXT": 2, - "__Pyx_StructField_*": 1, - "DL_EXPORT": 2, - "message_begin": 3, - "rdbLoad": 1, - "__wglewCreateAffinityDCNV": 2, - "__Pyx_CodeObjectCacheEntry": 1, - "npy_double": 2, - "REDIS_AOF_REWRITE_MIN_SIZE": 1, - "uv_kill": 1, - "cppcode": 1, - "i_rfString_Append": 3, - "<sys/uio.h>": 1, - "pop": 1, - "wglLoadDisplayColorTableEXT": 1, - "GIT_DIFF_INCLUDE_UNMODIFIED": 1, - "<linux/rcupdate.h>": 1, - "dictDisableResize": 1, - "F_CONNECTION_KEEP_ALIVE": 3, - "__pyx_t_float_complex_from_parts": 1, - "iLayerPlane": 5, - "__Pyx_CREAL": 4, - "abbrev": 1, - "wglBlitContextFramebufferAMD": 1, - "s_req_host_v6": 7, - "code": 6, - "rfString_Copy_IN": 2, - "rfString_Destroy": 2, - "_ftelli64": 1, - "__pyx_builtin_NotImplementedError": 3, - "rb_cRDiscount": 4, - "self_ru.ru_stime.tv_usec/1000000": 1, - "wglWaitForSbcOML": 1, - "double*": 1, - "git_diff_merge": 1, - "cmd_mv": 1, - "c4": 5, - "*__pyx_n_s__intercept": 1, - "PYPY_VERSION": 1, - "/": 9, - "PFNWGLRELEASEIMAGEBUFFEREVENTSI3DPROC": 2, - "list*": 1, - "brief": 1, - "PySequence_DelSlice": 2, - "dictSize": 10, - "PFNWGLRESETFRAMECOUNTNVPROC": 2, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_EpsilonInsensitive": 6, - "root": 1, - "__Pyx_BufFmt_StackElem": 1, - "zone": 1, - "Once": 1, - "x": 57, - "i_NUMBER_": 12, - "RF_StringX": 2, - "rfString_Create_fUTF16": 2, - "__pyx_k_1": 1, - "srcX1": 1, - "allocation": 3, - "*1024LL": 1, - "wglewContextInit": 2, - "*maxBarriers": 1, - "WGLEW_EXT_make_current_read": 1, - "encode": 2, - "parN": 10, - "Extended": 1, - "i_SELECT_RF_STRING_BETWEEN3": 1, - "unregister_cpu_notifier": 2, - "RF_UTF32_BE//": 2, - "dictEntry": 2, - "INVALID_METHOD": 1, - "__wglewBindVideoCaptureDeviceNV": 2, - "A8": 2, - "__Pyx_XGOTREF": 2, - "s_req_http_start": 3, - "online": 2, - "cpu_notify": 5, - "afterP": 2, - "http_parser_h": 2, - "__wglewDXUnlockObjectsNV": 2, - "__pyx_k__f": 1, - "__wglewSetStereoEmitterState3DL": 2, - "__pyx_t_7sklearn_5utils_11seq_dataset_INTEGER": 7, - "GIT_DIFFCAPS_TRUST_EXEC_BIT": 2, - "thisstrP": 32, - "defsections": 11, - "rawmode": 2, - "WGL_DEPTH_TEXTURE_FORMAT_NV": 1, - "wglGetGammaTableParametersI3D": 1, - "__wglewGetPixelFormatAttribivARB": 2, - "char": 529, - "*value": 5, - "__Pyx_PyBytes_AsUString": 1, - "size_mask": 6, - "none_allowed": 1, - "parse_block": 1, - "timelimit": 5, - "WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_RG_NV": 1, - "i_NPSELECT_RF_STRING_REMOVE": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_10Regression_2dloss": 1, - "//Two": 1, - "*__pyx_n_s__t_start": 1, - "HELLO_H": 2, - "getOperationsPerSecond": 2, - "i_rfString_Init": 3, - "rfString_Create_fUTF32": 2, - "s_res_line_almost_done": 4, - "shared.nullmultibulk": 2, - "git_buf": 3, - "PyBUF_SIMPLE": 1, - "i_SELECT_RF_STRING_REMOVE1": 1, - "*shape": 1, - "__func__": 2, - "__pyx_vtabstruct_7sklearn_5utils_11seq_dataset_CSRDataset": 2, - "__LINE__": 50, - "__WGLEW_ARB_framebuffer_sRGB": 2, - "WGL_SAMPLE_BUFFERS_3DFX": 1, - "strbuf_release": 1, - "INT32": 1, - "*get_merge_bases": 1, - "wglGenlockSourceI3D": 1, - "rfString_BytePosToCodePoint": 7, - "WGL_CONTEXT_RESET_NOTIFICATION_STRATEGY_ARB": 1, - "RUN_SETUP": 81, - "ops*1000/t": 1, - "WGL_NV_multisample_coverage": 2, - "WGL_ERROR_MISSING_AFFINITY_MASK_NV": 1, - "PyBytes_AsStringAndSize": 1, - "s2": 6, - "cmd_show": 1, - "wglReleaseVideoCaptureDeviceNV": 1, - "*__pyx_ptype_5numpy_ndarray": 1, - "WGL_BLUE_BITS_ARB": 1, - "R_PosInf": 2, - "options.file": 2, - "date_mode_explicit": 1, - "pp_remainder": 1, - "WGL_ARB_pixel_format": 2, - "rdbSaveBackground": 1, - "WGL_BIND_TO_VIDEO_RGB_NV": 1, - "wglBindSwapBarrierNV": 1, - "git_buf_joinpath": 1, - "data": 69, - "*__pyx_find_code_object": 1, - "uState": 1, - "PFNWGLDELETEBUFFERREGIONARBPROC": 2, - "server.client_obuf_limits": 9, - "shared.syntaxerr": 2, - "xE0": 2, - "*piValues": 2, - "i_SELECT_RF_STRING_BETWEEN": 1, - "__pyx_pw_7sklearn_12linear_model_8sgd_fast_10Regression_1loss": 1, - "__pyx_base": 18, - "perror": 5, - "__wglewAssociateImageBufferEventsI3D": 2, - "WGL_BLUE_SHIFT_ARB": 1, - "__wglewSaveBufferRegionARB": 2, - "__pyx_k__q_data_ptr": 1, - "h_matching_transfer_encoding": 3, - "__wglewGetFrameUsageI3D": 2, - "__wglewDeleteBufferRegionARB": 2, - "WGL_NUMBER_OVERLAYS_EXT": 1, - "__wglewGetContextGPUIDAMD": 2, - "CYTHON_WITHOUT_ASSERTIONS": 1, - "i_RFUI32_": 8, - "remaining_bytes": 1, - "strlenCommand": 1, - "WGL_STENCIL_BITS_EXT": 1, - "piAttribIList": 2, - ".item": 2, - ".description": 1, - "HTTP_CONNECT": 4, - "*__pyx_n_s__shape": 1, - ".imag": 3, - "*__pyx_n_s__plain_sgd": 1, - "*tb": 2, - "rfUTF8_FromCodepoint": 1, - "REDIS_AOF_OFF": 5, - "uv__handle_init": 1, - "desc": 5, - "REDIS_MAX_QUERYBUF_LEN": 1, - "zrangeCommand": 1, - "EOF": 26, - "blob": 6, - "*__pyx_ptype_5numpy_flatiter": 1, - "info": 64, - "*argcp": 4, - "*c": 69, - "wglew.h": 1, - "iBuffer": 2, - "wglDeleteBufferRegionARB": 1, - "__pyx_k__Zg": 1, - "PFNWGLDESTROYPBUFFERARBPROC": 2, - "MKD_NOHEADER": 1, - "yajl_render_error_string": 1, - "WGL_MAX_PBUFFER_WIDTH_ARB": 1, - "i_rfLMSX_WRAP3": 5, - "PFNWGLGETPIXELFORMATATTRIBFVEXTPROC": 2, - "charsN": 5, - "listSetFreeMethod": 1, - "server.aof_last_fsync": 1, - "body": 6, - "wglSaveBufferRegionARB": 1, - "help_unknown_cmd": 1, - "char*utf8": 3, - "thiskey": 7, - "afs": 8, - "ftello64": 1, - "__Pyx_MODULE_NAME": 1, - "CPU_DOWN_PREPARE": 1, - "removed": 2, - "REDIS_CMD_DENYOOM": 1, - "getkeys_proc": 1, - "server.stat_numcommands": 4, - "__APPLE__": 2, - "enum": 29, - "headers": 1, - "__pyx_bisect_code_objects": 1, - "py_line": 1, - "uint32_t*length": 1, - "Endian": 1, - "sure": 2, - "run_with_period": 6, - "*1024": 4, - "i_SELECT_RF_STRING_AFTERV9": 1, - "**list": 5, - "functionality": 1, - "/REDIS_HZ": 2, - "PyGILState_Release": 1, - "n_features": 2, - "mode": 11, - "PFNWGLGETGPUIDSAMDPROC": 2, - "rfFgets_UTF32LE": 2, - "CHUNKED": 4, - "printk": 12, - "RF_HEXEQ_UI": 7, - "wglLockVideoCaptureDeviceNV": 1, - "i_NPSELECT_RF_STRING_COUNT": 1, - "fmt_offset": 1, - "__pyx_v_intercept": 1, - "cmd_symbolic_ref": 1, - "__pyx_k__w": 1, - "__Pyx_SET_CREAL": 2, - "*eol": 1, - "WGL_GENLOCK_SOURCE_MULTIVIEW_I3D": 1, - "http_method_str": 1, - "diff*number": 1, - "RE_STRING_TOFLOAT_UNDERFLOW": 1, - "version": 4, - "i_RESULT_": 12, - "__Pyx_GetAttrString": 2, - "nr_to_call": 2, - "rndr": 25, - "*__pyx_n_s__time": 1, - "WGL_DRAW_TO_BITMAP_EXT": 1, - "cmd_archive": 1, - "characterPos_": 5, - "PyString_AsString": 1, - "parse_commit_date": 2, - "OK": 1, - "WGL_TEXTURE_CUBE_MAP_POSITIVE_Y_ARB": 1, - "GLushort*": 1, - "each_commit_graft_fn": 1, - "<complex.h>": 1, - "sstrP": 6, - "dictGetVal": 2, - "m": 8, - "WGL_SWAP_EXCHANGE_ARB": 1, - "NOTIFY": 2, - "two": 1, - "__pyx_k__time": 1, - "PyMethod_New": 2, - "PFNWGLCHOOSEPIXELFORMATEXTPROC": 2, - "*fmt": 2, - "cmd_remote_fd": 1, - "PFNWGLCREATEPBUFFEREXTPROC": 2, - "PyExc_TypeError": 4, - "wrapping": 1, - "one": 2, - "__Pyx_PySequence_SetSlice": 2, - "encodingP": 1, - "linsertCommand": 1, - "WGLEW_NV_video_output": 1, - "B9": 1, - "__Pyx_PyCode_New": 2, - "rfString_Create_UTF16": 2, - "requires": 1, - "HPE_INVALID_EOF_STATE": 1, - "rfStringX_Deinit": 1, - "redisAssert": 1, - "diff_delta__from_one": 5, - "strbuf_addf": 1, - "0x80": 1, - "oldlimit": 5, - "va_list": 3, - "ahead": 5, - "WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_R_NV": 1, - "__WGLEW_ARB_pixel_format": 2, - "GIT_ITERATOR_WORKDIR": 2, - "evalShaCommand": 1, - "UF_PATH": 2, - "sha1": 20, - "cmd_fast_export": 1, - "s_req_http_HT": 3, - "yajl_reset_parser": 1, - "git_config_get_bool": 1, - "i_rfLMSX_WRAP16": 2, - "s_req_schema": 6, - "shared.mbulkhdr": 1, - "WGL_GPU_NUM_SPI_AMD": 1, - "config": 4, - "__Pyx_CodeObjectCache": 2, - "string_": 9, - "DIFF_OLD_PREFIX_DEFAULT": 1, - "work.size": 5, - "PyLong_FromLong": 1, - "git_vector_free": 3, - "*__pyx_n_s__q": 1, - "dictIsRehashing": 2, - "*__pyx_n_s__range": 1, - "since": 5, - "ext": 4, - "ll2string": 3, - "selectCommand": 1, - "hincrbyfloatCommand": 1, - "zrevrangebyscoreCommand": 1, - "pfd.revents": 1, - "definitions": 1, - "dest": 7, - "res1": 2, - "*http_method_str": 1, - "cleanup": 12, - "__pyx_insert_code_object": 1, - "*t": 2, - ".off": 2, - "0x20": 1, - "according": 1, - "READ_VSNPRINTF_ARGS": 5, - "RF_MALLOC": 47, - "*pLastMissedUsage": 1, - "var": 7, - "s_req_host_v6_end": 7, - "i_SELECT_RF_STRING_REPLACE4": 1, - "rfString_Create_UTF32": 2, - "__pyx_k_13": 1, - "HTTP_PUT": 2, - "sinterCommand": 2, - "nread": 7, - "i_SELECT_RF_STRING_BEFORE1": 1, - "i_CMD_": 2, - "S_ISSOCK": 1, - "PyBUF_F_CONTIGUOUS": 1, - "ERANGE": 1, - "lpushCommand": 1, - "__WGLEW_NV_float_buffer": 2, - "rfFReadLine_UTF16LE": 4, - "ino": 2, - "shared.space": 1, - "sp": 4, - "WGL_GPU_CLOCK_AMD": 1, - "WGL_AMD_gpu_association": 2, - "REDIS_EXPIRELOOKUPS_PER_CRON": 2, - "AF_UNIX": 2, - "PFNWGLFREEMEMORYNVPROC": 2, - "i_VAR_": 2, - "git_diff_index_to_tree": 1, - "p_close": 1, - "shape": 1, - "listIter": 2, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_10Regression_loss": 2, - "__pyx_t_5numpy_uint32_t": 1, - "*old_tree": 3, - "h_connection_keep_alive": 4, - "__cpu_disable": 1, - "addReply": 13, - "WGL_TEXTURE_CUBE_MAP_NEGATIVE_Z_ARB": 1, - "list_common_cmds_help": 1, - "PyInt_Check": 1, - "ctx": 16, - "cpu_active_mask": 2, - "RE_FILE_WRITE": 1, - "number*diff": 1, - "REDIS_MAXMEMORY_VOLATILE_TTL": 1, - "lastinteraction": 3, - "WGLEW_EXPORT": 167, - "__pyx_pf_7sklearn_12linear_model_8sgd_fast_18EpsilonInsensitive___init__": 1, - "__pyx_k__dtype": 1, - "backwards.": 1, - "PFNWGLWAITFORSBCOMLPROC": 2, - "PyNumber_Int": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12LossFunction_2dloss": 2, - "REFU_IO_H": 2, - "action": 2, - "check_for_tasks": 2, - "RF_BIG_ENDIAN": 10, - "INT64*": 3, - "Py_XDECREF": 1, - "__Pyx_CIMAG": 4, - "WGL_GPU_RENDERER_STRING_AMD": 1, - "uSource": 2, - "__WGLEW_ARB_create_context_robustness": 2, - "Counts": 1, - "authCommand": 3, - "ev": 2, - "GLsizei": 4, - "continue": 20, - "rfString_Init_UTF16": 3, - "server.aof_rewrite_min_size": 2, - "redisClient": 12, - "*__pyx_n_s__float64": 1, - "5": 1, - "TOKEN": 4, - "initServerConfig": 2, - "*key2": 4, - "blpopCommand": 1, - "PROPFIND": 2, - "tp_dictoffset": 3, - "IS_ALPHANUM": 3, - "NR_CPUS": 2, - "IS_ERR": 1, - "pexpireCommand": 1, - "__wglewDestroyPbufferEXT": 2, - "tv.tv_usec": 3, - "uv_loop_t*": 1, - "dxDevice": 1, - "__pyx_t_7sklearn_5utils_11seq_dataset_DOUBLE": 7, - "for": 88, - "is_unsigned": 1, - "__pyx_t_5numpy_uint16_t": 1, - "C1": 1, - "cmd_get_tar_commit_id": 1, - "__wglewEnableGenlockI3D": 2, - "WGL_TYPE_RGBA_UNSIGNED_FLOAT_EXT": 1, - "*reflog_info": 1, - "__pyx_pf_7sklearn_12linear_model_8sgd_fast_10Regression_loss": 1, - "*__pyx_n_s__verbose": 1, - "*pp": 4, - "rfString_Append_i": 2, - "yajl_get_error": 1, - "PyCode_New": 2, - "//": 257, - "setupSignalHandlers": 2, - "WGL_PBUFFER_WIDTH_EXT": 1, - "IS_UNSIGNED": 1, - "htmlblock_end": 3, - "SIG_IGN": 2, - "HTTP_PARSER_VERSION_MAJOR": 1, - "PySequence_SetSlice": 2, - "***argv": 2, - "__pyx_t_5numpy_float32_t": 1, - "RF_STRING_ITERATEB_END": 2, - "*parNP": 2, - "last": 1, - "PFNWGLJOINSWAPGROUPNVPROC": 2, - "and": 15, - "b_date": 3, - "i_NPSELECT_RF_STRING_AFTERV0": 1, - "__wglewCreateAssociatedContextAttribsAMD": 2, - "<math.h>": 3, - "WGL_SHARE_STENCIL_EXT": 1, - "*lookup_commit_graft": 1, - "before": 4, - "acceptUnixHandler": 1, - "dstZ": 1, - "yajl_get_bytes_consumed": 1, - "Py_REFCNT": 1, - "*__pyx_k_tuple_14": 1, - "__pyx_k__l": 1, - "cpumask_first": 1, - "aeCreateEventLoop": 1, - "swapE": 21, - "UF_PORT": 5, - "rfString_Init_UTF32": 3, - "*author": 2, - "Py_hash_t": 1, - "__pyx_t_5numpy_clongdouble_t": 1, - "server.maxmemory": 6, - "LOG_INFO": 1, - "ff": 10, - "WGLEW_ARB_buffer_region": 1, - "git_odb__hashlink": 1, - "REDIS_MBULK_BIG_ARG": 1, - "va_end": 3, - "on_body": 1, - "git_pool": 4, - "PyBytes_FromString": 2, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_14Classification_2dloss": 1, - "buffer": 10, - "*__pyx_vtabptr_7sklearn_5utils_11seq_dataset_ArrayDataset": 1, - "cmd_reset": 1, - "*__pyx_ptype_5numpy_ufunc": 1, - "HTTP_UNLOCK": 2, - "manipulate": 1, - "used": 10, - "saved_errno": 1, - "__pyx_pf_5numpy_7ndarray_2__releasebuffer__": 1, - "mtime.seconds": 2, - "PFNWGLCREATEPBUFFERARBPROC": 2, - "key1": 5, - "PFNWGLGETMSCRATEOMLPROC": 2, - "maxGroups": 1, - "__Pyx_WriteUnraisable": 4, - "CYTHON_FORMAT_SSIZE_T": 2, - "*row_work": 1, - "cpu": 57, - "unused": 3, - "PFNWGLDXUNLOCKOBJECTSNVPROC": 2, - "REFU_WIN32_VERSION": 1, - "*__pyx_kp_u_12": 1, - "startup_info": 3, - "malloc": 3, - "s_chunk_size": 3, - "aofRewriteBufferReset": 1, - "PFNWGLGETSYNCVALUESOMLPROC": 2, - "i_ARG3_": 56, - "i_SELECT_RF_STRING_FIND1": 1, - "PFNWGLGETCURRENTASSOCIATEDCONTEXTAMDPROC": 2, - "git_config": 3, - "*__pyx_kp_s_20": 1, - "b": 66, - "elapsed": 3, - "server.neterr": 4, - "__WGLEW_OML_sync_control": 2, - "but": 1, - "WGL_FRONT_RIGHT_ARB": 1, - "randomkeyCommand": 1, - "*__Pyx_GetItemInt_Tuple_Fast": 1, - "i_rfString_Beforev": 16, - "lookup_commit_reference": 2, - "*__pyx_f_5numpy__util_dtypestring": 1, - "afsBuffer": 3, - "loadServerConfig": 1, - "genRedisInfoString": 2, - "GLEW_MX": 4, - "i_NPSELECT_RF_STRING_BETWEEN1": 1, - "GIT_ATTR_FNMATCH_HASWILD": 1, - "PyBUF_C_CONTIGUOUS": 1, - "RF_CASE_IGNORE": 2, - "__pyx_lineno": 58, - "slowlogCommand": 1, - "mgetCommand": 1, - "status_code": 8, - "i_SELECT_RF_STRING_FWRITE3": 1, - "wglGetGenlockSourceI3D": 1, - "__Pyx_SafeReleaseBuffer": 1, - "USHORT": 4, - "createObject": 31, - "deltas.length": 4, - "opts": 24, - "in": 11, - "PyStringObject": 2, - "WGL_DRAW_TO_WINDOW_EXT": 1, - "*section": 2, - "LF_EXPECTED": 1, - "dev": 2, - "*__pyx_n_s__epsilon": 1, - "can": 2, - "TASK_RUNNING": 1, - "thisval": 8, - "off_t": 1, - "freeClient": 1, - "first_cpu": 3, - "*extra": 1, - "__pyx_t_7sklearn_5utils_13weight_vector_INTEGER": 1, - "initialize": 1, - "i/2": 2, - "setup_git_directory_gently": 1, - "__wglewReleasePbufferDCARB": 2, - "full_path.ptr": 2, - "*heads": 2, - "CONFIG_NR_CPUS": 5, - "GIT_BUF_INIT": 3, - "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_SquaredHinge": 2, - "__pyx_pf_7sklearn_12linear_model_8sgd_fast_25SquaredEpsilonInsensitive___init__": 1, - "*class_name": 1, - "old_file.path": 12, - "sflags": 1, - "i_SELECT_RF_STRING_COUNT": 1, - "PFNWGLGETEXTENSIONSSTRINGARBPROC": 2, - "*pgdat": 1, - "SEEK_CUR": 19, - "commit_list_count": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_25SquaredEpsilonInsensitive_6__reduce__": 1, - "decodeBuf": 2, - "i_SELECT_RF_STRING_AFTERV10": 1, - "tp_name": 4, - "WGL_TYPE_COLORINDEX_ARB": 1, - "F": 38, - "on_header_field": 1, - "*__pyx_n_s__sample_weight": 1, - "commit_graft_pos": 2, - "__WGLEW_ARB_multisample": 2, - "SIGPIPE": 1, - "server.shutdown_asap": 3, - "vsnprintf": 1, - "__WGLEW_NV_swap_group": 2, - "*lookup_blob": 2, - "*new_tree": 1, - "i_rfLMSX_WRAP9": 2, - "WGL_GENLOCK_SOURCE_EXTERNAL_FIELD_I3D": 1, - "fields": 1, - "EXPORT_SYMBOL": 8, - "server.repl_slave_ro": 2, - "server.maxmemory_policy": 11, - "PUT": 2, - "git_pool_clear": 2, - "__pyx_n_s__dloss": 1, - "kw_args": 15, - "SIGBUS": 1, - "CB": 1, - "FNM_NOMATCH": 1, - "i_SELECT_RF_STRING_BEFOREV12": 1, - "list": 1, - "PyInt_FromUnicode": 1, - "__Pyx_c_sum": 2, - "s_res_status": 3, - "i_SELECT_RF_STRING_REMOVE": 1, - "rfString_Init": 3, - "then": 1, - "<float.h>": 1, - "options.stdio": 3, - "c_index_": 3, - "__Pyx_SetVtable": 1, - "number": 19, - "restoreCommand": 1, - "*new_iter": 2, - "<linux/init.h>": 1, - "lua_gc": 1, - "htNeedsResize": 3, - "wglGetGenlockSourceDelayI3D": 1, - "expected": 2, - "RF_UTF8": 8, - "__Pyx_c_conjf": 3, - "do_render": 4, - "int16_t": 1, - "characterUnicodeValue_": 4, - "HTTP_MOVE": 1, - "http_parser_url_fields": 2, - "i_SELECT_RF_STRING_CREATELOCAL1": 1, - "server.stat_expiredkeys": 3, - "mstime": 5, - "uv__process_init_stdio": 2, - "get_commit_format": 1, - "__imag__": 1, - "__pyx_gilstate_save": 2, - "*__pyx_t_1": 6, - "MKD_LI_END": 1, - "RF_STRING_ITERATE_START": 9, - "utsname": 1, - "sdslen": 14, - "options.env": 1, - "F_CHUNKED": 11, - "yajl_bs_free": 1, - "*list": 2, - "*commit_type": 2, - "c.want": 2, - "*git_hash_new_ctx": 1, - "i_SELECT_RF_STRING_AFTER": 1, - "*": 253, - "EV_P_": 1, - "break": 244, - "fileno": 1, - "**column_data": 1, - "false": 77, - "s": 154, - "stderr": 15, - "__wglewGetGenlockSourceDelayI3D": 2, - "*pAddress": 1, - "wglDestroyPbufferARB": 1, - "git_hash_free_ctx": 1, - "limit": 3, - "shared.psubscribebulk": 1, - "zaddCommand": 1, - "<omp.h>": 1, - "cpu_up": 2, - "rcu_read_lock": 1, - "numcommands": 5, - "__wglewCreateContextAttribsARB": 2, - "s_req_http_minor": 3, - "__WGLEW_ARB_pixel_format_float": 2, - "INT_MAX": 1, - "values": 30, - "i_SELECT_RF_STRING_INIT_NC": 1, - "__pyx_v_weight_pos": 1, - "h_matching_transfer_encoding_chunked": 3, - "get": 4, - "wglGenlockSourceEdgeI3D": 1, - "A3": 2, - "PyCFunction": 3, - "F00": 1, - "*__pyx_n_s__x_data_ptr": 1, - "PyInt_AsUnsignedLongMask": 1, - "git__calloc": 3, - "has_non_ascii": 1, - "WGLEW_I3D_swap_frame_usage": 1, - "git_iterator_current_is_ignored": 2, - "alloc": 6, - "SIGTERM": 1, - "REDIS_VERSION": 4, - "npy_uint16": 1, - "WGL_TRANSPARENT_EXT": 1, - "tail": 12, - "HPE_HEADER_OVERFLOW": 1, - "__ref": 6, - "<rf_localmem.h>": 2, - "rfString_Prepend": 2, - "onto": 7, - "<=>": 16, - "pg_data_t": 1, - "STDOUT_FILENO": 2, - "uv__process_open_stream": 2, - "__wglewGetGPUInfoAMD": 2, - "ob": 14, - "GLushort": 3, - "doc_size": 6, - "initServer": 2, - "loop": 9, - "*__pyx_n_s__w": 1, - "indegree": 1, - "s2P": 2, - "server.lua_client": 1, - "PFNWGLGETVIDEODEVICENVPROC": 2, - "__pyx_t_5numpy_cdouble_t": 1, - "rpopCommand": 1, - "byte": 6, - "WGL_SWAP_COPY_ARB": 1, - "CONNECTION": 4, - "arch_disable_nonboot_cpus_begin": 2, - "server.pubsub_patterns": 4, - "/R_Zero": 2, - "*tmp": 1, - "#include": 149, - "__pyx_v_verbose": 1, - "*__pyx_vtabptr_7sklearn_12linear_model_8sgd_fast_EpsilonInsensitive": 1, - "i_SELECT_RF_STRING_COUNT1": 1, - "*__pyx_k_tuple_9": 1, - "i_FILE_": 16, - "nSize": 4, - "keyptrDictType": 2, - "timeCommand": 2, - "sha1_to_hex": 8, - "rfFReadLine_UTF8": 5, - "s_header_value_lws": 3, - "strncat": 1, - "npy_clongdouble": 1, - "ruby_obj": 11, - "REDIS_CLUSTER_OK": 1, - "dataType": 1, - "iHeight": 2, - "node_online": 1, - "cpu_online": 5, - "server.ipfd": 9, - "server.saveparams": 2, - "*line": 1, - "WGL_GPU_FASTEST_TARGET_GPUS_AMD": 1, - "cmd_bundle": 1, - "npy_uint32": 1, - "GFP_KERNEL": 1, - "dictSdsKeyCompare": 6, - "*__pyx_n_s__n_features": 1, - "*__pyx_n_s__eta0": 1, - "bigger": 3, - "CHAR": 2, - "WGL_AUX9_ARB": 1, - "*__pyx_empty_bytes": 1, - "sd_markdown": 6, - "pm_notifier": 1, - "_cpu_up": 3, - "move": 12, - "aeDeleteEventLoop": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_25SquaredEpsilonInsensitive_4dloss": 1, - "S_ISDIR": 1, - "PFNWGLRELEASETEXIMAGEARBPROC": 2, - "method": 39, - "what": 1, - "HUGE_VAL": 1, - "REDIS_ZSET_MAX_ZIPLIST_VALUE": 1, - "*__pyx_n_s__np": 1, - "__pyx_k__eta0": 1, - "syncCommand": 1, - "__WGLEW_I3D_swap_frame_usage": 2, - "i_NPSELECT_RF_STRING_FIND1": 1, - "trace_argv_printf": 3, - "HPE_STRICT": 1, - "sdsAllocSize": 1, - "buflen": 3, - "wglGetVideoDeviceNV": 1, - "wglReleaseImageBufferEventsI3D": 1, - "i_rfString_Create": 3, - "WGL_NUMBER_OVERLAYS_ARB": 1, - "validateUTF8": 3, - "will": 3, - "<i;j+=4)>": 2, - "wglewGetExtension": 1, - ";": 5439, - "__PYX_BUILD_PY_SSIZE_T": 2, - "fopen": 3, - "object.parsed": 4, - "parse_object": 1, - "git_vector_foreach": 4, - "HPBUFFERARB": 12, - "PyNumber_Index": 1, - "PPC_SHA1": 1, - "__Pyx_RaiseBufferFallbackError": 1, - "buff": 95, - "incrbyfloatCommand": 1, - "new_file.oid": 7, - "commit_list_sort_by_date": 2, - "rdbRemoveTempFile": 1, - "C7": 1, - "__inline__": 1, - "@endcpp": 1, - "__Pyx_BufFmt_StackElem*": 2, - "peel_to_type": 1, - "szres": 8, - "remove": 1, - "server.repl_transfer_lastio": 1, - "*__pyx_ptype_7sklearn_5utils_11seq_dataset_SequentialDataset": 1, - "__WGLEW_H__": 1, - "unlikely": 54, - "WGL_ARB_render_texture": 2, - "i_LIMSELECT_RF_STRING_AFTERV1": 1, - "mkd_string": 2, - "cmd_update_ref": 1, - "__wglewGetCurrentReadDCARB": 2, - "...": 127, - "__pyx_v_n_iter": 1, - "<linux/kthread.h>": 1, - "doc": 6, - "*hGpu": 1, - "<sys/types.h>": 2, - "PyUnicode_Type": 2, - "task_struct": 5, - "__wglewBindVideoDeviceNV": 2, - "git_iterator": 8, - "cpu_add_remove_lock": 3, - "MKD_TOC": 1, - "*24": 1, - "REDIS_HZ*10": 1, - "options.flags": 4, - "printf": 4, - "gets": 1, - "anetPeerToString": 1, - "depending": 1, - "WGL_SHARE_ACCUM_EXT": 1, - "*dateptr": 1, - "PySequence_GetSlice": 2, - "git_diff_delta": 19, - "PyList_GET_ITEM": 3, - "NULL": 330, - "fflush": 2, - "PyFloat_Check": 2, - "listRewind": 2, - "hgetCommand": 1, - "fl": 8, - "cmd_pack_redundant": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_plain_sgd": 1, - "unicode": 2, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Classification": 1, - "WGL_RED_SHIFT_ARB": 1, - "run_builtin": 2, - "*pathspec": 2, - "shared.cnegone": 1, - "http_method": 4, - "*1024*64": 1, - "shared.bulkhdr": 1, - "term_signal": 3, - "RF_UTF16_BE//": 2, - "cfg": 6, - "*__Pyx_ImportModule": 1, - "max": 4, - "cmd_diff_tree": 1, - "cmd_diff_index": 1, - "__pyx_f": 42, - "*optionsP": 8, - "memtest": 2, - "act.sa_handler": 1, - "RF_HEXL_US": 8, - "PY_MINOR_VERSION": 1, - "piAttributes": 4, - "main": 3, - "i_SELECT_RF_STRING_INIT1": 1, - "server.stat_fork_time": 2, - "commit_graft_alloc": 4, - "included": 2, - "__pyx_t_1": 69, - "stdout": 5, - "means": 1, - "aofRewriteBufferSize": 2, - "iVideoBuffer": 2, - "DECLARE_HANDLE": 6, - "*pool": 3, - "**__pyx_pyargnames": 3, - "incrementallyRehash": 2, - "xDC00": 4, - "B4": 1, - "old_src": 1, - "ySrc": 1, - "WGL_I3D_image_buffer": 2, - "__pyx_k__epsilon": 1, - "REDIS_SHARED_INTEGERS": 1, - "wglQueryFrameCountNV": 1, - "it": 12, - "i_SELECT_RF_STRING_AFTER0": 1, - "__Pyx_ErrRestore": 1, - "PyTuple_SET_ITEM": 6, - "inline": 3, - "RE_LOCALMEMSTACK_INSUFFICIENT": 8, - "REDIS_REPL_SYNCIO_TIMEOUT": 1, - "PySequence_GetItem": 3, - "*__pyx_n_s__numpy": 1, - "<IO/rf_unicode.h>": 1, - "*pop_commit": 1, - "WGL_ARB_pbuffer": 2, - "__pyx_PyFloat_AsFloat": 1, - "__raw_notifier_call_chain": 1, - "debugCommand": 1, - "WGLEWContextStruct": 2, - "wglQueryMaxSwapGroupsNV": 1, - "i_NPSELECT_RF_STRING_FWRITE": 1, - "setup_work_tree": 1, - "git_hash_buf": 1, - "i_rfLMSX_WRAP11": 2, - "beg": 10, - "s_req_first_http_minor": 3, - "*method_strings": 1, - "REDIS_REPL_TRANSFER": 2, - "proc": 14, - "i_READ_CHECK": 20, - "WITH_THREAD": 1, - "cmd_diff_files": 1, - "rb_cObject": 1, - "wglGetPixelFormatAttribfvEXT": 1, - "git_tree": 4, - "__Pyx_PrintOne": 1, - "on_message_complete": 1, - "__wglewAllocateMemoryNV": 2, - "i_rfString_ScanfAfter": 3, - "WGL_AUX1_ARB": 1, - "property": 1, - "gperf_case_strncmp": 1, - "matcher": 3, - "_cpu_down": 3, - "write_unlock_irq": 1, - "srcP": 6, - "time": 10, - "data.stream": 7, - "i_SELECT_RF_STRING_AFTERV16": 1, - "*sb": 7, - "PyTuple_New": 3, - "i_LIMSELECT_RF_STRING_BEFOREV1": 1, - "PFNWGLGETCURRENTREADDCEXTPROC": 2, - "server.unixtime": 10, - "cmd_for_each_ref": 1, - "L": 1, - "*__pyx_n_s__dtype": 1, - "*o": 8, - "server.cluster.state": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_ModifiedHuber": 1, - "CMIT_FMT_DEFAULT": 1, - "exact": 6, - "link_ref": 2, - "cpu_hotplug_disable_before_freeze": 2, - "tasks_frozen": 4, - "server.stat_keyspace_misses": 2, - "*revision": 1, - "rfFReadLine_UTF32BE": 1, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Classification": 7, - "warning": 1, - "imag": 2, - "*o2": 2, - "SOCK_NONBLOCK": 2, - "WGL_TYPE_RGBA_FLOAT_ARB": 1, - "*__pyx_n_s__n_samples": 1, - "i_SELECT_RF_STRING_BEFOREV6": 1, - "arch_enable_nonboot_cpus_end": 2, - "res": 4, - "bSize": 4, - "redisGitDirty": 3, - "i_SELECT_RF_STRING_BEFOREV18": 1, - "WINAPI": 119, - "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_Regression": 3, - "s_dead": 10, - "HVIDEOOUTPUTDEVICENV": 2, - "uEdge": 2, - "llist_mergesort": 1, - "strict": 2, - "prefixcmp": 3, - "PyList_GET_SIZE": 5, - "LOWER": 7, - "seconds": 2, - "zremrangebyscoreCommand": 1, - "uv__pipe2": 1, - "*vec": 1, - "*__pyx_vtab": 3, - "CYTHON_CCOMPLEX": 12, - "memory": 4, - "INT": 3, - "delta": 54, - "self": 9, - "cpumask_clear_cpu": 5, - "SIGILL": 1, - "STRBUF_INIT": 1, - "cmd_cherry": 1, - "__sun__": 1, - "pp_title_line": 1, - "out_notify": 3, - "n/": 3, - "WGL_TEXTURE_1D_ARB": 1, - "__wglewMakeAssociatedContextCurrentAMD": 2, - "__pyx_n_s__loss": 2, - "xrealloc": 2, - "find_block_tag": 1, - "__cpu_up": 1, - "comm": 1, - "0": 11, - "de": 12, - "ob_size": 1, - "cmd_tar_tree": 1, - "git_diff_workdir_to_tree": 1, - "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_Hinge": 2, - "dictCreate": 6, - "sharedObjectsStruct": 1, - "UF_MAX": 3, - "pathspec.strings": 1, - "REDIS_MASTER": 2, - "objectCommand": 1, - "match": 16, - "wglSendPbufferToVideoNV": 1, - "WGL_VIDEO_OUT_STACKED_FIELDS_2_1": 1, - "git_vector_swap": 1, - "cmd_ls_remote": 2, - "__Pyx_PyInt_AsSize_t": 1, - "bad": 1, - "__pyx_k_2": 1, - "y": 14, - "s_req_http_HTT": 3, - "REDIS_DEFAULT_DBNUM": 1, - "renameCommand": 1, - "__Pyx_DOCSTR": 2, - "cmd_remote": 1, - "configCommand": 1, - "srcLevel": 1, - "__wglewDestroyPbufferARB": 2, - "PFNWGLSWAPINTERVALEXTPROC": 2, - "__pyx_k__weight_neg": 1, - "git__size_t_powerof2": 1, - "bufgrow": 1, - "UTF8_BOM": 1, - "GPERF_CASE_STRNCMP": 1, - "While": 2, - "F_UPGRADE": 3, - "PFNWGLDESTROYIMAGEBUFFERI3DPROC": 2, - "path": 20, - "zincrbyCommand": 1, - "*bufptr": 1, - "i_SELECT_RF_STRING_BETWEEN4": 1, - "Insufficient": 2, - "hashslot": 3, - "getRandomHexChars": 1, - "*http_errno_description": 1, - "WGL_ACCELERATION_EXT": 1, - "#define": 911, - "A9": 2, - "eventLoop": 2, - "WGL_TEXTURE_RECTANGLE_NV": 1, - "WGLEW_NV_present_video": 1, - "__wglewGetGPUIDsAMD": 2, - "WGL_PBUFFER_WIDTH_ARB": 1, - "__GNUC__": 7, - "__pyx_k__g": 1, - "server.aof_flush_postponed_start": 2, - "expires": 3, - "wglCreateAssociatedContextAMD": 1, - "WGL_EXT_create_context_es2_profile": 2, - "**tb": 1, - "Py_buffer": 6, - "server.pubsub_channels": 2, - "install": 1, - "in_merge_bases": 1, - "WGL_NO_ACCELERATION_ARB": 1, - "PyCFunction_Check": 3, - "pretty_print_commit": 1, - "PyObject": 276, - "WGL_TEXTURE_CUBE_MAP_NEGATIVE_Y_ARB": 1, - "cpu_present_mask": 2, - "hGpu": 1, - "__pyx_k__dloss": 1, - "__pyx_k__weight_pos": 1, - "c_ru.ru_stime.tv_usec/1000000": 1, - "i_SELECT_RF_STRING_REMOVE2": 1, - "rfFgetc_UTF32LE": 4, - "swap": 9, - "CALLBACK_NOTIFY": 10, - "/1000000": 2, - "dict": 11, - "cb": 1, - "bool": 6, - "*kwds2": 1, - "extern": 37, - "]": 597, - "server.rdb_filename": 4, - "h_upgrade": 4, - "__wglewQuerySwapGroupNV": 2, - "is_complex": 1, - "git_extract_argv0_path": 1, - "show_notes": 1, - "cmd_rev_list": 1, - "depends": 1, - "task_cpu": 1, - "server.port": 7, - "iEntries": 2, - "parse_commit_buffer": 3, - "yajl_free": 1, - "BITS_PER_LONG": 2, - "__MUTEX_INITIALIZER": 1, - "value": 9, - "*__pyx_f": 1, - "npy_float64": 1, - "*link": 1, - ".mod": 1, - "srand": 1, - "WGL_BIND_TO_TEXTURE_RECTANGLE_RGB_NV": 1, - "piAttribList": 4, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_SquaredLoss": 5, - "double": 126, - "__Pyx_PyUnicode_READ": 2, - "WGL_TRANSPARENT_BLUE_VALUE_ARB": 1, - "rb_respond_to": 1, - "server.cluster.configfile": 1, - "__wglewDisableFrameLockI3D": 2, - "WGL_PBUFFER_LARGEST_ARB": 1, - "uRate": 2, - "CMIT_FMT_EMAIL": 1, - "h_transfer_encoding": 5, - "*param": 1, - "PFNWGLBINDVIDEODEVICENVPROC": 2, - "wglEnumGpusNV": 1, - "cmd_bisect__helper": 1, - "kind": 1, - "rfLMS_MacroEvalPtr": 2, - "PFNWGLGETCURRENTREADDCARBPROC": 2, - "description": 1, - "merge_remote_util": 1, - "WGLEW_I3D_gamma": 1, - "rfString_Iterate_End": 4, - "WGL_DRAW_TO_WINDOW_ARB": 1, - "server.repl_serve_stale_data": 2, - "__Pyx_RaiseNeedMoreValuesError": 1, - "*sbc": 3, - "stack": 6, - "WGLEW_NV_DX_interop": 1, - "__pyx_t_5numpy_longlong_t": 1, - "BLOB_H": 2, - "*funcname": 1, - "__WGLEW_ATI_pixel_format_float": 2, - "Py_ssize_t": 35, - "KERN_ERR": 5, - "task_unlock": 1, - "zcountCommand": 1, - "wglCreateImageBufferI3D": 1, - "*d": 1, - "*str": 1, - "i_rfLMS_WRAP2": 5, - "A": 11, - "abort": 1, - "__wglewBindSwapBarrierNV": 2, - "__pyx_pw_7sklearn_12linear_model_8sgd_fast_12LossFunction_1loss": 1, - "__Pyx_PyInt_AsLongDouble": 1, - "flags_extended": 2, - "*index_data_ptr": 2, - "i_rfLMSX_WRAP4": 11, - "header_value": 6, - "sprintf": 10, - "*1024*32": 1, - "setrangeCommand": 1, - "git_vector_insert": 4, - "grafts_replace_parents": 1, - "WGL_CONTEXT_COMPATIBILITY_PROFILE_BIT_ARB": 1, - "__Pyx_PyInt_AsUnsignedShort": 1, - "rfString_IterateB_End": 1, - "strlen": 17, - "i_RFUI8_": 28, - "sections": 11, - "clientData": 1, - "enc_type": 1, - "PFNWGLSETGAMMATABLEI3DPROC": 2, - "true": 73, - "rndr_newbuf": 2, - "cpu_hotplug_pm_sync_init": 2, - "bitcountCommand": 1, - "wglDestroyImageBufferI3D": 1, - "rfString_Assign_char": 2, - "going": 1, - "afterstrP": 2, - "container": 17, - "WGL_I3D_digital_video_control": 2, - "**commit_graft": 1, - "__pyx_k__n_iter": 1, - "UL": 1, - "cmd_cherry_pick": 1, - "foff_rft": 2, - "for_each_online_cpu": 1, - "Functions": 1, - "PFNWGLSETPBUFFERATTRIBARBPROC": 2, - "__Pyx_DECREF": 20, - "*line_separator": 1, - "__WGLEW_ARB_pbuffer": 2, - "querybuf": 6, - "PFNWGLRELEASEVIDEODEVICENVPROC": 2, - "wglMakeContextCurrentEXT": 1, - "*format": 2, - "REDIS_CALL_FULL": 1, - "server.cluster_enabled": 6, - "HTTP_PARSER_STRICT": 5, - "rfString_KeepOnly": 2, - "rfString_Copy_chars": 2, - "__pyx_k__dataset": 1, - "pretty_print_context": 6, - "RF_REALLOC": 9, - "else//": 14, - "wglBindVideoCaptureDeviceNV": 1, - "*sub": 1, - "representation": 2, - "how": 1, - "%": 2, - "WGL_GENLOCK_SOURCE_DIGITAL_SYNC_I3D": 1, - "git_hash_update": 1, - "pattern": 3, - "most": 3, - "*arg": 1, - "sequence": 6, - "SIGKILL": 2, - "read": 1, - "<String/rfc_string.h>": 2, - "wglSetPbufferAttribARB": 1, - "elapsed*remaining_bytes": 1, - "bBlock": 1, - "n": 70, - "*reduce_heads": 1, - "rfString_Tokenize": 2, - "*format_subject": 1, - "exit": 20, - "addReplySds": 3, - "i_ARG2_": 56, - "s_res_or_resp_H": 3, - "eta": 4, - "REDIS_UNBLOCKED": 1, - "execCommand": 2, - "OBJ_BLOB": 3, - "PyErr_Format": 4, - "#endif": 236, - "WGL_DIGITAL_VIDEO_GAMMA_CORRECTED_I3D": 1, - "handle": 10, - "diff_delta__from_two": 2, - "options.cwd": 2, - "long*": 2, - "attribList": 2, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Log": 1, - "rfString_ToInt": 1, - "PyBytes_GET_SIZE": 1, - "sigtermHandler": 2, - "http_cb": 3, - "HTTP_PARSER_ERRNO_LINE": 2, - "yajl_lex_free": 1, - "occurences": 5, - "close": 13, - "__pyx_v_rho": 1, - "PyBytes_DecodeEscape": 1, - "INT_MIN": 1, - "rfString_PruneStart": 2, - "rfString_Create_i": 2, - "GIT_DIFFCAPS_USE_DEV": 1, - "bioPendingJobsOfType": 1, - "*ctx": 5, - "WGL_GPU_RAM_AMD": 1, - "CALLBACK_NOTIFY_": 3, - "uv__stream_close": 1, - "__PYX_EXTERN_C": 3, - "num_min": 1, - "WGL_SAMPLE_BUFFERS_EXT": 1, - "WGL_SWAP_UNDEFINED_ARB": 1, - "intern": 1, - "i_rfLMSX_WRAP17": 2, - "on_headers_complete": 3, - "__pyx_empty_tuple": 3, - "server.client_max_querybuf_len": 1, - "shared": 1, - "__WGLEW_NV_video_output": 2, - "WGL_VIDEO_OUT_STACKED_FIELDS_1_2": 1, - "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_Classification": 1, - "WGL_ACCUM_ALPHA_BITS_ARB": 1, - "parse_commit": 3, - "wglCreatePbufferARB": 1, - "WGL_TYPE_RGBA_EXT": 1, - "WGL_TRANSPARENT_ARB": 1, - "UPGRADE": 4, - "TRANSFER_ENCODING": 4, - "proccess": 2, - "privdata": 8, - "WGLEWContext": 1, - "commit_list_insert": 2, - "robj*": 3, - "__wglewCreateImageBufferI3D": 2, - "utf8": 36, - "__pyx_t_5numpy_int64_t": 1, - "byteLength": 197, - "notify_cpu_starting": 1, - "res2": 2, - "keylistDictType": 4, - "*u": 2, - "indent": 1, - "cpowf": 1, - "wglChoosePixelFormatEXT": 1, - "server.aof_delayed_fsync": 2, - "MKCOL": 2, - "__pyx_v_y": 46, - "git_iterator_advance": 5, - "set_cpu_present": 1, - "resetServerSaveParams": 2, - "shared.slowscripterr": 2, - ".len": 3, - "PyUnicode_READ": 1, - "i_SELECT_RF_STRING_REPLACE5": 1, - "*read_graft_line": 1, - "WGLEW_ARB_create_context_profile": 1, - "i_SELECT_RF_STRING_BEFORE2": 1, - "server.list_max_ziplist_value": 1, - "REDIS_HASH_MAX_ZIPLIST_VALUE": 1, - "child_watcher": 5, - "__wglewQueryVideoCaptureDeviceNV": 2, - "member": 2, - "__pyx_v_fit_intercept": 1, - "parser": 334, - "server.hash_max_ziplist_entries": 1, - "server.logfile": 8, - "cmd_mailinfo": 1, - "__pyx_vtabstruct_7sklearn_5utils_11seq_dataset_ArrayDataset": 2, - "*tree": 3, - "__pyx_base.loss": 1, - "time_t": 4, - "syslog": 1, - "RF_HEXG_US": 8, - "bIndex": 5, - "*da": 1, - "body_mark": 2, - "HTTP_LOCK": 1, - "different": 1, - "exit_cb": 3, - "CMIT_FMT_USERFORMAT": 1, - "#endif//include": 1, - "s_body_identity_eof": 4, - "UNSUBSCRIBE": 2, - "__Pyx_PyInt_AsUnsignedChar": 1, - "oid_for_workdir_item": 2, - "write": 7, - "__pyx_base.__pyx_vtab": 1, - "lineno": 1, - "__Pyx_c_difff": 2, - "pow": 2, - "WGL_SUPPORT_OPENGL_EXT": 1, - "logging": 5, - "section": 14, - "setsid": 2, - "level": 12, - "index": 58, - "server.slowlog_log_slower_than": 1, - "signed": 5, - "/1000": 1, - "SHA1_Init": 4, - "should": 2, - "v1": 38, - "WGL_BIND_TO_TEXTURE_DEPTH_NV": 1, - "__WGLEW_I3D_image_buffer": 2, - "REDIS_SHARED_SELECT_CMDS": 1, - "git_attr_fnmatch": 4, - "__wglewGetGammaTableParametersI3D": 2, - "i_FORMAT_": 2, - "*__pyx_k_codeobj_19": 1, - "sd_markdown_free": 1, - "task_pid_nr": 1, - "lsetCommand": 1, - "options.exit_cb": 1, - "uv_stream_t*": 2, - "PFNWGLENUMGPUDEVICESNVPROC": 2, - "*temp": 1, - "__pyx_k_8": 1, - "WGL_CONTEXT_ES2_PROFILE_BIT_EXT": 1, - "LPVOID": 3, - "short": 6, - "*oitem": 2, - "<sys/utsname.h>": 1, - "C2": 1, - "development": 1, - "PyObject_TypeCheck": 3, - "PyString_FromString": 2, - "deltas": 8, - "PFNWGLLOCKVIDEOCAPTUREDEVICENVPROC": 2, - "width": 3, - "i_SELECT_RF_STRING_FIND": 1, - "<rf_options.h>": 1, - "reflog_walk_info": 1, - "*__pyx_n_s__dloss": 1, - "h_connection_close": 4, - "stdio_count": 7, - "wglEnumGpusFromAffinityDCNV": 1, - "<stdio.h>": 7, - "cmd_prune": 1, - "Py_UCS4": 2, - "WGL_TRANSPARENT_VALUE_EXT": 1, - "i_NPSELECT_RF_STRING_AFTERV1": 1, - "__Pyx_XINCREF": 2, - "__pyx_n_s__y": 6, - "times": 1, - "WGL_COLOR_SAMPLES_NV": 1, - "PyExc_SystemError": 3, - "cmd_hash_object": 1, - "*__pyx_k_tuple_15": 1, - "full_path": 3, - "*reencode_commit_message": 1, - "rfString_PruneMiddleB": 2, - "GLuint*": 3, - "check": 8, - "WGL_GPU_VENDOR_AMD": 1, - "parse_table_row": 1, - "WNOHANG": 1, - "renamenxCommand": 1, - "wglEnumerateVideoCaptureDevicesNV": 1, - "head": 3, - "@endinternal": 1, - "every": 1, - "WGLEW_ATI_render_texture_rectangle": 1, - "s_start_res": 5, - "init_cpu_present": 1, - "microseconds": 1, - "on": 4, - "to_cpumask": 15, - "nb": 2, - "perc": 3, - "WGL_VIDEO_OUT_FRAME": 1, - "WGLEW_EXT_pbuffer": 1, - "WGL_SHARE_ACCUM_ARB": 1, - "__Pyx_c_powf": 3, - "rfString_Replace": 3, - "key2": 5, - "*diff_delta__alloc": 1, - "__WGLEW_ARB_create_context": 2, - "rb_str_buf_new": 2, - "s1P": 2, - "__WGLEW_EXT_create_context_es2_profile": 2, - "want": 3, - "*__pyx_kp_u_13": 1, - "rfString_Fwrite_fUTF8": 1, - "*__pyx_vtabptr_7sklearn_5utils_13weight_vector_WeightVector": 1, - "__Pyx_PyInt_AsUnsignedLongLong": 1, - "tag_len": 3, - "ch": 145, - "zmalloc_get_fragmentation_ratio": 1, - "watchCommand": 2, - "i_SELECT_RF_STRING_FIND2": 1, - "WGL_PIXEL_TYPE_ARB": 1, - "WGL_SAMPLES_3DFX": 1, - "c": 252, - "this": 5, - "Py_TPFLAGS_HAVE_INDEX": 1, - "cpumask_empty": 1, - "server.aof_buf": 3, - "ops": 1, - "GIT_DELTA_UNTRACKED": 5, - "WGL_VIDEO_OUT_FIELD_1": 1, - "__Pyx_PyInt_AsUnsignedLong": 1, - "uptime": 2, - "PURGE": 2, - "puRed": 2, - "cmd_check_ref_format": 1, - "MASK_DECLARE_1": 3, - "bytesN=": 1, - "daemonize": 2, - "msetnxCommand": 1, - "cmd_replace": 1, - "PFNWGLRELEASEPBUFFERDCARBPROC": 2, - "*__pyx_v_seed": 1, - "s_req_line_almost_done": 4, - "LOG_ERROR": 64, - "upgrade": 3, - "__VA_ARGS__": 66, - "#undef": 7, - "__pyx_k__Q": 1, - "git_buf_cstr": 1, - "unhex": 3, - "dictSlots": 3, - "likely": 22, - "wglReleaseTexImageARB": 1, - "<=0)>": 1, - "setbitCommand": 1, - "which": 1, - "__Pyx_XDECREF": 20, - "*commit_list_get_next": 1, - "PyUnicode_CheckExact": 1, - "properly": 2, - "*ln": 3, - "saddCommand": 1, - "wglGetFrameUsageI3D": 1, - "__pyx_t_5numpy_longdouble_t": 1, - "uint32_t": 144, - "WGL_NO_TEXTURE_ARB": 2, - "pgdat": 3, - "PyErr_Occurred": 9, - "WGL_TEXTURE_RECTANGLE_ATI": 1, - "object": 10, - "rfString_StripStart": 3, - "__Pyx_PyInt_AsSignedInt": 1, - "fseeko64": 1, - "WGL_3DL_stereo_control": 2, - "die_errno": 3, - "*__pyx_n_s__x_ind_ptr": 1, - "*__pyx_pw_7sklearn_12linear_model_8sgd_fast_12LossFunction_1loss": 3, - "__pyx_k__float64": 1, - "BUG_ON": 4, - "dictObjKeyCompare": 2, - "keysCommand": 1, - "pulCounterPbuffer": 1, - "45": 1, - "GIT_DIFF_INCLUDE_IGNORED": 1, - "PFNWGLGETGENLOCKSOURCEDELAYI3DPROC": 2, - "shutdownCommand": 2, - "RF_LITTLE_ENDIAN": 23, - "uv_pipe_t*": 1, - "make": 3, - "i_SELECT_RF_STRING_AFTERV11": 1, - "wglGetPixelFormatAttribfvARB": 1, - "mm_cpumask": 1, - "rfString_FindBytePos": 10, - "rfUTF8_Encode": 4, - "*read_commit_extra_headers": 1, - "__pyx_pf_7sklearn_12linear_model_8sgd_fast_12SquaredHinge___init__": 1, - "cmd_add": 2, - "WGL_DRAW_TO_PBUFFER_EXT": 1, - "CLOSED_CONNECTION": 1, - "scan": 4, - "free": 62, - "aeSetBeforeSleepProc": 1, - "WGL_UNIQUE_ID_NV": 1, - "please": 1, - "i_THISSTR_": 60, - "iPixelFormat": 6, - "smaller": 1, - "RF_BITFLAG_ON": 5, - "RE_UTF8_INVALID_CODE_POINT": 2, - "pubsub_patterns": 2, - "setDictType": 1, - "UV_INHERIT_FD": 3, - "*lookup_commit_reference": 2, - "__Pyx_Buf_DimInfo": 2, - "MARKDOWN_GROW": 1, - "to_read": 6, - "INVALID_EOF_STATE": 1, - "CC": 1, - "__WGLEW_NV_video_capture": 2, - "WGL_NV_DX_interop": 2, - "j_": 6, - "i_SELECT_RF_STRING_BEFOREV13": 1, - "rfFback_UTF16BE": 2, - "rfString_Fwrite": 2, - "was_alias": 3, - "works": 1, - "server.stop_writes_on_bgsave_err": 2, - "LOG_WARNING": 1, - "npy_longdouble": 1, - "__wglewBindTexImageARB": 2, - "**commit_list_append": 2, - "cpu_hotplug.lock": 8, - "WGLEW_I3D_swap_frame_lock": 1, - "*strides": 1, - "WGL_DIGITAL_VIDEO_CURSOR_ALPHA_FRAMEBUFFER_I3D": 1, - "parse_inline": 1, - "freeMemoryIfNeeded": 2, - "listMatchPubsubPattern": 1, - "<limits.h>": 2, - "pfd": 2, - "__pyx_t_5numpy_uint_t": 1, - "i_NPSELECT_RF_STRING_BEFOREV0": 1, - "WGL_AUX5_ARB": 1, - "__Pyx_PyInt_FromSize_t": 1, - "num_online_cpus": 2, - "getrangeCommand": 2, - "cmd_log": 1, - "__fastcall": 2, - "git_odb__hashfd": 1, - "terminate": 1, - "name.release": 1, - "PY_FORMAT_SIZE_T": 1, - "bytesN": 98, - "UV__F_NONBLOCK": 5, - "__pyx_f_7sklearn_12linear_model_8sgd_fast_max": 1, - "diff": 93, - "__pyx_pf_7sklearn_12linear_model_8sgd_fast_12LossFunction_loss": 1, - "HPE_INVALID_STATUS": 3, - "*active_writer": 1, - "REDIS_OK": 23, - "git_strarray": 2, - "*__pyx_n_s__shuffle": 1, - "codeBuffer": 9, - "Non": 2, - "zunionInterGetKeys": 4, - "git_submodule": 1, - "*__pyx_t_2": 3, - "merge_remote_desc": 3, - "WGL_CUBE_MAP_FACE_ARB": 1, - "KEEP_ALIVE": 4, - "__pyx_L1_error": 33, - "+": 551, - "i_rfString_Create_nc": 3, - "find": 1, - "http_data_cb": 4, - "Py_INCREF": 10, - "PyFloat_AsDouble": 2, - "rstr": 24, - "jsonText": 4, - "HPE_LF_EXPECTED": 1, - "__pyx_r": 39, - "numerator": 1, - "PyString_ConcatAndDel": 1, - "t": 32, - "HPE_INVALID_CONTENT_LENGTH": 4, - "watcher": 4, - "PFNWGLSWAPBUFFERSMSCOMLPROC": 2, - "__wglewCreateDisplayColorTableEXT": 2, - "is_valid_array": 1, - "*prefix": 7, - "FOR": 11, - "allsections": 12, - "cmd_name_rev": 1, - "PY_SSIZE_T_CLEAN": 1, - "GLbitfield": 1, - "__pyx_t_float_complex": 27, - "free_link_refs": 1, - "out_release": 3, - "take_cpu_down": 2, - "argList": 8, - "server.loading_loaded_bytes": 3, - "PyTuple_CheckExact": 1, - "WGL_EXT_multisample": 2, - "#error": 4, - "__WGLEW_3DL_stereo_control": 2, - "end_tag": 4, - "A4": 2, - "F01": 1, - "zunionstoreCommand": 1, - "PFNWGLQUERYVIDEOCAPTUREDEVICENVPROC": 2, - "access": 2, - "__wglewGetGenlockSourceEdgeI3D": 2, - "__pyx_k__b": 1, - "tasklist_lock": 2, - "hincrbyCommand": 1, - "__pyx_v_threshold": 2, - "cmd_stripspace": 1, - "cmd_send_pack": 1, - "__pyx_L5_argtuple_error": 12, - "s_req_http_HTTP": 3, - "hkeysCommand": 1, - "UNLOCK": 2, - "wglewContextIsSupported": 2, - "readFrequency": 1, - "pFrameCount": 1, - "WGL_ACCELERATION_ARB": 1, - "HTTP_GET": 1, - "xC0": 3, - "PROPPATCH": 2, - "i_SUBSTR_": 6, - "created": 1, - "PyObject_GetAttrString": 2, - "__Pyx_PySequence_DelSlice": 2, - "tag_size": 3, - "*keepLength": 1, - "RLIMIT_NOFILE": 2, - "WGL_NUMBER_PIXEL_FORMATS_EXT": 1, - "config_bool": 5, - "cell_start": 5, - "thisPos": 8, - "*name": 12, - "server.dbnum": 8, - "pulCounterOutputPbuffer": 1, - "Flags": 1, - "server.runid": 3, - "http_parser": 13, - "__wglewQueryFrameCountNV": 2, - "*Y_data_ptr": 2, - "i_SELECT_RF_STRING_COUNT2": 1, - "wglRestoreBufferRegionARB": 1, - "WGL_STEREO_EXT": 1, - "WGL_PBUFFER_LOST_ARB": 1, - "__pyx_k__x_ind_ptr": 1, - "_exit": 6, - "pp_commit_easy": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_13ModifiedHuber_loss": 1, - "*modname": 1, - "loadAppendOnlyFile": 1, - "*__pyx_n_s__is_hinge": 1, - "strcmp": 20, - "PFNWGLSETSTEREOEMITTERSTATE3DLPROC": 2, - "wglMakeAssociatedContextCurrentAMD": 1, - "cpu_hotplug_enable_after_thaw": 2, - "*doc": 2, - "PFNWGLGETEXTENSIONSSTRINGEXTPROC": 2, - "rfUTF8_IsContinuationByte2": 1, - "PySequenceMethods": 1, - "arch_enable_nonboot_cpus_begin": 2, - "AOF_FSYNC_EVERYSEC": 1, - "PFNWGLCREATEAFFINITYDCNVPROC": 2, - "yajl_alloc": 1, - "id": 13, - "PyErr_WarnEx": 1, - "WGLEW_ARB_pixel_format": 1, - "PFNWGLSETGAMMATABLEPARAMETERSI3DPROC": 2, - "strncasecmp": 2, - "shared.unsubscribebulk": 1, - "server.lruclock": 2, - "__Pyx_PySequence_GetSlice": 2, - "h_matching_connection": 3, - "wglBindVideoDeviceNV": 1, - "PyUnicode_FromString": 2, - "WGL_EXT_framebuffer_sRGB": 2, - "wglCreateBufferRegionARB": 1, - "s_chunk_parameters": 3, - "listLength": 14, - "barrier": 1, - "float*": 1, - "errno": 20, - "EXEC_BIT_MASK": 3, - "Py_TPFLAGS_CHECKTYPES": 1, - "__stop_machine": 1, - "dictFind": 1, - "///": 4, - "PFNWGLSAVEBUFFERREGIONARBPROC": 2, - "PFNWGLBLITCONTEXTFRAMEBUFFERAMDPROC": 2, - "PyFrozenSet_Type": 1, - "__Pyx_LocalBuf_ND": 1, - "xDBFF": 4, - "PyFloat_AS_DOUBLE": 1, - "*get_merge_bases_many": 1, - "WGL_MIPMAP_LEVEL_ARB": 1, - "i_NVrfString_Create": 3, - "WGL_FRONT_LEFT_ARB": 1, - "WGL_STENCIL_BITS_ARB": 1, - "*cfg": 2, - "PyBytes_ConcatAndDel": 1, - "HTTP_RESPONSE": 3, - "GIT_ENOTFOUND": 1, - "PFNWGLGETPBUFFERDCEXTPROC": 2, - "__Pyx_XGIVEREF": 5, - "<": 219, - "s_req_host_start": 8, - "set_cpu_active": 1, - "SA_SIGINFO": 1, - "name.machine": 1, - "retcode": 3, - "__pyx_v_c": 1, - "active": 2, - "server.bpop_blocked_clients": 2, - "beforeSleep": 2, - "__pyx_k__x_data_ptr": 1, - "with": 9, - "mutex_lock": 5, - "UV_IGNORE": 2, - "*__pyx_n_s__weight_pos": 1, - "wglGenlockSampleRateI3D": 1, - "__pyx_code_cache": 1, - "REDIS_REPL_WAIT_BGSAVE_END": 1, - "zscoreCommand": 1, - "UV_INHERIT_STREAM": 2, - "C8": 1, - "__pyx_filename": 51, - "PyString_Type": 2, - "*__pyx_builtin_RuntimeError": 1, - "*__pyx_kp_s_1": 1, - "dxObject": 2, - ".asize": 2, - "cpu_relax": 1, - "WGLEW_ARB_extensions_string": 1, - "opaque": 8, - "server.stat_keyspace_hits": 2, - "i_SELECT_RF_STRING_AFTERV5": 1, - "i_NPSELECT_RF_STRING_REPLACE0": 1, - "__Pyx_PyInt_AsSignedLong": 1, - "wglGetGammaTableI3D": 1, - "strtoul": 2, - "*__Pyx_GetItemInt_Generic": 1, - ".size": 2, - "CALLBACK_DATA_": 4, - "dictObjHash": 2, - "*__pyx_empty_tuple": 1, - "WGL_AUX_BUFFERS_EXT": 1, - "wglSetGammaTableParametersI3D": 1, - "to_py_func": 6, - "__wglewBindDisplayColorTableEXT": 2, - "*__pyx_v_weights": 1, - "__read_mostly": 5, - "effectively": 1, - "clusterCron": 1, - "zcardCommand": 1, - "PFNWGLCREATEBUFFERREGIONARBPROC": 2, - "__Pyx_INCREF": 6, - "*parser": 9, - "PyUnicode_Decode": 1, - "UV_STREAM_READABLE": 2, - "__wglewDXLockObjectsNV": 2, - "*logmsg_reencode": 1, - "PyUnicode_Check": 1, - "WGL_DEPTH_BUFFER_BIT_ARB": 1, - "rfString_ToDouble": 1, - "h_matching_content_length": 3, - "clear_commit_marks": 1, - "uid": 2, - "__Pyx_c_pow": 3, - "unlink": 3, - "*val": 4, - "*process": 1, - "npy_intp": 1, - "GPERF_DOWNCASE": 1, - "url": 4, - "on_##FOR": 4, - "write_lock_irq": 1, - "mkd_document": 1, - "strstr": 2, - "WGL_DRAW_TO_BITMAP_ARB": 1, - "*entry": 2, - "WGL_TRANSPARENT_INDEX_VALUE_ARB": 1, - "CYTHON_COMPILING_IN_CPYTHON": 6, - "*repo": 7, - "hmem": 3, - "renameGetKeys": 2, - "wglDisableFrameLockI3D": 1, - "WGLEW_ATI_pixel_format_float": 1, - "12": 1, - "i": 410, - "work_bufs": 8, - "MKD_NOIMAGE": 1, - "RE_FILE_READ": 2, - "__pyx_skip_dispatch": 6, - "MKD_NOHTML": 1, - "*slave": 2, - "oom": 3, - "<sys/resource.h>": 2, - "git_repository_workdir": 1, - "__pyx_t_2": 21, - "command": 2, - "__pyx_k__RuntimeError": 1, - "WGL_SHARE_DEPTH_ARB": 1, - "__pyx_doc_7sklearn_12linear_model_8sgd_fast_12LossFunction_2dloss": 1, - "string": 18, - "columns": 3, - "HPE_CB_headers_complete": 1, - ".soft_limit_seconds": 3, - "dictGenHashFunction": 5, - "uv_handle_t*": 1, - "ids": 1, - "GIT_VERSION": 1, - "git_setup_gettext": 1, - "*__pyx_n_s__n_iter": 1, - "SIGHUP": 1, - "B5": 1, - "dstLevel": 1, - "PyBytes_CheckExact": 1, - "*__pyx_r": 6, - "might_sleep": 1, - "O_WRONLY": 2, - "writeFrequency": 1, - "PyBytes_AsString": 2, - "__Pyx_c_quot": 2, - "PyObject_HEAD_INIT": 1, - "is_repository_shallow": 1, - "rpushCommand": 1, - "i_SELECT_RF_STRING_AFTER1": 1, - "i_ENCODING_": 4, - "hi": 5, - "__WGLEW_EXT_swap_control": 2, - "tag_end": 7, - ".lock": 1, - "WGL_SUPPORT_GDI_EXT": 1, - "length": 58, - "i_NVrfString_Init_nc": 3, - "i_rfLMSX_WRAP12": 2, - "HTTP_TRACE": 1, - "ANET_ERR": 2, - "GET": 2, - "WGL_TEXTURE_DEPTH_COMPONENT_NV": 1, - "//@": 1, - "i_NPSELECT_RF_STRING_AFTER": 1, - "*node": 2, - "calloc": 1, - "normal_url_char": 3, - "schedule": 1, - "rfString_Length": 5, - "__pyx_t_5numpy_int_t": 1, - "WGL_ARB_make_current_read": 2, - "argcp": 2, - "HTTP_DELETE": 1, - "h_transfer_encoding_chunked": 4, - "init_cpu_online": 1, - "wglewInit": 1, - "wglGetMscRateOML": 1, - "i_SELECT_RF_STRING_AFTERV17": 1, - "i_NPSELECT_RF_STRING_COUNT0": 1, - "i_rfString_Strip": 3, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_14Classification_loss": 1, - "same": 1, - "server.assert_file": 1, - "M": 1, - "WGL_TRANSPARENT_RED_VALUE_ARB": 1, - "*p": 9, - "WGLEW_GET_VAR": 49, - "HTTP_MKCOL": 2, - "server.aof_rewrite_time_start": 2, - "PFNWGLWAITFORMSCOMLPROC": 2, - "fprintf": 18, - "HANDLE*": 3, - "bytepos": 12, - "__pyx_v_t": 1, - "s_chunk_data_done": 3, - "call": 1, - "smoveCommand": 1, - "RF_SUCCESS": 14, - "i_SELECT_RF_STRING_REPLACE0": 1, - "options": 62, - "giterr_set": 1, - "wglChoosePixelFormatARB": 1, - "i_NPSELECT_RF_STRING_BEFOREV": 1, - "xffff": 1, - "numP": 1, - "i_OPTIONS_": 28, - "i_SELECT_RF_STRING_BEFOREV7": 1, - "__Pyx_PyBool_FromLong": 1, - "other": 16, - "ret": 142, - "__Pyx_IternextUnpackEndCheck": 1, - "h_C": 3, - "WGLEW_I3D_image_buffer": 1, - "server.stat_evictedkeys": 3, - "server": 1, - "wglewGetContext": 4, - "git_diff_workdir_to_index": 1, - "lstrP": 1, - "HTTP_BOTH": 1, - "HPVIDEODEV": 4, - "int64_t": 2, - "PyLong_CheckExact": 1, - "*md": 1, - "*view": 2, - "git_mutex_unlock": 2, - "cmd_upload_archive_writer": 1, - "*internal": 1, - "cpumask_set_cpu": 5, - "keepLength": 2, - "LL*": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Hinge_2loss": 1, - "i_NPSELECT_RF_STRING_BEFORE": 1, - "2010": 1, - "__cpuinit": 3, - "WGL_ACCUM_GREEN_BITS_EXT": 1, - "*item": 10, - "git_pool_strcat": 1, - "xD": 1, - "npy_int8": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_SquaredHinge": 1, - "DECREF": 1, - "done": 1, - "hsetCommand": 1, - "UV_NAMED_PIPE": 2, - "http_errno": 11, - "HTTP_ERRNO_MAP": 3, - "WGL_SUPPORT_OPENGL_ARB": 1, - "*__pyx_n_s____test__": 1, - "xBF": 2, - "1": 2, - "hdc": 16, - "mm": 1, - "won": 1, - "WGL_FLOAT_COMPONENTS_NV": 1, - "__pyx_t_5numpy_ulong_t": 1, - "WGL_EXT_swap_control": 2, - "hglrc": 5, - "byteIndex_": 12, - "category": 2, - "sq_length": 2, - "HGLRC": 14, - "cmd_revert": 1, - "GLenum": 8, - "__pyx_k_3": 1, - "z": 47, - "*__pyx_vtabptr_7sklearn_12linear_model_8sgd_fast_SquaredHinge": 1, - "SetupContext": 3, - "RF_CR": 1, - "REDIS_REPL_CONNECTED": 3, - "listSetMatchMethod": 1, - "rfString_Init_f": 2, - "UINT*": 6, - "__wglewRestoreBufferRegionARB": 2, - "sP": 2, - "server.monitors": 2, - "server.commands": 1, - "dictEnableResize": 1, - "RE_UTF16_NO_SURRPAIR": 2, - "PyTypeObject": 25, - "i_ARG1_": 56, - "PyBytes_Type": 1, - "stride": 2, - "calls": 4, - "cmd_pack_refs": 1, - "__WGLEW_ARB_buffer_region": 2, - "bracket": 4, - "Py_TYPE": 7, - "uFlags": 1, - "<linux/proc_fs.h>": 1, - "estimateObjectIdleTime": 1, - "localtime": 1, - "i_SELECT_RF_STRING_BETWEEN5": 1, - "htmlblock_end_tag": 1, - "alloc_frozen_cpus": 2, - "cpumask_of": 1, - "EV_A_": 1, - "WGL_GREEN_SHIFT_ARB": 1, - "i_LIMSELECT_RF_STRING_AFTERV": 1, - "LL*1024*1024": 2, - "listDelNode": 1, - "WGL_OML_sync_control": 2, - "cmd_ls_files": 1, - "__pyx_k__h": 1, - "__Pyx_CodeObjectCacheEntry*": 2, - "foundN": 10, - "expireatCommand": 1, - "xFF0FFFF": 1, - "WGL_SHARE_STENCIL_ARB": 1, - "disable_nonboot_cpus": 1, - "just": 1, - "//if": 1, - "iDeviceIndex": 1, - "trace_repo_setup": 1, - "register_commit_graft": 2, - "_fseeki64": 1, - "void": 279, - "__WGLEW_AMD_gpu_association": 2, - "listFirst": 2, - "Cython": 1, - "CYTHON_INLINE": 65, - "safely": 1, - "PyTuple_GET_ITEM": 15, - "noMatch": 8, - "WGL_VIDEO_OUT_COLOR_AND_DEPTH_NV": 1, - "s_req_host_v6_start": 7, - "0x5a": 1, - "listNext": 2, - "server.repl_ping_slave_period": 1, - "HGPUNV": 5, - "git_cached_obj_freeptr": 1, - "PyLong_AsUnsignedLongLongMask": 1, - "CONFIG_IA64": 1, - "xF000": 2, - "we": 10, - "on_header_value": 1, - "character": 11, - "WGL_TEXTURE_2D_ARB": 1, - "*pfAttribFList": 2, - "STRIP_EXTENSION": 1, - "__Pyx_PyNumber_Int": 1, - "i_SELECT_RF_STRING_REMOVE3": 1, - "<linux/notifier.h>": 1, - "REDIS_CLIENT_LIMIT_CLASS_NORMAL": 3, - "cc": 24, - "CHECKOUT": 2, - "*__Pyx_GetName": 1, - "std": 8, - "PyString_Repr": 1, - "HPE_CB_##FOR": 2, - "*encoding": 2, - "git__is_sizet": 1, - "unless": 1, - "GIT_DIFF_REVERSE": 3, - "PySequence_Check": 1, - "Python": 2, - "temp.byteLength": 1, - "WGL_GPU_NUM_PIPES_AMD": 1, - "wglGetPixelFormatAttribivEXT": 1, - "minPos": 17, - "wglBindVideoImageNV": 1, - "GLfloat": 3, - "hDc": 6, - "old_file.size": 1, - "GLint": 18, - "num": 24, - "bufputc": 2, - "memmove": 1, - "slaveid": 3, - "aof_fsync": 1, - "dictType": 8, - "need_8bit_cte": 2, - "WGLEW_EXT_pixel_format_packed_float": 1, - "rfString_Append": 5, - "WGLEW_ARB_create_context_robustness": 1, - "*diff_delta__dup": 1, - "*pattern": 1, - "cpu_all_bits": 2, - "cpu_to_node": 1, - "LUA_GCCOUNT": 1, - "HEADER_OVERFLOW": 1, - "__wglewCreateAssociatedContextAMD": 2, - "*git_cache_try_store": 1, - "getrusage": 2, - "server.stat_peak_memory": 5, - "querybuf_peak": 2, - "close_fd": 2, - "__pyx_k__L": 1, - "delta_type": 8, - "bioInit": 1, - "wglDeleteDCNV": 1, - "pager_program": 1, - "*__pyx_ptype_7sklearn_5utils_11seq_dataset_ArrayDataset": 1, - "reexecute_byte": 7, - "aeGetApiName": 1, - "server.masterport": 2, - "server.bindaddr": 2, - "struct_alignment": 1, - "REDIS_SHUTDOWN_SAVE": 1, - "populateCommandTable": 2, - "publishCommand": 1, - "srandmemberCommand": 1, - "http_parser_execute": 2, - "GIT_OBJ_BLOB": 1, - "i_SELECT_RF_STRING_CREATELOCAL": 1, - "xmalloc": 2, - "slave": 3, - "unblockClientWaitingData": 1, - "zinterstoreCommand": 1, - "pool": 12, - "GIT_DELTA_MODIFIED": 3, - "__WGLEW_ATI_render_texture_rectangle": 2, - "fail": 19, - "**diff_ptr": 1, - "__PYX_HAVE_API__sklearn__linear_model__sgd_fast": 1, - "nr_calls": 9, - "mutex": 1, - "authenticated": 3, - "clientsCronResizeQueryBuffer": 2, - "WGLEW_3DL_stereo_control": 1, - "sq_item": 2, - "i_NPSELECT_RF_STRING_REMOVE0": 1, - "<stddef.h>": 2, - "register_shallow": 1, - "non": 1, - "LOG_DEBUG": 1, - "INVALID_FRAGMENT": 1, - "wglEnumerateVideoDevicesNV": 1, - "keepstr": 5, - "i_rfLMS_WRAP3": 4, - "rfString_Iterate_Start": 6, - "UTF": 17, - "__WGLEW_EXT_framebuffer_sRGB": 2, - "B": 9, - "xFC0": 4, - "RF_NEWLINE_CRLF": 1, - "__pyx_k_20": 1, - "CONNECT": 2, - "GIT_ATTR_FNMATCH_NEGATIVE": 1, - "rfString_Beforev": 4, - "*one": 1, - "i_rfLMSX_WRAP5": 9, - "*pSize": 1, - "LPVOID*": 1, - "nosave": 2, - "exitFromChild": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12SquaredHinge_2loss": 1, - "ARRAY_SIZE": 1, - "WGL_DRAW_TO_PBUFFER_ARB": 1, - "WGLEW_ARB_framebuffer_sRGB": 1, - "idle_cpu": 1, - "i_SELECT_RF_STRING_INIT_NC0": 1, - "__wglewDestroyDisplayColorTableEXT": 2, - "PFNWGLLOADDISPLAYCOLORTABLEEXTPROC": 2, - "wglIsEnabledGenlockI3D": 1, - "*matcher": 1, - "CONTENT_LENGTH": 4, - "NOTIFY_DONE": 1, - "server.lastbgsave_status": 3, - "setexCommand": 1, - "LOCK": 2, - "WGL_NV_render_depth_texture": 2, - "uVideoSlot": 2, - "i_NVrfString_CreateLocal": 3, - "wglGetContextGPUIDAMD": 1, - "shared.colon": 1, - "PFNWGLBINDTEXIMAGEARBPROC": 2, - "cast": 1, - "maxCount": 1, - "i_SELECT_RF_STRING_CREATE_NC": 1, - "cpu_online_mask": 3, - "MKD_AUTOLINK": 1, - "redisDb": 3, - "pingCommand": 2, - "port": 7, - "WGL_BACK_COLOR_BUFFER_BIT_ARB": 1, - "size": 120, - "count": 17, - "__WGLEW_EXT_extensions_string": 2, - "MSEARCH": 1, - "PFNWGLDXREGISTEROBJECTNVPROC": 2, - "hDevice": 9, - "*buffer": 6, - "megabytes": 1, - "REDIS_MAXIDLETIME": 1, - "o1": 7, - "PyObject*": 24, - "is_unicode": 1, - "i_rfString_Replace": 6, - "WGL_I3D_gamma": 2, - "setup_path": 1, - "PyUnicode_KIND": 1, - "__pyx_k__y": 1, - "REDIS_LUA_TIME_LIMIT": 1, - "REDIS_SHARED_BULKHDR_LEN": 1, - "rfString_Init_nc": 4, - "contiuing": 1, - "charPos": 8, - "WGL_TRANSPARENT_GREEN_VALUE_ARB": 1, - "PyInt_AsSsize_t": 3, - "WGL_BIND_TO_TEXTURE_RGB_ARB": 1, - "*__pyx_vtabptr_7sklearn_12linear_model_8sgd_fast_Hinge": 1, - "__WGLEW_EXT_make_current_read": 2, - "__pyx_f_7sklearn_12linear_model_8sgd_fast_min": 1, - "encoding": 14, - "WGL_NEED_SYSTEM_PALETTE_EXT": 1, - "sigaction": 6, - "dictGetKey": 4, - "&": 442, - "endinternal": 1, - "cmd_checkout_index": 1, - "deleted": 1, - "*var": 1, - "rfFtell": 2, - "WGL_CONTEXT_LAYER_PLANE_ARB": 1, - "lrangeCommand": 1, - "always": 2, - "yajl_status_to_string": 1, - "WGL_CONTEXT_PROFILE_MASK_ARB": 1, - "__Pyx_TypeInfo": 2, - "__wglewGetDigitalVideoParametersI3D": 2, - "<rf_utils.h>": 2, - "o": 80, - "WGLEW_AMD_gpu_association": 1, - "not_shallow_flag": 1, - "PyBytes_Size": 1, - "s_header_almost_done": 6, - ".hcpu": 1, - "signal": 2, - "i_OUTSTR_": 6, - "*column_data": 1, - "NOTIFY_OK": 1, - "REDIS_LIST_MAX_ZIPLIST_VALUE": 1, - "__wglewLockVideoCaptureDeviceNV": 2, - "PFNWGLQUERYCURRENTCONTEXTNVPROC": 2, - "*__pyx_n_s__order": 1, - "ctime.seconds": 2, - "__Pyx_StructField_": 2, - "WGL_FRAMEBUFFER_SRGB_CAPABLE_EXT": 1, - "cb.table_cell": 3, - "temp.bytes": 1, - "uptime/": 1, - "REDIS_EXPIRELOOKUPS_PER_CRON/4": 1, - "PFNWGLDELETEDCNVPROC": 2, - "WGLEW_GET_FUN": 120, - "WGL_GAMMA_EXCLUDE_DESKTOP_I3D": 1, - "PyLong_FromUnicode": 1, - "PFNWGLGETGAMMATABLEI3DPROC": 2, - "sscanf": 1, - "PGPU_DEVICE": 1, - "pathspec": 15, - "decode": 6, - "pipe": 1, - "attempting": 2, - "replstate": 1, - "wglWaitForMscOML": 1, - "PY_SSIZE_T_MAX": 1, - "PyNumber_InPlaceDivide": 1, - "rndr_popbuf": 2, - "server.clients_to_close": 1, - "UF_HOST": 3, - "WGL_ARB_framebuffer_sRGB": 2, - "*commit_list_insert": 1, - "cpu_maps_update_done": 9, - "RF_OPTION_FGETS_READBYTESN": 5, - "fuPlanes": 1, - "i_rfLMSX_WRAP18": 2, - "WGL_EXT_display_color_table": 2, - "cover": 1, - "RUSAGE_SELF": 1, - "commandTableDictType": 2, - "RF_HEXLE_US": 4, - "rfFback_UTF8": 2, - "PFNWGLBINDDISPLAYCOLORTABLEEXTPROC": 2, - "commit_graft": 13, - "FOR##_mark": 7, - "find_lock_task_mm": 1, - "wglewIsSupported": 2, - "*pMissedFrames": 1, - "#endif//": 1, - "addReplyErrorFormat": 1, - "xf": 1, - "decrbyCommand": 1, - "__int8": 2, - "alloc_nr": 1, - "start_state": 1, - "present": 2, - "*__pyx_n_s__power_t": 1, - "*v": 3, - "__WGLEW_NV_multisample_coverage": 2, - "<<": 56, - "*__pyx_k_tuple_5": 1, - "__Pyx_PyUnicode_READ_CHAR": 2, - "s_req_http_H": 3, - "MKD_NOTABLES": 1, - "RE_UTF8_ENCODING": 2, - "*1000000": 1, - "GLuint": 9, - "strcasecmp": 13, - "__wglewGetMscRateOML": 2, - "wglResetFrameCountNV": 1, - "i_SELECT_RF_STRING_BEFORE3": 1, - "server.sofd": 9, - "rfUTILS_SwapEndianUS": 10, - "ENOSYS": 1, - "WGL_STEREO_ARB": 1, - "shared.nullbulk": 1, - "O_RDONLY": 1, - "FILE": 3, - "git_repository": 7, - "*db": 3, - "*__pyx_vtabptr_7sklearn_5utils_11seq_dataset_CSRDataset": 1, - "flag": 1, - "current": 5, - "RF_UTF32_BE": 3, - "RF_FAILURE": 24, - "REDIS_REPL_NONE": 1, - "scriptCommand": 2, - "giterr_clear": 1, - "a_date": 2, - "search": 1, - "shared.subscribebulk": 1, - "tryResizeHashTables": 2, - "wglReleasePbufferDCARB": 1, - "rfString_Afterv": 4, - "rfFgets_UTF32BE": 1, - "run_add_interactive": 1, - "__Pyx_DelAttrString": 2, - "many": 1, - "offset": 1, - "lifo": 1, - "Memory": 4, - "typeCommand": 1, - "http_parser_type": 3, - "wglGetGPUIDsAMD": 1, - "suboffsets": 1, - "shared.wrongtypeerr": 1, - "WGL_COLOR_BITS_EXT": 1, - "PFNWGLGENLOCKSOURCEEDGEI3DPROC": 2, - "nmode": 10, - "header_end": 7, - "O_CREAT": 2, - "save_commit_buffer": 3, - "PyInt_AsUnsignedLongLongMask": 1, - "flags": 89, - "bytePos": 23, - "v2": 26, - "wglReleaseVideoImageNV": 1, - "__Pyx_minusones": 1, - "7": 1, - "PFNWGLDESTROYDISPLAYCOLORTABLEEXTPROC": 2, - "*ver_minor": 2, - "h_general": 23, - "byteI": 7, - "CB_url": 1, - "PFNWGLENUMGPUSNVPROC": 2, - "__wglewReleaseTexImageARB": 2, - "oitem": 29, - "cmd_show_ref": 1, - "__pyx_t_7sklearn_12linear_model_8sgd_fast_DOUBLE": 4, - "REDIS_MAXMEMORY_VOLATILE_RANDOM": 1, - "REDIS_RUN_ID_SIZE": 2, - "CB_body": 1, - "srcTarget": 1, - "__WGLEW_EXT_pbuffer": 2, - "return": 529, - "rfFgets_UTF16BE": 2, - "by": 1, - "pid_t": 2, - "C3": 1, - "dtype": 1, - "possible": 2, - "shared.masterdownerr": 2, - "lindexCommand": 1, - "i_rfString_StripEnd": 3, - "PyNumber_Check": 2, - "use_noid": 2, - "HTTP_PROPPATCH": 1, - "raw_notifier_chain_unregister": 1, - "rcVirtualScreen": 1, - "s_res_HTTP": 3, - "way": 1, - "act.sa_mask": 2, - "robj": 7, - "__pyx_L3_error": 18, - "npy_int64": 1, - "run_argv": 2, - "i_NPSELECT_RF_STRING_FWRITE0": 1, - "mem_used": 9, - "extensions": 1, - "PY_VERSION_HEX": 11, - "rfString_Init_fUTF8": 3, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_11SquaredLoss_4__reduce__": 1, - "WGL_ACCESS_WRITE_DISCARD_NV": 1, - "__pyx_t_5numpy_ulonglong_t": 1, - "rfFgetc_UTF16LE": 4, - "__pyx_t_5numpy_long_t": 1, - "cond": 1, - "fit": 3, - "sds": 13, - "WGL_NEED_PALETTE_ARB": 1, - "c.cmd": 1, - "i_rfString_CreateLocal1": 3, - "*type": 4, - "STDERR_FILENO": 2, - "arity": 3, - "needing": 1, - "WGL_AUX_BUFFERS_ARB": 1, - "git_hash_final": 1, - "*__pyx_n_s__weights": 1, - "WGL_BIND_TO_TEXTURE_RGBA_ARB": 1, - "PFNWGLRELEASEVIDEOCAPTUREDEVICENVPROC": 2, - "cmd_version": 1, - "WGL_SWAP_METHOD_EXT": 1, - "old_file.oid": 3, - "PyComplex_Check": 1, - "wglSwapIntervalEXT": 1, - "__Pyx_InitStrings": 1, - "WGLEW_EXT_depth_float": 1, - "KERN_WARNING": 3, - "listAddNodeTail": 1, - "dictSdsHash": 4, - "WGL_GPU_OPENGL_VERSION_STRING_AMD": 1, - "cmd_check_attr": 1, - "*text": 1, - "rfFback_UTF32LE": 2, - "git_iterator_for_index_range": 2, - "nr_parent": 3, - "__Pyx_GetItemInt_List": 1, - "s_res_first_http_minor": 3, - "#string": 1, - "R_NegInf": 2, - "uv_process_kill": 1, - "uint8_t": 6, - "WGLEWContext*": 2, - "d": 16, - "__Pyx_RefNannyAPIStruct": 3, - "i_SELECT_RF_STRING_FIND3": 1, - "__wglewCopyImageSubDataNV": 2, - "afterstr": 5, - "*puBlue": 2, - "CPU_POST_DEAD": 1, - "CPU_TASKS_FROZEN": 2, - "numclients": 3, - "WGL_VIDEO_OUT_FIELD_2": 1, - "PFNWGLDXSETRESOURCESHAREHANDLENVPROC": 2, - "__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Huber___init__": 1, - "rfString_Remove": 3, - "Macros": 1, - "activeExpireCycle": 2, - "PyLong_AS_LONG": 1, - "wglGetPbufferDCARB": 1, - "options.args": 1, - "B0": 1, - "wglQueryFrameLockMasterI3D": 1, - "__pyx_t_5numpy_uintp_t": 1, - "*__pyx_n_s__nonzero": 1, - "sq_norm": 1, - "i_rfString_Count": 5, - "*__pyx_m": 1, - "unhex_val": 7, - "MASK_DECLARE_2": 3, - "ip": 4, - "__wglewDeleteDCNV": 2, - "git_buf_truncate": 1, - "allowComments": 4, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12LossFunction_loss": 2, - "h_CON": 3, - "PFNWGLCREATEASSOCIATEDCONTEXTATTRIBSAMDPROC": 2, - "*from_list": 1, - "String": 11, - "RE_UTF8_INVALID_SEQUENCE_CONBYTE": 6, - "wglDXSetResourceShareHandleNV": 1, - "*output_encoding": 2, - "*kwds": 1, - "git_attr_fnmatch__parse": 1, - "__WGLEW_I3D_digital_video_control": 2, - "__wglewEnumGpusFromAffinityDCNV": 2, - "piValue": 8, - "WGL_BACK_LEFT_ARB": 1, - "prefix.size": 1, - "normally": 1, - "e.t.c.": 1, - "function_name": 1, - "__pyx_k__any": 1, - ".watched_keys": 1, - "WIFSIGNALED": 2, - "remainder": 3, - "WGL_BIND_TO_VIDEO_RGB_AND_DEPTH_NV": 1, - "i_RIGHTSTR_": 6, - "WGL_STEREO_EMITTER_ENABLE_3DL": 1, - "46": 1, - "cb.table_row": 2, - "rfString_Create": 4, - "i_SELECT_RF_STRING_AFTERV12": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12SquaredHinge_4dloss": 1, - "not": 6, - "switch": 46, - "clean": 1, - "trackOperationsPerSecond": 2, - "lpopCommand": 1, - "R_Zero": 2, - "__pyx_t_5numpy_uint8_t": 1, - "Py_DECREF": 2, - "otherP": 4, - "RF_LMS": 6, - "uv__new_sys_error": 1, - "WGL_ACCESS_READ_WRITE_NV": 1, - "nongit_ok": 2, - "*module_name": 1, - "msg": 10, - "hmsetCommand": 1, - "WGL_TEXTURE_RGB_ARB": 1, - "PY_LONG_LONG": 5, - "Unicode": 1, - "WGL_CONTEXT_CORE_PROFILE_BIT_ARB": 1, - "*rev1": 1, - "keepChars": 4, - "wglSwapLayerBuffersMscOML": 1, - "i_SELECT_RF_STRING_BEFOREV14": 1, - "commit_graft_nr": 5, - "git_vector_init": 3, - "RF_OPTION_SOURCE_ENCODING": 30, - "WGL_COVERAGE_SAMPLES_NV": 1, - "cmd_merge": 1, - "limit.rlim_cur": 2, - "updateLRUClock": 3, - "createStringObject": 11, - "i_NPSELECT_RF_STRING_BEFOREV1": 1, - "__Pyx_PyInt_AsSignedShort": 1, - "__Pyx_RefNannyFinishContext": 14, - "pager_config": 3, - "YA_FREE": 2, - "wglDXUnregisterObjectNV": 1, - "Refu": 2, - "*__pyx_n_s__count": 1, - "s_chunk_data": 3, - "AE_READABLE": 2, - "migrateCommand": 1, - "INVALID_CONSTANT": 1, - "__cdecl": 2, - "old_prefix": 2, - "PyFloat_CheckExact": 1, - "PySet_CheckExact": 2, - "PyInt_CheckExact": 1, - "*body_mark": 1, - ".dict": 9, - "RE_UTF8_INVALID_SEQUENCE_INVALID_BYTE": 6, - "<windows.h>": 1, - "__Pyx_PyInt_AsChar": 1, - "wglAssociateImageBufferEventsI3D": 1, - "__pyx_print_kwargs": 1, - "__pyx_k____test__": 1, - "__wglewDisableGenlockI3D": 2, - "BUFFER_SPAN": 9, - "REDIS_STRING": 31, - "POLLIN": 1, - "GIT_VECTOR_GET": 2, - "cmd_commit_tree": 1, - "__Pyx_PyInt_AsUnsignedInt": 1, - "WGL_CONTEXT_ROBUST_ACCESS_BIT_ARB": 1, - "replace": 3, - "backgroundRewriteDoneHandler": 1, - "cmd_reflog": 1, - "*__pyx_t_3": 3, - "PyUnicode_GET_SIZE": 1, - "wglGetCurrentReadDCEXT": 1, - "server.lpushCommand": 1, - "O_APPEND": 2, - "HTTP_PARSER_ERRNO": 10, - "onto_pool": 7, - "da": 2, - "subValues": 8, - "flushallCommand": 1, - "*http_errno_name": 1, - "__Pyx_PyNumber_InPlaceDivide": 2, - "pp_user_info": 1, - "commit_extra_header": 7, - "RF_MATCH_WORD": 5, - "*__pyx_kp_u_6": 1, - "cb.doc_header": 2, - "http_errno_description": 1, - "__set_current_state": 1, - "clientsCronHandleTimeout": 2, - "i_SELECT_RF_STRING_INIT": 1, - ".data": 1, - "HPE_INVALID_INTERNAL_STATE": 1, - "group": 3, - "__WGLEW_3DFX_multisample": 2, - "__pyx_refnanny": 8, - "u": 18, - "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_Huber": 2, - "*cache": 4, - "i_NPSELECT_RF_STRING_AFTERV": 1, - "PFNWGLGETGENLOCKSAMPLERATEI3DPROC": 2, - "__pyx_obj_7sklearn_5utils_11seq_dataset_SequentialDataset": 5, - "lastBytePos": 4, - "<thisstr->": 1, - "server.arch_bits": 3, - "cmd_struct": 4, - "GIVEREF": 1, - "cmd": 46, - "src": 16, - "HTTP_MERGE": 1, - "RF_UTF16_BE": 7, - "shared.sameobjecterr": 1, - "__wglewEnumGpusNV": 2, - "PyArray_Descr": 1, - "*__pyx_n_s_21": 1, - "byteLength*2": 1, - "null": 4, - "flushSlavesOutputBuffers": 1, - "sdsRemoveFreeSpace": 1, - "dbsizeCommand": 1, - "cmd_merge_base": 1, - "PFNWGLRESTOREBUFFERREGIONARBPROC": 2, - "__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Hinge___init__": 1, - "PyUnicodeObject": 1, - "i_SELECT_RF_STRING_BETWEEN0": 1, - "WGL_EXT_pixel_format": 2, - "reading": 1, - "hdelCommand": 1, - "*nitem": 2, - "*suboffsets": 1, - "__pyx_f_7sklearn_12linear_model_8sgd_fast_sqnorm": 1, - "A5": 3, - "F02": 1, - "PyUnicode_IS_READY": 1, - "mod": 13, - "UTF16": 4, - "LOG_NDELAY": 1, - "find_commit_subject": 2, - "*__pyx_ptype_7sklearn_5utils_13weight_vector_WeightVector": 1, - "__pyx_k__c": 1, - "s_req_schema_slash_slash": 6, - "charBLength": 5, - "s_res_http_major": 3, - "acceptTcpHandler": 1, - "redisLog": 33, - "__Pyx_BUILTIN_MODULE_NAME": 2, - "PyBytes_FromFormat": 1, - "__pyx_f_7sklearn_12linear_model_8sgd_fast_10Regression_loss": 1, - "yajl_buf_alloc": 1, - "rfStringX_FromString_IN": 1, - "rdbSave": 1, - "listCreate": 6, - "xC1": 1, - "*__pyx_v_self": 52, - "**next": 2, - "cmd_verify_tag": 1, - "__Pyx_NAMESTR": 2, - "table": 1, - "*__pyx_n_s__y": 1, - "orSize": 5, - "F0": 1, - "maybe_modified": 2, - "__pyx_k__epoch": 1, - "__Pyx_PyInt_AsSignedChar": 1, - "*old_iter": 2, - "PyBytes_AS_STRING": 1, - "HTTP_SUBSCRIBE": 2, - "dstTarget": 1, - "npy_int16": 1, - "i_PLUSB_WIN32": 2, - "*nr_calls": 1, - "mkd_cleanup": 2, - "uv__stream_open": 1, - "WGL_BIND_TO_VIDEO_RGBA_NV": 1, - "cmd_update_server_info": 1, - "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_LossFunction": 5, - "__pyx_v_shuffle": 1, - "format_commit_message": 1, - "cmd_rerere": 1, - "compiling": 2, - "WGLEW_I3D_digital_video_control": 1, - "i_SELECT_RF_STRING_COUNT3": 1, - "F_CONNECTION_CLOSE": 3, - "GIT_MODE_PERMS_MASK": 1, - "handle_internal_command": 3, - "define": 14, - "xff": 3, - "peek": 5, - "CB_header_value": 1, - "*__pyx_filename": 7, - "PyObject_Call": 6, - "row_work": 4, - "MIN": 3, - "UTF32": 4, - "getClientOutputBufferMemoryUsage": 1, - "__wglewSwapBuffersMscOML": 2, - "PFNWGLBEGINFRAMETRACKINGI3DPROC": 2, - "*__pyx_b": 1, - "npy_long": 1, - "wglGetPixelFormatAttribivARB": 1, - "__pyx_v_epsilon": 2, - "i_NPSELECT_RF_STRING_FIND": 1, - "cmd_status": 1, - "endianess": 40, - "*__pyx_n_s__weight_neg": 1, - "wglGenlockSourceDelayI3D": 1, - "bufrelease": 3, - "RSTRING_PTR": 2, - "server.stat_rejected_conn": 2, - "getpid": 7, - "opts.pathspec": 2, - "__stdcall": 2, - "wglQueryPbufferEXT": 1, - "header_field_mark": 2, - "*utf32": 1, - "RE_INPUT": 1, - "server.ops_sec_last_sample_time": 3, - "c_ru.ru_utime.tv_usec/1000000": 1, - "redisLogFromHandler": 2, - "__wglewQueryFrameTrackingI3D": 2, - "h_CO": 3, - "rb_rdiscount_toc_content": 2, - "while": 70, - "PFNWGLSETDIGITALVIDEOPARAMETERSI3DPROC": 2, - "IS_ALPHA": 5, - "REDIS_SLOWLOG_MAX_LEN": 1, - "*lookup_commit_reference_gently": 2, - "npy_int32": 1, - "sort_in_topological_order": 1, - "End": 2, - "HTTP_METHOD_MAP": 3, - "WGL_NUM_VIDEO_CAPTURE_SLOTS_NV": 1, - "__Pyx_c_negf": 2, - "rfString_GetChar": 2, - "rfPopen": 2, - "strtol": 2, - "success": 4, - "uv_stdio_container_t*": 4, - "hVideoDevice": 4, - "*sign_commit": 2, - "__pyx_v_intercept_decay": 1, - "WGL_DEPTH_FLOAT_EXT": 1, - "module": 3, - "strcpy": 4, - "WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_RGBA_NV": 1, - "WGL_AUX8_ARB": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_25SquaredEpsilonInsensitive_2loss": 1, - "documentation": 1, - "__pyx_k__Zd": 1, - "git_hash_init": 1, - "__pyx_vtabstruct_7sklearn_5utils_11seq_dataset_SequentialDataset": 4, - "HTTP_MAX_HEADER_SIZE": 2, - "core_initcall": 2, - "RE_UTF8_INVALID_SEQUENCE": 2, - "rfString_Create_fUTF8": 2, - "guards": 2, - "C9": 1, - "__pyx_k__rho": 1, - "c.value": 3, - "*__pyx_kp_s_2": 1, - "PyBoolObject": 1, - "mem_online_node": 1, - "as": 4, - "PyIndex_Check": 2, - "certainly": 3, - "O_RDWR": 2, - "http_parser_init": 2, - "WGL_TEXTURE_FLOAT_RG_NV": 1, - "IS_HEX": 2, - "Check_Type": 2, - "setuid": 1, - "opening": 2, - "i_NPSELECT_RF_STRING_REPLACE1": 1, - "hPbuffer": 14, - "__Pyx_RefNannyDeclarations": 11, - "__Pyx_check_binary_version": 1, - "*diff_delta__merge_like_cgit": 1, - "i_SELECT_RF_STRING_AFTERV6": 1, - "__pyx_k__eta": 1, - "WGLEW_EXT_multisample": 1, - "<linux/mutex.h>": 1, - "codepoint": 47, - "__pyx_k__t": 1, - "i_rfString_Assign": 3, - "rfString_Assign_fUTF8": 2, - "<fcntl.h>": 2, - "diff_prefix_from_pathspec": 4, - "__Pyx_TypeCheck": 1, - "REDIS_REPL_SEND_BULK": 1, - "INVALID_HEADER_TOKEN": 1, - "__wglewFreeMemoryNV": 2, - "fn": 5, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Hinge_4dloss": 1, - "conj": 3, - "CLOSE": 4, - "MKACTIVITY": 2, - "PyString_GET_SIZE": 1, - "diff_delta__merge_like_cgit": 1, - "onto_new": 6, - "*argc": 1, - "s_req_path": 8, - "does": 1, - "wait3": 1, - "<complex>": 1, - "CONFIG_HOTPLUG_CPU": 2, - "__wglewGetVideoDeviceNV": 2, - "wglQueryFrameTrackingI3D": 1, - "notinherited": 1, - "die": 5, - "WGL_DEPTH_BITS_EXT": 1, - "*sha1": 16, - "parse_table_header": 1, - "_zonerefs": 1, - "server.repl_timeout": 1, - "off": 8, - "j": 206, - "notes": 1, - "COMMIT_H": 2, - "*res": 2, - "getNodeByQuery": 1, - "shared.del": 1, - "server.activerehashing": 2, - "WGL_VIDEO_OUT_DEPTH_NV": 1, - "cmd_blame": 2, - "<linux/sched.h>": 1, - "RE_STRING_TOFLOAT": 1, - "LL*1024*1024*1024": 1, - "xstrdup": 2, - "__pyx_t_3": 39, - "__wglewCreatePbufferEXT": 2, - "LOG_NOWAIT": 1, - "commit_list": 35, - "extended": 3, - "bytesConsumed": 2, - "statStr": 6, - "RF_HEXGE_US": 4, - "B6": 1, - "__wglewSetGammaTableParametersI3D": 2, - "WGL_RED_BITS_ARB": 1, - "MASK_DECLARE_8": 9, - "CPU_DOWN_FAILED": 2, - "backwards": 1, - "#pragma": 1, - "__Pyx_c_prodf": 2, - "WGL_FRAMEBUFFER_SRGB_CAPABLE_ARB": 1, - "WGL_STENCIL_BUFFER_BIT_ARB": 1, - "i_SELECT_RF_STRING_AFTER2": 1, - "REDIS_ZSET_MAX_ZIPLIST_ENTRIES": 1, - "ops_sec": 3, - "expired": 4, - "hvalsCommand": 1, - "__wglewChoosePixelFormatARB": 2, - "given": 5, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_SquaredEpsilonInsensitive": 6, - "git_mutex_lock": 2, - "<linux/suspend.h>": 1, - "parents": 4, - "the": 91, - "i_rfLMSX_WRAP13": 2, - "__wglewQueryGenlockMaxSourceDelayI3D": 2, - "__Pyx_c_diff": 2, - "PY_SSIZE_T_MIN": 1, - "WGLEW_EXT_pixel_format": 1, - "*commit_buffer": 2, - "s_req_http_major": 3, - "register_cpu_notifier": 2, - "server.rdb_child_pid": 12, - "monitorCommand": 2, - "uv_process_t": 1, - "WGL_SAMPLE_BUFFERS_ARB": 1, - "cmd_commit": 1, - "__pyx_v_weight_neg": 1, - "WGL_AUX7_ARB": 1, - "codePoint": 18, - "allocate": 1, - "key": 9, - "S_ISREG": 1, - "WGL_ARB_buffer_region": 2, - "server.stat_starttime": 2, - "i_NPSELECT_RF_STRING_COUNT1": 1, - "PyUnicode_READ_CHAR": 1, - "WGLEW_ARB_render_texture": 1, - "stat": 3, - "__wglewGetCurrentAssociatedContextAMD": 2, - "i_SELECT_RF_STRING_AFTERV18": 1, - "PyString_Concat": 1, - "stack_free": 2, - "tcd_param": 2, - "slowlogInit": 1, - "uv_spawn": 1, - "LONG_LONG": 1, - "s_res_http_minor": 3, - "DEFINE_MUTEX": 1, - "hexistsCommand": 1, - "EINVAL": 6, - "INVALID_PATH": 1, - "int8_t": 3, - "__wglewDXRegisterObjectNV": 2, - "zmalloc": 2, - "__pyx_k_10": 1, - "wglSetStereoEmitterState3DL": 1, - "i_SELECT_RF_STRING_REPLACE1": 1, - "OPTIONS": 2, - "i_SELECT_RF_STRING_BEFOREV8": 1, - "PyString_AsStringAndSize": 1, - "zmalloc_used_memory": 8, - "__pyx_t_7sklearn_5utils_13weight_vector_DOUBLE": 2, - "WGL_AUX0_ARB": 1, - "GIT_DIFF_RECURSE_UNTRACKED_DIRS": 1, - "closing": 1, - "name": 28, - "**argnames": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_11SquaredLoss_loss": 1, - "git__malloc": 3, - "sigemptyset": 2, - "shared.messagebulk": 1, - "lnos": 4, - "__Pyx_GetItemInt_Fast": 2, - "queueMultiCommand": 1, - "server.unixsocket": 7, - "err": 38, - "ferror": 2, - "num_max": 1, - "s_res_HTT": 3, - "build_all_zonelists": 1, - "server.masterhost": 7, - "__wglewSendPbufferToVideoNV": 2, - "tp_as_mapping": 3, - "RF_SELECT_FUNC_IF_NARGGT2": 2, - "iWidth": 2, - "*url_mark": 1, - "strncpy": 3, - "pos": 7, - "__pyx_k__verbose": 1, - "*X_indptr_ptr": 1, - "*rcbuffer": 1, - "s_headers_done": 4, - "xE": 2, - "Quitting": 2, - "HTTP_PARSER_VERSION_MINOR": 1, - "Ftelll": 1, - "i_DECLIMEX_": 121, - "PyLongObject": 2, - "__Pyx_GetVtable": 1, - "uv__process_stdio_flags": 2, - "*puGreen": 2, - "commands": 3, - "yajl_callbacks": 1, - "object_type": 1, - "s_req_port": 6, - "CALLBACK_DATA": 10, - "freePubsubPattern": 1, - "shared.plus": 1, - "PFNWGLBINDVIDEOCAPTUREDEVICENVPROC": 2, - "git_more_info_string": 2, - "pathspec.contents": 1, - "*barrier": 1, - "WGL_COLOR_BITS_ARB": 1, - "PyString_Size": 1, - "server.aof_state": 7, - "fread": 12, - "uv__handle_start": 1, - "DWORD*": 1, - "wglDestroyDisplayColorTableEXT": 1, - "PyBytesObject": 1, - "*columns": 2, - "temp.bIndex": 2, - "rusage": 1, - "server.lastsave": 3, - "sinterstoreCommand": 1, - "wglCopyImageSubDataNV": 1, - "__pyx_k_4": 1, - "{": 1528, - "__pyx_k__isinf": 1, - "hsetnxCommand": 1, - "uv__make_socketpair": 2, - "WGL_NV_present_video": 2, - "__WGLEW_NV_DX_interop": 2, - "lookup_commit": 2, - "**type": 1, - "GIT_DIFFCAPS_ASSUME_UNCHANGED": 2, - "git_diff_tree_to_tree": 1, - "PyBuffer_Release": 1, - "GOTREF": 1, - "REDIS_CLIENT_LIMIT_CLASS_SLAVE": 3, - "redisCommandTable": 5, - "undo": 5, - "GIT_DELTA_IGNORED": 5, - "PyString_DecodeEscape": 1, - "rfString_Append_f": 2, - "PyObject_SetAttrString": 2, - "cb.doc_footer": 2, - "server.lua_time_limit": 1, - "UF_SCHEMA": 2, - "manipulation": 1, - "git_mutex_init": 1, - "s_chunk_data_almost_done": 3, - "realloc": 1, - "__pyx_v_alpha": 1, - "WGL_GREEN_BITS_EXT": 1, - "expand_tabs": 1, - "*numberP": 1, - "server.assert_line": 1, - "brpopCommand": 1, - ".soft_limit_bytes": 3, - "field_set": 5, - "RF_String**": 2, - "*__pyx_k_tuple_11": 1, - "__pyx_k__i": 1, - "#if": 92, - "WGL_EXT_depth_float": 2, - "go": 8, - "<linux/export.h>": 1, - "__Pyx_c_eq": 2, - "rfString_Assign_fUTF16": 2, - "__wglewGetPbufferDCEXT": 2, - "chdir": 2, - "WGL_GENLOCK_SOURCE_DIGITAL_FIELD_I3D": 1, - "empty_cell": 2, - "s_header_value_start": 4, - "tv.tv_usec/1000": 1, - "wants": 2, - "decoded": 3, - "__wglewEnumGpuDevicesNV": 2, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_11SquaredLoss_2dloss": 1, - "PFNWGLDESTROYPBUFFEREXTPROC": 2, - "wglBindTexImageARB": 1, - "PFNWGLMAKECONTEXTCURRENTEXTPROC": 2, - "HTTP_STRERROR_GEN": 3, - "cpumask_clear": 2, - "codepoints": 44, - "newLineFound": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_EpsilonInsensitive": 1, - "mem_tofree": 3, - "backgroundSaveDoneHandler": 1, - "dictGetSignedIntegerVal": 1, - "new": 4, - "*__pyx_vtabptr_7sklearn_12linear_model_8sgd_fast_Huber": 1, - "_strnicmp": 1, - "va_arg": 2, - "PFNWGLCOPYIMAGESUBDATANVPROC": 2, - "__wglewEnableFrameLockI3D": 2, - "cmd_prune_packed": 1, - "i_SELECT_RF_STRING_REMOVE4": 1, - "i_rfString_Prepend": 3, - "for_each_process": 2, - "dictRedisObjectDestructor": 7, - "_": 3, - "*hcpu": 3, - "keyobj": 6, - "UV__O_NONBLOCK": 1, - "clearer": 1, - "*next": 6, - "WGL_SWAP_METHOD_ARB": 1, - "git_submodule_lookup": 1, - "HTTP_REPORT": 1, - "server.list_max_ziplist_entries": 1, - "querybuf_size/": 1, - "server.daemonize": 5, - "PY_MAJOR_VERSION": 13, - "Py_True": 2, - "PFNWGLGETGENLOCKSOURCEI3DPROC": 2, - "*keyobj": 2, - "start": 10, - "argc": 26, - "set_cpu_possible": 1, - "server.aof_rewrite_perc": 3, - "i_SELECT_RF_STRING_FWRITE0": 1, - "max_count": 1 - }, - "old-FORTRAN": { - "N.LT.0": 1, - "CNORMR": 2, - ".ne.": 1, - "S2I*CSR": 1, - "JSIZE": 1, - "CSRR": 9, - ".EQ.": 3, - "CONER": 8, - "NW.NE.0": 1, - ".LE.NVAL": 1, - "E0": 2, - "RZI*PTR": 3, - "clean": 1, - "detected": 1, - "dabs": 2, - "CKI": 17, - "NITMAX": 3, - "IN": 4, - "j": 1, - "dy": 14, - "LARGE": 1, - "C2R": 16, - "KEEP": 2, - "min.": 1, - "S2R*S1I": 2, - "DEXP": 3, - "input": 2, - "January": 1, - "MTYPES": 1, - "PTR": 18, - "CSPNI*S1R": 1, - "CSPNR*S1I": 1, - "WRTMP": 2, - "comment": 1, - "EXPANSION.": 1, - "REMAINDER": 2, - "*4": 1, - "CA.EQ.CB": 1, - "SGET24": 1, - "SUMI": 13, - "TMP1": 20, - "CSGNI*STR": 1, - "TMP2.LE.PIVMIN": 2, - "KL": 15, - "DO": 27, - ".ge.dmin": 2, - "KFLAG": 17, - ".NOT.": 3, - "FINAL_CMP_ERR_I": 2, - "than": 1, - "*D1MACH": 1, - "ZETA1R": 6, - "NZ": 19, - "STI*RAST*RAST": 3, - "AZEXP": 2, - "c": 29, - "SLATMS": 1, - "ZI": 8, - "or": 4, - "external": 1, - "KFNEW": 15, - "S2R*C1R": 1, - "H": 2, - "IDUMMA": 1, - "SLABAD": 1, - "RATIOS": 1, - "P1I": 17, - "PIV_GROWTH_I": 2, - "JI.GT.KFNEW": 1, - "-": 3285, - "NIUNIT": 2, - "Executable": 1, - "SDRVSX": 1, - "UNDERFLOW": 4, - "ELIM": 3, - "STR*P1R": 1, - "NTESTF": 1, - ".le.": 3, - "S2I*C1R": 1, - "GE.NBMIN": 1, - "JP": 8, - "incx.le.0": 1, - "letter": 1, - "S1R*CSSR": 2, - "incx.eq.1": 1, - "CS": 1, - "regardless": 1, - "else": 1, - "logical": 1, - "incx.lt.0": 1, - "P2R": 21, - "D*A": 1, - "NNWORK": 1, - "DOTYPE": 2, - "MIN": 11, - "A": 12, - "constant": 1, - "STI*AT*RAZ": 2, - "NRM_ERR_I": 2, - "Ltd.": 1, - "intrinsic": 1, - "D0/TOL": 1, - "AK": 7, - "NSLCT": 1, - "ZCODE.EQ.233": 2, - "auxiliary": 1, - "DLAEBZ": 1, - "CYI": 8, - "DSIN": 1, - "an": 1, - "FKK": 19, - "/93": 1, - "INTB.GE.145": 2, - "ZERO": 9, - "VS": 2, - "function": 3, - "JI": 103, - "Statements": 1, - "INU.LT.IAZ": 1, - "FLOPS": 1, - "DMAX1": 2, - "*incx": 1, - "INU": 10, - "ESTIMATE": 1, - "HALF*": 2, - "ZETA1D": 1, - "CRSC": 5, - "ITMP1": 15, - "value.": 1, - "S1R": 26, - "ALIM": 5, - "SLATME": 1, - "GO": 59, - "ZSYSVXX": 1, - "PLANE": 2, - "IFN": 3, - "SMLNUM": 4, - "PARAMETER": 8, - "NRHS": 9, - "INTB": 17, - "uses": 1, - "RZR": 8, - "da*dx": 6, - "INFO.EQ.0": 1, - "precision": 1, - "STR*RAST*RAST": 3, - "FLIP": 1, - "IL.EQ.0": 1, - ".GE.0.0": 1, - "CSGN": 2, - "ADD": 2, - "ZS1S2": 3, - "CHARACTER*3": 1, - "that": 1, - "ALGORITHM": 1, - "INTB.LE.250": 2, - "unrolled": 1, - "dx": 13, - "i": 27, - "AP.GT.TST*AK*AK": 1, - "BERR_I": 2, - ".eq.": 3, - "EQUED": 8, - "loop": 1, - "FN*RZI": 1, - "ANORM": 1, - "N": 57, - "incy": 3, - "case": 3, - "ZCODE": 7, - "TFNF/": 3, - "SGN": 3, - "LAST": 1, - "INTA.LE.169": 2, - "KFLAG.GE.3": 1, - ".FALSE.": 1, - "S2I*CSSR": 2, - "KK": 19, - "end": 4, - "EXPONENT": 2, - "UNIFORM": 1, - "S1I*CSSR": 2, - "KMODE": 1, - "TEST": 6, - "PHIR": 7, - "IDUM": 6, - "CY": 1, - "ON": 3, - "compilex": 1, - "IF": 164, - "ABS": 9, - "SQRT": 1, - "ITIME": 3, - "WERE": 1, - "IFNU.LE.0": 1, - "*RAZR": 2, - "SLATMR": 1, - "SUBROUTINE": 8, - "INTERMEDIATE": 2, - ".or.": 2, - "NW.EQ.0": 1, - "HALF": 4, - "increments": 4, - "ARE": 1, - "RZI*C2I": 1, - "RTULPI": 1, - "mp1": 3, - "C2M.LE.ASCLE": 2, - "Argonne": 1, - "APHI": 7, - "LOGIC": 1, - "APPROX.": 1, - "COMPLEX*16": 1, - "THRESH": 2, - "STR*AT*RAZ": 2, - "End": 1, - "WHOSE": 1, - "TST*DSQRT": 1, - "TST": 5, - "ZUNIK": 4, - "Berkeley": 1, - "RETURN": 21, - "N.GT.2": 1, - "modified": 3, - ".NOT.LSAME": 2, - "FLAM": 3, - "BETWEEN": 1, - "N.LT.IB": 1, - "FORWARD": 1, - "CKR*PTI": 2, - "ADDED": 2, - "LDX.LT.MAX": 1, - "one.": 1, - "dongarra": 2, - "daxpyf": 1, - "C2R.NE.0.0D0": 1, - "INTB.LE.153": 2, - "C1R*CSPNR": 1, - "KFLAG.NE.1": 1, - "ZBESI": 1, - "INTA.GE.129": 2, - "SELWI": 2, - "jack": 2, - "CALLED": 2, - "FNF*STI": 1, - "FUNCTION": 7, - "lower": 3, - "DABS": 16, - "ZUNK1": 4, - "NEUMANN": 1, - "PATH": 1, - "RWORK": 5, - "ZET1DI": 8, - "RS1.LT.0.0D0": 2, - "ZEROI": 14, - "IS": 1, - "SORT": 1, - "CSPNR": 8, - "PHID": 1, - "IJOB.EQ.3": 1, - "THEN": 51, - "WRT": 2, - "CK": 2, - "INT": 4, - "ADUMMA": 1, - "SCALE": 6, - "*9": 1, - "INTB.GE.162": 2, - "ZSYEQUB": 2, - "INTA": 17, - "ZLASCL2": 3, - "mod": 1, - "AZABS": 12, - "RHO2": 5, - "ITIME.EQ.2": 1, - "IJOB.GT.3": 1, - "n.eq.1": 1, - "CALL": 22, - "machines": 3, - "PHIDI*SUMDI": 1, - "PI": 3, - "Functions": 1, - "ONE": 7, - "INTB.LE.122": 2, - "ZRI": 12, - "OVFL": 1, - "IFLAG.NE.1": 1, - "XERBLA": 4, - "IL": 4, - "ERROR": 2, - "INTA.GE.225": 2, - ".EQ.ZEROR": 1, - "and": 2, - "M": 8, - "incx": 8, - "to": 16, - "equivalence": 1, - "LDX": 7, - "FUNCTIONS": 3, - "INDICATES": 1, - "FKAP": 3, - "CFN": 1, - "SLAMCH": 2, - "CNORMI": 2, - "vector.": 1, - "specify": 1, - "FNF*SGN": 1, - "ELSE": 25, - "RCOND_I": 2, - "THE": 15, - "CONEI": 4, - "SSLCT": 1, - "RZI*PTI": 3, - "INIT": 5, - "dmin": 5, - "a": 3, - "/3/93": 2, - "C2I": 16, - "DLOG": 3, - "RZR*C2R": 1, - "BE": 2, - "YR": 21, - "OCCUR": 1, - "AP": 6, - "PTI": 17, - "VS1": 2, - "ITMP1.LE.NVAL": 1, - "+": 159, - "DCOS": 1, - "CSSR": 5, - "CSGNI*STI": 1, - "as": 2, - "P2R*P1R": 1, - "KK.EQ.N": 1, - "..": 11, - "REFINE": 3, - "ZR.LT.0.0": 2, - "Use": 1, - "NORMALIZED": 1, - "AZLOG": 2, - "INTA.LE.137": 2, - "not": 2, - "OF": 5, - "DIRECTION": 1, - "ZETA1I": 6, - "AT*RAZ": 1, - "BY": 5, - "BIGNUM": 4, - "*SUMR": 2, - "Z": 5, - "SLASUM": 1, - "ZCODE.EQ.250": 2, - "RELTOL": 2, - "RAZR": 2, - "vector": 1, - "FLOAT": 11, - "equal": 7, - "PHIDR": 6, - "subroutine": 2, - "IFNU": 5, - "CSGNI": 2, - "ZET2DR": 8, - "IB.LT.N": 1, - "KLNEW.LT.MMAX": 1, - "ZR*RAZ": 2, - "KMAGN": 1, - "BACKWARD": 2, - "ZETA2": 1, - "WILL": 3, - "element": 1, - "ITMP1.GE.NVAL": 1, - "COMPILEX": 1, - "array": 4, - "ARITHMETIC": 2, - "ZLA_SYRPVGRW": 4, - "ZETA2R": 6, - "C1I*CSPNR": 1, - "ZCODE.EQ.122": 2, - "SUMDR": 4, - "/11/78.": 2, - "n": 12, - "IJOB.EQ.2": 1, - "test": 1, - "KLNEW": 17, - "P2I": 21, - "ZI*RAZ": 2, - "S": 9, - "STR": 34, - "California": 1, - "NAB": 33, - "TWO": 3, - "MMAX": 6, - "RAST": 4, - "EQUIL": 5, - "SMAX": 5, - "AB": 36, - "CSS": 1, - "SMIN.LE.ZERO": 1, - "INDEX": 1, - "INTA.EQ.INTB": 1, - "version": 1, - "IJOB": 2, - "BAR": 1, - "CHARACTER*1": 2, - "CKR*C2R": 1, - "INTEGER": 21, - "ANG": 4, - "RECURRENCE": 2, - "OVERFLOW.": 1, - "MR.NE.0": 1, - "BK": 13, - "ZLAQSY": 2, - "S1I": 25, - "TMP1.LT.MAX": 1, - "n.le.0": 1, - "ITMP1.EQ.NAB": 2, - "bit": 1, - ".GT.": 1, - "BERR": 3, - "ERR_BNDS_NORM": 3, - "N_ERR_BNDS": 3, - "D0/AZ": 1, - "RZI": 8, - "n.lt.1": 1, - "MINP": 5, - "assumed": 3, - "Arguments": 2, - ".OR.": 22, - "ICHAR": 12, - "ASCLE": 5, - "ISEED": 2, - "C***ROUTINES": 2, - "CONDS": 1, - "ZETA2D": 1, - "RS1": 20, - "LDA.LT.MAX": 1, - "SEQUENCE": 5, - "IPARD": 4, - "NW": 7, - "S1I*CSR": 1, - "REAL": 7, - "CWRKR": 5, - "S2R": 25, - "RESULT": 2, - "DGAMLN": 6, - "do": 5, - "NVAL": 6, - "iqaminf": 5, - "PROLOGUE": 5, - "then": 1, - "RZ": 2, - "E": 2, - "RHO*RHO": 2, - "RCEQU": 8, - "INFO.NE.0": 3, - "RZR*PTR": 3, - "D1MACH": 6, - "NMAX": 1, - "*": 129, - "returns": 3, - "double": 1, - "RS1.GT.0.0D0": 2, - "SELVAL": 2, - "Purpose": 1, - "Scalar": 1, - "SLASET": 1, - "COMMON": 2, - "FOR": 14, - "PHII": 7, - "CHARACTER": 5, - "SUM": 5, - "IAZ": 4, - "N.GT.0": 3, - "Y": 3, - ".LT.ALIM": 3, - "machine.": 1, - "PRECISION": 15, - "ACK/TOL": 1, - "Scalars": 1, - "LDAF": 9, - "EXTERNAL": 5, - "MR.EQ.0": 1, - "S2I*S1R": 1, - "AVOID": 1, - "both": 2, - "ZETA1": 1, - "OVERFLOW": 6, - "SET": 2, - "ULPINV": 1, - "return": 13, - "ZR.GE.0.0D0": 1, - "S1I*C1R": 1, - "RIGHT": 1, - "rather": 1, - "IJOB.EQ.1": 1, - "ZRR*RAZR": 1, - "m": 5, - "C***BEGIN": 2, - ".GE.": 1, - "INTA.GE.145": 2, - "MAX0": 1, - "Tennessee": 1, - "da": 3, - "FROM": 1, - "C1R*CSPNI": 1, - "RCDVIN": 1, - "increment": 2, - "character": 1, - "CSR": 4, - "linpack": 2, - "go": 7, - "TMP1.LE.ZERO": 2, - "LDB": 6, - "upper": 3, - "BWORK": 2, - "DIVISION": 1, - "ALTERED": 1, - "Test": 1, - "unequal": 1, - "INTA.GE.97": 2, - "ITS": 1, - "CSPNI": 8, - "Courant": 1, - "abs": 2, - "CONE": 2, - "CB": 10, - "*CNORMR": 2, - "INFO.GT.0": 1, - "S2R*CSRR": 2, - "UPLO": 12, - "ZSYCON": 1, - "LDAF.LT.MAX": 1, - "ZSYRFSX": 2, - "RCOND": 3, - "K": 16, - "qabs": 9, - "C2I.NE.0.0D0": 1, - "INTA.LE.250": 2, - "KDFLG": 11, - "LIMIT": 1, - "CONTINUE": 58, - "NOUNIT": 2, - "RE": 2, - "are": 2, - "BK*AK": 3, - "OUT": 2, - "ZCODE.EQ.90": 2, - "KK.EQ.IC": 1, - ".EQ.NAB": 2, - "WR": 2, - "NPARAMS": 3, - "ZKSCL": 1, - "DENOMINATOR": 1, - "ZCODE.EQ.218": 2, - "*MAX": 1, - "set.": 1, - "dble": 1, - ".not.": 1, - ".gt.": 1, - "KLNEW.LE.MMAX": 1, - "NTEST": 1, - ".AND.": 28, - "EXP": 2, - "RECUR": 2, - "RCDEIN": 1, - "D0": 31, - "PHIDR*SUMDR": 1, - "CKI*C2R": 1, - "IC": 2, - ".EQ.ZEROI": 1, - "INTENT": 1, - "on": 5, - ".NOT.NOFACT": 1, - "CKI*PTR": 2, - "University": 1, - "if": 18, - "C1R": 5, - "D": 14, - "up": 1, - "AN": 1, - "ISLCT": 1, - "IFLAG.GE.3": 1, - "KF.GT.KL": 1, - "*P1R": 3, - ")": 721, - "NEAR": 2, - "PT": 2, - "MEMBER": 1, - "S1R*CSR": 1, - "*RAZ": 3, - "RELATIVE": 2, - "CKR": 17, - "IINFO": 1, - "single": 1, - "MOUT": 6, - "characters": 3, - "int": 1, - "KTYPE": 2, - "ANALYTIC": 3, - "D0/AZABS": 1, - "CONTINUATION.": 1, - "DSQRT": 3, - "S2R*S1R": 2, - "X": 8, - "Rice": 1, - "NAG": 1, - "NSIZES": 2, - "RZR*C2I": 1, - "*CSSR": 2, - "INTB.GE.97": 2, - "INFEQU": 2, - "ROTATION": 1, - "YI": 21, - "SCOND": 5, - "EBCDIC": 3, - "SUMR": 13, - "MAX": 9, - "DIMENSION": 3, - "INTA.LE.153": 2, - "SCLE": 4, - "LAPACK": 1, - "P2I*P1R": 1, - "Local": 1, - "*C1": 1, - "E2": 5, - "SCALING": 1, - "NORMALIZING": 1, - "DSIGN": 1, - "MEANS": 2, - "P2": 3, - "BRY": 12, - "ASYMPTOTIC": 1, - "ZR": 9, - "INTB.LE.169": 2, - "FNU": 12, - "AP/AZABS": 1, - "is": 8, - "*SUMI": 2, - "IJOB.LE.2": 2, - "ZR.LT.0.0D0": 2, - "KDFLG.EQ.2": 2, - "NFAIL": 1, - "prologue": 1, - "SELDIM": 2, - "P1R": 18, - "ZUCHK": 3, - "*6": 2, - "PHIDI": 6, - ".ge.": 1, - "ZET2DI": 8, - "CTWO": 1, - "index": 1, - "LDA": 14, - "RHO/": 1, - "RAZ": 2, - "S1R*C1R": 1, - ".GT.0.0D0": 1, - ".NOT.EQUIL": 1, - "PIVMIN": 9, - "INTA.GE.162": 2, - "finds": 1, - "ULP": 1, - "ACK": 18, - "ZETA2I": 6, - "CASES": 1, - "S1I*CSPNI": 1, - "C1I*CSPNI": 1, - "HT": 2, - "SUMDI": 4, - "COND": 1, - "CA": 10, - "Intrinsic": 1, - "INTA.LE.122": 2, - "C2M": 3, - "STI": 26, - "J": 65, - "AT": 5, - ".and.": 1, - "CYR": 8, - "NBMIN.GT.0": 1, - "REAL*10": 2, - "/": 19, - "National": 1, - "ITYPE": 1, - "NRHS.LT.0": 1, - "SUMD": 1, - "Institute": 1, - "JCOL": 1, - "ABSTOL": 3, - "KK.EQ.IB": 1, - "END": 44, - "COMPLEX": 2, - "FN/AZABS": 3, - "FACT": 6, - "declarations": 2, - "RESP.": 1, - "INTB.GE.129": 2, - "CKR*C2I": 1, - "RELATION": 1, - "IB": 6, - "GREATER": 1, - "sngl": 1, - "INITD": 6, - "PARAMS": 3, - "RELTOL*TMP2": 1, - "KCONDS": 1, - "ABOVE": 1, - "TRUNCATION": 2, - "ASCII": 5, - "C": 102, - "INFEQU.EQ.0": 1, - "times": 1, - "FMR": 3, - "JIT": 2, - "S2": 1, - ".LT.": 1, - "(": 720, - "IFLAG": 17, - "be": 2, - "case.": 1, - "code": 7, - "loops": 1, - "I.EQ.1": 1, - "THAN": 1, - "LDVS": 4, - "UNFL": 1, - ".LT.0.0D0": 1, - "compared.": 1, - "N.EQ.1": 1, - "S2I*CSRR": 2, - "EXTREMES": 1, - "/TOL": 3, - ".LE.PIVMIN": 2, - "TST/TOL": 1, - "NERRS": 1, - "float": 1, - "C***REFER": 2, - "ACK*ACK": 2, - "CWRKI": 5, - "S2I": 25, - "ZLACPY": 3, - "FN*RZR": 1, - "ZSYTRF": 2, - "NN": 2, - "SMIN": 5, - "common": 1, - "KODE.EQ.2": 1, - "iy": 7, - "with": 1, - "FINAL_NRM_ERR_I": 2, - "of": 8, - "BESSEL": 1, - ".NE.": 1, - "AF": 8, - "RZR*PTI": 3, - "MILLER": 1, - "d0": 1, - "either": 3, - "D0/BRY": 1, - "BADNN": 1, - ".GE.NAB": 1, - "INTB.GE.225": 2, - "continue": 6, - "value": 1, - "parameter": 1, - "NRM_RCOND_I": 2, - "COMPUTE": 2, - "DOUBLE": 14, - "P1": 1, - "having": 1, - "SNGL": 4, - "integer": 4, - ".EQ.0": 1, - "CSPN": 2, - "KDFLG.EQ.1": 6, - "SERIES": 1, - "MR": 4, - "MAXTYP": 6, - "real": 1, - "UNDERFLOW.": 1, - "ASC": 4, - "CMP_ERR_I": 2, - "ZMLRI": 4, - "AZ": 3, - "PHI": 1, - "LEFT": 1, - "DLAMCH": 3, - "WIT": 2, - "SQUARING": 1, - "MOD": 1, - "S2I*S1I": 2, - "IJOB.LT.1": 1, - "IWK": 1, - "RZI*C2R": 1, - "RPVGRW": 5, - "EXTREMES.": 1, - "TMP2": 11, - "DBLE": 11, - "KM": 3, - "incx.eq.1.and.incy.eq.1": 1, - "RTULP": 1, - "Univ.": 2, - "ichar": 1, - "IUF": 4, - "the": 8, - "ZSYTRS": 2, - "C***END": 2, - "STR*DCOS": 2, - "NOFACT": 4, - "COMPUTES": 2, - ".LE.": 2, - "CKR*PTR": 2, - "AND": 14, - "LOGICAL": 8, - "ERR_BNDS_COMP": 3, - "IWORK": 18, - "I": 50, - ".LT.PIVMIN": 2, - "CWRK": 1, - ".LT.ELIM": 1, - "TFNF": 7, - "S1R*S2I": 1, - "CMP_RCOND_I": 2, - ".": 3, - "can": 1, - "FNF*STR": 1, - "FN": 12, - "SELWR": 2, - "RHO": 4, - "absolute": 1, - "DATA": 4, - "INTB.LE.137": 2, - "ZMLT": 2, - "KF": 12, - "DURING": 1, - "JTYPE": 1, - "CZERO": 2, - "STI*P1R": 1, - "DMIN1": 1, - "ZET1DR": 8, - "LWORK": 2, - "ZEROR": 14, - "AMAX": 3, - "same": 2, - "routine": 1, - "STR*DSIN": 2, - "CEXP": 1, - "for": 7, - "IOLDSD": 1, - "changed": 2, - "ZRI*RAZR": 1, - "*CNORMI": 2, - "COEFF": 1, - "S1R*CSPNR": 1, - "which": 2, - ".TRUE.": 1, - "FNF": 15, - "B": 5, - "Prime": 3, - "Lab": 1, - "ZCODE.EQ.169": 2, - "ZBESK": 2, - "IMODE": 1, - "S1": 2, - "so": 1, - "SERIES.": 1, - "alphabetic.": 1, - "KODE": 4, - "D0/AP": 1, - "LSAME": 19, - "SELOPT": 2, - "PHIDI*SUMDR": 1, - "WI": 2, - "TOL": 10, - "ZRR": 12, - "AP.LT.TST": 1, - ".GT.ELIM": 5, - ".lt.": 2, - "S2R*CSSR": 2, - "NTYPES": 2, - ".GE.NVAL": 1, - "CNORM": 1, - "FOO": 2, - "*incy": 1, - "CKI*C2I": 1, - "PARAMETERS": 1, - "PHIDR*SUMDI": 1, - "Now": 1, - "TO": 69, - "KODE.EQ.1": 5, - "NBMIN": 2, - "ix": 14, - "IPIV": 7, - "ITMP2": 3, - "ENDIF": 1, - "C2": 1, - "WORK": 18, - "CKI*PTI": 2, - "LDB.LT.MAX": 1, - "WITMP": 2, - "C1I": 3, - "CSCL": 5, - "INTRINSIC": 6, - "NTESTT": 1, - "incy.lt.0": 1, - "S2R*CSR": 1, - "QUANTITIES": 1, - "INFO": 29, - "CONTINUATION": 2, - "plus": 2, - "*P1I": 3 - }, - "edn": { - "db.part/tx": 2, - "true": 3, - "db/index": 3, - "object/name": 18, - "db/id": 22, - "db.part/user": 17, - "object/meanRadius": 18, - "db.install/_attribute": 3, - "db.type/string": 2, - "db/ident": 3, - "db.type/double": 1, - "data/source": 2, - "db/valueType": 3, - "db/doc": 4, - "#db/id": 22, - "db.cardinality/one": 3, - "db.part/db": 6, - "db/cardinality": 3, - "}": 22, - "]": 24, - "{": 22, - "[": 24 - }, - "LFE": { - "isn": 1, - "<lfe_eval.10.91765564>": 1, - "object": 16, - "preconds": 4, - "Mnesia": 2, - "define": 1, - "formatted": 1, - "Execute": 1, - "list": 13, - "existing": 1, - "First": 1, - "and": 7, - "code": 2, - "Code": 1, - ";": 213, - "obtain": 3, - "five/0": 2, - "Converted": 1, - "method": 7, - "Carp": 1, - "cd": 1, - "battery": 1, - "s": 19, - "in": 10, - "using": 1, - "compliance": 3, - "transaction": 2, - "demonstrate": 1, - "phone": 1, - "global": 2, - "software": 3, - "Robert": 3, - "Solver": 1, - "]": 3, - "Duncan": 4, - "Intelligence": 1, - "macros": 1, - "distributed": 6, - "defun": 20, - "mnesia_demo.lfe": 1, - "table": 2, - "instance": 2, - "three": 1, - "language": 3, - "with": 8, - "every": 1, - "defsyntax": 2, - "Version": 3, - "CONDITIONS": 3, - "<": 1, - "here": 1, - "let": 6, - "only": 1, - "ok": 1, - "To": 1, - "GPS": 1, - "McGreggor": 4, - "id": 9, - "system": 1, - "getvar": 3, - "Peter": 1, - "Copyright": 4, - "pattern": 1, - "law": 3, - "mommy": 3, - "basic": 1, - "under": 9, - "Comprehensions": 1, - "not": 5, - "//lfe.github.io/user": 1, - "self": 6, - "feet": 1, - "telephone": 1, - "shop": 6, - "fun": 1, - "limit": 4, - "for": 5, - "verb": 2, - "following": 2, - "Licensed": 3, - "defmodule": 2, - "Programming": 1, - "spec": 1, - "does": 1, - "lc": 1, - "j": 2, - "together": 1, - "get": 21, - "int": 2, - "Now": 1, - "#Fun": 1, - "*ops*": 1, - "General": 1, - "applicable": 3, - "very": 1, - "works": 1, - "school": 2, - "count": 7, - "implied.": 3, - "pa": 1, - "create": 4, - "may": 6, - "objects": 2, - "achieve": 1, - "gps": 1, - "v": 3, - "Artificial": 1, - "Unless": 3, - "BASIS": 3, - "integer": 2, - "if": 1, - "new": 2, - "(": 217, - "length": 1, - "update": 1, - "XXXX": 1, - "select": 1, - "License": 12, - "numerals": 1, - "tuple": 1, - "hack": 1, - "at": 4, - "person": 8, - "people": 1, - "Initialise": 1, - "his": 1, - "give": 1, - "church": 20, - "Demonstrating": 2, - "demo": 2, - "macro": 1, - "License.": 6, - "qlc": 2, - "used": 1, - "naughty": 1, - "name": 8, - "by_place_qlc": 2, - "son": 2, - "state": 4, - "was": 1, - "on": 4, - ")": 231, - "It": 1, - "ETS": 1, - "Problem": 1, - "express": 3, - "a": 8, - "funcall": 23, - "See": 3, - "which": 1, - "Start": 1, - "File": 4, - "four": 1, - "species": 7, - "have": 3, - "setvar": 2, - "LFE.": 1, - "WITHOUT": 3, - "by_place": 1, - "specifications": 1, - "variables": 1, - "put": 1, - "List": 2, - "version": 1, - "this": 3, - "x": 12, - "is": 5, - "distance": 2, - "call": 2, - "*": 6, - "This": 2, - "five": 1, - "children": 10, - "class": 3, - "calculus": 1, - "mnesia_demo": 1, - "export": 2, - "copy": 3, - "KIND": 3, - "cond": 1, - "<oubiwann@cogitat.io>": 2, - "necessary.": 1, - "Load": 1, - "defvar": 2, - "guide": 1, - "../bin/lfe": 1, - "other": 1, - "can": 1, - "difference": 1, - "section": 1, - "Here": 1, - "simple": 4, - "from": 2, - "A": 1, - "specific": 3, - "op": 8, - "we": 1, - "The": 4, - "records": 1, - "attributes": 1, - "Author": 3, - "fish": 6, - "../ebin": 1, - "that": 1, - "OOP": 1, - "how": 2, - "except": 3, - "church.lfe": 1, - "+": 2, - "n": 4, - "del": 5, - "*state*": 5, - "int1": 1, - "c": 4, - "all": 1, - "start": 1, - "strictly": 1, - "Note": 1, - "closures": 1, - "solved": 1, - "LFE": 4, - "user": 1, - "erlang": 1, - "money": 3, - "the": 36, - "gps1.lisp": 1, - "mnesia": 8, - "OF": 3, - "Apache": 3, - "job": 3, - "Mode": 1, - "Virding": 3, - "shows": 2, - "match": 5, - "Query": 2, - "guide/recursion/5.html": 1, - "of": 10, - "demonstrated": 1, - "object.lfe": 1, - "int2": 1, - "permissions": 3, - "ANY": 3, - "by_place_ms": 1, - "tables.": 1, - "place": 7, - "WARRANTIES": 3, - "Use": 1, - "schema.": 1, - "one": 1, - "OR": 3, - "Purpose": 3, - "http": 4, - "create_table": 1, - "or": 6, - "writing": 3, - "Norvig": 1, - "when": 1, - "those": 1, - "installs": 1, - "action": 3, - "Set": 1, - "-": 98, - "p": 2, - "union": 1, - "slurp": 2, - "either": 3, - "use": 6, - "to": 10, - "e": 1, - "communication": 2, - "val": 2, - "You": 3, - "agreed": 3, - "info": 1, - "When": 1, - "successor": 3, - "Paradigms": 1, - "defrecord": 1, - "memory": 1, - "an": 5, - "variable": 2, - "reproduce": 1, - "do": 2, - "drive": 1, - "set": 1, - "but": 1, - "table.": 1, - "Comprehensions.": 1, - "match_object": 1, - "q": 2, - "below": 3, - "by": 4, - "book": 1, - "current": 1, - "#": 3, - "you": 3, - "f": 3, - "inheritance.": 1, - "has": 1, - "conditions.": 1, - "goals": 2, - "[": 3, - "//www.apache.org/licenses/LICENSE": 3, - "limitations": 3, - "Define": 1, - "however": 1, - "methods": 5, - "make": 2, - "add": 3, - "some": 2, - "access.": 1, - "file": 6, - "usage": 1, - "car": 1, - "access": 1, - "numeral": 8, - "emp": 1, - "contains": 1, - "required": 3, - "swam": 1, - "move": 4, - "examples": 1, - "governing": 3, - "/": 1, - "lambda": 18, - "two": 1, - "successor/1": 1, - "zero": 2, - "example": 2, - "will": 1 - }, - "AsciiDoc": { - "tag": 1, - "B*": 1, - "Versionen": 1, - "lteren": 1, - "https": 1, - "Redmine": 2, - "Item": 6, - "project": 2, - "for": 2, - "paragraph.": 4, - "<thedoc@asciidoctor.org>": 1, - "Codierungen": 1, - "plugin": 2, - "Articles": 1, - "Page": 1, - ".Section": 1, - "*Section": 3, - "verr": 1, - "berschrift": 1, - "management": 2, - "A*": 2, - "idprefix": 1, - "Title": 1, - "rom": 2, - "users/foo": 1, - "the": 2, - "Gregory": 2, - "Example": 1, - "Section": 3, - "test": 1, - "NOTE": 1, - "Doc": 1, - "von": 1, - "ckt": 1, - "sind": 1, - "end": 1, - "an": 2, - "test.": 1, - "This": 1, - "Preamble": 1, - "id_": 1, - "gif": 1, - "vicmd": 1, - "has": 2, - "Rom": 2, - "Writer": 1, - "Ruby": 1, - "application.": 2, - "Home": 1, - "AsciiDoc": 3, - "list": 1, - "Subsection": 1, - "is": 1, - "Document": 1, - "auf": 1, - "]": 2, - "[": 2, - "//github.com/foo": 1, - "written": 2, - "-": 4, - "*": 4, - "B": 2, - "A": 2, - "a": 1, - "only": 1 - }, - "TXL": { - "resolveAddition": 2, - "mulop": 2, - "where": 1, - "by": 6, - "NewE": 3, - "resolveMultiplication": 2, - "main": 1, - "rule": 12, - "addop": 2, - "not": 1, - "resolveSubtraction": 2, - "number": 10, - "replace": 6, - "end": 12, - "expression": 9, - "program": 1, - "define": 12, - "N2": 8, - "N1": 8, - "term": 6, - "N": 2, - "*": 2, - "+": 2, - "resolveParentheses": 2, - "resolveDivision": 2, - "construct": 1, - "E": 3, - "/": 3, - "-": 3, - ")": 2, - "(": 2, - "primary": 4, - "|": 3, - "]": 38, - "[": 38 - }, - "Xtend": { - "for": 2, - "if": 1, - "set": 1, - "foo": 1, - "number": 1, - "convenient.": 1, - "Long": 1, - ".length": 1, - "work": 1, - "Object": 1, - "double": 2, - "class": 4, - "int": 1, - "//": 11, - "make": 1, - "package": 2, - "b": 2, - "but": 1, - "example6": 1, - "which": 1, - "controlStructures": 1, - "Number": 1, - "to": 1, - "title": 1, - "def": 7, - "iterator": 1, - "categories.contains": 1, - "{": 14, - "cascades.": 1, - "<String>": 1, - "with": 2, - "There": 1, - "list.map": 1, - "newHashSet": 1, - "+": 6, - "segments.toSet": 1, - "set.filter": 1, - "(": 42, - "and": 1, - ".head": 1, - "true": 1, - "assertEquals": 14, - "i": 4, - "create": 1, - "decimals": 1, - "working": 1, - "map": 1, - "string": 1, - "list": 1, - ".sortBy": 1, - "numberOfActionMovies": 1, - "new": 2, - ".last.year": 1, - "newArrayList": 2, - "collections": 2, - "Never": 2, - "Java": 1, - "map.get": 1, - "parseInt": 1, - "line": 1, - "Movie": 2, - "java.io.FileReader": 1, - "..": 1, - "segments.next": 4, - "org.junit.Assert.*": 2, - ".size": 2, - "]": 9, - "movies": 3, - "year": 2, - "it": 2, - "|": 2, - "numberOfVotes": 2, - "big": 1, - "like": 1, - "BasicExpressions": 2, - "String": 2, - "long": 2, - "various": 1, - "@Data": 1, - "in": 2, - "categories": 1, - "iterator.hasNext": 1, - "s": 1, - "happens": 3, - "movies.filter": 2, - ")": 42, - "_229": 1, - "literals": 5, - "numerous": 1, - "toUpperCase": 1, - "void": 7, - "@Test": 7, - "boolean": 1, - "Double": 1, - "bd": 3, - "or": 1, - "methods": 2, - "looks": 1, - "yearOfBestMovieFrom80ies": 1, - "switch": 1, - "bar": 1, - "newHashMap": 1, - "extension": 2, - ".readLines.map": 1, - "Integer": 1, - "parseDouble": 1, - "line.split": 1, - "quotes": 1, - ".contains": 1, - ".take": 1, - "movies.sortBy": 1, - "loop": 2, - "loops": 1, - "segments": 1, - "a": 2, - "sumOfVotesOfTop2": 1, - "Movies": 1, - "java.util.Set": 1, - "return": 1, - "getClass": 1, - "are": 1, - "while": 2, - "someValue": 2, - "[": 9, - ".map": 1, - "org.junit.Test": 2, - ".reduce": 1, - "import": 7, - "example2": 1, - "single": 1, - "iterator.next": 1, - "}": 13, - "this": 1, - "counter": 8, - "var": 1, - "case": 1, - "false": 1, - "rating": 3, - "static": 4, - "text": 2, - "-": 5, - "them": 1, - "com.google.common.io.CharStreams.*": 1, - "val": 9, - "typeof": 1, - "*": 1, - "never": 1, - "FileReader": 1, - "Set": 1, - ".iterator": 2, - "parseLong": 1 - }, - "XML": { - "junit": 2, - "constructors": 12, - "Concurrency": 1, - "web": 6, - "ReactiveObject": 11, - "ViewModel": 8, - "<summary>": 120, - "unless": 1, - "would": 2, - "It": 1, - "same": 8, - "help": 1, - "file": 3, - "Covariant": 1, - "RegisterMessageSource": 4, - "which": 12, - "IReactiveNotifyPropertyChanged": 6, - "varables": 1, - "mean": 1, - "<members>": 1, - "memoizing": 2, - "ItemChanging": 2, - "parameters.": 1, - "</echo>": 2, - "Reference": 1, - "completes": 4, - "expression": 3, - "additional": 3, - "observed": 1, - "upon": 1, - "/": 6, - "<returns>": 36, - "evaluate": 1, - "RxApp.DeferredScheduler": 2, - "log": 2, - "must": 2, - "your": 8, - "be": 57, - "<target>": 2, - "download": 1, - "given": 11, - "more": 16, - "NOTE": 1, - "IMPORTANT": 1, - "file.": 1, - "performs": 1, - "-": 49, - "sending": 2, - "result.": 2, - "fixed": 1, - "In": 6, - "data": 1, - "default": 9, - "between": 15, - "module.ivy": 1, - "up": 25, - "backing": 9, - "arbitrarily": 2, - "that": 94, - "out": 4, - "easily": 1, - "Constructs": 4, - "Current": 1, - "after": 1, - "scenarios": 4, - "put": 2, - "filters": 1, - "particular": 2, - "them": 1, - "raiseAndSetIfChanged": 1, - "Setter": 2, - "server": 2, - "TaskpoolScheduler": 2, - "neither": 3, - "use": 5, - "coupled": 2, - "True.": 2, - "conf=": 1, - "provider": 1, - "properties": 29, - "recently": 3, - "Note": 7, - "*after*": 2, - "is": 123, - ")": 45, - "property": 74, - "ReactiveObject.": 1, - "configured": 1, - "calculationFunc": 2, - "ViewModels": 3, - "any": 11, - "T": 1, - "<ea:property>": 1, - "<description>": 2, - "Pool": 1, - "faking": 4, - "convert": 2, - "Works": 2, - "changed": 18, - "</summary>": 121, - "size": 1, - "ItemChanging/ItemChanged.": 2, - "Functions": 2, - "bus.": 1, - "suffice.": 1, - "respective": 1, - "thread.": 3, - "caches": 2, - "queued": 1, - "Constructor": 2, - "name=": 223, - "result": 3, - "function.": 6, - "when": 38, - "<?xml>": 3, - "</name>": 1, - "IReactiveNotifyPropertyChanged.": 4, - "events.": 2, - "IObservedChange": 5, - "object": 42, - "test": 7, - "entire": 1, - "addition": 3, - "than": 5, - "Value": 3, - "still": 1, - "also": 17, - "based": 9, - "ObservableAsyncMRUCache.AsyncGet": 1, - "clean": 1, - "operations": 6, - "Tag": 1, - "org=": 1, - "<ivy-module>": 1, - "manually": 4, - "INotifyPropertyChanged.": 1, - "If": 6, - "memoization": 2, - "send": 3, - "global": 1, - "services": 2, - "temporary": 1, - "keep": 1, - "ObservableForProperty.": 1, - "maintain": 1, - "</dependencies>": 1, - "<echo>": 2, - "write": 2, - "notification": 6, - "progress": 1, - "created": 2, - "explicitly": 1, - "running.": 1, - "derive": 1, - "keyword.": 2, - "anything": 2, - "may": 1, - "empty": 1, - "MRU": 1, - "contents": 2, - "heuristically": 1, - "named": 2, - "Selector": 1, - "list.": 2, - "existing": 3, - "implementing": 2, - "parameter.": 1, - "exposes": 1, - "found.": 1, - "convention": 2, - "unlike": 13, - "method.": 2, - "*before*": 2, - "Represents": 4, - "object.": 3, - "ChangeTrackingEnabled": 2, - "cannot": 1, - "similar": 3, - "selectors": 2, - "no": 4, - "has": 16, - "rebroadcast": 2, - "<typeparam>": 12, - "evaluated": 1, - "value=": 1, - "standard": 1, - "doesn": 1, - "Given": 3, - "async": 3, - "raised": 1, - "sense": 1, - "Return": 1, - "newly": 2, - "This.GetValue": 1, - "once": 4, - "output": 1, - "compile": 1, - "need": 12, - "WhenAny": 12, - "needs": 1, - "unpredictable.": 1, - "further": 1, - "extension": 2, - "communicate": 2, - "number": 9, - "plug": 1, - "Item": 4, - "per": 2, - "typed": 2, - "An": 26, - "send.": 4, - "Immediate": 1, - "ReactiveCollection.": 1, - "typically": 1, - "ItemChanged": 2, - "Specifying": 2, - "RaisePropertyChanged": 2, - "subscribed": 2, - "actual": 2, - "important": 6, - "disconnects": 1, - "notification.": 2, - "<member>": 120, - "so": 1, - "initial": 28, - "s": 1, - "applies": 1, - "provided": 14, - "the": 260, - "Invalidate": 2, - "Message": 2, - "extensionOf=": 1, - "field.": 1, - "provide": 2, - "This": 21, - "as": 25, - "single": 2, - "reasons": 1, - "Use": 13, - "monitor": 1, - "passed": 1, - "onRelease": 1, - "instead": 2, - "or": 24, - "</typeparam>": 12, - "</ivy-module>": 1, - "unit": 3, - "without": 1, - "fail.": 1, - "many": 1, - "enabled": 8, - "raisePropertyChanging": 4, - "always": 4, - "Creates": 3, - "defaults": 1, - "normally": 6, - "When": 5, - "multiple": 6, - "duplicate": 2, - "structure": 1, - "private": 1, - "IEnableLogger": 1, - "going": 4, - "Threadpool": 1, - "fake": 4, - "delete": 1, - "taken": 1, - "registered.": 2, - "optional": 2, - "about": 5, - "Sends": 2, - "providing": 20, - "on": 35, - "bindings": 13, - "optionnal": 1, - "simplify": 1, - "intended": 5, - "mirror": 1, - "Converts": 2, - "Evaluates": 1, - "purpose": 10, - "love": 1, - "Select": 3, - "Registers": 3, - "combination": 2, - "thrown": 1, - "disposed.": 3, - "gets": 1, - "Since": 1, - "InUnitTestRunner": 1, - "x.SomeProperty": 1, - "receives": 1, - "ObservableAsyncMRUCache": 2, - "adds": 2, - "called": 5, - "for": 59, - "method": 34, - "paths": 1, - "AsyncGet": 1, - "manage": 1, - "SendMessage.": 2, - "other": 9, - "changed.": 9, - "own": 2, - "normal": 2, - "previous": 2, - "casting": 1, - "<dependency>": 1, - "i": 2, - "DeferredScheduler": 1, - "Conceptually": 1, - "service": 1, - "AddRange": 2, - "override": 1, - "ObservableForProperty": 14, - "able": 1, - "rest.": 2, - "property.": 12, - "future": 2, - "To": 4, - "with": 23, - "provided.": 5, - "</members>": 1, - "custom": 4, - "Attempts": 1, - "sense.": 1, - "version": 3, - "framework": 1, - "WP7": 1, - "leak": 2, - "whenever": 18, - "not": 9, - "xmlns": 2, - "asynchronous": 4, - "contract.": 2, - "well": 2, - "PropertyChangedEventArgs.": 1, - "expression.": 1, - "several": 1, - "disk": 1, - "two": 1, - "Observables": 4, - "of": 75, - "directly": 1, - "another": 3, - "code": 4, - "UI": 2, - "cache.": 5, - "nor": 3, - "removed": 4, - "because": 2, - "posted": 3, - "parameter": 6, - "Type.": 2, - "onto": 1, - "Expression": 7, - "Count.": 4, - "items": 27, - "returned": 2, - "subscribing": 1, - "operation.": 1, - "reached": 2, - "times.": 4, - "Changed": 4, - "rev=": 1, - "</description>": 2, - "framework.": 1, - "child": 2, - "wait": 3, - "will": 65, - "implement": 5, - "The": 74, - "reenables": 3, - "changes": 13, - "writing": 1, - "delay.": 2, - "false": 2, - "queues": 2, - "raise": 2, - "null.": 10, - "a": 127, - "visibility=": 2, - "tests.": 1, - "access": 3, - "either": 1, - "one": 27, - "non": 1, - "notify": 3, - "my": 2, - "schedule": 2, - "followed": 1, - "</param>": 83, - "startup.": 1, - "</project>": 1, - "asyncronous": 1, - "<assembly>": 1, - "whose": 7, - "done": 2, - "version=": 4, - "only": 18, - "IMessageBus": 1, - "assumption": 4, - "Model": 1, - "populated": 4, - "withDelay": 2, - "Tracking": 2, - "selector.": 2, - "subsequent": 1, - "class": 11, - "Observable": 56, - "ReactiveUI": 2, - "determined": 1, - "available.": 1, - "limit": 5, - "traditional": 3, - "*always*": 1, - "want": 2, - "</configurations>": 1, - "description=": 2, - "Task": 1, - "regardless": 2, - "never": 3, - "you": 20, - "attaching": 1, - "return": 11, - "populate": 1, - "attached.": 1, - "limited": 1, - "scheduler": 11, - "returned.": 2, - "too": 1, - "calculation": 8, - "maps": 1, - "memoized": 1, - "all": 4, - "full": 1, - "methods.": 2, - "Determins": 2, - "leave": 10, - "part": 2, - "Rx.Net.": 1, - "set.": 3, - "onChanged": 2, - "replaces": 1, - ".": 20, - "such": 5, - "</ea:build>": 1, - "mode": 2, - "ValueIfNotDefault": 1, - "Observable.Return": 1, - "called.": 1, - "Unit": 1, - "RaiseAndSetIfChanged": 2, - "operation": 2, - "backed": 1, - "item": 19, - "null": 4, - "name": 7, - "Ensure": 1, - "types": 10, - "one.": 1, - "server.": 2, - "image": 1, - "messages": 22, - "being": 1, - "</returns>": 36, - "stream": 7, - "interface": 4, - "this": 77, - "distinguish": 12, - "implements": 8, - "determine": 1, - "Timer.": 2, - "filled": 1, - "then": 3, - "mathematical": 2, - "RaisePropertyChanging": 2, - "target.property": 1, - "issue": 2, - "default.": 2, - "cache": 14, - "i.e.": 23, - "it": 16, - "call": 5, - "values": 4, - "retrieve": 3, - "provides": 6, - "next": 1, - "application": 2, - "save": 1, - "ObservableAsPropertyHelper": 6, - "on.": 6, - "action": 2, - "key": 12, - "collections": 1, - "INotifyPropertyChanged": 1, - "using": 9, - "additionnal": 1, - "customize": 1, - "binding.": 1, - "like": 2, - "ensure": 3, - "(": 52, - "sample": 2, - "creating": 2, - "calls.": 2, - "changes.": 2, - "Dispatcher": 3, - "read": 3, - "TPL": 1, - "almost": 2, - "potentially": 2, - "maximum": 2, - "returning": 1, - "<dependencies>": 1, - "</info>": 1, - "target": 6, - "request": 3, - "add": 2, - "allow": 1, - "start": 1, - "java": 1, - "status=": 1, - "entry": 1, - "usually": 1, - "faster": 2, - "field": 10, - "TSender": 1, - "stream.": 3, - "slot": 1, - "new": 10, - "Provides": 4, - "</member>": 120, - "revision=": 3, - "guarantees": 6, - "pass": 2, - "in": 45, - "<conf>": 2, - "step": 1, - "Sender.": 1, - "generic": 3, - "Enables": 2, - "fire": 11, - "listen": 6, - "module.ant": 1, - "work": 2, - "depends": 1, - "represents": 4, - "GetFieldNameForPropertyNameFunc.": 1, - "fetch": 1, - "run": 7, - "type": 23, - "ToProperty": 2, - "make": 2, - "compute": 1, - "been": 5, - "x": 1, - "otherwise": 1, - "resulting": 1, - "convenient.": 1, - "<name>": 1, - "time": 3, - "last": 1, - "module=": 3, - "Collection.Select": 1, - "*must*": 1, - "Observable.": 6, - "requested": 1, - "can": 11, - "representing": 20, - "build": 1, - "DispatcherScheduler": 1, - "optionally": 2, - "checks.": 1, - "simple": 2, - "Changing/Changed": 1, - "awesome": 1, - "item.": 3, - "ensuring": 2, - "equivalent": 2, - "helper": 5, - "synchronous": 1, - "Log": 2, - "specified": 7, - "dummy": 1, - "string": 13, - "ObservableToProperty": 1, - "through": 3, - "</assembly>": 1, - "change.": 12, - "into": 2, - "places": 1, - "finishes.": 1, - "discarded.": 4, - "client.": 2, - "set": 41, - "out.": 1, - "t": 2, - "RxApp.GetFieldNameForPropertyNameFunc.": 2, - "if": 27, - "takes": 1, - "before": 8, - "disposed": 4, - "old": 1, - "at": 2, - "designed": 1, - "common": 1, - "list": 1, - "SetValueToProperty": 1, - "running": 4, - "collection": 27, - "where": 4, - "to.": 7, - "results": 6, - "Listen": 4, - "loosely": 2, - "<info>": 1, - "ObservableAsyncMRUCache.": 1, - "very": 2, - "way": 2, - "are": 13, - "RxApp": 1, - "<param>": 84, - "ea=": 2, - "MessageBus.Current.": 1, - "invoke": 4, - "function": 13, - "queried": 1, - "easyant": 3, - "updated": 1, - "Issues": 1, - "semantically": 3, - "each": 7, - "have": 17, - "change": 26, - "setup.": 12, - "observe": 12, - "name.": 1, - "similarly": 1, - "base": 3, - "cached": 2, - "user": 2, - "post": 2, - "logger": 2, - "background": 1, - "first": 1, - "by": 13, - "added": 6, - "Observables.": 2, - "</target>": 2, - "<project>": 1, - "naming": 1, - "GetFieldNameForProperty": 1, - "already": 1, - "requests.": 2, - "itself": 2, - "identical": 11, - "representation": 1, - "Changing": 5, - "modes": 1, - "concurrently": 2, - "selector": 5, - "example": 2, - "an": 88, - "from": 12, - "A": 19, - "Changed.": 1, - "fires": 6, - "attempts": 1, - "Silverlight": 2, - "input": 2, - "expensive": 2, - "currently": 2, - "act": 2, - "<ea:plugin>": 1, - "making": 3, - "avoid": 2, - "type.": 3, - "Exception": 1, - "was": 6, - "notifications.": 5, - "and": 44, - "fully": 3, - "spamming": 2, - "flight": 2, - "message.": 1, - "simpler": 1, - "possible": 1, - "classes": 2, - "memoizes": 2, - "CPU": 1, - "versions": 2, - "to": 164, - "give": 1, - "mock": 4, - "SelectMany": 2, - "added.": 4, - "Returns": 5, - "<configurations>": 1, - "updated.": 1, - "maxConcurrent": 1, - "does": 1, - "value.": 2, - "could": 1, - "apply": 3, - "take": 2, - "extended": 1, - "instance": 2, - "removed.": 4, - "Consider": 2, - "</doc>": 1, - "properties/methods": 1, - "Change": 2, - "x.Foo.Bar.Baz": 1, - "collection.": 6, - ";": 10, - "objects": 4, - "BindTo": 1, - "initialized": 2, - "Fires": 14, - "should": 10, - "response": 2, - "<ea:build>": 1, - "we": 1, - "ReactiveCollection": 1, - "useful": 2, - "overload": 2, - "current": 10, - "its": 4, - "defined": 1, - "pre": 1, - "evicted": 2, - "message": 30, - "go": 2, - "Set": 3, - "declare": 1, - "Another": 2, - "value": 44, - "via": 8, - "unique": 12, - "allows": 15, - "added/removed": 1, - "organisation=": 3, - "Test": 1, - "delay": 2, - "hundreds": 2, - "concurrent": 5, - "automatically": 3, - "complete": 1, - "IReactiveCollection": 3, - "until": 7, - "folder": 1, - "equivalently": 1, - "WebRequest": 1, - "returns": 5, - "but": 7, - "corresponding": 2, - "requests": 4, - "OAPH": 2, - "<doc>": 1, - "registered": 1, - "both": 2, - "specific": 8, - "performance": 1, - "True": 6, - "MakeObjectReactiveHelper.": 1, - "initialize": 1, - "flattened": 2, - "steps": 1, - "notifications": 22, - "used": 19, - "way.": 2, - "helps": 1, - "reflection": 1, - "adding": 2, - "immediately": 3, - "Type": 9, - "sent": 2, - "often": 3, - "target.": 1, - "compatible": 1, - "SelectMany.": 1, - "chained": 2, - "MessageBus": 3 - }, - "Sass": { - "padding": 2, - ".border": 2, - ".content": 1, - "blue": 7, - "color": 4, - "border": 3, - "#3bbfce": 2, - "px": 3, - "solid": 1, - "darken": 1, - ".content_navigation": 1, - "navigation": 1, - "margin": 8, - "}": 2, - "{": 2, - ";": 6, - "/": 4, - ")": 1, - "%": 1, - "(": 1, - "-": 3 - }, - "Groovy Server Pages": { - "SiteMesh": 2, - "<r:require>": 2, - "alt=": 2, - "tag": 1, - "contentType=": 1, - "<%@>": 1, - "</div>": 2, - "</a>": 2, - "class=": 2, - "Download": 1, - "Using": 1, - "example": 1, - "<body>": 4, - "Resources": 2, - "<div>": 2, - "": 4, - "": 4, - "and": 2, - "": 4, - "Print": 1, - "": 4, - "": 4, - "content=": 4, - "http": 3, - "id=": 2, - "directive": 1, - "name=": 1, - "</html>": 4, - "href=": 2, - "<a>": 2, - "module=": 2, - "Testing": 3, - "</body>": 4, - "<html>": 4, - "page": 2, - "}": 1, - "{": 1, - "with": 3, - "equiv=": 3 - }, - "CSS": { - "bell": 2, - "textarea.span1": 2, - "video": 4, - "linear": 204, - "figure": 2, - "textarea.span10": 2, - "inset": 132, - "help": 2, - "infinite": 5, - "file": 2, - "td.span1": 2, - "polaroid": 2, - "th.span10": 2, - ".offset9": 6, - "hr": 2, - "ring": 6, - "Menlo": 2, - ".page": 2, - "top": 376, - ".navbar": 332, - ".span9": 4, - "group.open": 18, - "camera": 2, - ".nav": 308, - ".active": 86, - "outline": 30, - "large": 40, - "original": 2, - "hidden": 9, - ".offset7": 6, - "backdrop": 2, - "#149bdf": 11, - ".progress": 22, - "below": 18, - "prepend.input": 22, - "#ee5f5b": 18, - "white": 25, - "#0e0e0e": 2, - ".caret": 70, - "#f8b9b7": 6, - ".add": 36, - ".span7": 4, - "ease": 12, - "download": 4, - ".offset5": 6, - "li": 205, - "inside": 4, - ".tooltip.left": 2, - "question": 2, - "#fbb450": 16, - "#7ab5d3": 6, - "-": 8839, - "default": 12, - ".span5": 4, - "#808080": 2, - "data": 2, - "fixed": 36, - "up": 12, - "upload": 2, - "out": 10, - "info.active": 6, - ".offset3": 6, - "label": 20, - "cite": 2, - "+": 105, - "after": 96, - "@page": 2, - "info": 37, - ".span3": 4, - "search": 66, - ".img": 6, - "heading": 1, - "eye": 4, - "plus": 4, - "#006dcc": 2, - "inherit": 8, - ".offset1": 6, - ".muted": 2, - "#da4f49": 2, - ".3em": 6, - "overflow": 21, - "clear": 32, - ")": 748, - ".span12": 4, - "#040404": 18, - "GradientType": 30, - ".span1": 4, - "table": 44, - "backdrop.fade.in": 1, - ".hero": 3, - "#fbeed5": 2, - "random": 2, - "calendar": 2, - "warning.active": 6, - "group.error": 32, - "#fcfcfc": 2, - "size": 104, - "ul": 84, - "danger.progress": 1, - "tabs": 94, - "certificate": 2, - "barcode": 2, - "inverse.active": 6, - ".span10": 4, - "controls": 2, - "*margin": 70, - "object": 1, - "canvas": 2, - "transparent": 148, - "#eeeeee": 31, - "#c09853": 14, - "thin": 8, - "caption": 18, - "}": 1705, - ".offset11": 6, - "*position": 2, - "li.dropdown.open.active": 14, - "group.info": 32, - "xlarge": 2, - "weight": 28, - "%": 366, - "#df8505": 2, - "title": 10, - "cart": 2, - "alpha": 7, - "invalid": 12, - "{": 1661, - ".6": 6, - "progress": 15, - ".breadcrumb": 8, - "#515151": 2, - "shadow": 254, - "bold": 14, - "keyframes": 8, - "asterisk": 2, - "tags": 2, - "Monaco": 2, - "*border": 8, - ".checkbox": 26, - "empty": 7, - "prepend": 82, - "input.span8": 4, - "dotted": 10, - ".controls": 28, - "y": 2, - "text": 129, - ".modal": 5, - "a.thumbnail": 4, - ".tabs": 62, - "no": 2, - "h5": 6, - "tr.success": 4, - ".divider": 8, - ".2": 12, - ".control": 150, - "success": 35, - "input.span6": 4, - ".row": 126, - "solid": 93, - "#f7f7f9": 2, - "forward": 6, - "#1a1a1a": 2, - "h3": 14, - ".table": 180, - "input.span4": 4, - "#f2dede": 6, - ".pre": 2, - "cursor": 30, - ".hide": 12, - "#f7f7f7": 3, - "magnet": 2, - "#151515": 12, - "box": 264, - "bicubic": 2, - "rendering": 2, - "input.span11": 4, - "important": 18, - "h1": 11, - "li.dropdown": 12, - "star": 4, - "primary": 14, - "s": 25, - "none": 128, - "th.span8": 2, - "#005580": 8, - "word": 6, - "input.span2": 4, - "#ffffff": 136, - "striped": 13, - ".popover.top": 3, - "span": 38, - "wrench": 2, - "#942a25": 2, - "#a9302a": 2, - "#bd362f": 20, - "*background": 36, - "block": 133, - ".tooltip.bottom": 2, - "navbar.active": 8, - "danger.active": 6, - "padding": 174, - "#d0e9c6": 2, - "#0088cc": 24, - ".text": 14, - "primary.disabled": 2, - "q": 4, - "th.span6": 2, - "unit": 3, - "#252525": 2, - ".popover.left": 3, - "enabled": 18, - "index": 14, - "a.text": 16, - "attr": 4, - "circle": 18, - "edit": 2, - "o": 48, - "th.span4": 2, - "multiple": 2, - "visited": 2, - "thead": 38, - ".tab": 8, - "gift": 2, - ".btn.btn": 6, - "#2a85a0": 2, - "#999": 6, - "center": 17, - "on": 36, - "readonly": 10, - "moz": 316, - "bordered": 76, - "#d9edf7": 6, - "th.span2": 2, - "check": 2, - "#d59392": 6, - ".lead": 2, - "align": 72, - "tr": 92, - "@": 8, - "#f2f2f2": 22, - "#080808": 2, - "#000": 2, - "resize": 8, - "chevron": 8, - "pause": 2, - "justify": 2, - "flag": 2, - "#499249": 2, - "uppercase": 4, - "display": 135, - "#b94a48": 20, - "ol": 10, - "#d6e9c6": 2, - ".btn.dropdown": 2, - "section": 2, - "exclamation": 2, - "endColorstr": 30, - "*padding": 36, - "normal": 18, - "pre.prettyprint": 2, - "animation": 5, - "pills.nav": 4, - "plane": 2, - "arrow": 21, - "#46a546": 2, - "optimizelegibility": 2, - "inverse": 110, - "print": 4, - ".tooltip.top": 2, - "retweet": 2, - "down": 12, - "link": 28, - "danger": 21, - ".btn.active": 8, - "menu": 42, - "underline": 6, - "eject": 2, - "#b3b3b3": 2, - "warning": 33, - "address": 2, - "style": 21, - "info.dropdown": 2, - "headphones": 2, - "repeat": 66, - ".search": 22, - "blockquote.pull": 10, - ".clearfix": 8, - "pointer": 12, - "not": 6, - ".tabbable": 8, - "#363636": 2, - "DXImageTransform.Microsoft.gradient": 48, - "textarea.span8": 2, - ".125": 6, - ".btn.large": 4, - "html": 4, - "nowrap": 14, - "row": 20, - "webkit": 364, - "code": 6, - "#eed3d7": 2, - "#777777": 12, - "hand": 8, - "book": 2, - "#408140": 2, - "td.span8": 2, - "home": 2, - ".2s": 16, - "textarea.span6": 2, - "tfoot": 12, - ".dropup": 2, - "comment": 2, - "envelope": 2, - "#e9322d": 2, - ".badge": 30, - "#e1e1e8": 2, - "alt": 6, - "button.btn": 4, - "#f5f5f5": 26, - "line": 97, - "sans": 6, - "child": 301, - "td.span6": 2, - "th": 70, - "#c43c35": 5, - "textarea.span4": 2, - "topright": 16, - "warning.progress": 1, - "info.progress": 1, - "false": 18, - "width": 215, - "Helvetica": 6, - "ellipsis": 2, - "baseline": 4, - ".075": 12, - "a": 268, - "collapse.collapse": 2, - "#7aba7b": 6, - "td.span11": 2, - "color": 711, - "aside": 2, - "td.span4": 2, - "border": 912, - "minus": 4, - "disabled": 36, - "textarea.span2": 2, - "audio": 4, - "middle": 20, - "bottomright": 16, - "textarea.span11": 2, - "select": 90, - ".popover.right": 3, - ".progress.active": 1, - "move": 2, - "inbox": 2, - "class": 26, - "td": 66, - "th.span11": 2, - "family": 10, - "td.span2": 2, - "page": 6, - ".pager": 34, - "tasks": 2, - "filter": 57, - "transition": 36, - "condensed": 4, - "fieldset": 2, - "#111111": 18, - "Arial": 6, - "#faf2cc": 2, - "]": 384, - "li.dropdown.active": 8, - "absolute": 8, - ".pill": 6, - "bookmark": 2, - "inverse.disabled": 2, - "success.active": 6, - "#d9d9d9": 4, - "break": 12, - "abbr": 6, - ".offset8": 6, - "class*": 100, - "transform": 4, - ".disabled": 22, - "li.dropdown.open": 14, - "submenu": 8, - "#cccccc": 18, - "#ebebeb": 1, - ".popover.bottom": 3, - "#0e90d2": 2, - "fast": 4, - "#5bb75b": 2, - ".15": 24, - "#e6e6e6": 20, - "[": 384, - ".ir": 2, - "maps": 2, - ".span8": 4, - ".next": 4, - "full": 2, - "all": 10, - "dt": 6, - ".offset6": 6, - "#d4d4d4": 2, - "ms": 13, - "body": 3, - "radius": 534, - ".dl": 12, - ".span6": 4, - "#ccc": 13, - "textarea": 76, - "#999999": 50, - "mini": 34, - "mode": 2, - "#57a957": 5, - "#2f96b4": 20, - ".offset4": 6, - "#468847": 18, - "cm": 2, - "heart": 2, - "image": 187, - ".popover": 14, - "scroll": 2, - "#map_canvas": 2, - ".media": 11, - "#003399": 2, - "hgroup": 2, - "#3a87ad": 18, - ".span4": 4, - "bottom": 309, - "xxlarge": 2, - ".input": 216, - "stripes": 15, - "zoom": 5, - "#faa732": 3, - "active": 46, - ".offset2": 6, - "ol.inline": 4, - "#953b39": 6, - "right": 258, - "backward": 6, - "volume": 6, - ".form": 132, - "#f89406": 27, - "medium": 2, - "topleft": 16, - "*": 2, - "margin": 424, - "nth": 4, - "orphans": 2, - "facetime": 2, - "#f9f9f9": 12, - ".span2": 4, - ".arrow": 12, - "centered": 2, - "#bfbfbf": 4, - "font": 142, - ".thumbnail": 6, - ".dropdown.active": 4, - "warning.dropdown": 2, - "tr.warning": 4, - "(": 748, - "ol.unstyled": 2, - ".span11": 4, - ".pull": 16, - "@media": 2, - ".offset12": 6, - "form": 38, - "dl": 2, - "cell": 2, - "a.badge": 4, - "height": 141, - "navbar.disabled": 4, - "tint": 2, - "#5bc0de": 16, - "warning.disabled": 2, - "widows": 2, - "space": 23, - "scrollable": 2, - ".alert": 34, - "a.muted": 4, - "tbody": 68, - "#c4e3f3": 2, - "#fcf8e3": 6, - ".caption": 2, - "bar": 21, - "stacked": 24, - "marker": 2, - "startColorstr": 30, - ".offset10": 6, - "#dddddd": 16, - "float": 84, - ".btn": 506, - "success.progress": 1, - "#ddd": 38, - "qrcode": 2, - "in": 10, - "wrap": 6, - "#333": 6, - "globe": 2, - "fire": 2, - "step": 4, - "refresh": 2, - "#222222": 32, - "sup": 4, - "textfield": 2, - "z": 12, - "ul.inline": 4, - "offset": 6, - "input.span9": 4, - "#dd514c": 1, - ".open": 8, - "pills": 28, - "serif": 6, - "hover": 144, - "#a47e3c": 4, - "type": 174, - ".previous": 4, - "trash": 2, - "signal": 2, - "toggle": 84, - "h6": 6, - "min": 14, - "max": 18, - "ban": 2, - "time": 2, - "x": 30, - "input.span7": 4, - "last": 118, - "adjust": 6, - ".tooltip.in": 1, - "hdd": 2, - "glass": 2, - "button.btn.btn": 6, - "group.success": 32, - "picture": 2, - ".dropdown": 126, - "h4": 20, - "append": 120, - "interpolation": 2, - "menu.pull": 8, - ".1": 24, - "pencil": 2, - "lock": 2, - "road": 2, - "#000000": 14, - "danger.disabled": 2, - "dd": 6, - "input.span5": 4, - "button": 18, - "fluid": 126, - "nav": 2, - "primary.dropdown": 2, - "separate": 4, - "figcaption": 2, - "em": 6, - "input.span12": 4, - "#62c462": 16, - "#595959": 2, - "small": 66, - "h2": 14, - "#4bb1cf": 1, - "deg": 20, - "thumbs": 4, - "#356635": 6, - "th.span9": 2, - "input.span3": 4, - "abbr.initialism": 2, - "#802420": 2, - "#a9dba9": 2, - "input.span10": 4, - "play": 4, - "query": 22, - "before": 48, - "vertical": 56, - "focus": 232, - "pane": 4, - "success.disabled": 2, - "#ad6704": 2, - "input.span1": 4, - "th.span7": 2, - "odd": 4, - ".brand": 14, - "success.dropdown": 2, - "stop": 32, - "group.warning": 32, - "list": 44, - "close": 4, - "map": 2, - "error": 10, - "blockquote": 14, - "strong": 2, - "img": 14, - "backdrop.fade": 1, - "remove": 6, - "#dbc59e": 6, - "p": 14, - "a.label": 4, - "th.span5": 2, - "article": 2, - "rgba": 409, - ".tooltip.right": 2, - "toolbar": 8, - "music": 2, - "monospace": 2, - "#333333": 26, - "*zoom": 48, - "briefcase": 2, - "sign": 16, - "user": 2, - ".label": 30, - ".radio": 26, - "italic": 4, - "static": 14, - "clip": 3, - "#339bb9": 5, - "#fafafa": 2, - "#24748c": 2, - "#51a351": 20, - "#003bb3": 2, - "background": 770, - "first": 179, - "th.span3": 2, - "indent": 4, - "placeholder": 18, - "px": 2535, - ".tooltip": 7, - "query.focused": 2, - "danger.dropdown": 2, - "fullscreen": 2, - "shopping": 2, - "progid": 48, - "from": 40, - "header": 12, - "sub": 4, - "level": 2, - ".thumbnails": 12, - "bullhorn": 2, - "#0044cc": 20, - "input.search": 2, - "th.span1": 2, - "info.disabled": 2, - "input": 336, - "visible": 8, - "/0": 2, - "#dff0d8": 6, - "auto": 50, - "#444444": 10, - "avoid": 6, - "left": 489, - "tr.error": 4, - "@keyframes": 2, - "navbar": 28, - "open": 4, - "ok": 6, - "#e5e5e5": 28, - "to": 75, - "Consolas": 2, - "legend": 6, - "#387038": 2, - "appearance": 6, - "*display": 20, - "content": 66, - "share": 4, - "#002a80": 2, - "tr.info": 4, - "collapse": 12, - "horizontal": 60, - "#c67605": 4, - "#fff": 10, - "inverse.dropdown": 2, - "rounded": 2, - ".google": 2, - "colgroup": 18, - "#555555": 18, - "#1b1b1b": 2, - "textarea.span9": 2, - "#ebcccc": 2, - "*width": 26, - ";": 4219, - "#0480be": 10, - "#ededed": 2, - "url": 4, - "#49afcd": 2, - "spacing": 3, - "#d14": 2, - "relative": 18, - "tabs.nav": 12, - "film": 2, - "td.span9": 2, - "footer": 2, - "sizing": 27, - ".pagination": 78, - ".large.dropdown": 2, - ".05": 24, - "textarea.span7": 2, - "position": 342, - "letter": 1, - "#bce8f1": 2, - "actions": 10, - "pre": 16, - "#2d6987": 6, - ".container": 32, - "#5eb95e": 1, - "*overflow": 3, - "td.span7": 2, - "*z": 2, - "cog": 2, - ".icon": 288, - ".help": 44, - ".uneditable": 80, - "textarea.span5": 2, - "decoration": 33, - "inline": 116, - "visibility": 1, - ".bar": 22, - "folder": 4, - "primary.active": 6, - "ul.unstyled": 2, - "leaf": 2, - "opacity": 15, - "group": 120, - "both": 30, - "href": 28, - "td.span12": 2, - "td.span5": 2, - ".close": 2, - "screenshot": 2, - "tag": 2, - "off": 4, - "#1f6377": 2, - ".btn.disabled": 4, - "details": 2, - "textarea.span3": 2, - ".nav.pull": 2, - "gradient": 175, - "textarea.span12": 2, - "inner": 37, - ".radio.inline": 6, - "cancel": 2, - ".checkbox.inline": 6, - "th.span12": 2, - "allowed": 4, - "td.span10": 2, - "td.span3": 2, - "bottomleft": 16 - }, - "Logtalk": { - "end_object.": 1, - "nl": 2, - "executed": 1, - "initialization/1": 1, - "hello_world": 1, - "when": 1, - "object": 2, - "memory": 1, - "loaded": 1, - "the": 2, - "write": 1, - "initialization": 1, - "automatically": 1, - "argument": 1, - "directive": 1, - "into": 1, - "is": 2, - "%": 2, - ".": 2, - ")": 4, - "(": 4, - "-": 3 - }, - "Org": { - "**": 1, - "most": 1, - "for": 3, - "that": 1, - "n": 1, - "Back": 1, - "orgmode.rb": 1, - "skip": 1, - "Orgmode": 2, - "folder": 1, - "conversion": 1, - "nil": 4, - "C": 1, - "register": 1, - "class": 1, - "library": 1, - "mode": 2, - "@": 1, - "input": 3, - "See": 1, - "<%=>": 2, - "creates": 1, - "easy.": 1, - "output": 2, - "opposed": 1, - "Description": 1, - "erb": 1, - "indented": 1, - "orgmode": 3, - "will": 1, - "gem": 1, - "lognotestate": 1, - "much": 1, - "title": 2, - "END_EXAMPLE": 1, - "site.": 1, - "to": 8, - "rubygems": 2, - "STARTUP": 1, - "now": 1, - "is": 5, - "Helpful": 1, - "parser": 1, - "PRIORITIES": 1, - "{": 1, - "as": 1, - "thing": 2, - "not": 1, - "created": 1, - ".": 1, - "orgfile": 1, - "Ruby": 1, - "page": 2, - "use": 1, - "makes": 1, - "+": 13, - "u": 1, - "Parser.new": 1, - "all": 1, - "bugs": 1, - "paragraph": 2, - "extracting": 1, - "c@": 1, - "(": 11, - "installed": 1, - "textile.": 1, - "have": 1, - "site": 1, - "handle": 1, - "ve": 1, - "i": 1, - "BEGIN_EXAMPLE": 2, - "DONE": 1, - "create": 1, - "lib/": 1, - "INPROGRESS": 1, - "Write": 1, - "part": 1, - "list": 1, - "today": 1, - "TODO": 1, - "f": 2, - "EMAIL": 1, - "A": 1, - "en": 1, - "multi": 1, - "first": 1, - "convert": 1, - "tags": 2, - "do": 2, - "new": 2, - "filter": 3, - "LANGUAGE": 1, - "c": 1, - "status": 2, - "example": 1, - "TeX": 1, - "there": 1, - "support": 1, - "from": 1, - "org": 10, - "Worg": 1, - "ruby": 6, - "customize": 1, - "files.": 1, - "Create": 1, - "Filters.register": 1, - "You": 1, - "it": 1, - "items.": 1, - "does": 1, - "Dewey": 1, - "|": 4, - "CATEGORY": 1, - "TITLE": 1, - "History": 1, - "optimized": 1, - "cannot": 1, - "The": 3, - "HTML.": 1, - "you": 2, - "Under": 1, - "into": 1, - "AUTHOR": 1, - "in": 2, - "Check": 1, - "end": 1, - "s": 1, - "For": 1, - "already": 1, - "OPTIONS": 1, - "the": 6, - ")": 11, - "w@": 1, - ".to_html": 1, - "sure": 1, - "bullet.": 1, - "Currently": 1, - "H": 1, - "In": 1, - "#": 13, - "textile": 1, - "routines": 1, - "Parser": 1, - "Proper": 1, - "B": 1, - "parsing": 1, - "SEQ_TODO": 1, - "num": 1, - "Update": 1, - "worg": 1, - "d": 2, - "require": 1, - "Webby": 3, - "CANCELED": 1, - "Version": 1, - "need": 1, - "a": 4, - "of": 2, - "your": 2, - "last": 1, - "HTML": 2, - "Status": 1, - "align": 1, - "wouldn": 1, - "conversion.": 1, - "translate": 1, - "This": 2, - "file": 1, - "code": 1, - "Brian": 1, - "TAGS": 1, - "nodlcheck": 1, - "toc": 2, - "this": 2, - "files": 1, - "significant": 1, - "HIDE": 1, - "bdewey@gmail.com": 1, - "Fixed": 1, - "development": 1, - "-": 30, - "w": 1, - "Make": 1, - "sudo": 1, - "LaTeX": 1, - "gets": 1, - "created_at": 1, - "t": 10, - "hidestars": 1, - "fold": 1, - "oddeven": 1, - "*": 3, - "supplied": 1, - "content.": 2, - "install": 1, - "WAITING": 1, - "Fix": 1 - }, - "Racket": { - "n": 8, - "//racket": 1, - "that": 2, - "source": 1, - "if": 1, - "documentation": 1, - "be": 2, - "can": 1, - "for": 3, - "textual": 1, - "efficient": 1, - "@index": 1, - "@": 3, - "scribble/bnf": 1, - "syntax": 1, - "printf": 2, - "library": 1, - "generally": 1, - "itself": 1, - "power": 1, - "any": 1, - "PDF": 1, - "collection": 1, - "see": 1, - "racket/string": 1, - "Racket": 2, - "Tool": 1, - "@author": 1, - "starting": 1, - "bottles": 4, - "to": 2, - "else": 1, - "sub1": 1, - "is": 3, - "{": 2, - "with": 1, - "@title": 1, - "racket/list": 1, - "write": 1, - "url": 3, - "typeset": 1, - "(": 25, - "and": 1, - "let": 1, - "SHEBANG#!sh": 1, - "books": 1, - "contents": 1, - "scribble.scrbl": 1, - "written": 1, - "displayln": 2, - "other": 1, - "link": 1, - "@filepath": 1, - ";": 3, - "prose": 2, - "form.": 1, - "@include": 8, - "using": 1, - "]": 16, - "#lang": 1, - "file.": 1, - "You": 1, - "programmatically.": 1, - "|": 2, - "its": 1, - "simple": 1, - "whether": 1, - "scheme": 1, - "at": 1, - "you": 1, - "The": 1, - "etc.": 1, - "racket/path": 1, - "documents": 1, - "Scribble.": 1, - "racket/base": 1, - "in": 3, - "racket/file": 1, - "the": 3, - ")": 25, - "More": 1, - "content": 2, - "s": 1, - "exec": 1, - "form": 1, - "define": 1, - "um": 1, - "#": 2, - "helps": 1, - "or": 2, - "Latex": 1, - "Clean": 1, - "Scribble": 3, - "papers": 1, - "require": 2, - "generated": 1, - "via": 1, - "a": 1, - "of": 4, - "lang.org/": 1, - "document": 1, - "HTML": 1, - "Documentation": 1, - "programs": 1, - "are": 1, - "[": 16, - "more": 2, - "This": 1, - "code": 1, - "creating": 1, - "}": 2, - "tools": 1, - "http": 1, - "case": 1, - "range": 1, - "-": 100, - "text": 1, - "scribble/manual": 1, - "@table": 1, - "racket": 1, - "*": 2, - "section": 9, - "rich": 1 - }, - "Prolog": { - "Children": 2, - "some_occurs": 3, - "and": 3, - "quickly": 1, - "S1": 2, - "list": 1, - "A/B/C/D/E/F/H/0/I": 1, - "F": 31, - "screen": 1, - "animate": 2, - "/A/C/D/E/F/H/I/J": 1, - "Bigger": 2, - ";": 9, - "Rs0": 6, - "positive": 1, - "s": 1, - "cheaper": 2, - "using": 2, - "Child": 2, - "negative": 1, - "s_aux": 14, - "Manhattan": 1, - "%": 334, - "h": 10, - "animation": 1, - "Object": 1, - "be": 1, - "bold": 1, - "Open1": 2, - "equal": 2, - "partition": 5, - "]": 109, - "evaluation": 1, - "R": 32, - "H.": 1, - "Nodes": 1, - "A/B/C/D/E/F/H/J/0": 1, - "stay": 1, - "get0": 2, - "A/B/C/D/E/F/H/0/J": 3, - "G": 7, - "S2": 2, - "yfx": 1, - "<": 11, - "A/B/C/D/E/F/H/I/0": 2, - "Rest": 4, - "D1": 5, - "heuristic": 1, - "h_function": 2, - "/B/C/A/E/F/H/I/J": 1, - "Rs1": 2, - "Pa": 2, - "mode": 22, - "State#D#_#S": 1, - "i": 10, - "depth": 1, - "john": 2, - "turing": 1, - "into": 1, - "disjunction": 1, - "Ynew": 6, - "not": 1, - "nl": 8, - "configuration": 1, - "A/E/C/D/0/F/H/I/J": 1, - "Open2": 2, - "repeat_node": 2, - "New": 2, - "cls": 2, - "S": 26, - "displayed": 17, - "A/0/B/D/E/F/H/I/J": 1, - "A/B/C/D/E/F/I/0/J": 1, - "H": 11, - "S3": 2, - "for": 1, - "parents": 4, - "Ls0": 6, - "bagof": 1, - "Soln": 3, - "plus_minus": 1, - "cursor": 7, - "expand": 2, - "Pb": 2, - "State#_#_#Soln": 1, - "State": 7, - "p_fcn": 2, - "/B/C/D/E/F/H/I/J": 2, - "S#D#F#A": 1, - "F1": 1, - "plain.": 1, - "Open3": 2, - "B1": 2, - "_": 21, - "T": 6, - "cnF": 1, - "...": 3, - "D/B/C/0/E/F/H/I/J": 1, - "Smaller": 2, - "female": 2, - "draw": 18, - "S4": 2, - "d1": 1, - "Smalls": 3, - "I": 5, - "Ls1": 4, - "Each": 1, - "location": 32, - "retractall": 1, - "tile": 5, - "peter": 3, - "sequence": 2, - "should": 1, - "objects": 1, - "reverse_video": 2, - "Put": 1, - "function": 4, - "v": 3, - "A/B/C/D/I/F/H/0/J": 1, - "Pc": 2, - "plus": 6, - "rule": 1, - "sequences": 1, - "A/B/C/E/0/F/H/I/J": 1, - "(": 585, - "goal": 2, - "deny": 10, - "if": 2, - "spot": 1, - "mem_plus": 2, - "A/B/C/D/E/0/H/I/J": 3, - "RsRest": 2, - "Tape": 2, - "U": 2, - "at": 1, - "message": 1, - "A/B/C/D/F/0/H/I/J": 1, - "_#_#F2#_": 1, - "J": 1, - "A/B/F/D/E/0/H/I/J": 1, - "S5": 2, - "_#_#F1#_": 1, - "cycle": 1, - "push": 20, - "affirm": 10, - "Pd": 2, - "state": 1, - "Algorithm": 1, - "write_list": 3, - "working": 1, - ")": 584, - "B/0/C/D/E/F/H/I/J": 1, - "a": 31, - "NormalClauses": 3, - "which": 1, - "A/B/C/D/E/F/H/I/J": 1, - "initialize": 2, - "up": 17, - "A/0/C/D/E/F/H/I/J": 3, - "s_fcn": 2, - "search": 4, - "eval": 7, - "V": 16, - "init": 11, - "make_clauses": 5, - "blink": 1, - "S6": 2, - "insert": 6, - "have": 2, - "Wff": 3, - "put": 16, - "action_module": 1, - "Puzz": 3, - "reverse": 2, - "@": 1, - "map": 2, - "location/3.": 1, - "Pe": 2, - "Move": 3, - "out": 4, - "node": 2, - "right": 22, - "is": 22, - "A/B/C/0/D/F/H/I/J": 1, - "vick": 2, - "Ls": 12, - "call": 1, - "graphics": 1, - "m": 16, - "A/B/C/D/0/E/H/I/J": 1, - "distance": 1, - "clear": 4, - "Action": 2, - "conVert": 1, - "hide_row": 4, - "character": 3, - "b": 12, - "solve": 2, - "christie": 3, - "false": 1, - "retracted": 1, - "value": 1, - "L": 2, - "S7": 2, - "A/B/C/D/0/F/H/I/J": 4, - "A/B/0/D/E/F/H/I/J": 2, - "A/B/C/D/E/F/G/H/I": 3, - "NewSym": 2, - "A*": 1, - "A": 40, - "make_sequence": 9, - "attributes": 1, - "minus": 5, - "The": 1, - "normal": 3, - "Pf": 2, - "op": 28, - "left": 26, - "+": 32, - "flatten_and": 5, - "down": 15, - "c": 10, - "X": 62, - "S9.": 1, - "insert_all": 4, - "append": 2, - "empty": 2, - "P#_#_#_": 2, - "M": 14, - "State#0#F#": 1, - "S8": 2, - "sequence_append": 5, - "/2/3/8/0/4/7/6/5": 1, - "B": 30, - "the": 15, - "Open": 7, - "A/B/C/D/0/F/H/E/J": 1, - "occurs": 4, - "hide": 10, - "character_map": 3, - "play_back": 5, - "f_function": 3, - "describes": 1, - "Pg": 3, - "brother": 1, - "symbol": 3, - "draw_row": 4, - "assert": 17, - "of": 5, - "i.e.": 3, - "where": 3, - "*D1": 2, - "d": 27, - "V1": 2, - "accumulator": 10, - "times": 4, - "N1": 2, - "literals": 1, - "nl.": 1, - "A/B/C/0/E/F/H/I/J": 3, - "Y": 34, - "X0": 10, - "N": 20, - "_X": 2, - "Xs": 5, - "S9": 1, - "A/B/C/H/E/F/0/I/J": 1, - "flatten_or": 6, - "normalize": 2, - "C": 21, - "Ph": 2, - "or": 1, - "lt": 1, - "{": 3, - "A/B/C/D/E/J/H/I/0": 1, - "action": 4, - "asserted": 1, - "-": 276, - "Child#D1#F#": 1, - "once": 1, - "tautology": 4, - "Y0": 10, - "to": 1, - "F2.": 1, - "use": 3, - "e": 10, - "Q0": 2, - "qf": 1, - "Obj": 26, - "write": 13, - "nop": 6, - "A/C/0/D/E/F/H/I/J": 1, - "arithmetic": 3, - "an": 1, - "X1": 8, - "Xnew": 6, - "O": 14, - "memory": 5, - "Pi.": 1, - "represents": 1, - "form": 2, - "Bigs": 3, - "make_clause": 5, - "P1": 2, - "conjunction": 1, - "retract": 8, - "dynamic": 1, - "mem_rec": 2, - "D": 37, - "*S.": 1, - "Sym": 6, - "|": 36, - "Pi": 1, - "ancestor": 1, - "Rs": 16, - "by": 1, - "plain": 1, - "A/0/C/D/B/F/H/I/J": 1, - "All_My_Children": 2, - "A/B/C/D/E/F/0/I/J": 2, - ".": 210, - "Tape0": 2, - "Y1": 8, - "video": 1, - "f": 10, - "Q1": 2, - "[": 110, - "puzzle": 4, - "solver": 1, - "make": 2, - "drawn": 2, - "Tile": 35, - "moves": 1, - "A/B/0/D/E/C/H/I/J": 1, - "P": 37, - "ESC": 1, - "A/B/C/0/E/F/D/I/J": 1, - "quicksort": 4, - "E": 3, - "perform": 4, - "way": 1, - "message.": 2, - "}": 3, - "two": 1, - "/": 2, - "Pivot": 4, - "calculator": 1, - "move": 7, - "male": 3, - "q0": 1, - "draw_all": 1, - "g": 10, - "cont": 3, - "VT100": 1, - "separate": 7, - "draw_all.": 1, - "A/B/C/D/E/0/H/I/F": 1, - "A/B/C/D/E/F/0/H/J": 1 - }, - "Arduino": { - "Serial.print": 1, - "loop": 1, - "Serial.begin": 1, - "setup": 1, - "void": 2, - "}": 2, - ";": 2, - "{": 2, - ")": 4, - "(": 4 - }, - "Nemerle": { - "WriteLine": 1, - "Program": 1, - "module": 1, - "using": 1, - "Main": 1, - "void": 1, - "System.Console": 1, - "}": 2, - ")": 2, - "(": 2, - "{": 2, - ";": 2 - }, - "PogoScript": { - "index": 1, - "*": 2, - "link": 2, - "for": 2, - "get": 2, - "sort": 2, - "async.map": 1, - "<link\\s[^>": 1, - "r/": 2, - "replacements": 6, - "/gi": 2, - "b.index": 1, - "while": 1, - "{": 3, - "/": 2, - "url": 5, - "]": 7, - ".concat": 1, - "err": 2, - "<script\\s[^>": 1, - "script": 2, - "httpism.get": 2, - "length": 1, - "m": 1, - "callback": 2, - ")": 38, - "b": 1, - "in": 11, - "<\\/link\\>": 1, - "replacement": 2, - "scripts": 2, - "elements": 5, - "}": 3, - "rep": 1, - "href": 1, - "elements.push": 1, - "tag": 3, - "each": 2, - "r": 1, - "*href": 1, - "html.substr": 1, - "m.0.length": 1, - "m.index": 1, - "<\\/script\\>": 1, - "parts": 3, - "resolve": 2, - ".resolve": 1, - "m.1": 1, - "squash": 2, - "links": 2, - "r.url": 1, - "+": 2, - "require": 3, - "matching": 3, - "replacements.sort": 1, - "rep.index": 1, - "reg.exec": 1, - "html": 15, - "(": 38, - "a": 1, - "httpism": 1, - "exports.squash": 1, - "reg": 5, - "replacement.url": 1, - "i": 3, - "|": 2, - ".body": 2, - "replace": 2, - "*src": 1, - "r.href": 1, - "a.index": 1, - "@": 6, - "-": 1, - "replacement.body": 1, - "rep.length": 1, - "[": 5, - "async": 1, - "as": 3, - "requested": 2, - "s*": 2 - }, - "Julia": { - "*dt": 2, - "for": 2, - "unoptimised": 1, - "Prices": 1, - "Wiener": 1, - "decomposition": 1, - "stock": 1, - "SimulPriceB": 5, - "/250": 1, - "rate": 1, - "Number": 2, - "chol": 1, - "Correlated": 1, - "end": 3, - "paths": 1, - "B": 1, - "CorrWiener": 1, - "information": 1, - "]": 20, - "Matrix": 2, - "from": 1, - "Wiener*UpperTriangle": 1, - "Dividend": 1, - "original": 1, - "Geometric": 1, - "days": 3, - "stockcorr": 1, - "*CorrWiener": 2, - "*sqrt": 2, - ")": 13, - "case": 1, - "two": 2, - "correlated": 1, - "years": 1, - "Define": 1, - "zeros": 2, - "simulations": 1, - "storages": 1, - "j": 7, - "UpperTriangle": 2, - "SimulPriceA": 5, - "Test": 1, - "Price": 2, - "return": 1, - "r": 3, - "simulate": 1, - "Time": 1, - "The": 1, - "free": 1, - "simulates": 1, - "stocks": 1, - "randn": 1, - "A": 1, - "T": 5, - "Market": 1, - "#STOCKCORR": 1, - "prices": 1, - "#": 11, - "to": 1, - "the": 2, - "+": 2, - "##": 5, - "of": 6, - "Cholesky": 1, - "Motion": 1, - "function": 1, - "Risk": 1, - "year": 1, - "/2": 2, - "Brownian": 1, - "(": 13, - "Corr": 2, - ";": 1, - "#445": 1, - "CurrentPrice": 3, - "i": 5, - "by": 2, - "Generating": 1, - "Simulated": 2, - "that": 1, - "Vol": 5, - "code": 1, - "Asset": 2, - "-": 11, - "Volatility": 1, - "asset": 1, - "dt": 3, - "Information": 1, - "Div": 3, - "*exp": 2, - "[": 20, - "n": 4, - "Issue": 1, - "assets": 1, - "Correlation": 1, - "Initial": 1, - "step": 1 - }, - "Omgrofl": { - "Hello": 1, - "brb": 1, - "lool": 5, - "lmao": 1, - "rofl": 13, - "lol": 14, - "stfu": 1, - "w00t": 1, - "liek": 1, - "wtf": 1, - "iz": 11, - "loool": 6, - "World": 1 - }, - "Logos": { - "OptionalCondition": 1, - "init": 3, - "orig": 2, - "self": 1, - "group": 1, - "release": 1, - "NSObject": 1, - "DEF": 1, - "subclass": 1, - "ABC": 2, - "hook": 2, - "retain": 1, - "OptionalHooks": 2, - "RuntimeAccessibleClass": 1, - "log": 1, - "ctor": 1, - "end": 4, - "return": 2, - "if": 1, - "void": 1, - "alloc": 1, - "id": 2, - "]": 2, - "c": 1, - "[": 2, - "}": 4, - "nil": 2, - ";": 8, - "{": 4, - "b": 1, - "B": 1, - "a": 1, - ")": 8, + "ABAP": { + "*/**": 1, + "*": 56, + "The": 2, + "MIT": 2, + "License": 1, "(": 8, - "-": 3, - "%": 15 - }, - "MoonScript": { - "object": 1, - "max_tmp_name": 5, - "body_idx": 3, - "list": 6, - "types": 2, - "and": 8, - "super": 1, - "conds": 3, - "ntype": 16, - "proxy": 2, - "stms": 4, - "next": 1, - "case_exps": 3, - "case": 13, - "in": 18, - "*find_assigns": 1, - "build.table": 2, - "named_assign": 2, - "expression/statement": 1, - "__mode": 1, - "look": 1, - "return": 11, - "build.group": 14, - "node.names": 3, - "is_slice": 2, - "]": 79, - "table": 2, - "transform": 2, - "with": 3, - "transformed": 2, - "node.iter": 1, - "last_exp_id": 3, - "parent_val": 1, - "type": 5, - "list_name": 6, - "unless": 6, - "expand_elseif_assign": 2, - "included": 1, - "t": 10, - "i": 15, - "into": 1, - "*body": 2, - "is_singular": 2, - "#ifstm": 1, - "not": 2, - "constructor.arrow": 1, - "mtype": 3, - "cls": 5, - "after": 1, - "@seen_nodes": 3, - "@transformers": 3, - "build.assign_one": 11, - "source_name": 3, - "self": 2, - "for": 20, - "node.body": 9, - "index": 2, - "ifstm": 5, - "apart": 1, - "expand": 1, - "last": 6, - "slice": 7, - "@transform.statement": 2, - "sindle": 1, - "cls_mt": 2, - "#real_name": 1, - "*stm": 1, - "@send": 1, - "root_stms": 1, - "_": 10, - "...": 10, - "source": 7, - "scope": 4, - "@listen": 1, - "setmetatable": 1, - "they": 1, - "..": 1, - "scope_name": 5, - "then": 2, - "parent_assign": 3, - "elseif": 1, - "*names": 3, - "build.declare": 1, - "with_continue_listener": 4, - "hoist": 1, - "@set": 1, - "clause": 4, - "inner": 2, - "#list": 1, - "new": 2, - "(": 54, - "value_is_singular": 3, - "current_stms": 7, - "if": 43, - "tuple": 8, - "are": 1, - "update": 1, - "__call": 1, - "transformer": 3, - "bind": 1, - "destructure": 1, - "Value": 1, - "name": 31, - "cls.name": 1, - "state": 2, - "on": 1, - "clauses": 4, - "decorated": 1, - "apply_to_last": 6, - ")": 54, - "dot": 1, - "item": 3, - "a": 4, - "bounds": 3, - "split": 4, - "up": 1, - "build": 7, - "smart_node": 7, - "string": 1, - "stubs": 1, - "reversed": 2, - "implicitly_return": 2, - "insert": 18, - "mutate": 1, - "statment": 1, - "body": 26, - "self.fn": 1, - "@": 1, - "values": 10, - "wrapped": 4, - "out": 9, - "idx": 4, - "node": 68, + ")": 8, + "Copyright": 1, + "c": 3, + "Ren": 1, + "van": 1, + "Mil": 1, + "Permission": 1, "is": 2, - "stub": 4, - "call": 3, - "destructure.build_assign": 2, - "old": 1, - "types.is_value": 1, - "export": 1, - "class": 4, - "false": 2, - "..t": 1, - "construct_comprehension": 2, - "cond": 11, - "value": 7, - "sure": 1, - "extract": 1, - "table.remove": 2, - "@put_name": 2, - "fail": 5, - "from": 4, - "#body": 1, - "we": 1, - "key": 3, - "#node": 3, - "hoist_declarations": 1, - "exp": 17, - "nil": 8, - "op": 2, - "colon_stub": 1, - "@transform": 2, - "+": 2, - "*item": 1, - "assigns": 5, - "foreach": 1, - "true": 4, + "hereby": 1, + "granted": 1, + "free": 1, + "of": 6, + "charge": 1, + "to": 10, + "any": 1, + "person": 1, + "obtaining": 1, + "a": 1, + "copy": 2, + "this": 2, + "software": 1, + "and": 3, + "associated": 1, + "documentation": 1, + "files": 4, + "the": 10, + "deal": 1, + "in": 3, + "Software": 3, + "without": 2, + "restriction": 1, + "including": 1, + "limitation": 1, + "rights": 1, + "use": 1, + "modify": 1, + "merge": 1, + "publish": 1, + "distribute": 1, + "sublicense": 1, + "and/or": 1, + "sell": 1, + "copies": 2, + "permit": 1, + "persons": 1, + "whom": 1, + "furnished": 1, + "do": 4, + "so": 1, + "subject": 1, + "following": 1, + "conditions": 1, + "above": 1, + "copyright": 1, + "notice": 2, + "permission": 1, + "shall": 1, + "be": 1, + "included": 1, "all": 1, - "ipairs": 3, - "stm": 16, - "arg_list": 1, - "base_name": 4, - "destructure.has_destructure": 2, - "op_final": 3, - "build.chain": 7, - "error": 4, - "require": 5, - "data": 1, - "puke": 1, - "assign": 9, - "build.fndef": 3, - "the": 4, - "first": 3, - "match": 1, - "args": 3, - "bodies": 1, - "of": 1, - "#stms": 1, - "#values": 1, - "build.do": 2, - "cls_name": 1, - "*properties": 1, - "statements": 4, - "constructor_name": 2, - "runs": 1, - "if_cond": 4, - "convert_cond": 2, - "while": 3, - "Run": 8, - "LocalName": 2, - "parens": 2, - "out_body": 1, - "arrow": 1, - "*conds": 1, - "or": 6, - "real_names": 4, - "{": 135, - "when": 12, - "-": 51, - "index_name": 3, - "break": 1, - "res": 3, - "action": 4, - "decorator": 1, - "names": 16, - "@fn": 1, - "Statement": 2, - "group": 1, - "thing": 4, - "dec": 6, - "types.cascading": 1, - "properties": 4, - "import": 5, - "util": 2, - "build.assign": 3, - "apply": 1, - "switch": 7, - "do": 2, - "local": 1, - "lines": 2, - "bubble": 1, - "real_name": 6, - "parent_cls_name": 5, - "plain": 1, - "fn": 3, - "ret": 16, - "iter": 2, - "cascading": 2, - "don": 1, - "cond_exp": 5, - "[": 79, - "*stubs": 2, - "unpack": 22, - "block": 2, - "destructure.split_assign": 1, - "destructures": 5, - "make": 1, - "comprehension": 1, - "table.insert": 3, - "NameProxy": 14, - "else": 22, - "assign_name": 1, - "self_name": 4, - "continue": 1, - "continue_name": 13, - "varargs": 2, - "class_lookup": 3, - "if_stm": 5, - "}": 136, - "find": 2, - "exp_name": 3, - "base": 8, - "find_assigns": 2, - "..op": 1, - "real": 1, - "convert": 1, - "Transformer": 2, - "constructor": 7, - "slice_var": 3, - "@splice": 1, - "can_transform": 1, - "will": 1 + "or": 1, + "substantial": 1, + "portions": 1, + "Software.": 1, + "THE": 6, + "SOFTWARE": 2, + "IS": 1, + "PROVIDED": 1, + "WITHOUT": 1, + "WARRANTY": 1, + "OF": 4, + "ANY": 2, + "KIND": 1, + "EXPRESS": 1, + "OR": 7, + "IMPLIED": 1, + "INCLUDING": 1, + "BUT": 1, + "NOT": 1, + "LIMITED": 1, + "TO": 2, + "WARRANTIES": 1, + "MERCHANTABILITY": 1, + "FITNESS": 1, + "FOR": 2, + "A": 1, + "PARTICULAR": 1, + "PURPOSE": 1, + "AND": 1, + "NONINFRINGEMENT.": 1, + "IN": 4, + "NO": 1, + "EVENT": 1, + "SHALL": 1, + "AUTHORS": 1, + "COPYRIGHT": 1, + "HOLDERS": 1, + "BE": 1, + "LIABLE": 1, + "CLAIM": 1, + "DAMAGES": 1, + "OTHER": 2, + "LIABILITY": 1, + "WHETHER": 1, + "AN": 1, + "ACTION": 1, + "CONTRACT": 1, + "TORT": 1, + "OTHERWISE": 1, + "ARISING": 1, + "FROM": 1, + "OUT": 1, + "CONNECTION": 1, + "WITH": 1, + "USE": 1, + "DEALINGS": 1, + "SOFTWARE.": 1, + "*/": 1, + "-": 978, + "CLASS": 2, + "CL_CSV_PARSER": 6, + "DEFINITION": 2, + "class": 2, + "cl_csv_parser": 2, + "definition": 1, + "public": 3, + "inheriting": 1, + "from": 1, + "cl_object": 1, + "final": 1, + "create": 1, + ".": 9, + "section.": 3, + "not": 3, + "include": 3, + "other": 3, + "source": 3, + "here": 3, + "type": 11, + "pools": 1, + "abap": 1, + "methods": 2, + "constructor": 2, + "importing": 1, + "delegate": 1, + "ref": 1, + "if_csv_parser_delegate": 1, + "csvstring": 1, + "string": 1, + "separator": 1, + "skip_first_line": 1, + "abap_bool": 2, + "parse": 2, + "raising": 1, + "cx_csv_parse_error": 2, + "protected": 1, + "private": 1, + "constants": 1, + "_textindicator": 1, + "value": 2, + "IMPLEMENTATION": 2, + "implementation.": 1, + "<SIGNATURE>": 2, + "+": 9, + "|": 7, + "Instance": 2, + "Public": 1, + "Method": 2, + "CONSTRUCTOR": 1, + "[": 5, + "]": 5, + "DELEGATE": 1, + "TYPE": 5, + "REF": 1, + "IF_CSV_PARSER_DELEGATE": 1, + "CSVSTRING": 1, + "STRING": 1, + "SEPARATOR": 1, + "C": 1, + "SKIP_FIRST_LINE": 1, + "ABAP_BOOL": 1, + "</SIGNATURE>": 2, + "method": 2, + "constructor.": 1, + "super": 1, + "_delegate": 1, + "delegate.": 1, + "_csvstring": 2, + "csvstring.": 1, + "_separator": 1, + "separator.": 1, + "_skip_first_line": 1, + "skip_first_line.": 1, + "endmethod.": 2, + "Get": 1, + "lines": 4, + "data": 3, + "is_first_line": 1, + "abap_true.": 2, + "standard": 2, + "table": 3, + "string.": 3, + "_lines": 1, + "field": 1, + "symbols": 1, + "<line>": 3, + "loop": 1, + "at": 2, + "assigning": 1, + "Parse": 1, + "line": 1, + "values": 2, + "_parse_line": 2, + "Private": 1, + "_LINES": 1, + "<": 1, + "RETURNING": 1, + "STRINGTAB": 1, + "_lines.": 1, + "split": 1, + "cl_abap_char_utilities": 1, + "cr_lf": 1, + "into": 6, + "returning.": 1, + "Space": 2, + "concatenate": 4, + "csvvalue": 6, + "csvvalue.": 5, + "else.": 4, + "char": 2, + "endif.": 6, + "This": 1, + "indicates": 1, + "an": 1, + "error": 1, + "CSV": 1, + "formatting": 1, + "text_ended": 1, + "message": 2, + "e003": 1, + "csv": 1, + "msg.": 2, + "raise": 1, + "exception": 1, + "exporting": 1, + "endwhile.": 2, + "append": 2, + "csvvalues.": 2, + "clear": 1, + "pos": 2, + "endclass.": 1 }, - "Parrot Assembly": { - "SHEBANG#!parrot": 1, - "main": 2, - ".pcc_sub": 1, - "end": 1, + "ApacheConf": { + "ServerSignature": 1, + "Off": 1, + "RewriteCond": 15, + "%": 48, + "{": 16, + "REQUEST_METHOD": 1, + "}": 16, + "(": 16, + "HEAD": 1, + "|": 80, + "TRACE": 1, + "DELETE": 1, + "TRACK": 1, + ")": 17, + "[": 17, + "NC": 13, + "OR": 14, + "]": 17, + "THE_REQUEST": 1, + "r": 1, + "n": 1, + "A": 6, + "D": 6, + "HTTP_REFERER": 1, + "<|>": 6, + "C": 5, + "E": 5, + "HTTP_COOKIE": 1, + "REQUEST_URI": 1, + "/": 3, + ";": 2, + "<": 1, + ".": 7, + "HTTP_USER_AGENT": 5, + "java": 1, + "curl": 2, + "wget": 2, + "winhttp": 1, + "HTTrack": 1, + "clshttp": 1, + "archiver": 1, + "loader": 1, + "email": 1, + "harvest": 1, + "extract": 1, + "grab": 1, + "miner": 1, + "libwww": 1, + "-": 43, + "perl": 1, + "python": 1, + "nikto": 1, + "scan": 1, + "#Block": 1, + "mySQL": 1, + "injects": 1, + "QUERY_STRING": 5, + ".*": 3, + "*": 1, + "union": 1, + "select": 1, + "insert": 1, + "cast": 1, + "set": 1, + "declare": 1, + "drop": 1, + "update": 1, + "md5": 1, + "benchmark": 1, + "./": 1, + "localhost": 1, + "loopback": 1, + ".0": 2, + ".1": 1, + "a": 1, + "z0": 1, + "RewriteRule": 1, + "index.php": 1, + "F": 1, + "#": 182, + "ServerRoot": 2, + "#Listen": 2, + "Listen": 2, + "LoadModule": 126, + "authn_file_module": 2, + "/usr/lib/apache2/modules/mod_authn_file.so": 1, + "authn_dbm_module": 2, + "/usr/lib/apache2/modules/mod_authn_dbm.so": 1, + "authn_anon_module": 2, + "/usr/lib/apache2/modules/mod_authn_anon.so": 1, + "authn_dbd_module": 2, + "/usr/lib/apache2/modules/mod_authn_dbd.so": 1, + "authn_default_module": 2, + "/usr/lib/apache2/modules/mod_authn_default.so": 1, + "authn_alias_module": 1, + "/usr/lib/apache2/modules/mod_authn_alias.so": 1, + "authz_host_module": 2, + "/usr/lib/apache2/modules/mod_authz_host.so": 1, + "authz_groupfile_module": 2, + "/usr/lib/apache2/modules/mod_authz_groupfile.so": 1, + "authz_user_module": 2, + "/usr/lib/apache2/modules/mod_authz_user.so": 1, + "authz_dbm_module": 2, + "/usr/lib/apache2/modules/mod_authz_dbm.so": 1, + "authz_owner_module": 2, + "/usr/lib/apache2/modules/mod_authz_owner.so": 1, + "authnz_ldap_module": 1, + "/usr/lib/apache2/modules/mod_authnz_ldap.so": 1, + "authz_default_module": 2, + "/usr/lib/apache2/modules/mod_authz_default.so": 1, + "auth_basic_module": 2, + "/usr/lib/apache2/modules/mod_auth_basic.so": 1, + "auth_digest_module": 2, + "/usr/lib/apache2/modules/mod_auth_digest.so": 1, + "file_cache_module": 1, + "/usr/lib/apache2/modules/mod_file_cache.so": 1, + "cache_module": 2, + "/usr/lib/apache2/modules/mod_cache.so": 1, + "disk_cache_module": 2, + "/usr/lib/apache2/modules/mod_disk_cache.so": 1, + "mem_cache_module": 2, + "/usr/lib/apache2/modules/mod_mem_cache.so": 1, + "dbd_module": 2, + "/usr/lib/apache2/modules/mod_dbd.so": 1, + "dumpio_module": 2, + "/usr/lib/apache2/modules/mod_dumpio.so": 1, + "ext_filter_module": 2, + "/usr/lib/apache2/modules/mod_ext_filter.so": 1, + "include_module": 2, + "/usr/lib/apache2/modules/mod_include.so": 1, + "filter_module": 2, + "/usr/lib/apache2/modules/mod_filter.so": 1, + "charset_lite_module": 1, + "/usr/lib/apache2/modules/mod_charset_lite.so": 1, + "deflate_module": 2, + "/usr/lib/apache2/modules/mod_deflate.so": 1, + "ldap_module": 1, + "/usr/lib/apache2/modules/mod_ldap.so": 1, + "log_forensic_module": 2, + "/usr/lib/apache2/modules/mod_log_forensic.so": 1, + "env_module": 2, + "/usr/lib/apache2/modules/mod_env.so": 1, + "mime_magic_module": 2, + "/usr/lib/apache2/modules/mod_mime_magic.so": 1, + "cern_meta_module": 2, + "/usr/lib/apache2/modules/mod_cern_meta.so": 1, + "expires_module": 2, + "/usr/lib/apache2/modules/mod_expires.so": 1, + "headers_module": 2, + "/usr/lib/apache2/modules/mod_headers.so": 1, + "ident_module": 2, + "/usr/lib/apache2/modules/mod_ident.so": 1, + "usertrack_module": 2, + "/usr/lib/apache2/modules/mod_usertrack.so": 1, + "unique_id_module": 2, + "/usr/lib/apache2/modules/mod_unique_id.so": 1, + "setenvif_module": 2, + "/usr/lib/apache2/modules/mod_setenvif.so": 1, + "version_module": 2, + "/usr/lib/apache2/modules/mod_version.so": 1, + "proxy_module": 2, + "/usr/lib/apache2/modules/mod_proxy.so": 1, + "proxy_connect_module": 2, + "/usr/lib/apache2/modules/mod_proxy_connect.so": 1, + "proxy_ftp_module": 2, + "/usr/lib/apache2/modules/mod_proxy_ftp.so": 1, + "proxy_http_module": 2, + "/usr/lib/apache2/modules/mod_proxy_http.so": 1, + "proxy_ajp_module": 2, + "/usr/lib/apache2/modules/mod_proxy_ajp.so": 1, + "proxy_balancer_module": 2, + "/usr/lib/apache2/modules/mod_proxy_balancer.so": 1, + "ssl_module": 4, + "/usr/lib/apache2/modules/mod_ssl.so": 1, + "mime_module": 4, + "/usr/lib/apache2/modules/mod_mime.so": 1, + "dav_module": 2, + "/usr/lib/apache2/modules/mod_dav.so": 1, + "status_module": 2, + "/usr/lib/apache2/modules/mod_status.so": 1, + "autoindex_module": 2, + "/usr/lib/apache2/modules/mod_autoindex.so": 1, + "asis_module": 2, + "/usr/lib/apache2/modules/mod_asis.so": 1, + "info_module": 2, + "/usr/lib/apache2/modules/mod_info.so": 1, + "suexec_module": 1, + "/usr/lib/apache2/modules/mod_suexec.so": 1, + "cgid_module": 3, + "/usr/lib/apache2/modules/mod_cgid.so": 1, + "cgi_module": 2, + "/usr/lib/apache2/modules/mod_cgi.so": 1, + "dav_fs_module": 2, + "/usr/lib/apache2/modules/mod_dav_fs.so": 1, + "dav_lock_module": 1, + "/usr/lib/apache2/modules/mod_dav_lock.so": 1, + "vhost_alias_module": 2, + "/usr/lib/apache2/modules/mod_vhost_alias.so": 1, + "negotiation_module": 2, + "/usr/lib/apache2/modules/mod_negotiation.so": 1, + "dir_module": 4, + "/usr/lib/apache2/modules/mod_dir.so": 1, + "imagemap_module": 2, + "/usr/lib/apache2/modules/mod_imagemap.so": 1, + "actions_module": 2, + "/usr/lib/apache2/modules/mod_actions.so": 1, + "speling_module": 2, + "/usr/lib/apache2/modules/mod_speling.so": 1, + "userdir_module": 2, + "/usr/lib/apache2/modules/mod_userdir.so": 1, + "alias_module": 4, + "/usr/lib/apache2/modules/mod_alias.so": 1, + "rewrite_module": 2, + "/usr/lib/apache2/modules/mod_rewrite.so": 1, + "<IfModule>": 17, + "mpm_netware_module": 2, + "User": 2, + "daemon": 2, + "Group": 2, + "</IfModule>": 17, + "ServerAdmin": 2, + "you@example.com": 2, + "#ServerName": 2, + "www.example.com": 2, + "DocumentRoot": 2, + "<Directory>": 6, + "Options": 6, + "FollowSymLinks": 4, + "AllowOverride": 6, + "None": 8, + "Order": 10, + "deny": 10, + "allow": 10, + "Deny": 6, + "from": 10, + "all": 10, + "</Directory>": 6, + "usr": 2, + "share": 1, + "apache2": 1, + "default": 1, + "site": 1, + "htdocs": 1, + "Indexes": 2, + "Allow": 4, + "DirectoryIndex": 2, + "index.html": 2, + "<FilesMatch>": 2, + "ht": 1, + "Satisfy": 4, + "All": 4, + "</FilesMatch>": 2, + "ErrorLog": 2, + "/var/log/apache2/error_log": 1, + "LogLevel": 2, + "warn": 2, + "log_config_module": 3, + "LogFormat": 6, + "combined": 4, + "common": 4, + "logio_module": 3, + "combinedio": 2, + "CustomLog": 2, + "/var/log/apache2/access_log": 2, + "#CustomLog": 2, + "ScriptAlias": 1, + "/cgi": 2, + "bin/": 2, + "#Scriptsock": 2, + "/var/run/apache2/cgisock": 1, + "lib": 1, + "cgi": 3, + "bin": 1, + "DefaultType": 2, + "text/plain": 2, + "TypesConfig": 2, + "/etc/apache2/mime.types": 1, + "#AddType": 4, + "application/x": 6, + "gzip": 6, + ".tgz": 6, + "#AddEncoding": 4, + "x": 4, + "compress": 4, + ".Z": 4, + ".gz": 4, + "AddType": 4, + "#AddHandler": 4, + "script": 2, + ".cgi": 2, + "type": 2, + "map": 2, + "var": 2, + "text/html": 2, + ".shtml": 4, + "#AddOutputFilter": 2, + "INCLUDES": 2, + "#MIMEMagicFile": 2, + "/etc/apache2/magic": 1, + "#ErrorDocument": 8, + "/missing.html": 2, + "http": 2, + "//www.example.com/subscription_info.html": 2, + "#EnableMMAP": 2, + "off": 5, + "#EnableSendfile": 2, + "#Include": 17, + "/etc/apache2/extra/httpd": 11, + "mpm.conf": 2, + "multilang": 2, + "errordoc.conf": 2, + "autoindex.conf": 2, + "languages.conf": 2, + "userdir.conf": 2, + "info.conf": 2, + "vhosts.conf": 2, + "manual.conf": 2, + "dav.conf": 2, + "default.conf": 2, + "ssl.conf": 2, + "SSLRandomSeed": 4, + "startup": 2, + "builtin": 4, + "connect": 2, + "libexec/apache2/mod_authn_file.so": 1, + "libexec/apache2/mod_authn_dbm.so": 1, + "libexec/apache2/mod_authn_anon.so": 1, + "libexec/apache2/mod_authn_dbd.so": 1, + "libexec/apache2/mod_authn_default.so": 1, + "libexec/apache2/mod_authz_host.so": 1, + "libexec/apache2/mod_authz_groupfile.so": 1, + "libexec/apache2/mod_authz_user.so": 1, + "libexec/apache2/mod_authz_dbm.so": 1, + "libexec/apache2/mod_authz_owner.so": 1, + "libexec/apache2/mod_authz_default.so": 1, + "libexec/apache2/mod_auth_basic.so": 1, + "libexec/apache2/mod_auth_digest.so": 1, + "libexec/apache2/mod_cache.so": 1, + "libexec/apache2/mod_disk_cache.so": 1, + "libexec/apache2/mod_mem_cache.so": 1, + "libexec/apache2/mod_dbd.so": 1, + "libexec/apache2/mod_dumpio.so": 1, + "reqtimeout_module": 1, + "libexec/apache2/mod_reqtimeout.so": 1, + "libexec/apache2/mod_ext_filter.so": 1, + "libexec/apache2/mod_include.so": 1, + "libexec/apache2/mod_filter.so": 1, + "substitute_module": 1, + "libexec/apache2/mod_substitute.so": 1, + "libexec/apache2/mod_deflate.so": 1, + "libexec/apache2/mod_log_config.so": 1, + "libexec/apache2/mod_log_forensic.so": 1, + "libexec/apache2/mod_logio.so": 1, + "libexec/apache2/mod_env.so": 1, + "libexec/apache2/mod_mime_magic.so": 1, + "libexec/apache2/mod_cern_meta.so": 1, + "libexec/apache2/mod_expires.so": 1, + "libexec/apache2/mod_headers.so": 1, + "libexec/apache2/mod_ident.so": 1, + "libexec/apache2/mod_usertrack.so": 1, + "#LoadModule": 4, + "libexec/apache2/mod_unique_id.so": 1, + "libexec/apache2/mod_setenvif.so": 1, + "libexec/apache2/mod_version.so": 1, + "libexec/apache2/mod_proxy.so": 1, + "libexec/apache2/mod_proxy_connect.so": 1, + "libexec/apache2/mod_proxy_ftp.so": 1, + "libexec/apache2/mod_proxy_http.so": 1, + "proxy_scgi_module": 1, + "libexec/apache2/mod_proxy_scgi.so": 1, + "libexec/apache2/mod_proxy_ajp.so": 1, + "libexec/apache2/mod_proxy_balancer.so": 1, + "libexec/apache2/mod_ssl.so": 1, + "libexec/apache2/mod_mime.so": 1, + "libexec/apache2/mod_dav.so": 1, + "libexec/apache2/mod_status.so": 1, + "libexec/apache2/mod_autoindex.so": 1, + "libexec/apache2/mod_asis.so": 1, + "libexec/apache2/mod_info.so": 1, + "libexec/apache2/mod_cgi.so": 1, + "libexec/apache2/mod_dav_fs.so": 1, + "libexec/apache2/mod_vhost_alias.so": 1, + "libexec/apache2/mod_negotiation.so": 1, + "libexec/apache2/mod_dir.so": 1, + "libexec/apache2/mod_imagemap.so": 1, + "libexec/apache2/mod_actions.so": 1, + "libexec/apache2/mod_speling.so": 1, + "libexec/apache2/mod_userdir.so": 1, + "libexec/apache2/mod_alias.so": 1, + "libexec/apache2/mod_rewrite.so": 1, + "perl_module": 1, + "libexec/apache2/mod_perl.so": 1, + "php5_module": 1, + "libexec/apache2/libphp5.so": 1, + "hfs_apple_module": 1, + "libexec/apache2/mod_hfs_apple.so": 1, + "mpm_winnt_module": 1, + "_www": 2, + "Library": 2, + "WebServer": 2, + "Documents": 1, + "MultiViews": 1, + "Hh": 1, + "Tt": 1, + "Dd": 1, + "Ss": 2, + "_": 1, + "<Files>": 1, + "rsrc": 1, + "</Files>": 1, + "<DirectoryMatch>": 1, + "namedfork": 1, + "</DirectoryMatch>": 1, + "ScriptAliasMatch": 1, + "i": 1, + "webobjects": 1, + "/private/var/run/cgisock": 1, + "CGI": 1, + "Executables": 1, + "/private/etc/apache2/mime.types": 1, + "/private/etc/apache2/magic": 1, + "#MaxRanges": 1, + "unlimited": 1, + "TraceEnable": 1, + "Include": 6, + "/private/etc/apache2/extra/httpd": 11, + "/private/etc/apache2/other/*.conf": 1 + }, + "Apex": { + "global": 70, + "class": 7, + "ArrayUtils": 1, + "{": 219, + "static": 83, + "String": 60, + "[": 102, + "]": 102, + "EMPTY_STRING_ARRAY": 1, + "new": 60, + "}": 219, + ";": 308, + "Integer": 34, + "MAX_NUMBER_OF_ELEMENTS_IN_LIST": 5, + "get": 4, + "return": 106, + "List": 71, + "<String>": 30, + "objectToString": 1, + "(": 481, + "<Object>": 22, + "objects": 3, + ")": 481, + "strings": 3, + "null": 92, + "if": 91, + "objects.size": 1, + "for": 24, + "Object": 23, + "obj": 3, + "instanceof": 1, + "strings.add": 1, + "reverse": 2, + "anArray": 14, + "i": 55, + "j": 10, + "anArray.size": 2, + "-": 18, + "tmp": 6, + "while": 8, + "+": 75, + "SObject": 19, + "lowerCase": 1, + "strs": 9, + "returnValue": 22, + "strs.size": 3, + "str": 10, + "returnValue.add": 3, + "str.toLowerCase": 1, + "upperCase": 1, + "str.toUpperCase": 1, + "trim": 1, + "str.trim": 3, + "mergex": 2, + "array1": 8, + "array2": 9, + "merged": 6, + "array1.size": 4, + "array2.size": 2, + "<": 32, + "<SObject>": 19, + "sObj": 4, + "merged.add": 2, + "Boolean": 38, + "isEmpty": 7, + "objectArray": 17, + "true": 12, + "objectArray.size": 6, + "isNotEmpty": 4, + "pluck": 1, + "fieldName": 3, + "||": 12, + "fieldName.trim": 2, + ".length": 2, + "plucked": 3, + ".get": 4, + "toString": 3, + "void": 9, + "assertArraysAreEqual": 2, + "expected": 16, + "actual": 16, + "//check": 2, + "to": 4, + "see": 2, + "one": 2, + "param": 2, + "is": 5, + "but": 2, + "the": 4, + "other": 2, + "not": 3, + "System.assert": 6, + "&&": 46, + "ArrayUtils.toString": 12, + "expected.size": 4, + "actual.size": 2, + "merg": 2, + "list1": 15, + "list2": 9, + "returnList": 11, + "list1.size": 6, + "list2.size": 2, + "throw": 6, + "IllegalArgumentException": 5, + "elmt": 8, + "returnList.add": 8, + "subset": 6, + "aList": 4, + "count": 10, + "startIndex": 9, + "<=>": 2, + "size": 2, + "1": 2, + "list1.get": 2, + "//": 11, + "//LIST/ARRAY": 1, + "SORTING": 1, + "//FOR": 2, + "FORCE.COM": 1, + "PRIMITIVES": 1, + "Double": 1, + "ID": 1, + "etc.": 1, + "qsort": 18, + "theList": 72, + "PrimitiveComparator": 2, + "sortAsc": 24, + "ObjectComparator": 3, + "comparator": 14, + "theList.size": 2, + "SALESFORCE": 1, + "OBJECTS": 1, + "sObjects": 1, + "ISObjectComparator": 3, + "private": 10, + "lo0": 6, + "hi0": 8, + "lo": 42, + "hi": 50, + "else": 25, + "comparator.compare": 12, + "prs": 8, + "pivot": 14, + "/": 4, + "BooleanUtils": 1, + "isFalse": 1, + "bool": 32, + "false": 13, + "isNotFalse": 1, + "isNotTrue": 1, + "isTrue": 1, + "negate": 1, + "toBooleanDefaultIfNull": 1, + "defaultVal": 2, + "toBoolean": 2, + "value": 10, + "strToBoolean": 1, + "StringUtils.equalsIgnoreCase": 1, + "//Converts": 1, + "an": 4, + "int": 1, + "a": 6, + "boolean": 1, + "specifying": 1, + "//the": 2, + "conversion": 1, + "values.": 1, + "//Returns": 1, + "//Throws": 1, + "trueValue": 2, + "falseValue": 2, + "toInteger": 1, + "toStringYesNo": 1, + "toStringYN": 1, + "trueString": 2, + "falseString": 2, + "xor": 1, + "boolArray": 4, + "boolArray.size": 1, + "firstItem": 2, + "EmailUtils": 1, + "sendEmailWithStandardAttachments": 3, + "recipients": 11, + "emailSubject": 10, + "body": 8, + "useHTML": 6, + "<Id>": 1, + "attachmentIDs": 2, + "<Attachment>": 2, + "stdAttachments": 4, + "SELECT": 1, + "id": 1, + "name": 2, + "FROM": 1, + "Attachment": 2, + "WHERE": 1, + "Id": 1, + "IN": 1, + "<Messaging.EmailFileAttachment>": 3, + "fileAttachments": 5, + "attachment": 1, + "Messaging.EmailFileAttachment": 2, + "fileAttachment": 2, + "fileAttachment.setFileName": 1, + "attachment.Name": 1, + "fileAttachment.setBody": 1, + "attachment.Body": 1, + "fileAttachments.add": 1, + "sendEmail": 4, + "sendTextEmail": 1, + "textBody": 2, + "sendHTMLEmail": 1, + "htmlBody": 2, + "recipients.size": 1, + "Messaging.SingleEmailMessage": 3, + "mail": 2, + "email": 1, + "saved": 1, + "as": 1, + "activity.": 1, + "mail.setSaveAsActivity": 1, + "mail.setToAddresses": 1, + "mail.setSubject": 1, + "mail.setBccSender": 1, + "mail.setUseSignature": 1, + "mail.setHtmlBody": 1, + "mail.setPlainTextBody": 1, + "fileAttachments.size": 1, + "mail.setFileAttachments": 1, + "Messaging.sendEmail": 1, + "isValidEmailAddress": 2, + "split": 5, + "str.split": 1, + "split.size": 2, + ".split": 1, + "isNotValidEmailAddress": 1, + "public": 10, + "GeoUtils": 1, + "generate": 1, + "KML": 1, + "string": 7, + "given": 2, + "page": 1, + "reference": 1, + "call": 1, + "getContent": 1, + "then": 1, + "cleanup": 1, + "output.": 1, + "generateFromContent": 1, + "PageReference": 2, + "pr": 1, + "ret": 7, + "try": 1, + "pr.getContent": 1, + ".toString": 1, + "ret.replaceAll": 4, + "content": 1, + "produces": 1, + "quote": 1, + "chars": 1, + "we": 1, + "need": 1, + "escape": 1, + "these": 2, + "in": 1, + "node": 1, + "catch": 1, + "exception": 1, + "e": 2, + "system.debug": 2, + "must": 1, + "use": 1, + "ALL": 1, + "since": 1, + "many": 1, + "line": 1, + "may": 1, + "also": 1, + "Map": 33, + "<String,>": 2, + "geo_response": 1, + "accountAddressString": 2, + "account": 2, + "acct": 1, + "form": 1, + "address": 1, + "object": 1, + "adr": 9, + "acct.billingstreet": 1, + "acct.billingcity": 1, + "acct.billingstate": 1, + "acct.billingpostalcode": 2, + "acct.billingcountry": 2, + "adr.replaceAll": 4, + "testmethod": 1, + "t1": 1, + "pageRef": 3, + "Page.kmlPreviewTemplate": 1, + "Test.setCurrentPage": 1, + "system.assert": 1, + "GeoUtils.generateFromContent": 1, + "Account": 2, + "billingstreet": 1, + "billingcity": 1, + "billingstate": 1, + "billingpostalcode": 1, + "billingcountry": 1, + "insert": 1, + "system.assertEquals": 1, + "LanguageUtils": 1, + "final": 6, + "HTTP_LANGUAGE_CODE_PARAMETER_KEY": 2, + "DEFAULT_LANGUAGE_CODE": 3, + "Set": 6, + "SUPPORTED_LANGUAGE_CODES": 2, + "//Chinese": 2, + "Simplified": 1, + "Traditional": 1, + "//Dutch": 1, + "//English": 1, + "//Finnish": 1, + "//French": 1, + "//German": 1, + "//Italian": 1, + "//Japanese": 1, + "//Korean": 1, + "//Polish": 1, + "//Portuguese": 1, + "Brazilian": 1, + "//Russian": 1, + "//Spanish": 1, + "//Swedish": 1, + "//Thai": 1, + "//Czech": 1, + "//Danish": 1, + "//Hungarian": 1, + "//Indonesian": 1, + "//Turkish": 1, + "<String,String>": 29, + "DEFAULTS": 1, + "getLangCodeByHttpParam": 4, + "LANGUAGE_CODE_SET": 1, + "getSuppLangCodeSet": 2, + "ApexPages.currentPage": 4, + ".getParameters": 2, + "LANGUAGE_HTTP_PARAMETER": 7, + "StringUtils.lowerCase": 3, + "StringUtils.replaceChars": 2, + "//underscore": 1, + "//dash": 1, + "DEFAULTS.containsKey": 3, + "DEFAULTS.get": 3, + "StringUtils.isNotBlank": 1, + "SUPPORTED_LANGUAGE_CODES.contains": 2, + "getLangCodeByBrowser": 4, + "LANGUAGES_FROM_BROWSER_AS_STRING": 2, + ".getHeaders": 1, + "LANGUAGES_FROM_BROWSER_AS_LIST": 3, + "splitAndFilterAcceptLanguageHeader": 2, + "LANGUAGES_FROM_BROWSER_AS_LIST.size": 1, + "languageFromBrowser": 6, + "getLangCodeByUser": 3, + "UserInfo.getLanguage": 1, + "getLangCodeByHttpParamOrIfNullThenBrowser": 1, + "StringUtils.defaultString": 4, + "getLangCodeByHttpParamOrIfNullThenUser": 1, + "getLangCodeByBrowserOrIfNullThenHttpParam": 1, + "getLangCodeByBrowserOrIfNullThenUser": 1, + "header": 2, + "tokens": 3, + "StringUtils.split": 1, + "token": 7, + "token.contains": 1, + "token.substring": 1, + "token.indexOf": 1, + "StringUtils.length": 1, + "StringUtils.substring": 1, + "langCodes": 2, + "langCode": 3, + "langCodes.add": 1, + "getLanguageName": 1, + "displayLanguageCode": 13, + "languageCode": 2, + "translatedLanguageNames.get": 2, + "filterLanguageCode": 4, + "getAllLanguages": 3, + "translatedLanguageNames.containsKey": 1, + "translatedLanguageNames": 1, + "TwilioAPI": 2, + "MissingTwilioConfigCustomSettingsException": 2, + "extends": 1, + "Exception": 1, + "TwilioRestClient": 5, + "client": 2, + "getDefaultClient": 2, + "TwilioConfig__c": 5, + "twilioCfg": 7, + "getTwilioConfig": 3, + "TwilioAPI.client": 2, + "twilioCfg.AccountSid__c": 3, + "twilioCfg.AuthToken__c": 3, + "TwilioAccount": 1, + "getDefaultAccount": 1, + ".getAccount": 2, + "TwilioCapability": 2, + "createCapability": 1, + "createClient": 1, + "accountSid": 2, + "authToken": 2, + "Test.isRunningTest": 1, + "dummy": 2, + "sid": 1, + "TwilioConfig__c.getOrgDefaults": 1, + "@isTest": 1, + "test_TwilioAPI": 1, + "System.assertEquals": 5, + "TwilioAPI.getTwilioConfig": 2, + ".AccountSid__c": 1, + ".AuthToken__c": 1, + "TwilioAPI.getDefaultClient": 2, + ".getAccountSid": 1, + ".getSid": 2, + "TwilioAPI.getDefaultAccount": 1 + }, + "AppleScript": { + "set": 108, + "windowWidth": 3, + "to": 128, + "windowHeight": 3, + "delay": 3, + "AppleScript": 2, + "s": 3, + "text": 13, + "item": 13, + "delimiters": 1, + "tell": 40, + "application": 16, + "screen_width": 2, + "(": 89, + "do": 4, + "JavaScript": 2, + "in": 13, + "document": 2, + ")": 88, + "screen_height": 2, + "end": 67, + "myFrontMost": 3, + "name": 8, + "of": 72, + "first": 1, + "processes": 2, + "whose": 1, + "frontmost": 1, + "is": 40, + "true": 8, + "{": 32, + "desktopTop": 2, + "desktopLeft": 1, + "desktopRight": 1, + "desktopBottom": 1, + "}": 32, + "bounds": 2, + "desktop": 1, + "try": 10, + "process": 5, + "w": 5, + "h": 4, + "size": 5, + "drawer": 2, + "window": 5, + "on": 18, + "error": 3, + "position": 1, + "-": 57, + "/": 2, + "property": 7, + "type_list": 6, + "extension_list": 6, + "html": 2, + "not": 5, + "currently": 2, + "handled": 2, + "run": 4, + "FinderSelection": 4, + "the": 56, + "selection": 2, + "as": 27, + "alias": 8, + "list": 9, + "FS": 10, + "Ideally": 2, + "this": 2, + "could": 2, + "be": 2, + "passed": 2, + "open": 8, + "handler": 2, + "SelectionCount": 6, + "number": 6, + "count": 10, + "if": 50, + "then": 28, + "userPicksFolder": 6, + "else": 14, + "MyPath": 4, + "path": 6, + "me": 2, + "If": 2, + "I": 2, + "m": 2, + "a": 4, + "double": 2, + "clicked": 2, + "droplet": 2, + "these_items": 18, + "choose": 2, + "file": 6, + "with": 11, + "prompt": 2, + "type": 6, + "thesefiles": 2, + "item_info": 24, + "repeat": 19, + "i": 10, + "from": 9, + "this_item": 14, + "info": 4, + "for": 5, + "folder": 10, + "processFolder": 8, + "false": 9, + "and": 7, + "or": 6, + "extension": 4, + "theFilePath": 8, + "string": 17, + "thePOSIXFilePath": 8, + "POSIX": 4, + "processFile": 8, + "folders": 2, + "theFolder": 6, + "without": 2, + "invisibles": 2, + "&": 63, + "thePOSIXFileName": 6, + "terminalCommand": 6, + "convertCommand": 4, + "newFileName": 4, + "shell": 2, + "script": 2, + "need": 1, + "pass": 1, + "URL": 1, + "Terminal": 1, + "localMailboxes": 3, + "every": 3, + "mailbox": 2, + "greater": 5, + "than": 6, + "messageCountDisplay": 5, + "return": 16, + "my": 3, + "getMessageCountsForMailboxes": 4, + "everyAccount": 2, + "account": 1, + "eachAccount": 3, + "accountMailboxes": 3, + "outputMessage": 2, + "make": 3, + "new": 2, + "outgoing": 2, + "message": 2, + "properties": 2, + "content": 2, + "subject": 1, + "visible": 2, + "font": 2, + "theMailboxes": 2, + "mailboxes": 1, + "returns": 2, + "displayString": 4, + "eachMailbox": 4, + "mailboxName": 2, + "messageCount": 2, + "messages": 1, + "unreadCount": 2, + "unread": 1, + "padString": 3, + "theString": 4, + "fieldLength": 5, + "integer": 3, + "stringLength": 4, + "length": 1, + "paddedString": 5, + "character": 2, + "less": 1, + "equal": 3, + "paddingLength": 2, + "times": 1, + "space": 1, + "lowFontSize": 9, + "highFontSize": 6, + "messageText": 4, + "userInput": 4, + "display": 4, + "dialog": 4, + "default": 4, + "answer": 3, + "buttons": 3, + "button": 4, + "returned": 5, + "minimumFontSize": 4, + "newFontSize": 6, + "result": 2, + "theText": 3, + "exit": 1, + "fontList": 2, + "activate": 3, + "crazyTextMessage": 2, + "eachCharacter": 4, + "characters": 1, + "some": 1, + "random": 4, + "color": 1, + "current": 3, + "pane": 4, + "UI": 1, + "elements": 1, + "enabled": 2, + "tab": 1, + "group": 1, + "click": 1, + "radio": 1, + "get": 1, + "value": 1, + "field": 1, + "isVoiceOverRunning": 3, + "isRunning": 3, + "contains": 1, + "isVoiceOverRunningWithAppleScript": 3, + "isRunningWithAppleScript": 3, + "VoiceOver": 1, + "x": 1, + "vo": 1, + "cursor": 1, + "currentDate": 3, + "date": 1, + "amPM": 4, + "currentHour": 9, + "minutes": 2, + "<": 2, + "below": 1, + "sound": 1, + "nice": 1, + "currentMinutes": 4, + "ensure": 1, + "nn": 2, + "gets": 1, + "AM": 1, + "readjust": 1, + "hour": 1, + "time": 1, + "currentTime": 3, + "day": 1, + "output": 1, "say": 1 }, - "JSON": { + "Arduino": { + "void": 2, + "setup": 1, + "(": 4, + ")": 4, + "{": 2, + "Serial.begin": 1, + ";": 2, + "}": 2, + "loop": 1, + "Serial.print": 1 + }, + "AutoHotkey": { + "MsgBox": 1, + "Hello": 1, + "World": 1 + }, + "Awk": { + "SHEBANG#!awk": 1, + "BEGIN": 1, + "{": 17, + "n": 13, + ";": 55, + "printf": 1, + "network_max_bandwidth_in_byte": 3, + "network_max_packet_per_second": 3, + "last3": 3, + "last4": 3, + "last5": 3, + "last6": 3, + "}": 17, + "if": 14, + "(": 14, + "/Average/": 1, + ")": 14, + "#": 48, + "Skip": 1, + "the": 12, + "Average": 1, + "values": 1, + "next": 1, + "/all/": 1, + "This": 8, + "is": 7, + "cpu": 1, + "info": 7, + "print": 35, + "FILENAME": 35, + "-": 2, + "/eth0/": 1, + "eth0": 1, + "network": 1, + "Total": 9, + "number": 9, + "of": 22, + "packets": 4, + "received": 4, + "per": 14, + "second.": 8, + "else": 4, + "transmitted": 4, + "bytes": 4, + "/proc": 1, + "|": 4, + "cswch": 1, + "tps": 1, + "kbmemfree": 1, + "totsck/": 1, + "/": 2, + "[": 1, + "]": 1, + "proc/s": 1, + "context": 1, + "switches": 1, + "second": 6, + "disk": 1, + "total": 1, + "transfers": 1, + "read": 1, + "requests": 2, + "write": 1, + "block": 2, + "reads": 1, + "writes": 1, + "mem": 1, + "Amount": 7, + "free": 2, + "memory": 6, + "available": 1, + "in": 11, + "kilobytes.": 7, + "used": 8, + "does": 1, + "not": 1, + "take": 1, + "into": 1, + "account": 1, + "by": 4, + "kernel": 3, + "itself.": 1, + "Percentage": 2, + "memory.": 1, + "X": 1, + "shared": 1, + "system": 1, + "Always": 1, + "zero": 1, + "with": 1, + "kernels.": 1, + "as": 1, + "buffers": 1, + "to": 1, + "cache": 1, + "data": 1, + "swap": 3, + "space": 2, + "space.": 1, + "socket": 1, + "sockets.": 1, + "Number": 4, + "TCP": 1, + "sockets": 3, + "currently": 4, + "use.": 4, + "UDP": 1, + "RAW": 1, + "IP": 1, + "fragments": 1, + "END": 1 + }, + "Bluespec": { + "package": 2, + "TbTL": 1, + ";": 156, + "import": 1, + "TL": 6, + "*": 1, + "interface": 2, + "Lamp": 3, + "method": 42, + "Bool": 32, + "changed": 2, + "Action": 17, + "show_offs": 2, + "show_ons": 2, + "reset": 2, + "endinterface": 2, + "module": 3, + "mkLamp#": 1, + "(": 158, + "String": 1, + "name": 3, + "lamp": 5, + ")": 163, + "Reg#": 15, + "prev": 5, + "<": 44, + "-": 29, + "mkReg": 15, + "False": 9, + "if": 9, + "&&": 3, + "write": 2, + "+": 7, + "endmethod": 8, + "endmodule": 3, + "mkTest": 1, + "let": 1, + "dut": 2, + "sysTL": 3, + "Bit#": 1, + "ctr": 8, + "carN": 4, + "carS": 2, + "carE": 2, + "carW": 2, + "lamps": 15, + "[": 17, + "]": 17, + "mkLamp": 12, + "dut.lampRedNS": 1, + "dut.lampAmberNS": 1, + "dut.lampGreenNS": 1, + "dut.lampRedE": 1, + "dut.lampAmberE": 1, + "dut.lampGreenE": 1, + "dut.lampRedW": 1, + "dut.lampAmberW": 1, + "dut.lampGreenW": 1, + "dut.lampRedPed": 1, + "dut.lampAmberPed": 1, + "dut.lampGreenPed": 1, + "rule": 10, + "start": 1, + "dumpvars": 1, + "endrule": 10, + "detect_cars": 1, + "dut.set_car_state_N": 1, + "dut.set_car_state_S": 1, + "dut.set_car_state_E": 1, + "dut.set_car_state_W": 1, + "go": 1, + "True": 6, + "<=>": 3, + "12_000": 1, + "ped_button_push": 4, + "stop": 1, + "display": 2, + "finish": 1, + "function": 10, + "do_offs": 2, + "l": 3, + "l.show_offs": 1, + "do_ons": 2, + "l.show_ons": 1, + "do_reset": 2, + "l.reset": 1, + "do_it": 4, + "f": 2, + "action": 3, + "for": 3, + "Integer": 3, + "i": 15, + "endaction": 3, + "endfunction": 7, + "any_changes": 2, + "b": 12, + "||": 7, + ".changed": 1, + "return": 9, + "show": 1, + "time": 1, + "endpackage": 2, + "set_car_state_N": 2, + "x": 8, + "set_car_state_S": 2, + "set_car_state_E": 2, + "set_car_state_W": 2, + "lampRedNS": 2, + "lampAmberNS": 2, + "lampGreenNS": 2, + "lampRedE": 2, + "lampAmberE": 2, + "lampGreenE": 2, + "lampRedW": 2, + "lampAmberW": 2, + "lampGreenW": 2, + "lampRedPed": 2, + "lampAmberPed": 2, + "lampGreenPed": 2, + "typedef": 3, + "enum": 1, + "{": 1, + "AllRed": 4, + "GreenNS": 9, + "AmberNS": 5, + "GreenE": 8, + "AmberE": 5, + "GreenW": 8, + "AmberW": 5, + "GreenPed": 4, + "AmberPed": 3, + "}": 1, + "TLstates": 11, + "deriving": 1, + "Eq": 1, + "Bits": 1, + "UInt#": 2, + "Time32": 9, + "CtrSize": 3, + "allRedDelay": 2, + "amberDelay": 2, + "nsGreenDelay": 2, + "ewGreenDelay": 3, + "pedGreenDelay": 1, + "pedAmberDelay": 1, + "clocks_per_sec": 2, + "state": 21, + "next_green": 8, + "secs": 7, + "ped_button_pushed": 4, + "car_present_N": 3, + "car_present_S": 3, + "car_present_E": 4, + "car_present_W": 4, + "car_present_NS": 3, + "cycle_ctr": 6, + "dec_cycle_ctr": 1, + "Rules": 5, + "low_priority_rule": 2, + "rules": 4, + "inc_sec": 1, + "endrules": 4, + "next_state": 8, + "ns": 4, + "0": 2, + "green_seq": 7, + "case": 2, + "endcase": 2, + "car_present": 4, + "make_from_green_rule": 5, + "green_state": 2, + "delay": 2, + "car_is_present": 2, + "from_green": 1, + "make_from_amber_rule": 5, + "amber_state": 2, + "ng": 2, + "from_amber": 1, + "hprs": 10, + "7": 1, + "1": 1, + "2": 1, + "3": 1, + "4": 1, + "5": 1, + "6": 1, + "fromAllRed": 2, + "else": 4, + "noAction": 1, + "high_priority_rules": 4, + "rJoin": 1, + "addRules": 1, + "preempts": 1 + }, + "C": { + "#include": 149, + "const": 358, + "char": 529, + "*blob_type": 2, + ";": 5440, + "struct": 359, + "blob": 6, + "*lookup_blob": 2, + "(": 6219, + "unsigned": 140, + "*sha1": 16, + ")": 6221, + "{": 1529, + "object": 10, + "*obj": 9, + "lookup_object": 2, + "sha1": 20, + "if": 1015, + "obj": 48, + "return": 529, + "create_object": 2, + "OBJ_BLOB": 3, + "alloc_blob_node": 1, + "-": 1803, + "type": 36, + "error": 96, + "sha1_to_hex": 8, + "typename": 2, + "NULL": 330, + "}": 1545, + "*": 253, + "int": 446, + "parse_blob_buffer": 2, + "*item": 10, + "void": 279, + "*buffer": 6, + "long": 105, + "size": 120, + "item": 24, + "object.parsed": 4, + "#ifndef": 84, + "BLOB_H": 2, + "#define": 911, + "extern": 37, + "#endif": 236, + "git_cache_init": 1, + "git_cache": 4, + "*cache": 4, + "size_t": 52, + "git_cached_obj_freeptr": 1, + "free_ptr": 2, + "<": 219, + "git__size_t_powerof2": 1, + "cache": 26, + "size_mask": 6, + "lru_count": 1, + "free_obj": 4, + "git_mutex_init": 1, + "&": 442, + "lock": 6, + "nodes": 10, + "git__malloc": 3, + "sizeof": 71, + "git_cached_obj": 5, + "GITERR_CHECK_ALLOC": 3, + "memset": 4, + "git_cache_free": 1, + "i": 410, + "for": 88, + "+": 551, + "[": 601, + "]": 601, + "git_cached_obj_decref": 3, + "git__free": 15, + "*git_cache_get": 1, + "git_oid": 7, + "*oid": 2, + "uint32_t": 144, + "hash": 12, + "*node": 2, + "*result": 1, + "memcpy": 34, + "oid": 17, + "id": 13, + "git_mutex_lock": 2, + "node": 9, + "&&": 248, + "git_oid_cmp": 6, + "git_cached_obj_incref": 3, + "result": 48, + "git_mutex_unlock": 2, + "*git_cache_try_store": 1, + "*_entry": 1, + "*entry": 2, + "_entry": 1, + "entry": 17, + "else": 190, + "save_commit_buffer": 3, + "*commit_type": 2, + "static": 455, + "commit": 59, + "*check_commit": 1, + "quiet": 5, + "OBJ_COMMIT": 5, + "*lookup_commit_reference_gently": 2, + "deref_tag": 1, + "parse_object": 1, + "check_commit": 2, + "*lookup_commit_reference": 2, + "lookup_commit_reference_gently": 1, + "*lookup_commit_or_die": 2, + "*ref_name": 2, + "*c": 69, + "lookup_commit_reference": 2, + "c": 252, + "die": 5, + "_": 3, + "ref_name": 2, + "hashcmp": 2, + "object.sha1": 8, + "warning": 1, + "*lookup_commit": 2, + "alloc_commit_node": 1, + "*lookup_commit_reference_by_name": 2, + "*name": 12, + "*commit": 10, + "get_sha1": 1, + "name": 28, + "||": 141, + "parse_commit": 3, + "parse_commit_date": 2, + "*buf": 10, + "*tail": 2, + "*dateptr": 1, + "buf": 57, + "tail": 12, + "memcmp": 6, + "while": 70, + "dateptr": 2, + "strtoul": 2, + "commit_graft": 13, + "**commit_graft": 1, + "commit_graft_alloc": 4, + "commit_graft_nr": 5, + "commit_graft_pos": 2, + "lo": 6, + "hi": 5, + "mi": 5, + "/": 9, + "*graft": 3, + "cmp": 9, + "graft": 10, + "register_commit_graft": 2, + "ignore_dups": 2, + "pos": 7, + "free": 62, + "alloc_nr": 1, + "xrealloc": 2, + "parse_commit_buffer": 3, + "buffer": 10, + "*bufptr": 1, + "parent": 7, + "commit_list": 35, + "**pptr": 1, + "<=>": 16, + "bufptr": 12, + "46": 1, + "tree": 3, + "5": 1, + "45": 1, + "n": 70, + "bogus": 1, + "s": 154, + "get_sha1_hex": 2, + "lookup_tree": 1, + "pptr": 5, + "parents": 4, + "lookup_commit_graft": 1, + "*new_parent": 2, + "48": 1, + "7": 1, + "47": 1, + "bad": 1, + "in": 11, + "nr_parent": 3, + "grafts_replace_parents": 1, + "continue": 20, + "new_parent": 6, + "lookup_commit": 2, + "commit_list_insert": 2, + "next": 8, + "date": 5, + "enum": 29, + "object_type": 1, + "ret": 142, + "read_sha1_file": 1, + "find_commit_subject": 2, + "*commit_buffer": 2, + "**subject": 2, + "*eol": 1, + "*p": 9, + "commit_buffer": 1, + "a": 80, + "b_date": 3, + "b": 66, + "a_date": 2, + "*commit_list_get_next": 1, + "*a": 9, + "commit_list_set_next": 1, + "*next": 6, + "commit_list_sort_by_date": 2, + "**list": 5, + "*list": 2, + "llist_mergesort": 1, + "peel_to_type": 1, + "util": 3, + "merge_remote_desc": 3, + "*desc": 1, + "desc": 5, + "xmalloc": 2, + "strdup": 1, + "**commit_list_append": 2, + "**next": 2, + "*new": 1, + "new": 4, + "COMMIT_H": 2, + "*util": 1, + "indegree": 1, + "*parents": 4, + "*tree": 3, + "decoration": 1, + "name_decoration": 3, + "*commit_list_insert": 1, + "commit_list_count": 1, + "*l": 1, + "*commit_list_insert_by_date": 1, + "free_commit_list": 1, + "cmit_fmt": 3, + "CMIT_FMT_RAW": 1, + "CMIT_FMT_MEDIUM": 2, + "CMIT_FMT_DEFAULT": 1, + "CMIT_FMT_SHORT": 1, + "CMIT_FMT_FULL": 1, + "CMIT_FMT_FULLER": 1, + "CMIT_FMT_ONELINE": 1, + "CMIT_FMT_EMAIL": 1, + "CMIT_FMT_USERFORMAT": 1, + "CMIT_FMT_UNSPECIFIED": 1, + "pretty_print_context": 6, + "fmt": 4, + "abbrev": 1, + "*subject": 1, + "*after_subject": 1, + "preserve_subject": 1, + "date_mode": 2, + "date_mode_explicit": 1, + "need_8bit_cte": 2, + "show_notes": 1, + "reflog_walk_info": 1, + "*reflog_info": 1, + "*output_encoding": 2, + "userformat_want": 2, + "notes": 1, + "has_non_ascii": 1, + "*text": 1, + "rev_info": 2, + "*logmsg_reencode": 1, + "*reencode_commit_message": 1, + "**encoding_p": 1, + "get_commit_format": 1, + "*arg": 1, + "*format_subject": 1, + "strbuf": 12, + "*sb": 7, + "*msg": 6, + "*line_separator": 1, + "userformat_find_requirements": 1, + "*fmt": 2, + "*w": 2, + "format_commit_message": 1, + "*format": 2, + "*context": 1, + "pretty_print_commit": 1, + "*pp": 4, + "pp_commit_easy": 1, + "pp_user_info": 1, + "*what": 1, + "*line": 1, + "*encoding": 2, + "pp_title_line": 1, + "**msg_p": 2, + "pp_remainder": 1, + "indent": 1, + "*pop_most_recent_commit": 1, + "mark": 3, + "*pop_commit": 1, + "**stack": 1, + "clear_commit_marks": 1, + "clear_commit_marks_for_object_array": 1, + "object_array": 2, + "sort_in_topological_order": 1, + "**": 6, + "list": 1, + "lifo": 1, + "FLEX_ARRAY": 1, + "typedef": 189, + "*read_graft_line": 1, + "len": 30, + "*lookup_commit_graft": 1, + "*get_merge_bases": 1, + "*rev1": 1, + "*rev2": 1, + "cleanup": 12, + "*get_merge_bases_many": 1, + "*one": 1, + "**twos": 1, + "*get_octopus_merge_bases": 1, + "*in": 1, + "register_shallow": 1, + "unregister_shallow": 1, + "for_each_commit_graft": 1, + "each_commit_graft_fn": 1, + "is_repository_shallow": 1, + "*get_shallow_commits": 1, + "*heads": 2, + "depth": 2, + "shallow_flag": 1, + "not_shallow_flag": 1, + "is_descendant_of": 1, + "in_merge_bases": 1, + "interactive_add": 1, + "argc": 26, + "**argv": 6, + "*prefix": 7, + "patch": 1, + "run_add_interactive": 1, + "*revision": 1, + "*patch_mode": 1, + "**pathspec": 1, + "inline": 3, + "single_parent": 1, + "*reduce_heads": 1, + "commit_extra_header": 7, + "*key": 5, + "*value": 5, + "append_merge_tag_headers": 1, + "***tail": 1, + "commit_tree": 1, + "*ret": 20, + "*author": 2, + "*sign_commit": 2, + "commit_tree_extended": 1, + "*read_commit_extra_headers": 1, + "*read_commit_extra_header_lines": 1, + "free_commit_extra_headers": 1, + "*extra": 1, + "merge_remote_util": 1, + "*get_merge_parent": 1, + "parse_signed_commit": 1, + "*message": 1, + "*signature": 1, + "<linux/proc_fs.h>": 1, + "<linux/smp.h>": 1, + "<linux/init.h>": 1, + "<linux/notifier.h>": 1, + "<linux/sched.h>": 1, + "<linux/unistd.h>": 1, + "<linux/cpu.h>": 1, + "<linux/oom.h>": 1, + "<linux/rcupdate.h>": 1, + "<linux/export.h>": 1, + "<linux/bug.h>": 1, + "<linux/kthread.h>": 1, + "<linux/stop_machine.h>": 1, + "<linux/mutex.h>": 1, + "<linux/gfp.h>": 1, + "<linux/suspend.h>": 1, + "#ifdef": 64, + "CONFIG_SMP": 1, + "DEFINE_MUTEX": 1, + "cpu_add_remove_lock": 3, + "cpu_maps_update_begin": 9, + "mutex_lock": 5, + "cpu_maps_update_done": 9, + "mutex_unlock": 6, + "RAW_NOTIFIER_HEAD": 1, + "cpu_chain": 4, + "cpu_hotplug_disabled": 7, + "CONFIG_HOTPLUG_CPU": 2, + "task_struct": 5, + "*active_writer": 1, + "mutex": 1, + "refcount": 2, + "cpu_hotplug": 1, + ".active_writer": 1, + ".lock": 1, + "__MUTEX_INITIALIZER": 1, + "cpu_hotplug.lock": 8, + ".refcount": 1, + "get_online_cpus": 2, + "might_sleep": 1, + "cpu_hotplug.active_writer": 6, + "current": 5, + "cpu_hotplug.refcount": 3, + "EXPORT_SYMBOL_GPL": 4, + "put_online_cpus": 2, + "unlikely": 54, + "wake_up_process": 1, + "cpu_hotplug_begin": 4, + "likely": 22, + "break": 244, + "__set_current_state": 1, + "TASK_UNINTERRUPTIBLE": 1, + "schedule": 1, + "cpu_hotplug_done": 4, + "#else": 94, + "__ref": 6, + "register_cpu_notifier": 2, + "notifier_block": 3, + "*nb": 3, + "raw_notifier_chain_register": 1, + "nb": 2, + "__cpu_notify": 6, + "val": 20, + "*v": 3, + "nr_to_call": 2, + "*nr_calls": 1, + "__raw_notifier_call_chain": 1, + "v": 11, + "nr_calls": 9, + "notifier_to_errno": 1, + "cpu_notify": 5, + "cpu_notify_nofail": 4, + "BUG_ON": 4, + "EXPORT_SYMBOL": 8, + "unregister_cpu_notifier": 2, + "raw_notifier_chain_unregister": 1, + "clear_tasks_mm_cpumask": 1, + "cpu": 57, + "WARN_ON": 1, + "cpu_online": 5, + "rcu_read_lock": 1, + "for_each_process": 2, + "p": 60, + "*t": 2, + "t": 32, + "find_lock_task_mm": 1, + "cpumask_clear_cpu": 5, + "mm_cpumask": 1, + "mm": 1, + "task_unlock": 1, + "rcu_read_unlock": 1, + "check_for_tasks": 2, + "write_lock_irq": 1, + "tasklist_lock": 2, + "task_cpu": 1, + "state": 104, + "TASK_RUNNING": 1, + "utime": 1, + "stime": 1, + "printk": 12, + "KERN_WARNING": 3, + "comm": 1, + "task_pid_nr": 1, + "flags": 89, + "write_unlock_irq": 1, + "take_cpu_down_param": 3, + "mod": 13, + "*hcpu": 3, + "take_cpu_down": 2, + "*_param": 1, + "*param": 1, + "_param": 1, + "err": 38, + "__cpu_disable": 1, + "CPU_DYING": 1, + "|": 132, + "param": 2, + "hcpu": 10, + "_cpu_down": 3, + "tasks_frozen": 4, + "CPU_TASKS_FROZEN": 2, + "tcd_param": 2, + ".mod": 1, + ".hcpu": 1, + "num_online_cpus": 2, + "EBUSY": 3, + "EINVAL": 6, + "CPU_DOWN_PREPARE": 1, + "CPU_DOWN_FAILED": 2, + "__func__": 2, + "goto": 159, + "out_release": 3, + "__stop_machine": 1, + "cpumask_of": 1, + "idle_cpu": 1, + "cpu_relax": 1, + "__cpu_die": 1, + "CPU_DEAD": 1, + "CPU_POST_DEAD": 1, + "cpu_down": 2, + "out": 18, + "__cpuinit": 3, + "_cpu_up": 3, + "*idle": 1, + "cpu_present": 1, + "idle": 4, + "idle_thread_get": 1, + "IS_ERR": 1, + "PTR_ERR": 1, + "CPU_UP_PREPARE": 1, + "out_notify": 3, + "__cpu_up": 1, + "CPU_ONLINE": 1, + "CPU_UP_CANCELED": 1, + "cpu_up": 2, + "CONFIG_MEMORY_HOTPLUG": 2, + "nid": 5, + "pg_data_t": 1, + "*pgdat": 1, + "cpu_possible": 1, + "KERN_ERR": 5, + "#if": 92, + "defined": 42, + "CONFIG_IA64": 1, + "cpu_to_node": 1, + "node_online": 1, + "mem_online_node": 1, + "pgdat": 3, + "NODE_DATA": 1, + "ENOMEM": 4, + "node_zonelists": 1, + "_zonerefs": 1, + "zone": 1, + "zonelists_mutex": 2, + "build_all_zonelists": 1, + "CONFIG_PM_SLEEP_SMP": 2, + "cpumask_var_t": 1, + "frozen_cpus": 9, + "__weak": 4, + "arch_disable_nonboot_cpus_begin": 2, + "arch_disable_nonboot_cpus_end": 2, + "disable_nonboot_cpus": 1, + "first_cpu": 3, + "cpumask_first": 1, + "cpu_online_mask": 3, + "cpumask_clear": 2, + "for_each_online_cpu": 1, + "cpumask_set_cpu": 5, + "arch_enable_nonboot_cpus_begin": 2, + "arch_enable_nonboot_cpus_end": 2, + "enable_nonboot_cpus": 1, + "cpumask_empty": 1, + "KERN_INFO": 2, + "for_each_cpu": 1, + "__init": 2, + "alloc_frozen_cpus": 2, + "alloc_cpumask_var": 1, + "GFP_KERNEL": 1, + "__GFP_ZERO": 1, + "core_initcall": 2, + "cpu_hotplug_disable_before_freeze": 2, + "cpu_hotplug_enable_after_thaw": 2, + "cpu_hotplug_pm_callback": 2, + "action": 2, + "*ptr": 1, + "switch": 46, + "case": 273, + "PM_SUSPEND_PREPARE": 1, + "PM_HIBERNATION_PREPARE": 1, + "PM_POST_SUSPEND": 1, + "PM_POST_HIBERNATION": 1, + "default": 33, + "NOTIFY_DONE": 1, + "NOTIFY_OK": 1, + "cpu_hotplug_pm_sync_init": 2, + "pm_notifier": 1, + "notify_cpu_starting": 1, + "CPU_STARTING": 1, + "cpumask_test_cpu": 1, + "CPU_STARTING_FROZEN": 1, + "MASK_DECLARE_1": 3, + "x": 57, + "UL": 1, + "<<": 56, + "MASK_DECLARE_2": 3, + "MASK_DECLARE_4": 3, + "MASK_DECLARE_8": 9, + "cpu_bit_bitmap": 2, + "BITS_PER_LONG": 2, + "BITS_TO_LONGS": 1, + "NR_CPUS": 2, + "DECLARE_BITMAP": 6, + "cpu_all_bits": 2, + "CPU_BITS_ALL": 2, + "CONFIG_INIT_ALL_POSSIBLE": 1, + "cpu_possible_bits": 6, + "CONFIG_NR_CPUS": 5, + "__read_mostly": 5, + "cpumask": 7, + "*const": 4, + "cpu_possible_mask": 2, + "to_cpumask": 15, + "cpu_online_bits": 5, + "cpu_present_bits": 5, + "cpu_present_mask": 2, + "cpu_active_bits": 4, + "cpu_active_mask": 2, + "set_cpu_possible": 1, + "bool": 6, + "possible": 2, + "set_cpu_present": 1, + "present": 2, + "set_cpu_online": 1, + "online": 2, + "set_cpu_active": 1, + "active": 2, + "init_cpu_present": 1, + "*src": 3, + "cpumask_copy": 3, + "src": 16, + "init_cpu_possible": 1, + "init_cpu_online": 1, + "*diff_prefix_from_pathspec": 1, + "git_strarray": 2, + "*pathspec": 2, + "git_buf": 3, + "prefix": 34, + "GIT_BUF_INIT": 3, + "*scan": 2, + "git_buf_common_prefix": 1, + "pathspec": 15, + "scan": 4, + "prefix.ptr": 2, + "git__iswildcard": 1, + "git_buf_truncate": 1, + "prefix.size": 1, + "git_buf_detach": 1, + "git_buf_free": 4, + "diff_pathspec_is_interesting": 2, + "*str": 1, + "count": 17, + "false": 77, + "true": 73, + "str": 162, + "strings": 5, + "diff_path_matches_pathspec": 3, + "git_diff_list": 17, + "*diff": 8, + "*path": 2, + "git_attr_fnmatch": 4, + "*match": 3, + "diff": 93, + "pathspec.length": 1, + "git_vector_foreach": 4, + "match": 16, + "p_fnmatch": 1, + "pattern": 3, + "path": 20, + "FNM_NOMATCH": 1, + "GIT_ATTR_FNMATCH_HASWILD": 1, + "strncmp": 1, + "length": 58, + "GIT_ATTR_FNMATCH_NEGATIVE": 1, + "git_diff_delta": 19, + "*diff_delta__alloc": 1, + "git_delta_t": 5, + "status": 57, + "*delta": 6, + "git__calloc": 3, + "delta": 54, + "old_file.path": 12, + "git_pool_strdup": 3, + "pool": 12, + "new_file.path": 6, + "opts.flags": 8, + "GIT_DIFF_REVERSE": 3, + "GIT_DELTA_ADDED": 4, + "GIT_DELTA_DELETED": 7, + "*diff_delta__dup": 1, + "*d": 1, + "git_pool": 4, + "*pool": 3, + "d": 16, + "fail": 19, + "*diff_delta__merge_like_cgit": 1, + "*b": 6, + "*dup": 1, + "diff_delta__dup": 3, + "dup": 15, + "new_file.oid": 7, + "git_oid_cpy": 5, + "new_file.mode": 4, + "new_file.size": 3, + "new_file.flags": 4, + "old_file.oid": 3, + "GIT_DELTA_UNTRACKED": 5, + "GIT_DELTA_IGNORED": 5, + "GIT_DELTA_UNMODIFIED": 11, + "diff_delta__from_one": 5, + "git_index_entry": 8, + "GIT_DIFF_INCLUDE_IGNORED": 1, + "GIT_DIFF_INCLUDE_UNTRACKED": 1, + "diff_delta__alloc": 2, + "assert": 41, + "GIT_DELTA_MODIFIED": 3, + "old_file.mode": 2, + "mode": 11, + "old_file.size": 1, + "file_size": 6, + "old_file.flags": 2, + "GIT_DIFF_FILE_VALID_OID": 4, + "git_vector_insert": 4, + "deltas": 8, + "diff_delta__from_two": 2, + "*old_entry": 1, + "*new_entry": 1, + "*new_oid": 1, + "GIT_DIFF_INCLUDE_UNMODIFIED": 1, + "*temp": 1, + "old_entry": 5, + "new_entry": 5, + "temp": 11, + "new_oid": 3, + "git_oid_iszero": 2, + "*diff_strdup_prefix": 1, + "strlen": 17, + "git_pool_strcat": 1, + "git_pool_strndup": 1, + "diff_delta__cmp": 3, + "*da": 1, + "*db": 3, + "strcmp": 20, + "da": 2, + "db": 10, + "config_bool": 5, + "git_config": 3, + "*cfg": 2, + "defvalue": 2, + "git_config_get_bool": 1, + "cfg": 6, + "giterr_clear": 1, + "*git_diff_list_alloc": 1, + "git_repository": 7, + "*repo": 7, + "git_diff_options": 7, + "*opts": 6, + "repo": 23, + "git_vector_init": 3, + "git_pool_init": 2, + "git_repository_config__weakptr": 1, + "diffcaps": 13, + "GIT_DIFFCAPS_HAS_SYMLINKS": 2, + "GIT_DIFFCAPS_ASSUME_UNCHANGED": 2, + "GIT_DIFFCAPS_TRUST_EXEC_BIT": 2, + "GIT_DIFFCAPS_TRUST_CTIME": 2, + "opts": 24, + "opts.pathspec": 2, + "opts.old_prefix": 4, + "diff_strdup_prefix": 2, + "old_prefix": 2, + "DIFF_OLD_PREFIX_DEFAULT": 1, + "opts.new_prefix": 4, + "new_prefix": 2, + "DIFF_NEW_PREFIX_DEFAULT": 1, + "*swap": 1, + "swap": 9, + "pathspec.count": 2, + "*pattern": 1, + "pathspec.strings": 1, + "GIT_ATTR_FNMATCH_ALLOWSPACE": 1, + "git_attr_fnmatch__parse": 1, + "GIT_ENOTFOUND": 1, + "git_diff_list_free": 3, + "deltas.contents": 1, + "git_vector_free": 3, + "pathspec.contents": 1, + "git_pool_clear": 2, + "oid_for_workdir_item": 2, + "full_path": 3, + "git_buf_joinpath": 1, + "git_repository_workdir": 1, + "S_ISLNK": 2, + "git_odb__hashlink": 1, + "full_path.ptr": 2, + "git__is_sizet": 1, + "giterr_set": 1, + "GITERR_OS": 1, + "fd": 34, + "git_futils_open_ro": 1, + "git_odb__hashfd": 1, + "GIT_OBJ_BLOB": 1, + "p_close": 1, + "EXEC_BIT_MASK": 3, + "maybe_modified": 2, + "git_iterator": 8, + "*old_iter": 2, + "*oitem": 2, + "*new_iter": 2, + "*nitem": 2, + "noid": 4, + "*use_noid": 1, + "omode": 8, + "oitem": 29, + "nmode": 10, + "nitem": 32, + "GIT_UNUSED": 1, + "old_iter": 8, + "S_ISREG": 1, + "GIT_MODE_TYPE": 3, + "GIT_MODE_PERMS_MASK": 1, + "flags_extended": 2, + "GIT_IDXENTRY_INTENT_TO_ADD": 1, + "GIT_IDXENTRY_SKIP_WORKTREE": 1, + "new_iter": 13, + "GIT_ITERATOR_WORKDIR": 2, + "ctime.seconds": 2, + "mtime.seconds": 2, + "GIT_DIFFCAPS_USE_DEV": 1, + "dev": 2, + "ino": 2, + "uid": 2, + "gid": 2, + "S_ISGITLINK": 1, + "git_submodule": 1, + "*sub": 1, + "GIT_DIFF_IGNORE_SUBMODULES": 1, + "git_submodule_lookup": 1, + "sub": 12, + "ignore": 1, + "GIT_SUBMODULE_IGNORE_ALL": 1, + "use_noid": 2, + "diff_from_iterators": 5, + "**diff_ptr": 1, + "ignore_prefix": 6, + "git_diff_list_alloc": 1, + "old_src": 1, + "new_src": 3, + "git_iterator_current": 2, + "git_iterator_advance": 5, + "delta_type": 8, + "git_buf_len": 1, + "git__prefixcmp": 2, + "git_buf_cstr": 1, + "S_ISDIR": 1, + "GIT_DIFF_RECURSE_UNTRACKED_DIRS": 1, + "git_iterator_current_is_ignored": 2, + "git_buf_sets": 1, + "git_iterator_advance_into_directory": 1, + "git_iterator_free": 4, + "*diff_ptr": 2, + "git_diff_tree_to_tree": 1, + "git_tree": 4, + "*old_tree": 3, + "*new_tree": 1, + "**diff": 4, + "diff_prefix_from_pathspec": 4, + "old_tree": 5, + "new_tree": 2, + "git_iterator_for_tree_range": 4, + "git_diff_index_to_tree": 1, + "git_iterator_for_index_range": 2, + "git_diff_workdir_to_index": 1, + "git_iterator_for_workdir_range": 2, + "git_diff_workdir_to_tree": 1, + "git_diff_merge": 1, + "*onto": 1, + "*from": 1, + "onto_pool": 7, + "git_vector": 1, + "onto_new": 6, + "j": 206, + "onto": 7, + "from": 16, + "deltas.length": 4, + "*o": 8, + "GIT_VECTOR_GET": 2, + "*f": 2, + "f": 184, + "o": 80, + "diff_delta__merge_like_cgit": 1, + "git_vector_swap": 1, + "git_pool_swap": 1, + "git_usage_string": 2, + "git_more_info_string": 2, + "N_": 1, + "startup_info": 3, + "git_startup_info": 2, + "use_pager": 8, + "pager_config": 3, + "*cmd": 5, + "want": 3, + "pager_command_config": 2, + "*var": 1, + "*data": 12, + "data": 69, + "prefixcmp": 3, + "var": 7, + "cmd": 46, + "git_config_maybe_bool": 1, + "value": 9, + "xstrdup": 2, + "check_pager_config": 3, + "c.cmd": 1, + "c.want": 2, + "c.value": 3, + "pager_program": 1, + "commit_pager_choice": 4, + "setenv": 1, + "setup_pager": 1, + "handle_options": 2, + "***argv": 2, + "*argc": 1, + "*envchanged": 1, + "**orig_argv": 1, + "*argv": 6, + "new_argv": 7, + "option_count": 1, + "alias_command": 4, + "trace_argv_printf": 3, + "*argcp": 4, + "subdir": 3, + "chdir": 2, + "die_errno": 3, + "errno": 20, + "saved_errno": 1, + "git_version_string": 1, + "GIT_VERSION": 1, + "RUN_SETUP": 81, + "RUN_SETUP_GENTLY": 16, + "USE_PAGER": 3, + "NEED_WORK_TREE": 18, + "cmd_struct": 4, + "option": 9, + "run_builtin": 2, + "help": 4, + "stat": 3, + "st": 2, + "argv": 54, + "setup_git_directory": 1, + "nongit_ok": 2, + "setup_git_directory_gently": 1, + "have_repository": 1, + "trace_repo_setup": 1, + "setup_work_tree": 1, + "fn": 5, + "fstat": 1, + "fileno": 1, + "stdout": 5, + "S_ISFIFO": 1, + "st.st_mode": 2, + "S_ISSOCK": 1, + "fflush": 2, + "ferror": 2, + "fclose": 5, + "handle_internal_command": 3, + "commands": 3, + "cmd_add": 2, + "cmd_annotate": 1, + "cmd_apply": 1, + "cmd_archive": 1, + "cmd_bisect__helper": 1, + "cmd_blame": 2, + "cmd_branch": 1, + "cmd_bundle": 1, + "cmd_cat_file": 1, + "cmd_check_attr": 1, + "cmd_check_ref_format": 1, + "cmd_checkout": 1, + "cmd_checkout_index": 1, + "cmd_cherry": 1, + "cmd_cherry_pick": 1, + "cmd_clean": 1, + "cmd_clone": 1, + "cmd_column": 1, + "cmd_commit": 1, + "cmd_commit_tree": 1, + "cmd_config": 1, + "cmd_count_objects": 1, + "cmd_describe": 1, + "cmd_diff": 1, + "cmd_diff_files": 1, + "cmd_diff_index": 1, + "cmd_diff_tree": 1, + "cmd_fast_export": 1, + "cmd_fetch": 1, + "cmd_fetch_pack": 1, + "cmd_fmt_merge_msg": 1, + "cmd_for_each_ref": 1, + "cmd_format_patch": 1, + "cmd_fsck": 2, + "cmd_gc": 1, + "cmd_get_tar_commit_id": 1, + "cmd_grep": 1, + "cmd_hash_object": 1, + "cmd_help": 1, + "cmd_index_pack": 1, + "cmd_init_db": 2, + "cmd_log": 1, + "cmd_ls_files": 1, + "cmd_ls_remote": 2, + "cmd_ls_tree": 1, + "cmd_mailinfo": 1, + "cmd_mailsplit": 1, + "cmd_merge": 1, + "cmd_merge_base": 1, + "cmd_merge_file": 1, + "cmd_merge_index": 1, + "cmd_merge_ours": 1, + "cmd_merge_recursive": 4, + "cmd_merge_tree": 1, + "cmd_mktag": 1, + "cmd_mktree": 1, + "cmd_mv": 1, + "cmd_name_rev": 1, + "cmd_notes": 1, + "cmd_pack_objects": 1, + "cmd_pack_redundant": 1, + "cmd_pack_refs": 1, + "cmd_patch_id": 1, + "cmd_prune": 1, + "cmd_prune_packed": 1, + "cmd_push": 1, + "cmd_read_tree": 1, + "cmd_receive_pack": 1, + "cmd_reflog": 1, + "cmd_remote": 1, + "cmd_remote_ext": 1, + "cmd_remote_fd": 1, + "cmd_replace": 1, + "cmd_repo_config": 1, + "cmd_rerere": 1, + "cmd_reset": 1, + "cmd_rev_list": 1, + "cmd_rev_parse": 1, + "cmd_revert": 1, + "cmd_rm": 1, + "cmd_send_pack": 1, + "cmd_shortlog": 1, + "cmd_show": 1, + "cmd_show_branch": 1, + "cmd_show_ref": 1, + "cmd_status": 1, + "cmd_stripspace": 1, + "cmd_symbolic_ref": 1, + "cmd_tag": 1, + "cmd_tar_tree": 1, + "cmd_unpack_file": 1, + "cmd_unpack_objects": 1, + "cmd_update_index": 1, + "cmd_update_ref": 1, + "cmd_update_server_info": 1, + "cmd_upload_archive": 1, + "cmd_upload_archive_writer": 1, + "cmd_var": 1, + "cmd_verify_pack": 1, + "cmd_verify_tag": 1, + "cmd_version": 1, + "cmd_whatchanged": 1, + "cmd_write_tree": 1, + "ext": 4, + "STRIP_EXTENSION": 1, + "*argv0": 1, + "argv0": 2, + "ARRAY_SIZE": 1, + "exit": 20, + "execv_dashed_external": 2, + "STRBUF_INIT": 1, + "*tmp": 1, + "strbuf_addf": 1, + "tmp": 6, + "cmd.buf": 1, + "run_command_v_opt": 1, + "RUN_SILENT_EXEC_FAILURE": 1, + "RUN_CLEAN_ON_EXIT": 1, + "ENOENT": 3, + "strbuf_release": 1, + "run_argv": 2, + "done_alias": 4, + "argcp": 2, + "handle_alias": 1, + "main": 3, + "git_extract_argv0_path": 1, + "git_setup_gettext": 1, + "printf": 4, + "list_common_cmds_help": 1, + "setup_path": 1, + "done_help": 3, + "was_alias": 3, + "fprintf": 18, + "stderr": 15, + "help_unknown_cmd": 1, + "strerror": 4, + "PPC_SHA1": 1, + "git_hash_ctx": 7, + "SHA_CTX": 3, + "*git_hash_new_ctx": 1, + "*ctx": 5, + "ctx": 16, + "SHA1_Init": 4, + "git_hash_free_ctx": 1, + "git_hash_init": 1, + "git_hash_update": 1, + "SHA1_Update": 3, + "git_hash_final": 1, + "*out": 3, + "SHA1_Final": 3, + "git_hash_buf": 1, + "git_hash_vec": 1, + "git_buf_vec": 1, + "*vec": 1, + "vec": 2, + ".data": 1, + ".len": 3, + "<stdio.h>": 7, + "HELLO_H": 2, + "hello": 1, + "<assert.h>": 5, + "<stddef.h>": 2, + "<ctype.h>": 3, + "<stdlib.h>": 3, + "<string.h>": 4, + "<limits.h>": 2, + "ULLONG_MAX": 10, + "MIN": 3, + "HTTP_PARSER_DEBUG": 4, + "SET_ERRNO": 47, + "e": 4, + "do": 21, + "parser": 334, + "http_errno": 11, + "error_lineno": 3, + "__LINE__": 50, + "CALLBACK_NOTIFY_": 3, + "FOR": 11, + "ER": 4, + "HTTP_PARSER_ERRNO": 10, + "HPE_OK": 10, + "settings": 6, + "on_##FOR": 4, + "HPE_CB_##FOR": 2, + "CALLBACK_NOTIFY": 10, + "CALLBACK_NOTIFY_NOADVANCE": 2, + "CALLBACK_DATA_": 4, + "LEN": 2, + "FOR##_mark": 7, + "CALLBACK_DATA": 10, + "CALLBACK_DATA_NOADVANCE": 6, + "MARK": 7, + "PROXY_CONNECTION": 4, + "CONNECTION": 4, + "CONTENT_LENGTH": 4, + "TRANSFER_ENCODING": 4, + "UPGRADE": 4, + "CHUNKED": 4, + "KEEP_ALIVE": 4, + "CLOSE": 4, + "*method_strings": 1, + "XX": 63, + "num": 24, + "string": 18, + "#string": 1, + "HTTP_METHOD_MAP": 3, + "#undef": 7, + "tokens": 5, + "int8_t": 3, + "unhex": 3, + "HTTP_PARSER_STRICT": 5, + "uint8_t": 6, + "normal_url_char": 3, + "T": 3, + "s_dead": 10, + "s_start_req_or_res": 4, + "s_res_or_resp_H": 3, + "s_start_res": 5, + "s_res_H": 3, + "s_res_HT": 4, + "s_res_HTT": 3, + "s_res_HTTP": 3, + "s_res_first_http_major": 3, + "s_res_http_major": 3, + "s_res_first_http_minor": 3, + "s_res_http_minor": 3, + "s_res_first_status_code": 3, + "s_res_status_code": 3, + "s_res_status": 3, + "s_res_line_almost_done": 4, + "s_start_req": 6, + "s_req_method": 4, + "s_req_spaces_before_url": 5, + "s_req_schema": 6, + "s_req_schema_slash": 6, + "s_req_schema_slash_slash": 6, + "s_req_host_start": 8, + "s_req_host_v6_start": 7, + "s_req_host_v6": 7, + "s_req_host_v6_end": 7, + "s_req_host": 8, + "s_req_port_start": 7, + "s_req_port": 6, + "s_req_path": 8, + "s_req_query_string_start": 8, + "s_req_query_string": 7, + "s_req_fragment_start": 7, + "s_req_fragment": 7, + "s_req_http_start": 3, + "s_req_http_H": 3, + "s_req_http_HT": 3, + "s_req_http_HTT": 3, + "s_req_http_HTTP": 3, + "s_req_first_http_major": 3, + "s_req_http_major": 3, + "s_req_first_http_minor": 3, + "s_req_http_minor": 3, + "s_req_line_almost_done": 4, + "s_header_field_start": 12, + "s_header_field": 4, + "s_header_value_start": 4, + "s_header_value": 5, + "s_header_value_lws": 3, + "s_header_almost_done": 6, + "s_chunk_size_start": 4, + "s_chunk_size": 3, + "s_chunk_parameters": 3, + "s_chunk_size_almost_done": 4, + "s_headers_almost_done": 4, + "s_headers_done": 4, + "s_chunk_data": 3, + "s_chunk_data_almost_done": 3, + "s_chunk_data_done": 3, + "s_body_identity": 3, + "s_body_identity_eof": 4, + "s_message_done": 3, + "PARSING_HEADER": 2, + "header_states": 1, + "h_general": 23, + "0": 11, + "h_C": 3, + "h_CO": 3, + "h_CON": 3, + "h_matching_connection": 3, + "h_matching_proxy_connection": 3, + "h_matching_content_length": 3, + "h_matching_transfer_encoding": 3, + "h_matching_upgrade": 3, + "h_connection": 6, + "h_content_length": 5, + "h_transfer_encoding": 5, + "h_upgrade": 4, + "h_matching_transfer_encoding_chunked": 3, + "h_matching_connection_keep_alive": 3, + "h_matching_connection_close": 3, + "h_transfer_encoding_chunked": 4, + "h_connection_keep_alive": 4, + "h_connection_close": 4, + "Macros": 1, + "character": 11, + "classes": 1, + "depends": 1, + "on": 4, + "strict": 2, + "define": 14, + "CR": 18, + "r": 58, + "LF": 21, + "LOWER": 7, + "0x20": 1, + "IS_ALPHA": 5, + "z": 47, + "IS_NUM": 14, + "9": 1, + "IS_ALPHANUM": 3, + "IS_HEX": 2, + "TOKEN": 4, + "IS_URL_CHAR": 6, + "IS_HOST_CHAR": 4, + "0x80": 1, + "endif": 6, + "start_state": 1, + "HTTP_REQUEST": 7, + "cond": 1, + "HPE_STRICT": 1, + "HTTP_STRERROR_GEN": 3, + "#n": 1, + "*description": 1, + "http_strerror_tab": 7, + "HTTP_ERRNO_MAP": 3, + "http_message_needs_eof": 4, + "http_parser": 13, + "*parser": 9, + "parse_url_char": 5, + "ch": 145, + "http_parser_execute": 2, + "http_parser_settings": 5, + "*settings": 2, + "unhex_val": 7, + "*header_field_mark": 1, + "*header_value_mark": 1, + "*url_mark": 1, + "*body_mark": 1, + "message_complete": 7, + "HPE_INVALID_EOF_STATE": 1, + "header_field_mark": 2, + "header_value_mark": 2, + "url_mark": 2, + "nread": 7, + "HTTP_MAX_HEADER_SIZE": 2, + "HPE_HEADER_OVERFLOW": 1, + "reexecute_byte": 7, + "HPE_CLOSED_CONNECTION": 1, + "content_length": 27, + "message_begin": 3, + "HTTP_RESPONSE": 3, + "HPE_INVALID_CONSTANT": 3, + "method": 39, + "HTTP_HEAD": 2, + "index": 58, + "STRICT_CHECK": 15, + "HPE_INVALID_VERSION": 12, + "http_major": 11, + "http_minor": 11, + "HPE_INVALID_STATUS": 3, + "status_code": 8, + "HPE_INVALID_METHOD": 4, + "http_method": 4, + "HTTP_CONNECT": 4, + "HTTP_DELETE": 1, + "HTTP_GET": 1, + "HTTP_LOCK": 1, + "HTTP_MKCOL": 2, + "HTTP_NOTIFY": 1, + "HTTP_OPTIONS": 1, + "HTTP_POST": 2, + "HTTP_REPORT": 1, + "HTTP_SUBSCRIBE": 2, + "HTTP_TRACE": 1, + "HTTP_UNLOCK": 2, + "*matcher": 1, + "matcher": 3, + "method_strings": 2, + "HTTP_CHECKOUT": 1, + "HTTP_COPY": 1, + "HTTP_MOVE": 1, + "HTTP_MERGE": 1, + "HTTP_MSEARCH": 1, + "HTTP_MKACTIVITY": 1, + "HTTP_SEARCH": 1, + "HTTP_PROPFIND": 2, + "HTTP_PUT": 2, + "HTTP_PATCH": 1, + "HTTP_PURGE": 1, + "HTTP_UNSUBSCRIBE": 1, + "HTTP_PROPPATCH": 1, + "url": 4, + "HPE_INVALID_URL": 4, + "HPE_LF_EXPECTED": 1, + "HPE_INVALID_HEADER_TOKEN": 2, + "header_field": 5, + "header_state": 42, + "header_value": 6, + "F_UPGRADE": 3, + "HPE_INVALID_CONTENT_LENGTH": 4, + "uint64_t": 8, + "F_CONNECTION_KEEP_ALIVE": 3, + "F_CONNECTION_CLOSE": 3, + "F_CHUNKED": 11, + "F_TRAILING": 3, + "NEW_MESSAGE": 6, + "upgrade": 3, + "on_headers_complete": 3, + "F_SKIPBODY": 4, + "HPE_CB_headers_complete": 1, + "to_read": 6, + "body": 6, + "body_mark": 2, + "HPE_INVALID_CHUNK_SIZE": 2, + "HPE_INVALID_INTERNAL_STATE": 1, + "1": 2, + "HPE_UNKNOWN": 1, + "Does": 1, + "the": 91, + "need": 5, + "to": 37, + "see": 2, + "an": 2, + "EOF": 26, + "find": 1, + "end": 48, + "of": 44, + "message": 3, + "http_should_keep_alive": 2, + "http_method_str": 1, + "m": 8, + "http_parser_init": 2, + "http_parser_type": 3, + "http_errno_name": 1, + "/sizeof": 4, + ".name": 1, + "http_errno_description": 1, + ".description": 1, + "http_parser_parse_url": 2, + "buflen": 3, + "is_connect": 4, + "http_parser_url": 3, + "*u": 2, + "http_parser_url_fields": 2, + "uf": 14, + "old_uf": 4, + "u": 18, + "port": 7, + "field_set": 5, + "UF_MAX": 3, + "UF_SCHEMA": 2, + "UF_HOST": 3, + "UF_PORT": 5, + "UF_PATH": 2, + "UF_QUERY": 2, + "UF_FRAGMENT": 2, + "field_data": 5, + ".off": 2, + "xffff": 1, + "uint16_t": 12, + "http_parser_pause": 2, + "paused": 3, + "HPE_PAUSED": 2, + "http_parser_h": 2, + "__cplusplus": 18, + "HTTP_PARSER_VERSION_MAJOR": 1, + "HTTP_PARSER_VERSION_MINOR": 1, + "<sys/types.h>": 2, + "_WIN32": 3, + "__MINGW32__": 1, + "_MSC_VER": 5, + "__int8": 2, + "__int16": 2, + "int16_t": 1, + "__int32": 2, + "int32_t": 112, + "__int64": 3, + "int64_t": 2, + "ssize_t": 1, + "<stdint.h>": 1, + "*1024": 4, + "DELETE": 2, + "GET": 2, + "HEAD": 2, + "POST": 2, + "PUT": 2, + "CONNECT": 2, + "OPTIONS": 2, + "TRACE": 2, + "COPY": 2, + "LOCK": 2, + "MKCOL": 2, + "MOVE": 2, + "PROPFIND": 2, + "PROPPATCH": 2, + "SEARCH": 3, + "UNLOCK": 2, + "REPORT": 2, + "MKACTIVITY": 2, + "CHECKOUT": 2, + "MERGE": 2, + "MSEARCH": 1, + "M": 1, + "NOTIFY": 2, + "SUBSCRIBE": 2, + "UNSUBSCRIBE": 2, + "PATCH": 2, + "PURGE": 2, + "HTTP_##name": 1, + "HTTP_BOTH": 1, + "OK": 1, + "CB_message_begin": 1, + "CB_url": 1, + "CB_header_field": 1, + "CB_header_value": 1, + "CB_headers_complete": 1, + "CB_body": 1, + "CB_message_complete": 1, + "INVALID_EOF_STATE": 1, + "HEADER_OVERFLOW": 1, + "CLOSED_CONNECTION": 1, + "INVALID_VERSION": 1, + "INVALID_STATUS": 1, + "INVALID_METHOD": 1, + "INVALID_URL": 1, + "INVALID_HOST": 1, + "INVALID_PORT": 1, + "INVALID_PATH": 1, + "INVALID_QUERY_STRING": 1, + "INVALID_FRAGMENT": 1, + "LF_EXPECTED": 1, + "INVALID_HEADER_TOKEN": 1, + "INVALID_CONTENT_LENGTH": 1, + "INVALID_CHUNK_SIZE": 1, + "INVALID_CONSTANT": 1, + "INVALID_INTERNAL_STATE": 1, + "STRICT": 1, + "PAUSED": 1, + "UNKNOWN": 1, + "HTTP_ERRNO_GEN": 3, + "HPE_##n": 1, + "HTTP_PARSER_ERRNO_LINE": 2, + "short": 6, + "http_cb": 3, + "on_message_begin": 1, + "http_data_cb": 4, + "on_url": 1, + "on_header_field": 1, + "on_header_value": 1, + "on_body": 1, + "on_message_complete": 1, + "off": 8, + "*http_method_str": 1, + "*http_errno_name": 1, + "*http_errno_description": 1, + "strncasecmp": 2, + "_strnicmp": 1, + "REF_TABLE_SIZE": 1, + "BUFFER_BLOCK": 5, + "BUFFER_SPAN": 9, + "MKD_LI_END": 1, + "gperf_case_strncmp": 1, + "s1": 6, + "s2": 6, + "GPERF_DOWNCASE": 1, + "GPERF_CASE_STRNCMP": 1, + "link_ref": 2, + "*link": 1, + "*title": 1, + "sd_markdown": 6, + "tag": 1, + "tag_len": 3, + "w": 6, + "is_empty": 4, + "htmlblock_end": 3, + "*curtag": 2, + "*rndr": 4, + "start_of_line": 2, + "tag_size": 3, + "curtag": 8, + "end_tag": 4, + "block_lines": 3, + "htmlblock_end_tag": 1, + "rndr": 25, + "parse_htmlblock": 1, + "*ob": 3, + "do_render": 4, + "tag_end": 7, + "work": 4, + "find_block_tag": 1, + "work.size": 5, + "cb.blockhtml": 6, + "ob": 14, + "opaque": 8, + "parse_table_row": 1, + "columns": 3, + "*col_data": 1, + "header_flag": 3, + "col": 9, + "*row_work": 1, + "cb.table_cell": 3, + "cb.table_row": 2, + "row_work": 4, + "rndr_newbuf": 2, + "cell_start": 5, + "cell_end": 6, + "*cell_work": 1, + "cell_work": 3, + "_isspace": 3, + "parse_inline": 1, + "col_data": 2, + "rndr_popbuf": 2, + "empty_cell": 2, + "parse_table_header": 1, + "*columns": 2, + "**column_data": 1, + "pipes": 23, + "header_end": 7, + "under_end": 1, + "*column_data": 1, + "calloc": 1, + "beg": 10, + "doc_size": 6, + "document": 9, + "UTF8_BOM": 1, + "is_ref": 1, + "md": 18, + "refs": 2, + "expand_tabs": 1, + "text": 22, + "bufputc": 2, + "bufgrow": 1, + "MARKDOWN_GROW": 1, + "cb.doc_header": 2, + "parse_block": 1, + "cb.doc_footer": 2, + "bufrelease": 3, + "free_link_refs": 1, + "work_bufs": 8, + ".size": 2, + "sd_markdown_free": 1, + "*md": 1, + ".asize": 2, + ".item": 2, + "stack_free": 2, + "sd_version": 1, + "*ver_major": 2, + "*ver_minor": 2, + "*ver_revision": 2, + "SUNDOWN_VER_MAJOR": 1, + "SUNDOWN_VER_MINOR": 1, + "SUNDOWN_VER_REVISION": 1, + "<errno.h>": 4, + "<sys/wait.h>": 2, + "<poll.h>": 1, + "<unistd.h>": 1, + "<fcntl.h>": 2, + "__APPLE__": 2, + "TARGET_OS_IPHONE": 1, + "**environ": 1, + "uv__chld": 2, + "EV_P_": 1, + "ev_child*": 1, + "watcher": 4, + "revents": 2, + "rstatus": 1, + "exit_status": 3, + "term_signal": 3, + "uv_process_t": 1, + "*process": 1, + "process": 19, + "child_watcher": 5, + "EV_CHILD": 1, + "ev_child_stop": 2, + "EV_A_": 1, + "WIFEXITED": 1, + "WEXITSTATUS": 2, + "WIFSIGNALED": 2, + "WTERMSIG": 2, + "exit_cb": 3, + "uv__make_socketpair": 2, + "fds": 20, + "SOCK_NONBLOCK": 2, + "fl": 8, + "SOCK_CLOEXEC": 1, + "UV__F_NONBLOCK": 5, + "socketpair": 2, + "AF_UNIX": 2, + "SOCK_STREAM": 2, + "uv__cloexec": 4, + "uv__nonblock": 5, + "uv__make_pipe": 2, + "__linux__": 3, + "UV__O_CLOEXEC": 1, + "UV__O_NONBLOCK": 1, + "uv__pipe2": 1, + "ENOSYS": 1, + "pipe": 1, + "uv__process_init_stdio": 2, + "uv_stdio_container_t*": 4, + "container": 17, + "writable": 8, + "UV_IGNORE": 2, + "UV_CREATE_PIPE": 4, + "UV_INHERIT_FD": 3, + "UV_INHERIT_STREAM": 2, + "data.stream": 7, + "UV_NAMED_PIPE": 2, + "data.fd": 1, + "uv__process_stdio_flags": 2, + "uv_pipe_t*": 1, + "ipc": 1, + "UV_STREAM_READABLE": 2, + "UV_STREAM_WRITABLE": 2, + "uv__process_open_stream": 2, + "child_fd": 3, + "close": 13, + "uv__stream_open": 1, + "uv_stream_t*": 2, + "uv__process_close_stream": 2, + "uv__stream_close": 1, + "uv__process_child_init": 2, + "uv_process_options_t": 2, + "options": 62, + "stdio_count": 7, + "int*": 22, + "options.flags": 4, + "UV_PROCESS_DETACHED": 2, + "setsid": 2, + "close_fd": 2, + "use_fd": 7, + "open": 4, + "O_RDONLY": 1, + "O_RDWR": 2, + "perror": 5, + "_exit": 6, + "dup2": 4, + "options.cwd": 2, + "UV_PROCESS_SETGID": 2, + "setgid": 1, + "options.gid": 1, + "UV_PROCESS_SETUID": 2, + "setuid": 1, + "options.uid": 1, + "environ": 4, + "options.env": 1, + "execvp": 1, + "options.file": 2, + "options.args": 1, + "SPAWN_WAIT_EXEC": 5, + "uv_spawn": 1, + "uv_loop_t*": 1, + "loop": 9, + "uv_process_t*": 3, + "char**": 7, + "save_our_env": 3, + "options.stdio_count": 4, + "malloc": 3, + "signal_pipe": 7, + "pollfd": 1, + "pfd": 2, + "pid_t": 2, + "pid": 13, + "UV_PROCESS_WINDOWS_VERBATIM_ARGUMENTS": 1, + "uv__handle_init": 1, + "uv_handle_t*": 1, + "UV_PROCESS": 1, + "counters.process_init": 1, + "uv__handle_start": 1, + "options.exit_cb": 1, + "options.stdio": 3, + "fork": 2, + "pfd.fd": 1, + "pfd.events": 1, + "POLLIN": 1, + "POLLHUP": 1, + "pfd.revents": 1, + "poll": 1, + "EINTR": 1, + "ev_child_init": 1, + "ev_child_start": 1, + "ev": 2, + "child_watcher.data": 1, + "uv__set_sys_error": 2, + "uv_process_kill": 1, + "signum": 4, + "kill": 4, + "uv_err_t": 1, + "uv_kill": 1, + "uv__new_sys_error": 1, + "uv_ok_": 1, + "uv__process_close": 1, + "handle": 10, + "uv__handle_stop": 1, + "VALUE": 13, + "rb_cRDiscount": 4, + "rb_rdiscount_to_html": 2, + "self": 9, + "*res": 2, + "szres": 8, + "encoding": 14, + "rb_funcall": 14, + "rb_intern": 15, + "rb_str_buf_new": 2, + "Check_Type": 2, + "T_STRING": 2, + "rb_rdiscount__get_flags": 3, + "MMIOT": 2, + "*doc": 2, + "mkd_string": 2, + "RSTRING_PTR": 2, + "RSTRING_LEN": 2, + "mkd_compile": 2, + "doc": 6, + "mkd_document": 1, + "res": 4, + "rb_str_cat": 4, + "mkd_cleanup": 2, + "rb_respond_to": 1, + "rb_rdiscount_toc_content": 2, + "mkd_toc": 1, + "ruby_obj": 11, + "MKD_TABSTOP": 1, + "MKD_NOHEADER": 1, + "Qtrue": 10, + "MKD_NOPANTS": 1, + "MKD_NOHTML": 1, + "MKD_TOC": 1, + "MKD_NOIMAGE": 1, + "MKD_NOLINKS": 1, + "MKD_NOTABLES": 1, + "MKD_STRICT": 1, + "MKD_AUTOLINK": 1, + "MKD_SAFELINK": 1, + "MKD_NO_EXT": 1, + "Init_rdiscount": 1, + "rb_define_class": 1, + "rb_cObject": 1, + "rb_define_method": 2, + "<time.h>": 1, + "<signal.h>": 1, + "<stdarg.h>": 1, + "<arpa/inet.h>": 1, + "<sys/stat.h>": 1, + "<sys/time.h>": 1, + "<sys/resource.h>": 2, + "<sys/uio.h>": 1, + "<float.h>": 1, + "<math.h>": 3, + "<sys/utsname.h>": 1, + "sharedObjectsStruct": 1, + "shared": 1, + "double": 126, + "R_Zero": 2, + "R_PosInf": 2, + "R_NegInf": 2, + "R_Nan": 2, + "redisServer": 1, + "server": 1, + "redisCommand": 6, + "*commandTable": 1, + "redisCommandTable": 5, + "getCommand": 1, + "setCommand": 1, + "noPreloadGetKeys": 6, + "setnxCommand": 1, + "setexCommand": 1, + "psetexCommand": 1, + "appendCommand": 1, + "strlenCommand": 1, + "delCommand": 1, + "existsCommand": 1, + "setbitCommand": 1, + "getbitCommand": 1, + "setrangeCommand": 1, + "getrangeCommand": 2, + "incrCommand": 1, + "decrCommand": 1, + "mgetCommand": 1, + "rpushCommand": 1, + "lpushCommand": 1, + "rpushxCommand": 1, + "lpushxCommand": 1, + "linsertCommand": 1, + "rpopCommand": 1, + "lpopCommand": 1, + "brpopCommand": 1, + "brpoplpushCommand": 1, + "blpopCommand": 1, + "llenCommand": 1, + "lindexCommand": 1, + "lsetCommand": 1, + "lrangeCommand": 1, + "ltrimCommand": 1, + "lremCommand": 1, + "rpoplpushCommand": 1, + "saddCommand": 1, + "sremCommand": 1, + "smoveCommand": 1, + "sismemberCommand": 1, + "scardCommand": 1, + "spopCommand": 1, + "srandmemberCommand": 1, + "sinterCommand": 2, + "sinterstoreCommand": 1, + "sunionCommand": 1, + "sunionstoreCommand": 1, + "sdiffCommand": 1, + "sdiffstoreCommand": 1, + "zaddCommand": 1, + "zincrbyCommand": 1, + "zremCommand": 1, + "zremrangebyscoreCommand": 1, + "zremrangebyrankCommand": 1, + "zunionstoreCommand": 1, + "zunionInterGetKeys": 4, + "zinterstoreCommand": 1, + "zrangeCommand": 1, + "zrangebyscoreCommand": 1, + "zrevrangebyscoreCommand": 1, + "zcountCommand": 1, + "zrevrangeCommand": 1, + "zcardCommand": 1, + "zscoreCommand": 1, + "zrankCommand": 1, + "zrevrankCommand": 1, + "hsetCommand": 1, + "hsetnxCommand": 1, + "hgetCommand": 1, + "hmsetCommand": 1, + "hmgetCommand": 1, + "hincrbyCommand": 1, + "hincrbyfloatCommand": 1, + "hdelCommand": 1, + "hlenCommand": 1, + "hkeysCommand": 1, + "hvalsCommand": 1, + "hgetallCommand": 1, + "hexistsCommand": 1, + "incrbyCommand": 1, + "decrbyCommand": 1, + "incrbyfloatCommand": 1, + "getsetCommand": 1, + "msetCommand": 1, + "msetnxCommand": 1, + "randomkeyCommand": 1, + "selectCommand": 1, + "moveCommand": 1, + "renameCommand": 1, + "renameGetKeys": 2, + "renamenxCommand": 1, + "expireCommand": 1, + "expireatCommand": 1, + "pexpireCommand": 1, + "pexpireatCommand": 1, + "keysCommand": 1, + "dbsizeCommand": 1, + "authCommand": 3, + "pingCommand": 2, + "echoCommand": 2, + "saveCommand": 1, + "bgsaveCommand": 1, + "bgrewriteaofCommand": 1, + "shutdownCommand": 2, + "lastsaveCommand": 1, + "typeCommand": 1, + "multiCommand": 2, + "execCommand": 2, + "discardCommand": 2, + "syncCommand": 1, + "flushdbCommand": 1, + "flushallCommand": 1, + "sortCommand": 1, + "infoCommand": 4, + "monitorCommand": 2, + "ttlCommand": 1, + "pttlCommand": 1, + "persistCommand": 1, + "slaveofCommand": 2, + "debugCommand": 1, + "configCommand": 1, + "subscribeCommand": 2, + "unsubscribeCommand": 2, + "psubscribeCommand": 2, + "punsubscribeCommand": 2, + "publishCommand": 1, + "watchCommand": 2, + "unwatchCommand": 1, + "clusterCommand": 1, + "restoreCommand": 1, + "migrateCommand": 1, + "askingCommand": 1, + "dumpCommand": 1, + "objectCommand": 1, + "clientCommand": 1, + "evalCommand": 1, + "evalShaCommand": 1, + "slowlogCommand": 1, + "scriptCommand": 2, + "timeCommand": 2, + "bitopCommand": 1, + "bitcountCommand": 1, + "redisLogRaw": 3, + "level": 12, + "syslogLevelMap": 2, + "LOG_DEBUG": 1, + "LOG_INFO": 1, + "LOG_NOTICE": 1, + "LOG_WARNING": 1, + "FILE": 3, + "*fp": 3, + "rawmode": 2, + "REDIS_LOG_RAW": 2, + "xff": 3, + "server.verbosity": 4, + "fp": 13, + "server.logfile": 8, + "fopen": 3, + "msg": 10, + "timeval": 4, + "tv": 8, + "gettimeofday": 4, + "strftime": 1, + "localtime": 1, + "tv.tv_sec": 4, + "snprintf": 2, + "tv.tv_usec/1000": 1, + "getpid": 7, + "server.syslog_enabled": 3, + "syslog": 1, + "redisLog": 33, + "...": 127, + "va_list": 3, + "ap": 4, + "REDIS_MAX_LOGMSG_LEN": 1, + "va_start": 3, + "vsnprintf": 1, + "va_end": 3, + "redisLogFromHandler": 2, + "server.daemonize": 5, + "O_APPEND": 2, + "O_CREAT": 2, + "O_WRONLY": 2, + "STDOUT_FILENO": 2, + "ll2string": 3, + "write": 7, + "time": 10, + "oom": 3, + "REDIS_WARNING": 19, + "sleep": 1, + "abort": 1, + "ustime": 7, + "ust": 7, + "*1000000": 1, + "tv.tv_usec": 3, + "mstime": 5, + "/1000": 1, + "exitFromChild": 1, + "retcode": 3, + "COVERAGE_TEST": 1, + "dictVanillaFree": 1, + "*privdata": 8, + "*val": 4, + "DICT_NOTUSED": 6, + "privdata": 8, + "zfree": 2, + "dictListDestructor": 2, + "listRelease": 1, + "list*": 1, + "dictSdsKeyCompare": 6, + "*key1": 4, + "*key2": 4, + "l1": 4, + "l2": 3, + "sdslen": 14, + "sds": 13, + "key1": 5, + "key2": 5, + "dictSdsKeyCaseCompare": 2, + "strcasecmp": 13, + "dictRedisObjectDestructor": 7, + "decrRefCount": 6, + "dictSdsDestructor": 4, + "sdsfree": 2, + "dictObjKeyCompare": 2, + "robj": 7, + "*o1": 2, + "*o2": 2, + "o1": 7, + "ptr": 18, + "o2": 7, + "dictObjHash": 2, + "key": 9, + "dictGenHashFunction": 5, + "dictSdsHash": 4, + "char*": 166, + "dictSdsCaseHash": 2, + "dictGenCaseHashFunction": 1, + "dictEncObjKeyCompare": 4, + "robj*": 3, + "REDIS_ENCODING_INT": 4, + "getDecodedObject": 3, + "dictEncObjHash": 4, + "REDIS_ENCODING_RAW": 1, + "dictType": 8, + "setDictType": 1, + "zsetDictType": 1, + "dbDictType": 2, + "keyptrDictType": 2, + "commandTableDictType": 2, + "hashDictType": 1, + "keylistDictType": 4, + "clusterNodesDictType": 1, + "htNeedsResize": 3, + "dict": 11, + "*dict": 5, + "used": 10, + "dictSlots": 3, + "dictSize": 10, + "DICT_HT_INITIAL_SIZE": 2, + "used*100/size": 1, + "REDIS_HT_MINFILL": 1, + "tryResizeHashTables": 2, + "server.dbnum": 8, + "server.db": 23, + ".dict": 9, + "dictResize": 2, + ".expires": 8, + "incrementallyRehash": 2, + "dictIsRehashing": 2, + "dictRehashMilliseconds": 2, + "updateDictResizePolicy": 2, + "server.rdb_child_pid": 12, + "server.aof_child_pid": 10, + "dictEnableResize": 1, + "dictDisableResize": 1, + "activeExpireCycle": 2, + "iteration": 6, + "start": 10, + "timelimit": 5, + "*REDIS_EXPIRELOOKUPS_TIME_PERC/REDIS_HZ/100": 1, + "expired": 4, + "redisDb": 3, + "expires": 3, + "slots": 2, + "now": 5, + "num*100/slots": 1, + "REDIS_EXPIRELOOKUPS_PER_CRON": 2, + "dictEntry": 2, + "*de": 2, + "de": 12, + "dictGetRandomKey": 4, + "dictGetSignedIntegerVal": 1, + "dictGetKey": 4, + "*keyobj": 2, + "createStringObject": 11, + "propagateExpire": 2, + "keyobj": 6, + "dbDelete": 2, + "server.stat_expiredkeys": 3, + "xf": 1, + "REDIS_EXPIRELOOKUPS_PER_CRON/4": 1, + "updateLRUClock": 3, + "server.lruclock": 2, + "server.unixtime/REDIS_LRU_CLOCK_RESOLUTION": 1, + "REDIS_LRU_CLOCK_MAX": 1, + "trackOperationsPerSecond": 2, + "server.ops_sec_last_sample_time": 3, + "ops": 1, + "server.stat_numcommands": 4, + "server.ops_sec_last_sample_ops": 3, + "ops_sec": 3, + "ops*1000/t": 1, + "server.ops_sec_samples": 4, + "server.ops_sec_idx": 4, + "%": 2, + "REDIS_OPS_SEC_SAMPLES": 3, + "getOperationsPerSecond": 2, + "sum": 3, + "clientsCronHandleTimeout": 2, + "redisClient": 12, + "time_t": 4, + "server.unixtime": 10, + "server.maxidletime": 3, + "REDIS_SLAVE": 3, + "REDIS_MASTER": 2, + "REDIS_BLOCKED": 2, + "pubsub_channels": 2, + "listLength": 14, + "pubsub_patterns": 2, + "lastinteraction": 3, + "REDIS_VERBOSE": 3, + "freeClient": 1, + "bpop.timeout": 2, + "addReply": 13, + "shared.nullmultibulk": 2, + "unblockClientWaitingData": 1, + "clientsCronResizeQueryBuffer": 2, + "querybuf_size": 3, + "sdsAllocSize": 1, + "querybuf": 6, + "idletime": 2, + "REDIS_MBULK_BIG_ARG": 1, + "querybuf_size/": 1, + "querybuf_peak": 2, + "sdsavail": 1, + "sdsRemoveFreeSpace": 1, + "clientsCron": 2, + "numclients": 3, + "server.clients": 7, + "iterations": 4, + "numclients/": 1, + "REDIS_HZ*10": 1, + "listNode": 4, + "*head": 1, + "listRotate": 1, + "head": 3, + "listFirst": 2, + "listNodeValue": 3, + "run_with_period": 6, + "_ms_": 2, + "loops": 2, + "/REDIS_HZ": 2, + "serverCron": 2, + "aeEventLoop": 2, + "*eventLoop": 2, + "*clientData": 1, + "server.cronloops": 3, + "REDIS_NOTUSED": 5, + "eventLoop": 2, + "clientData": 1, + "server.watchdog_period": 3, + "watchdogScheduleSignal": 1, + "zmalloc_used_memory": 8, + "server.stat_peak_memory": 5, + "server.shutdown_asap": 3, + "prepareForShutdown": 2, + "REDIS_OK": 23, + "vkeys": 8, + "server.activerehashing": 2, + "server.slaves": 9, + "server.aof_rewrite_scheduled": 4, + "rewriteAppendOnlyFileBackground": 2, + "statloc": 5, + "wait3": 1, + "WNOHANG": 1, + "exitcode": 3, + "bysignal": 4, + "backgroundSaveDoneHandler": 1, + "backgroundRewriteDoneHandler": 1, + "server.saveparamslen": 3, + "saveparam": 1, + "*sp": 1, + "server.saveparams": 2, + "server.dirty": 3, + "sp": 4, + "changes": 2, + "server.lastsave": 3, + "seconds": 2, + "REDIS_NOTICE": 13, + "rdbSaveBackground": 1, + "server.rdb_filename": 4, + "server.aof_rewrite_perc": 3, + "server.aof_current_size": 2, + "server.aof_rewrite_min_size": 2, + "base": 1, + "server.aof_rewrite_base_size": 4, + "growth": 3, + "server.aof_current_size*100/base": 1, + "server.aof_flush_postponed_start": 2, + "flushAppendOnlyFile": 2, + "server.masterhost": 7, + "freeClientsInAsyncFreeQueue": 1, + "replicationCron": 1, + "server.cluster_enabled": 6, + "clusterCron": 1, + "beforeSleep": 2, + "*ln": 3, + "server.unblocked_clients": 4, + "ln": 8, + "redisAssert": 1, + "listDelNode": 1, + "REDIS_UNBLOCKED": 1, + "server.current_client": 3, + "processInputBuffer": 1, + "createSharedObjects": 2, + "shared.crlf": 2, + "createObject": 31, + "REDIS_STRING": 31, + "sdsnew": 27, + "shared.ok": 3, + "shared.err": 1, + "shared.emptybulk": 1, + "shared.czero": 1, + "shared.cone": 1, + "shared.cnegone": 1, + "shared.nullbulk": 1, + "shared.emptymultibulk": 1, + "shared.pong": 2, + "shared.queued": 2, + "shared.wrongtypeerr": 1, + "shared.nokeyerr": 1, + "shared.syntaxerr": 2, + "shared.sameobjecterr": 1, + "shared.outofrangeerr": 1, + "shared.noscripterr": 1, + "shared.loadingerr": 2, + "shared.slowscripterr": 2, + "shared.masterdownerr": 2, + "shared.bgsaveerr": 2, + "shared.roslaveerr": 2, + "shared.oomerr": 2, + "shared.space": 1, + "shared.colon": 1, + "shared.plus": 1, + "REDIS_SHARED_SELECT_CMDS": 1, + "shared.select": 1, + "sdscatprintf": 24, + "sdsempty": 8, + "shared.messagebulk": 1, + "shared.pmessagebulk": 1, + "shared.subscribebulk": 1, + "shared.unsubscribebulk": 1, + "shared.psubscribebulk": 1, + "shared.punsubscribebulk": 1, + "shared.del": 1, + "shared.rpop": 1, + "shared.lpop": 1, + "REDIS_SHARED_INTEGERS": 1, + "shared.integers": 2, + "void*": 135, + "REDIS_SHARED_BULKHDR_LEN": 1, + "shared.mbulkhdr": 1, + "shared.bulkhdr": 1, + "initServerConfig": 2, + "getRandomHexChars": 1, + "server.runid": 3, + "REDIS_RUN_ID_SIZE": 2, + "server.arch_bits": 3, + "server.port": 7, + "REDIS_SERVERPORT": 1, + "server.bindaddr": 2, + "server.unixsocket": 7, + "server.unixsocketperm": 2, + "server.ipfd": 9, + "server.sofd": 9, + "REDIS_DEFAULT_DBNUM": 1, + "REDIS_MAXIDLETIME": 1, + "server.client_max_querybuf_len": 1, + "REDIS_MAX_QUERYBUF_LEN": 1, + "server.loading": 4, + "server.syslog_ident": 2, + "zstrdup": 5, + "server.syslog_facility": 2, + "LOG_LOCAL0": 1, + "server.aof_state": 7, + "REDIS_AOF_OFF": 5, + "server.aof_fsync": 1, + "AOF_FSYNC_EVERYSEC": 1, + "server.aof_no_fsync_on_rewrite": 1, + "REDIS_AOF_REWRITE_PERC": 1, + "REDIS_AOF_REWRITE_MIN_SIZE": 1, + "server.aof_last_fsync": 1, + "server.aof_rewrite_time_last": 2, + "server.aof_rewrite_time_start": 2, + "server.aof_delayed_fsync": 2, + "server.aof_fd": 4, + "server.aof_selected_db": 1, + "server.pidfile": 3, + "server.aof_filename": 3, + "server.requirepass": 4, + "server.rdb_compression": 1, + "server.rdb_checksum": 1, + "server.maxclients": 6, + "REDIS_MAX_CLIENTS": 1, + "server.bpop_blocked_clients": 2, + "server.maxmemory": 6, + "server.maxmemory_policy": 11, + "REDIS_MAXMEMORY_VOLATILE_LRU": 3, + "server.maxmemory_samples": 3, + "server.hash_max_ziplist_entries": 1, + "REDIS_HASH_MAX_ZIPLIST_ENTRIES": 1, + "server.hash_max_ziplist_value": 1, + "REDIS_HASH_MAX_ZIPLIST_VALUE": 1, + "server.list_max_ziplist_entries": 1, + "REDIS_LIST_MAX_ZIPLIST_ENTRIES": 1, + "server.list_max_ziplist_value": 1, + "REDIS_LIST_MAX_ZIPLIST_VALUE": 1, + "server.set_max_intset_entries": 1, + "REDIS_SET_MAX_INTSET_ENTRIES": 1, + "server.zset_max_ziplist_entries": 1, + "REDIS_ZSET_MAX_ZIPLIST_ENTRIES": 1, + "server.zset_max_ziplist_value": 1, + "REDIS_ZSET_MAX_ZIPLIST_VALUE": 1, + "server.repl_ping_slave_period": 1, + "REDIS_REPL_PING_SLAVE_PERIOD": 1, + "server.repl_timeout": 1, + "REDIS_REPL_TIMEOUT": 1, + "server.cluster.configfile": 1, + "server.lua_caller": 1, + "server.lua_time_limit": 1, + "REDIS_LUA_TIME_LIMIT": 1, + "server.lua_client": 1, + "server.lua_timedout": 2, + "resetServerSaveParams": 2, + "appendServerSaveParams": 3, + "*60": 1, + "server.masterauth": 1, + "server.masterport": 2, + "server.master": 3, + "server.repl_state": 6, + "REDIS_REPL_NONE": 1, + "server.repl_syncio_timeout": 1, + "REDIS_REPL_SYNCIO_TIMEOUT": 1, + "server.repl_serve_stale_data": 2, + "server.repl_slave_ro": 2, + "server.repl_down_since": 2, + "server.client_obuf_limits": 9, + "REDIS_CLIENT_LIMIT_CLASS_NORMAL": 3, + ".hard_limit_bytes": 3, + ".soft_limit_bytes": 3, + ".soft_limit_seconds": 3, + "REDIS_CLIENT_LIMIT_CLASS_SLAVE": 3, + "*1024*256": 1, + "*1024*64": 1, + "REDIS_CLIENT_LIMIT_CLASS_PUBSUB": 3, + "*1024*32": 1, + "*1024*8": 1, + "/R_Zero": 2, + "R_Zero/R_Zero": 1, + "server.commands": 1, + "dictCreate": 6, + "populateCommandTable": 2, + "server.delCommand": 1, + "lookupCommandByCString": 3, + "server.multiCommand": 1, + "server.lpushCommand": 1, + "server.slowlog_log_slower_than": 1, + "REDIS_SLOWLOG_LOG_SLOWER_THAN": 1, + "server.slowlog_max_len": 1, + "REDIS_SLOWLOG_MAX_LEN": 1, + "server.assert_failed": 1, + "server.assert_file": 1, + "server.assert_line": 1, + "server.bug_report_start": 1, + "adjustOpenFilesLimit": 2, + "rlim_t": 3, + "maxfiles": 6, + "rlimit": 1, + "limit": 3, + "getrlimit": 1, + "RLIMIT_NOFILE": 2, + "oldlimit": 5, + "limit.rlim_cur": 2, + "limit.rlim_max": 1, + "setrlimit": 1, + "initServer": 2, + "signal": 2, + "SIGHUP": 1, + "SIG_IGN": 2, + "SIGPIPE": 1, + "setupSignalHandlers": 2, + "openlog": 1, + "LOG_PID": 1, + "LOG_NDELAY": 1, + "LOG_NOWAIT": 1, + "listCreate": 6, + "server.clients_to_close": 1, + "server.monitors": 2, + "server.el": 7, + "aeCreateEventLoop": 1, + "zmalloc": 2, + "*server.dbnum": 1, + "anetTcpServer": 1, + "server.neterr": 4, + "ANET_ERR": 2, + "unlink": 3, + "anetUnixServer": 1, + ".blocking_keys": 1, + ".watched_keys": 1, + ".id": 1, + "server.pubsub_channels": 2, + "server.pubsub_patterns": 4, + "listSetFreeMethod": 1, + "freePubsubPattern": 1, + "listSetMatchMethod": 1, + "listMatchPubsubPattern": 1, + "aofRewriteBufferReset": 1, + "server.aof_buf": 3, + "server.rdb_save_time_last": 2, + "server.rdb_save_time_start": 2, + "server.stat_numconnections": 2, + "server.stat_evictedkeys": 3, + "server.stat_starttime": 2, + "server.stat_keyspace_misses": 2, + "server.stat_keyspace_hits": 2, + "server.stat_fork_time": 2, + "server.stat_rejected_conn": 2, + "server.lastbgsave_status": 3, + "server.stop_writes_on_bgsave_err": 2, + "aeCreateTimeEvent": 1, + "aeCreateFileEvent": 2, + "AE_READABLE": 2, + "acceptTcpHandler": 1, + "AE_ERR": 2, + "acceptUnixHandler": 1, + "REDIS_AOF_ON": 2, + "LL*": 1, + "REDIS_MAXMEMORY_NO_EVICTION": 2, + "clusterInit": 1, + "scriptingInit": 1, + "slowlogInit": 1, + "bioInit": 1, + "numcommands": 5, + "sflags": 1, + "retval": 3, + "arity": 3, + "addReplyErrorFormat": 1, + "authenticated": 3, + "proc": 14, + "addReplyError": 6, + "getkeys_proc": 1, + "firstkey": 1, + "hashslot": 3, + "server.cluster.state": 1, + "REDIS_CLUSTER_OK": 1, + "ask": 3, + "clusterNode": 1, + "*n": 1, + "getNodeByQuery": 1, + "server.cluster.myself": 1, + "addReplySds": 3, + "ip": 4, + "freeMemoryIfNeeded": 2, + "REDIS_CMD_DENYOOM": 1, + "REDIS_ERR": 5, + "REDIS_CMD_WRITE": 2, + "REDIS_REPL_CONNECTED": 3, + "tolower": 2, + "REDIS_MULTI": 1, + "queueMultiCommand": 1, + "call": 1, + "REDIS_CALL_FULL": 1, + "save": 2, + "REDIS_SHUTDOWN_SAVE": 1, + "nosave": 2, + "REDIS_SHUTDOWN_NOSAVE": 1, + "SIGKILL": 2, + "rdbRemoveTempFile": 1, + "aof_fsync": 1, + "rdbSave": 1, + "addReplyBulk": 1, + "addReplyMultiBulkLen": 1, + "addReplyBulkLongLong": 2, + "bytesToHuman": 3, + "*s": 3, + "sprintf": 10, + "n/": 3, + "LL*1024*1024": 2, + "LL*1024*1024*1024": 1, + "genRedisInfoString": 2, + "*section": 2, + "info": 64, + "uptime": 2, + "rusage": 1, + "self_ru": 2, + "c_ru": 2, + "lol": 3, + "bib": 3, + "allsections": 12, + "defsections": 11, + "sections": 11, + "section": 14, + "getrusage": 2, + "RUSAGE_SELF": 1, + "RUSAGE_CHILDREN": 1, + "getClientsMaxBuffers": 1, + "utsname": 1, + "sdscat": 14, + "uname": 1, + "REDIS_VERSION": 4, + "redisGitSHA1": 3, + "strtol": 2, + "redisGitDirty": 3, + "name.sysname": 1, + "name.release": 1, + "name.machine": 1, + "aeGetApiName": 1, + "__GNUC__": 7, + "__GNUC_MINOR__": 2, + "__GNUC_PATCHLEVEL__": 1, + "uptime/": 1, + "*24": 1, + "hmem": 3, + "peak_hmem": 3, + "zmalloc_get_rss": 1, + "lua_gc": 1, + "server.lua": 1, + "LUA_GCCOUNT": 1, + "*1024LL": 1, + "zmalloc_get_fragmentation_ratio": 1, + "ZMALLOC_LIB": 2, + "aofRewriteBufferSize": 2, + "bioPendingJobsOfType": 1, + "REDIS_BIO_AOF_FSYNC": 1, + "perc": 3, + "eta": 4, + "elapsed": 3, + "off_t": 1, + "remaining_bytes": 1, + "server.loading_total_bytes": 3, + "server.loading_loaded_bytes": 3, + "server.loading_start_time": 2, + "elapsed*remaining_bytes": 1, + "/server.loading_loaded_bytes": 1, + "REDIS_REPL_TRANSFER": 2, + "server.repl_transfer_left": 1, + "server.repl_transfer_lastio": 1, + "slaveid": 3, + "listIter": 2, + "li": 6, + "listRewind": 2, + "listNext": 2, + "*slave": 2, + "*state": 1, + "anetPeerToString": 1, + "slave": 3, + "replstate": 1, + "REDIS_REPL_WAIT_BGSAVE_START": 1, + "REDIS_REPL_WAIT_BGSAVE_END": 1, + "REDIS_REPL_SEND_BULK": 1, + "REDIS_REPL_ONLINE": 1, + "float": 26, + "self_ru.ru_stime.tv_sec": 1, + "self_ru.ru_stime.tv_usec/1000000": 1, + "self_ru.ru_utime.tv_sec": 1, + "self_ru.ru_utime.tv_usec/1000000": 1, + "c_ru.ru_stime.tv_sec": 1, + "c_ru.ru_stime.tv_usec/1000000": 1, + "c_ru.ru_utime.tv_sec": 1, + "c_ru.ru_utime.tv_usec/1000000": 1, + "calls": 4, + "microseconds": 1, + "microseconds/c": 1, + "keys": 4, + "REDIS_MONITOR": 1, + "slaveseldb": 1, + "listAddNodeTail": 1, + "mem_used": 9, + "mem_tofree": 3, + "mem_freed": 4, + "slaves": 3, + "obuf_bytes": 3, + "getClientOutputBufferMemoryUsage": 1, + "k": 15, + "keys_freed": 3, + "bestval": 5, + "bestkey": 9, + "REDIS_MAXMEMORY_ALLKEYS_LRU": 2, + "REDIS_MAXMEMORY_ALLKEYS_RANDOM": 2, + "REDIS_MAXMEMORY_VOLATILE_RANDOM": 1, + "thiskey": 7, + "thisval": 8, + "dictFind": 1, + "dictGetVal": 2, + "estimateObjectIdleTime": 1, + "REDIS_MAXMEMORY_VOLATILE_TTL": 1, + "flushSlavesOutputBuffers": 1, + "linuxOvercommitMemoryValue": 2, + "fgets": 1, + "atoi": 3, + "linuxOvercommitMemoryWarning": 2, + "createPidFile": 2, + "daemonize": 2, + "STDIN_FILENO": 1, + "STDERR_FILENO": 2, + "version": 4, + "usage": 2, + "redisAsciiArt": 2, + "*16": 2, + "ascii_logo": 1, + "sigtermHandler": 2, + "sig": 2, + "sigaction": 6, + "act": 6, + "sigemptyset": 2, + "act.sa_mask": 2, + "act.sa_flags": 2, + "act.sa_handler": 1, + "SIGTERM": 1, + "HAVE_BACKTRACE": 1, + "SA_NODEFER": 1, + "SA_RESETHAND": 1, + "SA_SIGINFO": 1, + "act.sa_sigaction": 1, + "sigsegvHandler": 1, + "SIGSEGV": 1, + "SIGBUS": 1, + "SIGFPE": 1, + "SIGILL": 1, + "memtest": 2, + "megabytes": 1, + "passes": 1, + "zmalloc_enable_thread_safeness": 1, + "srand": 1, + "dictSetHashFunctionSeed": 1, + "*configfile": 1, + "configfile": 2, + "sdscatrepr": 1, + "loadServerConfig": 1, + "loadAppendOnlyFile": 1, + "/1000000": 2, + "rdbLoad": 1, + "aeSetBeforeSleepProc": 1, + "aeMain": 1, + "aeDeleteEventLoop": 1, + "<rf_io.h>": 1, + "<rf_utils.h>": 2, + "<String/rfc_string.h>": 2, + "//": 257, + "rfUTF8_IsContinuationbyte": 1, + "e.t.c.": 1, + "rfFReadLine_UTF8": 5, + "FILE*": 64, + "utf8": 36, + "uint32_t*": 34, + "byteLength": 197, + "bufferSize": 6, + "eof": 53, + "bytesN": 98, + "bIndex": 5, + "RF_NEWLINE_CRLF": 1, + "newLineFound": 1, + "*bufferSize": 1, + "RF_OPTION_FGETS_READBYTESN": 5, + "RF_MALLOC": 47, + "tempBuff": 6, + "RF_LF": 10, + "buff": 95, + "RF_SUCCESS": 14, + "RE_FILE_EOF": 22, + "found": 20, + "*eofReached": 14, + "LOG_ERROR": 64, + "RF_HEXEQ_UI": 7, + "rfFgetc_UTF32BE": 3, + "else//": 14, + "undo": 5, + "peek": 5, + "ahead": 5, + "file": 6, + "pointer": 5, + "fseek": 19, + "SEEK_CUR": 19, + "rfFgets_UTF32LE": 2, + "eofReached": 4, + "rfFgetc_UTF32LE": 4, + "rfFgets_UTF16BE": 2, + "rfFgetc_UTF16BE": 4, + "rfFgets_UTF16LE": 2, + "rfFgetc_UTF16LE": 4, + "rfFgets_UTF8": 2, + "rfFgetc_UTF8": 3, + "RF_HEXEQ_C": 9, + "fgetc": 9, + "check": 8, + "RE_FILE_READ": 2, + "cp": 12, + "c2": 13, + "c3": 9, + "c4": 5, + "i_READ_CHECK": 20, + "///": 4, + "success": 4, + "cc": 24, + "we": 10, + "more": 2, + "bytes": 225, + "xC0": 3, + "xC1": 1, + "RE_UTF8_INVALID_SEQUENCE_INVALID_BYTE": 6, + "RE_UTF8_INVALID_SEQUENCE_END": 6, + "rfUTF8_IsContinuationByte": 12, + "RE_UTF8_INVALID_SEQUENCE_CONBYTE": 6, + "decoded": 3, + "codepoint": 47, + "F": 38, + "xE0": 2, + "xF": 5, + "decode": 6, + "xF0": 2, + "RF_HEXGE_C": 1, + "xBF": 2, + "//invalid": 1, + "byte": 6, + "are": 6, + "xFF": 1, + "//if": 1, + "needing": 1, + "than": 5, + "swapE": 21, + "v1": 38, + "v2": 26, + "rfUTILS_Endianess": 24, + "RF_LITTLE_ENDIAN": 23, + "fread": 12, + "endianess": 40, + "needed": 10, + "rfUTILS_SwapEndianUS": 10, + "RF_HEXGE_US": 4, + "xD800": 8, + "RF_HEXLE_US": 4, + "xDFFF": 8, + "RF_HEXL_US": 8, + "RF_HEXG_US": 8, + "xDBFF": 4, + "RE_UTF16_INVALID_SEQUENCE": 20, + "RE_UTF16_NO_SURRPAIR": 2, + "xDC00": 4, + "user": 2, + "wants": 2, + "ff": 10, + "uint16_t*": 11, + "surrogate": 4, + "pair": 4, + "existence": 2, + "RF_BIG_ENDIAN": 10, + "rfUTILS_SwapEndianUI": 11, + "rfFback_UTF32BE": 2, + "i_FSEEK_CHECK": 14, + "rfFback_UTF32LE": 2, + "rfFback_UTF16BE": 2, + "rfFback_UTF16LE": 2, + "rfFback_UTF8": 2, + "depending": 1, + "number": 19, + "read": 1, + "backwards": 1, + "RE_UTF8_INVALID_SEQUENCE": 2, + "REFU_IO_H": 2, + "<rf_setup.h>": 2, + "opening": 2, + "bracket": 4, + "calling": 4, + "C": 14, + "xA": 1, + "RF_CR": 1, + "xD": 1, + "REFU_WIN32_VERSION": 1, + "i_PLUSB_WIN32": 2, + "foff_rft": 2, + "off64_t": 1, + "///Fseek": 1, + "and": 15, + "Ftelll": 1, + "definitions": 1, + "rfFseek": 2, + "i_FILE_": 16, + "i_OFFSET_": 4, + "i_WHENCE_": 4, + "_fseeki64": 1, + "rfFtell": 2, + "_ftelli64": 1, + "fseeko64": 1, + "ftello64": 1, + "i_DECLIMEX_": 121, + "rfFReadLine_UTF16BE": 6, + "rfFReadLine_UTF16LE": 4, + "rfFReadLine_UTF32BE": 1, + "rfFReadLine_UTF32LE": 4, + "rfFgets_UTF32BE": 1, + "RF_IAMHERE_FOR_DOXYGEN": 22, + "rfPopen": 2, + "command": 2, + "i_rfPopen": 2, + "i_CMD_": 2, + "i_MODE_": 2, + "i_rfLMS_WRAP2": 5, + "rfPclose": 1, + "stream": 3, + "///closing": 1, + "#endif//include": 1, + "guards": 2, + "<String/rfc_stringx.h>": 1, + "<rf_localmem.h>": 2, + "local": 5, + "stack": 6, + "memory": 4, + "RF_OPTION_DEFAULT_ARGUMENTS": 24, + "RF_String*": 222, + "rfString_Create": 4, + "i_rfString_Create": 3, + "READ_VSNPRINTF_ARGS": 5, + "rfUTF8_VerifySequence": 7, + "RF_FAILURE": 24, + "RE_STRING_INIT_FAILURE": 8, + "buffAllocated": 11, + "RF_String": 27, + "i_NVrfString_Create": 3, + "i_rfString_CreateLocal1": 3, + "RF_OPTION_SOURCE_ENCODING": 30, + "RF_UTF8": 8, + "characterLength": 16, + "*codepoints": 2, + "rfLMS_MacroEvalPtr": 2, + "RF_LMS": 6, + "RF_UTF16_LE": 9, + "RF_UTF16_BE": 7, + "codepoints": 44, + "i/2": 2, + "#elif": 14, + "RF_UTF32_LE": 3, + "RF_UTF32_BE": 3, + "UTF16": 4, + "rfUTF16_Decode": 5, + "rfUTF16_Decode_swap": 5, + "RF_UTF16_BE//": 2, + "RF_UTF32_LE//": 2, + "copy": 4, + "UTF32": 4, + "into": 8, + "RF_UTF32_BE//": 2, + "<i;j+=4)>": 2, + "any": 3, + "other": 16, + "UTF": 17, + "8": 15, + "encode": 2, + "them": 3, + "rfUTF8_Encode": 4, + "While": 2, + "attempting": 2, + "create": 2, + "temporary": 4, + "given": 5, + "sequence": 6, + "could": 2, + "not": 6, + "be": 6, + "properly": 2, + "encoded": 2, + "RE_UTF8_ENCODING": 2, + "End": 2, + "Non": 2, + "code=": 2, + "normally": 1, + "since": 5, + "here": 5, + "have": 2, + "validity": 2, + "get": 4, + "Error": 2, + "at": 3, + "String": 11, + "Allocation": 2, + "due": 2, + "invalid": 2, + "rfLMS_Push": 4, + "Memory": 4, + "allocation": 3, + "Local": 2, + "Stack": 2, + "failed": 2, + "Insufficient": 2, + "space": 4, + "Consider": 2, + "compiling": 2, + "library": 3, + "with": 9, + "bigger": 3, + "Quitting": 2, + "proccess": 2, + "RE_LOCALMEMSTACK_INSUFFICIENT": 8, + "i_NVrfString_CreateLocal": 3, + "during": 1, + "rfString_Init": 3, + "i_rfString_Init": 3, + "i_NVrfString_Init": 3, + "rfString_Create_cp": 2, + "rfString_Init_cp": 3, + "RF_HEXLE_UI": 8, + "RF_HEXGE_UI": 6, + "C0": 3, + "ffff": 4, + "xFC0": 4, + "xF000": 2, + "xE": 2, + "F000": 2, + "C0000": 2, + "E": 11, + "RE_UTF8_INVALID_CODE_POINT": 2, + "rfString_Create_i": 2, + "numLen": 8, + "max": 4, + "is": 17, + "most": 3, + "environment": 3, + "so": 4, + "chars": 3, + "will": 3, + "certainly": 3, + "fit": 3, + "it": 12, + "strcpy": 4, + "rfString_Init_i": 2, + "rfString_Create_f": 2, + "rfString_Init_f": 2, + "rfString_Create_UTF16": 2, + "rfString_Init_UTF16": 3, + "utf8ByteLength": 34, + "last": 1, + "utf": 1, + "null": 4, + "termination": 3, + "byteLength*2": 1, + "allocate": 1, + "same": 1, + "as": 4, + "different": 1, + "RE_INPUT": 1, + "ends": 3, + "rfString_Create_UTF32": 2, + "rfString_Init_UTF32": 3, + "codeBuffer": 9, + "xFEFF": 1, + "big": 14, + "endian": 20, + "xFFFE0000": 1, + "little": 7, + "according": 1, + "standard": 1, + "no": 4, + "BOM": 1, + "means": 1, + "rfUTF32_Length": 1, + "i_rfString_Assign": 3, + "dest": 7, + "sourceP": 2, + "source": 8, + "RF_REALLOC": 9, + "rfString_Assign_char": 2, + "<5)>": 1, + "rfString_Create_nc": 3, + "i_rfString_Create_nc": 3, + "bytesWritten": 2, + "i_NVrfString_Create_nc": 3, + "rfString_Init_nc": 4, + "i_rfString_Init_nc": 3, + "i_NVrfString_Init_nc": 3, + "rfString_Destroy": 2, + "rfString_Deinit": 3, + "rfString_ToUTF16": 4, + "charsN": 5, + "rfUTF8_Decode": 2, + "rfUTF16_Encode": 1, + "rfString_ToUTF32": 4, + "rfString_Length": 5, + "RF_STRING_ITERATE_START": 9, + "RF_STRING_ITERATE_END": 9, + "rfString_GetChar": 2, + "thisstr": 210, + "codePoint": 18, + "RF_STRING_INDEX_OUT_OF_BOUNDS": 2, + "rfString_BytePosToCodePoint": 7, + "rfString_BytePosToCharPos": 4, + "thisstrP": 32, + "bytepos": 12, + "before": 4, + "charPos": 8, + "byteI": 7, + "i_rfString_Equal": 3, + "s1P": 2, + "s2P": 2, + "i_rfString_Find": 5, + "sstrP": 6, + "optionsP": 11, + "sstr": 39, + "*optionsP": 8, + "RF_BITFLAG_ON": 5, + "RF_CASE_IGNORE": 2, + "strstr": 2, + "RF_MATCH_WORD": 5, + "exact": 6, + "<thisstr->": 1, + "0x5a": 1, + "0x7a": 1, + "substring": 5, + "search": 1, + "zero": 2, + "equals": 1, + "then": 1, + "okay": 1, + "rfString_Equal": 4, + "RFS_": 8, + "ERANGE": 1, + "RE_STRING_TOFLOAT_UNDERFLOW": 1, + "RE_STRING_TOFLOAT": 1, + "rfString_Copy_OUT": 2, + "srcP": 6, + "rfString_Copy_IN": 2, + "dst": 15, + "rfString_Copy_chars": 2, + "bytePos": 23, + "terminate": 1, + "i_rfString_ScanfAfter": 3, + "afterstrP": 2, + "format": 4, + "afterstr": 5, + "sscanf": 1, + "<=0)>": 1, + "Counts": 1, + "how": 1, + "many": 1, + "times": 1, + "occurs": 1, + "inside": 2, + "i_rfString_Count": 5, + "sstr2": 2, + "move": 12, + "rfString_FindBytePos": 10, + "rfString_Tokenize": 2, + "sep": 3, + "tokensN": 2, + "RF_String**": 2, + "*tokensN": 1, + "rfString_Count": 4, + "lstr": 6, + "lstrP": 1, + "rstr": 24, + "rstrP": 5, + "rfString_After": 4, + "rfString_Beforev": 4, + "parNP": 6, + "i_rfString_Beforev": 16, + "parN": 10, + "*parNP": 2, + "minPos": 17, + "thisPos": 8, + "argList": 8, + "va_arg": 2, + "i_rfString_Before": 5, + "i_rfString_After": 5, + "afterP": 2, + "after": 6, + "rfString_Afterv": 4, + "i_rfString_Afterv": 16, + "minPosLength": 3, + "go": 8, + "i_rfString_Append": 3, + "otherP": 4, + "strncat": 1, + "rfString_Append_i": 2, + "rfString_Append_f": 2, + "i_rfString_Prepend": 3, + "goes": 1, + "i_rfString_Remove": 6, + "numberP": 1, + "*numberP": 1, + "occurences": 5, + "done": 1, + "<=thisstr->": 1, + "i_rfString_KeepOnly": 3, + "keepstrP": 2, + "keepLength": 2, + "charValue": 12, + "*keepChars": 1, + "keepstr": 5, + "exists": 6, + "charBLength": 5, + "keepChars": 4, + "*keepLength": 1, + "rfString_Iterate_Start": 6, + "rfString_Iterate_End": 4, + "<keepLength;>": 1, + "does": 1, + "exist": 2, + "back": 1, + "cover": 1, + "that": 9, + "effectively": 1, + "gets": 1, + "deleted": 1, + "rfUTF8_FromCodepoint": 1, + "this": 5, + "kind": 1, + "non": 1, + "clean": 1, + "way": 1, + "macro": 2, + "internally": 1, + "uses": 1, + "byteIndex_": 12, + "variable": 1, + "use": 1, + "determine": 1, + "backs": 1, + "memmove": 1, + "by": 1, + "contiuing": 1, + "make": 3, + "sure": 2, + "position": 1, + "won": 1, + "array": 1, + "rfString_PruneStart": 2, + "nBytePos": 23, + "rfString_PruneEnd": 2, + "RF_STRING_ITERATEB_START": 2, + "RF_STRING_ITERATEB_END": 2, + "rfString_PruneMiddleB": 2, + "pBytePos": 15, + "indexing": 1, + "works": 1, + "pbytePos": 2, + "pth": 2, + "include": 6, + "rfString_PruneMiddleF": 2, + "got": 1, + "all": 2, + "i_rfString_Replace": 6, + "numP": 1, + "*numP": 1, + "RF_StringX": 2, + "just": 1, + "finding": 1, + "foundN": 10, + "bSize": 4, + "bytePositions": 17, + "bSize*sizeof": 1, + "rfStringX_FromString_IN": 1, + "temp.bIndex": 2, + "temp.bytes": 1, + "temp.byteLength": 1, + "rfStringX_Deinit": 1, + "replace": 3, + "removed": 2, + "one": 2, + "orSize": 5, + "nSize": 4, + "number*diff": 1, + "strncpy": 3, + "smaller": 1, + "diff*number": 1, + "remove": 1, + "equal": 1, + "i_rfString_StripStart": 3, + "subP": 7, + "RF_String*sub": 2, + "noMatch": 8, + "*subValues": 2, + "subLength": 6, + "subValues": 8, + "*subLength": 2, + "i_rfString_StripEnd": 3, + "lastBytePos": 4, + "testity": 2, + "i_rfString_Strip": 3, + "res1": 2, + "rfString_StripStart": 3, + "res2": 2, + "rfString_StripEnd": 3, + "rfString_Create_fUTF8": 2, + "rfString_Init_fUTF8": 3, + "unused": 3, + "rfString_Assign_fUTF8": 2, + "FILE*f": 2, + "utf8BufferSize": 4, + "function": 6, + "rfString_Append_fUTF8": 2, + "rfString_Append": 5, + "rfString_Create_fUTF16": 2, + "rfString_Init_fUTF16": 3, + "rfString_Assign_fUTF16": 2, + "rfString_Append_fUTF16": 2, + "char*utf8": 3, + "rfString_Create_fUTF32": 2, + "rfString_Init_fUTF32": 3, + "<0)>": 1, + "Failure": 1, + "initialize": 1, + "reading": 1, + "Little": 1, + "Endian": 1, + "32": 1, + "bytesN=": 1, + "rfString_Assign_fUTF32": 2, + "rfString_Append_fUTF32": 2, + "i_rfString_Fwrite": 5, + "sP": 2, + "encodingP": 1, + "*utf32": 1, + "utf16": 11, + "*encodingP": 1, + "fwrite": 5, + "logging": 5, + "utf32": 10, + "i_WRITE_CHECK": 1, + "RE_FILE_WRITE": 1, + "REFU_USTRING_H": 2, + "<rf_options.h>": 1, + "RF_MODULE_STRINGS//": 1, + "included": 2, + "module": 3, + "<Preprocessor/rf_xmacro_argcount.h>": 1, + "argument": 1, + "wrapping": 1, + "functionality": 1, + "<IO/rf_unicode.h>": 1, + "unicode": 2, + "xFF0FFFF": 1, + "rfUTF8_IsContinuationByte2": 1, + "b__": 3, + "0xBF": 1, + "pragma": 1, + "pack": 2, + "push": 1, + "internal": 4, + "author": 1, + "Lefteris": 1, + "09": 1, + "12": 1, + "2010": 1, + "endinternal": 1, + "brief": 1, + "A": 11, + "representation": 2, + "The": 1, + "Refu": 2, + "Unicode": 1, + "has": 2, + "two": 1, + "versions": 1, + "One": 1, + "ref": 1, + "what": 1, + "operations": 1, + "can": 2, + "performed": 1, + "extended": 3, + "Strings": 2, + "Functions": 1, + "convert": 1, + "but": 1, + "always": 2, + "Once": 1, + "been": 1, + "created": 1, + "assumed": 1, + "valid": 1, + "every": 1, + "performs": 1, + "unless": 1, + "otherwise": 1, + "specified": 1, + "All": 1, + "functions": 2, + "which": 1, + "isinherited": 1, + "StringX": 2, + "their": 1, + "description": 1, + "safely": 1, + "specific": 1, + "or": 1, + "needs": 1, + "manipulate": 1, + "Extended": 1, + "To": 1, + "documentation": 1, + "even": 1, + "clearer": 1, + "should": 2, + "marked": 1, + "notinherited": 1, + "cppcode": 1, + "constructor": 1, + "i_StringCHandle": 1, + "@endcpp": 1, + "@endinternal": 1, + "*/": 1, + "#pragma": 1, + "pop": 1, + "i_rfString_CreateLocal": 2, + "__VA_ARGS__": 66, + "RP_SELECT_FUNC_IF_NARGIS": 5, + "i_SELECT_RF_STRING_CREATE": 1, + "i_SELECT_RF_STRING_CREATE1": 1, + "i_SELECT_RF_STRING_CREATE0": 1, + "///Internal": 1, + "creates": 1, + "i_SELECT_RF_STRING_CREATELOCAL": 1, + "i_SELECT_RF_STRING_CREATELOCAL1": 1, + "i_SELECT_RF_STRING_CREATELOCAL0": 1, + "i_SELECT_RF_STRING_INIT": 1, + "i_SELECT_RF_STRING_INIT1": 1, + "i_SELECT_RF_STRING_INIT0": 1, + "code": 6, + "i_SELECT_RF_STRING_CREATE_NC": 1, + "i_SELECT_RF_STRING_CREATE_NC1": 1, + "i_SELECT_RF_STRING_CREATE_NC0": 1, + "i_SELECT_RF_STRING_INIT_NC": 1, + "i_SELECT_RF_STRING_INIT_NC1": 1, + "i_SELECT_RF_STRING_INIT_NC0": 1, + "//@": 1, + "rfString_Assign": 2, + "i_DESTINATION_": 2, + "i_SOURCE_": 2, + "rfString_ToUTF8": 2, + "i_STRING_": 2, + "rfString_ToCstr": 2, + "uint32_t*length": 1, + "string_": 9, + "startCharacterPos_": 4, + "characterUnicodeValue_": 4, + "j_": 6, + "//Two": 1, + "macros": 1, + "accomplish": 1, + "going": 1, + "backwards.": 1, + "This": 1, + "its": 1, + "pair.": 1, + "rfString_IterateB_Start": 1, + "characterPos_": 5, + "b_index_": 6, + "c_index_": 3, + "rfString_IterateB_End": 1, + "i_STRING1_": 2, + "i_STRING2_": 2, + "i_rfLMSX_WRAP2": 4, + "rfString_Find": 3, + "i_THISSTR_": 60, + "i_SEARCHSTR_": 26, + "i_OPTIONS_": 28, + "i_rfLMS_WRAP3": 4, + "i_RFI8_": 54, + "RF_SELECT_FUNC_IF_NARGGT": 10, + "i_NPSELECT_RF_STRING_FIND": 1, + "i_NPSELECT_RF_STRING_FIND1": 1, + "RF_COMPILE_ERROR": 33, + "i_NPSELECT_RF_STRING_FIND0": 1, + "RF_SELECT_FUNC": 10, + "i_SELECT_RF_STRING_FIND": 1, + "i_SELECT_RF_STRING_FIND2": 1, + "i_SELECT_RF_STRING_FIND3": 1, + "i_SELECT_RF_STRING_FIND1": 1, + "i_SELECT_RF_STRING_FIND0": 1, + "rfString_ToInt": 1, + "int32_t*": 1, + "rfString_ToDouble": 1, + "double*": 1, + "rfString_ScanfAfter": 2, + "i_AFTERSTR_": 8, + "i_FORMAT_": 2, + "i_VAR_": 2, + "i_rfLMSX_WRAP4": 11, + "i_NPSELECT_RF_STRING_COUNT": 1, + "i_NPSELECT_RF_STRING_COUNT1": 1, + "i_NPSELECT_RF_STRING_COUNT0": 1, + "i_SELECT_RF_STRING_COUNT": 1, + "i_SELECT_RF_STRING_COUNT2": 1, + "i_rfLMSX_WRAP3": 5, + "i_SELECT_RF_STRING_COUNT3": 1, + "i_SELECT_RF_STRING_COUNT1": 1, + "i_SELECT_RF_STRING_COUNT0": 1, + "rfString_Between": 3, + "i_rfString_Between": 4, + "i_NPSELECT_RF_STRING_BETWEEN": 1, + "i_NPSELECT_RF_STRING_BETWEEN1": 1, + "i_NPSELECT_RF_STRING_BETWEEN0": 1, + "i_SELECT_RF_STRING_BETWEEN": 1, + "i_SELECT_RF_STRING_BETWEEN4": 1, + "i_LEFTSTR_": 6, + "i_RIGHTSTR_": 6, + "i_RESULT_": 12, + "i_rfLMSX_WRAP5": 9, + "i_SELECT_RF_STRING_BETWEEN5": 1, + "i_SELECT_RF_STRING_BETWEEN3": 1, + "i_SELECT_RF_STRING_BETWEEN2": 1, + "i_SELECT_RF_STRING_BETWEEN1": 1, + "i_SELECT_RF_STRING_BETWEEN0": 1, + "i_NPSELECT_RF_STRING_BEFOREV": 1, + "i_NPSELECT_RF_STRING_BEFOREV1": 1, + "RF_SELECT_FUNC_IF_NARGGT2": 2, + "i_LIMSELECT_RF_STRING_BEFOREV": 1, + "i_NPSELECT_RF_STRING_BEFOREV0": 1, + "i_LIMSELECT_RF_STRING_BEFOREV1": 1, + "i_LIMSELECT_RF_STRING_BEFOREV0": 1, + "i_SELECT_RF_STRING_BEFOREV": 1, + "i_SELECT_RF_STRING_BEFOREV5": 1, + "i_ARG1_": 56, + "i_ARG2_": 56, + "i_ARG3_": 56, + "i_ARG4_": 56, + "i_RFUI8_": 28, + "i_SELECT_RF_STRING_BEFOREV6": 1, + "i_rfLMSX_WRAP6": 2, + "i_SELECT_RF_STRING_BEFOREV7": 1, + "i_rfLMSX_WRAP7": 2, + "i_SELECT_RF_STRING_BEFOREV8": 1, + "i_rfLMSX_WRAP8": 2, + "i_SELECT_RF_STRING_BEFOREV9": 1, + "i_rfLMSX_WRAP9": 2, + "i_SELECT_RF_STRING_BEFOREV10": 1, + "i_rfLMSX_WRAP10": 2, + "i_SELECT_RF_STRING_BEFOREV11": 1, + "i_rfLMSX_WRAP11": 2, + "i_SELECT_RF_STRING_BEFOREV12": 1, + "i_rfLMSX_WRAP12": 2, + "i_SELECT_RF_STRING_BEFOREV13": 1, + "i_rfLMSX_WRAP13": 2, + "i_SELECT_RF_STRING_BEFOREV14": 1, + "i_rfLMSX_WRAP14": 2, + "i_SELECT_RF_STRING_BEFOREV15": 1, + "i_rfLMSX_WRAP15": 2, + "i_SELECT_RF_STRING_BEFOREV16": 1, + "i_rfLMSX_WRAP16": 2, + "i_SELECT_RF_STRING_BEFOREV17": 1, + "i_rfLMSX_WRAP17": 2, + "i_SELECT_RF_STRING_BEFOREV18": 1, + "i_rfLMSX_WRAP18": 2, + "rfString_Before": 3, + "i_NPSELECT_RF_STRING_BEFORE": 1, + "i_NPSELECT_RF_STRING_BEFORE1": 1, + "i_NPSELECT_RF_STRING_BEFORE0": 1, + "i_SELECT_RF_STRING_BEFORE": 1, + "i_SELECT_RF_STRING_BEFORE3": 1, + "i_SELECT_RF_STRING_BEFORE4": 1, + "i_SELECT_RF_STRING_BEFORE2": 1, + "i_SELECT_RF_STRING_BEFORE1": 1, + "i_SELECT_RF_STRING_BEFORE0": 1, + "i_NPSELECT_RF_STRING_AFTER": 1, + "i_NPSELECT_RF_STRING_AFTER1": 1, + "i_NPSELECT_RF_STRING_AFTER0": 1, + "i_SELECT_RF_STRING_AFTER": 1, + "i_SELECT_RF_STRING_AFTER3": 1, + "i_OUTSTR_": 6, + "i_SELECT_RF_STRING_AFTER4": 1, + "i_SELECT_RF_STRING_AFTER2": 1, + "i_SELECT_RF_STRING_AFTER1": 1, + "i_SELECT_RF_STRING_AFTER0": 1, + "i_NPSELECT_RF_STRING_AFTERV": 1, + "i_NPSELECT_RF_STRING_AFTERV1": 1, + "i_LIMSELECT_RF_STRING_AFTERV": 1, + "i_NPSELECT_RF_STRING_AFTERV0": 1, + "i_LIMSELECT_RF_STRING_AFTERV1": 1, + "i_LIMSELECT_RF_STRING_AFTERV0": 1, + "i_SELECT_RF_STRING_AFTERV": 1, + "i_SELECT_RF_STRING_AFTERV5": 1, + "i_SELECT_RF_STRING_AFTERV6": 1, + "i_SELECT_RF_STRING_AFTERV7": 1, + "i_SELECT_RF_STRING_AFTERV8": 1, + "i_SELECT_RF_STRING_AFTERV9": 1, + "i_SELECT_RF_STRING_AFTERV10": 1, + "i_SELECT_RF_STRING_AFTERV11": 1, + "i_SELECT_RF_STRING_AFTERV12": 1, + "i_SELECT_RF_STRING_AFTERV13": 1, + "i_SELECT_RF_STRING_AFTERV14": 1, + "i_SELECT_RF_STRING_AFTERV15": 1, + "i_SELECT_RF_STRING_AFTERV16": 1, + "i_SELECT_RF_STRING_AFTERV17": 1, + "i_SELECT_RF_STRING_AFTERV18": 1, + "i_OTHERSTR_": 4, + "rfString_Prepend": 2, + "rfString_Remove": 3, + "i_NPSELECT_RF_STRING_REMOVE": 1, + "i_NPSELECT_RF_STRING_REMOVE1": 1, + "i_NPSELECT_RF_STRING_REMOVE0": 1, + "i_SELECT_RF_STRING_REMOVE": 1, + "i_SELECT_RF_STRING_REMOVE2": 1, + "i_REPSTR_": 16, + "i_RFUI32_": 8, + "i_SELECT_RF_STRING_REMOVE3": 1, + "i_NUMBER_": 12, + "i_SELECT_RF_STRING_REMOVE4": 1, + "i_SELECT_RF_STRING_REMOVE1": 1, + "i_SELECT_RF_STRING_REMOVE0": 1, + "rfString_KeepOnly": 2, + "I_KEEPSTR_": 2, + "rfString_Replace": 3, + "i_NPSELECT_RF_STRING_REPLACE": 1, + "i_NPSELECT_RF_STRING_REPLACE1": 1, + "i_NPSELECT_RF_STRING_REPLACE0": 1, + "i_SELECT_RF_STRING_REPLACE": 1, + "i_SELECT_RF_STRING_REPLACE3": 1, + "i_SELECT_RF_STRING_REPLACE4": 1, + "i_SELECT_RF_STRING_REPLACE5": 1, + "i_SELECT_RF_STRING_REPLACE2": 1, + "i_SELECT_RF_STRING_REPLACE1": 1, + "i_SELECT_RF_STRING_REPLACE0": 1, + "i_SUBSTR_": 6, + "rfString_Strip": 2, + "rfString_Fwrite": 2, + "i_NPSELECT_RF_STRING_FWRITE": 1, + "i_NPSELECT_RF_STRING_FWRITE1": 1, + "i_NPSELECT_RF_STRING_FWRITE0": 1, + "i_SELECT_RF_STRING_FWRITE": 1, + "i_SELECT_RF_STRING_FWRITE3": 1, + "i_STR_": 8, + "i_ENCODING_": 4, + "i_SELECT_RF_STRING_FWRITE2": 1, + "i_SELECT_RF_STRING_FWRITE1": 1, + "i_SELECT_RF_STRING_FWRITE0": 1, + "rfString_Fwrite_fUTF8": 1, + "closing": 1, + "#error": 4, + "Attempted": 1, + "manipulation": 1, + "flag": 1, + "off.": 1, + "Rebuild": 1, + "added": 1, + "you": 1, + "#endif//": 1, + "PY_SSIZE_T_CLEAN": 1, + "Py_PYTHON_H": 1, + "Python": 2, + "headers": 1, + "compile": 1, + "extensions": 1, + "please": 1, + "install": 1, + "development": 1, + "Python.": 1, + "PY_VERSION_HEX": 11, + "Cython": 1, + "requires": 1, + ".": 1, + "offsetof": 2, + "member": 2, + "type*": 1, + "WIN32": 2, + "MS_WINDOWS": 2, + "__stdcall": 2, + "__cdecl": 2, + "__fastcall": 2, + "DL_IMPORT": 2, + "DL_EXPORT": 2, + "PY_LONG_LONG": 5, + "LONG_LONG": 1, + "Py_HUGE_VAL": 2, + "HUGE_VAL": 1, + "PYPY_VERSION": 1, + "CYTHON_COMPILING_IN_PYPY": 3, + "CYTHON_COMPILING_IN_CPYTHON": 6, + "Py_ssize_t": 35, + "PY_SSIZE_T_MAX": 1, + "INT_MAX": 1, + "PY_SSIZE_T_MIN": 1, + "INT_MIN": 1, + "PY_FORMAT_SIZE_T": 1, + "CYTHON_FORMAT_SSIZE_T": 2, + "PyInt_FromSsize_t": 6, + "PyInt_FromLong": 3, + "PyInt_AsSsize_t": 3, + "__Pyx_PyInt_AsInt": 2, + "PyNumber_Index": 1, + "PyNumber_Check": 2, + "PyFloat_Check": 2, + "PyNumber_Int": 1, + "PyErr_Format": 4, + "PyExc_TypeError": 4, + "Py_TYPE": 7, + "tp_name": 4, + "PyObject*": 24, + "__Pyx_PyIndex_Check": 3, + "PyComplex_Check": 1, + "PyIndex_Check": 2, + "PyErr_WarnEx": 1, + "category": 2, + "stacklevel": 1, + "PyErr_Warn": 1, + "__PYX_BUILD_PY_SSIZE_T": 2, + "Py_REFCNT": 1, + "ob_refcnt": 1, + "ob_type": 7, + "Py_SIZE": 1, + "PyVarObject*": 1, + "ob_size": 1, + "PyVarObject_HEAD_INIT": 1, + "PyObject_HEAD_INIT": 1, + "PyType_Modified": 1, + "PyObject": 276, + "itemsize": 1, + "readonly": 1, + "ndim": 2, + "*shape": 1, + "*strides": 1, + "*suboffsets": 1, + "*internal": 1, + "Py_buffer": 6, + "PyBUF_SIMPLE": 1, + "PyBUF_WRITABLE": 3, + "PyBUF_FORMAT": 3, + "PyBUF_ND": 2, + "PyBUF_STRIDES": 6, + "PyBUF_C_CONTIGUOUS": 1, + "PyBUF_F_CONTIGUOUS": 1, + "PyBUF_ANY_CONTIGUOUS": 1, + "PyBUF_INDIRECT": 2, + "PyBUF_RECORDS": 1, + "PyBUF_FULL": 1, + "PY_MAJOR_VERSION": 13, + "__Pyx_BUILTIN_MODULE_NAME": 2, + "__Pyx_PyCode_New": 2, + "l": 7, + "fv": 4, + "cell": 4, + "fline": 4, + "lnos": 4, + "PyCode_New": 2, + "PY_MINOR_VERSION": 1, + "PyUnicode_FromString": 2, + "PyUnicode_Decode": 1, + "Py_TPFLAGS_CHECKTYPES": 1, + "Py_TPFLAGS_HAVE_INDEX": 1, + "Py_TPFLAGS_HAVE_NEWBUFFER": 1, + "PyUnicode_KIND": 1, + "CYTHON_PEP393_ENABLED": 2, + "__Pyx_PyUnicode_READY": 2, + "op": 8, + "PyUnicode_IS_READY": 1, + "_PyUnicode_Ready": 1, + "__Pyx_PyUnicode_GET_LENGTH": 2, + "PyUnicode_GET_LENGTH": 1, + "__Pyx_PyUnicode_READ_CHAR": 2, + "PyUnicode_READ_CHAR": 1, + "__Pyx_PyUnicode_READ": 2, + "PyUnicode_READ": 1, + "PyUnicode_GET_SIZE": 1, + "Py_UCS4": 2, + "PyUnicode_AS_UNICODE": 1, + "Py_UNICODE*": 1, + "PyBaseString_Type": 1, + "PyUnicode_Type": 2, + "PyStringObject": 2, + "PyUnicodeObject": 1, + "PyString_Type": 2, + "PyString_Check": 2, + "PyUnicode_Check": 1, + "PyString_CheckExact": 2, + "PyUnicode_CheckExact": 1, + "PyBytesObject": 1, + "PyBytes_Type": 1, + "PyBytes_Check": 1, + "PyBytes_CheckExact": 1, + "PyBytes_FromString": 2, + "PyString_FromString": 2, + "PyBytes_FromStringAndSize": 1, + "PyString_FromStringAndSize": 1, + "PyBytes_FromFormat": 1, + "PyString_FromFormat": 1, + "PyBytes_DecodeEscape": 1, + "PyString_DecodeEscape": 1, + "PyBytes_AsString": 2, + "PyString_AsString": 1, + "PyBytes_AsStringAndSize": 1, + "PyString_AsStringAndSize": 1, + "PyBytes_Size": 1, + "PyString_Size": 1, + "PyBytes_AS_STRING": 1, + "PyString_AS_STRING": 1, + "PyBytes_GET_SIZE": 1, + "PyString_GET_SIZE": 1, + "PyBytes_Repr": 1, + "PyString_Repr": 1, + "PyBytes_Concat": 1, + "PyString_Concat": 1, + "PyBytes_ConcatAndDel": 1, + "PyString_ConcatAndDel": 1, + "PySet_Check": 1, + "PyObject_TypeCheck": 3, + "PySet_Type": 2, + "PyFrozenSet_Check": 1, + "PyFrozenSet_Type": 1, + "PySet_CheckExact": 2, + "__Pyx_TypeCheck": 1, + "PyTypeObject": 25, + "PyIntObject": 1, + "PyLongObject": 2, + "PyInt_Type": 1, + "PyLong_Type": 1, + "PyInt_Check": 1, + "PyLong_Check": 1, + "PyInt_CheckExact": 1, + "PyLong_CheckExact": 1, + "PyInt_FromString": 1, + "PyLong_FromString": 1, + "PyInt_FromUnicode": 1, + "PyLong_FromUnicode": 1, + "PyLong_FromLong": 1, + "PyInt_FromSize_t": 1, + "PyLong_FromSize_t": 1, + "PyLong_FromSsize_t": 1, + "PyInt_AsLong": 2, + "PyLong_AsLong": 1, + "PyInt_AS_LONG": 1, + "PyLong_AS_LONG": 1, + "PyLong_AsSsize_t": 1, + "PyInt_AsUnsignedLongMask": 1, + "PyLong_AsUnsignedLongMask": 1, + "PyInt_AsUnsignedLongLongMask": 1, + "PyLong_AsUnsignedLongLongMask": 1, + "PyBoolObject": 1, + "Py_hash_t": 1, + "__Pyx_PyInt_FromHash_t": 2, + "__Pyx_PyInt_AsHash_t": 2, + "__Pyx_PySequence_GetSlice": 2, + "PySequence_GetSlice": 2, + "__Pyx_PySequence_SetSlice": 2, + "PySequence_SetSlice": 2, + "__Pyx_PySequence_DelSlice": 2, + "PySequence_DelSlice": 2, + "PyErr_SetString": 3, + "PyExc_SystemError": 3, + "tp_as_mapping": 3, + "PyMethod_New": 2, + "func": 3, + "klass": 1, + "PyInstanceMethod_New": 1, + "__Pyx_GetAttrString": 2, + "PyObject_GetAttrString": 2, + "__Pyx_SetAttrString": 2, + "PyObject_SetAttrString": 2, + "__Pyx_DelAttrString": 2, + "PyObject_DelAttrString": 2, + "__Pyx_NAMESTR": 2, + "__Pyx_DOCSTR": 2, + "__Pyx_PyNumber_Divide": 2, + "y": 14, + "PyNumber_TrueDivide": 1, + "__Pyx_PyNumber_InPlaceDivide": 2, + "PyNumber_InPlaceTrueDivide": 1, + "PyNumber_Divide": 1, + "PyNumber_InPlaceDivide": 1, + "__PYX_EXTERN_C": 3, + "_USE_MATH_DEFINES": 1, + "__PYX_HAVE__sklearn__linear_model__sgd_fast": 1, + "__PYX_HAVE_API__sklearn__linear_model__sgd_fast": 1, + "_OPENMP": 1, + "<omp.h>": 1, + "PYREX_WITHOUT_ASSERTIONS": 1, + "CYTHON_WITHOUT_ASSERTIONS": 1, + "CYTHON_INLINE": 65, + "__inline__": 1, + "__inline": 1, + "__STDC_VERSION__": 2, + "L": 1, + "CYTHON_UNUSED": 14, + "**p": 1, + "is_unicode": 1, + "is_str": 1, + "intern": 1, + "__Pyx_StringTabEntry": 2, + "__Pyx_PyBytes_FromUString": 1, + "__Pyx_PyBytes_AsUString": 1, + "__Pyx_Owned_Py_None": 1, + "Py_INCREF": 10, + "Py_None": 8, + "__Pyx_PyBool_FromLong": 1, + "Py_True": 2, + "Py_False": 2, + "__Pyx_PyObject_IsTrue": 1, + "__Pyx_PyNumber_Int": 1, + "__Pyx_PyIndex_AsSsize_t": 1, + "__Pyx_PyInt_FromSize_t": 1, + "__Pyx_PyInt_AsSize_t": 1, + "__pyx_PyFloat_AsDouble": 12, + "PyFloat_CheckExact": 1, + "PyFloat_AS_DOUBLE": 1, + "PyFloat_AsDouble": 2, + "__pyx_PyFloat_AsFloat": 1, + "__builtin_expect": 2, + "*__pyx_m": 1, + "*__pyx_b": 1, + "*__pyx_empty_tuple": 1, + "*__pyx_empty_bytes": 1, + "__pyx_lineno": 58, + "__pyx_clineno": 58, + "__pyx_cfilenm": 1, + "__FILE__": 4, + "*__pyx_filename": 7, + "CYTHON_CCOMPLEX": 12, + "_Complex_I": 3, + "<complex>": 1, + "<complex.h>": 1, + "__sun__": 1, + "fj": 1, + "*__pyx_f": 1, + "IS_UNSIGNED": 1, + "__Pyx_StructField_": 2, + "__PYX_BUF_FLAGS_PACKED_STRUCT": 1, + "__Pyx_StructField_*": 1, + "fields": 1, + "arraysize": 1, + "typegroup": 1, + "is_unsigned": 1, + "__Pyx_TypeInfo": 2, + "__Pyx_TypeInfo*": 2, + "offset": 1, + "__Pyx_StructField": 2, + "__Pyx_StructField*": 1, + "field": 1, + "parent_offset": 1, + "__Pyx_BufFmt_StackElem": 1, + "root": 1, + "__Pyx_BufFmt_StackElem*": 2, + "fmt_offset": 1, + "new_count": 1, + "enc_count": 1, + "struct_alignment": 1, + "is_complex": 1, + "enc_type": 1, + "new_packmode": 1, + "enc_packmode": 1, + "is_valid_array": 1, + "__Pyx_BufFmt_Context": 1, + "npy_int8": 1, + "__pyx_t_5numpy_int8_t": 1, + "npy_int16": 1, + "__pyx_t_5numpy_int16_t": 1, + "npy_int32": 1, + "__pyx_t_5numpy_int32_t": 4, + "npy_int64": 1, + "__pyx_t_5numpy_int64_t": 1, + "npy_uint8": 1, + "__pyx_t_5numpy_uint8_t": 1, + "npy_uint16": 1, + "__pyx_t_5numpy_uint16_t": 1, + "npy_uint32": 1, + "__pyx_t_5numpy_uint32_t": 1, + "npy_uint64": 1, + "__pyx_t_5numpy_uint64_t": 1, + "npy_float32": 1, + "__pyx_t_5numpy_float32_t": 1, + "npy_float64": 1, + "__pyx_t_5numpy_float64_t": 4, + "npy_long": 1, + "__pyx_t_5numpy_int_t": 1, + "npy_longlong": 2, + "__pyx_t_5numpy_long_t": 1, + "__pyx_t_5numpy_longlong_t": 1, + "npy_ulong": 1, + "__pyx_t_5numpy_uint_t": 1, + "npy_ulonglong": 2, + "__pyx_t_5numpy_ulong_t": 1, + "__pyx_t_5numpy_ulonglong_t": 1, + "npy_intp": 1, + "__pyx_t_5numpy_intp_t": 1, + "npy_uintp": 1, + "__pyx_t_5numpy_uintp_t": 1, + "npy_double": 2, + "__pyx_t_5numpy_float_t": 1, + "__pyx_t_5numpy_double_t": 1, + "npy_longdouble": 1, + "__pyx_t_5numpy_longdouble_t": 1, + "__pyx_t_7sklearn_5utils_13weight_vector_DOUBLE": 2, + "__pyx_t_7sklearn_5utils_13weight_vector_INTEGER": 1, + "__pyx_t_7sklearn_5utils_11seq_dataset_DOUBLE": 7, + "__pyx_t_7sklearn_5utils_11seq_dataset_INTEGER": 7, + "__pyx_t_7sklearn_12linear_model_8sgd_fast_DOUBLE": 4, + "__pyx_t_7sklearn_12linear_model_8sgd_fast_INTEGER": 3, + "std": 8, + "complex": 2, + "__pyx_t_float_complex": 27, + "_Complex": 2, + "real": 2, + "imag": 2, + "__pyx_t_double_complex": 27, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_LossFunction": 15, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Regression": 11, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Huber": 6, + "__pyx_obj_7sklearn_5utils_11seq_dataset_SequentialDataset": 5, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_EpsilonInsensitive": 6, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Classification": 7, + "__pyx_obj_7sklearn_5utils_11seq_dataset_CSRDataset": 2, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Log": 5, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Hinge": 6, + "__pyx_obj_7sklearn_5utils_11seq_dataset_ArrayDataset": 2, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_SquaredHinge": 6, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_ModifiedHuber": 5, + "__pyx_obj_7sklearn_5utils_13weight_vector_WeightVector": 3, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_SquaredLoss": 5, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_SquaredEpsilonInsensitive": 6, + "npy_cfloat": 1, + "__pyx_t_5numpy_cfloat_t": 1, + "npy_cdouble": 2, + "__pyx_t_5numpy_cdouble_t": 1, + "npy_clongdouble": 1, + "__pyx_t_5numpy_clongdouble_t": 1, + "__pyx_t_5numpy_complex_t": 1, + "PyObject_HEAD": 3, + "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_LossFunction": 5, + "*__pyx_vtab": 3, + "__pyx_base": 18, + "__pyx_vtabstruct_7sklearn_5utils_11seq_dataset_SequentialDataset": 4, + "n_samples": 1, + "epsilon": 2, + "current_index": 2, + "stride": 2, + "*X_data_ptr": 2, + "*X_indptr_ptr": 1, + "*X_indices_ptr": 1, + "*Y_data_ptr": 2, + "PyArrayObject": 8, + "*feature_indices": 2, + "*feature_indices_ptr": 2, + "*index": 2, + "*index_data_ptr": 2, + "*sample_weight_data": 2, + "threshold": 2, + "n_features": 2, + "__pyx_vtabstruct_7sklearn_5utils_13weight_vector_WeightVector": 3, + "*w_data_ptr": 1, + "wscale": 1, + "sq_norm": 1, + "*__pyx_vtabptr_7sklearn_5utils_11seq_dataset_SequentialDataset": 1, + "__pyx_vtabstruct_7sklearn_5utils_11seq_dataset_ArrayDataset": 2, + "*__pyx_vtabptr_7sklearn_5utils_11seq_dataset_ArrayDataset": 1, + "__pyx_vtabstruct_7sklearn_5utils_11seq_dataset_CSRDataset": 2, + "*__pyx_vtabptr_7sklearn_5utils_11seq_dataset_CSRDataset": 1, + "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_EpsilonInsensitive": 2, + "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_Regression": 3, + "*__pyx_vtabptr_7sklearn_12linear_model_8sgd_fast_EpsilonInsensitive": 1, + "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_SquaredHinge": 2, + "*__pyx_vtabptr_7sklearn_12linear_model_8sgd_fast_SquaredHinge": 1, + "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_Huber": 2, + "*__pyx_vtabptr_7sklearn_12linear_model_8sgd_fast_Huber": 1, + "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_Hinge": 2, + "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_Classification": 1, + "*__pyx_vtabptr_7sklearn_12linear_model_8sgd_fast_Hinge": 1, + "*__pyx_vtabptr_7sklearn_5utils_13weight_vector_WeightVector": 1, + "CYTHON_REFNANNY": 3, + "__Pyx_RefNannyAPIStruct": 3, + "*__Pyx_RefNanny": 1, + "*__Pyx_RefNannyImportAPI": 1, + "*modname": 1, + "__Pyx_RefNannyDeclarations": 11, + "*__pyx_refnanny": 1, + "WITH_THREAD": 1, + "__Pyx_RefNannySetupContext": 12, + "acquire_gil": 4, + "PyGILState_STATE": 1, + "__pyx_gilstate_save": 2, + "PyGILState_Ensure": 1, + "__pyx_refnanny": 8, + "__Pyx_RefNanny": 8, + "SetupContext": 3, + "PyGILState_Release": 1, + "__Pyx_RefNannyFinishContext": 14, + "FinishContext": 1, + "__Pyx_INCREF": 6, + "INCREF": 1, + "__Pyx_DECREF": 20, + "DECREF": 1, + "__Pyx_GOTREF": 24, + "GOTREF": 1, + "__Pyx_GIVEREF": 9, + "GIVEREF": 1, + "__Pyx_XINCREF": 2, + "__Pyx_XDECREF": 20, + "__Pyx_XGOTREF": 2, + "__Pyx_XGIVEREF": 5, + "Py_DECREF": 2, + "Py_XINCREF": 1, + "Py_XDECREF": 1, + "__Pyx_CLEAR": 1, + "__Pyx_XCLEAR": 1, + "*__Pyx_GetName": 1, + "__Pyx_ErrRestore": 1, + "*type": 4, + "*tb": 2, + "__Pyx_ErrFetch": 1, + "**type": 1, + "**value": 1, + "**tb": 1, + "__Pyx_Raise": 4, + "*cause": 1, + "__Pyx_RaiseArgtupleInvalid": 7, + "func_name": 2, + "num_min": 1, + "num_max": 1, + "num_found": 1, + "__Pyx_RaiseDoubleKeywordsError": 1, + "kw_name": 1, + "__Pyx_ParseOptionalKeywords": 4, + "*kwds": 1, + "**argnames": 1, + "*kwds2": 1, + "*values": 1, + "num_pos_args": 1, + "function_name": 1, + "__Pyx_ArgTypeTest": 1, + "none_allowed": 1, + "__Pyx_GetBufferAndValidate": 1, + "Py_buffer*": 2, + "dtype": 1, + "nd": 1, + "cast": 1, + "__Pyx_SafeReleaseBuffer": 1, + "__Pyx_TypeTest": 1, + "__Pyx_RaiseBufferFallbackError": 1, + "*__Pyx_GetItemInt_Generic": 1, + "*r": 7, + "PyObject_GetItem": 1, + "__Pyx_GetItemInt_List": 1, + "to_py_func": 6, + "__Pyx_GetItemInt_List_Fast": 1, + "__Pyx_GetItemInt_Generic": 6, + "*__Pyx_GetItemInt_List_Fast": 1, + "PyList_GET_SIZE": 5, + "PyList_GET_ITEM": 3, + "PySequence_GetItem": 3, + "__Pyx_GetItemInt_Tuple": 1, + "__Pyx_GetItemInt_Tuple_Fast": 1, + "*__Pyx_GetItemInt_Tuple_Fast": 1, + "PyTuple_GET_SIZE": 14, + "PyTuple_GET_ITEM": 15, + "__Pyx_GetItemInt": 1, + "__Pyx_GetItemInt_Fast": 2, + "PyList_CheckExact": 1, + "PyTuple_CheckExact": 1, + "PySequenceMethods": 1, + "*m": 1, + "tp_as_sequence": 1, + "sq_item": 2, + "sq_length": 2, + "PySequence_Check": 1, + "__Pyx_RaiseTooManyValuesError": 1, + "expected": 2, + "__Pyx_RaiseNeedMoreValuesError": 1, + "__Pyx_RaiseNoneNotIterableError": 1, + "__Pyx_IterFinish": 1, + "__Pyx_IternextUnpackEndCheck": 1, + "*retval": 1, + "shape": 1, + "strides": 1, + "suboffsets": 1, + "__Pyx_Buf_DimInfo": 2, + "pybuffer": 1, + "__Pyx_Buffer": 2, + "*rcbuffer": 1, + "diminfo": 1, + "__Pyx_LocalBuf_ND": 1, + "__Pyx_GetBuffer": 2, + "*view": 2, + "__Pyx_ReleaseBuffer": 2, + "PyObject_GetBuffer": 1, + "PyBuffer_Release": 1, + "__Pyx_zeros": 1, + "__Pyx_minusones": 1, + "*__Pyx_Import": 1, + "*from_list": 1, + "__Pyx_RaiseImportError": 1, + "__Pyx_Print": 1, + "__pyx_print": 1, + "__pyx_print_kwargs": 1, + "__Pyx_PrintOne": 1, + "__Pyx_CREAL": 4, + ".real": 3, + "__Pyx_CIMAG": 4, + ".imag": 3, + "__real__": 1, + "__imag__": 1, + "__Pyx_SET_CREAL": 2, + "__Pyx_SET_CIMAG": 2, + "__pyx_t_float_complex_from_parts": 1, + "__Pyx_c_eqf": 2, + "__Pyx_c_sumf": 2, + "__Pyx_c_difff": 2, + "__Pyx_c_prodf": 2, + "__Pyx_c_quotf": 2, + "__Pyx_c_negf": 2, + "__Pyx_c_is_zerof": 3, + "__Pyx_c_conjf": 3, + "conj": 3, + "__Pyx_c_absf": 3, + "abs": 2, + "__Pyx_c_powf": 3, + "pow": 2, + "conjf": 1, + "cabsf": 1, + "cpowf": 1, + "__pyx_t_double_complex_from_parts": 1, + "__Pyx_c_eq": 2, + "__Pyx_c_sum": 2, + "__Pyx_c_diff": 2, + "__Pyx_c_prod": 2, + "__Pyx_c_quot": 2, + "__Pyx_c_neg": 2, + "__Pyx_c_is_zero": 3, + "__Pyx_c_conj": 3, + "__Pyx_c_abs": 3, + "__Pyx_c_pow": 3, + "cabs": 1, + "cpow": 1, + "__Pyx_PyInt_AsUnsignedChar": 1, + "__Pyx_PyInt_AsUnsignedShort": 1, + "__Pyx_PyInt_AsUnsignedInt": 1, + "__Pyx_PyInt_AsChar": 1, + "__Pyx_PyInt_AsShort": 1, + "signed": 5, + "__Pyx_PyInt_AsSignedChar": 1, + "__Pyx_PyInt_AsSignedShort": 1, + "__Pyx_PyInt_AsSignedInt": 1, + "__Pyx_PyInt_AsLongDouble": 1, + "__Pyx_PyInt_AsUnsignedLong": 1, + "__Pyx_PyInt_AsUnsignedLongLong": 1, + "__Pyx_PyInt_AsLong": 1, + "__Pyx_PyInt_AsLongLong": 1, + "__Pyx_PyInt_AsSignedLong": 1, + "__Pyx_PyInt_AsSignedLongLong": 1, + "__Pyx_WriteUnraisable": 4, + "clineno": 1, + "lineno": 1, + "*filename": 2, + "__Pyx_check_binary_version": 1, + "__Pyx_SetVtable": 1, + "*vtable": 1, + "__Pyx_PyIdentifier_FromString": 3, + "*__Pyx_ImportModule": 1, + "*__Pyx_ImportType": 1, + "*module_name": 1, + "*class_name": 1, + "__Pyx_GetVtable": 1, + "code_line": 4, + "PyCodeObject*": 2, + "code_object": 2, + "__Pyx_CodeObjectCacheEntry": 1, + "__Pyx_CodeObjectCache": 2, + "max_count": 1, + "__Pyx_CodeObjectCacheEntry*": 2, + "entries": 2, + "__pyx_code_cache": 1, + "__pyx_bisect_code_objects": 1, + "PyCodeObject": 1, + "*__pyx_find_code_object": 1, + "__pyx_insert_code_object": 1, + "__Pyx_AddTraceback": 7, + "*funcname": 1, + "c_line": 1, + "py_line": 1, + "__Pyx_InitStrings": 1, + "*__pyx_ptype_7cpython_4type_type": 1, + "*__pyx_ptype_5numpy_dtype": 1, + "*__pyx_ptype_5numpy_flatiter": 1, + "*__pyx_ptype_5numpy_broadcast": 1, + "*__pyx_ptype_5numpy_ndarray": 1, + "*__pyx_ptype_5numpy_ufunc": 1, + "*__pyx_f_5numpy__util_dtypestring": 1, + "PyArray_Descr": 1, + "*__pyx_ptype_7sklearn_5utils_13weight_vector_WeightVector": 1, + "*__pyx_ptype_7sklearn_5utils_11seq_dataset_SequentialDataset": 1, + "*__pyx_ptype_7sklearn_5utils_11seq_dataset_ArrayDataset": 1, + "*__pyx_ptype_7sklearn_5utils_11seq_dataset_CSRDataset": 1, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_LossFunction": 1, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Regression": 1, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Classification": 1, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_ModifiedHuber": 1, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Hinge": 1, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_SquaredHinge": 1, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Log": 1, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_SquaredLoss": 1, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Huber": 1, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_EpsilonInsensitive": 1, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_SquaredEpsilonInsensitive": 1, + "__pyx_f_7sklearn_12linear_model_8sgd_fast_max": 1, + "__pyx_f_7sklearn_12linear_model_8sgd_fast_min": 1, + "__pyx_f_7sklearn_12linear_model_8sgd_fast_sqnorm": 1, + "__pyx_f_7sklearn_12linear_model_8sgd_fast_l1penalty": 1, + "__Pyx_TypeInfo_nn___pyx_t_7sklearn_12linear_model_8sgd_fast_DOUBLE": 1, + "__Pyx_MODULE_NAME": 1, + "__pyx_module_is_main_sklearn__linear_model__sgd_fast": 1, + "*__pyx_builtin_NotImplementedError": 1, + "*__pyx_builtin_range": 1, + "*__pyx_builtin_ValueError": 1, + "*__pyx_builtin_RuntimeError": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12LossFunction_loss": 2, + "*__pyx_v_self": 52, + "__pyx_v_p": 46, + "__pyx_v_y": 46, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12LossFunction_2dloss": 2, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_10Regression_loss": 2, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_10Regression_2dloss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_14Classification_loss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_14Classification_2dloss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_13ModifiedHuber_loss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_13ModifiedHuber_2dloss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_13ModifiedHuber_4__reduce__": 1, + "__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Hinge___init__": 1, + "__pyx_v_threshold": 2, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Hinge_2loss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Hinge_4dloss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Hinge_6__reduce__": 1, + "__pyx_pf_7sklearn_12linear_model_8sgd_fast_12SquaredHinge___init__": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12SquaredHinge_2loss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12SquaredHinge_4dloss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12SquaredHinge_6__reduce__": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_3Log_loss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_3Log_2dloss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_3Log_4__reduce__": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_11SquaredLoss_loss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_11SquaredLoss_2dloss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_11SquaredLoss_4__reduce__": 1, + "__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Huber___init__": 1, + "__pyx_v_c": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Huber_2loss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Huber_4dloss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Huber_6__reduce__": 1, + "__pyx_pf_7sklearn_12linear_model_8sgd_fast_18EpsilonInsensitive___init__": 1, + "__pyx_v_epsilon": 2, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_18EpsilonInsensitive_2loss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_18EpsilonInsensitive_4dloss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_18EpsilonInsensitive_6__reduce__": 1, + "__pyx_pf_7sklearn_12linear_model_8sgd_fast_25SquaredEpsilonInsensitive___init__": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_25SquaredEpsilonInsensitive_2loss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_25SquaredEpsilonInsensitive_4dloss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_25SquaredEpsilonInsensitive_6__reduce__": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_plain_sgd": 1, + "*__pyx_self": 1, + "*__pyx_v_weights": 1, + "__pyx_v_intercept": 1, + "*__pyx_v_loss": 1, + "__pyx_v_penalty_type": 1, + "__pyx_v_alpha": 1, + "__pyx_v_C": 1, + "__pyx_v_rho": 1, + "*__pyx_v_dataset": 1, + "__pyx_v_n_iter": 1, + "__pyx_v_fit_intercept": 1, + "__pyx_v_verbose": 1, + "__pyx_v_shuffle": 1, + "*__pyx_v_seed": 1, + "__pyx_v_weight_pos": 1, + "__pyx_v_weight_neg": 1, + "__pyx_v_learning_rate": 1, + "__pyx_v_eta0": 1, + "__pyx_v_power_t": 1, + "__pyx_v_t": 1, + "__pyx_v_intercept_decay": 1, + "__pyx_pf_5numpy_7ndarray___getbuffer__": 1, + "*__pyx_v_info": 2, + "__pyx_v_flags": 1, + "__pyx_pf_5numpy_7ndarray_2__releasebuffer__": 1, + "__pyx_k_1": 1, + "__pyx_k_2": 1, + "__pyx_k_3": 1, + "__pyx_k_4": 1, + "__pyx_k_6": 1, + "__pyx_k_8": 1, + "__pyx_k_10": 1, + "__pyx_k_12": 1, + "__pyx_k_13": 1, + "__pyx_k_16": 1, + "__pyx_k_20": 1, + "__pyx_k_21": 1, + "__pyx_k__B": 1, + "__pyx_k__C": 1, + "__pyx_k__H": 1, + "__pyx_k__I": 1, + "__pyx_k__L": 1, + "__pyx_k__O": 1, + "__pyx_k__Q": 1, + "__pyx_k__b": 1, + "__pyx_k__c": 1, + "__pyx_k__d": 1, + "__pyx_k__f": 1, + "__pyx_k__g": 1, + "__pyx_k__h": 1, + "__pyx_k__i": 1, + "__pyx_k__l": 1, + "__pyx_k__p": 1, + "__pyx_k__q": 1, + "__pyx_k__t": 1, + "__pyx_k__u": 1, + "__pyx_k__w": 1, + "__pyx_k__y": 1, + "__pyx_k__Zd": 1, + "__pyx_k__Zf": 1, + "__pyx_k__Zg": 1, + "__pyx_k__np": 1, + "__pyx_k__any": 1, + "__pyx_k__eta": 1, + "__pyx_k__rho": 1, + "__pyx_k__sys": 1, + "__pyx_k__eta0": 1, + "__pyx_k__loss": 1, + "__pyx_k__seed": 1, + "__pyx_k__time": 1, + "__pyx_k__xnnz": 1, + "__pyx_k__alpha": 1, + "__pyx_k__count": 1, + "__pyx_k__dloss": 1, + "__pyx_k__dtype": 1, + "__pyx_k__epoch": 1, + "__pyx_k__isinf": 1, + "__pyx_k__isnan": 1, + "__pyx_k__numpy": 1, + "__pyx_k__order": 1, + "__pyx_k__range": 1, + "__pyx_k__shape": 1, + "__pyx_k__zeros": 1, + "__pyx_k__n_iter": 1, + "__pyx_k__update": 1, + "__pyx_k__dataset": 1, + "__pyx_k__epsilon": 1, + "__pyx_k__float64": 1, + "__pyx_k__nonzero": 1, + "__pyx_k__power_t": 1, + "__pyx_k__shuffle": 1, + "__pyx_k__sumloss": 1, + "__pyx_k__t_start": 1, + "__pyx_k__verbose": 1, + "__pyx_k__weights": 1, + "__pyx_k____main__": 1, + "__pyx_k____test__": 1, + "__pyx_k__is_hinge": 1, + "__pyx_k__intercept": 1, + "__pyx_k__n_samples": 1, + "__pyx_k__plain_sgd": 1, + "__pyx_k__threshold": 1, + "__pyx_k__x_ind_ptr": 1, + "__pyx_k__ValueError": 1, + "__pyx_k__n_features": 1, + "__pyx_k__q_data_ptr": 1, + "__pyx_k__weight_neg": 1, + "__pyx_k__weight_pos": 1, + "__pyx_k__x_data_ptr": 1, + "__pyx_k__RuntimeError": 1, + "__pyx_k__class_weight": 1, + "__pyx_k__penalty_type": 1, + "__pyx_k__fit_intercept": 1, + "__pyx_k__learning_rate": 1, + "__pyx_k__sample_weight": 1, + "__pyx_k__intercept_decay": 1, + "__pyx_k__NotImplementedError": 1, + "*__pyx_kp_s_1": 1, + "*__pyx_kp_u_10": 1, + "*__pyx_kp_u_12": 1, + "*__pyx_kp_u_13": 1, + "*__pyx_kp_u_16": 1, + "*__pyx_kp_s_2": 1, + "*__pyx_kp_s_20": 1, + "*__pyx_n_s_21": 1, + "*__pyx_kp_s_3": 1, + "*__pyx_kp_s_4": 1, + "*__pyx_kp_u_6": 1, + "*__pyx_kp_u_8": 1, + "*__pyx_n_s__C": 1, + "*__pyx_n_s__NotImplementedError": 1, + "*__pyx_n_s__RuntimeError": 1, + "*__pyx_n_s__ValueError": 1, + "*__pyx_n_s____main__": 1, + "*__pyx_n_s____test__": 1, + "*__pyx_n_s__alpha": 1, + "*__pyx_n_s__any": 1, + "*__pyx_n_s__c": 1, + "*__pyx_n_s__class_weight": 1, + "*__pyx_n_s__count": 1, + "*__pyx_n_s__dataset": 1, + "*__pyx_n_s__dloss": 1, + "*__pyx_n_s__dtype": 1, + "*__pyx_n_s__epoch": 1, + "*__pyx_n_s__epsilon": 1, + "*__pyx_n_s__eta": 1, + "*__pyx_n_s__eta0": 1, + "*__pyx_n_s__fit_intercept": 1, + "*__pyx_n_s__float64": 1, + "*__pyx_n_s__i": 1, + "*__pyx_n_s__intercept": 1, + "*__pyx_n_s__intercept_decay": 1, + "*__pyx_n_s__is_hinge": 1, + "*__pyx_n_s__isinf": 1, + "*__pyx_n_s__isnan": 1, + "*__pyx_n_s__learning_rate": 1, + "*__pyx_n_s__loss": 1, + "*__pyx_n_s__n_features": 1, + "*__pyx_n_s__n_iter": 1, + "*__pyx_n_s__n_samples": 1, + "*__pyx_n_s__nonzero": 1, + "*__pyx_n_s__np": 1, + "*__pyx_n_s__numpy": 1, + "*__pyx_n_s__order": 1, + "*__pyx_n_s__p": 1, + "*__pyx_n_s__penalty_type": 1, + "*__pyx_n_s__plain_sgd": 1, + "*__pyx_n_s__power_t": 1, + "*__pyx_n_s__q": 1, + "*__pyx_n_s__q_data_ptr": 1, + "*__pyx_n_s__range": 1, + "*__pyx_n_s__rho": 1, + "*__pyx_n_s__sample_weight": 1, + "*__pyx_n_s__seed": 1, + "*__pyx_n_s__shape": 1, + "*__pyx_n_s__shuffle": 1, + "*__pyx_n_s__sumloss": 1, + "*__pyx_n_s__sys": 1, + "*__pyx_n_s__t": 1, + "*__pyx_n_s__t_start": 1, + "*__pyx_n_s__threshold": 1, + "*__pyx_n_s__time": 1, + "*__pyx_n_s__u": 1, + "*__pyx_n_s__update": 1, + "*__pyx_n_s__verbose": 1, + "*__pyx_n_s__w": 1, + "*__pyx_n_s__weight_neg": 1, + "*__pyx_n_s__weight_pos": 1, + "*__pyx_n_s__weights": 1, + "*__pyx_n_s__x_data_ptr": 1, + "*__pyx_n_s__x_ind_ptr": 1, + "*__pyx_n_s__xnnz": 1, + "*__pyx_n_s__y": 1, + "*__pyx_n_s__zeros": 1, + "*__pyx_int_15": 1, + "*__pyx_k_tuple_5": 1, + "*__pyx_k_tuple_7": 1, + "*__pyx_k_tuple_9": 1, + "*__pyx_k_tuple_11": 1, + "*__pyx_k_tuple_14": 1, + "*__pyx_k_tuple_15": 1, + "*__pyx_k_tuple_17": 1, + "*__pyx_k_tuple_18": 1, + "*__pyx_k_codeobj_19": 1, + "*__pyx_pw_7sklearn_12linear_model_8sgd_fast_12LossFunction_1loss": 3, + "*__pyx_args": 9, + "*__pyx_kwds": 9, + "__pyx_f_7sklearn_12linear_model_8sgd_fast_12LossFunction_loss": 1, + "__pyx_skip_dispatch": 6, + "__pyx_r": 39, + "*__pyx_t_1": 6, + "*__pyx_t_2": 3, + "*__pyx_t_3": 3, + "*__pyx_t_4": 3, + "__pyx_t_5": 12, + "__pyx_v_self": 15, + "tp_dictoffset": 3, + "__pyx_t_1": 69, + "PyObject_GetAttr": 3, + "__pyx_n_s__loss": 2, + "__pyx_filename": 51, + "__pyx_f": 42, + "__pyx_L1_error": 33, + "PyCFunction_Check": 3, + "PyCFunction_GET_FUNCTION": 3, + "PyCFunction": 3, + "__pyx_pw_7sklearn_12linear_model_8sgd_fast_12LossFunction_1loss": 1, + "__pyx_t_2": 21, + "PyFloat_FromDouble": 9, + "__pyx_t_3": 39, + "__pyx_t_4": 27, + "PyTuple_New": 3, + "PyTuple_SET_ITEM": 6, + "PyObject_Call": 6, + "PyErr_Occurred": 9, + "__pyx_L0": 18, + "__pyx_builtin_NotImplementedError": 3, + "__pyx_empty_tuple": 3, + "__pyx_doc_7sklearn_12linear_model_8sgd_fast_12LossFunction_loss": 1, + "*__pyx_r": 6, + "**__pyx_pyargnames": 3, + "__pyx_n_s__p": 6, + "__pyx_n_s__y": 6, + "values": 30, + "__pyx_kwds": 15, + "kw_args": 15, + "pos_args": 12, + "__pyx_args": 21, + "__pyx_L5_argtuple_error": 12, + "PyDict_Size": 3, + "PyDict_GetItem": 6, + "__pyx_L3_error": 18, + "__pyx_pyargnames": 3, + "__pyx_L4_argument_unpacking_done": 6, + "__pyx_pf_7sklearn_12linear_model_8sgd_fast_12LossFunction_loss": 1, + "__pyx_vtab": 2, + "loss": 1, + "*__pyx_pw_7sklearn_12linear_model_8sgd_fast_12LossFunction_3dloss": 3, + "__pyx_f_7sklearn_12linear_model_8sgd_fast_12LossFunction_dloss": 1, + "__pyx_n_s__dloss": 1, + "__pyx_pw_7sklearn_12linear_model_8sgd_fast_12LossFunction_3dloss": 1, + "__pyx_doc_7sklearn_12linear_model_8sgd_fast_12LossFunction_2dloss": 1, + "__pyx_pf_7sklearn_12linear_model_8sgd_fast_12LossFunction_2dloss": 1, + "dloss": 1, + "*__pyx_pw_7sklearn_12linear_model_8sgd_fast_10Regression_1loss": 3, + "__pyx_f_7sklearn_12linear_model_8sgd_fast_10Regression_loss": 1, + "__pyx_pw_7sklearn_12linear_model_8sgd_fast_10Regression_1loss": 1, + "__pyx_pf_7sklearn_12linear_model_8sgd_fast_10Regression_loss": 1, + "__pyx_base.__pyx_vtab": 1, + "__pyx_base.loss": 1, + "syscalldef": 1, + "syscalldefs": 1, + "SYSCALL_OR_NUM": 3, + "SYS_restart_syscall": 1, + "MAKE_UINT16": 3, + "SYS_exit": 1, + "SYS_fork": 1, + "__wglew_h__": 2, + "__WGLEW_H__": 1, + "__wglext_h_": 2, + "wglext.h": 1, + "wglew.h": 1, + "WINAPI": 119, + "<windows.h>": 1, + "GLEW_STATIC": 1, + "WGL_3DFX_multisample": 2, + "WGL_SAMPLE_BUFFERS_3DFX": 1, + "WGL_SAMPLES_3DFX": 1, + "WGLEW_3DFX_multisample": 1, + "WGLEW_GET_VAR": 49, + "__WGLEW_3DFX_multisample": 2, + "WGL_3DL_stereo_control": 2, + "WGL_STEREO_EMITTER_ENABLE_3DL": 1, + "WGL_STEREO_EMITTER_DISABLE_3DL": 1, + "WGL_STEREO_POLARITY_NORMAL_3DL": 1, + "WGL_STEREO_POLARITY_INVERT_3DL": 1, + "BOOL": 84, + "PFNWGLSETSTEREOEMITTERSTATE3DLPROC": 2, + "HDC": 65, + "hDC": 33, + "UINT": 30, + "uState": 1, + "wglSetStereoEmitterState3DL": 1, + "WGLEW_GET_FUN": 120, + "__wglewSetStereoEmitterState3DL": 2, + "WGLEW_3DL_stereo_control": 1, + "__WGLEW_3DL_stereo_control": 2, + "WGL_AMD_gpu_association": 2, + "WGL_GPU_VENDOR_AMD": 1, + "F00": 1, + "WGL_GPU_RENDERER_STRING_AMD": 1, + "F01": 1, + "WGL_GPU_OPENGL_VERSION_STRING_AMD": 1, + "F02": 1, + "WGL_GPU_FASTEST_TARGET_GPUS_AMD": 1, + "A2": 2, + "WGL_GPU_RAM_AMD": 1, + "A3": 2, + "WGL_GPU_CLOCK_AMD": 1, + "A4": 2, + "WGL_GPU_NUM_PIPES_AMD": 1, + "A5": 3, + "WGL_GPU_NUM_SIMD_AMD": 1, + "A6": 2, + "WGL_GPU_NUM_RB_AMD": 1, + "A7": 2, + "WGL_GPU_NUM_SPI_AMD": 1, + "A8": 2, + "VOID": 6, + "PFNWGLBLITCONTEXTFRAMEBUFFERAMDPROC": 2, + "HGLRC": 14, + "dstCtx": 1, + "GLint": 18, + "srcX0": 1, + "srcY0": 1, + "srcX1": 1, + "srcY1": 1, + "dstX0": 1, + "dstY0": 1, + "dstX1": 1, + "dstY1": 1, + "GLbitfield": 1, + "mask": 1, + "GLenum": 8, + "filter": 1, + "PFNWGLCREATEASSOCIATEDCONTEXTAMDPROC": 2, + "PFNWGLCREATEASSOCIATEDCONTEXTATTRIBSAMDPROC": 2, + "hShareContext": 2, + "attribList": 2, + "PFNWGLDELETEASSOCIATEDCONTEXTAMDPROC": 2, + "hglrc": 5, + "PFNWGLGETCONTEXTGPUIDAMDPROC": 2, + "PFNWGLGETCURRENTASSOCIATEDCONTEXTAMDPROC": 2, + "PFNWGLGETGPUIDSAMDPROC": 2, + "maxCount": 1, + "UINT*": 6, + "ids": 1, + "INT": 3, + "PFNWGLGETGPUINFOAMDPROC": 2, + "property": 1, + "dataType": 1, + "PFNWGLMAKEASSOCIATEDCONTEXTCURRENTAMDPROC": 2, + "wglBlitContextFramebufferAMD": 1, + "__wglewBlitContextFramebufferAMD": 2, + "wglCreateAssociatedContextAMD": 1, + "__wglewCreateAssociatedContextAMD": 2, + "wglCreateAssociatedContextAttribsAMD": 1, + "__wglewCreateAssociatedContextAttribsAMD": 2, + "wglDeleteAssociatedContextAMD": 1, + "__wglewDeleteAssociatedContextAMD": 2, + "wglGetContextGPUIDAMD": 1, + "__wglewGetContextGPUIDAMD": 2, + "wglGetCurrentAssociatedContextAMD": 1, + "__wglewGetCurrentAssociatedContextAMD": 2, + "wglGetGPUIDsAMD": 1, + "__wglewGetGPUIDsAMD": 2, + "wglGetGPUInfoAMD": 1, + "__wglewGetGPUInfoAMD": 2, + "wglMakeAssociatedContextCurrentAMD": 1, + "__wglewMakeAssociatedContextCurrentAMD": 2, + "WGLEW_AMD_gpu_association": 1, + "__WGLEW_AMD_gpu_association": 2, + "WGL_ARB_buffer_region": 2, + "WGL_FRONT_COLOR_BUFFER_BIT_ARB": 1, + "WGL_BACK_COLOR_BUFFER_BIT_ARB": 1, + "WGL_DEPTH_BUFFER_BIT_ARB": 1, + "WGL_STENCIL_BUFFER_BIT_ARB": 1, + "HANDLE": 14, + "PFNWGLCREATEBUFFERREGIONARBPROC": 2, + "iLayerPlane": 5, + "uType": 1, + "PFNWGLDELETEBUFFERREGIONARBPROC": 2, + "hRegion": 3, + "PFNWGLRESTOREBUFFERREGIONARBPROC": 2, + "width": 3, + "height": 3, + "xSrc": 1, + "ySrc": 1, + "PFNWGLSAVEBUFFERREGIONARBPROC": 2, + "wglCreateBufferRegionARB": 1, + "__wglewCreateBufferRegionARB": 2, + "wglDeleteBufferRegionARB": 1, + "__wglewDeleteBufferRegionARB": 2, + "wglRestoreBufferRegionARB": 1, + "__wglewRestoreBufferRegionARB": 2, + "wglSaveBufferRegionARB": 1, + "__wglewSaveBufferRegionARB": 2, + "WGLEW_ARB_buffer_region": 1, + "__WGLEW_ARB_buffer_region": 2, + "WGL_ARB_create_context": 2, + "WGL_CONTEXT_DEBUG_BIT_ARB": 1, + "WGL_CONTEXT_FORWARD_COMPATIBLE_BIT_ARB": 1, + "WGL_CONTEXT_MAJOR_VERSION_ARB": 1, + "WGL_CONTEXT_MINOR_VERSION_ARB": 1, + "WGL_CONTEXT_LAYER_PLANE_ARB": 1, + "WGL_CONTEXT_FLAGS_ARB": 1, + "ERROR_INVALID_VERSION_ARB": 1, + "ERROR_INVALID_PROFILE_ARB": 1, + "PFNWGLCREATECONTEXTATTRIBSARBPROC": 2, + "wglCreateContextAttribsARB": 1, + "__wglewCreateContextAttribsARB": 2, + "WGLEW_ARB_create_context": 1, + "__WGLEW_ARB_create_context": 2, + "WGL_ARB_create_context_profile": 2, + "WGL_CONTEXT_CORE_PROFILE_BIT_ARB": 1, + "WGL_CONTEXT_COMPATIBILITY_PROFILE_BIT_ARB": 1, + "WGL_CONTEXT_PROFILE_MASK_ARB": 1, + "WGLEW_ARB_create_context_profile": 1, + "__WGLEW_ARB_create_context_profile": 2, + "WGL_ARB_create_context_robustness": 2, + "WGL_CONTEXT_ROBUST_ACCESS_BIT_ARB": 1, + "WGL_LOSE_CONTEXT_ON_RESET_ARB": 1, + "WGL_CONTEXT_RESET_NOTIFICATION_STRATEGY_ARB": 1, + "WGL_NO_RESET_NOTIFICATION_ARB": 1, + "WGLEW_ARB_create_context_robustness": 1, + "__WGLEW_ARB_create_context_robustness": 2, + "WGL_ARB_extensions_string": 2, + "PFNWGLGETEXTENSIONSSTRINGARBPROC": 2, + "hdc": 16, + "wglGetExtensionsStringARB": 1, + "__wglewGetExtensionsStringARB": 2, + "WGLEW_ARB_extensions_string": 1, + "__WGLEW_ARB_extensions_string": 2, + "WGL_ARB_framebuffer_sRGB": 2, + "WGL_FRAMEBUFFER_SRGB_CAPABLE_ARB": 1, + "A9": 2, + "WGLEW_ARB_framebuffer_sRGB": 1, + "__WGLEW_ARB_framebuffer_sRGB": 2, + "WGL_ARB_make_current_read": 2, + "ERROR_INVALID_PIXEL_TYPE_ARB": 1, + "ERROR_INCOMPATIBLE_DEVICE_CONTEXTS_ARB": 1, + "PFNWGLGETCURRENTREADDCARBPROC": 2, + "PFNWGLMAKECONTEXTCURRENTARBPROC": 2, + "hDrawDC": 2, + "hReadDC": 2, + "wglGetCurrentReadDCARB": 1, + "__wglewGetCurrentReadDCARB": 2, + "wglMakeContextCurrentARB": 1, + "__wglewMakeContextCurrentARB": 2, + "WGLEW_ARB_make_current_read": 1, + "__WGLEW_ARB_make_current_read": 2, + "WGL_ARB_multisample": 2, + "WGL_SAMPLE_BUFFERS_ARB": 1, + "WGL_SAMPLES_ARB": 1, + "WGLEW_ARB_multisample": 1, + "__WGLEW_ARB_multisample": 2, + "WGL_ARB_pbuffer": 2, + "WGL_DRAW_TO_PBUFFER_ARB": 1, + "D": 8, + "WGL_MAX_PBUFFER_PIXELS_ARB": 1, + "WGL_MAX_PBUFFER_WIDTH_ARB": 1, + "WGL_MAX_PBUFFER_HEIGHT_ARB": 1, + "WGL_PBUFFER_LARGEST_ARB": 1, + "WGL_PBUFFER_WIDTH_ARB": 1, + "WGL_PBUFFER_HEIGHT_ARB": 1, + "WGL_PBUFFER_LOST_ARB": 1, + "DECLARE_HANDLE": 6, + "HPBUFFERARB": 12, + "PFNWGLCREATEPBUFFERARBPROC": 2, + "iPixelFormat": 6, + "iWidth": 2, + "iHeight": 2, + "piAttribList": 4, + "PFNWGLDESTROYPBUFFERARBPROC": 2, + "hPbuffer": 14, + "PFNWGLGETPBUFFERDCARBPROC": 2, + "PFNWGLQUERYPBUFFERARBPROC": 2, + "iAttribute": 8, + "piValue": 8, + "PFNWGLRELEASEPBUFFERDCARBPROC": 2, + "wglCreatePbufferARB": 1, + "__wglewCreatePbufferARB": 2, + "wglDestroyPbufferARB": 1, + "__wglewDestroyPbufferARB": 2, + "wglGetPbufferDCARB": 1, + "__wglewGetPbufferDCARB": 2, + "wglQueryPbufferARB": 1, + "__wglewQueryPbufferARB": 2, + "wglReleasePbufferDCARB": 1, + "__wglewReleasePbufferDCARB": 2, + "WGLEW_ARB_pbuffer": 1, + "__WGLEW_ARB_pbuffer": 2, + "WGL_ARB_pixel_format": 2, + "WGL_NUMBER_PIXEL_FORMATS_ARB": 1, + "WGL_DRAW_TO_WINDOW_ARB": 1, + "WGL_DRAW_TO_BITMAP_ARB": 1, + "WGL_ACCELERATION_ARB": 1, + "WGL_NEED_PALETTE_ARB": 1, + "WGL_NEED_SYSTEM_PALETTE_ARB": 1, + "WGL_SWAP_LAYER_BUFFERS_ARB": 1, + "WGL_SWAP_METHOD_ARB": 1, + "WGL_NUMBER_OVERLAYS_ARB": 1, + "WGL_NUMBER_UNDERLAYS_ARB": 1, + "WGL_TRANSPARENT_ARB": 1, + "WGL_SHARE_DEPTH_ARB": 1, + "WGL_SHARE_STENCIL_ARB": 1, + "WGL_SHARE_ACCUM_ARB": 1, + "WGL_SUPPORT_GDI_ARB": 1, + "WGL_SUPPORT_OPENGL_ARB": 1, + "WGL_DOUBLE_BUFFER_ARB": 1, + "WGL_STEREO_ARB": 1, + "WGL_PIXEL_TYPE_ARB": 1, + "WGL_COLOR_BITS_ARB": 1, + "WGL_RED_BITS_ARB": 1, + "WGL_RED_SHIFT_ARB": 1, + "WGL_GREEN_BITS_ARB": 1, + "WGL_GREEN_SHIFT_ARB": 1, + "WGL_BLUE_BITS_ARB": 1, + "WGL_BLUE_SHIFT_ARB": 1, + "WGL_ALPHA_BITS_ARB": 1, + "B": 9, + "WGL_ALPHA_SHIFT_ARB": 1, + "WGL_ACCUM_BITS_ARB": 1, + "WGL_ACCUM_RED_BITS_ARB": 1, + "WGL_ACCUM_GREEN_BITS_ARB": 1, + "WGL_ACCUM_BLUE_BITS_ARB": 1, + "WGL_ACCUM_ALPHA_BITS_ARB": 1, + "WGL_DEPTH_BITS_ARB": 1, + "WGL_STENCIL_BITS_ARB": 1, + "WGL_AUX_BUFFERS_ARB": 1, + "WGL_NO_ACCELERATION_ARB": 1, + "WGL_GENERIC_ACCELERATION_ARB": 1, + "WGL_FULL_ACCELERATION_ARB": 1, + "WGL_SWAP_EXCHANGE_ARB": 1, + "WGL_SWAP_COPY_ARB": 1, + "WGL_SWAP_UNDEFINED_ARB": 1, + "WGL_TYPE_RGBA_ARB": 1, + "WGL_TYPE_COLORINDEX_ARB": 1, + "WGL_TRANSPARENT_RED_VALUE_ARB": 1, + "WGL_TRANSPARENT_GREEN_VALUE_ARB": 1, + "WGL_TRANSPARENT_BLUE_VALUE_ARB": 1, + "WGL_TRANSPARENT_ALPHA_VALUE_ARB": 1, + "WGL_TRANSPARENT_INDEX_VALUE_ARB": 1, + "PFNWGLCHOOSEPIXELFORMATARBPROC": 2, + "piAttribIList": 2, + "FLOAT": 4, + "*pfAttribFList": 2, + "nMaxFormats": 2, + "*piFormats": 2, + "*nNumFormats": 2, + "PFNWGLGETPIXELFORMATATTRIBFVARBPROC": 2, + "nAttributes": 4, + "piAttributes": 4, + "*pfValues": 2, + "PFNWGLGETPIXELFORMATATTRIBIVARBPROC": 2, + "*piValues": 2, + "wglChoosePixelFormatARB": 1, + "__wglewChoosePixelFormatARB": 2, + "wglGetPixelFormatAttribfvARB": 1, + "__wglewGetPixelFormatAttribfvARB": 2, + "wglGetPixelFormatAttribivARB": 1, + "__wglewGetPixelFormatAttribivARB": 2, + "WGLEW_ARB_pixel_format": 1, + "__WGLEW_ARB_pixel_format": 2, + "WGL_ARB_pixel_format_float": 2, + "WGL_TYPE_RGBA_FLOAT_ARB": 1, + "A0": 3, + "WGLEW_ARB_pixel_format_float": 1, + "__WGLEW_ARB_pixel_format_float": 2, + "WGL_ARB_render_texture": 2, + "WGL_BIND_TO_TEXTURE_RGB_ARB": 1, + "WGL_BIND_TO_TEXTURE_RGBA_ARB": 1, + "WGL_TEXTURE_FORMAT_ARB": 1, + "WGL_TEXTURE_TARGET_ARB": 1, + "WGL_MIPMAP_TEXTURE_ARB": 1, + "WGL_TEXTURE_RGB_ARB": 1, + "WGL_TEXTURE_RGBA_ARB": 1, + "WGL_NO_TEXTURE_ARB": 2, + "WGL_TEXTURE_CUBE_MAP_ARB": 1, + "WGL_TEXTURE_1D_ARB": 1, + "WGL_TEXTURE_2D_ARB": 1, + "WGL_MIPMAP_LEVEL_ARB": 1, + "WGL_CUBE_MAP_FACE_ARB": 1, + "WGL_TEXTURE_CUBE_MAP_POSITIVE_X_ARB": 1, + "WGL_TEXTURE_CUBE_MAP_NEGATIVE_X_ARB": 1, + "WGL_TEXTURE_CUBE_MAP_POSITIVE_Y_ARB": 1, + "WGL_TEXTURE_CUBE_MAP_NEGATIVE_Y_ARB": 1, + "WGL_TEXTURE_CUBE_MAP_POSITIVE_Z_ARB": 1, + "WGL_TEXTURE_CUBE_MAP_NEGATIVE_Z_ARB": 1, + "WGL_FRONT_LEFT_ARB": 1, + "WGL_FRONT_RIGHT_ARB": 1, + "WGL_BACK_LEFT_ARB": 1, + "WGL_BACK_RIGHT_ARB": 1, + "WGL_AUX0_ARB": 1, + "WGL_AUX1_ARB": 1, + "WGL_AUX2_ARB": 1, + "WGL_AUX3_ARB": 1, + "WGL_AUX4_ARB": 1, + "WGL_AUX5_ARB": 1, + "WGL_AUX6_ARB": 1, + "WGL_AUX7_ARB": 1, + "WGL_AUX8_ARB": 1, + "WGL_AUX9_ARB": 1, + "PFNWGLBINDTEXIMAGEARBPROC": 2, + "iBuffer": 2, + "PFNWGLRELEASETEXIMAGEARBPROC": 2, + "PFNWGLSETPBUFFERATTRIBARBPROC": 2, + "wglBindTexImageARB": 1, + "__wglewBindTexImageARB": 2, + "wglReleaseTexImageARB": 1, + "__wglewReleaseTexImageARB": 2, + "wglSetPbufferAttribARB": 1, + "__wglewSetPbufferAttribARB": 2, + "WGLEW_ARB_render_texture": 1, + "__WGLEW_ARB_render_texture": 2, + "WGL_ATI_pixel_format_float": 2, + "WGL_TYPE_RGBA_FLOAT_ATI": 1, + "GL_RGBA_FLOAT_MODE_ATI": 1, + "GL_COLOR_CLEAR_UNCLAMPED_VALUE_ATI": 1, + "WGLEW_ATI_pixel_format_float": 1, + "__WGLEW_ATI_pixel_format_float": 2, + "WGL_ATI_render_texture_rectangle": 2, + "WGL_TEXTURE_RECTANGLE_ATI": 1, + "WGLEW_ATI_render_texture_rectangle": 1, + "__WGLEW_ATI_render_texture_rectangle": 2, + "WGL_EXT_create_context_es2_profile": 2, + "WGL_CONTEXT_ES2_PROFILE_BIT_EXT": 1, + "WGLEW_EXT_create_context_es2_profile": 1, + "__WGLEW_EXT_create_context_es2_profile": 2, + "WGL_EXT_depth_float": 2, + "WGL_DEPTH_FLOAT_EXT": 1, + "WGLEW_EXT_depth_float": 1, + "__WGLEW_EXT_depth_float": 2, + "WGL_EXT_display_color_table": 2, + "GLboolean": 53, + "PFNWGLBINDDISPLAYCOLORTABLEEXTPROC": 2, + "GLushort": 3, + "PFNWGLCREATEDISPLAYCOLORTABLEEXTPROC": 2, + "PFNWGLDESTROYDISPLAYCOLORTABLEEXTPROC": 2, + "PFNWGLLOADDISPLAYCOLORTABLEEXTPROC": 2, + "GLushort*": 1, + "table": 1, + "GLuint": 9, + "wglBindDisplayColorTableEXT": 1, + "__wglewBindDisplayColorTableEXT": 2, + "wglCreateDisplayColorTableEXT": 1, + "__wglewCreateDisplayColorTableEXT": 2, + "wglDestroyDisplayColorTableEXT": 1, + "__wglewDestroyDisplayColorTableEXT": 2, + "wglLoadDisplayColorTableEXT": 1, + "__wglewLoadDisplayColorTableEXT": 2, + "WGLEW_EXT_display_color_table": 1, + "__WGLEW_EXT_display_color_table": 2, + "WGL_EXT_extensions_string": 2, + "PFNWGLGETEXTENSIONSSTRINGEXTPROC": 2, + "wglGetExtensionsStringEXT": 1, + "__wglewGetExtensionsStringEXT": 2, + "WGLEW_EXT_extensions_string": 1, + "__WGLEW_EXT_extensions_string": 2, + "WGL_EXT_framebuffer_sRGB": 2, + "WGL_FRAMEBUFFER_SRGB_CAPABLE_EXT": 1, + "WGLEW_EXT_framebuffer_sRGB": 1, + "__WGLEW_EXT_framebuffer_sRGB": 2, + "WGL_EXT_make_current_read": 2, + "ERROR_INVALID_PIXEL_TYPE_EXT": 1, + "PFNWGLGETCURRENTREADDCEXTPROC": 2, + "PFNWGLMAKECONTEXTCURRENTEXTPROC": 2, + "wglGetCurrentReadDCEXT": 1, + "__wglewGetCurrentReadDCEXT": 2, + "wglMakeContextCurrentEXT": 1, + "__wglewMakeContextCurrentEXT": 2, + "WGLEW_EXT_make_current_read": 1, + "__WGLEW_EXT_make_current_read": 2, + "WGL_EXT_multisample": 2, + "WGL_SAMPLE_BUFFERS_EXT": 1, + "WGL_SAMPLES_EXT": 1, + "WGLEW_EXT_multisample": 1, + "__WGLEW_EXT_multisample": 2, + "WGL_EXT_pbuffer": 2, + "WGL_DRAW_TO_PBUFFER_EXT": 1, + "WGL_MAX_PBUFFER_PIXELS_EXT": 1, + "WGL_MAX_PBUFFER_WIDTH_EXT": 1, + "WGL_MAX_PBUFFER_HEIGHT_EXT": 1, + "WGL_OPTIMAL_PBUFFER_WIDTH_EXT": 1, + "WGL_OPTIMAL_PBUFFER_HEIGHT_EXT": 1, + "WGL_PBUFFER_LARGEST_EXT": 1, + "WGL_PBUFFER_WIDTH_EXT": 1, + "WGL_PBUFFER_HEIGHT_EXT": 1, + "HPBUFFEREXT": 6, + "PFNWGLCREATEPBUFFEREXTPROC": 2, + "PFNWGLDESTROYPBUFFEREXTPROC": 2, + "PFNWGLGETPBUFFERDCEXTPROC": 2, + "PFNWGLQUERYPBUFFEREXTPROC": 2, + "PFNWGLRELEASEPBUFFERDCEXTPROC": 2, + "wglCreatePbufferEXT": 1, + "__wglewCreatePbufferEXT": 2, + "wglDestroyPbufferEXT": 1, + "__wglewDestroyPbufferEXT": 2, + "wglGetPbufferDCEXT": 1, + "__wglewGetPbufferDCEXT": 2, + "wglQueryPbufferEXT": 1, + "__wglewQueryPbufferEXT": 2, + "wglReleasePbufferDCEXT": 1, + "__wglewReleasePbufferDCEXT": 2, + "WGLEW_EXT_pbuffer": 1, + "__WGLEW_EXT_pbuffer": 2, + "WGL_EXT_pixel_format": 2, + "WGL_NUMBER_PIXEL_FORMATS_EXT": 1, + "WGL_DRAW_TO_WINDOW_EXT": 1, + "WGL_DRAW_TO_BITMAP_EXT": 1, + "WGL_ACCELERATION_EXT": 1, + "WGL_NEED_PALETTE_EXT": 1, + "WGL_NEED_SYSTEM_PALETTE_EXT": 1, + "WGL_SWAP_LAYER_BUFFERS_EXT": 1, + "WGL_SWAP_METHOD_EXT": 1, + "WGL_NUMBER_OVERLAYS_EXT": 1, + "WGL_NUMBER_UNDERLAYS_EXT": 1, + "WGL_TRANSPARENT_EXT": 1, + "WGL_TRANSPARENT_VALUE_EXT": 1, + "WGL_SHARE_DEPTH_EXT": 1, + "WGL_SHARE_STENCIL_EXT": 1, + "WGL_SHARE_ACCUM_EXT": 1, + "WGL_SUPPORT_GDI_EXT": 1, + "WGL_SUPPORT_OPENGL_EXT": 1, + "WGL_DOUBLE_BUFFER_EXT": 1, + "WGL_STEREO_EXT": 1, + "WGL_PIXEL_TYPE_EXT": 1, + "WGL_COLOR_BITS_EXT": 1, + "WGL_RED_BITS_EXT": 1, + "WGL_RED_SHIFT_EXT": 1, + "WGL_GREEN_BITS_EXT": 1, + "WGL_GREEN_SHIFT_EXT": 1, + "WGL_BLUE_BITS_EXT": 1, + "WGL_BLUE_SHIFT_EXT": 1, + "WGL_ALPHA_BITS_EXT": 1, + "WGL_ALPHA_SHIFT_EXT": 1, + "WGL_ACCUM_BITS_EXT": 1, + "WGL_ACCUM_RED_BITS_EXT": 1, + "WGL_ACCUM_GREEN_BITS_EXT": 1, + "WGL_ACCUM_BLUE_BITS_EXT": 1, + "WGL_ACCUM_ALPHA_BITS_EXT": 1, + "WGL_DEPTH_BITS_EXT": 1, + "WGL_STENCIL_BITS_EXT": 1, + "WGL_AUX_BUFFERS_EXT": 1, + "WGL_NO_ACCELERATION_EXT": 1, + "WGL_GENERIC_ACCELERATION_EXT": 1, + "WGL_FULL_ACCELERATION_EXT": 1, + "WGL_SWAP_EXCHANGE_EXT": 1, + "WGL_SWAP_COPY_EXT": 1, + "WGL_SWAP_UNDEFINED_EXT": 1, + "WGL_TYPE_RGBA_EXT": 1, + "WGL_TYPE_COLORINDEX_EXT": 1, + "PFNWGLCHOOSEPIXELFORMATEXTPROC": 2, + "PFNWGLGETPIXELFORMATATTRIBFVEXTPROC": 2, + "PFNWGLGETPIXELFORMATATTRIBIVEXTPROC": 2, + "wglChoosePixelFormatEXT": 1, + "__wglewChoosePixelFormatEXT": 2, + "wglGetPixelFormatAttribfvEXT": 1, + "__wglewGetPixelFormatAttribfvEXT": 2, + "wglGetPixelFormatAttribivEXT": 1, + "__wglewGetPixelFormatAttribivEXT": 2, + "WGLEW_EXT_pixel_format": 1, + "__WGLEW_EXT_pixel_format": 2, + "WGL_EXT_pixel_format_packed_float": 2, + "WGL_TYPE_RGBA_UNSIGNED_FLOAT_EXT": 1, + "WGLEW_EXT_pixel_format_packed_float": 1, + "__WGLEW_EXT_pixel_format_packed_float": 2, + "WGL_EXT_swap_control": 2, + "PFNWGLGETSWAPINTERVALEXTPROC": 2, + "PFNWGLSWAPINTERVALEXTPROC": 2, + "interval": 1, + "wglGetSwapIntervalEXT": 1, + "__wglewGetSwapIntervalEXT": 2, + "wglSwapIntervalEXT": 1, + "__wglewSwapIntervalEXT": 2, + "WGLEW_EXT_swap_control": 1, + "__WGLEW_EXT_swap_control": 2, + "WGL_I3D_digital_video_control": 2, + "WGL_DIGITAL_VIDEO_CURSOR_ALPHA_FRAMEBUFFER_I3D": 1, + "WGL_DIGITAL_VIDEO_CURSOR_ALPHA_VALUE_I3D": 1, + "WGL_DIGITAL_VIDEO_CURSOR_INCLUDED_I3D": 1, + "WGL_DIGITAL_VIDEO_GAMMA_CORRECTED_I3D": 1, + "PFNWGLGETDIGITALVIDEOPARAMETERSI3DPROC": 2, + "PFNWGLSETDIGITALVIDEOPARAMETERSI3DPROC": 2, + "wglGetDigitalVideoParametersI3D": 1, + "__wglewGetDigitalVideoParametersI3D": 2, + "wglSetDigitalVideoParametersI3D": 1, + "__wglewSetDigitalVideoParametersI3D": 2, + "WGLEW_I3D_digital_video_control": 1, + "__WGLEW_I3D_digital_video_control": 2, + "WGL_I3D_gamma": 2, + "WGL_GAMMA_TABLE_SIZE_I3D": 1, + "WGL_GAMMA_EXCLUDE_DESKTOP_I3D": 1, + "PFNWGLGETGAMMATABLEI3DPROC": 2, + "iEntries": 2, + "USHORT*": 2, + "puRed": 2, + "USHORT": 4, + "*puGreen": 2, + "*puBlue": 2, + "PFNWGLGETGAMMATABLEPARAMETERSI3DPROC": 2, + "PFNWGLSETGAMMATABLEI3DPROC": 2, + "PFNWGLSETGAMMATABLEPARAMETERSI3DPROC": 2, + "wglGetGammaTableI3D": 1, + "__wglewGetGammaTableI3D": 2, + "wglGetGammaTableParametersI3D": 1, + "__wglewGetGammaTableParametersI3D": 2, + "wglSetGammaTableI3D": 1, + "__wglewSetGammaTableI3D": 2, + "wglSetGammaTableParametersI3D": 1, + "__wglewSetGammaTableParametersI3D": 2, + "WGLEW_I3D_gamma": 1, + "__WGLEW_I3D_gamma": 2, + "WGL_I3D_genlock": 2, + "WGL_GENLOCK_SOURCE_MULTIVIEW_I3D": 1, + "WGL_GENLOCK_SOURCE_EXTERNAL_SYNC_I3D": 1, + "WGL_GENLOCK_SOURCE_EXTERNAL_FIELD_I3D": 1, + "WGL_GENLOCK_SOURCE_EXTERNAL_TTL_I3D": 1, + "WGL_GENLOCK_SOURCE_DIGITAL_SYNC_I3D": 1, + "WGL_GENLOCK_SOURCE_DIGITAL_FIELD_I3D": 1, + "WGL_GENLOCK_SOURCE_EDGE_FALLING_I3D": 1, + "WGL_GENLOCK_SOURCE_EDGE_RISING_I3D": 1, + "WGL_GENLOCK_SOURCE_EDGE_BOTH_I3D": 1, + "PFNWGLDISABLEGENLOCKI3DPROC": 2, + "PFNWGLENABLEGENLOCKI3DPROC": 2, + "PFNWGLGENLOCKSAMPLERATEI3DPROC": 2, + "uRate": 2, + "PFNWGLGENLOCKSOURCEDELAYI3DPROC": 2, + "uDelay": 2, + "PFNWGLGENLOCKSOURCEEDGEI3DPROC": 2, + "uEdge": 2, + "PFNWGLGENLOCKSOURCEI3DPROC": 2, + "uSource": 2, + "PFNWGLGETGENLOCKSAMPLERATEI3DPROC": 2, + "PFNWGLGETGENLOCKSOURCEDELAYI3DPROC": 2, + "PFNWGLGETGENLOCKSOURCEEDGEI3DPROC": 2, + "PFNWGLGETGENLOCKSOURCEI3DPROC": 2, + "PFNWGLISENABLEDGENLOCKI3DPROC": 2, + "BOOL*": 3, + "pFlag": 3, + "PFNWGLQUERYGENLOCKMAXSOURCEDELAYI3DPROC": 2, + "uMaxLineDelay": 1, + "*uMaxPixelDelay": 1, + "wglDisableGenlockI3D": 1, + "__wglewDisableGenlockI3D": 2, + "wglEnableGenlockI3D": 1, + "__wglewEnableGenlockI3D": 2, + "wglGenlockSampleRateI3D": 1, + "__wglewGenlockSampleRateI3D": 2, + "wglGenlockSourceDelayI3D": 1, + "__wglewGenlockSourceDelayI3D": 2, + "wglGenlockSourceEdgeI3D": 1, + "__wglewGenlockSourceEdgeI3D": 2, + "wglGenlockSourceI3D": 1, + "__wglewGenlockSourceI3D": 2, + "wglGetGenlockSampleRateI3D": 1, + "__wglewGetGenlockSampleRateI3D": 2, + "wglGetGenlockSourceDelayI3D": 1, + "__wglewGetGenlockSourceDelayI3D": 2, + "wglGetGenlockSourceEdgeI3D": 1, + "__wglewGetGenlockSourceEdgeI3D": 2, + "wglGetGenlockSourceI3D": 1, + "__wglewGetGenlockSourceI3D": 2, + "wglIsEnabledGenlockI3D": 1, + "__wglewIsEnabledGenlockI3D": 2, + "wglQueryGenlockMaxSourceDelayI3D": 1, + "__wglewQueryGenlockMaxSourceDelayI3D": 2, + "WGLEW_I3D_genlock": 1, + "__WGLEW_I3D_genlock": 2, + "WGL_I3D_image_buffer": 2, + "WGL_IMAGE_BUFFER_MIN_ACCESS_I3D": 1, + "WGL_IMAGE_BUFFER_LOCK_I3D": 1, + "PFNWGLASSOCIATEIMAGEBUFFEREVENTSI3DPROC": 2, + "HANDLE*": 3, + "pEvent": 1, + "LPVOID": 3, + "*pAddress": 1, + "DWORD": 5, + "*pSize": 1, + "PFNWGLCREATEIMAGEBUFFERI3DPROC": 2, + "dwSize": 1, + "uFlags": 1, + "PFNWGLDESTROYIMAGEBUFFERI3DPROC": 2, + "pAddress": 2, + "PFNWGLRELEASEIMAGEBUFFEREVENTSI3DPROC": 2, + "LPVOID*": 1, + "wglAssociateImageBufferEventsI3D": 1, + "__wglewAssociateImageBufferEventsI3D": 2, + "wglCreateImageBufferI3D": 1, + "__wglewCreateImageBufferI3D": 2, + "wglDestroyImageBufferI3D": 1, + "__wglewDestroyImageBufferI3D": 2, + "wglReleaseImageBufferEventsI3D": 1, + "__wglewReleaseImageBufferEventsI3D": 2, + "WGLEW_I3D_image_buffer": 1, + "__WGLEW_I3D_image_buffer": 2, + "WGL_I3D_swap_frame_lock": 2, + "PFNWGLDISABLEFRAMELOCKI3DPROC": 2, + "PFNWGLENABLEFRAMELOCKI3DPROC": 2, + "PFNWGLISENABLEDFRAMELOCKI3DPROC": 2, + "PFNWGLQUERYFRAMELOCKMASTERI3DPROC": 2, + "wglDisableFrameLockI3D": 1, + "__wglewDisableFrameLockI3D": 2, + "wglEnableFrameLockI3D": 1, + "__wglewEnableFrameLockI3D": 2, + "wglIsEnabledFrameLockI3D": 1, + "__wglewIsEnabledFrameLockI3D": 2, + "wglQueryFrameLockMasterI3D": 1, + "__wglewQueryFrameLockMasterI3D": 2, + "WGLEW_I3D_swap_frame_lock": 1, + "__WGLEW_I3D_swap_frame_lock": 2, + "WGL_I3D_swap_frame_usage": 2, + "PFNWGLBEGINFRAMETRACKINGI3DPROC": 2, + "PFNWGLENDFRAMETRACKINGI3DPROC": 2, + "PFNWGLGETFRAMEUSAGEI3DPROC": 2, + "float*": 1, + "pUsage": 1, + "PFNWGLQUERYFRAMETRACKINGI3DPROC": 2, + "DWORD*": 1, + "pFrameCount": 1, + "*pMissedFrames": 1, + "*pLastMissedUsage": 1, + "wglBeginFrameTrackingI3D": 1, + "__wglewBeginFrameTrackingI3D": 2, + "wglEndFrameTrackingI3D": 1, + "__wglewEndFrameTrackingI3D": 2, + "wglGetFrameUsageI3D": 1, + "__wglewGetFrameUsageI3D": 2, + "wglQueryFrameTrackingI3D": 1, + "__wglewQueryFrameTrackingI3D": 2, + "WGLEW_I3D_swap_frame_usage": 1, + "__WGLEW_I3D_swap_frame_usage": 2, + "WGL_NV_DX_interop": 2, + "WGL_ACCESS_READ_ONLY_NV": 1, + "WGL_ACCESS_READ_WRITE_NV": 1, + "WGL_ACCESS_WRITE_DISCARD_NV": 1, + "PFNWGLDXCLOSEDEVICENVPROC": 2, + "hDevice": 9, + "PFNWGLDXLOCKOBJECTSNVPROC": 2, + "hObjects": 2, + "PFNWGLDXOBJECTACCESSNVPROC": 2, + "hObject": 2, + "access": 2, + "PFNWGLDXOPENDEVICENVPROC": 2, + "dxDevice": 1, + "PFNWGLDXREGISTEROBJECTNVPROC": 2, + "dxObject": 2, + "PFNWGLDXSETRESOURCESHAREHANDLENVPROC": 2, + "shareHandle": 1, + "PFNWGLDXUNLOCKOBJECTSNVPROC": 2, + "PFNWGLDXUNREGISTEROBJECTNVPROC": 2, + "wglDXCloseDeviceNV": 1, + "__wglewDXCloseDeviceNV": 2, + "wglDXLockObjectsNV": 1, + "__wglewDXLockObjectsNV": 2, + "wglDXObjectAccessNV": 1, + "__wglewDXObjectAccessNV": 2, + "wglDXOpenDeviceNV": 1, + "__wglewDXOpenDeviceNV": 2, + "wglDXRegisterObjectNV": 1, + "__wglewDXRegisterObjectNV": 2, + "wglDXSetResourceShareHandleNV": 1, + "__wglewDXSetResourceShareHandleNV": 2, + "wglDXUnlockObjectsNV": 1, + "__wglewDXUnlockObjectsNV": 2, + "wglDXUnregisterObjectNV": 1, + "__wglewDXUnregisterObjectNV": 2, + "WGLEW_NV_DX_interop": 1, + "__WGLEW_NV_DX_interop": 2, + "WGL_NV_copy_image": 2, + "PFNWGLCOPYIMAGESUBDATANVPROC": 2, + "hSrcRC": 1, + "srcName": 1, + "srcTarget": 1, + "srcLevel": 1, + "srcX": 1, + "srcY": 1, + "srcZ": 1, + "hDstRC": 1, + "dstName": 1, + "dstTarget": 1, + "dstLevel": 1, + "dstX": 1, + "dstY": 1, + "dstZ": 1, + "GLsizei": 4, + "wglCopyImageSubDataNV": 1, + "__wglewCopyImageSubDataNV": 2, + "WGLEW_NV_copy_image": 1, + "__WGLEW_NV_copy_image": 2, + "WGL_NV_float_buffer": 2, + "WGL_FLOAT_COMPONENTS_NV": 1, + "B0": 1, + "WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_R_NV": 1, + "B1": 1, + "WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_RG_NV": 1, + "B2": 1, + "WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_RGB_NV": 1, + "B3": 1, + "WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_RGBA_NV": 1, + "B4": 1, + "WGL_TEXTURE_FLOAT_R_NV": 1, + "B5": 1, + "WGL_TEXTURE_FLOAT_RG_NV": 1, + "B6": 1, + "WGL_TEXTURE_FLOAT_RGB_NV": 1, + "B7": 1, + "WGL_TEXTURE_FLOAT_RGBA_NV": 1, + "B8": 1, + "WGLEW_NV_float_buffer": 1, + "__WGLEW_NV_float_buffer": 2, + "WGL_NV_gpu_affinity": 2, + "WGL_ERROR_INCOMPATIBLE_AFFINITY_MASKS_NV": 1, + "D0": 1, + "WGL_ERROR_MISSING_AFFINITY_MASK_NV": 1, + "D1": 1, + "HGPUNV": 5, + "_GPU_DEVICE": 1, + "cb": 1, + "CHAR": 2, + "DeviceName": 1, + "DeviceString": 1, + "Flags": 1, + "RECT": 1, + "rcVirtualScreen": 1, + "GPU_DEVICE": 1, + "*PGPU_DEVICE": 1, + "PFNWGLCREATEAFFINITYDCNVPROC": 2, + "*phGpuList": 1, + "PFNWGLDELETEDCNVPROC": 2, + "PFNWGLENUMGPUDEVICESNVPROC": 2, + "hGpu": 1, + "iDeviceIndex": 1, + "PGPU_DEVICE": 1, + "lpGpuDevice": 1, + "PFNWGLENUMGPUSFROMAFFINITYDCNVPROC": 2, + "hAffinityDC": 1, + "iGpuIndex": 2, + "*hGpu": 1, + "PFNWGLENUMGPUSNVPROC": 2, + "*phGpu": 1, + "wglCreateAffinityDCNV": 1, + "__wglewCreateAffinityDCNV": 2, + "wglDeleteDCNV": 1, + "__wglewDeleteDCNV": 2, + "wglEnumGpuDevicesNV": 1, + "__wglewEnumGpuDevicesNV": 2, + "wglEnumGpusFromAffinityDCNV": 1, + "__wglewEnumGpusFromAffinityDCNV": 2, + "wglEnumGpusNV": 1, + "__wglewEnumGpusNV": 2, + "WGLEW_NV_gpu_affinity": 1, + "__WGLEW_NV_gpu_affinity": 2, + "WGL_NV_multisample_coverage": 2, + "WGL_COVERAGE_SAMPLES_NV": 1, + "WGL_COLOR_SAMPLES_NV": 1, + "B9": 1, + "WGLEW_NV_multisample_coverage": 1, + "__WGLEW_NV_multisample_coverage": 2, + "WGL_NV_present_video": 2, + "WGL_NUM_VIDEO_SLOTS_NV": 1, + "F0": 1, + "HVIDEOOUTPUTDEVICENV": 2, + "PFNWGLBINDVIDEODEVICENVPROC": 2, + "hDc": 6, + "uVideoSlot": 2, + "hVideoDevice": 4, + "PFNWGLENUMERATEVIDEODEVICESNVPROC": 2, + "HVIDEOOUTPUTDEVICENV*": 1, + "phDeviceList": 2, + "PFNWGLQUERYCURRENTCONTEXTNVPROC": 2, + "wglBindVideoDeviceNV": 1, + "__wglewBindVideoDeviceNV": 2, + "wglEnumerateVideoDevicesNV": 1, + "__wglewEnumerateVideoDevicesNV": 2, + "wglQueryCurrentContextNV": 1, + "__wglewQueryCurrentContextNV": 2, + "WGLEW_NV_present_video": 1, + "__WGLEW_NV_present_video": 2, + "WGL_NV_render_depth_texture": 2, + "WGL_BIND_TO_TEXTURE_DEPTH_NV": 1, + "WGL_BIND_TO_TEXTURE_RECTANGLE_DEPTH_NV": 1, + "WGL_DEPTH_TEXTURE_FORMAT_NV": 1, + "WGL_TEXTURE_DEPTH_COMPONENT_NV": 1, + "WGL_DEPTH_COMPONENT_NV": 1, + "WGLEW_NV_render_depth_texture": 1, + "__WGLEW_NV_render_depth_texture": 2, + "WGL_NV_render_texture_rectangle": 2, + "WGL_BIND_TO_TEXTURE_RECTANGLE_RGB_NV": 1, + "WGL_BIND_TO_TEXTURE_RECTANGLE_RGBA_NV": 1, + "A1": 1, + "WGL_TEXTURE_RECTANGLE_NV": 1, + "WGLEW_NV_render_texture_rectangle": 1, + "__WGLEW_NV_render_texture_rectangle": 2, + "WGL_NV_swap_group": 2, + "PFNWGLBINDSWAPBARRIERNVPROC": 2, + "group": 3, + "barrier": 1, + "PFNWGLJOINSWAPGROUPNVPROC": 2, + "PFNWGLQUERYFRAMECOUNTNVPROC": 2, + "GLuint*": 3, + "PFNWGLQUERYMAXSWAPGROUPSNVPROC": 2, + "maxGroups": 1, + "*maxBarriers": 1, + "PFNWGLQUERYSWAPGROUPNVPROC": 2, + "*barrier": 1, + "PFNWGLRESETFRAMECOUNTNVPROC": 2, + "wglBindSwapBarrierNV": 1, + "__wglewBindSwapBarrierNV": 2, + "wglJoinSwapGroupNV": 1, + "__wglewJoinSwapGroupNV": 2, + "wglQueryFrameCountNV": 1, + "__wglewQueryFrameCountNV": 2, + "wglQueryMaxSwapGroupsNV": 1, + "__wglewQueryMaxSwapGroupsNV": 2, + "wglQuerySwapGroupNV": 1, + "__wglewQuerySwapGroupNV": 2, + "wglResetFrameCountNV": 1, + "__wglewResetFrameCountNV": 2, + "WGLEW_NV_swap_group": 1, + "__WGLEW_NV_swap_group": 2, + "WGL_NV_vertex_array_range": 2, + "PFNWGLALLOCATEMEMORYNVPROC": 2, + "GLfloat": 3, + "readFrequency": 1, + "writeFrequency": 1, + "priority": 1, + "PFNWGLFREEMEMORYNVPROC": 2, + "*pointer": 1, + "wglAllocateMemoryNV": 1, + "__wglewAllocateMemoryNV": 2, + "wglFreeMemoryNV": 1, + "__wglewFreeMemoryNV": 2, + "WGLEW_NV_vertex_array_range": 1, + "__WGLEW_NV_vertex_array_range": 2, + "WGL_NV_video_capture": 2, + "WGL_UNIQUE_ID_NV": 1, + "CE": 1, + "WGL_NUM_VIDEO_CAPTURE_SLOTS_NV": 1, + "CF": 1, + "HVIDEOINPUTDEVICENV": 5, + "PFNWGLBINDVIDEOCAPTUREDEVICENVPROC": 2, + "PFNWGLENUMERATEVIDEOCAPTUREDEVICESNVPROC": 2, + "HVIDEOINPUTDEVICENV*": 1, + "PFNWGLLOCKVIDEOCAPTUREDEVICENVPROC": 2, + "PFNWGLQUERYVIDEOCAPTUREDEVICENVPROC": 2, + "PFNWGLRELEASEVIDEOCAPTUREDEVICENVPROC": 2, + "wglBindVideoCaptureDeviceNV": 1, + "__wglewBindVideoCaptureDeviceNV": 2, + "wglEnumerateVideoCaptureDevicesNV": 1, + "__wglewEnumerateVideoCaptureDevicesNV": 2, + "wglLockVideoCaptureDeviceNV": 1, + "__wglewLockVideoCaptureDeviceNV": 2, + "wglQueryVideoCaptureDeviceNV": 1, + "__wglewQueryVideoCaptureDeviceNV": 2, + "wglReleaseVideoCaptureDeviceNV": 1, + "__wglewReleaseVideoCaptureDeviceNV": 2, + "WGLEW_NV_video_capture": 1, + "__WGLEW_NV_video_capture": 2, + "WGL_NV_video_output": 2, + "WGL_BIND_TO_VIDEO_RGB_NV": 1, + "WGL_BIND_TO_VIDEO_RGBA_NV": 1, + "C1": 1, + "WGL_BIND_TO_VIDEO_RGB_AND_DEPTH_NV": 1, + "C2": 1, + "WGL_VIDEO_OUT_COLOR_NV": 1, + "C3": 1, + "WGL_VIDEO_OUT_ALPHA_NV": 1, + "C4": 1, + "WGL_VIDEO_OUT_DEPTH_NV": 1, + "C5": 1, + "WGL_VIDEO_OUT_COLOR_AND_ALPHA_NV": 1, + "C6": 1, + "WGL_VIDEO_OUT_COLOR_AND_DEPTH_NV": 1, + "C7": 1, + "WGL_VIDEO_OUT_FRAME": 1, + "C8": 1, + "WGL_VIDEO_OUT_FIELD_1": 1, + "C9": 1, + "WGL_VIDEO_OUT_FIELD_2": 1, + "CA": 1, + "WGL_VIDEO_OUT_STACKED_FIELDS_1_2": 1, + "CB": 1, + "WGL_VIDEO_OUT_STACKED_FIELDS_2_1": 1, + "CC": 1, + "HPVIDEODEV": 4, + "PFNWGLBINDVIDEOIMAGENVPROC": 2, + "iVideoBuffer": 2, + "PFNWGLGETVIDEODEVICENVPROC": 2, + "numDevices": 1, + "HPVIDEODEV*": 1, + "PFNWGLGETVIDEOINFONVPROC": 2, + "hpVideoDevice": 1, + "long*": 2, + "pulCounterOutputPbuffer": 1, + "*pulCounterOutputVideo": 1, + "PFNWGLRELEASEVIDEODEVICENVPROC": 2, + "PFNWGLRELEASEVIDEOIMAGENVPROC": 2, + "PFNWGLSENDPBUFFERTOVIDEONVPROC": 2, + "iBufferType": 1, + "pulCounterPbuffer": 1, + "bBlock": 1, + "wglBindVideoImageNV": 1, + "__wglewBindVideoImageNV": 2, + "wglGetVideoDeviceNV": 1, + "__wglewGetVideoDeviceNV": 2, + "wglGetVideoInfoNV": 1, + "__wglewGetVideoInfoNV": 2, + "wglReleaseVideoDeviceNV": 1, + "__wglewReleaseVideoDeviceNV": 2, + "wglReleaseVideoImageNV": 1, + "__wglewReleaseVideoImageNV": 2, + "wglSendPbufferToVideoNV": 1, + "__wglewSendPbufferToVideoNV": 2, + "WGLEW_NV_video_output": 1, + "__WGLEW_NV_video_output": 2, + "WGL_OML_sync_control": 2, + "PFNWGLGETMSCRATEOMLPROC": 2, + "INT32*": 1, + "numerator": 1, + "INT32": 1, + "*denominator": 1, + "PFNWGLGETSYNCVALUESOMLPROC": 2, + "INT64*": 3, + "INT64": 18, + "*msc": 3, + "*sbc": 3, + "PFNWGLSWAPBUFFERSMSCOMLPROC": 2, + "target_msc": 3, + "divisor": 3, + "remainder": 3, + "PFNWGLSWAPLAYERBUFFERSMSCOMLPROC": 2, + "fuPlanes": 1, + "PFNWGLWAITFORMSCOMLPROC": 2, + "PFNWGLWAITFORSBCOMLPROC": 2, + "target_sbc": 1, + "wglGetMscRateOML": 1, + "__wglewGetMscRateOML": 2, + "wglGetSyncValuesOML": 1, + "__wglewGetSyncValuesOML": 2, + "wglSwapBuffersMscOML": 1, + "__wglewSwapBuffersMscOML": 2, + "wglSwapLayerBuffersMscOML": 1, + "__wglewSwapLayerBuffersMscOML": 2, + "wglWaitForMscOML": 1, + "__wglewWaitForMscOML": 2, + "wglWaitForSbcOML": 1, + "__wglewWaitForSbcOML": 2, + "WGLEW_OML_sync_control": 1, + "__WGLEW_OML_sync_control": 2, + "GLEW_MX": 4, + "WGLEW_EXPORT": 167, + "GLEWAPI": 6, + "WGLEWContextStruct": 2, + "WGLEWContext": 1, + "wglewContextInit": 2, + "WGLEWContext*": 2, + "wglewContextIsSupported": 2, + "wglewInit": 1, + "wglewGetContext": 4, + "wglewIsSupported": 2, + "wglewGetExtension": 1, + "yajl_status_to_string": 1, + "yajl_status": 4, + "statStr": 6, + "yajl_status_ok": 1, + "yajl_status_client_canceled": 1, + "yajl_status_insufficient_data": 1, + "yajl_status_error": 1, + "yajl_handle": 10, + "yajl_alloc": 1, + "yajl_callbacks": 1, + "callbacks": 3, + "yajl_parser_config": 1, + "config": 4, + "yajl_alloc_funcs": 3, + "afs": 8, + "allowComments": 4, + "validateUTF8": 3, + "hand": 28, + "afsBuffer": 3, + "realloc": 1, + "yajl_set_default_alloc_funcs": 1, + "YA_MALLOC": 1, + "yajl_handle_t": 1, + "alloc": 6, + "checkUTF8": 1, + "lexer": 4, + "yajl_lex_alloc": 1, + "bytesConsumed": 2, + "decodeBuf": 2, + "yajl_buf_alloc": 1, + "yajl_bs_init": 1, + "stateStack": 3, + "yajl_bs_push": 1, + "yajl_state_start": 1, + "yajl_reset_parser": 1, + "yajl_lex_realloc": 1, + "yajl_free": 1, + "yajl_bs_free": 1, + "yajl_buf_free": 1, + "yajl_lex_free": 1, + "YA_FREE": 2, + "yajl_parse": 2, + "jsonText": 4, + "jsonTextLen": 4, + "yajl_do_parse": 1, + "yajl_parse_complete": 1, + "yajl_get_error": 1, + "verbose": 2, + "yajl_render_error_string": 1, + "yajl_get_bytes_consumed": 1, + "yajl_free_error": 1 + }, + "C++": { + "class": 34, + "Bar": 2, + "{": 553, + "protected": 4, + "char": 122, + "*name": 6, + ";": 2308, + "public": 27, + "void": 152, + "hello": 2, + "(": 2438, + ")": 2440, + "}": 552, + "foo": 2, + "cudaArray*": 1, + "cu_array": 4, + "texture": 1, + "<float,>": 1, + "2": 1, + "cudaReadModeElementType": 1, + "tex": 4, + "cudaChannelFormatDesc": 1, + "description": 5, + "cudaCreateChannelDesc": 1, + "<float>": 1, + "cudaMallocArray": 1, + "&": 148, + "width": 5, + "height": 5, + "cudaMemcpyToArray": 1, + "image": 1, + "width*height*sizeof": 1, + "float": 9, + "cudaMemcpyHostToDevice": 1, + "tex.addressMode": 2, + "[": 204, + "]": 204, + "cudaAddressModeClamp": 2, + "tex.filterMode": 1, + "cudaFilterModePoint": 1, + "tex.normalized": 1, + "false": 43, + "//": 239, + "do": 5, + "not": 2, + "normalize": 1, + "coordinates": 1, + "cudaBindTextureToArray": 1, + "dim3": 2, + "blockDim": 2, + "gridDim": 2, + "+": 55, + "blockDim.x": 2, + "-": 227, + "/": 15, + "blockDim.y": 2, + "kernel": 2, + "<<": 19, + "<": 56, + "d_data": 1, + "cudaUnbindTexture": 1, + "//end": 1, + "__global__": 1, + "float*": 1, + "odata": 2, + "int": 148, + "unsigned": 22, + "x": 48, + "blockIdx.x*blockDim.x": 1, + "threadIdx.x": 1, + "y": 16, + "blockIdx.y*blockDim.y": 1, + "threadIdx.y": 1, + "if": 296, + "&&": 24, + "c": 52, + "tex2D": 1, + "y*width": 1, + "#include": 106, + "<QCoreApplication>": 1, + "<QString>": 1, + "<QVariantMap>": 2, + "static": 260, + "Env": 13, + "*env_instance": 1, + "*": 159, + "NULL": 108, + "*Env": 1, + "instance": 4, + "env_instance": 3, + "new": 9, + "return": 147, + "QObject": 2, + "QCoreApplication": 1, + "parse": 3, + "const": 166, + "**envp": 1, + "**env": 1, + "**": 2, + "QString": 20, + "envvar": 2, + "name": 21, + "value": 18, + "indexOfEquals": 5, + "for": 18, + "env": 3, + "envp": 4, + "*env": 1, + "envvar.indexOf": 1, + "continue": 2, + "envvar.left": 1, + "envvar.mid": 1, + "m_map.insert": 1, + "QVariantMap": 3, + "asVariantMap": 2, + "m_map": 2, + "#ifndef": 23, + "ENV_H": 3, + "#define": 190, + "<QObject>": 1, + "Q_OBJECT": 1, + "*instance": 1, + "private": 12, + "#endif": 82, + "GDSDBREADER_H": 3, + "<QDir>": 1, + "GDS_DIR": 1, + "enum": 6, + "level": 1, + "LEVEL_ONE": 1, + "LEVEL_TWO": 1, + "LEVEL_THREE": 1, + "dbDataStructure": 2, + "label": 1, + "quint32": 3, + "depth": 1, + "userIndex": 1, + "QByteArray": 1, + "data": 2, + "This": 6, + "is": 35, + "COMPRESSED": 1, + "optimize": 1, + "ram": 1, + "and": 14, + "disk": 1, + "space": 2, + "decompressed": 1, + "quint64": 1, + "uniqueID": 1, + "QVector": 2, + "<dbDataStructure*>": 1, + "nextItems": 1, + "<quint32>": 1, + "nextItemsIndices": 1, + "dbDataStructure*": 1, + "father": 1, + "fatherIndex": 1, + "bool": 99, + "noFatherRoot": 1, + "Used": 1, + "to": 75, + "tell": 1, + "this": 22, + "node": 1, + "the": 178, + "root": 1, + "so": 1, + "hasn": 1, + "t": 13, + "in": 9, + "argument": 1, + "list": 2, + "of": 48, + "an": 3, + "operator": 10, + "overload.": 1, + "A": 1, + "friend": 10, + "stream": 5, + "myclass.label": 2, + "myclass.depth": 2, + "myclass.userIndex": 2, + "qCompress": 2, + "myclass.data": 4, + "myclass.uniqueID": 2, + "myclass.nextItemsIndices": 2, + "myclass.fatherIndex": 2, + "myclass.noFatherRoot": 2, + "myclass.fileName": 2, + "myclass.firstLineData": 4, + "myclass.linesNumbers": 2, + "QDataStream": 2, + "myclass": 1, + "//Don": 1, + "read": 1, + "it": 2, + "either": 1, + "qUncompress": 2, + "<iostream>": 1, + "using": 1, + "namespace": 26, + "std": 49, + "main": 2, + "cout": 1, + "endl": 1, + "<map>": 1, + "<openssl/ecdsa.h>": 1, + "<openssl/obj_mac.h>": 1, + "EC_KEY_regenerate_key": 1, + "EC_KEY": 3, + "*eckey": 2, + "BIGNUM": 9, + "*priv_key": 1, + "ok": 3, + "BN_CTX": 2, + "*ctx": 2, + "EC_POINT": 4, + "*pub_key": 1, + "eckey": 7, + "EC_GROUP": 2, + "*group": 2, + "EC_KEY_get0_group": 2, + "ctx": 26, + "BN_CTX_new": 2, + "goto": 156, + "err": 26, + "pub_key": 6, + "EC_POINT_new": 4, + "group": 12, + "EC_POINT_mul": 3, + "priv_key": 2, + "EC_KEY_set_private_key": 1, + "EC_KEY_set_public_key": 2, + "EC_POINT_free": 4, + "BN_CTX_free": 2, + "ECDSA_SIG_recover_key_GFp": 3, + "ECDSA_SIG": 3, + "*ecsig": 1, + "*msg": 2, + "msglen": 2, + "recid": 3, + "check": 2, + "ret": 24, + "*x": 1, + "*e": 1, + "*order": 1, + "*sor": 1, + "*eor": 1, + "*field": 1, + "*R": 1, + "*O": 1, + "*Q": 1, + "*rr": 1, + "*zero": 1, + "n": 28, + "i": 47, + "BN_CTX_start": 1, + "order": 8, + "BN_CTX_get": 8, + "EC_GROUP_get_order": 1, + "BN_copy": 1, + "BN_mul_word": 1, + "BN_add": 1, + "ecsig": 3, + "r": 36, + "field": 3, + "EC_GROUP_get_curve_GFp": 1, + "BN_cmp": 1, + "R": 6, + "EC_POINT_set_compressed_coordinates_GFp": 1, + "%": 4, + "O": 5, + "EC_POINT_is_at_infinity": 1, + "Q": 5, + "EC_GROUP_get_degree": 1, + "e": 14, + "BN_bin2bn": 3, + "msg": 1, + "*msglen": 1, + "BN_rshift": 1, + "zero": 3, + "BN_zero": 1, + "BN_mod_sub": 1, + "rr": 4, + "BN_mod_inverse": 1, + "sor": 3, + "BN_mod_mul": 2, + "s": 9, + "eor": 3, + "BN_CTX_end": 1, + "CKey": 26, + "SetCompressedPubKey": 4, + "EC_KEY_set_conv_form": 1, + "pkey": 14, + "POINT_CONVERSION_COMPRESSED": 1, + "fCompressedPubKey": 5, + "true": 39, + "Reset": 5, + "EC_KEY_new_by_curve_name": 2, + "NID_secp256k1": 2, + "throw": 4, + "key_error": 6, + "fSet": 7, + "b": 57, + "EC_KEY_dup": 1, + "b.pkey": 2, + "b.fSet": 2, + "EC_KEY_copy": 1, + "hash": 20, + "sizeof": 14, + "vchSig": 18, + "nSize": 2, + "vchSig.clear": 2, + "vchSig.resize": 2, + "Shrink": 1, + "fit": 1, + "actual": 1, + "size": 9, + "SignCompact": 2, + "uint256": 10, + "vector": 14, + "<unsigned>": 19, + "fOk": 3, + "*sig": 2, + "ECDSA_do_sign": 1, + "char*": 14, + "sig": 11, + "nBitsR": 3, + "BN_num_bits": 2, + "nBitsS": 3, + "nRecId": 4, + "<4;>": 1, + "keyRec": 5, + "1": 2, + "GetPubKey": 5, + "break": 34, + "BN_bn2bin": 2, + "/8": 2, + "ECDSA_SIG_free": 2, + "SetCompactSignature": 2, + "vchSig.size": 2, + "nV": 6, + "<27>": 1, + "ECDSA_SIG_new": 1, + "EC_KEY_free": 1, + "Verify": 2, + "ECDSA_verify": 1, + "VerifyCompact": 2, + "key": 23, + "key.SetCompactSignature": 1, + "key.GetPubKey": 1, + "IsValid": 4, + "fCompr": 3, + "CSecret": 4, + "secret": 2, + "GetSecret": 2, + "key2": 1, + "key2.SetSecret": 1, + "key2.GetPubKey": 1, + "BITCOIN_KEY_H": 2, + "<stdexcept>": 1, + "<vector>": 2, + "<openssl/ec.h>": 1, + "definition": 1, + "runtime_error": 2, + "explicit": 3, + "string": 10, + "str": 2, + "CKeyID": 5, + "uint160": 8, + "CScriptID": 3, + "CPubKey": 11, + "vchPubKey": 6, + "vchPubKeyIn": 2, + "a": 84, + "a.vchPubKey": 3, + "b.vchPubKey": 3, + "IMPLEMENT_SERIALIZE": 1, + "READWRITE": 1, + "GetID": 1, + "Hash160": 1, + "GetHash": 1, + "Hash": 1, + "vchPubKey.begin": 1, + "vchPubKey.end": 1, + "vchPubKey.size": 3, + "||": 17, + "IsCompressed": 2, + "Raw": 1, + "typedef": 38, + "secure_allocator": 2, + "CPrivKey": 3, + "EC_KEY*": 1, + "IsNull": 1, + "MakeNewKey": 1, + "fCompressed": 3, + "SetPrivKey": 1, + "vchPrivKey": 1, + "SetSecret": 1, + "vchSecret": 1, + "GetPrivKey": 1, + "SetPubKey": 1, + "Sign": 1, + "#ifdef": 16, + "Q_OS_LINUX": 2, + "<QApplication>": 1, + "#if": 44, + "QT_VERSION": 1, + "QT_VERSION_CHECK": 1, + "#error": 9, + "Something": 1, + "wrong": 1, + "with": 6, + "setup.": 1, + "Please": 3, + "report": 2, + "mailing": 1, + "argc": 2, + "char**": 2, + "argv": 2, + "google_breakpad": 1, + "ExceptionHandler": 1, + "eh": 1, + "Utils": 4, + "exceptionHandler": 2, + "qInstallMsgHandler": 1, + "messageHandler": 2, + "QApplication": 1, + "app": 1, + "STATIC_BUILD": 1, + "Q_INIT_RESOURCE": 2, + "WebKit": 1, + "InspectorBackendStub": 1, + "app.setWindowIcon": 1, + "QIcon": 1, + "app.setApplicationName": 1, + "app.setOrganizationName": 1, + "app.setOrganizationDomain": 1, + "app.setApplicationVersion": 1, + "PHANTOMJS_VERSION_STRING": 1, + "Phantom": 1, + "phantom": 1, + "phantom.execute": 1, + "app.exec": 1, + "phantom.returnValue": 1, + "INTERNAL_SUPPRESS_PROTOBUF_FIELD_DEPRECATION": 1, + "<algorithm>": 1, + "<google/protobuf/stubs/common.h>": 2, + "<google/protobuf/stubs/once.h>": 1, + "<google/protobuf/io/coded_stream.h>": 1, + "<google/protobuf/wire_format_lite_inl.h>": 1, + "<google/protobuf/descriptor.h>": 1, + "<google/protobuf/generated_message_reflection.h>": 1, + "<google/protobuf/reflection_ops.h>": 1, + "<google/protobuf/wire_format.h>": 1, + "persons": 4, + "google": 72, + "protobuf": 72, + "Descriptor*": 3, + "Person_descriptor_": 6, + "internal": 46, + "GeneratedMessageReflection*": 1, + "Person_reflection_": 4, + "protobuf_AssignDesc_protocol_2dbuffer_2eproto": 4, + "protobuf_AddDesc_protocol_2dbuffer_2eproto": 6, + "FileDescriptor*": 1, + "file": 6, + "DescriptorPool": 3, + "generated_pool": 2, + "FindFileByName": 1, + "GOOGLE_CHECK": 1, + "message_type": 1, + "Person_offsets_": 2, + "GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET": 3, + "Person": 65, + "name_": 30, + "GeneratedMessageReflection": 1, + "default_instance_": 8, + "_has_bits_": 14, + "_unknown_fields_": 5, + "MessageFactory": 3, + "generated_factory": 1, + "GOOGLE_PROTOBUF_DECLARE_ONCE": 1, + "protobuf_AssignDescriptors_once_": 2, + "inline": 39, + "protobuf_AssignDescriptorsOnce": 4, + "GoogleOnceInit": 1, + "protobuf_RegisterTypes": 2, + "InternalRegisterGeneratedMessage": 1, + "default_instance": 3, + "protobuf_ShutdownFile_protocol_2dbuffer_2eproto": 4, + "delete": 6, + "already_here": 3, + "GOOGLE_PROTOBUF_VERIFY_VERSION": 1, + "InternalAddGeneratedFile": 1, + "InternalRegisterGeneratedFile": 1, + "InitAsDefaultInstance": 3, + "OnShutdown": 1, + "struct": 8, + "StaticDescriptorInitializer_protocol_2dbuffer_2eproto": 2, + "static_descriptor_initializer_protocol_2dbuffer_2eproto_": 1, + "_MSC_VER": 3, + "kNameFieldNumber": 2, + "Message": 7, + "SharedCtor": 4, + "from": 25, + "MergeFrom": 9, + "_cached_size_": 7, + "const_cast": 3, + "string*": 11, + "kEmptyString": 12, + "memset": 2, + "SharedDtor": 3, + "SetCachedSize": 2, + "GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN": 2, + "GOOGLE_SAFE_CONCURRENT_WRITES_END": 2, + "descriptor": 2, + "*default_instance_": 1, + "Person*": 7, + "New": 4, + "Clear": 5, + "xffu": 3, + "has_name": 6, + "clear": 2, + "mutable_unknown_fields": 4, + "MergePartialFromCodedStream": 2, + "io": 4, + "CodedInputStream*": 2, + "input": 6, + "DO_": 4, + "EXPRESSION": 2, + "uint32": 2, + "tag": 6, + "while": 11, + "ReadTag": 1, + "switch": 3, + "WireFormatLite": 9, + "GetTagFieldNumber": 1, + "case": 33, + "GetTagWireType": 2, + "WIRETYPE_LENGTH_DELIMITED": 1, + "ReadString": 1, + "mutable_name": 3, + "WireFormat": 10, + "VerifyUTF8String": 3, + ".data": 3, + ".length": 3, + "PARSE": 1, + "else": 46, + "handle_uninterpreted": 2, + "ExpectAtEnd": 1, + "default": 4, + "WIRETYPE_END_GROUP": 1, + "SkipField": 1, + "#undef": 3, + "SerializeWithCachedSizes": 2, + "CodedOutputStream*": 2, + "output": 5, + "SERIALIZE": 2, + "WriteString": 1, + "unknown_fields": 7, + ".empty": 3, + "SerializeUnknownFields": 1, + "uint8*": 4, + "SerializeWithCachedSizesToArray": 2, + "target": 6, + "WriteStringToArray": 1, + "SerializeUnknownFieldsToArray": 1, + "ByteSize": 2, + "total_size": 5, + "StringSize": 1, + "ComputeUnknownFieldsSize": 1, + "GOOGLE_CHECK_NE": 2, + "source": 9, + "dynamic_cast_if_available": 1, + "<const>": 12, + "ReflectionOps": 1, + "Merge": 1, + "from._has_bits_": 1, + "from.has_name": 1, + "set_name": 7, + "from.name": 1, + "from.unknown_fields": 1, + "CopyFrom": 5, + "IsInitialized": 3, + "Swap": 2, + "other": 7, + "swap": 3, + "_unknown_fields_.Swap": 1, + "Metadata": 3, + "GetMetadata": 2, + "metadata": 2, + "metadata.descriptor": 1, + "metadata.reflection": 1, + "PROTOBUF_protocol_2dbuffer_2eproto__INCLUDED": 3, + "<string>": 1, + "GOOGLE_PROTOBUF_VERSION": 1, + "was": 3, + "generated": 2, + "by": 5, + "newer": 2, + "version": 4, + "protoc": 2, + "which": 2, + "incompatible": 2, + "your": 3, + "Protocol": 2, + "Buffer": 2, + "headers.": 3, + "update": 1, + "GOOGLE_PROTOBUF_MIN_PROTOC_VERSION": 1, + "older": 1, + "regenerate": 1, + "protoc.": 1, + "<google/protobuf/generated_message_util.h>": 1, + "<google/protobuf/message.h>": 1, + "<google/protobuf/repeated_field.h>": 1, + "<google/protobuf/extension_set.h>": 1, + "<google/protobuf/unknown_field_set.h>": 1, + "virtual": 10, + "*this": 1, + "UnknownFieldSet": 2, + "UnknownFieldSet*": 1, + "GetCachedSize": 1, + "clear_name": 2, + "size_t": 5, + "release_name": 2, + "set_allocated_name": 2, + "set_has_name": 7, + "clear_has_name": 5, + "mutable": 1, + "u": 9, + "|": 8, + "*name_": 1, + "assign": 3, + "reinterpret_cast": 7, + "temp": 2, + "SWIG": 2, + "QSCICOMMAND_H": 2, + "__APPLE__": 4, + "extern": 4, + "<qstring.h>": 1, + "<Qsci/qsciglobal.h>": 2, + "<Qsci/qsciscintillabase.h>": 1, + "QsciScintilla": 7, + "brief": 2, + "The": 8, + "QsciCommand": 7, + "represents": 1, + "editor": 1, + "command": 9, + "that": 7, + "may": 2, + "have": 1, + "one": 42, + "or": 10, + "two": 1, + "keys": 3, + "bound": 4, + "it.": 2, + "Methods": 1, + "are": 3, + "provided": 1, + "change": 1, + "remove": 1, + "binding.": 1, + "Each": 1, + "has": 2, + "user": 2, + "friendly": 2, + "use": 1, + "mapping": 1, + "dialogs.": 1, + "QSCINTILLA_EXPORT": 2, + "defines": 1, + "different": 1, + "commands": 1, + "can": 3, + "be": 9, + "assigned": 1, + "key.": 1, + "Command": 4, + "Move": 26, + "down": 12, + "line.": 33, + "LineDown": 1, + "QsciScintillaBase": 100, + "SCI_LINEDOWN": 1, + "Extend": 33, + "selection": 39, + "LineDownExtend": 1, + "SCI_LINEDOWNEXTEND": 1, + "rectangular": 9, + "LineDownRectExtend": 1, + "SCI_LINEDOWNRECTEXTEND": 1, + "Scroll": 5, + "view": 2, + "LineScrollDown": 1, + "SCI_LINESCROLLDOWN": 1, + "up": 13, + "LineUp": 1, + "SCI_LINEUP": 1, + "LineUpExtend": 1, + "SCI_LINEUPEXTEND": 1, + "LineUpRectExtend": 1, + "SCI_LINEUPRECTEXTEND": 1, + "LineScrollUp": 1, + "SCI_LINESCROLLUP": 1, + "start": 11, + "document.": 8, + "ScrollToStart": 1, + "SCI_SCROLLTOSTART": 1, + "end": 18, + "ScrollToEnd": 1, + "SCI_SCROLLTOEND": 1, + "vertically": 1, + "centre": 1, + "current": 9, + "VerticalCentreCaret": 1, + "SCI_VERTICALCENTRECARET": 1, + "paragraph.": 4, + "ParaDown": 1, + "SCI_PARADOWN": 1, + "ParaDownExtend": 1, + "SCI_PARADOWNEXTEND": 1, + "ParaUp": 1, + "SCI_PARAUP": 1, + "ParaUpExtend": 1, + "SCI_PARAUPEXTEND": 1, + "left": 7, + "character.": 9, + "CharLeft": 1, + "SCI_CHARLEFT": 1, + "CharLeftExtend": 1, + "SCI_CHARLEFTEXTEND": 1, + "CharLeftRectExtend": 1, + "SCI_CHARLEFTRECTEXTEND": 1, + "right": 8, + "CharRight": 1, + "SCI_CHARRIGHT": 1, + "CharRightExtend": 1, + "SCI_CHARRIGHTEXTEND": 1, + "CharRightRectExtend": 1, + "SCI_CHARRIGHTRECTEXTEND": 1, + "word.": 9, + "WordLeft": 1, + "SCI_WORDLEFT": 1, + "WordLeftExtend": 1, + "SCI_WORDLEFTEXTEND": 1, + "WordRight": 1, + "SCI_WORDRIGHT": 1, + "WordRightExtend": 1, + "SCI_WORDRIGHTEXTEND": 1, + "previous": 5, + "WordLeftEnd": 1, + "SCI_WORDLEFTEND": 1, + "WordLeftEndExtend": 1, + "SCI_WORDLEFTENDEXTEND": 1, + "next": 6, + "WordRightEnd": 1, + "SCI_WORDRIGHTEND": 1, + "WordRightEndExtend": 1, + "SCI_WORDRIGHTENDEXTEND": 1, + "word": 6, + "part.": 4, + "WordPartLeft": 1, + "SCI_WORDPARTLEFT": 1, + "WordPartLeftExtend": 1, + "SCI_WORDPARTLEFTEXTEND": 1, + "WordPartRight": 1, + "SCI_WORDPARTRIGHT": 1, + "WordPartRightExtend": 1, + "SCI_WORDPARTRIGHTEXTEND": 1, + "document": 16, + "Home": 1, + "SCI_HOME": 1, + "HomeExtend": 1, + "SCI_HOMEEXTEND": 1, + "HomeRectExtend": 1, + "SCI_HOMERECTEXTEND": 1, + "displayed": 10, + "HomeDisplay": 1, + "SCI_HOMEDISPLAY": 1, + "HomeDisplayExtend": 1, + "SCI_HOMEDISPLAYEXTEND": 1, + "HomeWrap": 1, + "SCI_HOMEWRAP": 1, + "HomeWrapExtend": 1, + "SCI_HOMEWRAPEXTEND": 1, + "first": 8, + "visible": 6, + "character": 8, + "VCHome": 1, + "SCI_VCHOME": 1, + "VCHomeExtend": 1, + "SCI_VCHOMEEXTEND": 1, + "VCHomeRectExtend": 1, + "SCI_VCHOMERECTEXTEND": 1, + "VCHomeWrap": 1, + "SCI_VCHOMEWRAP": 1, + "VCHomeWrapExtend": 1, + "SCI_VCHOMEWRAPEXTEND": 1, + "LineEnd": 1, + "SCI_LINEEND": 1, + "LineEndExtend": 1, + "SCI_LINEENDEXTEND": 1, + "LineEndRectExtend": 1, + "SCI_LINEENDRECTEXTEND": 1, + "LineEndDisplay": 1, + "SCI_LINEENDDISPLAY": 1, + "LineEndDisplayExtend": 1, + "SCI_LINEENDDISPLAYEXTEND": 1, + "LineEndWrap": 1, + "SCI_LINEENDWRAP": 1, + "LineEndWrapExtend": 1, + "SCI_LINEENDWRAPEXTEND": 1, + "DocumentStart": 1, + "SCI_DOCUMENTSTART": 1, + "DocumentStartExtend": 1, + "SCI_DOCUMENTSTARTEXTEND": 1, + "DocumentEnd": 1, + "SCI_DOCUMENTEND": 1, + "DocumentEndExtend": 1, + "SCI_DOCUMENTENDEXTEND": 1, + "page.": 13, + "PageUp": 1, + "SCI_PAGEUP": 1, + "PageUpExtend": 1, + "SCI_PAGEUPEXTEND": 1, + "PageUpRectExtend": 1, + "SCI_PAGEUPRECTEXTEND": 1, + "PageDown": 1, + "SCI_PAGEDOWN": 1, + "PageDownExtend": 1, + "SCI_PAGEDOWNEXTEND": 1, + "PageDownRectExtend": 1, + "SCI_PAGEDOWNRECTEXTEND": 1, + "Stuttered": 4, + "move": 2, + "StutteredPageUp": 1, + "SCI_STUTTEREDPAGEUP": 1, + "extend": 2, + "StutteredPageUpExtend": 1, + "SCI_STUTTEREDPAGEUPEXTEND": 1, + "StutteredPageDown": 1, + "SCI_STUTTEREDPAGEDOWN": 1, + "StutteredPageDownExtend": 1, + "SCI_STUTTEREDPAGEDOWNEXTEND": 1, + "Delete": 10, + "SCI_CLEAR": 1, + "DeleteBack": 1, + "SCI_DELETEBACK": 1, + "at": 4, + "DeleteBackNotLine": 1, + "SCI_DELETEBACKNOTLINE": 1, + "left.": 2, + "DeleteWordLeft": 1, + "SCI_DELWORDLEFT": 1, + "right.": 2, + "DeleteWordRight": 1, + "SCI_DELWORDRIGHT": 1, + "DeleteWordRightEnd": 1, + "SCI_DELWORDRIGHTEND": 1, + "line": 10, + "DeleteLineLeft": 1, + "SCI_DELLINELEFT": 1, + "DeleteLineRight": 1, + "SCI_DELLINERIGHT": 1, + "LineDelete": 1, + "SCI_LINEDELETE": 1, + "Cut": 2, + "clipboard.": 5, + "LineCut": 1, + "SCI_LINECUT": 1, + "Copy": 2, + "LineCopy": 1, + "SCI_LINECOPY": 1, + "Transpose": 1, + "lines.": 1, + "LineTranspose": 1, + "SCI_LINETRANSPOSE": 1, + "Duplicate": 2, + "LineDuplicate": 1, + "SCI_LINEDUPLICATE": 1, + "Select": 33, + "whole": 2, + "SelectAll": 1, + "SCI_SELECTALL": 1, + "selected": 2, + "lines": 3, + "MoveSelectedLinesUp": 1, + "SCI_MOVESELECTEDLINESUP": 1, + "MoveSelectedLinesDown": 1, + "SCI_MOVESELECTEDLINESDOWN": 1, + "selection.": 1, + "SelectionDuplicate": 1, + "SCI_SELECTIONDUPLICATE": 1, + "Convert": 2, + "lower": 1, + "case.": 2, + "SelectionLowerCase": 1, + "SCI_LOWERCASE": 1, + "upper": 1, + "SelectionUpperCase": 1, + "SCI_UPPERCASE": 1, + "SelectionCut": 1, + "SCI_CUT": 1, + "SelectionCopy": 1, + "SCI_COPY": 1, + "Paste": 2, + "SCI_PASTE": 1, + "Toggle": 1, + "insert/overtype.": 1, + "EditToggleOvertype": 1, + "SCI_EDITTOGGLEOVERTYPE": 1, + "Insert": 2, + "platform": 1, + "dependent": 1, + "newline.": 1, + "Newline": 1, + "SCI_NEWLINE": 1, + "formfeed.": 1, + "Formfeed": 1, + "SCI_FORMFEED": 1, + "Indent": 1, + "level.": 2, + "Tab": 1, + "SCI_TAB": 1, + "De": 1, + "indent": 1, + "Backtab": 1, + "SCI_BACKTAB": 1, + "Cancel": 2, + "any": 5, + "operation.": 1, + "SCI_CANCEL": 1, + "Undo": 2, + "last": 4, + "command.": 5, + "SCI_UNDO": 1, + "Redo": 2, + "SCI_REDO": 1, + "Zoom": 2, + "in.": 1, + "ZoomIn": 1, + "SCI_ZOOMIN": 1, + "out.": 1, + "ZoomOut": 1, + "SCI_ZOOMOUT": 1, + "Return": 3, + "will": 2, + "executed": 1, + "instance.": 2, + "scicmd": 2, + "Execute": 1, + "execute": 1, + "Binds": 2, + "If": 4, + "then": 6, + "binding": 3, + "removed.": 2, + "invalid": 5, + "unchanged.": 1, + "Valid": 1, + "control": 1, + "Key_Down": 1, + "Key_Up": 1, + "Key_Left": 1, + "Key_Right": 1, + "Key_Home": 1, + "Key_End": 1, + "Key_PageUp": 1, + "Key_PageDown": 1, + "Key_Delete": 1, + "Key_Insert": 1, + "Key_Escape": 1, + "Key_Backspace": 1, + "Key_Tab": 1, + "Key_Return.": 1, + "Keys": 1, + "modified": 2, + "combination": 1, + "SHIFT": 1, + "CTRL": 1, + "ALT": 1, + "META.": 1, + "sa": 8, + "setAlternateKey": 3, + "validKey": 3, + "setKey": 3, + "alternate": 3, + "altkey": 3, + "alternateKey": 3, + "currently": 2, + "returned.": 4, + "qkey": 2, + "qaltkey": 2, + "valid": 2, + "QsciCommandSet": 1, + "*qs": 1, + "cmd": 1, + "*desc": 1, + "bindKey": 1, + "qk": 1, + "scik": 1, + "*qsCmd": 1, + "scikey": 1, + "scialtkey": 1, + "*descCmd": 1, + "QSCIPRINTER_H": 2, + "<qprinter.h>": 1, + "<Qsci/qsciscintilla.h>": 1, + "QT_BEGIN_NAMESPACE": 1, + "QRect": 2, + "QPainter": 2, + "QT_END_NAMESPACE": 1, + "QsciPrinter": 9, + "sub": 2, + "Qt": 1, + "QPrinter": 3, + "able": 1, + "print": 4, + "text": 5, + "Scintilla": 2, + "further": 1, + "classed": 1, + "alter": 1, + "layout": 1, + "adding": 2, + "headers": 3, + "footers": 2, + "example.": 1, + "Constructs": 1, + "printer": 1, + "paint": 1, + "device": 1, + "mode": 4, + "mode.": 1, + "PrinterMode": 1, + "ScreenResolution": 1, + "Destroys": 1, + "Format": 1, + "page": 4, + "example": 1, + "before": 1, + "drawn": 2, + "on": 1, + "painter": 4, + "used": 4, + "add": 3, + "customised": 2, + "graphics.": 2, + "drawing": 4, + "actually": 1, + "being": 2, + "rather": 1, + "than": 1, + "sized.": 1, + "methods": 1, + "must": 1, + "only": 1, + "called": 1, + "when": 5, + "true.": 1, + "area": 5, + "draw": 1, + "text.": 3, + "should": 1, + "necessary": 1, + "reserve": 1, + "By": 1, + "relative": 1, + "printable": 1, + "Use": 1, + "setFullPage": 1, + "because": 2, + "calling": 1, + "printRange": 2, + "you": 1, + "want": 2, + "try": 1, + "over": 1, + "pagenr": 2, + "number": 3, + "numbered": 1, + "formatPage": 1, + "points": 2, + "each": 2, + "font": 2, + "printing.": 2, + "setMagnification": 2, + "magnification": 3, + "mag": 2, + "Sets": 2, + "printing": 2, + "magnification.": 1, + "Print": 1, + "range": 1, + "qsb.": 1, + "negative": 2, + "signifies": 2, + "returned": 2, + "there": 1, + "no": 1, + "error.": 1, + "*qsb": 1, + "wrap": 4, + "WrapWord.": 1, + "setWrapMode": 2, + "WrapMode": 3, + "wrapMode": 2, + "wmode.": 1, + "wmode": 1, + "v8": 9, + "Scanner": 16, + "UnicodeCache*": 4, + "unicode_cache": 3, + "unicode_cache_": 10, + "octal_pos_": 5, + "Location": 14, + "harmony_scoping_": 4, + "harmony_modules_": 4, + "Initialize": 4, + "Utf16CharacterStream*": 3, + "source_": 7, + "Init": 3, + "has_line_terminator_before_next_": 9, + "SkipWhiteSpace": 4, + "Scan": 5, + "uc32": 19, + "ScanHexNumber": 2, + "expected_length": 4, + "ASSERT": 17, + "prevent": 1, + "overflow": 1, + "digits": 3, + "c0_": 64, + "d": 8, + "HexValue": 2, + "j": 4, + "PushBack": 8, + "Advance": 44, + "STATIC_ASSERT": 5, + "Token": 212, + "NUM_TOKENS": 1, + "byte": 1, + "one_char_tokens": 2, + "ILLEGAL": 120, + "LPAREN": 2, + "RPAREN": 2, + "COMMA": 2, + "COLON": 2, + "SEMICOLON": 2, + "CONDITIONAL": 2, + "f": 5, + "LBRACK": 2, + "RBRACK": 2, + "LBRACE": 2, + "RBRACE": 2, + "BIT_NOT": 2, + "Value": 23, + "Next": 3, + "current_": 2, + "next_": 2, + "has_multiline_comment_before_next_": 5, + "static_cast": 7, + "token": 64, + "<Token::Value>": 1, + "pos": 12, + "source_pos": 10, + "next_.token": 3, + "next_.location.beg_pos": 3, + "next_.location.end_pos": 4, + "current_.token": 4, + "IsByteOrderMark": 2, + "xFEFF": 1, + "xFFFE": 1, + "start_position": 2, + "IsWhiteSpace": 2, + "IsLineTerminator": 6, + "SkipSingleLineComment": 6, + "undo": 4, + "WHITESPACE": 6, + "SkipMultiLineComment": 3, + "ch": 5, + "ScanHtmlComment": 3, + "LT": 2, + "next_.literal_chars": 13, + "ScanString": 3, + "LTE": 1, + "ASSIGN_SHL": 1, + "SHL": 1, + "GTE": 1, + "ASSIGN_SAR": 1, + "ASSIGN_SHR": 1, + "SHR": 1, + "SAR": 1, + "GT": 1, + "EQ_STRICT": 1, + "EQ": 1, + "ASSIGN": 1, + "NE_STRICT": 1, + "NE": 1, + "NOT": 1, + "INC": 1, + "ASSIGN_ADD": 1, + "ADD": 1, + "DEC": 1, + "ASSIGN_SUB": 1, + "SUB": 1, + "ASSIGN_MUL": 1, + "MUL": 1, + "ASSIGN_MOD": 1, + "MOD": 1, + "ASSIGN_DIV": 1, + "DIV": 1, + "AND": 1, + "ASSIGN_BIT_AND": 1, + "BIT_AND": 1, + "OR": 1, + "ASSIGN_BIT_OR": 1, + "BIT_OR": 1, + "ASSIGN_BIT_XOR": 1, + "BIT_XOR": 1, + "IsDecimalDigit": 2, + "ScanNumber": 3, + "PERIOD": 1, + "IsIdentifierStart": 2, + "ScanIdentifierOrKeyword": 2, + "EOS": 1, + "SeekForward": 4, + "current_pos": 4, + "ASSERT_EQ": 1, + "ScanEscape": 2, + "IsCarriageReturn": 2, + "IsLineFeed": 2, + "fall": 2, + "through": 2, + "v": 3, + "xx": 1, + "xxx": 1, + "error": 1, + "immediately": 1, + "octal": 1, + "escape": 1, + "quote": 3, + "consume": 2, + "LiteralScope": 4, + "literal": 2, + ".": 2, + "X": 2, + "E": 3, + "l": 1, + "p": 5, + "w": 1, + "keyword": 1, + "Unescaped": 1, + "in_character_class": 2, + "AddLiteralCharAdvance": 3, + "literal.Complete": 2, + "ScanLiteralUnicodeEscape": 3, + "V8_SCANNER_H_": 3, + "ParsingFlags": 1, + "kNoParsingFlags": 1, + "kLanguageModeMask": 4, + "kAllowLazy": 1, + "kAllowNativesSyntax": 1, + "kAllowModules": 1, + "CLASSIC_MODE": 2, + "STRICT_MODE": 2, + "EXTENDED_MODE": 2, + "detect": 1, + "x16": 1, + "x36.": 1, + "Utf16CharacterStream": 3, + "pos_": 6, + "buffer_cursor_": 5, + "buffer_end_": 3, + "ReadBlock": 2, + "<uc32>": 1, + "kEndOfInput": 2, + "code_unit_count": 7, + "buffered_chars": 2, + "SlowSeekForward": 2, + "int32_t": 1, + "code_unit": 6, + "uc16*": 3, + "UnicodeCache": 3, + "unibrow": 11, + "Utf8InputBuffer": 2, + "<1024>": 2, + "Utf8Decoder": 2, + "StaticResource": 2, + "<Utf8Decoder>": 2, + "utf8_decoder": 1, + "utf8_decoder_": 2, + "uchar": 4, + "kIsIdentifierStart.get": 1, + "IsIdentifierPart": 1, + "kIsIdentifierPart.get": 1, + "kIsLineTerminator.get": 1, + "kIsWhiteSpace.get": 1, + "Predicate": 4, + "<IdentifierStart,>": 1, + "128": 4, + "kIsIdentifierStart": 1, + "<IdentifierPart,>": 1, + "kIsIdentifierPart": 1, + "<unibrow::LineTerminator,>": 1, + "kIsLineTerminator": 1, + "<unibrow::WhiteSpace,>": 1, + "kIsWhiteSpace": 1, + "DISALLOW_COPY_AND_ASSIGN": 2, + "LiteralBuffer": 6, + "is_ascii_": 10, + "position_": 17, + "backing_store_": 7, + "backing_store_.length": 4, + "backing_store_.Dispose": 3, + "INLINE": 2, + "AddChar": 2, + "uint32_t": 8, + "ExpandBuffer": 2, + "kMaxAsciiCharCodeU": 1, + "<byte>": 6, + "kASCIISize": 1, + "ConvertToUtf16": 2, + "*reinterpret_cast": 1, + "<uc16*>": 2, + "kUC16Size": 2, + "is_ascii": 3, + "Vector": 13, + "uc16": 5, + "utf16_literal": 3, + "backing_store_.start": 5, + "ascii_literal": 3, + "length": 8, + "kInitialCapacity": 2, + "kGrowthFactory": 2, + "kMinConversionSlack": 1, + "kMaxGrowth": 2, + "MB": 1, + "NewCapacity": 3, + "min_capacity": 2, + "capacity": 3, + "Max": 1, + "new_capacity": 2, + "Min": 1, + "new_store": 6, + "memcpy": 1, + "new_store.start": 3, + "new_content_size": 4, + "src": 2, + "<char*>": 1, + "dst": 2, + "Scanner*": 2, + "self": 5, + "scanner_": 5, + "complete_": 4, + "StartLiteral": 2, + "DropLiteral": 2, + "Complete": 1, + "TerminateLiteral": 2, + "beg_pos": 5, + "end_pos": 4, + "kNoOctalLocation": 1, + "scanner_contants": 1, + "current_token": 1, + "location": 4, + "current_.location": 2, + "literal_ascii_string": 1, + "ASSERT_NOT_NULL": 9, + "current_.literal_chars": 11, + "literal_utf16_string": 1, + "is_literal_ascii": 1, + "literal_length": 1, + "literal_contains_escapes": 1, + "source_length": 3, + "location.end_pos": 1, + "location.beg_pos": 1, + "STRING": 1, + "peek": 1, + "peek_location": 1, + "next_.location": 1, + "next_literal_ascii_string": 1, + "next_literal_utf16_string": 1, + "is_next_literal_ascii": 1, + "next_literal_length": 1, + "kCharacterLookaheadBufferSize": 3, + "ScanOctalEscape": 1, + "octal_position": 1, + "clear_octal_position": 1, + "HarmonyScoping": 1, + "SetHarmonyScoping": 1, + "scoping": 2, + "HarmonyModules": 1, + "SetHarmonyModules": 1, + "modules": 2, + "HasAnyLineTerminatorBeforeNext": 1, + "ScanRegExpPattern": 1, + "seen_equal": 1, + "ScanRegExpFlags": 1, + "IsIdentifier": 1, + "CharacterStream*": 1, + "buffer": 1, + "TokenDesc": 3, + "LiteralBuffer*": 2, + "literal_chars": 1, + "free_buffer": 3, + "literal_buffer1_": 3, + "literal_buffer2_": 2, + "AddLiteralChar": 2, + "tok": 2, + "else_": 2, + "ScanDecimalDigits": 1, + "seen_period": 1, + "ScanIdentifierSuffix": 1, + "LiteralScope*": 1, + "ScanIdentifierUnicodeEscape": 1, + "desc": 2, + "as": 1, + "look": 1, + "ahead": 1, + "UTILS_H": 3, + "<QtGlobal>": 1, + "<QWebFrame>": 1, + "<QFile>": 1, + "QTemporaryFile": 1, + "showUsage": 1, + "QtMsgType": 1, + "type": 6, + "dump_path": 1, + "minidump_id": 1, + "void*": 1, + "context": 8, + "succeeded": 1, + "QVariant": 1, + "coffee2js": 1, + "script": 1, + "injectJsInFrame": 2, + "jsFilePath": 5, + "libraryPath": 5, + "QWebFrame": 4, + "*targetFrame": 4, + "startingScript": 2, + "Encoding": 3, + "jsFileEnc": 2, + "readResourceFileUtf8": 1, + "resourceFilePath": 1, + "loadJSForDebug": 2, + "autorun": 2, + "cleanupFromDebug": 1, + "findScript": 1, + "jsFromScriptFile": 1, + "scriptPath": 1, + "enc": 1, + "shouldn": 1, + "instantiated": 1, + "QTemporaryFile*": 2, + "m_tempHarness": 1, + "We": 1, + "make": 1, + "sure": 1, + "clean": 1, + "after": 1, + "ourselves": 1, + "m_tempWrapper": 1, + "V8_DECLARE_ONCE": 1, + "init_once": 2, + "V8": 21, + "is_running_": 6, + "has_been_set_up_": 4, + "has_been_disposed_": 6, + "has_fatal_error_": 5, + "use_crankshaft_": 6, + "List": 3, + "<CallCompletedCallback>": 3, + "call_completed_callbacks_": 16, + "LazyMutex": 1, + "entropy_mutex": 1, + "LAZY_MUTEX_INITIALIZER": 1, + "EntropySource": 3, + "entropy_source": 4, + "Deserializer*": 2, + "des": 3, + "FlagList": 1, + "EnforceFlagImplications": 1, + "InitializeOncePerProcess": 4, + "Isolate": 9, + "CurrentPerIsolateThreadData": 4, + "EnterDefaultIsolate": 1, + "thread_id": 1, + ".Equals": 1, + "ThreadId": 1, + "Current": 5, + "isolate": 15, + "IsDead": 2, + "Isolate*": 6, + "SetFatalError": 2, + "TearDown": 5, + "IsDefaultIsolate": 1, + "ElementsAccessor": 2, + "LOperand": 2, + "TearDownCaches": 1, + "RegisteredExtension": 1, + "UnregisterAll": 1, + "OS": 3, + "seed_random": 2, + "uint32_t*": 2, + "state": 15, + "FLAG_random_seed": 2, + "val": 3, + "ScopedLock": 1, + "lock": 1, + "entropy_mutex.Pointer": 1, + "random": 1, + "random_base": 3, + "xFFFF": 2, + "FFFF": 1, + "SetEntropySource": 2, + "SetReturnAddressLocationResolver": 3, + "ReturnAddressLocationResolver": 2, + "resolver": 3, + "StackFrame": 1, + "Random": 3, + "Context*": 4, + "IsGlobalContext": 1, + "ByteArray*": 1, + "seed": 2, + "random_seed": 1, + "<uint32_t*>": 1, + "GetDataStartAddress": 1, + "RandomPrivate": 2, + "private_random_seed": 1, + "IdleNotification": 3, + "hint": 3, + "FLAG_use_idle_notification": 1, + "HEAP": 1, + "AddCallCompletedCallback": 2, + "CallCompletedCallback": 4, + "callback": 7, + "Lazy": 1, + "init.": 1, + "Add": 1, + "RemoveCallCompletedCallback": 2, + "Remove": 1, + "FireCallCompletedCallback": 2, + "HandleScopeImplementer*": 1, + "handle_scope_implementer": 5, + "CallDepthIsZero": 1, + "IncrementCallDepth": 1, + "DecrementCallDepth": 1, + "union": 1, + "double": 23, + "double_value": 1, + "uint64_t": 2, + "uint64_t_value": 1, + "double_int_union": 2, + "Object*": 4, + "FillHeapNumberWithRandom": 2, + "heap_number": 4, + "random_bits": 2, + "binary_million": 3, + "r.double_value": 3, + "r.uint64_t_value": 1, + "HeapNumber": 1, + "cast": 1, + "set_value": 1, + "InitializeOncePerProcessImpl": 3, + "SetUp": 4, + "FLAG_crankshaft": 1, + "Serializer": 1, + "enabled": 1, + "CPU": 2, + "SupportsCrankshaft": 1, + "PostSetUp": 1, + "RuntimeProfiler": 1, + "GlobalSetUp": 1, + "FLAG_stress_compaction": 1, + "FLAG_force_marking_deque_overflows": 1, + "FLAG_gc_global": 1, + "FLAG_max_new_space_size": 1, + "kPageSizeBits": 1, + "SetUpCaches": 1, + "SetUpJSCallerSavedCodeData": 1, + "SamplerRegistry": 1, + "ExternalReference": 1, + "CallOnce": 1, + "V8_V8_H_": 3, + "defined": 21, + "GOOGLE3": 2, + "DEBUG": 3, + "NDEBUG": 4, + "both": 1, + "set": 1, + "Deserializer": 1, + "AllStatic": 1, + "IsRunning": 1, + "UseCrankshaft": 1, + "FatalProcessOutOfMemory": 1, + "take_snapshot": 1, + "NilValue": 1, + "kNullValue": 1, + "kUndefinedValue": 1, + "EqualityKind": 1, + "kStrictEquality": 1, + "kNonStrictEquality": 1, + "PY_SSIZE_T_CLEAN": 1, + "Py_PYTHON_H": 1, + "Python": 1, + "needed": 1, + "compile": 1, + "C": 1, + "extensions": 1, + "please": 1, + "install": 1, + "development": 1, + "Python.": 1, + "#else": 24, + "<stddef.h>": 1, + "offsetof": 2, + "member": 2, + "type*": 1, + "WIN32": 2, + "MS_WINDOWS": 2, + "__stdcall": 2, + "__cdecl": 2, + "__fastcall": 2, + "DL_IMPORT": 2, + "DL_EXPORT": 2, + "PY_LONG_LONG": 5, + "LONG_LONG": 1, + "PY_VERSION_HEX": 9, + "METH_COEXIST": 1, + "PyDict_CheckExact": 1, + "op": 6, + "Py_TYPE": 4, + "PyDict_Type": 1, + "PyDict_Contains": 1, + "o": 20, + "PySequence_Contains": 1, + "Py_ssize_t": 17, + "PY_SSIZE_T_MAX": 1, + "INT_MAX": 1, + "PY_SSIZE_T_MIN": 1, + "INT_MIN": 1, + "PY_FORMAT_SIZE_T": 1, + "PyInt_FromSsize_t": 2, + "z": 46, + "PyInt_FromLong": 13, + "PyInt_AsSsize_t": 2, + "PyInt_AsLong": 2, + "PyNumber_Index": 1, + "PyNumber_Int": 1, + "PyIndex_Check": 1, + "PyNumber_Check": 1, + "PyErr_WarnEx": 1, + "category": 2, + "message": 2, + "stacklevel": 1, + "PyErr_Warn": 1, + "Py_REFCNT": 1, + "ob": 6, + "PyObject*": 16, + "ob_refcnt": 1, + "ob_type": 7, + "Py_SIZE": 1, + "PyVarObject*": 1, + "ob_size": 1, + "PyVarObject_HEAD_INIT": 1, + "PyObject_HEAD_INIT": 1, + "PyType_Modified": 1, + "*buf": 1, + "PyObject": 221, + "*obj": 2, + "len": 1, + "itemsize": 2, + "readonly": 2, + "ndim": 2, + "*format": 1, + "*shape": 1, + "*strides": 1, + "*suboffsets": 1, + "*internal": 1, + "Py_buffer": 5, + "PyBUF_SIMPLE": 1, + "PyBUF_WRITABLE": 1, + "PyBUF_FORMAT": 1, + "PyBUF_ND": 2, + "PyBUF_STRIDES": 5, + "PyBUF_C_CONTIGUOUS": 3, + "PyBUF_F_CONTIGUOUS": 3, + "PyBUF_ANY_CONTIGUOUS": 1, + "PyBUF_INDIRECT": 1, + "PY_MAJOR_VERSION": 10, + "__Pyx_BUILTIN_MODULE_NAME": 2, + "Py_TPFLAGS_CHECKTYPES": 1, + "Py_TPFLAGS_HAVE_INDEX": 1, + "Py_TPFLAGS_HAVE_NEWBUFFER": 1, + "PyBaseString_Type": 1, + "PyUnicode_Type": 2, + "PyStringObject": 2, + "PyUnicodeObject": 1, + "PyString_Type": 2, + "PyString_Check": 2, + "PyUnicode_Check": 1, + "PyString_CheckExact": 2, + "PyUnicode_CheckExact": 1, + "PyBytesObject": 1, + "PyBytes_Type": 1, + "PyBytes_Check": 1, + "PyBytes_CheckExact": 1, + "PyBytes_FromString": 2, + "PyString_FromString": 1, + "PyBytes_FromStringAndSize": 1, + "PyString_FromStringAndSize": 1, + "PyBytes_FromFormat": 1, + "PyString_FromFormat": 1, + "PyBytes_DecodeEscape": 1, + "PyString_DecodeEscape": 1, + "PyBytes_AsString": 2, + "PyString_AsString": 1, + "PyBytes_AsStringAndSize": 1, + "PyString_AsStringAndSize": 1, + "PyBytes_Size": 1, + "PyString_Size": 1, + "PyBytes_AS_STRING": 1, + "PyString_AS_STRING": 1, + "PyBytes_GET_SIZE": 1, + "PyString_GET_SIZE": 1, + "PyBytes_Repr": 1, + "PyString_Repr": 1, + "PyBytes_Concat": 1, + "PyString_Concat": 1, + "PyBytes_ConcatAndDel": 1, + "PyString_ConcatAndDel": 1, + "PySet_Check": 1, + "obj": 42, + "PyObject_TypeCheck": 3, + "PySet_Type": 2, + "PyFrozenSet_Check": 1, + "PyFrozenSet_Type": 1, + "PySet_CheckExact": 2, + "__Pyx_TypeCheck": 1, + "PyTypeObject": 2, + "PyIntObject": 1, + "PyLongObject": 2, + "PyInt_Type": 1, + "PyLong_Type": 1, + "PyInt_Check": 1, + "PyLong_Check": 1, + "PyInt_CheckExact": 1, + "PyLong_CheckExact": 1, + "PyInt_FromString": 1, + "PyLong_FromString": 1, + "PyInt_FromUnicode": 1, + "PyLong_FromUnicode": 1, + "PyLong_FromLong": 1, + "PyInt_FromSize_t": 1, + "PyLong_FromSize_t": 1, + "PyLong_FromSsize_t": 1, + "PyLong_AsLong": 1, + "PyInt_AS_LONG": 1, + "PyLong_AS_LONG": 1, + "PyLong_AsSsize_t": 1, + "PyInt_AsUnsignedLongMask": 1, + "PyLong_AsUnsignedLongMask": 1, + "PyInt_AsUnsignedLongLongMask": 1, + "PyLong_AsUnsignedLongLongMask": 1, + "PyBoolObject": 1, + "__Pyx_PyNumber_Divide": 2, + "PyNumber_TrueDivide": 1, + "__Pyx_PyNumber_InPlaceDivide": 2, + "PyNumber_InPlaceTrueDivide": 1, + "PyNumber_Divide": 1, + "PyNumber_InPlaceDivide": 1, + "__Pyx_PySequence_GetSlice": 2, + "PySequence_GetSlice": 2, + "__Pyx_PySequence_SetSlice": 2, + "PySequence_SetSlice": 2, + "__Pyx_PySequence_DelSlice": 2, + "PySequence_DelSlice": 2, + "unlikely": 69, + "PyErr_SetString": 4, + "PyExc_SystemError": 3, + "likely": 15, + "tp_as_mapping": 3, + "PyErr_Format": 4, + "PyExc_TypeError": 5, + "tp_name": 4, + "PyMethod_New": 2, + "func": 3, + "klass": 1, + "PyInstanceMethod_New": 1, + "__Pyx_GetAttrString": 2, + "PyObject_GetAttrString": 3, + "__Pyx_SetAttrString": 2, + "PyObject_SetAttrString": 2, + "__Pyx_DelAttrString": 2, + "PyObject_DelAttrString": 2, + "__Pyx_NAMESTR": 3, + "__Pyx_DOCSTR": 3, + "__cplusplus": 10, + "__PYX_EXTERN_C": 2, + "_USE_MATH_DEFINES": 1, + "<math.h>": 1, + "__PYX_HAVE_API__wrapper_inner": 1, + "PYREX_WITHOUT_ASSERTIONS": 1, + "CYTHON_WITHOUT_ASSERTIONS": 1, + "CYTHON_INLINE": 68, + "__GNUC__": 5, + "__inline__": 1, + "#elif": 3, + "__inline": 1, + "__STDC_VERSION__": 2, + "L": 1, + "CYTHON_UNUSED": 7, + "**p": 1, + "*s": 1, + "long": 5, + "encoding": 1, + "is_unicode": 1, + "is_str": 1, + "intern": 1, + "__Pyx_StringTabEntry": 1, + "__Pyx_PyBytes_FromUString": 1, + "__Pyx_PyBytes_AsUString": 1, + "__Pyx_PyBool_FromLong": 1, + "Py_INCREF": 3, + "Py_True": 2, + "Py_False": 2, + "__Pyx_PyObject_IsTrue": 8, + "__Pyx_PyNumber_Int": 1, + "__Pyx_PyIndex_AsSsize_t": 1, + "__Pyx_PyInt_FromSize_t": 1, + "__Pyx_PyInt_AsSize_t": 1, + "__pyx_PyFloat_AsDouble": 3, + "PyFloat_CheckExact": 1, + "PyFloat_AS_DOUBLE": 1, + "PyFloat_AsDouble": 1, + "__GNUC_MINOR__": 1, + "__builtin_expect": 2, + "*__pyx_m": 1, + "*__pyx_b": 1, + "*__pyx_empty_tuple": 1, + "*__pyx_empty_bytes": 1, + "__pyx_lineno": 80, + "__pyx_clineno": 80, + "__pyx_cfilenm": 1, + "__FILE__": 2, + "*__pyx_filename": 1, + "CYTHON_CCOMPLEX": 12, + "_Complex_I": 3, + "<complex>": 1, + "<complex.h>": 1, + "__sun__": 1, + "fj": 1, + "*__pyx_f": 1, + "npy_int8": 1, + "__pyx_t_5numpy_int8_t": 1, + "npy_int16": 1, + "__pyx_t_5numpy_int16_t": 1, + "npy_int32": 1, + "__pyx_t_5numpy_int32_t": 1, + "npy_int64": 1, + "__pyx_t_5numpy_int64_t": 1, + "npy_uint8": 1, + "__pyx_t_5numpy_uint8_t": 1, + "npy_uint16": 1, + "__pyx_t_5numpy_uint16_t": 1, + "npy_uint32": 1, + "__pyx_t_5numpy_uint32_t": 1, + "npy_uint64": 1, + "__pyx_t_5numpy_uint64_t": 1, + "npy_float32": 1, + "__pyx_t_5numpy_float32_t": 1, + "npy_float64": 1, + "__pyx_t_5numpy_float64_t": 1, + "npy_long": 1, + "__pyx_t_5numpy_int_t": 1, + "npy_longlong": 1, + "__pyx_t_5numpy_long_t": 1, + "npy_intp": 10, + "__pyx_t_5numpy_intp_t": 1, + "npy_uintp": 1, + "__pyx_t_5numpy_uintp_t": 1, + "npy_ulong": 1, + "__pyx_t_5numpy_uint_t": 1, + "npy_ulonglong": 1, + "__pyx_t_5numpy_ulong_t": 1, + "npy_double": 2, + "__pyx_t_5numpy_float_t": 1, + "__pyx_t_5numpy_double_t": 1, + "npy_longdouble": 1, + "__pyx_t_5numpy_longdouble_t": 1, + "complex": 2, + "__pyx_t_float_complex": 27, + "_Complex": 2, + "real": 2, + "imag": 2, + "__pyx_t_double_complex": 27, + "npy_cfloat": 1, + "__pyx_t_5numpy_cfloat_t": 1, + "npy_cdouble": 2, + "__pyx_t_5numpy_cdouble_t": 1, + "npy_clongdouble": 1, + "__pyx_t_5numpy_clongdouble_t": 1, + "__pyx_t_5numpy_complex_t": 1, + "CYTHON_REFNANNY": 3, + "__Pyx_RefNannyAPIStruct": 4, + "*__Pyx_RefNanny": 1, + "__Pyx_RefNannyImportAPI": 1, + "*modname": 1, + "*m": 1, + "*p": 1, + "*r": 1, + "m": 4, + "PyImport_ImportModule": 1, + "modname": 1, + "PyLong_AsVoidPtr": 1, + "Py_XDECREF": 3, + "__Pyx_RefNannySetupContext": 13, + "*__pyx_refnanny": 1, + "__Pyx_RefNanny": 6, + "SetupContext": 1, + "__LINE__": 84, + "__Pyx_RefNannyFinishContext": 12, + "FinishContext": 1, + "__pyx_refnanny": 5, + "__Pyx_INCREF": 36, + "INCREF": 1, + "__Pyx_DECREF": 66, + "DECREF": 1, + "__Pyx_GOTREF": 60, + "GOTREF": 1, + "__Pyx_GIVEREF": 10, + "GIVEREF": 1, + "__Pyx_XDECREF": 26, + "Py_DECREF": 1, + "__Pyx_XGIVEREF": 7, + "__Pyx_XGOTREF": 1, + "__Pyx_TypeTest": 4, + "*type": 3, + "*__Pyx_GetName": 1, + "*dict": 1, + "__Pyx_ErrRestore": 1, + "*value": 2, + "*tb": 2, + "__Pyx_ErrFetch": 1, + "**type": 1, + "**value": 1, + "**tb": 1, + "__Pyx_Raise": 8, + "__Pyx_RaiseNoneNotIterableError": 1, + "__Pyx_RaiseNeedMoreValuesError": 1, + "index": 2, + "__Pyx_RaiseTooManyValuesError": 1, + "expected": 1, + "__Pyx_UnpackTupleError": 2, + "*__Pyx_Import": 1, + "*from_list": 1, + "__Pyx_Print": 1, + "__pyx_print": 1, + "__pyx_print_kwargs": 1, + "__Pyx_PrintOne": 4, + "*o": 1, + "*__Pyx_PyInt_to_py_Py_intptr_t": 1, + "Py_intptr_t": 1, + "__Pyx_CREAL": 4, + ".real": 3, + "__Pyx_CIMAG": 4, + ".imag": 3, + "__real__": 1, + "__imag__": 1, + "_WIN32": 1, + "__Pyx_SET_CREAL": 2, + "__Pyx_SET_CIMAG": 2, + "__pyx_t_float_complex_from_parts": 1, + "__Pyx_c_eqf": 2, + "__Pyx_c_sumf": 2, + "__Pyx_c_difff": 2, + "__Pyx_c_prodf": 2, + "__Pyx_c_quotf": 2, + "__Pyx_c_negf": 2, + "__Pyx_c_is_zerof": 3, + "__Pyx_c_conjf": 3, + "conj": 3, + "__Pyx_c_absf": 3, + "abs": 2, + "__Pyx_c_powf": 3, + "pow": 2, + "conjf": 1, + "cabsf": 1, + "cpowf": 1, + "__pyx_t_double_complex_from_parts": 1, + "__Pyx_c_eq": 2, + "__Pyx_c_sum": 2, + "__Pyx_c_diff": 2, + "__Pyx_c_prod": 2, + "__Pyx_c_quot": 2, + "__Pyx_c_neg": 2, + "__Pyx_c_is_zero": 3, + "__Pyx_c_conj": 3, + "__Pyx_c_abs": 3, + "__Pyx_c_pow": 3, + "cabs": 1, + "cpow": 1, + "__Pyx_PyInt_AsUnsignedChar": 1, + "short": 3, + "__Pyx_PyInt_AsUnsignedShort": 1, + "__Pyx_PyInt_AsUnsignedInt": 1, + "__Pyx_PyInt_AsChar": 1, + "__Pyx_PyInt_AsShort": 1, + "__Pyx_PyInt_AsInt": 1, + "signed": 5, + "__Pyx_PyInt_AsSignedChar": 1, + "__Pyx_PyInt_AsSignedShort": 1, + "__Pyx_PyInt_AsSignedInt": 1, + "__Pyx_PyInt_AsLongDouble": 1, + "__Pyx_PyInt_AsUnsignedLong": 1, + "__Pyx_PyInt_AsUnsignedLongLong": 1, + "__Pyx_PyInt_AsLong": 1, + "__Pyx_PyInt_AsLongLong": 1, + "__Pyx_PyInt_AsSignedLong": 1, + "__Pyx_PyInt_AsSignedLongLong": 1, + "__Pyx_WriteUnraisable": 3, + "__Pyx_ExportFunction": 1, + "*__pyx_f_5numpy_PyArray_MultiIterNew2": 2, + "*__pyx_f_5numpy_PyArray_MultiIterNew3": 2, + "*__pyx_f_5numpy_PyArray_MultiIterNew4": 2, + "*__pyx_f_5numpy_PyArray_MultiIterNew5": 2, + "*__pyx_f_5numpy__util_dtypestring": 2, + "PyArray_Descr": 6, + "__pyx_f_5numpy_set_array_base": 1, + "PyArrayObject": 19, + "*__pyx_f_5numpy_get_array_base": 1, + "inner_work_1d": 2, + "inner_work_2d": 2, + "__Pyx_MODULE_NAME": 1, + "__pyx_module_is_main_wrapper_inner": 1, + "*__pyx_builtin_ValueError": 1, + "*__pyx_builtin_range": 1, + "*__pyx_builtin_RuntimeError": 1, + "__pyx_k_1": 1, + "__pyx_k_2": 1, + "__pyx_k_3": 1, + "__pyx_k_5": 1, + "__pyx_k_7": 1, + "__pyx_k_9": 1, + "__pyx_k_11": 1, + "__pyx_k_12": 1, + "__pyx_k_15": 1, + "__pyx_k__B": 2, + "__pyx_k__H": 2, + "__pyx_k__I": 2, + "__pyx_k__L": 2, + "__pyx_k__O": 2, + "__pyx_k__Q": 2, + "__pyx_k__b": 2, + "__pyx_k__d": 2, + "__pyx_k__f": 2, + "__pyx_k__g": 2, + "__pyx_k__h": 2, + "__pyx_k__i": 2, + "__pyx_k__l": 2, + "__pyx_k__q": 2, + "__pyx_k__Zd": 2, + "__pyx_k__Zf": 2, + "__pyx_k__Zg": 2, + "__pyx_k__np": 1, + "__pyx_k__buf": 1, + "__pyx_k__obj": 1, + "__pyx_k__base": 1, + "__pyx_k__ndim": 1, + "__pyx_k__ones": 1, + "__pyx_k__descr": 1, + "__pyx_k__names": 1, + "__pyx_k__numpy": 1, + "__pyx_k__range": 1, + "__pyx_k__shape": 1, + "__pyx_k__fields": 1, + "__pyx_k__format": 1, + "__pyx_k__strides": 1, + "__pyx_k____main__": 1, + "__pyx_k____test__": 1, + "__pyx_k__itemsize": 1, + "__pyx_k__readonly": 1, + "__pyx_k__type_num": 1, + "__pyx_k__byteorder": 1, + "__pyx_k__ValueError": 1, + "__pyx_k__suboffsets": 1, + "__pyx_k__work_module": 1, + "__pyx_k__RuntimeError": 1, + "__pyx_k__pure_py_test": 1, + "__pyx_k__wrapper_inner": 1, + "__pyx_k__do_awesome_work": 1, + "*__pyx_kp_s_1": 1, + "*__pyx_kp_u_11": 1, + "*__pyx_kp_u_12": 1, + "*__pyx_kp_u_15": 1, + "*__pyx_kp_s_2": 1, + "*__pyx_kp_s_3": 1, + "*__pyx_kp_u_5": 1, + "*__pyx_kp_u_7": 1, + "*__pyx_kp_u_9": 1, + "*__pyx_n_s__RuntimeError": 1, + "*__pyx_n_s__ValueError": 1, + "*__pyx_n_s____main__": 1, + "*__pyx_n_s____test__": 1, + "*__pyx_n_s__base": 1, + "*__pyx_n_s__buf": 1, + "*__pyx_n_s__byteorder": 1, + "*__pyx_n_s__descr": 1, + "*__pyx_n_s__do_awesome_work": 1, + "*__pyx_n_s__fields": 1, + "*__pyx_n_s__format": 1, + "*__pyx_n_s__itemsize": 1, + "*__pyx_n_s__names": 1, + "*__pyx_n_s__ndim": 1, + "*__pyx_n_s__np": 1, + "*__pyx_n_s__numpy": 1, + "*__pyx_n_s__obj": 1, + "*__pyx_n_s__ones": 1, + "*__pyx_n_s__pure_py_test": 1, + "*__pyx_n_s__range": 1, + "*__pyx_n_s__readonly": 1, + "*__pyx_n_s__shape": 1, + "*__pyx_n_s__strides": 1, + "*__pyx_n_s__suboffsets": 1, + "*__pyx_n_s__type_num": 1, + "*__pyx_n_s__work_module": 1, + "*__pyx_n_s__wrapper_inner": 1, + "*__pyx_int_5": 1, + "*__pyx_int_15": 1, + "*__pyx_k_tuple_4": 1, + "*__pyx_k_tuple_6": 1, + "*__pyx_k_tuple_8": 1, + "*__pyx_k_tuple_10": 1, + "*__pyx_k_tuple_13": 1, + "*__pyx_k_tuple_14": 1, + "*__pyx_k_tuple_16": 1, + "__pyx_v_num_x": 4, + "*__pyx_v_data_ptr": 2, + "*__pyx_v_answer_ptr": 2, + "__pyx_v_nd": 6, + "*__pyx_v_dims": 2, + "__pyx_v_typenum": 6, + "*__pyx_v_data_np": 2, + "__pyx_v_sum": 6, + "__pyx_t_1": 154, + "*__pyx_t_2": 4, + "*__pyx_t_3": 4, + "*__pyx_t_4": 3, + "__pyx_t_5": 75, + "__pyx_kp_s_1": 1, + "__pyx_filename": 79, + "__pyx_f": 79, + "__pyx_L1_error": 88, + "__pyx_v_dims": 4, + "NPY_DOUBLE": 3, + "__pyx_t_2": 120, + "PyArray_SimpleNewFromData": 2, + "__pyx_v_data_ptr": 2, + "Py_None": 38, + "__pyx_ptype_5numpy_ndarray": 2, + "__pyx_v_data_np": 10, + "__Pyx_GetName": 4, + "__pyx_m": 4, + "__pyx_n_s__work_module": 3, + "__pyx_t_3": 113, + "PyObject_GetAttr": 4, + "__pyx_n_s__do_awesome_work": 3, + "PyTuple_New": 4, + "PyTuple_SET_ITEM": 4, + "__pyx_t_4": 35, + "PyObject_Call": 11, + "PyErr_Occurred": 2, + "__pyx_v_answer_ptr": 2, + "__pyx_L0": 24, + "__pyx_v_num_y": 2, + "__pyx_kp_s_2": 1, + "*__pyx_pf_13wrapper_inner_pure_py_test": 2, + "*__pyx_self": 2, + "*unused": 2, + "PyMethodDef": 1, + "__pyx_mdef_13wrapper_inner_pure_py_test": 1, + "PyCFunction": 1, + "__pyx_pf_13wrapper_inner_pure_py_test": 1, + "METH_NOARGS": 1, + "*__pyx_v_data": 1, + "*__pyx_r": 7, + "*__pyx_t_1": 8, + "__pyx_self": 2, + "__pyx_v_data": 7, + "__pyx_kp_s_3": 1, + "__pyx_n_s__np": 1, + "__pyx_n_s__ones": 1, + "__pyx_k_tuple_4": 1, + "__pyx_r": 39, + "__Pyx_AddTraceback": 7, + "__pyx_pf_5numpy_7ndarray___getbuffer__": 2, + "*__pyx_v_self": 4, + "*__pyx_v_info": 4, + "__pyx_v_flags": 4, + "__pyx_v_copy_shape": 5, + "__pyx_v_i": 6, + "__pyx_v_ndim": 6, + "__pyx_v_endian_detector": 6, + "__pyx_v_little_endian": 8, + "__pyx_v_t": 29, + "*__pyx_v_f": 2, + "*__pyx_v_descr": 2, + "__pyx_v_offset": 9, + "__pyx_v_hasfields": 4, + "__pyx_t_6": 40, + "__pyx_t_7": 9, + "*__pyx_t_8": 1, + "*__pyx_t_9": 1, + "__pyx_v_info": 33, + "__pyx_v_self": 16, + "PyArray_NDIM": 1, + "__pyx_L5": 6, + "PyArray_CHKFLAGS": 2, + "NPY_C_CONTIGUOUS": 1, + "__pyx_builtin_ValueError": 5, + "__pyx_k_tuple_6": 1, + "__pyx_L6": 6, + "NPY_F_CONTIGUOUS": 1, + "__pyx_k_tuple_8": 1, + "__pyx_L7": 2, + "buf": 1, + "PyArray_DATA": 1, + "strides": 5, + "malloc": 2, + "shape": 3, + "PyArray_STRIDES": 2, + "PyArray_DIMS": 2, + "__pyx_L8": 2, + "suboffsets": 1, + "PyArray_ITEMSIZE": 1, + "PyArray_ISWRITEABLE": 1, + "__pyx_v_f": 31, + "descr": 2, + "__pyx_v_descr": 10, + "PyDataType_HASFIELDS": 2, + "__pyx_L11": 7, + "type_num": 2, + "byteorder": 4, + "__pyx_k_tuple_10": 1, + "__pyx_L13": 2, + "NPY_BYTE": 2, + "__pyx_L14": 18, + "NPY_UBYTE": 2, + "NPY_SHORT": 2, + "NPY_USHORT": 2, + "NPY_INT": 2, + "NPY_UINT": 2, + "NPY_LONG": 1, + "NPY_ULONG": 1, + "NPY_LONGLONG": 1, + "NPY_ULONGLONG": 1, + "NPY_FLOAT": 1, + "NPY_LONGDOUBLE": 1, + "NPY_CFLOAT": 1, + "NPY_CDOUBLE": 1, + "NPY_CLONGDOUBLE": 1, + "NPY_OBJECT": 1, + "__pyx_t_8": 16, + "PyNumber_Remainder": 1, + "__pyx_kp_u_11": 1, + "format": 6, + "__pyx_L12": 2, + "__pyx_t_9": 7, + "__pyx_f_5numpy__util_dtypestring": 1, + "__pyx_L2": 2, + "__pyx_pf_5numpy_7ndarray_1__releasebuffer__": 2, + "PyArray_HASFIELDS": 1, + "free": 2, + "*__pyx_f_5numpy_PyArray_MultiIterNew1": 1, + "*__pyx_v_a": 5, + "PyArray_MultiIterNew": 5, + "__pyx_v_a": 5, + "*__pyx_v_b": 4, + "__pyx_v_b": 4, + "*__pyx_v_c": 3, + "__pyx_v_c": 3, + "*__pyx_v_d": 2, + "__pyx_v_d": 2, + "*__pyx_v_e": 1, + "__pyx_v_e": 1, + "*__pyx_v_end": 1, + "*__pyx_v_offset": 1, + "*__pyx_v_child": 1, + "*__pyx_v_fields": 1, + "*__pyx_v_childname": 1, + "*__pyx_v_new_offset": 1, + "*__pyx_v_t": 1, + "*__pyx_t_5": 1, + "__pyx_t_10": 7, + "*__pyx_t_11": 1, + "__pyx_v_child": 8, + "__pyx_v_fields": 7, + "__pyx_v_childname": 4, + "__pyx_v_new_offset": 5, + "names": 2, + "PyTuple_GET_SIZE": 2, + "PyTuple_GET_ITEM": 3, + "PyObject_GetItem": 1, + "fields": 1, + "PyTuple_CheckExact": 1, + "tuple": 3, + "__pyx_ptype_5numpy_dtype": 1, + "__pyx_v_end": 2, + "PyNumber_Subtract": 2, + "PyObject_RichCompare": 8, + "__pyx_int_15": 1, + "Py_LT": 2, + "__pyx_builtin_RuntimeError": 2, + "__pyx_k_tuple_13": 1, + "__pyx_k_tuple_14": 1, + "elsize": 1, + "__pyx_k_tuple_16": 1, + "__pyx_L10": 2, + "Py_EQ": 6 + }, + "Ceylon": { + "doc": 2, + "by": 1, + "shared": 5, + "void": 1, + "test": 1, + "(": 4, + ")": 4, + "{": 3, + "print": 1, + ";": 4, + "}": 3, + "class": 1, + "Test": 2, + "name": 4, + "satisfies": 1, + "Comparable": 1, + "<Test>": 1, + "String": 2, + "actual": 2, + "string": 1, + "Comparison": 1, + "compare": 1, + "other": 1, + "return": 1, + "<=>": 1, + "other.name": 1 + }, + "COBOL": { + "program": 1, + "-": 19, + "id.": 1, + "hello.": 3, + "procedure": 1, + "division.": 1, + "display": 1, + ".": 3, + "stop": 1, + "run.": 1, + "IDENTIFICATION": 2, + "DIVISION.": 4, + "PROGRAM": 2, + "ID.": 2, + "PROCEDURE": 2, + "DISPLAY": 2, + "STOP": 2, + "RUN.": 2, + "COBOL": 7, + "TEST": 2, + "RECORD.": 1, + "USAGES.": 1, + "COMP": 5, + "PIC": 5, + "S9": 4, + "(": 5, + ")": 5, + "COMP.": 3, + "COMP2": 2 + }, + "CoffeeScript": { + "CoffeeScript": 1, + "require": 21, + "CoffeeScript.require": 1, + "CoffeeScript.eval": 1, + "(": 193, + "code": 20, + "options": 16, + "{": 31, + "}": 34, + ")": 196, + "-": 107, + "options.bare": 2, + "on": 3, + "eval": 2, + "CoffeeScript.compile": 2, + "CoffeeScript.run": 3, + "Function": 1, + "return": 29, + "unless": 19, + "window": 1, + "CoffeeScript.load": 2, + "url": 2, + "callback": 35, + "xhr": 2, + "new": 12, + "window.ActiveXObject": 1, + "or": 22, + "XMLHttpRequest": 1, + "xhr.open": 1, + "true": 8, + "xhr.overrideMimeType": 1, + "if": 102, + "of": 7, + "xhr.onreadystatechange": 1, + "xhr.readyState": 1, + "is": 36, + "xhr.status": 1, + "in": 32, + "[": 134, + "]": 134, + "xhr.responseText": 1, + "else": 53, + "throw": 3, + "Error": 1, + "xhr.send": 1, + "null": 15, + "runScripts": 3, + "scripts": 2, + "document.getElementsByTagName": 1, + "coffees": 2, + "s": 10, + "for": 14, + "when": 16, + "s.type": 1, + "index": 4, + "length": 4, + "coffees.length": 1, + "do": 2, + "execute": 3, + "script": 7, + "+": 31, + ".type": 1, + "script.src": 2, + "script.innerHTML": 1, + "window.addEventListener": 1, + "addEventListener": 1, + "no": 3, + "attachEvent": 1, + "class": 11, + "Animal": 3, + "constructor": 6, + "@name": 2, + "move": 3, + "meters": 2, + "alert": 4, + "Snake": 2, + "extends": 6, + "super": 4, + "Horse": 2, + "sam": 1, + "tom": 1, + "sam.move": 1, + "tom.move": 1, + "#": 35, + "fs": 2, + "path": 3, + "Lexer": 3, + "RESERVED": 3, + "parser": 1, + "vm": 1, + "require.extensions": 3, + "module": 1, + "filename": 6, + "content": 4, + "compile": 5, + "fs.readFileSync": 1, + "module._compile": 1, + "require.registerExtension": 2, + "exports.VERSION": 1, + "exports.RESERVED": 1, + "exports.helpers": 2, + "exports.compile": 1, + "merge": 1, + "try": 3, + "js": 5, + "parser.parse": 3, + "lexer.tokenize": 3, + ".compile": 1, + "options.header": 1, + "catch": 2, + "err": 20, + "err.message": 2, + "options.filename": 5, + "header": 1, + "exports.tokens": 1, + "exports.nodes": 1, + "source": 5, + "typeof": 2, + "exports.run": 1, + "mainModule": 1, + "require.main": 1, + "mainModule.filename": 4, + "process.argv": 1, + "then": 24, + "fs.realpathSync": 2, + "mainModule.moduleCache": 1, + "and": 20, + "mainModule.paths": 1, + "._nodeModulePaths": 1, + "path.dirname": 2, + "path.extname": 1, + "isnt": 7, + "mainModule._compile": 2, + "exports.eval": 1, + "code.trim": 1, + "Script": 2, + "vm.Script": 1, + "options.sandbox": 4, + "instanceof": 2, + "Script.createContext": 2, + ".constructor": 1, + "sandbox": 8, + "k": 4, + "v": 4, + "own": 2, + "sandbox.global": 1, + "sandbox.root": 1, + "sandbox.GLOBAL": 1, + "global": 3, + "sandbox.__filename": 3, + "||": 3, + "sandbox.__dirname": 1, + "sandbox.module": 2, + "sandbox.require": 2, + "Module": 2, + "_module": 3, + "options.modulename": 1, + "_require": 2, + "Module._load": 1, + "_module.filename": 1, + "r": 4, + "Object.getOwnPropertyNames": 1, + "_require.paths": 1, + "_module.paths": 1, + "Module._nodeModulePaths": 1, + "process.cwd": 1, + "_require.resolve": 1, + "request": 2, + "Module._resolveFilename": 1, + "o": 4, + "o.bare": 1, + "ensure": 1, + "value": 25, + "vm.runInThisContext": 1, + "vm.runInContext": 1, + "lexer": 1, + "parser.lexer": 1, + "lex": 1, + "tag": 33, + "@yytext": 1, + "@yylineno": 1, + "@tokens": 7, + "@pos": 2, + "setInput": 1, + "upcomingInput": 1, + "parser.yy": 1, + "console.log": 1, + "number": 13, + "opposite": 2, + "square": 4, + "x": 6, + "*": 21, + "list": 2, + "math": 1, + "root": 1, + "Math.sqrt": 1, + "cube": 1, + "race": 1, + "winner": 2, + "runners...": 1, + "print": 1, + "runners": 1, + "elvis": 1, + "cubes": 1, + "math.cube": 1, + "num": 2, + "Rewriter": 2, + "INVERSES": 2, + "count": 5, + "starts": 1, + "compact": 1, + "last": 3, + "exports.Lexer": 1, + "tokenize": 1, + "opts": 1, + "WHITESPACE.test": 1, + "code.replace": 1, + "/": 44, + "r/g": 1, + ".replace": 3, + "TRAILING_SPACES": 2, + "@code": 1, + "The": 7, + "remainder": 1, + "the": 4, + "code.": 1, + "@line": 4, + "opts.line": 1, + "current": 5, + "line.": 1, + "@indent": 3, + "indentation": 3, + "level.": 3, + "@indebt": 1, + "over": 1, + "at": 2, + "@outdebt": 1, + "under": 1, + "outdentation": 1, + "@indents": 1, + "stack": 4, + "all": 1, + "levels.": 1, + "@ends": 1, + "pairing": 1, + "up": 1, + "tokens.": 1, + "Stream": 1, + "parsed": 1, + "tokens": 5, + "form": 1, + "line": 6, + ".": 13, + "i": 8, + "while": 4, + "@chunk": 9, + "i..": 1, + "@identifierToken": 1, + "@commentToken": 1, + "@whitespaceToken": 1, + "@lineToken": 1, + "@heredocToken": 1, + "@stringToken": 1, + "@numberToken": 1, + "@regexToken": 1, + "@jsToken": 1, + "@literalToken": 1, + "@closeIndentation": 1, + "@error": 10, + "@ends.pop": 1, + "opts.rewrite": 1, + "off": 1, + ".rewrite": 1, + "identifierToken": 1, + "match": 23, + "IDENTIFIER.exec": 1, + "input": 1, + "id": 16, + "colon": 3, + "@tag": 3, + "@token": 12, + "id.length": 1, + "forcedIdentifier": 4, + "prev": 17, + "not": 4, + "prev.spaced": 3, + "JS_KEYWORDS": 1, + "COFFEE_KEYWORDS": 1, + "id.toUpperCase": 1, + "LINE_BREAK": 2, + "@seenFor": 4, + "yes": 5, + "UNARY": 4, + "RELATION": 3, + "@value": 1, + "@tokens.pop": 1, + "JS_FORBIDDEN": 1, + "String": 1, + "id.reserved": 1, + "COFFEE_ALIAS_MAP": 1, + "COFFEE_ALIASES": 1, + "switch": 7, + "input.length": 1, + "numberToken": 1, + "NUMBER.exec": 1, + "BOX": 1, + "/.test": 4, + "/E/.test": 1, + "x/.test": 1, + "d*": 1, + "d": 2, + "lexedLength": 2, + "number.length": 1, + "octalLiteral": 2, + "/.exec": 2, + "parseInt": 5, + ".toString": 3, + "binaryLiteral": 2, + "b": 1, + "stringToken": 1, + "@chunk.charAt": 3, + "SIMPLESTR.exec": 1, + "string": 9, + "MULTILINER": 2, + "@balancedString": 1, + "<": 6, + "string.indexOf": 1, + "@interpolateString": 2, + "@escapeLines": 1, + "octalEsc": 1, + "|": 21, + "string.length": 1, + "heredocToken": 1, + "HEREDOC.exec": 1, + "heredoc": 4, + "quote": 5, + "heredoc.charAt": 1, + "doc": 11, + "@sanitizeHeredoc": 2, + "indent": 7, + "<=>": 1, + "indexOf": 1, + "interpolateString": 1, + "token": 1, + "STRING": 2, + "makeString": 1, + "n": 16, + "Matches": 1, + "consumes": 1, + "comments": 1, + "commentToken": 1, + "@chunk.match": 1, + "COMMENT": 2, + "comment": 2, + "here": 3, + "herecomment": 4, + "Array": 1, + ".join": 2, + "comment.length": 1, + "jsToken": 1, + "JSTOKEN.exec": 1, + "script.length": 1, + "regexToken": 1, + "HEREGEX.exec": 1, + "@heregexToken": 1, + "NOT_REGEX": 2, + "NOT_SPACED_REGEX": 2, + "REGEX.exec": 1, + "regex": 5, + "flags": 2, + "..1": 1, + "match.length": 1, + "heregexToken": 1, + "heregex": 1, + "body": 2, + "body.indexOf": 1, + "re": 1, + "body.replace": 1, + "HEREGEX_OMIT": 3, + "//g": 1, + "re.match": 1, + "*/": 2, + "heregex.length": 1, + "@tokens.push": 1, + "tokens.push": 1, + "value...": 1, + "continue": 3, + "value.replace": 2, + "/g": 3, + "spaced": 1, + "reserved": 1, + "word": 1, + "value.length": 2, + "MATH": 3, + "COMPARE": 3, + "COMPOUND_ASSIGN": 2, + "SHIFT": 3, + "LOGIC": 3, + ".spaced": 1, + "CALLABLE": 2, + "INDEXABLE": 2, + "@ends.push": 1, + "@pair": 1, + "sanitizeHeredoc": 1, + "HEREDOC_ILLEGAL.test": 1, + "doc.indexOf": 1, + "HEREDOC_INDENT.exec": 1, + "attempt": 2, + "attempt.length": 1, + "indent.length": 1, + "doc.replace": 2, + "///": 12, + "///g": 1, + "n/": 1, + "tagParameters": 1, + "this": 6, + "tokens.length": 1, + "tok": 5, + "stack.push": 1, + "stack.length": 1, + "stack.pop": 2, + "closeIndentation": 1, + "@outdentToken": 1, + "balancedString": 1, + "str": 1, + "end": 2, + "continueCount": 3, + "str.length": 1, + "letter": 1, + "str.charAt": 1, + "missing": 1, + "starting": 1, + "Hello": 1, + "name.capitalize": 1, + "OUTDENT": 1, + "THROW": 1, + "EXTENDS": 1, + "&": 4, + "false": 4, + "delete": 1, + "break": 1, + "debugger": 1, + "finally": 2, + "undefined": 1, + "until": 1, + "loop": 1, + "by": 1, + "&&": 1, + "case": 1, + "default": 1, + "function": 2, + "var": 1, + "void": 1, + "with": 1, + "const": 1, + "let": 2, + "enum": 1, + "export": 1, + "import": 1, + "native": 1, + "__hasProp": 1, + "__extends": 1, + "__slice": 1, + "__bind": 1, + "__indexOf": 1, + "implements": 1, + "interface": 1, + "package": 1, + "private": 1, + "protected": 1, + "public": 1, + "static": 1, + "yield": 1, + "arguments": 1, + "S": 10, + "OPERATOR": 1, + "%": 1, + "compound": 1, + "assign": 1, + "compare": 1, + "zero": 1, + "fill": 1, + "right": 1, + "shift": 2, + "doubles": 1, + "logic": 1, + "soak": 1, + "access": 1, + "range": 1, + "splat": 1, + "WHITESPACE": 1, + "###": 3, + "s*#": 1, + "##": 1, + ".*": 1, + "CODE": 1, + "MULTI_DENT": 1, + "SIMPLESTR": 1, + "JSTOKEN": 1, + "REGEX": 1, + "disallow": 1, + "leading": 1, + "whitespace": 1, + "equals": 1, + "signs": 1, + "every": 1, + "other": 1, + "thing": 1, + "anything": 1, + "escaped": 1, + "character": 1, + "imgy": 2, + "w": 2, + "HEREGEX": 1, + "#.*": 1, + "n/g": 1, + "HEREDOC_INDENT": 1, + "HEREDOC_ILLEGAL": 1, + "//": 1, + "LINE_CONTINUER": 1, + "s*": 1, + "BOOL": 1, + "NOT_REGEX.concat": 1, + "CALLABLE.concat": 1, + "async": 1, + "nack": 1, + "bufferLines": 3, + "pause": 2, + "sourceScriptEnv": 3, + "join": 8, + "exists": 5, + "basename": 2, + "resolve": 2, + "module.exports": 1, + "RackApplication": 1, + "@configuration": 1, + "@root": 8, + "@firstHost": 1, + "@logger": 1, + "@configuration.getLogger": 1, + "@readyCallbacks": 3, + "@quitCallbacks": 3, + "@statCallbacks": 3, + "ready": 1, + "@state": 11, + "@readyCallbacks.push": 1, + "@initialize": 2, + "quit": 1, + "@quitCallbacks.push": 1, + "@terminate": 2, + "queryRestartFile": 1, + "fs.stat": 1, + "stats": 1, + "@mtime": 5, + "lastMtime": 2, + "stats.mtime.getTime": 1, + "setPoolRunOnceFlag": 1, + "@statCallbacks.length": 1, + "alwaysRestart": 2, + "@pool.runOnce": 1, + "statCallback": 2, + "@statCallbacks.push": 1, + "loadScriptEnvironment": 1, + "env": 18, + "async.reduce": 1, + "scriptExists": 2, + "loadRvmEnvironment": 1, + "rvmrcExists": 2, + "rvm": 1, + "@configuration.rvmPath": 1, + "rvmExists": 2, + "libexecPath": 1, + "before": 2, + ".trim": 1, + "loadEnvironment": 1, + "@queryRestartFile": 2, + "@loadScriptEnvironment": 1, + "@configuration.env": 1, + "@loadRvmEnvironment": 1, + "initialize": 1, + "@quit": 3, + "@loadEnvironment": 1, + "@logger.error": 3, + "@pool": 2, + "nack.createPool": 1, + "size": 1, + ".POW_WORKERS": 1, + "@configuration.workers": 1, + "idle": 1, + ".POW_TIMEOUT": 1, + "@configuration.timeout": 1, + "@pool.stdout": 1, + "@logger.info": 1, + "@pool.stderr": 1, + "@logger.warning": 1, + "@pool.on": 2, + "process": 2, + "@logger.debug": 2, + "readyCallback": 2, + "terminate": 1, + "@ready": 3, + "@pool.quit": 1, + "quitCallback": 2, + "handle": 1, + "req": 4, + "res": 3, + "next": 3, + "resume": 2, + "@setPoolRunOnceFlag": 1, + "@restartIfNecessary": 1, + "req.proxyMetaVariables": 1, + "SERVER_PORT": 1, + "@configuration.dstPort.toString": 1, + "@pool.proxy": 1, + "restart": 1, + "restartIfNecessary": 1, + "mtimeChanged": 2, + "@restart": 1, + "writeRvmBoilerplate": 1, + "powrc": 3, + "boilerplate": 2, + "@constructor.rvmBoilerplate": 1, + "fs.readFile": 1, + "contents": 2, + "contents.indexOf": 1, + "fs.writeFile": 1, + "@rvmBoilerplate": 1, + "dnsserver": 1, + "exports.Server": 1, + "Server": 2, + "dnsserver.Server": 1, + "NS_T_A": 3, + "NS_T_NS": 2, + "NS_T_CNAME": 1, + "NS_T_SOA": 2, + "NS_C_IN": 5, + "NS_RCODE_NXDOMAIN": 2, + "domain": 6, + "@rootAddress": 2, + "@domain": 3, + "domain.toLowerCase": 1, + "@soa": 2, + "createSOA": 2, + "@on": 1, + "@handleRequest": 1, + "handleRequest": 1, + "question": 5, + "req.question": 1, + "subdomain": 10, + "@extractSubdomain": 1, + "question.name": 3, + "isARequest": 2, + "res.addRR": 2, + "subdomain.getAddress": 1, + ".isEmpty": 1, + "isNSRequest": 2, + "res.header.rcode": 1, + "res.send": 1, + "extractSubdomain": 1, + "name": 5, + "Subdomain.extract": 1, + "question.type": 2, + "question.class": 2, + "mname": 2, + "rname": 2, + "serial": 2, + "Date": 1, + ".getTime": 1, + "refresh": 2, + "retry": 2, + "expire": 2, + "minimum": 2, + "dnsserver.createSOA": 1, + "exports.createServer": 1, + "address": 4, + "exports.Subdomain": 1, + "Subdomain": 4, + "@extract": 1, + "name.toLowerCase": 1, + "offset": 4, + "name.length": 1, + "domain.length": 1, + "name.slice": 2, + "@for": 2, + "IPAddressSubdomain.pattern.test": 1, + "IPAddressSubdomain": 2, + "EncodedSubdomain.pattern.test": 1, + "EncodedSubdomain": 2, + "@subdomain": 1, + "@address": 2, + "@labels": 2, + ".split": 1, + "@length": 3, + "@labels.length": 1, + "isEmpty": 1, + "getAddress": 3, + "@pattern": 2, + "@labels.slice": 1, + "a": 2, + "z0": 2, + "decode": 2, + "exports.encode": 1, + "encode": 1, + "ip": 2, + "byte": 2, + "ip.split": 1, + "<<": 1, + "PATTERN": 1, + "exports.decode": 1, + "PATTERN.test": 1, + "ip.push": 1, + "xFF": 1, + "ip.join": 1 + }, + "Common Lisp": { + ";": 10, + "-": 10, + "*": 2, + "lisp": 1, + "(": 14, + "in": 1, + "package": 1, + "foo": 2, + ")": 14, + "Header": 1, + "comment.": 4, + "defvar": 1, + "*foo*": 1, + "eval": 1, + "when": 1, + "execute": 1, + "compile": 1, + "toplevel": 2, + "load": 1, + "defun": 1, + "add": 1, + "x": 5, + "&": 3, + "optional": 1, + "y": 2, + "key": 1, + "z": 2, + "declare": 1, + "ignore": 1, + "Inline": 1, + "+": 2, + "or": 1, + "#": 2, + "|": 2, + "Multi": 1, + "line": 2, + "defmacro": 1, + "body": 1, + "b": 1, + "if": 1, + "After": 1 + }, + "Coq": { + "Inductive": 41, + "day": 9, + "Type": 86, + "|": 457, + "monday": 5, + "tuesday": 3, + "wednesday": 3, + "thursday": 3, + "friday": 3, + "saturday": 3, + "sunday": 2, + "day.": 1, + "Definition": 46, + "next_weekday": 3, + "(": 1248, + "d": 6, + ")": 1249, + "match": 70, + "with": 223, + "end.": 52, + "Example": 37, + "test_next_weekday": 1, + "tuesday.": 1, + "Proof.": 208, + "simpl.": 70, + "reflexivity.": 199, + "Qed.": 194, + "bool": 38, + "true": 68, + "false": 48, + "bool.": 1, + "negb": 10, + "b": 89, + "andb": 8, + "b1": 35, + "b2": 23, + "orb": 8, + "test_orb1": 1, + "true.": 16, + "test_orb2": 1, + "false.": 12, + "test_orb3": 1, + "test_orb4": 1, + "nandb": 5, + "end": 16, + "test_nandb1": 1, + "test_nandb2": 1, + "test_nandb3": 1, + "test_nandb4": 1, + "andb3": 5, + "b3": 2, + "test_andb31": 1, + "test_andb32": 1, + "test_andb33": 1, + "test_andb34": 1, + "Module": 11, + "Playground1.": 5, + "nat": 108, + "O": 98, + "S": 186, + "-": 508, + "nat.": 4, + "pred": 3, + "n": 369, + "minustwo": 1, + "Fixpoint": 36, + "evenb": 5, + "oddb": 5, + ".": 433, + "test_oddb1": 1, + "test_oddb2": 1, + "plus": 10, + "m": 201, + "mult": 3, + "minus": 3, + "_": 67, + "exp": 2, + "base": 3, + "power": 2, + "p": 81, + "factorial": 2, + "test_factorial1": 1, + "Notation": 39, + "x": 266, + "y": 116, + "at": 17, + "level": 11, + "left": 6, + "associativity": 7, + "nat_scope.": 3, + "beq_nat": 24, + "forall": 248, + "+": 227, + "n.": 44, + "Theorem": 115, + "plus_O_n": 1, + "intros": 258, + "plus_1_1": 1, + "mult_0_1": 1, + "*": 59, + "O.": 5, + "plus_id_example": 1, + "m.": 21, + "H.": 100, + "rewrite": 241, + "plus_id_exercise": 1, + "o": 25, + "o.": 4, + "H": 76, + "mult_0_plus": 1, + "plus_O_n.": 1, + "mult_1_plus": 1, + "plus_1_1.": 1, + "mult_1": 1, + "induction": 81, + "as": 77, + "[": 170, + "plus_1_neq_0": 1, + "destruct": 94, + "]": 173, + "Case": 51, + "IHn": 12, + "plus_comm": 3, + "plus_distr.": 1, + "beq_nat_refl": 3, + "plus_rearrange": 1, + "q": 15, + "q.": 2, + "assert": 68, + "plus_comm.": 3, + "plus_swap": 2, + "p.": 9, + "plus_assoc.": 4, + "H2": 12, + "H2.": 20, + "plus_swap.": 2, + "<->": 31, + "IHm": 2, + "reflexivity": 16, + "Qed": 23, + "mult_comm": 2, + "Proof": 12, + "0": 5, + "simpl": 116, + "mult_0_r.": 4, + "mult_distr": 1, + "mult_1_distr.": 1, + "mult_1.": 1, + "bad": 1, + "zero_nbeq_S": 1, + "andb_false_r": 1, + "plus_ble_compat_1": 1, + "ble_nat": 6, + "IHp.": 2, + "S_nbeq_0": 1, + "mult_1_1": 1, + "plus_0_r.": 1, + "all3_spec": 1, + "c": 70, + "c.": 5, + "b.": 14, + "Lemma": 51, + "mult_plus_1": 1, + "IHm.": 1, + "mult_mult": 1, + "IHn.": 3, + "mult_plus_1.": 1, + "mult_plus_distr_r": 1, + "mult_mult.": 3, + "H1": 18, + "plus_assoc": 1, + "H1.": 31, + "H3": 4, + "H3.": 5, + "mult_assoc": 1, + "mult_plus_distr_r.": 1, + "bin": 9, + "BO": 4, + "D": 9, + "M": 4, + "bin.": 1, + "incbin": 2, + "bin2un": 3, + "bin_comm": 1, + "End": 15, + "Require": 17, + "Import": 11, + "List": 2, + "Multiset": 2, + "PermutSetoid": 1, + "Relations": 2, + "Sorting.": 1, + "Section": 4, + "defs.": 2, + "Variable": 7, + "A": 113, + "Type.": 3, + "leA": 25, + "relation": 19, + "A.": 6, + "eqA": 29, + "Let": 8, + "gtA": 1, + "y.": 15, + "Hypothesis": 7, + "leA_dec": 4, + "{": 39, + "}": 35, + "eqA_dec": 26, + "leA_refl": 1, + "leA_trans": 2, + "z": 14, + "z.": 6, + "leA_antisym": 1, + "Hint": 9, + "Resolve": 5, + "leA_refl.": 1, + "Immediate": 1, + "leA_antisym.": 1, + "emptyBag": 4, + "EmptyBag": 2, + "singletonBag": 10, + "SingletonBag": 2, + "eqA_dec.": 2, + "Tree": 24, + "Tree_Leaf": 9, + "Tree_Node": 11, + "Tree.": 1, + "leA_Tree": 16, + "a": 207, + "t": 93, + "True": 1, + "T1": 25, + "T2": 20, + "leA_Tree_Leaf": 5, + "Tree_Leaf.": 1, + ";": 375, + "auto": 73, + "datatypes.": 47, + "leA_Tree_Node": 1, + "G": 6, + "is_heap": 18, + "Prop": 17, + "nil_is_heap": 5, + "node_is_heap": 7, + "invert_heap": 3, + "/": 41, + "T2.": 1, + "inversion": 104, + "is_heap_rect": 1, + "P": 32, + "T": 49, + "T.": 9, + "simple": 7, + "PG": 2, + "PD": 2, + "PN.": 2, + "elim": 21, + "H4": 7, + "intros.": 27, + "apply": 340, + "X0": 2, + "is_heap_rec": 1, + "Set": 4, + "X": 191, + "low_trans": 3, + "merge_lem": 3, + "l1": 89, + "l2": 73, + "list": 78, + "merge_exist": 5, + "l": 379, + "Sorted": 5, + "meq": 15, + "list_contents": 30, + "munion": 18, + "HdRel": 4, + "l2.": 8, + "Morphisms.": 2, + "Instance": 7, + "Equivalence": 2, + "@meq": 4, + "constructor": 6, + "red.": 1, + "meq_trans.": 1, + "Defined.": 1, + "Proper": 5, + "@munion": 1, + "now": 24, + "meq_congr.": 1, + "merge": 5, + "fix": 2, + "l1.": 5, + "rename": 2, + "into": 2, + "l.": 26, + "revert": 5, + "H0.": 24, + "a0": 15, + "l0": 7, + "Sorted_inv": 2, + "in": 221, + "H0": 16, + "clear": 7, + "merge0.": 2, + "using": 18, + "cons_sort": 2, + "cons_leA": 2, + "munion_ass.": 2, + "cons_leA.": 2, + "@HdRel_inv": 2, + "trivial": 15, + "merge0": 1, + "setoid_rewrite": 2, + "munion_ass": 1, + "munion_comm.": 2, + "repeat": 11, + "munion_comm": 1, + "contents": 12, + "multiset": 2, + "t1": 48, + "t2": 51, + "equiv_Tree": 1, + "insert_spec": 3, + "insert_exist": 4, + "insert": 2, + "unfold": 58, + "T0": 2, + "treesort_twist1": 1, + "T3": 2, + "HeapT3": 1, + "ConT3": 1, + "LeA.": 1, + "LeA": 1, + "treesort_twist2": 1, + "build_heap": 3, + "heap_exist": 3, + "list_to_heap": 2, + "nil": 46, + "exact": 4, + "nil_is_heap.": 1, + "i": 11, + "meq_trans": 10, + "meq_right": 2, + "meq_sym": 2, + "flat_spec": 3, + "flat_exist": 3, + "heap_to_list": 2, + "h": 14, + "s1": 20, + "i1": 15, + "m1": 1, + "s2": 2, + "i2": 10, + "m2.": 1, + "meq_congr": 1, + "munion_rotate.": 1, + "treesort": 1, + "&": 21, + "permutation": 43, + "intro": 27, + "permutation.": 1, + "exists": 60, + "Export": 10, + "SfLib.": 2, + "AExp.": 2, + "aexp": 30, + "ANum": 18, + "APlus": 14, + "AMinus": 9, + "AMult": 9, + "aexp.": 1, + "bexp": 22, + "BTrue": 10, + "BFalse": 11, + "BEq": 9, + "BLe": 9, + "BNot": 9, + "BAnd": 10, + "bexp.": 1, + "aeval": 46, + "e": 53, + "a1": 56, + "a2": 62, + "test_aeval1": 1, + "beval": 16, + "optimize_0plus": 15, + "e2": 54, + "e1": 58, + "test_optimize_0plus": 1, + "optimize_0plus_sound": 4, + "e.": 15, + "e1.": 1, + "SCase": 24, + "SSCase": 3, + "IHe2.": 10, + "IHe1.": 11, + "aexp_cases": 3, + "try": 17, + "IHe1": 6, + "IHe2": 6, + "optimize_0plus_all": 2, + "Tactic": 9, + "tactic": 9, + "first": 18, + "ident": 9, + "Case_aux": 38, + "optimize_0plus_all_sound": 1, + "bexp_cases": 4, + "optimize_and": 5, + "optimize_and_sound": 1, + "IHe": 2, + "aevalR_first_try.": 2, + "aevalR": 18, + "E_Anum": 1, + "E_APlus": 2, + "n1": 45, + "n2": 41, + "E_AMinus": 2, + "E_AMult": 2, + "Reserved": 4, + "E_ANum": 1, + "where": 6, + "bevalR": 11, + "E_BTrue": 1, + "E_BFalse": 1, + "E_BEq": 1, + "E_BLe": 1, + "E_BNot": 1, + "E_BAnd": 1, + "aeval_iff_aevalR": 9, + "split.": 17, + "subst": 7, + "generalize": 13, + "dependent": 6, + "IHa1": 1, + "IHa2": 1, + "beval_iff_bevalR": 1, + "*.": 110, + "subst.": 43, + "IHbevalR": 1, + "IHbevalR1": 1, + "IHbevalR2": 1, + "a.": 6, + "constructor.": 16, + "<": 76, + "remember": 12, + "IHa.": 1, + "IHa1.": 1, + "IHa2.": 1, + "silly_presburger_formula": 1, + "<=>": 12, + "3": 2, + "omega": 7, + "Id": 7, + "id": 7, + "id.": 1, + "beq_id": 14, + "id1": 2, + "id2": 2, + "beq_id_refl": 1, + "i.": 2, + "beq_nat_refl.": 1, + "beq_id_eq": 4, + "i2.": 8, + "i1.": 3, + "beq_nat_eq": 2, + "beq_id_false_not_eq": 1, + "C.": 3, + "n0": 5, + "beq_false_not_eq": 1, + "not_eq_beq_id_false": 1, + "not_eq_beq_false.": 1, + "beq_nat_sym": 2, + "AId": 4, + "com_cases": 1, + "SKIP": 5, + "IFB": 4, + "WHILE": 5, + "c1": 14, + "c2": 9, + "e3": 1, + "cl": 1, + "st": 113, + "E_IfTrue": 2, + "THEN": 3, + "ELSE": 3, + "FI": 3, + "E_WhileEnd": 2, + "DO": 4, + "END": 4, + "E_WhileLoop": 2, + "ceval_cases": 1, + "E_Skip": 1, + "E_Ass": 1, + "E_Seq": 1, + "E_IfFalse": 1, + "assignment": 1, + "command": 2, + "if": 10, + "st1": 2, + "IHi1": 3, + "Heqst1": 1, + "Hceval.": 4, + "Hceval": 2, + "assumption.": 61, + "bval": 2, + "ceval_step": 3, + "Some": 21, + "ceval_step_more": 7, + "x1.": 3, + "omega.": 7, + "x2.": 2, + "IHHce.": 2, + "%": 3, + "IHHce1.": 1, + "IHHce2.": 1, + "x0": 14, + "plus2": 1, + "nx": 3, + "Y": 38, + "ny": 2, + "XtimesYinZ": 1, + "Z": 11, + "ny.": 1, + "loop": 2, + "contra.": 19, + "loopdef.": 1, + "Heqloopdef.": 8, + "contra1.": 1, + "IHcontra2.": 1, + "no_whiles": 15, + "com": 5, + "ct": 2, + "cf": 2, + "no_Whiles": 10, + "noWhilesSKIP": 1, + "noWhilesAss": 1, + "noWhilesSeq": 1, + "noWhilesIf": 1, + "no_whiles_eqv": 1, + "noWhilesSKIP.": 1, + "noWhilesAss.": 1, + "noWhilesSeq.": 1, + "IHc1.": 2, + "auto.": 47, + "eauto": 10, + "andb_true_elim1": 4, + "IHc2.": 2, + "andb_true_elim2": 4, + "noWhilesIf.": 1, + "andb_true_intro.": 2, + "no_whiles_terminate": 1, + "state": 6, + "st.": 7, + "update": 2, + "IHc1": 2, + "IHc2": 2, + "H5.": 1, + "x1": 11, + "r": 11, + "r.": 3, + "symmetry": 4, + "Heqr.": 1, + "H4.": 2, + "s": 13, + "Heqr": 3, + "H8.": 1, + "H10": 1, + "assumption": 10, + "beval_short_circuit": 5, + "beval_short_circuit_eqv": 1, + "sinstr": 8, + "SPush": 8, + "SLoad": 6, + "SPlus": 10, + "SMinus": 11, + "SMult": 11, + "sinstr.": 1, + "s_execute": 21, + "stack": 7, + "prog": 2, + "cons": 26, + "al": 3, + "bl": 3, + "s_execute1": 1, + "empty_state": 2, + "s_execute2": 1, + "s_compile": 36, + "v": 28, + "s_compile1": 1, + "execute_theorem": 1, + "other": 20, + "other.": 4, + "app_ass.": 6, + "s_compile_correct": 1, + "app_nil_end.": 1, + "execute_theorem.": 1, + "Eqdep_dec.": 1, + "Arith.": 2, + "eq_rect_eq_nat": 2, + "Q": 3, + "eq_rect": 3, + "h.": 1, + "K_dec_set": 1, + "eq_nat_dec.": 1, + "Scheme": 1, + "le_ind": 1, + "replace": 4, + "le_n": 4, + "fun": 17, + "refl_equal": 4, + "pattern": 2, + "case": 2, + "trivial.": 14, + "contradiction": 8, + "le_Sn_n": 5, + "le_S": 6, + "Heq": 8, + "m0": 1, + "HeqS": 3, + "injection": 4, + "HeqS.": 2, + "eq_rect_eq_nat.": 1, + "IHp": 2, + "dep_pair_intro": 2, + "Hx": 20, + "Hy": 14, + "<=n),>": 1, + "x=": 1, + "exist": 7, + "Hy.": 3, + "Heq.": 6, + "le_uniqueness_proof": 1, + "Hy0": 1, + "card": 2, + "f": 108, + "card_interval": 1, + "<=n}>": 1, + "proj1_sig": 1, + "proj2_sig": 1, + "Hp": 5, + "Hq": 3, + "Hpq.": 1, + "Hmn.": 1, + "Hmn": 1, + "interval_dec": 1, + "left.": 3, + "dep_pair_intro.": 3, + "right.": 9, + "discriminate": 3, + "le_Sn_le": 2, + "eq_S.": 1, + "Hneq.": 2, + "card_inj_aux": 1, + "g": 6, + "False.": 1, + "Hfbound": 1, + "Hfinj": 1, + "Hgsurj.": 1, + "Hgsurj": 3, + "Hfx": 2, + "le_n_O_eq.": 2, + "Hfbound.": 2, + "Hx.": 5, + "le_lt_dec": 9, + "xSn": 21, + "then": 9, + "else": 9, + "is": 4, + "bounded": 1, + "injective": 6, + "Hlefx": 1, + "Hgefx": 1, + "Hlefy": 1, + "Hgefy": 1, + "Hfinj.": 3, + "sym_not_eq.": 2, + "Heqf.": 2, + "Hneqy.": 2, + "le_lt_trans": 2, + "le_O_n.": 2, + "le_neq_lt": 2, + "Hneqx.": 2, + "pred_inj.": 1, + "lt_O_neq": 2, + "neq_dep_intro": 2, + "inj_restrict": 1, + "Heqf": 1, + "surjective": 1, + "Hlep.": 3, + "Hle": 1, + "Hlt": 3, + "Hfsurj": 2, + "le_n_S": 1, + "Hlep": 4, + "Hneq": 7, + "Heqx.": 2, + "Heqx": 4, + "Hle.": 1, + "le_not_lt": 1, + "lt_trans": 4, + "lt_n_Sn.": 1, + "Hlt.": 1, + "lt_irrefl": 2, + "lt_le_trans": 1, + "pose": 2, + "let": 3, + "Hneqx": 1, + "Hneqy": 1, + "Heqg": 1, + "Hdec": 3, + "Heqy": 1, + "Hginj": 1, + "HSnx.": 1, + "HSnx": 1, + "interval_discr": 1, + "<=m}>": 1, + "card_inj": 1, + "interval_dec.": 1, + "card_interval.": 2, + "Basics.": 2, + "NatList.": 2, + "natprod": 5, + "pair": 7, + "natprod.": 1, + "fst": 3, + "snd": 3, + "swap_pair": 1, + "surjective_pairing": 1, + "count": 7, + "remove_one": 3, + "test_remove_one1": 1, + "remove_all": 2, + "bag": 3, + "app_ass": 1, + "l3": 12, + "natlist": 7, + "l3.": 1, + "remove_decreases_count": 1, + "s.": 4, + "ble_n_Sn.": 1, + "IHs.": 2, + "natoption": 5, + "None": 9, + "natoption.": 1, + "index": 3, + "option_elim": 2, + "hd_opt": 8, + "test_hd_opt1": 2, + "None.": 2, + "test_hd_opt2": 2, + "option_elim_hd": 1, + "head": 1, + "beq_natlist": 5, + "v1": 7, + "r1": 2, + "v2": 2, + "r2": 2, + "test_beq_natlist1": 1, + "test_beq_natlist2": 1, + "beq_natlist_refl": 1, + "IHl.": 7, + "silly1": 1, + "eq1": 6, + "eq2.": 9, + "eq2": 1, + "silly2a": 1, + "eq1.": 5, + "silly_ex": 1, + "silly3": 1, + "symmetry.": 2, + "rev_exercise": 1, + "rev_involutive.": 1, + "Setoid": 1, + "Compare_dec": 1, + "ListNotations.": 1, + "Implicit": 15, + "Arguments.": 2, + "Permutation.": 2, + "Permutation": 38, + "perm_nil": 1, + "perm_skip": 1, + "Local": 7, + "Constructors": 3, + "Permutation_nil": 2, + "HF.": 3, + "@nil": 1, + "HF": 2, + "||": 1, + "Permutation_nil_cons": 1, + "discriminate.": 2, + "Permutation_refl": 1, + "Permutation_sym": 1, + "Hperm": 7, + "perm_trans": 1, + "Permutation_trans": 4, + "Logic.eq": 2, + "@Permutation": 5, + "iff": 1, + "@In": 1, + "red": 6, + "Permutation_in.": 2, + "Permutation_app_tail": 2, + "tl": 8, + "eapply": 8, + "Permutation_app_head": 2, + "app_comm_cons": 5, + "Permutation_app": 3, + "Hpermmm": 1, + "idtac": 1, + "Global": 5, + "@app": 1, + "Permutation_app.": 1, + "Permutation_add_inside": 1, + "Permutation_cons_append": 1, + "IHl": 8, + "Permutation_cons_append.": 3, + "Permutation_app_comm": 3, + "app_nil_r": 1, + "app_assoc": 2, + "Permutation_cons_app": 3, + "Permutation_middle": 2, + "Permutation_rev": 3, + "rev": 7, + "1": 1, + "@rev": 1, + "2": 1, + "Permutation_length": 2, + "length": 21, + "transitivity": 4, + "@length": 1, + "Permutation_length.": 1, + "Permutation_ind_bis": 2, + "Hnil": 1, + "Hskip": 3, + "Hswap": 2, + "Htrans.": 1, + "Htrans": 1, + "eauto.": 7, + "Ltac": 1, + "break_list": 5, + "Permutation_nil_app_cons": 1, + "l4": 3, + "P.": 5, + "IH": 3, + "Permutation_middle.": 3, + "perm_swap.": 2, + "perm_swap": 1, + "eq_refl": 2, + "In_split": 1, + "Permutation_app_inv": 1, + "NoDup": 4, + "incl": 3, + "N.": 1, + "E": 7, + "Ha": 6, + "In": 6, + "N": 1, + "Hal": 1, + "Hl": 1, + "exfalso.": 1, + "NoDup_Permutation_bis": 2, + "inversion_clear": 6, + "intuition.": 2, + "Permutation_NoDup": 1, + "Permutation_map": 1, + "Hf": 15, + "injective_bounded_surjective": 1, + "set": 1, + "seq": 2, + "map": 4, + "x.": 3, + "in_map_iff.": 2, + "in_seq": 4, + "arith": 4, + "NoDup_cardinal_incl": 1, + "injective_map_NoDup": 2, + "seq_NoDup": 1, + "map_length": 1, + "by": 7, + "in_map_iff": 1, + "split": 14, + "nat_bijection_Permutation": 1, + "BD.": 1, + "seq_NoDup.": 1, + "map_length.": 1, + "Injection": 1, + "Permutation_alt": 1, + "Alternative": 1, + "characterization": 1, + "of": 4, + "via": 1, + "nth_error": 7, + "and": 1, + "nth": 2, + "adapt": 4, + "adapt_injective": 1, + "adapt.": 2, + "EQ.": 2, + "LE": 11, + "LT": 14, + "eq_add_S": 2, + "Hf.": 1, + "Lt.le_lt_or_eq": 3, + "LE.": 3, + "EQ": 8, + "lt": 3, + "LT.": 5, + "Lt.S_pred": 3, + "Lt.lt_not_le": 2, + "adapt_ok": 2, + "nth_error_app1": 1, + "nth_error_app2": 1, + "arith.": 8, + "Minus.minus_Sn_m": 1, + "Permutation_nth_error": 2, + "IHP": 2, + "IHP2": 1, + "Hg": 2, + "E.": 2, + "L12": 2, + "app_length.": 2, + "plus_n_Sm.": 1, + "adapt_injective.": 1, + "nth_error_None": 4, + "Hn": 1, + "Hf2": 1, + "Hf3": 2, + "Lt.le_or_lt": 1, + "Lt.lt_irrefl": 2, + "Lt.lt_le_trans": 2, + "Hf1": 1, + "do": 4, + "congruence.": 1, + "Permutation_alt.": 1, + "Permutation_app_swap": 1, + "only": 3, + "parsing": 3, + "Omega": 1, + "SetoidList.": 1, + "nil.": 2, + "..": 4, + "Permut.": 1, + "eqA_equiv": 1, + "eqA.": 1, + "list_contents_app": 5, + "permut_refl": 1, + "permut_sym": 4, + "permut_trans": 5, + "permut_cons_eq": 3, + "meq_left": 1, + "meq_singleton": 1, + "permut_cons": 5, + "permut_app": 1, + "specialize": 6, + "a0.": 1, + "decide": 1, + "permut_add_inside_eq": 1, + "permut_add_cons_inside": 3, + "permut_add_inside": 1, + "permut_middle": 1, + "permut_refl.": 5, + "permut_sym_app": 1, + "permut_rev": 1, + "permut_add_cons_inside.": 1, + "app_nil_end": 1, + "results": 1, + "permut_conv_inv": 1, + "plus_reg_l.": 1, + "permut_app_inv1": 1, + "list_contents_app.": 1, + "plus_reg_l": 1, + "multiplicity": 6, + "Fact": 3, + "if_eqA_then": 1, + "B": 6, + "if_eqA_refl": 3, + "decide_left": 1, + "if_eqA": 1, + "contradict": 3, + "A1": 2, + "if_eqA_rewrite_r": 1, + "A2": 4, + "Hxx": 1, + "multiplicity_InA": 4, + "InA": 8, + "multiplicity_InA_O": 2, + "multiplicity_InA_S": 1, + "multiplicity_NoDupA": 1, + "NoDupA": 3, + "NEQ": 1, + "compatible": 1, + "permut_InA_InA": 3, + "multiplicity_InA.": 1, + "meq.": 2, + "permut_cons_InA": 3, + "permut_nil": 3, + "Abs": 2, + "permut_length_1": 1, + "permut_length_2": 1, + "permut_length_1.": 2, + "@if_eqA_rewrite_l": 2, + "permut_length": 1, + "InA_split": 1, + "h2": 1, + "plus_n_Sm": 1, + "f_equal.": 1, + "app_length": 1, + "IHl1": 1, + "permut_remove_hd": 1, + "f_equal": 1, + "if_eqA_rewrite_l": 1, + "NoDupA_equivlistA_permut": 1, + "Equivalence_Reflexive.": 1, + "change": 1, + "Equivalence_Reflexive": 1, + "Forall2": 2, + "permutation_Permutation": 1, + "Forall2.": 1, + "proof": 1, + "IHA": 2, + "Forall2_app_inv_r": 1, + "Hl1": 1, + "Hl2": 1, + "Forall2_app": 1, + "Forall2_cons": 1, + "Permutation_impl_permutation": 1, + "permut_eqA": 1, + "Permut_permut.": 1, + "permut_right": 1, + "permut_tran": 1, + "Lists.": 1, + "X.": 4, + "app": 5, + "snoc": 9, + "Arguments": 11, + "list123": 1, + "right": 2, + "test_repeat1": 1, + "nil_app": 1, + "rev_snoc": 1, + "snoc_with_append": 1, + "v.": 1, + "IHl1.": 1, + "prod": 3, + "Y.": 1, + "type_scope.": 1, + "combine": 3, + "lx": 4, + "ly": 4, + "tx": 2, + "ty": 7, + "tp": 2, + "option": 6, + "xs": 7, + "plus3": 2, + "prod_curry": 3, + "prod_uncurry": 3, + "uncurry_uncurry": 1, + "curry_uncurry": 1, + "filter": 3, + "test": 4, + "countoddmembers": 1, + "k": 7, + "fmostlytrue": 5, + "override": 5, + "ftrue": 1, + "override_example1": 1, + "override_example2": 1, + "override_example3": 1, + "override_example4": 1, + "override_example": 1, + "constfun": 1, + "unfold_example_bad": 1, + "plus3.": 1, + "override_eq": 1, + "f.": 1, + "override.": 2, + "override_neq": 1, + "x2": 3, + "k1": 5, + "k2": 4, + "eq.": 11, + "silly4": 1, + "silly5": 1, + "sillyex1": 1, + "j": 6, + "j.": 1, + "silly6": 1, + "silly7": 1, + "sillyex2": 1, + "assertion": 3, + "Hl.": 1, + "eq": 4, + "beq_nat_O_l": 1, + "beq_nat_O_r": 1, + "double_injective": 1, + "double": 2, + "fold_map": 2, + "fold": 1, + "total": 2, + "fold_map_correct": 1, + "fold_map.": 1, + "forallb": 4, + "existsb": 3, + "existsb2": 2, + "existsb_correct": 1, + "existsb2.": 1, + "index_okx": 1, + "mumble": 5, + "mumble.": 1, + "grumble": 3, + "Logic.": 1, + "Prop.": 1, + "partial_function": 6, + "R": 54, + "y1": 6, + "y2": 5, + "y2.": 3, + "next_nat_partial_function": 1, + "next_nat.": 1, + "partial_function.": 5, + "Q.": 2, + "le_not_a_partial_function": 1, + "le": 1, + "not.": 3, + "Nonsense.": 4, + "le_n.": 6, + "le_S.": 4, + "total_relation_not_partial_function": 1, + "total_relation": 1, + "total_relation1.": 2, + "empty_relation_not_partial_funcion": 1, + "empty_relation.": 1, + "reflexive": 5, + "le_reflexive": 1, + "le.": 4, + "reflexive.": 1, + "transitive": 8, + "le_trans": 4, + "Hnm": 3, + "Hmo.": 4, + "Hnm.": 3, + "IHHmo.": 1, + "lt.": 2, + "transitive.": 1, + "Hm": 1, + "le_S_n": 2, + "Sn_le_Sm__n_le_m.": 1, + "not": 1, + "TODO": 1, + "Hmo": 1, + "symmetric": 2, + "antisymmetric": 3, + "le_antisymmetric": 1, + "Sn_le_Sm__n_le_m": 2, + "IHb": 1, + "equivalence": 1, + "order": 2, + "preorder": 1, + "le_order": 1, + "order.": 1, + "le_reflexive.": 1, + "le_antisymmetric.": 1, + "le_trans.": 1, + "clos_refl_trans": 8, + "rt_step": 1, + "rt_refl": 1, + "rt_trans": 3, + "next_nat_closure_is_le": 1, + "next_nat": 1, + "rt_refl.": 2, + "IHle.": 1, + "rt_step.": 2, + "nn.": 1, + "IHclos_refl_trans1.": 2, + "IHclos_refl_trans2.": 2, + "refl_step_closure": 11, + "rsc_refl": 1, + "rsc_step": 4, + "rsc_R": 2, + "rsc_refl.": 4, + "rsc_trans": 4, + "IHrefl_step_closure": 1, + "rtc_rsc_coincide": 1, + "IHrefl_step_closure.": 1, + "Imp.": 1, + "Relations.": 1, + "tm": 43, + "tm_const": 45, + "tm_plus": 30, + "tm.": 3, + "SimpleArith0.": 2, + "eval": 8, + "SimpleArith1.": 2, + "E_Const": 2, + "E_Plus": 2, + "test_step_1": 1, + "ST_Plus1.": 2, + "ST_PlusConstConst.": 3, + "test_step_2": 1, + "ST_Plus2.": 2, + "step_deterministic": 1, + "step.": 3, + "Hy1": 2, + "Hy2.": 2, + "step_cases": 4, + "Hy2": 3, + "SCase.": 3, + "Hy1.": 5, + "IHHy1": 2, + "SimpleArith2.": 1, + "value": 25, + "v_const": 4, + "step": 9, + "ST_PlusConstConst": 3, + "ST_Plus1": 2, + "strong_progress": 2, + "value_not_same_as_normal_form": 2, + "normal_form": 3, + "t.": 4, + "normal_form.": 2, + "v_funny.": 1, + "Temp1.": 1, + "Temp2.": 1, + "ST_Funny": 1, + "Temp3.": 1, + "Temp4.": 2, + "tm_true": 8, + "tm_false": 5, + "tm_if": 10, + "v_true": 1, + "v_false": 1, + "tm_false.": 3, + "ST_IfTrue": 1, + "ST_IfFalse": 1, + "ST_If": 1, + "t3": 6, + "bool_step_prop4": 1, + "bool_step_prop4_holds": 1, + "bool_step_prop4.": 2, + "ST_ShortCut.": 1, + "IHt1.": 1, + "t2.": 4, + "t3.": 2, + "ST_If.": 2, + "Temp5.": 1, + "stepmany": 4, + "normalizing": 1, + "IHt2": 3, + "H11": 2, + "H12": 2, + "H21": 3, + "H22": 2, + "nf_same_as_value": 3, + "H12.": 1, + "H22.": 1, + "H11.": 1, + "stepmany_congr_1": 1, + "stepmany_congr2": 1, + "eval__value": 1, + "HE.": 1, + "eval_cases": 1, + "HE": 1, + "v_const.": 1, + "Sorted.": 1, + "Mergesort.": 1, + "STLC.": 1, + "ty_Bool": 10, + "ty_arrow": 7, + "ty.": 2, + "tm_var": 6, + "tm_app": 7, + "tm_abs": 9, + "idB": 2, + "idBB": 2, + "idBBBB": 2, + "v_abs": 1, + "t_true": 1, + "t_false": 1, + "value.": 1, + "ST_App2": 1, + "step_example3": 1, + "idB.": 1, + "rsc_step.": 2, + "ST_App1.": 2, + "ST_AppAbs.": 3, + "v_abs.": 2, + "context": 1, + "partial_map": 4, + "Context.": 1, + "empty": 3, + "extend": 1, + "Gamma": 10, + "has_type": 4, + "appears_free_in": 1, + "S.": 1, + "HT": 1, + "T_Var.": 1, + "extend_neq": 1, + "Heqe.": 3, + "T_Abs.": 1, + "context_invariance...": 2, + "Hafi.": 2, + "extend.": 2, + "IHt.": 1, + "Coiso1.": 2, + "Coiso2.": 3, + "HeqCoiso1.": 1, + "HeqCoiso2.": 1, + "beq_id_false_not_eq.": 1, + "ex_falso_quodlibet.": 1, + "preservation": 1, + "HT.": 1, + "substitution_preserves_typing": 1, + "T11.": 4, + "HT1.": 1, + "T_App": 2, + "IHHT1.": 1, + "IHHT2.": 1, + "tm_cases": 1, + "Ht": 1, + "Ht.": 3, + "IHt1": 2, + "T11": 2, + "ST_App2.": 1, + "ty_Bool.": 1, + "IHt3": 1, + "ST_IfTrue.": 1, + "ST_IfFalse.": 1, + "types_unique": 1, + "T12": 2, + "IHhas_type.": 1, + "IHhas_type1.": 1, + "IHhas_type2.": 1 + }, + "CSS": { + ".clearfix": 8, + "{": 1661, + "*zoom": 48, + ";": 4219, + "}": 1705, + "before": 48, + "after": 96, + "display": 135, + "table": 44, + "content": 66, + "line": 97, + "-": 8839, + "height": 141, + "clear": 32, + "both": 30, + ".hide": 12, + "text": 129, + "font": 142, + "/0": 2, + "a": 268, + "color": 711, + "transparent": 148, + "shadow": 254, + "none": 128, + "background": 770, + "border": 912, + ".input": 216, + "block": 133, + "level": 2, + "width": 215, + "%": 366, + "min": 14, + "px": 2535, + "webkit": 364, + "box": 264, + "sizing": 27, + "moz": 316, + "article": 2, + "aside": 2, + "details": 2, + "figcaption": 2, + "figure": 2, + "footer": 2, + "header": 12, + "hgroup": 2, + "nav": 2, + "section": 2, + "audio": 4, + "canvas": 2, + "video": 4, + "inline": 116, + "*display": 20, + "not": 6, + "(": 748, + "[": 384, + "controls": 2, + "]": 384, + ")": 748, + "html": 4, + "size": 104, + "adjust": 6, + "ms": 13, + "focus": 232, + "outline": 30, + "thin": 8, + "dotted": 10, + "#333": 6, + "auto": 50, + "ring": 6, + "offset": 6, + "hover": 144, + "active": 46, + "sub": 4, + "sup": 4, + "position": 342, + "relative": 18, + "vertical": 56, + "align": 72, + "baseline": 4, + "top": 376, + "em": 6, + "bottom": 309, + "img": 14, + "max": 18, + "middle": 20, + "interpolation": 2, + "mode": 2, + "bicubic": 2, + "#map_canvas": 2, + ".google": 2, + "maps": 2, + "button": 18, + "input": 336, + "select": 90, + "textarea": 76, + "margin": 424, + "*overflow": 3, + "visible": 8, + "normal": 18, + "inner": 37, + "padding": 174, + "type": 174, + "appearance": 6, + "cursor": 30, + "pointer": 12, + "label": 20, + "textfield": 2, + "search": 66, + "decoration": 33, + "cancel": 2, + "overflow": 21, + "@media": 2, + "print": 4, + "*": 2, + "important": 18, + "#000": 2, + "visited": 2, + "underline": 6, + "href": 28, + "attr": 4, + "abbr": 6, + "title": 10, + ".ir": 2, + "pre": 16, + "blockquote": 14, + "solid": 93, + "#999": 6, + "page": 6, + "break": 12, + "inside": 4, + "avoid": 6, + "thead": 38, + "group": 120, + "tr": 92, + "@page": 2, + "cm": 2, + "p": 14, + "h2": 14, + "h3": 14, + "orphans": 2, + "widows": 2, + "body": 3, + "family": 10, + "Helvetica": 6, + "Arial": 6, + "sans": 6, + "serif": 6, + "#333333": 26, + "#ffffff": 136, + "#0088cc": 24, + "#005580": 8, + ".img": 6, + "rounded": 2, + "radius": 534, + "polaroid": 2, + "#fff": 10, + "#ccc": 13, + "rgba": 409, + "circle": 18, + ".row": 126, + "left": 489, + "class*": 100, + "float": 84, + ".container": 32, + ".navbar": 332, + "static": 14, + "fixed": 36, + ".span12": 4, + ".span11": 4, + ".span10": 4, + ".span9": 4, + ".span8": 4, + ".span7": 4, + ".span6": 4, + ".span5": 4, + ".span4": 4, + ".span3": 4, + ".span2": 4, + ".span1": 4, + ".offset12": 6, + ".offset11": 6, + ".offset10": 6, + ".offset9": 6, + ".offset8": 6, + ".offset7": 6, + ".offset6": 6, + ".offset5": 6, + ".offset4": 6, + ".offset3": 6, + ".offset2": 6, + ".offset1": 6, + "fluid": 126, + "*margin": 70, + "first": 179, + "child": 301, + ".controls": 28, + "row": 20, + "+": 105, + "*width": 26, + ".pull": 16, + "right": 258, + ".lead": 2, + "weight": 28, + "small": 66, + "strong": 2, + "bold": 14, + "style": 21, + "italic": 4, + "cite": 2, + ".muted": 2, + "#999999": 50, + "a.muted": 4, + "#808080": 2, + ".text": 14, + "warning": 33, + "#c09853": 14, + "a.text": 16, + "#a47e3c": 4, + "error": 10, + "#b94a48": 20, + "#953b39": 6, + "info": 37, + "#3a87ad": 18, + "#2d6987": 6, + "success": 35, + "#468847": 18, + "#356635": 6, + "center": 17, + "h1": 11, + "h4": 20, + "h5": 6, + "h6": 6, + "inherit": 8, + "rendering": 2, + "optimizelegibility": 2, + ".page": 2, + "#eeeeee": 31, + "ul": 84, + "ol": 10, + "li": 205, + "ul.unstyled": 2, + "ol.unstyled": 2, + "list": 44, + "ul.inline": 4, + "ol.inline": 4, + "dl": 2, + "dt": 6, + "dd": 6, + ".dl": 12, + "horizontal": 60, + "hidden": 9, + "ellipsis": 2, + "white": 25, + "space": 23, + "nowrap": 14, + "hr": 2, + "data": 2, + "original": 2, + "help": 2, + "abbr.initialism": 2, + "transform": 4, + "uppercase": 4, + "blockquote.pull": 10, + "q": 4, + "address": 2, + "code": 6, + "Monaco": 2, + "Menlo": 2, + "Consolas": 2, + "monospace": 2, + "#d14": 2, + "#f7f7f9": 2, + "#e1e1e8": 2, + "word": 6, + "all": 10, + "wrap": 6, + "#f5f5f5": 26, + "pre.prettyprint": 2, + ".pre": 2, + "scrollable": 2, + "y": 2, + "scroll": 2, + ".label": 30, + ".badge": 30, + "empty": 7, + "a.label": 4, + "a.badge": 4, + "#f89406": 27, + "#c67605": 4, + "inverse": 110, + "#1a1a1a": 2, + ".btn": 506, + "mini": 34, + "collapse": 12, + "spacing": 3, + ".table": 180, + "th": 70, + "td": 66, + "#dddddd": 16, + "caption": 18, + "colgroup": 18, + "tbody": 68, + "condensed": 4, + "bordered": 76, + "separate": 4, + "*border": 8, + "topleft": 16, + "last": 118, + "topright": 16, + "tfoot": 12, + "bottomleft": 16, + "bottomright": 16, + "striped": 13, + "nth": 4, + "odd": 4, + "#f9f9f9": 12, + "cell": 2, + "td.span1": 2, + "th.span1": 2, + "td.span2": 2, + "th.span2": 2, + "td.span3": 2, + "th.span3": 2, + "td.span4": 2, + "th.span4": 2, + "td.span5": 2, + "th.span5": 2, + "td.span6": 2, + "th.span6": 2, + "td.span7": 2, + "th.span7": 2, + "td.span8": 2, + "th.span8": 2, + "td.span9": 2, + "th.span9": 2, + "td.span10": 2, + "th.span10": 2, + "td.span11": 2, + "th.span11": 2, + "td.span12": 2, + "th.span12": 2, + "tr.success": 4, + "#dff0d8": 6, + "tr.error": 4, + "#f2dede": 6, + "tr.warning": 4, + "#fcf8e3": 6, + "tr.info": 4, + "#d9edf7": 6, + "#d0e9c6": 2, + "#ebcccc": 2, + "#faf2cc": 2, + "#c4e3f3": 2, + "form": 38, + "fieldset": 2, + "legend": 6, + "#e5e5e5": 28, + ".uneditable": 80, + "#555555": 18, + "#cccccc": 18, + "inset": 132, + "transition": 36, + "linear": 204, + ".2s": 16, + "o": 48, + ".075": 12, + ".6": 6, + "multiple": 2, + "#fcfcfc": 2, + "allowed": 4, + "placeholder": 18, + ".radio": 26, + ".checkbox": 26, + ".radio.inline": 6, + ".checkbox.inline": 6, + "medium": 2, + "large": 40, + "xlarge": 2, + "xxlarge": 2, + "append": 120, + "prepend": 82, + "input.span12": 4, + "textarea.span12": 2, + "input.span11": 4, + "textarea.span11": 2, + "input.span10": 4, + "textarea.span10": 2, + "input.span9": 4, + "textarea.span9": 2, + "input.span8": 4, + "textarea.span8": 2, + "input.span7": 4, + "textarea.span7": 2, + "input.span6": 4, + "textarea.span6": 2, + "input.span5": 4, + "textarea.span5": 2, + "input.span4": 4, + "textarea.span4": 2, + "input.span3": 4, + "textarea.span3": 2, + "input.span2": 4, + "textarea.span2": 2, + "input.span1": 4, + "textarea.span1": 2, + "disabled": 36, + "readonly": 10, + ".control": 150, + "group.warning": 32, + ".help": 44, + "#dbc59e": 6, + ".add": 36, + "on": 36, + "group.error": 32, + "#d59392": 6, + "group.success": 32, + "#7aba7b": 6, + "group.info": 32, + "#7ab5d3": 6, + "invalid": 12, + "#ee5f5b": 18, + "#e9322d": 2, + "#f8b9b7": 6, + ".form": 132, + "actions": 10, + "#595959": 2, + ".dropdown": 126, + "menu": 42, + ".popover": 14, + "z": 12, + "index": 14, + "toggle": 84, + ".active": 86, + "#a9dba9": 2, + "#46a546": 2, + "prepend.input": 22, + "input.search": 2, + "query": 22, + ".search": 22, + "*padding": 36, + "image": 187, + "gradient": 175, + "#e6e6e6": 20, + "from": 40, + "to": 75, + "repeat": 66, + "x": 30, + "filter": 57, + "progid": 48, + "DXImageTransform.Microsoft.gradient": 48, + "startColorstr": 30, + "endColorstr": 30, + "GradientType": 30, + "#bfbfbf": 4, + "*background": 36, + "enabled": 18, + "false": 18, + "#b3b3b3": 2, + ".3em": 6, + ".2": 12, + ".05": 24, + ".btn.active": 8, + ".btn.disabled": 4, + "#d9d9d9": 4, + "s": 25, + ".15": 24, + "default": 12, + "opacity": 15, + "alpha": 7, + "class": 26, + "primary.active": 6, + "warning.active": 6, + "danger.active": 6, + "success.active": 6, + "info.active": 6, + "inverse.active": 6, + "primary": 14, + "#006dcc": 2, + "#0044cc": 20, + "#002a80": 2, + "primary.disabled": 2, + "#003bb3": 2, + "#003399": 2, + "#faa732": 3, + "#fbb450": 16, + "#ad6704": 2, + "warning.disabled": 2, + "#df8505": 2, + "danger": 21, + "#da4f49": 2, + "#bd362f": 20, + "#802420": 2, + "danger.disabled": 2, + "#a9302a": 2, + "#942a25": 2, + "#5bb75b": 2, + "#62c462": 16, + "#51a351": 20, + "#387038": 2, + "success.disabled": 2, + "#499249": 2, + "#408140": 2, + "#49afcd": 2, + "#5bc0de": 16, + "#2f96b4": 20, + "#1f6377": 2, + "info.disabled": 2, + "#2a85a0": 2, + "#24748c": 2, + "#363636": 2, + "#444444": 10, + "#222222": 32, + "#000000": 14, + "inverse.disabled": 2, + "#151515": 12, + "#080808": 2, + "button.btn": 4, + "button.btn.btn": 6, + ".btn.btn": 6, + "link": 28, + "url": 4, + "no": 2, + ".icon": 288, + ".nav": 308, + "pills": 28, + "submenu": 8, + "glass": 2, + "music": 2, + "envelope": 2, + "heart": 2, + "star": 4, + "user": 2, + "film": 2, + "ok": 6, + "remove": 6, + "zoom": 5, + "in": 10, + "out": 10, + "off": 4, + "signal": 2, + "cog": 2, + "trash": 2, + "home": 2, + "file": 2, + "time": 2, + "road": 2, + "download": 4, + "alt": 6, + "upload": 2, + "inbox": 2, + "play": 4, + "refresh": 2, + "lock": 2, + "flag": 2, + "headphones": 2, + "volume": 6, + "down": 12, + "up": 12, + "qrcode": 2, + "barcode": 2, + "tag": 2, + "tags": 2, + "book": 2, + "bookmark": 2, + "camera": 2, + "justify": 2, + "indent": 4, + "facetime": 2, + "picture": 2, + "pencil": 2, + "map": 2, + "marker": 2, + "tint": 2, + "edit": 2, + "share": 4, + "check": 2, + "move": 2, + "step": 4, + "backward": 6, + "fast": 4, + "pause": 2, + "stop": 32, + "forward": 6, + "eject": 2, + "chevron": 8, + "plus": 4, + "sign": 16, + "minus": 4, + "question": 2, + "screenshot": 2, + "ban": 2, + "arrow": 21, + "resize": 8, + "full": 2, + "asterisk": 2, + "exclamation": 2, + "gift": 2, + "leaf": 2, + "fire": 2, + "eye": 4, + "open": 4, + "close": 4, + "plane": 2, + "calendar": 2, + "random": 2, + "comment": 2, + "magnet": 2, + "retweet": 2, + "shopping": 2, + "cart": 2, + "folder": 4, + "hdd": 2, + "bullhorn": 2, + "bell": 2, + "certificate": 2, + "thumbs": 4, + "hand": 8, + "globe": 2, + "wrench": 2, + "tasks": 2, + "briefcase": 2, + "fullscreen": 2, + "toolbar": 8, + ".btn.large": 4, + ".large.dropdown": 2, + "group.open": 18, + ".125": 6, + ".btn.dropdown": 2, + "primary.dropdown": 2, + "warning.dropdown": 2, + "danger.dropdown": 2, + "success.dropdown": 2, + "info.dropdown": 2, + "inverse.dropdown": 2, + ".caret": 70, + ".dropup": 2, + ".divider": 8, + "tabs": 94, + "#ddd": 38, + "stacked": 24, + "tabs.nav": 12, + "pills.nav": 4, + ".dropdown.active": 4, + ".open": 8, + "li.dropdown.open.active": 14, + "li.dropdown.open": 14, + ".tabs": 62, + ".tabbable": 8, + ".tab": 8, + "below": 18, + "pane": 4, + ".pill": 6, + ".disabled": 22, + "*position": 2, + "*z": 2, + "#fafafa": 2, + "#f2f2f2": 22, + "#d4d4d4": 2, + "collapse.collapse": 2, + ".brand": 14, + "#777777": 12, + ".1": 24, + ".nav.pull": 2, + "navbar": 28, + "#ededed": 2, + "navbar.active": 8, + "navbar.disabled": 4, + "bar": 21, + "absolute": 8, + "li.dropdown": 12, + "li.dropdown.active": 8, + "menu.pull": 8, + "#1b1b1b": 2, + "#111111": 18, + "#252525": 2, + "#515151": 2, + "query.focused": 2, + "#0e0e0e": 2, + "#040404": 18, + ".breadcrumb": 8, + ".pagination": 78, + "span": 38, + "centered": 2, + ".pager": 34, + ".next": 4, + ".previous": 4, + ".thumbnails": 12, + ".thumbnail": 6, + "ease": 12, + "a.thumbnail": 4, + ".caption": 2, + ".alert": 34, + "#fbeed5": 2, + ".close": 2, + "#d6e9c6": 2, + "#eed3d7": 2, + "#bce8f1": 2, + "@": 8, + "keyframes": 8, + "progress": 15, + "stripes": 15, + "@keyframes": 2, + ".progress": 22, + "#f7f7f7": 3, + ".bar": 22, + "#0e90d2": 2, + "#149bdf": 11, + "#0480be": 10, + "deg": 20, + ".progress.active": 1, + "animation": 5, + "infinite": 5, + "#dd514c": 1, + "#c43c35": 5, + "danger.progress": 1, + "#5eb95e": 1, + "#57a957": 5, + "success.progress": 1, + "#4bb1cf": 1, + "#339bb9": 5, + "info.progress": 1, + "warning.progress": 1, + ".hero": 3, + "unit": 3, + "letter": 1, + ".media": 11, + "object": 1, + "heading": 1, + ".tooltip": 7, + "visibility": 1, + ".tooltip.in": 1, + ".tooltip.top": 2, + ".tooltip.right": 2, + ".tooltip.bottom": 2, + ".tooltip.left": 2, + "clip": 3, + ".popover.top": 3, + ".popover.right": 3, + ".popover.bottom": 3, + ".popover.left": 3, + "#ebebeb": 1, + ".arrow": 12, + ".modal": 5, + "backdrop": 2, + "backdrop.fade": 1, + "backdrop.fade.in": 1 + }, + "Dart": { + "class": 1, + "Point": 7, + "{": 3, + "(": 7, + "this.x": 1, + "this.y": 1, + ")": 7, + ";": 8, + "distanceTo": 1, + "other": 1, + "var": 3, + "dx": 3, + "x": 2, + "-": 2, + "other.x": 1, + "dy": 3, + "y": 2, + "other.y": 1, + "return": 1, + "Math.sqrt": 1, + "*": 2, + "+": 1, + "}": 3, + "main": 1, + "p": 1, + "new": 2, + "q": 1, + "print": 1 + }, + "Diff": { + "diff": 1, + "-": 5, + "git": 1, + "a/lib/linguist.rb": 2, + "b/lib/linguist.rb": 2, + "index": 1, + "d472341..8ad9ffb": 1, + "+": 3 + }, + "Ecl": { + "#option": 1, + "(": 32, + "true": 1, + ")": 32, + ";": 23, + "namesRecord": 4, + "RECORD": 1, + "string20": 1, + "surname": 1, + "string10": 2, + "forename": 1, + "integer2": 5, + "age": 2, + "dadAge": 1, + "mumAge": 1, + "END": 1, + "namesRecord2": 3, + "record": 1, + "extra": 1, + "end": 1, + "namesTable": 11, + "dataset": 2, + "FLAT": 2, + "namesTable2": 9, + "aveAgeL": 3, + "l": 1, + "l.dadAge": 1, + "+": 16, + "l.mumAge": 1, + "/2": 2, + "aveAgeR": 4, + "r": 1, + "r.dadAge": 1, + "r.mumAge": 1, + "output": 9, + "join": 11, + "left": 2, + "right": 3, + "//Several": 1, + "simple": 1, + "examples": 1, + "of": 1, + "sliding": 2, + "syntax": 1, + "left.age": 8, + "right.age": 12, + "-": 5, + "and": 10, + "<": 1, + "between": 7, + "//Same": 1, + "but": 1, + "on": 1, + "strings.": 1, + "Also": 1, + "includes": 1, + "to": 1, + "ensure": 1, + "sort": 1, + "is": 1, + "done": 1, + "by": 1, + "non": 1, + "before": 1, + "sliding.": 1, + "left.surname": 2, + "right.surname": 4, + "[": 4, + "]": 4, + "all": 1, + "//This": 1, + "should": 1, + "not": 1, + "generate": 1, + "a": 1, + "self": 1 + }, + "edn": { + "[": 24, + "{": 22, + "db/id": 22, + "#db/id": 22, + "db.part/db": 6, + "]": 24, + "db/ident": 3, + "object/name": 18, + "db/doc": 4, + "db/valueType": 3, + "db.type/string": 2, + "db/index": 3, "true": 3, - "]": 165, - "[": 165, - "}": 143, - "{": 143 + "db/cardinality": 3, + "db.cardinality/one": 3, + "db.install/_attribute": 3, + "}": 22, + "object/meanRadius": 18, + "db.type/double": 1, + "data/source": 2, + "db.part/tx": 2, + "db.part/user": 17 + }, + "Elm": { + "import": 3, + "List": 1, + "(": 119, + "intercalate": 2, + "intersperse": 3, + ")": 116, + "Website.Skeleton": 1, + "Website.ColorScheme": 1, + "addFolder": 4, + "folder": 2, + "lst": 6, + "let": 2, + "add": 2, + "x": 13, + "y": 7, + "+": 14, + "in": 2, + "f": 8, + "n": 2, + "xs": 9, + "map": 11, + "elements": 2, + "[": 31, + "]": 31, + "functional": 2, + "reactive": 2, + "-": 11, + "example": 3, + "name": 6, + "loc": 2, + "Text.link": 1, + "toText": 6, + "toLinks": 2, + "title": 2, + "links": 2, + "flow": 4, + "right": 8, + "width": 3, + "text": 4, + "italic": 1, + "bold": 2, + ".": 9, + "Text.color": 1, + "accent4": 1, + "insertSpace": 2, + "case": 5, + "of": 7, + "{": 1, + "spacer": 2, + ";": 1, + "}": 1, + "subsection": 2, + "w": 7, + "info": 2, + "down": 3, + "words": 2, + "markdown": 1, + "|": 3, + "###": 1, + "Basic": 1, + "Examples": 1, + "Each": 1, + "listed": 1, + "below": 1, + "focuses": 1, + "on": 1, + "a": 5, + "single": 1, + "function": 1, + "or": 1, + "concept.": 1, + "These": 1, + "examples": 1, + "demonstrate": 1, + "all": 1, + "the": 1, + "basic": 1, + "building": 1, + "blocks": 1, + "Elm.": 1, + "content": 2, + "exampleSets": 2, + "plainText": 1, + "main": 3, + "lift": 1, + "skeleton": 1, + "Window.width": 1, + "asText": 1, + "qsort": 4, + "filter": 2, + "<)x)>": 1, + "data": 1, + "Tree": 3, + "Node": 8, + "Empty": 8, + "empty": 2, + "singleton": 2, + "v": 8, + "insert": 4, + "tree": 7, + "left": 7, + "if": 2, + "then": 2, + "else": 2, + "<": 1, + "fromList": 3, + "foldl": 1, + "depth": 5, + "max": 1, + "t1": 2, + "t2": 3, + "display": 4, + "monospace": 1, + "concat": 1, + "show": 2 + }, + "Emacs Lisp": { + "(": 156, + "print": 1, + ")": 144, + ";": 333, + "ess": 48, + "-": 294, + "julia.el": 2, + "ESS": 5, + "julia": 39, + "mode": 12, + "and": 3, + "inferior": 13, + "interaction": 1, + "Copyright": 1, + "C": 2, + "Vitalie": 3, + "Spinu.": 1, + "Filename": 1, + "Author": 1, + "Spinu": 2, + "based": 1, + "on": 2, + "mode.el": 1, + "from": 3, + "lang": 1, + "project": 1, + "Maintainer": 1, + "Created": 1, + "Keywords": 1, + "This": 4, + "file": 10, + "is": 5, + "*NOT*": 1, + "part": 2, + "of": 8, + "GNU": 4, + "Emacs.": 1, + "program": 6, + "free": 1, + "software": 1, + "you": 1, + "can": 1, + "redistribute": 1, + "it": 3, + "and/or": 1, + "modify": 5, + "under": 1, + "the": 10, + "terms": 1, + "General": 3, + "Public": 3, + "License": 3, + "as": 1, + "published": 1, + "by": 1, + "Free": 2, + "Software": 2, + "Foundation": 2, + "either": 1, + "version": 2, + "any": 1, + "later": 1, + "version.": 1, + "distributed": 1, + "in": 3, + "hope": 1, + "that": 2, + "will": 1, + "be": 2, + "useful": 1, + "but": 2, + "WITHOUT": 1, + "ANY": 1, + "WARRANTY": 1, + "without": 1, + "even": 1, + "implied": 1, + "warranty": 1, + "MERCHANTABILITY": 1, + "or": 3, + "FITNESS": 1, + "FOR": 1, + "A": 1, + "PARTICULAR": 1, + "PURPOSE.": 1, + "See": 1, + "for": 8, + "more": 1, + "details.": 1, + "You": 1, + "should": 2, + "have": 1, + "received": 1, + "a": 4, + "copy": 2, + "along": 1, + "with": 4, + "this": 1, + "see": 2, + "COPYING.": 1, + "If": 1, + "not": 1, + "write": 2, + "to": 4, + "Inc.": 1, + "Franklin": 1, + "Street": 1, + "Fifth": 1, + "Floor": 1, + "Boston": 1, + "MA": 1, + "USA.": 1, + "Commentary": 1, + "customise": 1, + "name": 8, + "point": 6, + "your": 1, + "release": 1, + "basic": 1, + "start": 13, + "M": 2, + "x": 2, + "julia.": 2, + "require": 2, + "auto": 1, + "alist": 9, + "table": 9, + "character": 1, + "quote": 2, + "transpose": 1, + "syntax": 7, + "entry": 4, + ".": 40, + "Syntax": 3, + "inside": 1, + "char": 6, + "defvar": 5, + "let": 3, + "make": 4, + "defconst": 5, + "regex": 5, + "unquote": 1, + "forloop": 1, + "subset": 2, + "regexp": 6, + "font": 6, + "lock": 6, + "defaults": 2, + "list": 3, + "identity": 1, + "keyword": 2, + "face": 4, + "constant": 1, + "cons": 1, + "function": 7, + "keep": 2, + "string": 8, + "paragraph": 3, + "concat": 7, + "page": 2, + "delimiter": 2, + "separate": 1, + "ignore": 2, + "fill": 1, + "prefix": 2, + "t": 6, + "final": 1, + "newline": 1, + "comment": 6, + "add": 4, + "skip": 1, + "column": 1, + "indent": 8, + "S": 2, + "line": 5, + "calculate": 1, + "parse": 1, + "sexp": 1, + "comments": 1, + "style": 2, + "default": 1, + "ignored": 1, + "local": 6, + "process": 5, + "nil": 12, + "dump": 2, + "files": 1, + "_": 1, + "autoload": 1, + "defun": 5, + "send": 3, + "visibly": 1, + "temporary": 1, + "directory": 2, + "temp": 2, + "insert": 1, + "format": 3, + "load": 1, + "command": 5, + "get": 3, + "help": 3, + "topics": 1, + "&": 3, + "optional": 3, + "proc": 3, + "words": 1, + "vector": 1, + "com": 1, + "error": 6, + "s": 5, + "*in": 1, + "[": 3, + "n": 1, + "]": 3, + "*": 1, + "at": 5, + ".*": 2, + "+": 5, + "w*": 1, + "http": 1, + "//docs.julialang.org/en/latest/search/": 1, + "q": 1, + "%": 1, + "include": 1, + "funargs": 1, + "re": 2, + "args": 10, + "language": 1, + "STERM": 1, + "editor": 2, + "R": 2, + "pager": 2, + "versions": 1, + "Julia": 1, + "made": 1, + "available.": 1, + "String": 1, + "arguments": 2, + "used": 1, + "when": 2, + "starting": 1, + "group": 1, + "###autoload": 2, + "interactive": 2, + "setq": 2, + "customize": 5, + "emacs": 1, + "<": 1, + "hook": 4, + "complete": 1, + "object": 2, + "completion": 4, + "functions": 2, + "first": 1, + "if": 4, + "fboundp": 1, + "end": 1, + "workaround": 1, + "set": 3, + "variable": 3, + "post": 1, + "run": 2, + "settings": 1, + "notably": 1, + "null": 1, + "dribble": 1, + "buffer": 3, + "debugging": 1, + "only": 1, + "dialect": 1, + "current": 2, + "arg": 1, + "let*": 2, + "jl": 2, + "space": 1, + "just": 1, + "case": 1, + "read": 1, + "..": 3, + "multi": 1, + "...": 1, + "tb": 1, + "logo": 1, + "goto": 2, + "min": 1, + "while": 1, + "search": 1, + "forward": 1, + "replace": 1, + "match": 1, + "max": 1, + "inject": 1, + "code": 1, + "etc": 1, + "hooks": 1, + "busy": 1, + "funname": 5, + "eldoc": 1, + "show": 1, + "symbol": 2, + "aggressive": 1, + "car": 1, + "funname.start": 1, + "sequence": 1, + "nth": 1, + "W": 1, + "window": 2, + "width": 1, + "minibuffer": 1, + "length": 1, + "doc": 1, + "propertize": 1, + "use": 1, + "classes": 1, + "screws": 1, + "egrep": 1 + }, + "Erlang": { + "SHEBANG#!escript": 3, + "%": 134, + "-": 262, + "*": 9, + "erlang": 5, + "smp": 1, + "enable": 1, + "sname": 1, + "factorial": 1, + "mnesia": 1, + "debug": 1, + "verbose": 1, + "main": 4, + "(": 236, + "[": 66, + "String": 2, + "]": 61, + ")": 230, + "try": 2, + "N": 6, + "list_to_integer": 1, + "F": 16, + "fac": 4, + "io": 5, + "format": 7, + "catch": 2, + "_": 52, + "usage": 3, + "end": 3, + ";": 56, + ".": 37, + "halt": 2, + "export": 2, + "main/1": 1, + "For": 1, + "each": 1, + "header": 1, + "file": 6, + "it": 2, + "scans": 1, + "thru": 1, + "all": 1, + "records": 1, + "and": 8, + "create": 1, + "helper": 1, + "functions": 2, + "Helper": 1, + "are": 3, + "setters": 1, + "getters": 1, + "fields": 4, + "fields_atom": 4, + "type": 6, + "module": 2, + "record_helper": 1, + "make/1": 1, + "make/2": 1, + "make": 3, + "HeaderFiles": 5, + "atom_to_list": 18, + "X": 12, + "||": 6, + "<->": 5, + "hrl": 1, + "relative": 1, + "to": 2, + "current": 1, + "dir": 1, + "OutDir": 4, + "ModuleName": 3, + "HeaderComment": 2, + "ModuleDeclaration": 2, + "+": 214, + "<": 1, + "Src": 10, + "format_src": 8, + "lists": 11, + "sort": 1, + "flatten": 6, + "read": 2, + "generate_type_default_function": 2, + "write_file": 1, + "erl": 1, + "list_to_binary": 1, + "HeaderFile": 4, + "epp": 1, + "parse_file": 1, + "of": 9, + "{": 109, + "ok": 34, + "Tree": 4, + "}": 109, + "parse": 2, + "error": 4, + "Error": 4, + "catched_error": 1, + "end.": 3, + "|": 25, + "T": 24, + "when": 29, + "length": 6, + "Type": 3, + "A": 5, + "B": 4, + "NSrc": 4, + "_Type": 1, + "Type1": 2, + "parse_record": 3, + "attribute": 1, + "record": 4, + "RecordInfo": 2, + "RecordName": 41, + "RecordFields": 10, + "if": 1, + "generate_setter_getter_function": 5, + "generate_type_function": 3, + "true": 3, + "generate_fields_function": 2, + "generate_fields_atom_function": 2, + "parse_field_name": 5, + "record_field": 9, + "atom": 9, + "FieldName": 26, + "field": 4, + "_FieldName": 2, + "ParentRecordName": 8, + "parent_field": 2, + "parse_field_name_atom": 5, + "concat": 5, + "_S": 3, + "S": 6, + "concat_ext": 4, + "parse_field": 6, + "AccFields": 6, + "AccParentFields": 6, + "case": 3, + "Field": 2, + "PField": 2, + "parse_field_atom": 4, + "zzz": 1, + "Fields": 4, + "field_atom": 1, + "to_setter_getter_function": 5, + "setter": 2, + "getter": 2, + "This": 2, + "is": 1, + "auto": 1, + "generated": 1, + "file.": 1, + "Please": 1, + "don": 1, + "t": 1, + "edit": 1, + "record_utils": 1, + "compile": 2, + "export_all": 1, + "include": 1, + "abstract_message": 21, + "async_message": 12, + "clientId": 5, + "destination": 5, + "messageId": 5, + "timestamp": 5, + "timeToLive": 5, + "headers": 5, + "body": 5, + "correlationId": 5, + "correlationIdBytes": 5, + "get": 12, + "Obj": 49, + "is_record": 25, + "Obj#abstract_message.body": 1, + "Obj#abstract_message.clientId": 1, + "Obj#abstract_message.destination": 1, + "Obj#abstract_message.headers": 1, + "Obj#abstract_message.messageId": 1, + "Obj#abstract_message.timeToLive": 1, + "Obj#abstract_message.timestamp": 1, + "Obj#async_message.correlationId": 1, + "Obj#async_message.correlationIdBytes": 1, + "parent": 5, + "Obj#async_message.parent": 3, + "ParentProperty": 6, + "is_atom": 2, + "set": 13, + "Value": 35, + "NewObj": 20, + "Obj#abstract_message": 7, + "Obj#async_message": 3, + "NewParentObject": 2, + "undefined.": 1, + "Mode": 1, + "coding": 1, + "utf": 1, + "tab": 1, + "width": 1, + "c": 2, + "basic": 1, + "offset": 1, + "indent": 1, + "tabs": 1, + "mode": 2, + "BSD": 1, + "LICENSE": 1, + "Copyright": 1, + "Michael": 2, + "Truog": 2, + "<mjtruog>": 1, + "at": 1, + "gmail": 1, + "dot": 1, + "com": 1, + "All": 2, + "rights": 1, + "reserved.": 1, + "Redistribution": 1, + "use": 2, + "in": 3, + "source": 2, + "binary": 2, + "forms": 1, + "with": 2, + "or": 3, + "without": 2, + "modification": 1, + "permitted": 1, + "provided": 2, + "that": 1, + "the": 9, + "following": 4, + "conditions": 3, + "met": 1, + "Redistributions": 2, + "code": 2, + "must": 3, + "retain": 1, + "above": 2, + "copyright": 2, + "notice": 2, + "this": 4, + "list": 2, + "disclaimer.": 1, + "form": 1, + "reproduce": 1, + "disclaimer": 1, + "documentation": 1, + "and/or": 1, + "other": 1, + "materials": 2, + "distribution.": 1, + "advertising": 1, + "mentioning": 1, + "features": 1, + "software": 3, + "display": 1, + "acknowledgment": 1, + "product": 1, + "includes": 1, + "developed": 1, + "by": 1, + "The": 1, + "name": 1, + "author": 2, + "may": 1, + "not": 1, + "be": 1, + "used": 1, + "endorse": 1, + "promote": 1, + "products": 1, + "derived": 1, + "from": 1, + "specific": 1, + "prior": 1, + "written": 1, + "permission": 1, + "THIS": 2, + "SOFTWARE": 2, + "IS": 1, + "PROVIDED": 1, + "BY": 1, + "THE": 5, + "COPYRIGHT": 2, + "HOLDERS": 1, + "AND": 4, + "CONTRIBUTORS": 2, + "ANY": 4, + "EXPRESS": 1, + "OR": 8, + "IMPLIED": 2, + "WARRANTIES": 2, + "INCLUDING": 3, + "BUT": 2, + "NOT": 2, + "LIMITED": 2, + "TO": 2, + "OF": 8, + "MERCHANTABILITY": 1, + "FITNESS": 1, + "FOR": 2, + "PARTICULAR": 1, + "PURPOSE": 1, + "ARE": 1, + "DISCLAIMED.": 1, + "IN": 3, + "NO": 1, + "EVENT": 1, + "SHALL": 1, + "OWNER": 1, + "BE": 1, + "LIABLE": 1, + "DIRECT": 1, + "INDIRECT": 1, + "INCIDENTAL": 1, + "SPECIAL": 1, + "EXEMPLARY": 1, + "CONSEQUENTIAL": 1, + "DAMAGES": 1, + "PROCUREMENT": 1, + "SUBSTITUTE": 1, + "GOODS": 1, + "SERVICES": 1, + "LOSS": 1, + "USE": 2, + "DATA": 1, + "PROFITS": 1, + "BUSINESS": 1, + "INTERRUPTION": 1, + "HOWEVER": 1, + "CAUSED": 1, + "ON": 1, + "THEORY": 1, + "LIABILITY": 2, + "WHETHER": 1, + "CONTRACT": 1, + "STRICT": 1, + "TORT": 1, + "NEGLIGENCE": 1, + "OTHERWISE": 1, + "ARISING": 1, + "WAY": 1, + "OUT": 1, + "EVEN": 1, + "IF": 1, + "ADVISED": 1, + "POSSIBILITY": 1, + "SUCH": 1, + "DAMAGE.": 1, + "sys": 2, + "RelToolConfig": 5, + "target_dir": 2, + "TargetDir": 14, + "overlay": 2, + "OverlayConfig": 4, + "consult": 1, + "Spec": 2, + "reltool": 2, + "get_target_spec": 1, + "make_dir": 1, + "eexist": 1, + "exit_code": 3, + "eval_target_spec": 1, + "root_dir": 1, + "process_overlay": 2, + "shell": 3, + "Command": 3, + "Arguments": 3, + "CommandSuffix": 2, + "reverse": 4, + "os": 1, + "cmd": 1, + "io_lib": 2, + "boot_rel_vsn": 2, + "Config": 2, + "_RelToolConfig": 1, + "rel": 2, + "_Name": 1, + "Ver": 1, + "proplists": 1, + "lookup": 1, + "Ver.": 1, + "minimal": 2, + "parsing": 1, + "for": 1, + "handling": 1, + "mustache": 11, + "syntax": 1, + "Body": 2, + "Context": 11, + "Result": 10, + "_Context": 1, + "KeyStr": 6, + "mustache_key": 4, + "C": 4, + "Rest": 10, + "Key": 2, + "list_to_existing_atom": 1, + "dict": 2, + "find": 1, + "support": 1, + "based": 1, + "on": 1, + "rebar": 1, + "overlays": 1, + "BootRelVsn": 2, + "OverlayVars": 2, + "from_list": 1, + "erts_vsn": 1, + "system_info": 1, + "version": 1, + "rel_vsn": 1, + "hostname": 1, + "net_adm": 1, + "localhost": 1, + "BaseDir": 7, + "get_cwd": 1, + "execute_overlay": 6, + "_Vars": 1, + "_BaseDir": 1, + "_TargetDir": 1, + "mkdir": 1, + "Out": 4, + "Vars": 7, + "filename": 3, + "join": 3, + "copy": 1, + "In": 2, + "InFile": 3, + "OutFile": 2, + "filelib": 1, + "is_file": 1, + "ExitCode": 2, + "flush": 1 + }, + "fish": { + "#": 18, + "set": 49, + "-": 102, + "g": 1, + "IFS": 4, + "n": 5, + "t": 2, + "l": 15, + "configdir": 2, + "/.config": 1, + "if": 21, + "q": 9, + "XDG_CONFIG_HOME": 2, + "end": 33, + "not": 8, + "fish_function_path": 4, + "configdir/fish/functions": 1, + "__fish_sysconfdir/functions": 1, + "__fish_datadir/functions": 3, + "contains": 4, + "[": 13, + "]": 13, + "fish_complete_path": 4, + "configdir/fish/completions": 1, + "__fish_sysconfdir/completions": 1, + "__fish_datadir/completions": 3, + "test": 7, + "d": 3, + "/usr/xpg4/bin": 3, + "PATH": 6, + "path_list": 4, + "/bin": 1, + "/usr/bin": 1, + "/usr/X11R6/bin": 1, + "/usr/local/bin": 1, + "__fish_bin_dir": 1, + "switch": 3, + "USER": 1, + "case": 9, + "root": 1, + "/sbin": 1, + "/usr/sbin": 1, + "/usr/local/sbin": 1, + "for": 1, + "i": 5, + "in": 2, + "function": 6, + "fish_sigtrap_handler": 1, + "on": 2, + "signal": 1, + "TRAP": 1, + "no": 2, + "scope": 1, + "shadowing": 1, + "description": 2, + "breakpoint": 1, + "__fish_on_interactive": 2, + "event": 1, + "fish_prompt": 1, + "__fish_config_interactive": 1, + "functions": 5, + "e": 6, + "eval": 5, + "S": 1, + "If": 2, + "we": 2, + "are": 1, + "an": 1, + "interactive": 8, + "shell": 1, + "should": 2, + "enable": 1, + "full": 4, + "job": 5, + "control": 5, + "since": 1, + "it": 1, + "behave": 1, + "like": 2, + "the": 1, + "real": 1, + "code": 1, + "was": 1, + "executed.": 1, + "don": 1, + "do": 1, + "this": 1, + "commands": 1, + "that": 1, + "expect": 1, + "to": 1, + "be": 1, + "used": 1, + "interactively": 1, + "less": 1, + "wont": 1, + "work": 1, + "using": 1, + "eval.": 1, + "mode": 5, + "status": 7, + "is": 3, + "else": 3, + "none": 1, + "echo": 3, + "|": 3, + ".": 2, + "<": 1, + "&": 1, + "res": 2, + "return": 6, + "funced": 3, + "editor": 7, + "EDITOR": 1, + "funcname": 14, + "while": 2, + "argv": 9, + "h": 1, + "help": 1, + "__fish_print_help": 1, + "set_color": 4, + "red": 2, + "printf": 3, + "(": 7, + "_": 3, + ")": 7, + "normal": 2, + "begin": 2, + ";": 7, + "or": 3, + "init": 5, + "nend": 2, + "editor_cmd": 2, + "type": 1, + "f": 3, + "/dev/null": 2, + "fish": 3, + "z": 1, + "fish_indent": 2, + "indent": 1, + "prompt": 2, + "read": 1, + "p": 1, + "c": 1, + "s": 1, + "cmd": 2, + "TMPDIR": 2, + "/tmp": 1, + "tmpname": 8, + "%": 2, + "self": 2, + "random": 2, + "stat": 2, + "rm": 1 + }, + "Forth": { + "(": 88, + "Block": 2, + "words.": 6, + ")": 87, + "variable": 3, + "blk": 3, + "current": 5, + "-": 473, + "block": 8, + "n": 22, + "addr": 11, + ";": 61, + "buffer": 2, + "evaluate": 1, + "extended": 3, + "semantics": 3, + "flush": 1, + "load": 2, + "...": 4, + "dup": 10, + "save": 2, + "input": 2, + "in": 4, + "@": 13, + "source": 5, + "#source": 2, + "interpret": 1, + "restore": 1, + "buffers": 2, + "update": 1, + "extension": 4, + "empty": 2, + "scr": 2, + "list": 1, + "bounds": 1, + "do": 2, + "i": 5, + "emit": 2, + "loop": 4, + "refill": 2, + "thru": 1, + "x": 10, + "y": 5, + "+": 17, + "swap": 12, + "*": 9, + "forth": 2, + "Copyright": 3, + "Lars": 3, + "Brinkhoff": 3, + "Kernel": 4, + "#tib": 2, + "TODO": 12, + ".r": 1, + ".": 5, + "[": 16, + "char": 10, + "]": 15, + "parse": 5, + "type": 3, + "immediate": 19, + "<": 14, + "flag": 4, + "r": 18, + "x1": 5, + "x2": 5, + "R": 13, + "rot": 2, + "r@": 2, + "noname": 1, + "align": 2, + "here": 9, + "c": 3, + "allot": 2, + "lastxt": 4, + "SP": 1, + "query": 1, + "tib": 1, + "body": 1, + "true": 1, + "tuck": 2, + "over": 5, + "u.r": 1, + "u": 3, + "if": 9, + "drop": 4, + "false": 1, + "else": 6, + "then": 5, + "unused": 1, + "value": 1, + "create": 2, + "does": 5, + "within": 1, + "compile": 2, + "Forth2012": 2, + "core": 1, + "action": 1, + "of": 3, + "defer": 2, + "name": 1, + "s": 4, + "c@": 2, + "negate": 1, + "nip": 2, + "bl": 4, + "word": 9, + "ahead": 2, + "resolve": 4, + "literal": 4, + "postpone": 14, + "nonimmediate": 1, + "caddr": 1, + "C": 9, + "find": 2, + "cells": 1, + "postponers": 1, + "execute": 1, + "unresolved": 4, + "orig": 5, + "chars": 1, + "n1": 2, + "n2": 2, + "orig1": 1, + "orig2": 1, + "branch": 5, + "dodoes_code": 1, + "code": 3, + "begin": 2, + "dest": 5, + "while": 2, + "repeat": 2, + "until": 1, + "recurse": 1, + "pad": 3, + "If": 1, + "necessary": 1, + "and": 3, + "keep": 1, + "parsing.": 1, + "string": 3, + "cmove": 1, + "state": 2, + "cr": 3, + "abort": 3, + "<quote>": 1, + "Undefined": 1, + "ok": 1, + "HELLO": 4, + "KataDiversion": 1, + "Forth": 1, + "utils": 1, + "the": 7, + "stack": 3, + "EMPTY": 1, + "DEPTH": 2, + "IF": 10, + "BEGIN": 3, + "DROP": 5, + "UNTIL": 3, + "THEN": 10, + "power": 2, + "**": 2, + "n1_pow_n2": 1, + "SWAP": 8, + "DUP": 14, + "DO": 2, + "OVER": 2, + "LOOP": 2, + "NIP": 4, + "compute": 1, + "highest": 1, + "below": 1, + "N.": 1, + "e.g.": 2, + "MAXPOW2": 2, + "log2_n": 1, + "ABORT": 1, + "ELSE": 7, + "|": 4, + "I": 5, + "i*2": 1, + "/": 3, + "kata": 1, + "test": 1, + "given": 3, + "N": 6, + "has": 1, + "two": 2, + "adjacent": 2, + "bits": 3, + "NOT": 3, + "TWO": 3, + "ADJACENT": 3, + "BITS": 3, + "bool": 1, + "uses": 1, + "following": 1, + "algorithm": 1, + "return": 5, + "A": 5, + "X": 5, + "LOG2": 1, + "end": 1, + "OR": 1, + "INVERT": 1, + "maximum": 1, + "number": 4, + "which": 3, + "can": 2, + "be": 2, + "made": 2, + "with": 2, + "MAX": 2, + "NB": 3, + "m": 2, + "**n": 1, + "numbers": 1, + "or": 1, + "less": 1, + "have": 1, + "not": 1, + "bits.": 1, + "see": 1, + "http": 1, + "//www.codekata.com/2007/01/code_kata_fifte.html": 1, + "HOW": 1, + "MANY": 1, + "Tools": 2, + ".s": 1, + "depth": 1, + "traverse": 1, + "dictionary": 1, + "assembler": 1, + "kernel": 1, + "bye": 1, + "cs": 2, + "pick": 1, + "roll": 1, + "editor": 1, + "forget": 1, + "reveal": 1, + "tools": 1, + "nr": 1, + "synonym": 1, + "undefined": 2, + "defined": 1, + "invert": 1, + "/cell": 2, + "cell": 2 + }, + "GAS": { + ".cstring": 1, + "LC0": 2, + ".ascii": 2, + ".text": 1, + ".globl": 2, + "_main": 2, + "LFB3": 4, + "pushq": 1, + "%": 6, + "rbp": 2, + "LCFI0": 3, + "movq": 1, + "rsp": 1, + "LCFI1": 2, + "leaq": 1, + "(": 1, + "rip": 1, + ")": 1, + "rdi": 1, + "call": 1, + "_puts": 1, + "movl": 1, + "eax": 1, + "leave": 1, + "ret": 1, + "LFE3": 2, + ".section": 1, + "__TEXT": 1, + "__eh_frame": 1, + "coalesced": 1, + "no_toc": 1, + "+": 2, + "strip_static_syms": 1, + "live_support": 1, + "EH_frame1": 2, + ".set": 5, + "L": 10, + "set": 10, + "LECIE1": 2, + "-": 7, + "LSCIE1": 2, + ".long": 6, + ".byte": 20, + "xc": 1, + ".align": 2, + "_main.eh": 2, + "LSFDE1": 1, + "LEFDE1": 2, + "LASFDE1": 3, + ".quad": 2, + ".": 1, + "xe": 1, + "xd": 1, + ".subsections_via_symbols": 1 + }, + "GLSL": { + "////": 4, + "High": 1, + "quality": 2, + "(": 386, + "Some": 1, + "browsers": 1, + "may": 1, + "freeze": 1, + "or": 1, + "crash": 1, + ")": 386, + "//#define": 10, + "HIGHQUALITY": 2, + "Medium": 1, + "Should": 1, + "be": 1, + "fine": 1, + "on": 3, + "all": 1, + "systems": 1, + "works": 1, + "Intel": 1, + "HD2000": 1, + "Win7": 1, + "but": 1, + "quite": 1, + "slow": 1, + "MEDIUMQUALITY": 2, + "Defaults": 1, + "REFLECTIONS": 3, + "#define": 13, + "SHADOWS": 5, + "GRASS": 3, + "SMALL_WAVES": 4, + "RAGGED_LEAVES": 5, + "DETAILED_NOISE": 3, + "LIGHT_AA": 3, + "//": 36, + "sample": 2, + "SSAA": 2, + "HEAVY_AA": 2, + "x2": 5, + "RG": 1, + "TONEMAP": 5, + "Configurations": 1, + "#ifdef": 14, + "#endif": 14, + "const": 18, + "float": 103, + "eps": 5, + "e": 4, + "-": 108, + ";": 353, + "PI": 3, + "vec3": 165, + "sunDir": 5, + "skyCol": 4, + "sandCol": 2, + "treeCol": 2, + "grassCol": 2, + "leavesCol": 4, + "leavesPos": 4, + "sunCol": 5, + "#else": 5, + "exposure": 1, + "Only": 1, + "used": 1, + "when": 1, + "tonemapping": 1, + "mod289": 4, + "x": 11, + "{": 61, + "return": 47, + "floor": 8, + "*": 115, + "/": 24, + "}": 61, + "vec4": 72, + "permute": 4, + "x*34.0": 1, + "+": 108, + "*x": 3, + "taylorInvSqrt": 2, + "r": 14, + "snoise": 7, + "v": 8, + "vec2": 26, + "C": 1, + "/6.0": 1, + "/3.0": 1, + "D": 1, + "i": 38, + "dot": 30, + "C.yyy": 2, + "x0": 7, + "C.xxx": 2, + "g": 2, + "step": 2, + "x0.yzx": 1, + "x0.xyz": 1, + "l": 1, + "i1": 2, + "min": 11, + "g.xyz": 2, + "l.zxy": 2, + "i2": 2, + "max": 9, + "x1": 4, + "*C.x": 2, + "/3": 1, + "C.y": 1, + "x3": 4, + "D.yyy": 1, + "D.y": 1, + "p": 26, + "i.z": 1, + "i1.z": 1, + "i2.z": 1, + "i.y": 1, + "i1.y": 1, + "i2.y": 1, + "i.x": 1, + "i1.x": 1, + "i2.x": 1, + "n_": 2, + "/7.0": 1, + "ns": 4, + "D.wyz": 1, + "D.xzx": 1, + "j": 4, + "ns.z": 3, + "mod": 2, + "*7": 1, + "x_": 3, + "y_": 2, + "N": 1, + "*ns.x": 2, + "ns.yyyy": 2, + "y": 2, + "h": 21, + "abs": 2, + "b0": 3, + "x.xy": 1, + "y.xy": 1, + "b1": 3, + "x.zw": 1, + "y.zw": 1, + "//vec4": 3, + "s0": 2, + "lessThan": 2, + "*2.0": 4, + "s1": 2, + "sh": 1, + "a0": 1, + "b0.xzyw": 1, + "s0.xzyw*sh.xxyy": 1, + "a1": 1, + "b1.xzyw": 1, + "s1.xzyw*sh.zzww": 1, + "p0": 5, + "a0.xy": 1, + "h.x": 1, + "p1": 5, + "a0.zw": 1, + "h.y": 1, + "p2": 5, + "a1.xy": 1, + "h.z": 1, + "p3": 5, + "a1.zw": 1, + "h.w": 1, + "//Normalise": 1, + "gradients": 1, + "norm": 1, + "norm.x": 1, + "norm.y": 1, + "norm.z": 1, + "norm.w": 1, + "m": 8, + "m*m": 1, + "fbm": 2, + "final": 5, + "waterHeight": 4, + "d": 10, + "length": 7, + "p.xz": 2, + "sin": 8, + "iGlobalTime": 7, + "Island": 1, + "waves": 3, + "p*0.5": 1, + "Other": 1, + "bump": 2, + "pos": 42, + "rayDir": 43, + "s": 23, + "Fade": 1, + "out": 1, + "to": 1, + "reduce": 1, + "aliasing": 1, + "dist": 7, + "<": 23, + "sqrt": 6, + "Calculate": 1, + "normal": 7, + "from": 2, + "heightmap": 1, + "pos.x": 1, + "iGlobalTime*0.5": 1, + "pos.z": 2, + "*0.7": 1, + "*s": 4, + "normalize": 14, + "e.xyy": 1, + "e.yxy": 1, + "intersectSphere": 2, + "rpos": 5, + "rdir": 3, + "rad": 2, + "op": 5, + "b": 5, + "det": 11, + "b*b": 2, + "rad*rad": 2, + "if": 29, + "t": 44, + "rdir*t": 1, + "intersectCylinder": 1, + "rdir2": 2, + "rdir.yz": 1, + "op.yz": 3, + "rpos.yz": 2, + "rdir2*t": 2, + "pos.yz": 2, + "intersectPlane": 3, + "rayPos": 38, + "n": 18, + "sign": 1, + "rotate": 5, + "theta": 6, + "c": 6, + "cos": 4, + "p.x": 2, + "p.z": 2, + "p.y": 1, + "impulse": 2, + "k": 8, + "by": 1, + "iq": 2, + "k*x": 1, + "exp": 2, + "grass": 2, + "Optimization": 1, + "Avoid": 1, + "noise": 1, + "too": 1, + "far": 1, + "away": 1, + "pos.y": 8, + "tree": 2, + "pos.y*0.03": 2, + "mat2": 2, + "m*pos.xy": 1, + "width": 2, + "clamp": 4, + "scene": 7, + "vtree": 4, + "vgrass": 2, + ".x": 4, + "eps.xyy": 1, + "eps.yxy": 1, + "eps.yyx": 1, + "plantsShadow": 2, + "Soft": 1, + "shadow": 4, + "taken": 1, + "for": 7, + "int": 7, + "rayDir*t": 2, + "res": 6, + "res.x": 3, + "k*res.x/t": 1, + "s*s*": 1, + "intersectWater": 2, + "rayPos.y": 1, + "rayDir.y": 1, + "intersectSand": 3, + "intersectTreasure": 2, + "intersectLeaf": 2, + "openAmount": 4, + "dir": 2, + "offset": 5, + "rayDir*res.w": 1, + "pos*0.8": 2, + "||": 3, + "res.w": 6, + "res2": 2, + "dir.xy": 1, + "dir.z": 1, + "rayDir*res2.w": 1, + "res2.w": 3, + "&&": 10, + "leaves": 7, + "e20": 3, + "sway": 5, + "fract": 1, + "upDownSway": 2, + "angleOffset": 3, + "Left": 1, + "right": 1, + "alpha": 3, + "Up": 1, + "down": 1, + "k*10.0": 1, + "p.xzy": 1, + ".xzy": 2, + "d.xzy": 1, + "Shift": 1, + "Intersect": 11, + "individual": 1, + "leaf": 1, + "res.xyz": 1, + "sand": 2, + "resSand": 2, + "//if": 1, + "resSand.w": 4, + "plants": 6, + "resLeaves": 3, + "resLeaves.w": 10, + "e7": 3, + "light": 5, + "sunDir*0.01": 2, + "col": 32, + "n.y": 3, + "lightLeaves": 3, + "ao": 5, + "sky": 5, + "res.y": 2, + "uvFact": 2, + "uv": 12, + "n.x": 1, + "tex": 6, + "texture2D": 6, + "iChannel0": 3, + ".rgb": 2, + "e8": 1, + "traceReflection": 2, + "resPlants": 2, + "resPlants.w": 6, + "resPlants.xyz": 2, + "pos.xz": 2, + "leavesPos.xz": 2, + ".r": 3, + "resLeaves.xyz": 2, + "trace": 2, + "resSand.xyz": 1, + "treasure": 1, + "chest": 1, + "resTreasure": 1, + "resTreasure.w": 4, + "resTreasure.xyz": 1, + "water": 1, + "resWater": 1, + "resWater.w": 4, + "ct": 2, + "fresnel": 2, + "pow": 3, + "trans": 2, + "reflDir": 3, + "reflect": 1, + "refl": 3, + "resWater.t": 1, + "mix": 2, + "camera": 8, + "px": 4, + "rd": 1, + "iResolution.yy": 1, + "iResolution.x/iResolution.y*0.5": 1, + "rd.x": 1, + "rd.y": 1, + "void": 5, + "main": 3, + "gl_FragCoord.xy": 7, + "*0.25": 4, + "*0.5": 1, + "Optimized": 1, + "Haarm": 1, + "Peter": 1, + "Duiker": 1, + "curve": 1, + "col*exposure": 1, + "x*": 2, + ".5": 1, + "gl_FragColor": 2, + "NUM_LIGHTS": 4, + "AMBIENT": 2, + "MAX_DIST": 3, + "MAX_DIST_SQUARED": 3, + "uniform": 7, + "lightColor": 3, + "[": 29, + "]": 29, + "varying": 3, + "fragmentNormal": 2, + "cameraVector": 2, + "lightVector": 4, + "initialize": 1, + "diffuse/specular": 1, + "lighting": 1, + "diffuse": 4, + "specular": 4, + "the": 1, + "fragment": 1, + "and": 2, + "direction": 1, + "cameraDir": 2, + "loop": 1, + "through": 1, + "each": 1, + "calculate": 1, + "distance": 1, + "between": 1, + "distFactor": 3, + "lightDir": 3, + "diffuseDot": 2, + "halfAngle": 2, + "specularColor": 2, + "specularDot": 2, + "sample.rgb": 1, + "sample.a": 1, + "#version": 1, + "kCoeff": 2, + "kCube": 2, + "uShift": 3, + "vShift": 3, + "chroma_red": 2, + "chroma_green": 2, + "chroma_blue": 2, + "bool": 1, + "apply_disto": 4, + "sampler2D": 1, + "input1": 4, + "adsk_input1_w": 4, + "adsk_input1_h": 3, + "adsk_input1_aspect": 1, + "adsk_input1_frameratio": 5, + "adsk_result_w": 3, + "adsk_result_h": 2, + "distortion_f": 3, + "f": 17, + "r*r": 1, + "inverse_f": 2, + "lut": 9, + "max_r": 2, + "incr": 2, + "lut_r": 5, + ".z": 5, + ".y": 2, + "aberrate": 4, + "chroma": 2, + "chromaticize_and_invert": 2, + "rgb_f": 5, + "px.x": 2, + "px.y": 2, + "uv.x": 11, + "uv.y": 7, + "*2": 2, + "uv.x*uv.x": 1, + "uv.y*uv.y": 1, + "else": 1, + "rgb_uvs": 12, + "rgb_f.rr": 1, + "rgb_f.gg": 1, + "rgb_f.bb": 1, + "sampled": 1, + "sampled.r": 1, + "sampled.g": 1, + ".g": 1, + "sampled.b": 1, + ".b": 1, + "gl_FragColor.rgba": 1, + "sampled.rgb": 1 + }, + "Gosu": { + "print": 4, + "(": 54, + ")": 55, + "<%!-->": 1, + "defined": 1, + "in": 3, + "Hello": 2, + "gst": 1, + "<": 1, + "%": 2, + "@": 1, + "params": 1, + "users": 2, + "Collection": 1, + "<User>": 1, + "<%>": 2, + "for": 2, + "user": 1, + "{": 28, + "user.LastName": 1, + "}": 28, + "user.FirstName": 1, + "user.Department": 1, + "package": 2, + "example": 2, + "enhancement": 1, + "String": 6, + "function": 11, + "toPerson": 1, + "Person": 7, + "var": 10, + "vals": 4, + "this.split": 1, + "return": 4, + "new": 6, + "[": 4, + "]": 4, + "as": 3, + "int": 2, + "Relationship.valueOf": 2, + "hello": 1, + "uses": 2, + "java.util.*": 1, + "java.io.File": 1, + "class": 1, + "extends": 1, + "Contact": 1, + "implements": 1, + "IEmailable": 2, + "_name": 4, + "_age": 3, + "Integer": 3, + "Age": 1, + "_relationship": 2, + "Relationship": 3, + "readonly": 1, + "RelationshipOfPerson": 1, + "delegate": 1, + "_emailHelper": 2, + "represents": 1, + "enum": 1, + "FRIEND": 1, + "FAMILY": 1, + "BUSINESS_CONTACT": 1, + "static": 7, + "ALL_PEOPLE": 2, + "HashMap": 1, + "<String,>": 1, + "construct": 1, + "name": 4, + "age": 4, + "relationship": 2, + "EmailHelper": 1, + "this": 1, + "property": 2, + "get": 1, + "Name": 3, + "set": 1, + "override": 1, + "getEmailName": 1, + "incrementAge": 1, + "+": 2, + "@Deprecated": 1, + "printPersonInfo": 1, + "addPerson": 4, + "p": 5, + "if": 4, + "ALL_PEOPLE.containsKey": 2, + ".Name": 1, + "throw": 1, + "IllegalArgumentException": 1, + "p.Name": 2, + "addAllPeople": 1, + "contacts": 2, + "List": 1, + "<Contact>": 1, + "contact": 3, + "typeis": 1, + "and": 1, + "not": 1, + "contact.Name": 1, + "getAllPeopleOlderThanNOrderedByName": 1, + "allPeople": 1, + "ALL_PEOPLE.Values": 3, + "allPeople.where": 1, + "-": 3, + "p.Age": 1, + ".orderBy": 1, + "loadPersonFromDB": 1, + "id": 1, + "using": 2, + "conn": 1, + "DBConnectionManager.getConnection": 1, + "stmt": 1, + "conn.prepareStatement": 1, + "stmt.setInt": 1, + "result": 1, + "stmt.executeQuery": 1, + "result.next": 1, + "result.getString": 2, + "result.getInt": 1, + "loadFromFile": 1, + "file": 3, + "File": 2, + "file.eachLine": 1, + "line": 1, + "line.HasContent": 1, + "line.toPerson": 1, + "saveToFile": 1, + "writer": 2, + "FileWriter": 1, + "PersonCSVTemplate.renderToString": 1, + "PersonCSVTemplate.render": 1 + }, + "Groovy": { + "task": 1, + "echoDirListViaAntBuilder": 1, + "(": 7, + ")": 7, + "{": 3, + "description": 1, + "//Docs": 1, + "http": 1, + "//ant.apache.org/manual/Types/fileset.html": 1, + "//Echo": 1, + "the": 3, + "Gradle": 1, + "project": 1, + "name": 1, + "via": 1, + "ant": 1, + "echo": 1, + "plugin": 1, + "ant.echo": 3, + "message": 1, + "project.name": 1, + "path": 2, + "//Gather": 1, + "list": 1, + "of": 1, + "files": 1, + "in": 1, + "a": 1, + "subdirectory": 1, + "ant.fileScanner": 1, + "fileset": 1, + "dir": 1, + "}": 3, + ".each": 1, + "//Print": 1, + "each": 1, + "file": 1, + "to": 1, + "screen": 1, + "with": 1, + "CWD": 1, + "projectDir": 1, + "removed.": 1, + "println": 2, + "it.toString": 1, + "-": 1, + "SHEBANG#!groovy": 1 + }, + "Groovy Server Pages": { + "<html>": 4, + "<head>": 4, + "<meta>": 4, + "http": 3, + "equiv=": 3, + "content=": 4, + "<title>": 4, + "Testing": 3, + "with": 3, + "SiteMesh": 2, + "and": 2, + "Resources": 2, + "": 4, + "name=": 1, + "": 2, + "module=": 2, + "": 4, + "": 4, + "": 4, + "": 4, + "<%@>": 1, + "page": 2, + "contentType=": 1, + "Using": 1, + "directive": 1, + "tag": 1, + "": 2, + "Print": 1, + "{": 1, + "example": 1, + "}": 1 + }, + "Haml": { + "%": 1, + "p": 1, + "Hello": 1, + "World": 1 + }, + "Handlebars": { + "
": 5, + "class=": 5, + "

": 3, + "{": 16, + "title": 1, + "}": 16, + "

": 3, + "body": 3, + "
": 5, + "By": 2, + "fullName": 2, + "author": 2, + "Comments": 1, + "#each": 1, + "comments": 1, + "

": 1, + "

": 1, + "/each": 1 + }, + "INI": { + ";": 1, + "editorconfig.org": 1, + "root": 1, + "true": 3, + "[": 2, + "*": 1, + "]": 2, + "indent_style": 1, + "space": 1, + "indent_size": 1, + "end_of_line": 1, + "lf": 1, + "charset": 1, + "utf": 1, + "-": 1, + "trim_trailing_whitespace": 1, + "insert_final_newline": 1, + "user": 1, + "name": 1, + "Josh": 1, + "Peek": 1, + "email": 1, + "josh@github.com": 1 }, "Ioke": { "SHEBANG#!ioke": 1, "println": 1 }, - "Ruby": { - "to_s": 1, - "mirror_list.shift.values_at": 1, - "inflections.acronym_regex": 2, - "parts.reverse.inject": 1, - "/.*": 1, - "delete": 1, - "plugin.depends_on": 1, - "path.names": 1, - ".basename": 1, - "constant.ancestors.inject": 1, - "removed_ENV_variables.each": 1, - "Wno": 1, - "HOMEBREW_PREFIX": 2, - "": 1, - "homepage": 2, - "when": 11, - "force": 1, - ".include": 1, - "underscored_word": 1, - "w/": 1, - "@name": 3, - "fails_with": 2, - "resque": 2, - "def": 143, - "inflections.singulars": 1, - "out": 4, - "role": 1, - "underscore": 3, - "@spec_to_use.detect_version": 1, - "reserve": 1, - "nodoc": 3, - "running": 2, - "facets": 1, - "": 1, - "config_file": 2, - "p.patch_args": 1, - "formula_with_that_name.readable": 1, - "installed": 2, - "inspect": 2, - ".destroy": 1, - "args.collect": 1, - "prefix": 14, - "buildpath": 1, - "type": 10, - "doesn": 1, - "installed_prefix": 1, - "threaded": 1, - "ftp": 1, - "or": 7, - "configure": 2, - "HOMEBREW_CACHE.mkpath": 1, - "args.length": 1, - "args": 5, - "Interrupt": 2, - "tapd.find_formula": 1, - "@spec_to_use.specs": 1, - "@instance.settings": 1, - "stdout.puts": 1, - "-": 34, - "Namespace": 1, - "verify_download_integrity": 2, - "color": 1, - "person": 1, - "base.class_eval": 1, - "humanize": 2, - ".join": 1, - "Queue.new": 1, - "attributes": 2, - "patch": 3, - "@keg_only_reason": 1, - "url": 12, - "host": 3, - "String": 2, - "__FILE__": 3, - "extensions": 6, - "wr": 3, - "w": 6, - "based": 1, - "compiler": 3, - "each": 1, - "respond_to": 1, - "else": 25, - "id=": 1, - "IO.pipe": 1, - ".rb": 1, - "standard": 2, - "@url": 8, - "methods.each": 1, - "camelize": 2, - "hasher": 2, - "man6": 1, - "constant": 4, - "A": 5, - "term": 1, - "owned": 1, - "lower_case_and_underscored_word": 1, - "Plugin.after_dequeue_hooks": 1, - "&": 31, - "ENV": 4, - "self.configuration": 1, - "set": 36, - "javascript": 1, - "node": 2, - "know": 1, - "an": 1, - "stderr.reopen": 1, - "head": 3, - "sha1": 4, - "MacOS.cat": 1, - "options": 3, - "File.expand_path": 1, - "safe_constantize": 1, - "layout": 1, - "p": 2, - "Class.new": 2, - "path": 16, - "args.dup": 1, - "Worker.find": 1, - "@sha1": 6, - "@unstable": 2, - "CompilerFailures.new": 1, - "Exception": 1, - "downloader.stage": 1, - "Hash": 3, - "Plugin.before_enqueue_hooks": 1, - "uses": 1, - "arial": 1, - "no": 1, - "object": 2, - "self.target": 1, - "push": 1, - "connect": 1, - "dasherize": 1, - "relative_pathname": 1, - "keys": 6, - "Kernel.rand": 1, - "downloader.fetch": 1, - "RawScaledScorer": 1, - "std_cmake_args": 1, - "md5": 2, - "call": 1, - "template": 1, - "path.nil": 1, - "tapd.directory": 1, - "devel": 1, - "word.empty": 1, - "response.status": 1, - "names.each": 1, - "depends_on": 1, - "self.class.path": 1, - "Got": 1, - "klass.send": 4, - "i": 2, - "reason": 2, - "uppercase_first_letter": 2, - "models": 1, - "rsquo": 1, - "onoe": 2, - "RUBY_ENGINE": 2, - "enqueue_to": 2, - "constant.const_get": 1, - "const": 3, - "absolute_redirects": 1, - "CHECKSUM_TYPES.each": 1, - "self.path": 1, - "self.class.skip_clean_paths.include": 1, - ".map": 6, - "enqueue": 1, - "attr_writer": 4, - "plugin.uses_repository": 1, - "ancestor": 3, - "self.use": 1, - "case": 5, - "LAST": 1, - "File.join": 6, - "Redis.new": 1, - "constantize": 1, - "@mirrors.uniq": 1, - "src=": 1, - ".success": 1, - "attrs": 1, - "end": 236, - "username": 1, - "RuntimeError": 1, - "SHEBANG#!python": 1, - "Object": 1, - ".to_sym": 1, - "attr_rw": 4, - "worker_id": 2, - "Worker.all": 1, - "port": 4, - "}": 68, - "Plugin.before_dequeue_hooks": 1, - "@queues.delete": 1, - "https": 1, - "align": 2, - "ENV.remove_cc_etc": 1, - "worker.unregister_worker": 1, - "b": 4, - "p.to_s": 2, - "instance_variable_defined": 2, - "stderr.puts": 2, - "pretty_args": 1, - "uninitialized": 1, - "Patches.new": 1, - "plugin.developed_by": 1, - "download_strategy": 1, - "workers.size.to_i": 1, - "Redis.connect": 2, - "": 1, - "rd.eof": 1, - "arg.to_s": 1, - "Job.reserve": 1, - "decode": 2, - "@before_first_fork": 2, - "redis.client.id": 1, - "File.exist": 1, - "path.relative_path_from": 1, - "file": 1, - "inflections.acronyms": 1, - "github": 1, - "implementation": 1, - "static": 1, - "at": 1, - "./": 1, - "pluralize": 3, - "rd": 1, - "": 1, - "wrong": 1, - "NotFound": 1, - "ohai": 3, - "Sinatra": 2, - "v": 2, - "To": 1, - "doc": 1, - "@redis": 6, - "/not": 1, - "failure.compiler": 1, - "[": 56, - "self.all": 1, - "": 1, - "val": 10, - "text": 3, - "@downloader.cached_location": 1, - "man5": 1, - "glob": 2, - "dequeue": 1, - "filename": 2, - "self.each": 1, - "Wrapper": 1, - "#888": 1, - "plugin.url": 1, - "Compiler.new": 1, - "config.log": 2, - "%": 10, - "redis.server": 1, - "plugin.display_name": 1, - "unstable": 2, - "string.sub": 2, - "possible_cached_formula.file": 1, - "nil": 21, - "type.to_s.upcase": 1, - "paths": 3, - "gets": 1, - "@stack.call": 1, - "alias": 1, - "redis_id": 2, - "camel_cased_word.to_s": 1, - "here": 1, - "class_value": 3, - "Archive": 1, - "encoded": 1, - "variant": 1, - "DCMAKE_INSTALL_PREFIX": 1, - "Dir.pwd": 3, - "before_first_fork": 2, - "self.redis": 2, - "rules": 1, - "partial": 1, - "system": 1, - "titleize": 1, - "instance": 2, - "user": 1, - "attrs.each": 1, - "NoQueueError.new": 1, - "Array": 2, - "upcase": 1, - "install_type": 4, - "extend": 2, - ".upcase": 1, - ".deep_merge": 1, - "self.class.send": 1, - "dump_errors": 1, - "private": 3, - "self": 11, - "map": 1, - "formula_with_that_name.file": 1, - "key.sub": 1, - "args.empty": 1, - "": 1, - "child": 1, - "servers": 1, - "@skip_clean_paths": 3, - "h": 2, - "number.to_i.abs": 2, - "Base": 2, - "Namespace.new": 2, - "fork": 1, - "klass": 16, - "logging": 2, - "to_check": 2, - "string.gsub": 1, - "and": 6, - "File.basename": 2, - "send_file": 1, - "possible_alias.file": 1, - "to": 1, - "phone_numbers": 1, - "Formula.path": 1, - ".unshift": 1, - "hash": 2, - "rack": 1, - "from": 1, - "CompilerFailure.new": 2, - "arg": 1, - "word.tr": 1, - "klass.new": 2, - "fetched": 4, - "static_cache_control": 1, - ".freeze": 1, - "super": 3, - "this": 2, - "enc": 5, - "@queues": 2, - "Redis": 3, - "Inflector": 1, - "failed": 3, - "|": 91, - "installed_prefix.children.length": 1, - "ENV.kind_of": 1, - "acc": 2, - "patch_list.download": 1, - "a": 10, - "false": 26, - "var": 1, - "get": 2, - "preferred_type": 1, - "name.basename": 1, - "head_prefix": 2, - "self.names": 1, - "bin": 1, - "begin": 9, - "Digest.const_get": 1, - "fn.incremental_hash": 1, - "+": 47, - "first": 1, - "plist_path": 1, - "singularize": 2, - "FileUtils": 1, - "path.keys": 1, - ".to_s.split": 1, - "..": 1, - "fn": 2, - "alias_method": 2, - "/redis": 1, - "not": 3, - "u": 1, - "word.gsub": 4, - "removed_ENV_variables": 2, - "class": 7, - "instance_variable_set": 1, - "Z": 3, - "ThreadError": 1, - "pid": 1, - "gem": 1, - "man4": 1, - "inline": 3, - "This": 1, - "keg_only_reason": 1, - ".collect": 2, - "ancestor.const_defined": 1, - "result": 8, - "Job.destroy": 1, - "char": 4, - "all": 1, - "built": 1, - "never": 1, - "Proc.new": 11, - "default": 2, - "stack": 2, - "m.public_instance_methods": 1, - "validate": 1, - "@queue": 1, - "disable": 1, - "bottle_base_url": 1, - "HOMEBREW_CACHE_FORMULA.mkpath": 1, - "": 1, - "redis.respond_to": 2, - "dependencies": 1, - "clear": 1, - "self.class.cc_failures.find": 1, - "Jekyll": 3, - "deps": 1, - "self.attr_rw": 1, - "server": 11, - "redis": 7, - "n": 4, - "libexec": 1, - "||": 22, - "/_id": 1, - "word.to_s.dup": 1, - "test": 5, - "db": 3, - "redis.lrange": 1, - "user.is_admin": 1, - "retry": 2, - "rd.read": 1, - "Foo": 1, - "/Library/Taps/": 1, - "self.defer": 1, - "@standard": 3, - "v.to_s.empty": 1, - "@instance": 2, - "camel_cased_word": 6, - "@specs": 3, - "Resque": 3, - "hash.upcase": 1, - "result.sub": 2, - "keg_only": 2, - "p.compressed_filename": 2, - ".downcase": 2, - "@dependencies": 1, - "@buildpath": 2, - "version": 10, - "lot": 1, - "entries.map": 1, - "zA": 1, - "skip_clean_paths": 1, - "klass.instance_variable_get": 1, - "queue.to_s": 1, - "remove": 1, - "break": 4, - "exec": 2, - "word.downcase": 1, - "plugin": 3, - "klass.queue": 1, - "Jenkins": 1, - "width": 1, - "mirrors": 4, - "s/": 1, - "before_fork": 2, - "apply_inflections": 3, - "string": 4, - "ARGV.formulae.include": 1, - "Grit": 1, - "deconstantize": 1, - "not_found": 1, - "method_name": 5, - "path.stem": 1, - "in": 3, - "MacOS.lion": 1, - "prefixed_redirects": 1, - "@spec_to_use": 4, - "sha256": 1, - "yield": 5, - "run": 2, - "cc": 3, - "helpers": 3, - "ordinal": 1, - "formula_with_that_name": 1, - "settings.add_charset": 1, - "parts.pop": 1, - "patches": 2, - "FileUtils.rm": 1, - "target": 1, - "key": 8, - "@version": 10, - "YAML.load_file": 1, - "HOMEBREW_REPOSITORY/": 2, - "klass.respond_to": 1, - "item": 4, - "@after_fork": 2, - "Formula.canonical_name": 1, - "File.dirname": 4, - "@downloader": 2, - "use": 1, - "mirror_list": 2, - "mime_type": 1, - "

": 1, - "cached_download": 1, - "{": 68, - "rescue": 13, - "Pathname.new": 3, - "self.class.keg_only_reason": 1, - "share": 1, - "Za": 1, - "head_prefix.directory": 1, - "#plugin.depends_on": 1, - "part": 1, - "skip_clean": 2, - ".strip": 1, - "do": 35, - "config": 3, - "put": 1, - "HOMEBREW_CACHE_FORMULA": 2, - "table": 2, - "name.kind_of": 2, - "then": 4, - "#c": 1, - "word": 10, - "workers": 2, - "instance_eval": 2, - "pattern": 1, - "<<": 15, - "bottle_filename": 1, - "working.size": 1, - "*": 3, - "@user": 1, - "@coder": 1, - "env": 2, - "Job.create": 1, - "**256": 1, - "cmd.split": 1, - "/@name": 1, - "etc": 1, - "u.phone_numbers": 1, - "font": 2, - "gzip": 1, - "pnumbers": 1, - "list_range": 1, - "cc.name": 1, - "size": 3, - "redis.nodes.map": 1, - "px": 3, - "t": 3, - "http": 1, - "raise": 17, - "@cc_failures": 2, - "pending": 1, - "like": 1, - ".flatten.uniq": 1, - "": 1, - "redis.smembers": 1, - "lock": 1, - "": 1, - "default_encoding": 1, - "man3": 1, - "attr_accessor": 2, - "@spec_to_use.download_strategy": 1, - "queue_from_class": 4, - "margin": 2, - "dep": 3, - "n.id": 1, - "tableize": 2, - "delegate": 1, - "#": 100, - "return": 25, - "self.class.dependencies.deps": 1, - "incomplete": 1, - "rv": 3, - "use_code": 1, - "post": 1, - "ARGV.build_devel": 2, - "None": 1, - "block_given": 5, - "unless": 15, - "skip_clean_all": 2, - "Expected": 1, - "err": 1, - "SHEBANG#!ruby": 2, - "m": 3, - "require_all": 4, - "server.split": 2, - "SHEBANG#!macruby": 1, - "methods": 1, - "@before_fork": 2, - "Hash.new": 1, - "it": 1, - "protected": 1, - "html": 1, - "Try": 1, - "Plugin": 1, - "initialize": 2, - "Delegator.target.send": 1, - ".flatten": 1, - "protection": 1, - "//": 3, - "Formula.expand_deps": 1, - "man": 9, - "path.to_s": 3, - "invalid": 1, - "server.unshift": 6, - "mirror_list.empty": 1, - "patch_list.empty": 1, - "safe_system": 4, - "Plugin.after_enqueue_hooks": 1, - "don": 1, - "ActiveSupport": 1, - "underscored_word.tr": 1, - "true": 15, - "attr_reader": 5, - "stable": 2, - "supplied.empty": 1, - "Compiler": 1, - "f": 11, - "Delegator.target.use": 1, - "Request": 2, - "extensions.map": 1, - "autotools": 1, - "CurlBottleDownloadStrategy.new": 1, - "download": 1, - "
": 1, - "sbin": 1, - "self.register": 2, - "opoo": 1, - "@bottle_version": 1, - "count": 5, - "BuildError.new": 1, - "left": 1, - "patch_list.each": 1, - "
": 1, - "wr.close": 1, - "plugin.version": 1, - "before": 1, - "URI.escape": 1, - "bottle_sha1": 2, - "method": 4, - "part.empty": 1, - "above.": 1, - "self.delegate": 1, - "redis.lindex": 1, - "z": 7, - "replacement": 4, - "does": 1, - "until": 1, - "self.sha1": 1, - "@bottle_url": 2, - "start": 7, - "_": 2, - "mirror": 1, - "on": 2, - "base": 4, - "&&": 8, - "bottle_block.data": 1, - "DCMAKE_FIND_FRAMEWORK": 1, - "patch_list.external_patches": 1, - "if": 72, - "method_override": 4, - "self.class_s": 2, - "f.deps.map": 1, - "": 1, - "bottle_block.instance_eval": 1, - "dev": 1, - "path.rindex": 2, - "Pathname": 2, - "self.expand_deps": 1, - ")": 256, - "xml": 2, - "nend": 1, - "lower_case_and_underscored_word.to_s.dup": 1, - "queue": 24, - "pretty_args.delete": 1, - "@spec_to_use.url": 1, - ".slice": 1, - "ArgumentError": 1, - "views": 1, - "names": 2, - "@env": 2, - "@#": 2, - "SecureRandom.hex": 1, - "curl": 1, - "threw": 1, - "data": 1, - "ordinalize": 1, - "s": 2, - "mismatch": 1, - "table_name": 1, - "characters": 1, - "": 1, - "possible_cached_formula": 1, - "release": 1, - "define_method": 1, - "Process.wait": 1, - "download_strategy.new": 2, - "man2": 1, - "ARGV.verbose": 2, - "development": 6, - "camel_cased_word.split": 1, - "self.class.mirrors": 1, - "self.new": 1, - "result.gsub": 2, - "coder": 3, - "public": 2, - "match": 6, - "ruby_engine": 6, - "set_instance_variable": 12, - "self.class.skip_clean_all": 1, - "dependencies.add": 1, - "block": 30, - ".gsub": 5, - "working": 2, - "table_name.to_s.sub": 1, - "json": 1, - "entries": 1, - "bottle_url": 3, - "specs": 14, - "NameError": 2, - ".sort": 2, - "inflections.humans.each": 1, - "one": 1, - "Rails": 1, - "HTML": 2, - "HOMEBREW_REPOSITORY": 4, - "Specification.new": 1, - "outside": 2, - "result.tr": 1, - "distributed": 1, - "tap": 1, - "bind": 1, - "module": 8, - "FormulaUnavailableError.new": 1, - "expand_deps": 1, - "error": 3, - "Q": 1, - "webrick": 1, - "capitalize": 1, - "is": 3, - "message": 2, - "e.name.to_s": 1, - "": 1, + "": 1, + "": 1, "

": 1, - "Comments": 1, + "doesn": 1, + "rsquo": 1, + "know": 1, + "this": 2, + "ditty.": 1, + "

": 1, + "": 1, + "src=": 1, + "
": 1, + "id=": 1, + "Try": 1, + "
": 1,
+      "request.request_method.downcase": 1,
+      "nend": 1,
+      "
": 1, + "
": 1, + "": 1, + "": 1, + "Application": 2, + "Base": 2, + "super": 3, + "self.register": 2, + "extensions": 6, + "added_methods": 2, + "extensions.map": 1, + "m.public_instance_methods": 1, + ".flatten": 1, + "Delegator.delegate": 1, + "Delegator": 1, + "self.delegate": 1, + "methods": 1, + "methods.each": 1, + "method_name": 5, + "define_method": 1, + "respond_to": 1, + "Delegator.target.send": 1, + "delegate": 1, + "put": 1, + "post": 1, + "delete": 1, + "template": 1, + "layout": 1, + "before": 1, + "after": 1, + "not_found": 1, + "mime_type": 1, + "enable": 1, + "disable": 1, + "use": 1, + "production": 1, + "settings": 2, + "target": 1, + "self.target": 1, + "Wrapper": 1, + "stack": 2, + "instance": 2, + "@stack": 1, + "@instance": 2, + "@instance.settings": 1, + "call": 1, + "env": 2, + "@stack.call": 1, + "self.new": 1, + "base": 4, + "base.class_eval": 1, + "Delegator.target.register": 1, + "self.helpers": 1, + "Delegator.target.helpers": 1, + "self.use": 1, + "Delegator.target.use": 1, + "SHEBANG#!python": 1 + }, + "Rust": { + "//": 20, + "use": 10, + "cell": 1, + "Cell": 2, + ";": 218, + "cmp": 1, + "Eq": 2, + "option": 4, + "result": 18, + "Result": 3, + "comm": 5, + "{": 213, + "stream": 21, + "Chan": 4, + "GenericChan": 1, + "GenericPort": 1, + "Port": 3, + "SharedChan": 4, + "}": 210, + "prelude": 1, + "*": 1, + "task": 39, + "rt": 29, + "task_id": 2, + "sched_id": 2, + "rust_task": 1, + "util": 4, + "replace": 8, + "mod": 5, + "local_data_priv": 1, + "pub": 26, + "local_data": 1, + "spawn": 15, + "///": 13, + "A": 6, + "handle": 3, + "to": 6, + "a": 9, + "scheduler": 6, + "#": 61, + "[": 61, + "deriving_eq": 3, + "]": 61, + "enum": 4, + "Scheduler": 4, + "SchedulerHandle": 2, + "(": 429, + ")": 434, + "Task": 2, + "TaskHandle": 2, + "TaskResult": 4, + "Success": 6, + "Failure": 6, + "impl": 3, + "for": 10, + "pure": 2, + "fn": 89, + "eq": 1, + "&": 30, + "self": 15, + "other": 4, + "-": 33, + "bool": 6, + "match": 4, + "|": 20, + "true": 9, + "_": 4, + "false": 7, + "ne": 1, + ".eq": 1, + "modes": 1, + "SchedMode": 4, + "Run": 3, + "on": 5, + "the": 10, + "default": 1, + "DefaultScheduler": 2, + "current": 1, + "CurrentScheduler": 2, + "specific": 1, + "ExistingScheduler": 1, + "PlatformThread": 2, + "All": 1, + "tasks": 1, + "run": 1, + "in": 3, + "same": 1, + "OS": 3, + "thread": 2, + "SingleThreaded": 4, + "Tasks": 2, + "are": 2, + "distributed": 2, + "among": 2, + "available": 1, + "CPUs": 1, + "ThreadPerCore": 2, + "Each": 1, + "runs": 1, + "its": 1, + "own": 1, + "ThreadPerTask": 1, + "fixed": 1, + "number": 1, + "of": 3, + "threads": 1, + "ManualThreads": 3, + "uint": 7, + "struct": 7, + "SchedOpts": 4, + "mode": 9, + "foreign_stack_size": 3, + "Option": 4, + "": 2, + "TaskOpts": 12, + "linked": 15, + "supervised": 11, + "mut": 16, + "notify_chan": 24, + "<": 3, + "": 3, + "sched": 10, + "TaskBuilder": 21, + "opts": 21, + "gen_body": 4, + "@fn": 2, + "v": 6, + "can_not_copy": 11, + "": 1, + "consumed": 4, + "default_task_opts": 4, + "body": 6, + "Identity": 1, + "function": 1, + "None": 23, + "doc": 1, + "hidden": 1, + "FIXME": 1, + "#3538": 1, + "priv": 1, + "consume": 1, + "if": 7, + "self.consumed": 2, + "fail": 17, + "Fake": 1, + "move": 1, + "let": 84, + "self.opts.notify_chan": 7, + "self.opts.linked": 4, + "self.opts.supervised": 5, + "self.opts.sched": 6, + "self.gen_body": 2, + "unlinked": 1, + "..": 8, + "self.consume": 7, + "future_result": 1, + "blk": 2, + "self.opts.notify_chan.is_some": 1, + "notify_pipe_po": 2, + "notify_pipe_ch": 2, + "Some": 8, + "Configure": 1, + "custom": 1, + "task.": 1, + "sched_mode": 1, + "add_wrapper": 1, + "wrapper": 2, + "prev_gen_body": 2, + "f": 38, + "x": 7, + "x.opts.linked": 1, + "x.opts.supervised": 1, + "x.opts.sched": 1, + "spawn_raw": 1, + "x.gen_body": 1, + "Runs": 1, + "while": 2, + "transfering": 1, + "ownership": 1, + "one": 1, + "argument": 1, + "child.": 1, + "spawn_with": 2, + "": 2, + "arg": 5, + "do": 49, + "self.spawn": 1, + "arg.take": 1, + "try": 5, + "": 2, + "T": 2, + "": 2, + "po": 11, + "ch": 26, + "": 1, + "fr_task_builder": 1, + "self.future_result": 1, + "+": 4, + "r": 6, + "fr_task_builder.spawn": 1, + "||": 11, + "ch.send": 11, + "unwrap": 3, + ".recv": 3, + "Ok": 3, + "po.recv": 10, + "Err": 2, + ".spawn": 9, + "spawn_unlinked": 6, + ".unlinked": 3, + "spawn_supervised": 5, + ".supervised": 2, + ".spawn_with": 1, + "spawn_sched": 8, + ".sched_mode": 2, + ".try": 1, + "yield": 16, + "Yield": 1, + "control": 1, + "unsafe": 31, + "task_": 2, + "rust_get_task": 5, + "killed": 3, + "rust_task_yield": 1, + "&&": 1, + "failing": 2, + "True": 1, + "running": 2, + "has": 1, + "failed": 1, + "rust_task_is_unwinding": 1, + "get_task": 1, + "Get": 1, + "get_task_id": 1, + "get_scheduler": 1, + "rust_get_sched_id": 6, + "unkillable": 5, + "": 3, + "U": 6, + "AllowFailure": 5, + "t": 24, + "*rust_task": 6, + "drop": 3, + "rust_task_allow_kill": 3, + "self.t": 4, + "_allow_failure": 2, + "rust_task_inhibit_kill": 3, + "The": 1, + "inverse": 1, + "unkillable.": 1, + "Only": 1, + "ever": 1, + "be": 2, + "used": 1, + "nested": 1, + ".": 1, + "rekillable": 1, + "DisallowFailure": 5, + "atomically": 3, + "DeferInterrupts": 5, + "rust_task_allow_yield": 1, + "_interrupts": 1, + "rust_task_inhibit_yield": 1, + "test": 31, + "should_fail": 11, + "ignore": 16, + "cfg": 16, + "windows": 14, + "test_cant_dup_task_builder": 1, + "b": 2, + "b.spawn": 2, + "should": 2, + "have": 1, + "been": 1, + "by": 1, + "previous": 1, + "call": 1, + "test_spawn_unlinked_unsup_no_fail_down": 1, + "grandchild": 1, + "sends": 1, + "port": 3, + "ch.clone": 2, + "iter": 8, + "repeat": 8, + "If": 1, + "first": 1, + "grandparent": 1, + "hangs.": 1, + "Shouldn": 1, + "leave": 1, + "child": 3, + "hanging": 1, + "around.": 1, + "test_spawn_linked_sup_fail_up": 1, + "fails": 4, + "parent": 2, + "_ch": 1, + "<()>": 6, + "opts.linked": 2, + "opts.supervised": 2, + "b0": 5, + "b1": 3, + "b1.spawn": 3, + "We": 1, + "get": 1, + "punted": 1, + "awake": 1, + "test_spawn_linked_sup_fail_down": 1, + "loop": 5, + "*both*": 1, + "mechanisms": 1, + "would": 1, + "wrong": 1, + "this": 1, + "didn": 1, + "s": 1, + "failure": 1, + "propagate": 1, + "across": 1, + "gap": 1, + "test_spawn_failure_propagate_secondborn": 1, + "test_spawn_failure_propagate_nephew_or_niece": 1, + "test_spawn_linked_sup_propagate_sibling": 1, + "test_run_basic": 1, + "Wrapper": 5, + "test_add_wrapper": 1, + "b0.add_wrapper": 1, + "ch.f.swap_unwrap": 4, + "test_future_result": 1, + ".future_result": 4, + "assert": 10, + "test_back_to_the_future_result": 1, + "test_try_success": 1, + "test_try_fail": 1, + "test_spawn_sched_no_threads": 1, + "u": 2, + "test_spawn_sched": 1, + "i": 3, + "int": 5, + "parent_sched_id": 4, + "child_sched_id": 5, + "else": 1, + "test_spawn_sched_childs_on_default_sched": 1, + "default_id": 2, + "nolink": 1, + "extern": 1, + "testrt": 9, + "rust_dbg_lock_create": 2, + "*libc": 6, + "c_void": 6, + "rust_dbg_lock_destroy": 2, + "lock": 13, + "rust_dbg_lock_lock": 3, + "rust_dbg_lock_unlock": 3, + "rust_dbg_lock_wait": 2, + "rust_dbg_lock_signal": 2, + "test_spawn_sched_blocking": 1, + "start_po": 1, + "start_ch": 1, + "fin_po": 1, + "fin_ch": 1, + "start_ch.send": 1, + "fin_ch.send": 1, + "start_po.recv": 1, + "pingpong": 3, + "": 2, + "val": 4, + "setup_po": 1, + "setup_ch": 1, + "parent_po": 2, + "parent_ch": 2, + "child_po": 2, + "child_ch": 4, + "setup_ch.send": 1, + "setup_po.recv": 1, + "child_ch.send": 1, + "fin_po.recv": 1, + "avoid_copying_the_body": 5, + "spawnfn": 2, + "p": 3, + "x_in_parent": 2, + "ptr": 2, + "addr_of": 2, + "as": 7, + "x_in_child": 4, + "p.recv": 1, + "test_avoid_copying_the_body_spawn": 1, + "test_avoid_copying_the_body_task_spawn": 1, + "test_avoid_copying_the_body_try": 1, + "test_avoid_copying_the_body_unlinked": 1, + "test_platform_thread": 1, + "test_unkillable": 1, + "pp": 2, + "*uint": 1, + "cast": 2, + "transmute": 2, + "_p": 1, + "test_unkillable_nested": 1, + "Here": 1, + "test_atomically_nested": 1, + "test_child_doesnt_ref_parent": 1, + "const": 1, + "generations": 2, + "child_no": 3, + "return": 1, + "test_sched_thread_per_core": 1, + "chan": 2, + "cores": 2, + "rust_num_threads": 1, + "reported_threads": 2, + "rust_sched_threads": 2, + "chan.send": 2, + "port.recv": 2, + "test_spawn_thread_on_demand": 1, + "max_threads": 2, + "running_threads": 2, + "rust_sched_current_nonlazy_threads": 2, + "port2": 1, + "chan2": 1, + "chan2.send": 1, + "running_threads2": 2, + "port2.recv": 1 + }, + "Sass": { + "blue": 7, + "#3bbfce": 2, + ";": 6, + "margin": 8, + "px": 3, + ".content_navigation": 1, + "{": 2, + "color": 4, + "}": 2, + ".border": 2, + "padding": 2, + "/": 4, + "border": 3, + "solid": 1, + ".content": 1, + "-": 3, + "navigation": 1, + "darken": 1, + "(": 1, + "%": 1, + ")": 1 + }, + "Scala": { + "SHEBANG#!sh": 2, + "exec": 2, + "scala": 2, + "#": 2, + "object": 2, + "Beers": 1, + "extends": 1, + "Application": 1, + "{": 10, + "def": 7, + "bottles": 3, + "(": 34, + "qty": 12, + "Int": 3, + "f": 4, + "String": 5, + ")": 34, + "//": 4, + "higher": 1, + "-": 4, + "order": 1, + "functions": 2, + "match": 2, + "case": 5, + "+": 29, + "x": 3, + "}": 11, + "beers": 3, + "sing": 3, + "implicit": 3, + "song": 3, + "takeOne": 2, + "nextQty": 2, + "nested": 1, + "if": 2, + "else": 2, + "refrain": 2, + ".capitalize": 1, + "tail": 1, + "recursion": 1, + "val": 2, + "headOfSong": 1, + "println": 2, + "parameter": 1, + "name": 4, + "version": 1, + "organization": 1, + "libraryDependencies": 3, + "%": 12, + "Seq": 3, + "libosmVersion": 4, + "from": 1, + "maxErrors": 1, + "pollInterval": 1, + "javacOptions": 1, + "scalacOptions": 1, + "scalaVersion": 1, + "initialCommands": 2, + "in": 12, + "console": 1, + "mainClass": 2, + "Compile": 4, + "packageBin": 1, + "Some": 6, + "run": 1, + "watchSources": 1, + "<+=>": 1, + "baseDirectory": 1, + "map": 1, + "_": 1, + "input": 1, + "add": 2, + "a": 2, + "maven": 2, + "style": 2, + "repository": 2, + "resolvers": 2, + "at": 4, + "url": 3, + "sequence": 1, + "of": 1, + "repositories": 1, + "define": 1, + "the": 4, + "to": 4, + "publish": 1, + "publishTo": 1, + "set": 2, + "Ivy": 1, + "logging": 1, + "be": 1, + "highest": 1, + "level": 1, + "ivyLoggingLevel": 1, + "UpdateLogging": 1, + "Full": 1, + "disable": 1, + "updating": 1, + "dynamic": 1, + "revisions": 1, + "including": 1, + "SNAPSHOT": 1, + "versions": 1, + "offline": 1, + "true": 5, + "prompt": 1, + "for": 1, + "this": 1, + "build": 1, + "include": 1, + "project": 1, + "id": 1, + "shellPrompt": 2, + "ThisBuild": 1, + "state": 3, + "Project.extract": 1, + ".currentRef.project": 1, + "System.getProperty": 1, + "showTiming": 1, + "false": 7, + "showSuccess": 1, + "timingFormat": 1, + "import": 1, + "java.text.DateFormat": 1, + "DateFormat.getDateTimeInstance": 1, + "DateFormat.SHORT": 2, + "crossPaths": 1, + "fork": 2, + "Test": 3, + "javaOptions": 1, + "parallelExecution": 2, + "javaHome": 1, + "file": 3, + "scalaHome": 1, + "aggregate": 1, + "clean": 1, + "logLevel": 2, + "compile": 1, + "Level.Warn": 2, + "persistLogLevel": 1, + "Level.Debug": 1, + "traceLevel": 2, + "unmanagedJars": 1, + "publishArtifact": 2, + "packageDoc": 2, + "artifactClassifier": 1, + "retrieveManaged": 1, + "credentials": 2, + "Credentials": 2, + "Path.userHome": 1, + "/": 2, + "HelloWorld": 1, + "main": 1, + "args": 1, + "Array": 1, + "[": 1, + "]": 1 + }, + "Scheme": { + "(": 359, + "import": 1, + "rnrs": 1, + ")": 373, + "only": 1, + "surfage": 4, + "s1": 1, + "lists": 1, + "filter": 4, + "-": 188, + "map": 4, + "gl": 12, + "glut": 2, + "dharmalab": 2, + "records": 1, + "define": 27, + "record": 5, + "type": 5, + "math": 1, + "basic": 1, + "agave": 4, + "glu": 1, + "compat": 1, + "geometry": 1, + "pt": 49, + "glamour": 2, + "window": 2, + "misc": 1, + "s19": 1, + "time": 24, + "s27": 1, + "random": 27, + "bits": 1, + "s42": 1, + "eager": 1, + "comprehensions": 1, + ";": 1684, + "utilities": 1, + "say": 9, + ".": 1, + "args": 2, + "for": 7, + "each": 7, + "display": 4, + "newline": 2, + "translate": 6, + "p": 6, + "glTranslated": 1, + "x": 8, + "y": 3, + "radians": 8, + "/": 7, + "pi": 2, + "degrees": 2, + "angle": 6, + "a": 19, + "cos": 1, + "sin": 1, + "current": 15, + "in": 14, + "nanoseconds": 2, + "let": 2, + "val": 3, + "+": 28, + "second": 1, + "nanosecond": 1, + "seconds": 12, + "micro": 1, + "milli": 1, + "base": 2, + "step": 1, + "score": 5, + "level": 5, + "ships": 1, + "spaceship": 5, + "fields": 4, + "mutable": 14, + "pos": 16, + "vel": 4, + "theta": 1, + "force": 1, + "particle": 8, + "birth": 2, + "lifetime": 1, + "color": 2, + "particles": 11, + "asteroid": 14, + "radius": 6, + "number": 3, + "of": 3, + "starting": 3, + "asteroids": 15, + "#f": 5, + "bullet": 16, + "pack": 12, + "is": 8, + "initialize": 1, + "size": 1, "title": 1, - "#each": 1, - "}": 16, - "{": 16 + "reshape": 1, + "width": 8, + "height": 8, + "source": 2, + "randomize": 1, + "default": 1, + "wrap": 4, + "mod": 2, + "ship": 8, + "make": 11, + "ammo": 9, + "set": 19, + "list": 6, + "ec": 6, + "i": 6, + "inexact": 16, + "integer": 25, + "buffered": 1, + "procedure": 1, + "lambda": 12, + "background": 1, + "glColor3f": 5, + "matrix": 5, + "excursion": 5, + "ship.pos": 5, + "glRotated": 2, + "ship.theta": 10, + "glutWireCone": 1, + "par": 6, + "c": 4, + "vector": 6, + "ref": 3, + "glutWireSphere": 3, + "bullets": 7, + "pack.pos": 3, + "glutWireCube": 1, + "last": 3, + "dt": 7, + "update": 2, + "system": 2, + "pt*n": 8, + "ship.vel": 5, + "pack.vel": 1, + "cond": 2, + "par.birth": 1, + "par.lifetime": 1, + "else": 2, + "par.pos": 2, + "par.vel": 1, + "bullet.birth": 1, + "bullet.pos": 2, + "bullet.vel": 1, + "a.pos": 2, + "a.vel": 1, + "if": 1, + "<": 1, + "a.radius": 1, + "contact": 2, + "b": 4, + "when": 5, + "<=>": 3, + "distance": 3, + "begin": 1, + "1": 2, + "f": 1, + "append": 4, + "4": 1, + "50": 4, + "0": 7, + "100": 6, + "2": 1, + "n": 2, + "null": 1, + "10": 1, + "5": 1, + "glutIdleFunc": 1, + "glutPostRedisplay": 1, + "glutKeyboardFunc": 1, + "key": 2, + "case": 1, + "char": 1, + "#": 6, + "w": 1, + "d": 1, + "s": 1, + "space": 1, + "cons": 1, + "glutMainLoop": 1 + }, + "Scilab": { + "function": 1, + "[": 1, + "a": 4, + "b": 4, + "]": 1, + "myfunction": 1, + "(": 7, + "d": 2, + "e": 4, + "f": 2, + ")": 7, + "+": 5, + "%": 4, + "pi": 3, + ";": 7, + "cos": 1, + "cosh": 1, + "if": 1, + "then": 1, + "-": 2, + "e.field": 1, + "else": 1, + "home": 1, + "return": 1, + "end": 1, + "myvar": 1, + "endfunction": 1, + "disp": 1, + "assert_checkequal": 1, + "assert_checkfalse": 1 + }, + "SCSS": { + "blue": 4, + "#3bbfce": 1, + ";": 7, + "margin": 4, + "px": 1, + ".content": 1, + "-": 3, + "navigation": 1, + "{": 2, + "border": 2, + "color": 3, + "darken": 1, + "(": 1, + "%": 1, + ")": 1, + "}": 2, + ".border": 1, + "padding": 1, + "/": 2 + }, + "Shell": { + "SHEBANG#!bash": 8, + "typeset": 5, + "-": 391, + "i": 2, + "n": 22, + "bottles": 6, + "no": 16, + "while": 3, + "[": 85, + "]": 85, + "do": 8, + "echo": 71, + "case": 9, + "{": 63, + "}": 61, + "in": 25, + ")": 154, + "%": 5, + "s": 14, + ";": 138, + "esac": 7, + "done": 8, + "exit": 10, + "/usr/bin/clear": 2, + "##": 28, + "if": 39, + "z": 12, + "then": 41, + "export": 25, + "SCREENDIR": 2, + "fi": 34, + "PATH": 14, + "/usr/local/bin": 6, + "/usr/local/sbin": 6, + "/usr/xpg4/bin": 4, + "/usr/sbin": 6, + "/usr/bin": 8, + "/usr/sfw/bin": 4, + "/usr/ccs/bin": 4, + "/usr/openwin/bin": 4, + "/opt/mysql/current/bin": 4, + "MANPATH": 2, + "/usr/local/man": 2, + "/usr/share/man": 2, + "Random": 2, + "ENV...": 2, + "TERM": 4, + "COLORTERM": 2, + "CLICOLOR": 2, + "#": 53, + "can": 3, + "be": 3, + "set": 21, + "to": 33, + "anything": 2, + "actually": 2, + "DISPLAY": 2, + "r": 17, + "&&": 65, + ".": 5, + "function": 6, + "ls": 6, + "command": 5, + "Fh": 2, + "l": 8, + "list": 3, + "long": 2, + "format...": 2, + "ll": 2, + "|": 17, + "less": 2, + "XF": 2, + "pipe": 2, + "into": 3, + "#CDPATH": 2, + "HISTIGNORE": 2, + "HISTCONTROL": 2, + "ignoreboth": 2, + "shopt": 13, + "cdspell": 2, + "extglob": 2, + "progcomp": 2, + "complete": 82, + "f": 68, + "X": 54, + "bunzip2": 2, + "bzcat": 2, + "bzcmp": 2, + "bzdiff": 2, + "bzegrep": 2, + "bzfgrep": 2, + "bzgrep": 2, + "unzip": 2, + "zipinfo": 2, + "compress": 2, + "znew": 2, + "gunzip": 2, + "zcmp": 2, + "zdiff": 2, + "zcat": 2, + "zegrep": 2, + "zfgrep": 2, + "zgrep": 2, + "zless": 2, + "zmore": 2, + "uncompress": 2, + "ee": 2, + "display": 2, + "xv": 2, + "qiv": 2, + "gv": 2, + "ggv": 2, + "xdvi": 2, + "dvips": 2, + "dviselect": 2, + "dvitype": 2, + "acroread": 2, + "xpdf": 2, + "makeinfo": 2, + "texi2html": 2, + "tex": 2, + "latex": 2, + "slitex": 2, + "jadetex": 2, + "pdfjadetex": 2, + "pdftex": 2, + "pdflatex": 2, + "texi2dvi": 2, + "mpg123": 2, + "mpg321": 2, + "xine": 2, + "aviplay": 2, + "realplay": 2, + "xanim": 2, + "ogg123": 2, + "gqmpeg": 2, + "freeamp": 2, + "xmms": 2, + "xfig": 2, + "timidity": 2, + "playmidi": 2, + "vi": 2, + "vim": 2, + "gvim": 2, + "rvim": 2, + "view": 2, + "rview": 2, + "rgvim": 2, + "rgview": 2, + "gview": 2, + "emacs": 2, + "wine": 2, + "bzme": 2, + "netscape": 2, + "mozilla": 2, + "lynx": 2, + "opera": 2, + "w3m": 2, + "galeon": 2, + "curl": 8, + "dillo": 2, + "elinks": 2, + "links": 2, + "u": 2, + "su": 2, + "passwd": 2, + "groups": 2, + "user": 2, + "commands": 8, + "see": 4, + "only": 6, + "users": 2, + "A": 10, + "stopped": 4, + "P": 4, + "bg": 4, + "completes": 10, + "with": 12, + "jobs": 4, + "j": 2, + "fg": 2, + "disown": 2, + "other": 2, + "job": 3, + "v": 11, + "readonly": 4, + "unset": 10, + "and": 5, + "shell": 4, + "variables": 2, + "setopt": 8, + "options": 8, + "helptopic": 2, + "help": 5, + "helptopics": 2, + "a": 12, + "unalias": 4, + "aliases": 2, + "binding": 2, + "bind": 4, + "readline": 2, + "bindings": 2, + "(": 107, + "make": 6, + "this": 6, + "more": 3, + "intelligent": 2, + "c": 2, + "type": 5, + "which": 10, + "man": 6, + "#sudo": 2, + "on": 4, + "d": 9, + "pushd": 2, + "cd": 11, + "rmdir": 2, + "Make": 2, + "directory": 5, + "directories": 2, + "W": 2, + "alias": 42, + "filenames": 2, + "for": 7, + "PS1": 2, + "..": 2, + "cd..": 2, + "t": 3, + "csh": 2, + "is": 11, + "same": 2, + "as": 2, + "bash...": 2, + "quit": 2, + "q": 8, + "even": 3, + "shorter": 2, + "D": 2, + "rehash": 2, + "source": 7, + "/.bashrc": 3, + "after": 2, + "I": 2, + "edit": 2, + "it": 2, + "pg": 2, + "patch": 2, + "sed": 2, + "awk": 2, + "diff": 2, + "grep": 8, + "find": 2, + "ps": 2, + "whoami": 2, + "ping": 2, + "histappend": 2, + "PROMPT_COMMAND": 2, + "umask": 2, + "path": 13, + "/opt/local/bin": 2, + "/opt/local/sbin": 2, + "/bin": 4, + "prompt": 2, + "history": 18, + "endif": 2, + "stty": 2, + "istrip": 2, + "dirpersiststore": 2, + "##############################################################################": 16, + "#Import": 2, + "the": 17, + "agnostic": 2, + "Bash": 3, + "or": 3, + "Zsh": 2, + "environment": 2, + "config": 4, + "/.profile": 2, + "HISTSIZE": 2, + "#How": 2, + "many": 2, + "lines": 2, + "of": 6, + "keep": 3, + "memory": 3, + "HISTFILE": 2, + "/.zsh_history": 2, + "#Where": 2, + "save": 4, + "disk": 5, + "SAVEHIST": 2, + "#Number": 2, + "entries": 2, + "HISTDUP": 2, + "erase": 2, + "#Erase": 2, + "duplicates": 2, + "file": 9, + "appendhistory": 2, + "#Append": 2, + "overwriting": 2, + "sharehistory": 2, + "#Share": 2, + "across": 2, + "terminals": 2, + "incappendhistory": 2, + "#Immediately": 2, + "append": 2, + "not": 2, + "just": 2, + "when": 2, + "term": 2, + "killed": 2, + "#.": 2, + "/.dotfiles/z": 4, + "zsh/z.sh": 2, + "#function": 2, + "precmd": 2, + "rupa/z.sh": 2, + "fpath": 6, + "HOME/.zsh/func": 2, + "U": 2, + "docker": 1, + "version": 12, + "from": 1, + "ubuntu": 1, + "maintainer": 1, + "Solomon": 1, + "Hykes": 1, + "": 1, + "run": 13, + "apt": 6, + "get": 6, + "install": 8, + "y": 5, + "git": 16, + "https": 2, + "//go.googlecode.com/files/go1.1.1.linux": 1, + "amd64.tar.gz": 1, + "tar": 1, + "C": 1, + "/usr/local": 1, + "xz": 1, + "env": 4, + "/usr/local/go/bin": 2, + "/sbin": 2, + "GOPATH": 1, + "/go": 1, + "CGO_ENABLED": 1, + "/tmp": 1, + "t.go": 1, + "go": 2, + "test": 1, + "PKG": 12, + "github.com/kr/pty": 1, + "REV": 6, + "c699": 1, + "clone": 5, + "http": 3, + "//": 3, + "/go/src/": 6, + "checkout": 3, + "github.com/gorilla/context/": 1, + "d61e5": 1, + "github.com/gorilla/mux/": 1, + "b36453141c": 1, + "iptables": 1, + "/etc/apt/sources.list": 1, + "update": 2, + "lxc": 1, + "aufs": 1, + "tools": 1, + "add": 1, + "/go/src/github.com/dotcloud/docker": 1, + "/go/src/github.com/dotcloud/docker/docker": 1, + "ldflags": 1, + "/go/bin": 1, + "cmd": 1, + "pkgname": 1, + "stud": 4, + "pkgver": 1, + "pkgrel": 1, + "pkgdesc": 1, + "arch": 1, + "i686": 1, + "x86_64": 1, + "url": 4, + "license": 1, + "depends": 1, + "libev": 1, + "openssl": 1, + "makedepends": 1, + "provides": 1, + "conflicts": 1, + "_gitroot": 1, + "//github.com/bumptech/stud.git": 1, + "_gitname": 1, + "build": 2, + "msg": 4, + "pull": 3, + "origin": 1, + "else": 10, + "rm": 2, + "rf": 1, + "package": 1, + "PREFIX": 1, + "/usr": 1, + "DESTDIR": 1, + "Dm755": 1, + "init.stud": 1, + "mkdir": 2, + "p": 2, + "script": 1, + "dotfile": 1, + "repository": 3, + "does": 1, + "lot": 1, + "fun": 2, + "stuff": 3, + "like": 1, + "turning": 1, + "normal": 1, + "dotfiles": 1, + "eg": 1, + ".bashrc": 1, + "symlinks": 1, + "away": 1, + "optionally": 1, + "moving": 1, + "old": 4, + "files": 1, + "so": 1, + "that": 1, + "they": 1, + "preserved": 1, + "setting": 2, + "up": 1, + "cron": 1, + "automate": 1, + "aforementioned": 1, + "maybe": 1, + "some": 1, + "nocasematch": 1, + "This": 1, + "makes": 1, + "pattern": 1, + "matching": 1, + "insensitive": 1, + "POSTFIX": 1, + "URL": 1, + "PUSHURL": 1, + "overwrite": 3, + "true": 2, + "print_help": 2, + "e": 4, + "opt": 3, + "@": 3, + "k": 1, + "local": 22, + "false": 2, + "h": 3, + ".*": 2, + "o": 3, + "continue": 1, + "mv": 1, + "ln": 1, + "remote.origin.url": 1, + "remote.origin.pushurl": 1, + "crontab": 1, + ".jobs.cron": 1, + "x": 1, + "system": 1, + "exec": 3, + "rbenv": 2, + "versions": 1, + "bare": 1, + "&": 5, + "prefix": 1, + "/dev/null": 6, + "rvm_ignore_rvmrc": 1, + "declare": 22, + "rvmrc": 3, + "rvm_rvmrc_files": 3, + "ef": 1, + "+": 1, + "GREP_OPTIONS": 1, + "printf": 4, + "rvm_path": 4, + "UID": 1, + "elif": 4, + "rvm_is_not_a_shell_function": 2, + "rvm_path/scripts": 1, + "rvm": 1, + "sbt_release_version": 2, + "sbt_snapshot_version": 2, + "SNAPSHOT": 3, + "sbt_jar": 3, + "sbt_dir": 2, + "sbt_create": 2, + "sbt_snapshot": 1, + "sbt_launch_dir": 3, + "scala_version": 3, + "java_home": 1, + "sbt_explicit_version": 7, + "verbose": 6, + "debug": 11, + "quiet": 6, + "build_props_sbt": 3, + "project/build.properties": 9, + "versionLine": 2, + "sbt.version": 3, + "versionString": 3, + "versionLine##sbt.version": 1, + "update_build_props_sbt": 2, + "ver": 5, + "return": 3, + "perl": 3, + "pi": 1, + "||": 12, + "Updated": 1, + "Previous": 1, + "value": 1, + "was": 1, + "sbt_version": 8, + "echoerr": 3, + "vlog": 1, + "dlog": 8, + "get_script_path": 2, + "L": 1, + "target": 1, + "readlink": 1, + "get_mem_opts": 3, + "mem": 4, + "perm": 6, + "/": 2, + "<": 2, + "codecache": 1, + "die": 2, + "make_url": 3, + "groupid": 1, + "category": 1, + "default_jvm_opts": 1, + "default_sbt_opts": 1, + "default_sbt_mem": 2, + "noshare_opts": 1, + "sbt_opts_file": 1, + "jvm_opts_file": 1, + "latest_28": 1, + "latest_29": 1, + "latest_210": 1, + "script_path": 1, + "script_dir": 1, + "script_name": 2, + "java_cmd": 2, + "java": 2, + "sbt_mem": 5, + "residual_args": 4, + "java_args": 3, + "scalac_args": 4, + "sbt_commands": 2, + "build_props_scala": 1, + "build.scala.versions": 1, + "versionLine##build.scala.versions": 1, + "execRunner": 2, + "arg": 3, + "sbt_groupid": 3, + "*": 11, + "org.scala": 4, + "tools.sbt": 3, + "sbt": 18, + "sbt_artifactory_list": 2, + "version0": 2, + "F": 1, + "pe": 1, + "make_release_url": 2, + "releases": 1, + "make_snapshot_url": 2, + "snapshots": 1, + "head": 1, + "jar_url": 1, + "jar_file": 1, + "download_url": 2, + "jar": 3, + "dirname": 1, + "fail": 1, + "silent": 1, + "output": 1, + "wget": 2, + "O": 1, + "acquire_sbt_jar": 1, + "sbt_url": 1, + "usage": 2, + "cat": 3, + "<<": 2, + "EOM": 3, + "Usage": 1, + "print": 1, + "message": 1, + "runner": 1, + "chattier": 1, + "log": 2, + "level": 2, + "Debug": 1, + "Error": 1, + "colors": 2, + "disable": 1, + "ANSI": 1, + "color": 1, + "codes": 1, + "create": 2, + "start": 1, + "current": 1, + "contains": 2, + "project": 1, + "dir": 3, + "": 3, + "global": 1, + "settings/plugins": 1, + "default": 4, + "/.sbt/": 1, + "": 1, + "boot": 3, + "shared": 1, + "/.sbt/boot": 1, + "series": 1, + "ivy": 2, + "Ivy": 1, + "/.ivy2": 1, + "": 1, + "share": 2, + "use": 1, + "all": 1, + "caches": 1, + "sharing": 1, + "offline": 3, + "put": 1, + "mode": 2, + "jvm": 2, + "": 1, + "Turn": 1, + "JVM": 1, + "debugging": 1, + "open": 1, + "at": 1, + "given": 2, + "port.": 1, + "batch": 2, + "Disable": 1, + "interactive": 1, + "The": 1, + "way": 1, + "accomplish": 1, + "pre": 1, + "there": 2, + "build.properties": 1, + "an": 1, + "property": 1, + "disk.": 1, + "That": 1, + "scalacOptions": 3, + "S": 2, + "stripped": 1, + "In": 1, + "duplicated": 1, + "conflicting": 1, + "order": 1, + "above": 1, + "shows": 1, + "precedence": 1, + "JAVA_OPTS": 1, + "lowest": 1, + "line": 1, + "highest.": 1, + "addJava": 9, + "addSbt": 12, + "addScalac": 2, + "addResidual": 2, + "addResolver": 1, + "addDebugger": 2, + "get_jvm_opts": 2, + "process_args": 2, + "require_arg": 12, + "gt": 1, + "shift": 28, + "integer": 1, + "inc": 1, + "port": 1, + "snapshot": 1, + "launch": 1, + "scala": 3, + "home": 2, + "D*": 1, + "J*": 1, + "S*": 1, + "sbtargs": 3, + "IFS": 1, + "read": 1, + "<\"$sbt_opts_file\">": 1, + "process": 1, + "combined": 1, + "args": 2, + "reset": 1, + "residuals": 1, + "argumentCount=": 1, + "we": 1, + "were": 1, + "any": 1, + "opts": 1, + "eq": 1, + "0": 1, + "ThisBuild": 1, + "Update": 1, + "properties": 1, + "explicit": 1, + "gives": 1, + "us": 1, + "choice": 1, + "Detected": 1, + "Overriding": 1, + "alert": 1, + "them": 1, + "here": 1, + "argumentCount": 1, + "./build.sbt": 1, + "./project": 1, + "pwd": 1, + "doesn": 1, + "understand": 1, + "iflast": 1, + "#residual_args": 1, + "SHEBANG#!sh": 2, + "SHEBANG#!zsh": 2, + "name": 1, + "foodforthought.jpg": 1, + "name##*fo": 1 + }, + "Slash": { + "<%>": 1, + "class": 11, + "Env": 1, + "def": 18, + "init": 4, + "memory": 3, + "ptr": 9, + "0": 3, + "ptr=": 1, + "current_value": 5, + "current_value=": 1, + "value": 1, + "AST": 4, + "Next": 1, + "eval": 10, + "env": 16, + "Prev": 1, + "Inc": 1, + "Dec": 1, + "Output": 1, + "print": 1, + "char": 5, + "Input": 1, + "Sequence": 2, + "nodes": 6, + "for": 2, + "node": 2, + "in": 2, + "Loop": 1, + "seq": 4, + "while": 1, + "Parser": 1, + "str": 2, + "chars": 2, + "split": 1, + "parse": 1, + "stack": 3, + "_parse_char": 2, + "if": 1, + "length": 1, + "1": 1, + "throw": 1, + "SyntaxError": 1, + "new": 2, + "unexpected": 2, + "end": 1, + "of": 1, + "input": 1, + "last": 1, + "switch": 1, + "<": 1, + "+": 1, + "-": 1, + ".": 1, + "[": 1, + "]": 1, + ")": 7, + ";": 6, + "}": 3, + "@stack.pop": 1, + "_add": 1, + "(": 6, + "Loop.new": 1, + "Sequence.new": 1, + "src": 2, + "File.read": 1, + "ARGV.first": 1, + "ast": 1, + "Parser.new": 1, + ".parse": 1, + "ast.eval": 1, + "Env.new": 1 + }, + "Squirrel": { + "//example": 1, + "from": 1, + "http": 1, + "//www.squirrel": 1, + "-": 1, + "lang.org/#documentation": 1, + "local": 3, + "table": 1, + "{": 10, + "a": 2, + "subtable": 1, + "array": 3, + "[": 3, + "]": 3, + "}": 10, + "+": 2, + "b": 1, + ";": 15, + "foreach": 1, + "(": 10, + "i": 1, + "val": 2, + "in": 1, + ")": 10, + "print": 2, + "typeof": 1, + "/////////////////////////////////////////////": 1, + "class": 2, + "Entity": 3, + "constructor": 2, + "etype": 2, + "entityname": 4, + "name": 2, + "type": 2, + "x": 2, + "y": 2, + "z": 2, + "null": 2, + "function": 2, + "MoveTo": 1, + "newx": 2, + "newy": 2, + "newz": 2, + "Player": 2, + "extends": 1, + "base.constructor": 1, + "DoDomething": 1, + "newplayer": 1, + "newplayer.MoveTo": 1 + }, + "Standard ML": { + "signature": 2, + "LAZY_BASE": 3, + "sig": 2, + "type": 2, + "a": 18, + "lazy": 12, + "-": 13, + ")": 23, + "end": 6, + "LAZY": 1, + "bool": 4, + "val": 12, + "inject": 3, + "toString": 2, + "(": 22, + "string": 1, + "eq": 2, + "*": 1, + "eqBy": 3, + "compare": 2, + "order": 2, + "map": 2, + "b": 2, + "structure": 6, + "Ops": 2, + "LazyBase": 2, + "struct": 4, + "exception": 1, + "Undefined": 3, + "fun": 9, + "delay": 3, + "f": 9, + "force": 9, + "undefined": 1, + "fn": 3, + "raise": 1, + "LazyMemoBase": 2, + "datatype": 1, + "|": 1, + "Done": 1, + "of": 1, + "unit": 1, + "let": 1, + "open": 1, + "B": 1, + "x": 15, + "isUndefined": 2, + "ignore": 1, + ";": 1, + "false": 1, + "handle": 1, + "true": 1, + "if": 1, + "then": 1, + "else": 1, + "p": 4, + "y": 6, + "op": 1, + "Lazy": 1, + "LazyFn": 2, + "LazyMemo": 1 + }, + "SuperCollider": { + "BCR2000": 1, + "{": 14, + "var": 2, + "controls": 2, + "controlBuses": 2, + "rangedControlBuses": 2, + "responders": 2, + ";": 32, + "*new": 1, + "super.new.init": 1, + "}": 14, + "init": 1, + "Dictionary.new": 3, + "(": 34, + ")": 34, + "this.createCCResponders": 1, + "createCCResponders": 1, + "Array.fill": 1, + "|": 4, + "i": 5, + "CCResponder": 1, + "src": 3, + "chan": 3, + "num": 3, + "val": 4, + "[": 3, + "]": 3, + ".postln": 1, + "controls.put": 1, + "+": 4, + "controlBuses.put": 1, + "Bus.control": 1, + "Server.default": 1, + "controlBuses.at": 2, + ".value": 1, + "/": 2, + "nil": 4, + "//": 4, + "value": 1, + "at": 1, + "arg": 4, + "controlNum": 6, + "controls.at": 2, + "scalarAt": 1, + "busAt": 1, + "//boot": 1, + "server": 1, + "s.boot": 1, + "SynthDef": 1, + "sig": 7, + "resfreq": 3, + "Saw.ar": 1, + "SinOsc.kr": 1, + "*": 3, + "RLPF.ar": 1, + "Out.ar": 1, + ".play": 2, + "do": 2, + "Pan2.ar": 1, + "SinOsc.ar": 1, + "exprand": 1, + "LFNoise2.kr": 2, + "rrand": 2, + ".range": 2, + "**": 1, + "rand2": 1, + "a": 2, + "Env.perc": 1, + "-": 1, + "b": 1, + "a.delay": 2, + "a.test.plot": 1, + "b.test.plot": 1, + "Env": 1, + ".plot": 2, + "e": 1, + "Env.sine.asStream": 1, + "e.next.postln": 1, + "wait": 1, + ".fork": 1 + }, + "Tea": { + "<%>": 1, + "template": 1, + "foo": 1 + }, + "TeX": { + "%": 59, + "NeedsTeXFormat": 1, + "{": 180, + "LaTeX2e": 1, + "}": 185, + "ProvidesClass": 1, + "reedthesis": 1, + "[": 22, + "/01/27": 1, + "The": 4, + "Reed": 5, + "College": 5, + "Thesis": 5, + "Class": 4, + "]": 22, + "DeclareOption*": 1, + "PassOptionsToClass": 1, + "CurrentOption": 1, + "book": 2, + "ProcessOptions": 1, + "relax": 2, + "LoadClass": 1, + "RequirePackage": 1, + "fancyhdr": 1, + "AtBeginDocument": 1, + "fancyhf": 1, + "fancyhead": 5, + "LE": 1, + "RO": 1, + "thepage": 1, + "above": 1, + "makes": 2, + "your": 1, + "headers": 6, + "in": 10, + "all": 1, + "caps.": 2, + "If": 1, + "you": 1, + "would": 1, + "like": 1, + "different": 1, + "choose": 1, + "one": 1, + "of": 8, + "the": 14, + "following": 1, + "options": 1, + "(": 3, + "be": 3, + "sure": 1, + "to": 8, + "remove": 1, + "symbol": 1, + "from": 1, + "both": 1, + "right": 1, + "and": 2, + "left": 1, + ")": 3, + "RE": 2, + "slshape": 2, + "nouppercase": 2, + "leftmark": 2, + "This": 2, + "on": 1, + "RIGHT": 2, + "side": 2, + "pages": 2, + "italic": 1, + "use": 1, + "lowercase": 1, + "With": 1, + "Capitals": 1, + "When": 1, + "Specified.": 1, + "LO": 2, + "rightmark": 2, + "does": 1, + "same": 1, + "thing": 1, + "LEFT": 2, + "or": 1, + "scshape": 2, + "will": 2, + "small": 2, + "And": 1, + "so": 1, + "pagestyle": 2, + "fancy": 1, + "let": 10, + "oldthebibliography": 2, + "thebibliography": 2, + "endoldthebibliography": 2, + "endthebibliography": 1, + "renewenvironment": 2, + "#1": 12, + "addcontentsline": 5, + "toc": 5, + "chapter": 9, + "bibname": 2, + "end": 5, + "things": 1, + "for": 5, + "psych": 1, + "majors": 1, + "comment": 1, + "out": 1, + "oldtheindex": 2, + "theindex": 2, + "endoldtheindex": 2, + "endtheindex": 1, + "indexname": 1, + "RToldchapter": 1, + "renewcommand": 6, + "if@openright": 1, + "RTcleardoublepage": 3, + "else": 7, + "clearpage": 3, + "fi": 13, + "thispagestyle": 3, + "empty": 4, + "global": 2, + "@topnum": 1, + "z@": 2, + "@afterindentfalse": 1, + "secdef": 1, + "@chapter": 2, + "@schapter": 1, + "def": 12, + "#2": 4, + "ifnum": 2, + "c@secnumdepth": 1, + "m@ne": 2, + "if@mainmatter": 1, + "refstepcounter": 1, + "typeout": 1, + "@chapapp": 2, + "space": 4, + "thechapter.": 1, + "thechapter": 1, + "space#1": 1, + "chaptermark": 1, + "addtocontents": 2, + "lof": 1, + "protect": 2, + "addvspace": 2, + "p@": 3, + "lot": 1, + "if@twocolumn": 3, + "@topnewpage": 1, + "@makechapterhead": 2, + "@afterheading": 1, + "newcommand": 2, + "if@twoside": 1, + "ifodd": 1, + "c@page": 1, + "hbox": 15, + "newpage": 3, + "RToldcleardoublepage": 1, + "cleardoublepage": 4, + "setlength": 10, + "oddsidemargin": 2, + ".5in": 3, + "evensidemargin": 2, + "textwidth": 2, + "textheight": 4, + "topmargin": 6, + "addtolength": 8, + "headheight": 4, + "headsep": 3, + ".6in": 1, + "pt": 1, + "division#1": 1, + "gdef": 6, + "@division": 3, + "@latex@warning@no@line": 3, + "No": 3, + "noexpand": 3, + "division": 2, + "given": 3, + "department#1": 1, + "@department": 3, + "department": 1, + "thedivisionof#1": 1, + "@thedivisionof": 3, + "Division": 2, + "approvedforthe#1": 1, + "@approvedforthe": 3, + "advisor#1": 1, + "@advisor": 3, + "advisor": 1, + "altadvisor#1": 1, + "@altadvisor": 3, + "@altadvisortrue": 1, + "@empty": 1, + "newif": 1, + "if@altadvisor": 3, + "@altadvisorfalse": 1, + "contentsname": 1, + "Table": 1, + "Contents": 1, + "References": 1, + "l@chapter": 1, + "c@tocdepth": 1, + "addpenalty": 1, + "@highpenalty": 2, + "vskip": 4, + "em": 3, + "@plus": 1, + "@tempdima": 2, + "begingroup": 1, + "parindent": 1, + "rightskip": 1, + "@pnumwidth": 3, + "parfillskip": 1, + "-": 2, + "leavevmode": 1, + "bfseries": 3, + "advance": 1, + "leftskip": 2, + "hskip": 1, + "nobreak": 2, + "normalfont": 1, + "leaders": 1, + "m@th": 1, + "mkern": 2, + "@dotsep": 2, + "mu": 2, + ".": 1, + "hfill": 1, + "hb@xt@": 1, + "hss": 1, + "par": 6, + "penalty": 1, + "endgroup": 1, + "newenvironment": 1, + "abstract": 1, + "@restonecoltrue": 1, + "onecolumn": 1, + "@restonecolfalse": 1, + "Abstract": 2, + "begin": 4, + "center": 7, + "fontsize": 7, + "selectfont": 6, + "if@restonecol": 1, + "twocolumn": 1, + "ifx": 1, + "@pdfoutput": 1, + "@undefined": 1, + "RTpercent": 3, + "@percentchar": 1, + "AtBeginDvi": 2, + "special": 2, + "LaTeX": 3, + "/12/04": 3, + "SN": 3, + "rawpostscript": 1, + "AtEndDocument": 1, + "pdfinfo": 1, + "/Creator": 1, + "maketitle": 1, + "titlepage": 2, + "footnotesize": 1, + "footnoterule": 1, + "footnote": 1, + "thanks": 1, + "baselineskip": 2, + "setbox0": 2, + "Requirements": 2, + "Degree": 2, + "setcounter": 1, + "page": 3, + "null": 3, + "vfil": 8, + "@title": 1, + "centerline": 8, + "wd0": 7, + "hrulefill": 5, + "A": 1, + "Presented": 1, + "In": 1, + "Partial": 1, + "Fulfillment": 1, + "Bachelor": 1, + "Arts": 1, + "bigskip": 2, + "lineskip": 1, + ".75em": 1, + "tabular": 2, + "t": 1, + "c": 5, + "@author": 1, + "@date": 1, + "Approved": 2, + "just": 1, + "below": 2, + "cm": 2, + "not": 1, + "copy0": 1, + "approved": 1, + "major": 1, + "sign": 1, + "makebox": 6 + }, + "Turing": { + "function": 1, + "factorial": 4, + "(": 3, + "n": 9, + "int": 2, + ")": 3, + "real": 1, + "if": 2, + "then": 1, + "result": 2, + "else": 1, + "*": 1, + "-": 1, + "end": 3, + "var": 1, + "loop": 2, + "put": 3, + "..": 1, + "get": 1, + "exit": 1, + "when": 1 + }, + "TXL": { + "define": 12, + "program": 1, + "[": 38, + "expression": 9, + "]": 38, + "end": 12, + "term": 6, + "|": 3, + "addop": 2, + "primary": 4, + "mulop": 2, + "number": 10, + "(": 2, + ")": 2, + "-": 3, + "/": 3, + "rule": 12, + "main": 1, + "replace": 6, + "E": 3, + "construct": 1, + "NewE": 3, + "resolveAddition": 2, + "resolveSubtraction": 2, + "resolveMultiplication": 2, + "resolveDivision": 2, + "resolveParentheses": 2, + "where": 1, + "not": 1, + "by": 6, + "N1": 8, + "+": 2, + "N2": 8, + "*": 2, + "N": 2 + }, + "TypeScript": { + "class": 3, + "Animal": 4, + "{": 9, + "constructor": 3, + "(": 18, + "public": 1, + "name": 5, + ")": 18, + "}": 9, + "move": 3, + "meters": 2, + "alert": 3, + "this.name": 1, + "+": 3, + ";": 8, + "Snake": 2, + "extends": 2, + "super": 2, + "super.move": 2, + "Horse": 2, + "var": 2, + "sam": 1, + "new": 2, + "tom": 1, + "sam.move": 1, + "tom.move": 1, + "console.log": 1 + }, + "Verilog": { + "////////////////////////////////////////////////////////////////////////////////": 14, + "//": 117, + "timescale": 10, + "ns": 8, + "/": 11, + "ps": 8, + "module": 18, + "button_debounce": 3, + "(": 378, + "input": 68, + "clk": 40, + "clock": 3, + "reset_n": 32, + "asynchronous": 2, + "reset": 13, + "button": 25, + "bouncy": 1, + "output": 42, + "reg": 26, + "debounce": 6, + "debounced": 1, + "-": 73, + "cycle": 1, + "signal": 3, + ")": 378, + ";": 287, + "parameter": 7, + "CLK_FREQUENCY": 4, + "DEBOUNCE_HZ": 4, + "localparam": 4, + "COUNT_VALUE": 2, + "WAIT": 6, + "FIRE": 4, + "COUNT": 4, + "[": 179, + "]": 179, + "state": 6, + "next_state": 6, + "count": 6, + "always": 23, + "@": 16, + "posedge": 11, + "or": 14, + "negedge": 8, + "<": 47, + "begin": 46, + "if": 23, + "end": 48, + "else": 22, + "case": 3, + "<=>": 4, + "1": 7, + "endcase": 3, + "default": 2, + "endmodule": 18, + "control": 1, + "en": 13, + "dsp_sel": 9, + "an": 6, + "wire": 67, + "a": 5, + "b": 3, + "c": 3, + "d": 3, + "e": 3, + "f": 2, + "g": 2, + "h": 2, + "i": 62, + "j": 2, + "k": 2, + "l": 2, + "assign": 23, + "FDRSE": 6, + "#": 10, + ".INIT": 6, + "b0": 27, + "Synchronous": 12, + ".S": 6, + "b1": 19, + "Initial": 6, + "value": 6, + "of": 8, + "register": 6, + "DFF2": 1, + ".Q": 6, + "Data": 13, + ".C": 6, + "Clock": 14, + ".CE": 6, + "enable": 6, + ".D": 6, + ".R": 6, + "set": 6, + "DFF0": 1, + "DFF6": 1, + "DFF4": 1, + "DFF10": 1, + "DFF8": 1, + "hex_display": 1, + "num": 5, + "hex0": 2, + "hex1": 2, + "hex2": 2, + "hex3": 2, + "seg_7": 4, + "hex_group0": 1, + ".num": 4, + ".en": 4, + ".seg": 4, + "hex_group1": 1, + "hex_group2": 1, + "hex_group3": 1, + "mux": 1, + "opA": 4, + "opB": 3, + "sum": 5, + "out": 5, + "cout": 4, + "b0000": 1, + "b01": 1, + "b11": 1, + "pipeline_registers": 1, + "BIT_WIDTH": 5, + "pipe_in": 4, + "pipe_out": 5, + "NUMBER_OF_STAGES": 7, + "generate": 3, + "genvar": 3, + "*": 4, + "BIT_WIDTH*": 5, + "pipe_gen": 6, + "for": 4, + "+": 36, + "pipeline": 2, + "BIT_WIDTH*i": 2, + "endgenerate": 3, + "ps2_mouse": 1, + "Input": 2, + "Reset": 1, + "inout": 2, + "ps2_clk": 3, + "PS2": 2, + "Bidirectional": 2, + "ps2_dat": 3, + "the_command": 2, + "Command": 1, + "to": 3, + "send": 2, + "mouse": 1, + "send_command": 2, + "Signal": 2, + "command_was_sent": 2, + "command": 1, + "finished": 1, + "sending": 1, + "error_communication_timed_out": 3, + "received_data": 2, + "Received": 1, + "data": 4, + "received_data_en": 4, + "If": 1, + "new": 1, + "has": 1, + "been": 1, + "received": 1, + "start_receiving_data": 3, + "wait_for_incoming_data": 3, + "ps2_clk_posedge": 3, + "Internal": 2, + "Wires": 1, + "ps2_clk_negedge": 3, + "idle_counter": 4, + "Registers": 2, + "ps2_clk_reg": 4, + "ps2_data_reg": 5, + "last_ps2_clk": 4, + "ns_ps2_transceiver": 13, + "State": 1, + "Machine": 1, + "s_ps2_transceiver": 8, + "PS2_STATE_0_IDLE": 10, + "h1": 1, + "PS2_STATE_2_COMMAND_OUT": 2, + "h3": 1, + "PS2_STATE_4_END_DELAYED": 4, + "Defaults": 1, + "PS2_STATE_1_DATA_IN": 3, + "||": 1, + "PS2_STATE_3_END_TRANSFER": 3, + "h00": 1, + "&&": 3, + "h01": 1, + "ps2_mouse_cmdout": 1, + "mouse_cmdout": 1, + ".clk": 6, + "Inputs": 2, + ".reset": 2, + ".the_command": 1, + ".send_command": 1, + ".ps2_clk_posedge": 2, + ".ps2_clk_negedge": 2, + ".ps2_clk": 1, + "Bidirectionals": 1, + ".ps2_dat": 1, + ".command_was_sent": 1, + "Outputs": 2, + ".error_communication_timed_out": 1, + "ps2_mouse_datain": 1, + "mouse_datain": 1, + ".wait_for_incoming_data": 1, + ".start_receiving_data": 1, + ".ps2_data": 1, + ".received_data": 1, + ".received_data_en": 1, + "ns/1ps": 2, + "e0": 1, + "x": 41, + "y": 21, + "{": 11, + "}": 11, + "e1": 1, + "ch": 1, + "z": 7, + "o": 6, + "&": 6, + "maj": 1, + "|": 2, + "s0": 1, + "s1": 1, + "sign_extender": 1, + "INPUT_WIDTH": 5, + "OUTPUT_WIDTH": 4, + "original": 3, + "sign_extended_original": 2, + "sign_extend": 3, + "gen_sign_extend": 1, + "sqrt_pipelined": 3, + "start": 12, + "optional": 2, + "INPUT_BITS": 28, + "radicand": 12, + "unsigned": 2, + "data_valid": 7, + "valid": 2, + "OUTPUT_BITS": 14, + "root": 8, + "number": 2, + "bits": 2, + "any": 1, + "integer": 1, + "%": 3, + "start_gen": 7, + "propagation": 1, + "OUTPUT_BITS*INPUT_BITS": 9, + "root_gen": 15, + "values": 3, + "radicand_gen": 10, + "mask_gen": 9, + "mask": 3, + "mask_4": 1, + "is": 4, + "odd": 1, + "this": 2, + "INPUT_BITS*": 27, + "<<": 2, + "i/2": 2, + "even": 1, + "pipeline_stage": 1, + "INPUT_BITS*i": 5, + "t_button_debounce": 1, + ".CLK_FREQUENCY": 1, + ".DEBOUNCE_HZ": 1, + ".reset_n": 3, + ".button": 1, + ".debounce": 1, + "initial": 3, + "bx": 4, + "#10": 10, + "#5": 3, + "#100": 1, + "#0.1": 8, + "t_div_pipelined": 1, + "dividend": 3, + "divisor": 5, + "div_by_zero": 2, + "quotient": 2, + "quotient_correct": 1, + "BITS": 2, + "div_pipelined": 2, + ".BITS": 1, + ".dividend": 1, + ".divisor": 1, + ".quotient": 1, + ".div_by_zero": 1, + ".start": 2, + ".data_valid": 2, + "#50": 2, + "#1": 1, + "#1000": 1, + "finish": 2, + "t_sqrt_pipelined": 1, + ".INPUT_BITS": 1, + ".radicand": 1, + ".root": 1, + "#10000": 1, + "vga": 1, + "wb_clk_i": 6, + "Mhz": 1, + "VDU": 1, + "wb_rst_i": 6, + "wb_dat_i": 3, + "wb_dat_o": 2, + "wb_adr_i": 3, + "wb_we_i": 3, + "wb_tga_i": 5, + "wb_sel_i": 3, + "wb_stb_i": 2, + "wb_cyc_i": 2, + "wb_ack_o": 2, + "vga_red_o": 2, + "vga_green_o": 2, + "vga_blue_o": 2, + "horiz_sync": 2, + "vert_sync": 2, + "csrm_adr_o": 2, + "csrm_sel_o": 2, + "csrm_we_o": 2, + "csrm_dat_o": 2, + "csrm_dat_i": 2, + "csr_adr_i": 3, + "csr_stb_i": 2, + "conf_wb_dat_o": 3, + "conf_wb_ack_o": 3, + "mem_wb_dat_o": 3, + "mem_wb_ack_o": 3, + "csr_adr_o": 2, + "csr_dat_i": 3, + "csr_stb_o": 3, + "v_retrace": 3, + "vh_retrace": 3, + "w_vert_sync": 3, + "shift_reg1": 3, + "graphics_alpha": 4, + "memory_mapping1": 3, + "write_mode": 3, + "raster_op": 3, + "read_mode": 3, + "bitmask": 3, + "set_reset": 3, + "enable_set_reset": 3, + "map_mask": 3, + "x_dotclockdiv2": 3, + "chain_four": 3, + "read_map_select": 3, + "color_compare": 3, + "color_dont_care": 3, + "wbm_adr_o": 3, + "wbm_sel_o": 3, + "wbm_we_o": 3, + "wbm_dat_o": 3, + "wbm_dat_i": 3, + "wbm_stb_o": 3, + "wbm_ack_i": 3, + "stb": 4, + "cur_start": 3, + "cur_end": 3, + "start_addr": 2, + "vcursor": 3, + "hcursor": 3, + "horiz_total": 3, + "end_horiz": 3, + "st_hor_retr": 3, + "end_hor_retr": 3, + "vert_total": 3, + "end_vert": 3, + "st_ver_retr": 3, + "end_ver_retr": 3, + "pal_addr": 3, + "pal_we": 3, + "pal_read": 3, + "pal_write": 3, + "dac_we": 3, + "dac_read_data_cycle": 3, + "dac_read_data_register": 3, + "dac_read_data": 3, + "dac_write_data_cycle": 3, + "dac_write_data_register": 3, + "dac_write_data": 3, + "vga_config_iface": 1, + "config_iface": 1, + ".wb_clk_i": 2, + ".wb_rst_i": 2, + ".wb_dat_i": 2, + ".wb_dat_o": 2, + ".wb_adr_i": 2, + ".wb_we_i": 2, + ".wb_sel_i": 2, + ".wb_stb_i": 2, + ".wb_ack_o": 2, + ".shift_reg1": 2, + ".graphics_alpha": 2, + ".memory_mapping1": 2, + ".write_mode": 2, + ".raster_op": 2, + ".read_mode": 2, + ".bitmask": 2, + ".set_reset": 2, + ".enable_set_reset": 2, + ".map_mask": 2, + ".x_dotclockdiv2": 2, + ".chain_four": 2, + ".read_map_select": 2, + ".color_compare": 2, + ".color_dont_care": 2, + ".pal_addr": 2, + ".pal_we": 2, + ".pal_read": 2, + ".pal_write": 2, + ".dac_we": 2, + ".dac_read_data_cycle": 2, + ".dac_read_data_register": 2, + ".dac_read_data": 2, + ".dac_write_data_cycle": 2, + ".dac_write_data_register": 2, + ".dac_write_data": 2, + ".cur_start": 2, + ".cur_end": 2, + ".start_addr": 1, + ".vcursor": 2, + ".hcursor": 2, + ".horiz_total": 2, + ".end_horiz": 2, + ".st_hor_retr": 2, + ".end_hor_retr": 2, + ".vert_total": 2, + ".end_vert": 2, + ".st_ver_retr": 2, + ".end_ver_retr": 2, + ".v_retrace": 2, + ".vh_retrace": 2, + "vga_lcd": 1, + "lcd": 1, + ".rst": 1, + ".csr_adr_o": 1, + ".csr_dat_i": 1, + ".csr_stb_o": 1, + ".vga_red_o": 1, + ".vga_green_o": 1, + ".vga_blue_o": 1, + ".horiz_sync": 1, + ".vert_sync": 1, + "vga_cpu_mem_iface": 1, + "cpu_mem_iface": 1, + ".wbs_adr_i": 1, + ".wbs_sel_i": 1, + ".wbs_we_i": 1, + ".wbs_dat_i": 1, + ".wbs_dat_o": 1, + ".wbs_stb_i": 1, + ".wbs_ack_o": 1, + ".wbm_adr_o": 1, + ".wbm_sel_o": 1, + ".wbm_we_o": 1, + ".wbm_dat_o": 1, + ".wbm_dat_i": 1, + ".wbm_stb_o": 1, + ".wbm_ack_i": 1, + "vga_mem_arbitrer": 1, + "mem_arbitrer": 1, + ".clk_i": 1, + ".rst_i": 1, + ".csr_adr_i": 1, + ".csr_dat_o": 1, + ".csr_stb_i": 1, + ".csrm_adr_o": 1, + ".csrm_sel_o": 1, + ".csrm_we_o": 1, + ".csrm_dat_o": 1, + ".csrm_dat_i": 1 + }, + "VHDL": { + "-": 2, + "VHDL": 1, + "example": 1, + "file": 1, + "library": 1, + "ieee": 1, + ";": 7, + "use": 1, + "ieee.std_logic_1164.all": 1, + "entity": 2, + "inverter": 2, + "is": 2, + "port": 1, + "(": 1, + "a": 2, + "in": 1, + "std_logic": 2, + "b": 2, + "out": 1, + ")": 1, + "end": 2, + "architecture": 2, + "rtl": 1, + "of": 1, + "begin": 1, + "<": 1, + "not": 1 + }, + "VimL": { + "no": 1, + "toolbar": 1, + "set": 7, + "guioptions": 1, + "-": 1, + "T": 1, + "nocompatible": 1, + "ignorecase": 1, + "incsearch": 1, + "smartcase": 1, + "showmatch": 1, + "showcmd": 1, + "syntax": 1, + "on": 1 + }, + "Visual Basic": { + "VERSION": 1, + "CLASS": 1, + "BEGIN": 1, + "MultiUse": 1, + "-": 6, + "NotPersistable": 1, + "DataBindingBehavior": 1, + "vbNone": 1, + "MTSTransactionMode": 1, + "*************************************************************************************************************************************************************************************************************************************************": 2, + "Copyright": 1, + "(": 14, + "c": 1, + ")": 14, + "David": 1, + "Briant": 1, + "All": 1, + "rights": 1, + "reserved": 1, + "Option": 1, + "Explicit": 1, + "Private": 25, + "Declare": 3, + "Function": 5, + "apiSetProp": 4, + "Lib": 3, + "Alias": 3, + "ByVal": 6, + "hwnd": 2, + "As": 34, + "Long": 10, + "lpString": 2, + "String": 13, + "hData": 1, + "apiGlobalAddAtom": 3, + "apiSetForegroundWindow": 1, + "myMouseEventsForm": 5, + "fMouseEventsForm": 2, + "WithEvents": 3, + "myAST": 3, + "cTP_AdvSysTray": 2, + "Attribute": 3, + "myAST.VB_VarHelpID": 1, + "myClassName": 2, + "myWindowName": 2, + "Const": 9, + "TEN_MILLION": 1, + "Single": 1, + "myListener": 1, + "VLMessaging.VLMMMFileListener": 1, + "myListener.VB_VarHelpID": 1, + "myMMFileTransports": 2, + "VLMessaging.VLMMMFileTransports": 1, + "myMMFileTransports.VB_VarHelpID": 1, + "myMachineID": 1, + "myRouterSeed": 1, + "myRouterIDsByMMTransportID": 1, + "New": 6, + "Dictionary": 3, + "myMMTransportIDsByRouterID": 2, + "myDirectoryEntriesByIDString": 1, + "GET_ROUTER_ID": 1, + "GET_ROUTER_ID_REPLY": 1, + "REGISTER_SERVICE": 1, + "REGISTER_SERVICE_REPLY": 1, + "UNREGISTER_SERVICE": 1, + "UNREGISTER_SERVICE_REPLY": 1, + "GET_SERVICES": 1, + "GET_SERVICES_REPLY": 1, + "Initialize": 1, + "/": 1, + "Release": 1, + "hide": 1, + "us": 1, + "from": 1, + "the": 3, + "Applications": 1, + "list": 1, + "in": 1, + "Windows": 1, + "Task": 1, + "Manager": 1, + "App.TaskVisible": 1, + "False": 1, + "create": 1, + "tray": 1, + "icon": 1, + "Set": 5, + "myAST.create": 1, + "myMouseEventsForm.icon": 1, + "make": 1, + "myself": 1, + "easily": 1, + "found": 1, + "myMouseEventsForm.hwnd": 3, + "End": 7, + "Sub": 7, + "shutdown": 1, + "myAST.destroy": 1, + "Nothing": 2, + "Unload": 1, + "myAST_RButtonUp": 1, + "Dim": 1, + "epm": 1, + "cTP_EasyPopupMenu": 1, + "menuItemSelected": 1, + "epm.addMenuItem": 3, + "MF_STRING": 3, + "epm.addSubmenuItem": 2, + "MF_SEPARATOR": 1, + "MF_CHECKED": 1, + "route": 2, + "to": 1, + "a": 1, + "remote": 1, + "machine": 1, + "Else": 1, + "for": 1, + "moment": 1, + "just": 1, + "between": 1, + "MMFileTransports": 1, + "If": 3, + "myMMTransportIDsByRouterID.Exists": 1, + "message.toAddress.RouterID": 2, + "Then": 1, + "transport": 1, + "transport.send": 1, + "messageToBytes": 1, + "message": 1, + "directoryEntryIDString": 2, + "serviceType": 2, + "address": 1, + "VLMAddress": 1, + "&": 7, + "address.MachineID": 1, + "address.RouterID": 1, + "address.AgentID": 1, + "myMMFileTransports_disconnecting": 1, + "id": 1, + "oReceived": 2, + "Boolean": 1, + "True": 1 + }, + "Volt": { + "module": 1, + "main": 2, + ";": 53, + "import": 7, + "core.stdc.stdio": 1, + "core.stdc.stdlib": 1, + "watt.process": 1, + "watt.path": 1, + "results": 1, + "list": 1, + "cmd": 1, + "int": 8, + "(": 37, + ")": 37, + "{": 12, + "auto": 6, + "cmdGroup": 2, + "new": 3, + "CmdGroup": 1, + "bool": 4, + "printOk": 2, + "true": 4, + "printImprovments": 2, + "printFailing": 2, + "printRegressions": 2, + "string": 1, + "compiler": 3, + "getEnv": 1, + "if": 7, + "is": 2, + "null": 3, + "printf": 6, + ".ptr": 14, + "return": 2, + "-": 3, + "}": 12, + "///": 1, + "@todo": 1, + "Scan": 1, + "for": 4, + "files": 1, + "tests": 2, + "testList": 1, + "total": 5, + "passed": 5, + "failed": 5, + "improved": 3, + "regressed": 6, + "rets": 5, + "Result": 2, + "[": 6, + "]": 6, + "tests.length": 3, + "size_t": 3, + "i": 14, + "<": 3, + "+": 14, + ".runTest": 1, + "cmdGroup.waitAll": 1, + "ret": 1, + "ret.ok": 1, + "cast": 5, + "ret.hasPassed": 4, + "&&": 2, + "ret.test.ptr": 4, + "ret.msg.ptr": 4, + "else": 3, + "fflush": 2, + "stdout": 1, + "xml": 8, + "fopen": 1, + "fprintf": 2, + "rets.length": 1, + ".xmlLog": 1, + "fclose": 1, + "rate": 2, + "float": 2, + "/": 1, + "*": 1, + "f": 1, + "double": 1 + }, + "wisp": { + ";": 199, + "#": 2, + "wisp": 6, + "Wisp": 13, + "is": 20, + "homoiconic": 1, + "JS": 17, + "dialect": 1, + "with": 6, + "a": 24, + "clojure": 2, + "syntax": 2, + "s": 7, + "-": 33, + "expressions": 6, + "and": 9, + "macros.": 1, + "code": 3, + "compiles": 1, + "to": 21, + "human": 1, + "readable": 1, + "javascript": 1, + "which": 3, + "one": 3, + "of": 16, + "they": 3, + "key": 3, + "differences": 1, + "from": 2, + "clojurescript.": 1, + "##": 2, + "data": 1, + "structures": 1, + "nil": 4, + "just": 3, + "like": 2, + "js": 1, + "undefined": 1, + "differenc": 1, + "that": 7, + "it": 10, + "shortcut": 1, + "for": 5, + "void": 2, + "(": 77, + ")": 75, + "in": 16, + "JS.": 2, + "Booleans": 1, + "booleans": 2, + "true": 6, + "/": 1, + "false": 2, + "are": 14, + "Numbers": 1, + "numbers": 2, + "Strings": 2, + "strings": 3, + "can": 13, + "be": 15, + "multiline": 1, + "Characters": 2, + "sugar": 1, + "single": 1, + "char": 1, + "Keywords": 3, + "symbolic": 2, + "identifiers": 2, + "evaluate": 2, + "themselves.": 1, + "keyword": 1, + "Since": 1, + "string": 1, + "constats": 1, + "fulfill": 1, + "this": 2, + "purpose": 2, + "keywords": 1, + "compile": 3, + "equivalent": 2, + "strings.": 1, + "window.addEventListener": 1, + "load": 1, + "handler": 1, + "invoked": 2, + "as": 4, + "functions": 8, + "desugars": 1, + "plain": 2, + "associated": 2, + "value": 2, + "access": 1, + "bar": 4, + "foo": 6, + "[": 22, + "]": 22, + "Vectors": 1, + "vectors": 1, + "arrays.": 1, + "Note": 3, + "Commas": 2, + "white": 1, + "space": 1, + "&": 6, + "used": 1, + "if": 7, + "desired": 1, + "Maps": 2, + "hash": 1, + "maps": 1, + "objects.": 1, + "unlike": 1, + "keys": 1, + "not": 4, + "arbitary": 1, + "types.": 1, + "{": 4, + "beep": 1, + "bop": 1, + "}": 4, + "optional": 2, + "but": 7, + "come": 1, + "handy": 1, + "separating": 1, + "pairs.": 1, + "b": 5, + "In": 5, + "future": 2, + "JSONs": 1, + "may": 1, + "made": 2, + "compatible": 1, + "map": 3, + "syntax.": 1, + "Lists": 1, + "You": 1, + "up": 1, + "lists": 1, + "representing": 1, + "expressions.": 1, + "The": 1, + "first": 4, + "item": 2, + "the": 9, + "expression": 6, + "function": 7, + "being": 1, + "rest": 7, + "items": 2, + "arguments.": 2, + "baz": 2, + "Conventions": 1, + "puts": 1, + "lot": 2, + "effort": 1, + "making": 1, + "naming": 1, + "conventions": 3, + "transparent": 1, + "by": 2, + "encouraning": 1, + "lisp": 1, + "then": 1, + "translating": 1, + "them": 1, + "dash": 1, + "delimited": 1, + "dashDelimited": 1, + "predicate": 1, + "isPredicate": 1, + "__privates__": 1, + "list": 2, + "vector": 1, + "listToVector": 1, + "As": 1, + "side": 2, + "effect": 1, + "some": 2, + "names": 1, + "expressed": 3, + "few": 1, + "ways": 1, + "although": 1, + "third": 2, + "expression.": 1, + "<": 1, + "number": 3, + "Else": 1, + "missing": 1, + "conditional": 1, + "evaluates": 2, + "result": 2, + "will": 6, + ".": 6, + "monday": 1, + "today": 1, + "Compbining": 1, + "everything": 1, + "an": 1, + "sometimes": 1, + "might": 1, + "want": 2, + "compbine": 1, + "multiple": 1, + "into": 2, + "usually": 3, + "evaluating": 1, + "have": 2, + "effects": 1, + "do": 4, + "console.log": 2, + "+": 9, + "Also": 1, + "special": 4, + "form": 10, + "many.": 1, + "If": 2, + "evaluation": 1, + "nil.": 1, + "Bindings": 1, + "Let": 1, + "containing": 1, + "lexical": 1, + "context": 1, + "simbols": 1, + "bindings": 1, + "forms": 1, + "bound": 1, + "their": 2, + "respective": 1, + "results.": 1, + "let": 2, + "c": 1, + "Functions": 1, + "fn": 15, + "x": 22, + "named": 1, + "similar": 2, + "increment": 1, + "also": 2, + "contain": 1, + "documentation": 1, + "metadata.": 1, + "Docstring": 1, + "metadata": 1, + "presented": 1, + "compiled": 2, + "yet": 1, + "comments": 1, + "function.": 1, + "incerement": 1, + "added": 1, + "makes": 1, + "capturing": 1, + "arguments": 7, + "easier": 1, + "than": 1, + "argument": 1, + "follows": 1, + "simbol": 1, + "capture": 1, + "all": 4, + "args": 1, + "array.": 1, + "rest.reduce": 1, + "sum": 3, + "Overloads": 1, + "overloaded": 1, + "depending": 1, + "on": 1, + "take": 2, + "without": 2, + "introspection": 1, + "version": 1, + "y": 6, + "more": 3, + "more.reduce": 1, + "does": 1, + "has": 2, + "variadic": 1, + "overload": 1, + "passed": 1, + "throws": 1, + "exception.": 1, + "Other": 1, + "Special": 1, + "Forms": 1, + "Instantiation": 1, + "type": 2, + "instantiation": 1, + "consice": 1, + "needs": 1, + "suffixed": 1, + "character": 1, + "Type.": 1, + "options": 2, + "More": 1, + "verbose": 1, + "there": 1, + "new": 2, + "Class": 1, + "Method": 1, + "calls": 3, + "method": 2, + "no": 1, + "different": 1, + "Any": 1, + "quoted": 1, + "prevent": 1, + "doesn": 1, + "t": 1, + "unless": 5, + "or": 2, + "macro": 7, + "try": 1, + "implemting": 1, + "understand": 1, + "use": 2, + "case": 1, + "We": 1, + "execute": 1, + "body": 4, + "condition": 4, + "defn": 2, + "Although": 1, + "following": 2, + "log": 1, + "anyway": 1, + "since": 1, + "exectued": 1, + "before": 1, + "called.": 1, + "Macros": 2, + "solve": 1, + "problem": 1, + "because": 1, + "immediately.": 1, + "Instead": 1, + "you": 1, + "get": 2, + "choose": 1, + "when": 1, + "evaluated.": 1, + "return": 1, + "instead.": 1, + "defmacro": 3, + "less": 1, + "how": 1, + "build": 1, + "implemented.": 1, + "define": 4, + "name": 2, + "def": 1, + "@body": 1, + "Now": 1, + "we": 2, + "above": 1, + "defined": 1, + "expanded": 2, + "time": 1, + "resulting": 1, + "diff": 1, + "program": 1, + "output.": 1, + "print": 1, + "message": 2, + ".log": 1, + "console": 1, + "Not": 1, + "macros": 2, + "via": 2, + "templating": 1, + "language": 1, + "available": 1, + "at": 1, + "hand": 1, + "assemble": 1, + "form.": 1, + "For": 2, + "instance": 1, + "ease": 1, + "functional": 1, + "chanining": 1, + "popular": 1, + "chaining.": 1, + "example": 1, + "API": 1, + "pioneered": 1, + "jQuery": 1, + "very": 2, + "common": 1, + "open": 2, + "target": 1, + "keypress": 2, + "filter": 2, + "isEnterKey": 1, + "getInputText": 1, + "reduce": 3, + "render": 2, + "Unfortunately": 1, + "though": 1, + "requires": 1, + "need": 1, + "methods": 1, + "dsl": 1, + "object": 1, + "limited.": 1, + "Making": 1, + "party": 1, + "second": 1, + "class.": 1, + "Via": 1, + "achieve": 1, + "chaining": 1, + "such": 1, + "tradeoffs.": 1, + "operations": 3, + "operation": 3, + "cons": 2, + "tagret": 1, + "enter": 1, + "input": 1, + "text": 1 + }, + "XC": { + "int": 2, + "main": 1, + "(": 1, + ")": 1, + "{": 2, + "x": 3, + ";": 4, + "chan": 1, + "c": 3, + "par": 1, + "<:>": 1, + "0": 1, + "}": 2, + "return": 1 + }, + "XML": { + "": 3, + "version=": 4, + "": 1, + "name=": 223, + "xmlns": 2, + "ea=": 2, + "": 2, + "This": 21, + "easyant": 3, + "module.ant": 1, + "sample": 2, + "file": 3, + "is": 123, + "optionnal": 1, + "and": 44, + "designed": 1, + "to": 164, + "customize": 1, + "your": 8, + "build": 1, + "with": 23, + "own": 2, + "specific": 8, + "target.": 1, + "": 2, + "": 2, + "": 2, + "my": 2, + "awesome": 1, + "additionnal": 1, + "target": 6, + "": 2, + "": 2, + "extensionOf=": 1, + "i": 2, + "would": 2, + "love": 1, + "could": 1, + "easily": 1, + "plug": 1, + "pre": 1, + "compile": 1, + "step": 1, + "": 1, + "": 1, + "": 1, + "organisation=": 3, + "module=": 3, + "revision=": 3, + "status=": 1, + "this": 77, + "a": 127, + "module.ivy": 1, + "for": 59, + "java": 1, + "standard": 1, + "application": 2, + "": 1, + "": 1, + "value=": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 2, + "visibility=": 2, + "description=": 2, + "": 1, + "": 1, + "": 1, + "org=": 1, + "rev=": 1, + "conf=": 1, + "default": 9, + "junit": 2, + "test": 7, + "-": 49, + "/": 6, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "ReactiveUI": 2, + "": 1, + "": 1, + "": 1, + "": 120, + "": 120, + "IObservedChange": 5, + "generic": 3, + "interface": 4, + "that": 94, + "replaces": 1, + "the": 260, + "non": 1, + "PropertyChangedEventArgs.": 1, + "Note": 7, + "it": 16, + "used": 19, + "both": 2, + "Changing": 5, + "(": 52, + "i.e.": 23, + ")": 45, + "Changed": 4, + "Observables.": 2, + "In": 6, + "future": 2, + "will": 65, + "be": 57, + "Covariant": 1, + "which": 12, + "allow": 1, + "simpler": 1, + "casting": 1, + "between": 15, + "changes.": 2, + "": 121, + "": 120, + "The": 74, + "object": 42, + "has": 16, + "raised": 1, + "change.": 12, + "name": 7, + "of": 75, + "property": 74, + "changed": 18, + "on": 35, + "Sender.": 1, + "value": 44, + "changed.": 9, + "IMPORTANT": 1, + "NOTE": 1, + "often": 3, + "not": 9, + "set": 41, + "performance": 1, + "reasons": 1, + "unless": 1, + "you": 20, + "have": 17, + "explicitly": 1, + "requested": 1, + "an": 88, + "Observable": 56, + "via": 8, + "method": 34, + "such": 5, + "as": 25, + "ObservableForProperty.": 1, + "To": 4, + "retrieve": 3, + "use": 5, + "Value": 3, + "extension": 2, + "method.": 2, + "IReactiveNotifyPropertyChanged": 6, + "represents": 4, + "extended": 1, + "version": 3, + "INotifyPropertyChanged": 1, + "also": 17, + "exposes": 1, + "IEnableLogger": 1, + "dummy": 1, + "attaching": 1, + "any": 11, + "class": 11, + "give": 1, + "access": 3, + "Log": 2, + "When": 5, + "called": 5, + "fire": 11, + "change": 26, + "notifications": 22, + "neither": 3, + "traditional": 3, + "nor": 3, + "until": 7, + "return": 11, + "disposed.": 3, + "": 36, + "An": 26, + "when": 38, + "disposed": 4, + "reenables": 3, + "notifications.": 5, + "": 36, + "Represents": 4, + "fires": 6, + "*before*": 2, + "about": 5, + "should": 10, + "duplicate": 2, + "if": 27, + "same": 8, + "multiple": 6, + "times.": 4, + "*after*": 2, + "TSender": 1, + "helper": 5, + "adds": 2, + "typed": 2, + "versions": 2, + "Changed.": 1, + "IReactiveCollection": 3, + "collection": 27, + "can": 11, + "notify": 3, + "its": 4, + "contents": 2, + "are": 13, + "either": 1, + "items": 27, + "added/removed": 1, + "or": 24, + "itself": 2, + "changes": 13, + ".": 20, + "It": 1, + "important": 6, + "implement": 5, + "Changing/Changed": 1, + "from": 12, + "semantically": 3, + "Fires": 14, + "added": 6, + "once": 4, + "per": 2, + "item": 19, + "added.": 4, + "Functions": 2, + "add": 2, + "AddRange": 2, + "provided": 14, + "was": 6, + "before": 8, + "going": 4, + "collection.": 6, + "been": 5, + "removed": 4, + "providing": 20, + "removed.": 4, + "whenever": 18, + "number": 9, + "in": 45, + "new": 10, + "Count.": 4, + "previous": 2, + "Provides": 4, + "Item": 4, + "implements": 8, + "IReactiveNotifyPropertyChanged.": 4, + "only": 18, + "enabled": 8, + "ChangeTrackingEnabled": 2, + "True.": 2, + "Enables": 2, + "ItemChanging": 2, + "ItemChanged": 2, + "properties": 29, + ";": 10, + "implementing": 2, + "rebroadcast": 2, + "through": 3, + "ItemChanging/ItemChanged.": 2, + "T": 1, + "type": 23, + "specified": 7, + "Observables": 4, + "IMessageBus": 1, + "act": 2, + "simple": 2, + "way": 2, + "ViewModels": 3, + "other": 9, + "objects": 4, + "communicate": 2, + "each": 7, + "loosely": 2, + "coupled": 2, + "way.": 2, + "Specifying": 2, + "messages": 22, + "go": 2, + "where": 4, + "done": 2, + "combination": 2, + "Type": 9, + "message": 30, + "well": 2, + "additional": 3, + "parameter": 6, + "unique": 12, + "string": 13, + "distinguish": 12, + "arbitrarily": 2, + "by": 13, + "client.": 2, + "Listen": 4, + "provides": 6, + "Message": 2, + "RegisterMessageSource": 4, + "SendMessage.": 2, + "": 12, + "listen": 6, + "to.": 7, + "": 12, + "": 84, + "A": 19, + "identical": 11, + "types": 10, + "one": 27, + "purpose": 10, + "leave": 10, + "null.": 10, + "": 83, + "Determins": 2, + "particular": 2, + "registered.": 2, + "message.": 1, + "True": 6, + "posted": 3, + "Type.": 2, + "Registers": 3, + "representing": 20, + "stream": 7, + "send.": 4, + "Another": 2, + "part": 2, + "code": 4, + "then": 3, + "call": 5, + "Observable.": 6, + "subscribed": 2, + "sent": 2, + "out": 4, + "provided.": 5, + "Sends": 2, + "single": 2, + "using": 9, + "contract.": 2, + "Consider": 2, + "instead": 2, + "sending": 2, + "response": 2, + "events.": 2, + "actual": 2, + "send": 3, + "returns": 5, + "current": 10, + "logger": 2, + "allows": 15, + "log": 2, + "attached.": 1, + "data": 1, + "structure": 1, + "representation": 1, + "memoizing": 2, + "cache": 14, + "evaluate": 1, + "function": 13, + "but": 7, + "keep": 1, + "recently": 3, + "evaluated": 1, + "parameters.": 1, + "Since": 1, + "mathematical": 2, + "sense": 1, + "key": 12, + "*always*": 1, + "maps": 1, + "corresponding": 2, + "value.": 2, + "calculation": 8, + "function.": 6, + "returned": 2, + "Constructor": 2, + "whose": 7, + "results": 6, + "want": 2, + "Tag": 1, + "user": 2, + "defined": 1, + "size": 1, + "maintain": 1, + "after": 1, + "old": 1, + "start": 1, + "thrown": 1, + "out.": 1, + "result": 3, + "gets": 1, + "evicted": 2, + "because": 2, + "Invalidate": 2, + "full": 1, + "Evaluates": 1, + "returning": 1, + "cached": 2, + "possible": 1, + "pass": 2, + "optional": 2, + "parameter.": 1, + "Ensure": 1, + "next": 1, + "time": 3, + "queried": 1, + "called.": 1, + "all": 4, + "Returns": 5, + "values": 4, + "currently": 2, + "MessageBus": 3, + "bus.": 1, + "scheduler": 11, + "post": 2, + "RxApp.DeferredScheduler": 2, + "default.": 2, + "Current": 1, + "RxApp": 1, + "global": 1, + "object.": 3, + "ViewModel": 8, + "another": 3, + "s": 1, + "Return": 1, + "instance": 2, + "type.": 3, + "registered": 1, + "ObservableAsPropertyHelper": 6, + "help": 1, + "backed": 1, + "read": 3, + "still": 1, + "created": 2, + "directly": 1, + "more": 16, + "ToProperty": 2, + "ObservableToProperty": 1, + "methods.": 2, + "so": 1, + "output": 1, + "chained": 2, + "example": 2, + "property.": 12, + "Constructs": 4, + "base": 3, + "on.": 6, + "action": 2, + "take": 2, + "typically": 1, + "t": 2, + "bindings": 13, + "null": 4, + "OAPH": 2, + "at": 2, + "startup.": 1, + "initial": 28, + "normally": 6, + "Dispatcher": 3, + "based": 9, + "last": 1, + "Exception": 1, + "steps": 1, + "taken": 1, + "ensure": 3, + "never": 3, + "complete": 1, + "fail.": 1, + "Converts": 2, + "automatically": 3, + "onChanged": 2, + "raise": 2, + "notification.": 2, + "equivalent": 2, + "convenient.": 1, + "Expression": 7, + "initialized": 2, + "backing": 9, + "field": 10, + "ReactiveObject": 11, + "ObservableAsyncMRUCache": 2, + "memoization": 2, + "asynchronous": 4, + "expensive": 2, + "compute": 1, + "MRU": 1, + "fixed": 1, + "limit": 5, + "cache.": 5, + "guarantees": 6, + "given": 11, + "flight": 2, + "subsequent": 1, + "requests": 4, + "wait": 3, + "first": 1, + "empty": 1, + "web": 6, + "image": 1, + "receives": 1, + "two": 1, + "concurrent": 5, + "issue": 2, + "WebRequest": 1, + "does": 1, + "mean": 1, + "request": 3, + "Concurrency": 1, + "limited": 1, + "maxConcurrent": 1, + "too": 1, + "many": 1, + "operations": 6, + "progress": 1, + "further": 1, + "queued": 1, + "slot": 1, + "available.": 1, + "performs": 1, + "asyncronous": 1, + "async": 3, + "CPU": 1, + "Observable.Return": 1, + "may": 1, + "result.": 2, + "*must*": 1, + "equivalently": 1, + "input": 2, + "being": 1, + "memoized": 1, + "calculationFunc": 2, + "depends": 1, + "varables": 1, + "than": 5, + "unpredictable.": 1, + "reached": 2, + "discarded.": 4, + "maximum": 2, + "regardless": 2, + "caches": 2, + "server.": 2, + "clean": 1, + "up": 25, + "manage": 1, + "disk": 1, + "download": 1, + "save": 1, + "temporary": 1, + "folder": 1, + "onRelease": 1, + "delete": 1, + "file.": 1, + "run": 7, + "defaults": 1, + "TaskpoolScheduler": 2, + "Issues": 1, + "fetch": 1, + "operation.": 1, + "operation": 2, + "finishes.": 1, + "If": 6, + "immediately": 3, + "upon": 1, + "subscribing": 1, + "returned.": 2, + "provide": 2, + "synchronous": 1, + "AsyncGet": 1, + "resulting": 1, + "Works": 2, + "like": 2, + "SelectMany": 2, + "memoizes": 2, + "selector": 5, + "calls.": 2, + "addition": 3, + "no": 4, + "selectors": 2, + "running": 4, + "concurrently": 2, + "queues": 2, + "rest.": 2, + "very": 2, + "services": 2, + "avoid": 2, + "potentially": 2, + "spamming": 2, + "server": 2, + "hundreds": 2, + "requests.": 2, + "similar": 3, + "passed": 1, + "SelectMany.": 1, + "similarly": 1, + "ObservableAsyncMRUCache.AsyncGet": 1, + "must": 2, + "sense.": 1, + "flattened": 2, + "selector.": 2, + "overload": 2, + "useful": 2, + "making": 3, + "service": 1, + "several": 1, + "places": 1, + "paths": 1, + "already": 1, + "configured": 1, + "ObservableAsyncMRUCache.": 1, + "notification": 6, + "Attempts": 1, + "expression": 3, + "false": 2, + "expression.": 1, + "entire": 1, + "able": 1, + "followed": 1, + "otherwise": 1, + "Given": 3, + "fully": 3, + "filled": 1, + "SetValueToProperty": 1, + "apply": 3, + "target.property": 1, + "This.GetValue": 1, + "observed": 1, + "onto": 1, + "convert": 2, + "stream.": 3, + "ValueIfNotDefault": 1, + "filters": 1, + "BindTo": 1, + "takes": 1, + "applies": 1, + "Conceptually": 1, + "child": 2, + "without": 1, + "checks.": 1, + "set.": 3, + "x.Foo.Bar.Baz": 1, + "disconnects": 1, + "binding.": 1, + "ReactiveCollection.": 1, + "ReactiveCollection": 1, + "existing": 3, + "list.": 2, + "list": 1, + "populate": 1, + "anything": 2, + "Change": 2, + "Tracking": 2, + "Creates": 3, + "adding": 2, + "completes": 4, + "optionally": 2, + "ensuring": 2, + "delay.": 2, + "withDelay": 2, + "leak": 2, + "Timer.": 2, + "always": 4, + "UI": 2, + "thread.": 3, + "put": 2, + "into": 2, + "populated": 4, + "faster": 2, + "delay": 2, + "Select": 3, + "item.": 3, + "creating": 2, + "collections": 1, + "updated": 1, + "respective": 1, + "Model": 1, + "updated.": 1, + "Collection.Select": 1, + "mirror": 1, + "ObservableForProperty": 14, + "ReactiveObject.": 1, + "unlike": 13, + "Selector": 1, + "classes": 2, + "INotifyPropertyChanged.": 1, + "monitor": 1, + "RaiseAndSetIfChanged": 2, + "Setter": 2, + "write": 2, + "assumption": 4, + "named": 2, + "RxApp.GetFieldNameForPropertyNameFunc.": 2, + "almost": 2, + "keyword.": 2, + "newly": 2, + "intended": 5, + "Silverlight": 2, + "WP7": 1, + "reflection": 1, + "cannot": 1, + "private": 1, + "field.": 1, + "Reference": 1, + "Use": 13, + "custom": 4, + "raiseAndSetIfChanged": 1, + "doesn": 1, + "x": 1, + "x.SomeProperty": 1, + "suffice.": 1, + "RaisePropertyChanging": 2, + "mock": 4, + "scenarios": 4, + "manually": 4, + "fake": 4, + "invoke": 4, + "raisePropertyChanging": 4, + "faking": 4, + "RaisePropertyChanged": 2, + "helps": 1, + "make": 2, + "them": 1, + "compatible": 1, + "Rx.Net.": 1, + "declare": 1, + "initialize": 1, + "derive": 1, + "properties/methods": 1, + "MakeObjectReactiveHelper.": 1, + "InUnitTestRunner": 1, + "attempts": 1, + "determine": 1, + "heuristically": 1, + "unit": 3, + "framework.": 1, + "we": 1, + "determined": 1, + "framework": 1, + "running.": 1, + "GetFieldNameForProperty": 1, + "convention": 2, + "GetFieldNameForPropertyNameFunc.": 1, + "needs": 1, + "found.": 1, + "name.": 1, + "DeferredScheduler": 1, + "schedule": 2, + "work": 2, + "normal": 2, + "mode": 2, + "DispatcherScheduler": 1, + "Unit": 1, + "Test": 1, + "Immediate": 1, + "simplify": 1, + "writing": 1, + "common": 1, + "tests.": 1, + "background": 1, + "modes": 1, + "TPL": 1, + "Task": 1, + "Pool": 1, + "Threadpool": 1, + "Set": 3, + "provider": 1, + "usually": 1, + "entry": 1, + "MessageBus.Current.": 1, + "override": 1, + "naming": 1, + "one.": 1, + "WhenAny": 12, + "observe": 12, + "constructors": 12, + "need": 12, + "setup.": 12, + "": 1, + "": 1 + }, + "XProc": { + "": 1, + "version=": 2, + "encoding=": 1, + "": 1, + "xmlns": 2, + "p=": 1, + "c=": 1, + "": 1, + "port=": 2, + "": 1, + "": 1, + "Hello": 1, + "world": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1 + }, + "XQuery": { + "(": 38, + "-": 486, + "xproc.xqm": 1, + "core": 1, + "xqm": 1, + "contains": 1, + "entry": 2, + "points": 1, + "primary": 1, + "eval": 3, + "step": 5, + "function": 3, + "and": 3, + "control": 1, + "functions.": 1, + ")": 38, + "xquery": 1, + "version": 1, + "encoding": 1, + ";": 25, + "module": 6, + "namespace": 8, + "xproc": 17, + "declare": 24, + "namespaces": 5, + "p": 2, + "c": 1, + "err": 1, + "imports": 1, + "import": 4, + "util": 1, + "at": 4, + "const": 1, + "parse": 8, + "u": 2, + "options": 2, + "boundary": 1, + "space": 1, + "preserve": 1, + "option": 1, + "saxon": 1, + "output": 1, + "functions": 1, + "variable": 13, + "run": 2, + "run#6": 1, + "choose": 1, + "try": 1, + "catch": 1, + "group": 1, + "for": 1, + "each": 1, + "viewport": 1, + "library": 1, + "pipeline": 8, + "list": 1, + "all": 1, + "declared": 1, + "enum": 3, + "{": 5, + "": 1, + "name=": 1, + "ns": 1, + "": 1, + "}": 5, + "": 1, + "": 1, + "point": 1, + "stdin": 1, + "dflag": 1, + "tflag": 1, + "bindings": 2, + "STEP": 3, + "I": 1, + "preprocess": 1, + "let": 6, + "validate": 1, + "explicit": 3, + "AST": 2, + "name": 1, + "type": 1, + "ast": 1, + "element": 1, + "parse/@*": 1, + "sort": 1, + "parse/*": 1, + "II": 1, + "eval_result": 1, + "III": 1, + "serialize": 1, + "return": 2, + "results": 1, + "serialized_result": 2 + }, + "XSLT": { + "": 1, + "version=": 2, + "": 1, + "xmlns": 1, + "xsl=": 1, + "": 1, + "match=": 1, + "": 1, + "": 1, + "

": 1, + "My": 1, + "CD": 1, + "Collection": 1, + "

": 1, + "
": 1, + "fixed": 1, + "LcdColor": 4, + "ci.getContext": 1, + "namespace_re": 1, + "p.push": 2, + "safari": 1, + "parse_eolEscapeSequence": 3, + "ut.getContext": 2, + "514018": 6, + "d.left": 2, + "e.fn.extend": 1, + "this.serializeArray": 1, + "self.agent.addRequest": 1, + "this._emitPending": 1, + "decimalsVisible": 2, + "p.translate": 8, + "wrapper": 1, + "W/.test": 1, + "focusinBubbles": 2, + "eq": 2, + "hasData": 2, + "u180E": 1, + "forms": 1, + "formHook": 3, + "de": 1, + "browserMatch.version": 1, + "this.interval": 1, + "0": 220, + "jsonp": 1, + "//docs.jquery.com/Utilities/jQuery.browser": 1, + "socket.ondata": 3, + "parser.socket.ondata": 1, + "/Content": 1, + "tel": 2, + "isResolved": 3, + "Z.test": 2, + "res._expect_continue": 1, + "parse_singleLineComment": 2, + "e.medium.getHexColor": 1, + "match": 30, + "opportunity": 2, + ".documentElement": 1, + "": 1, + "self._pendings.shift": 1, + "toSource": 1, + ".7475": 2, + "vt": 50, + "this.insertBefore": 1, + "c.fn": 2, + "f.support.boxModel": 4, + "y": 101, + "a.selected": 1, + "continueExpression.test": 1, + "06": 1, + "refuse": 1, + "self.triggerHandler": 2, + "screenX": 4, + "br": 19, + "tt.labelColor.getRgbaColor": 2, + "yt.start": 1, + "i.useOdometer": 2, + "af": 5, + "params": 2, + "matching": 3, + "bold": 1, + "t*.025": 1, + "path": 5, + "k.ownerDocument": 1, + "attrs.id": 1, + "basic": 1, + "firingIndex": 5, + "steelseries.LedColor.GREEN_LED": 2, + ".domManip": 1, + "firstLine": 2, + ".8075*t": 4, + "y.clearRect": 2, + "frag": 13, + "p.shift": 4, + "
": 1, + "border=": 1, + "": 2, + "bgcolor=": 1, + "": 2, + "Artist": 1, + "": 2, + "": 1, + "select=": 3, + "": 2, + "": 1, + "
": 2, + "Title": 1, + "
": 2, + "": 2, + "
": 1, + "": 1, + "": 1, + "": 1, + "": 1 + }, + "Xtend": { + "package": 2, + "example2": 1, + "import": 7, + "org.junit.Test": 2, + "static": 4, + "org.junit.Assert.*": 2, + "class": 4, + "BasicExpressions": 2, + "{": 14, + "@Test": 7, + "def": 7, + "void": 7, + "literals": 5, + "(": 42, + ")": 42, + "//": 11, + "string": 1, + "work": 1, + "with": 2, + "single": 1, + "or": 1, + "double": 2, + "quotes": 1, + "assertEquals": 14, + "number": 1, + "big": 1, + "decimals": 1, + "in": 2, + "this": 1, + "case": 1, + "+": 6, + "*": 1, + "bd": 3, + "boolean": 1, + "true": 1, + "false": 1, + "getClass": 1, + "typeof": 1, + "}": 13, + "collections": 2, + "There": 1, + "are": 1, + "various": 1, + "methods": 2, + "to": 1, + "create": 1, + "and": 1, + "numerous": 1, + "extension": 2, + "which": 1, + "make": 1, + "working": 1, + "them": 1, + "convenient.": 1, + "val": 9, + "list": 1, + "newArrayList": 2, + "list.map": 1, + "[": 9, + "toUpperCase": 1, + "]": 9, + ".head": 1, + "set": 1, + "newHashSet": 1, + "set.filter": 1, + "it": 2, + ".size": 2, + "map": 1, + "newHashMap": 1, + "-": 5, + "map.get": 1, + "controlStructures": 1, + "looks": 1, + "like": 1, + "Java": 1, + "if": 1, + ".length": 1, + "but": 1, + "foo": 1, + "bar": 1, + "Never": 2, + "happens": 3, + "text": 2, + "never": 1, + "s": 1, + "cascades.": 1, + "Object": 1, + "someValue": 2, + "switch": 1, + "Number": 1, + "String": 2, + "loops": 1, + "for": 2, + "loop": 2, + "var": 1, + "counter": 8, + "i": 4, + "..": 1, + "while": 2, + "iterator": 1, + ".iterator": 2, + "iterator.hasNext": 1, + "iterator.next": 1, + "example6": 1, + "java.io.FileReader": 1, + "java.util.Set": 1, + "com.google.common.io.CharStreams.*": 1, + "Movies": 1, + "numberOfActionMovies": 1, + "movies.filter": 2, + "categories.contains": 1, + "yearOfBestMovieFrom80ies": 1, + ".contains": 1, + "year": 2, + ".sortBy": 1, + "rating": 3, + ".last.year": 1, + "sumOfVotesOfTop2": 1, + "long": 2, + "movies": 3, + "movies.sortBy": 1, + ".take": 1, + ".map": 1, + "numberOfVotes": 2, + ".reduce": 1, + "a": 2, + "b": 2, + "|": 2, + "_229": 1, + "new": 2, + "FileReader": 1, + ".readLines.map": 1, + "line": 1, + "segments": 1, + "line.split": 1, + "return": 1, + "Movie": 2, + "segments.next": 4, + "Integer": 1, + "parseInt": 1, + "Double": 1, + "parseDouble": 1, + "Long": 1, + "parseLong": 1, + "segments.toSet": 1, + "@Data": 1, + "title": 1, + "int": 1, + "Set": 1, + "": 1, + "categories": 1 + }, + "YAML": { + "gem": 1, + "-": 16, + "local": 1, + "gen": 1, + "rdoc": 2, + "run": 1, + "tests": 1, + "inline": 1, + "source": 1, + "line": 1, + "numbers": 1, + "gempath": 1, + "/usr/local/rubygems": 1, + "/home/gavin/.rubygems": 1 } }, - "md5": "06f7609bb3a8141f0a98f9ca4e13004a", - "extnames": { - "Ruby": [ - ".pluginspec", - ".rabl", - ".rake", - ".rb", - ".script!" - ], - "Racket": [ - ".scrbl", - ".script!" - ], - "Elm": [ - ".elm" - ], - "Nimrod": [ - ".nim" - ], - "MediaWiki": [ - ".mediawiki" - ], - "Handlebars": [ - ".handlebars", - ".hbs" - ], - "M": [ - ".m" - ], - "TeX": [ - ".cls" - ], - "Haml": [ - ".haml" - ], - "Matlab": [ - ".m" - ], - "Squirrel": [ - ".nut" - ], - "Org": [ - ".org" - ], - "Omgrofl": [ - ".omgrofl" - ], - "XC": [ - ".xc" - ], - "JavaScript": [ - ".js", - ".script!" - ], - "Logtalk": [ - ".lgt" - ], - "Parrot Internal Representation": [ - ".pir" - ], - "FORTRAN": [ - ".f" - ], - "Ecl": [ - ".ecl" - ], - "Gosu": [ - ".gs", - ".gsp", - ".gst", - ".gsx", - ".vark" - ], - "Ioke": [ - ".ik" - ], - "Makefile": [ - ".script!" - ], - "Scala": [ - ".sbt", - ".script!" - ], - "R": [ - ".R", - ".script!" - ], - "edn": [ - ".edn" - ], - "Opa": [ - ".opa" - ], - "CoffeeScript": [ - ".coffee" - ], - "Volt": [ - ".volt" - ], - "JSON": [ - ".json", - ".maxhelp", - ".maxpat" - ], - "Scilab": [ - ".sce", - ".sci", - ".tst" - ], - "Common Lisp": [ - ".lisp" - ], - "Python": [ - ".py", - ".script!" - ], - "Processing": [ - ".pde" - ], - "C++": [ - ".cc", - ".cpp", - ".cu", - ".h", - ".hpp" - ], - "Lasso": [ - ".las", - ".lasso", - ".lasso9", - ".ldml" - ], - "Apex": [ - ".cls" - ], - "Objective-C": [ - ".h", - ".m" - ], - "Max": [ - ".mxt" - ], - "Markdown": [ - ".md" - ], - "Verilog": [ - ".v" - ], - "Monkey": [ - ".monkey" - ], - "Julia": [ - ".jl" - ], - "PowerShell": [ - ".ps1", - ".psm1" - ], - "Rebol": [ - ".r" - ], - "LiveScript": [ - ".ls" - ], - "Xtend": [ - ".xtend" - ], - "OpenCL": [ - ".cl" - ], - "Less": [ - ".less" - ], - "Awk": [ - ".awk" - ], - "Standard ML": [ - ".sig", - ".sml" - ], - "Arduino": [ - ".ino" - ], - "SuperCollider": [ - ".sc", - ".scd" - ], - "Ceylon": [ - ".ceylon" - ], - "CSS": [ - ".css" - ], - "Nu": [ - ".nu", - ".script!" - ], - "RDoc": [ - ".rdoc" - ], - "XQuery": [ - ".xqm" - ], - "Literate CoffeeScript": [ - ".litcoffee" - ], - "AsciiDoc": [ - ".adoc", - ".asc", - ".asciidoc" - ], - "XProc": [ - ".xpl" - ], - "AutoHotkey": [ - ".ahk" - ], - "Parrot Assembly": [ - ".pasm" - ], - "VHDL": [ - ".vhd" - ], - "OCaml": [ - ".eliom", - ".ml" - ], - "Visual Basic": [ - ".cls" - ], - "Shell": [ - ".bash", - ".script!", - ".sh", - ".zsh" - ], - "wisp": [ - ".wisp" - ], - "Dart": [ - ".dart" - ], - "fish": [ - ".fish" - ], - "Slash": [ - ".sl" - ], - "Lua": [ - ".pd_lua" - ], - "Java": [ - ".java" - ], - "MoonScript": [ - ".moon" - ], - "Kotlin": [ - ".kt" - ], - "Groovy": [ - ".gradle", - ".script!" - ], - "Ragel in Ruby Host": [ - ".rl" - ], - "TXL": [ - ".txl" - ], - "Forth": [ - ".forth", - ".fth" - ], - "Erlang": [ - ".erl", - ".escript", - ".script!" - ], - "Pascal": [ - ".dpr" - ], - "GAS": [ - ".s" - ], - "Groovy Server Pages": [ - ".gsp" - ], - "AppleScript": [ - ".applescript" - ], - "TypeScript": [ - ".ts" - ], - "Logos": [ - ".xm" - ], - "COBOL": [ - ".cbl", - ".ccp", - ".cob", - ".cpy" - ], - "Diff": [ - ".patch" - ], - "old-FORTRAN": [ - ".f", - ".~1~" - ], - "Tea": [ - ".tea" - ], - "Scheme": [ - ".sps" - ], - "C": [ - ".c", - ".h" - ], - "ABAP": [ - ".abap" - ], - "Coq": [ - ".v" - ], - "Perl": [ - ".fcgi", - ".pl", - ".pm", - ".script!", - ".t" - ], - "PogoScript": [ - ".pogo" - ], - "GLSL": [ - ".fp", - ".glsl" - ], - "PHP": [ - ".module", - ".php", - ".script!" - ], - "Sass": [ - ".sass", - ".scss" - ], - "Emacs Lisp": [ - ".el" - ], - "Rust": [ - ".rs" - ], - "OpenEdge ABL": [ - ".cls", - ".p" - ], - "XSLT": [ - ".xslt" - ], - "SCSS": [ - ".scss" - ], - "Turing": [ - ".t" - ], - "Prolog": [ - ".pl" - ], - "Nemerle": [ - ".n" - ], - "Creole": [ - ".creole" - ], - "XML": [ - ".ant", - ".ivy", - ".xml" - ], - "NSIS": [ - ".nsh", - ".nsi" - ], - "LFE": [ - ".lfe" - ] - }, "language_tokens": { - "JavaScript": 76934, - "XC": 24, - "Matlab": 11787, - "XQuery": 801, - "C": 58732, - "old-FORTRAN": 9322, - "edn": 227, - "LFE": 1711, - "AsciiDoc": 103, - "TXL": 213, - "Xtend": 399, - "XML": 5622, - "Sass": 56, - "Groovy Server Pages": 91, - "CSS": 43867, - "Logtalk": 36, - "Org": 358, - "Racket": 360, - "Prolog": 4040, - "Arduino": 20, - "Nemerle": 17, - "PogoScript": 250, - "Julia": 247, - "Omgrofl": 57, - "Logos": 93, - "MoonScript": 1718, - "Parrot Assembly": 6, - "JSON": 619, - "Ioke": 2, - "Ruby": 3854, - "GAS": 133, - "XProc": 22, - "ApacheConf": 1449, - "Less": 39, - "Rust": 3566, - "Parrot Internal Representation": 5, - "M": 23373, - "Lua": 724, - "VHDL": 42, - "Creole": 134, - "Tea": 3, - "LiveScript": 123, - "Verilog": 3778, - "VimL": 20, - "AppleScript": 1862, - "XSLT": 44, - "Forth": 1516, - "Nu": 116, - "Java": 8987, - "Monkey": 207, - "TeX": 1155, - "Emacs Lisp": 1756, - "Scheme": 3478, - "TypeScript": 109, - "Groovy": 69, - "SuperCollider": 268, - "Scala": 420, - "Kotlin": 155, - "Ceylon": 50, - "Markdown": 1, - "Scilab": 69, - "Volt": 388, - "PHP": 20724, - "Ragel in Ruby Host": 593, - "wisp": 1363, - "AutoHotkey": 3, - "Rebol": 11, - "Nimrod": 1, - "Elm": 628, - "Nginx": 179, - "Haml": 4, - "Perl": 17497, - "Coq": 18259, - "PowerShell": 12, - "Opa": 28, - "Max": 136, - "FORTRAN": 1980, - "MediaWiki": 766, - "Diff": 16, - "GLSL": 3766, - "Erlang": 2928, - "Literate CoffeeScript": 275, - "Makefile": 50, - "Gosu": 413, - "Processing": 74, - "Dart": 68, - "Ecl": 281, "ABAP": 1500, - "COBOL": 90, - "Turing": 44, - "RDoc": 279, - "Standard ML": 243, - "Objective-C": 26518, - "Python": 5715, - "Common Lisp": 103, - "YAML": 30, - "Pascal": 30, - "INI": 27, - "OpenCL": 144, - "CoffeeScript": 2951, - "Squirrel": 130, - "OpenEdge ABL": 762, - "Visual Basic": 345, - "Awk": 544, - "C++": 21480, - "Slash": 187, - "fish": 636, - "Shell": 3744, - "OCaml": 382, - "SCSS": 39, - "Lasso": 9849, - "R": 175, + "ApacheConf": 1449, "Apex": 4408, + "AppleScript": 1862, + "Arduino": 20, + "AutoHotkey": 3, + "Awk": 544, + "Bluespec": 1298, + "C": 58768, + "C++": 21480, + "Ceylon": 50, + "COBOL": 90, + "CoffeeScript": 2951, + "Common Lisp": 103, + "Coq": 18259, + "CSS": 43867, + "Dart": 68, + "Diff": 16, + "Ecl": 281, + "edn": 227, + "Elm": 628, + "Emacs Lisp": 1756, + "Erlang": 2928, + "fish": 636, + "Forth": 1516, + "GAS": 133, + "GLSL": 3766, + "Gosu": 413, + "Groovy": 69, + "Groovy Server Pages": 91, + "Haml": 4, + "Handlebars": 69, + "INI": 27, + "Ioke": 2, + "Java": 8987, + "JavaScript": 76934, + "JSON": 619, + "Julia": 247, + "Kotlin": 155, + "Lasso": 9849, + "Less": 39, + "LFE": 1711, + "Literate CoffeeScript": 275, + "LiveScript": 123, + "Logos": 93, + "Logtalk": 36, + "Lua": 724, + "M": 23373, + "Makefile": 50, + "Markdown": 1, + "Matlab": 11787, + "Max": 136, + "Monkey": 207, + "MoonScript": 1718, + "Nemerle": 17, + "Nginx": 179, + "Nimrod": 1, "NSIS": 725, - "Handlebars": 69 + "Nu": 116, + "Objective-C": 26518, + "OCaml": 382, + "Omgrofl": 57, + "Opa": 28, + "OpenCL": 144, + "OpenEdge ABL": 762, + "Parrot Assembly": 6, + "Parrot Internal Representation": 5, + "Pascal": 30, + "Perl": 17497, + "PHP": 20724, + "PogoScript": 250, + "PowerShell": 12, + "Processing": 74, + "Prolog": 4040, + "Python": 5715, + "R": 175, + "Racket": 360, + "Ragel in Ruby Host": 593, + "Rebol": 11, + "Ruby": 3854, + "Rust": 3566, + "Sass": 56, + "Scala": 420, + "Scheme": 3478, + "Scilab": 69, + "SCSS": 39, + "Shell": 3744, + "Slash": 187, + "Squirrel": 130, + "Standard ML": 243, + "SuperCollider": 268, + "Tea": 3, + "TeX": 1155, + "Turing": 44, + "TXL": 213, + "TypeScript": 109, + "Verilog": 3778, + "VHDL": 42, + "VimL": 20, + "Visual Basic": 345, + "Volt": 388, + "wisp": 1363, + "XC": 24, + "XML": 5622, + "XProc": 22, + "XQuery": 801, + "XSLT": 44, + "Xtend": 399, + "YAML": 30 }, - "tokens_total": 426831 + "languages": { + "ABAP": 1, + "ApacheConf": 3, + "Apex": 6, + "AppleScript": 7, + "Arduino": 1, + "AutoHotkey": 1, + "Awk": 1, + "Bluespec": 2, + "C": 25, + "C++": 20, + "Ceylon": 1, + "COBOL": 4, + "CoffeeScript": 9, + "Common Lisp": 1, + "Coq": 12, + "CSS": 2, + "Dart": 1, + "Diff": 1, + "Ecl": 1, + "edn": 1, + "Elm": 3, + "Emacs Lisp": 2, + "Erlang": 5, + "fish": 3, + "Forth": 7, + "GAS": 1, + "GLSL": 3, + "Gosu": 5, + "Groovy": 2, + "Groovy Server Pages": 4, + "Haml": 1, + "Handlebars": 2, + "INI": 2, + "Ioke": 1, + "Java": 6, + "JavaScript": 20, + "JSON": 5, + "Julia": 1, + "Kotlin": 1, + "Lasso": 4, + "Less": 1, + "LFE": 4, + "Literate CoffeeScript": 1, + "LiveScript": 1, + "Logos": 1, + "Logtalk": 1, + "Lua": 3, + "M": 28, + "Makefile": 2, + "Markdown": 1, + "Matlab": 37, + "Max": 1, + "Monkey": 1, + "MoonScript": 1, + "Nemerle": 1, + "Nginx": 1, + "Nimrod": 1, + "NSIS": 2, + "Nu": 2, + "Objective-C": 19, + "OCaml": 2, + "Omgrofl": 1, + "Opa": 2, + "OpenCL": 2, + "OpenEdge ABL": 5, + "Parrot Assembly": 1, + "Parrot Internal Representation": 1, + "Pascal": 1, + "Perl": 14, + "PHP": 9, + "PogoScript": 1, + "PowerShell": 2, + "Processing": 1, + "Prolog": 6, + "Python": 7, + "R": 2, + "Racket": 3, + "Ragel in Ruby Host": 3, + "Rebol": 1, + "Ruby": 16, + "Rust": 1, + "Sass": 2, + "Scala": 3, + "Scheme": 1, + "Scilab": 3, + "SCSS": 1, + "Shell": 37, + "Slash": 1, + "Squirrel": 1, + "Standard ML": 2, + "SuperCollider": 2, + "Tea": 1, + "TeX": 1, + "Turing": 1, + "TXL": 1, + "TypeScript": 3, + "Verilog": 13, + "VHDL": 1, + "VimL": 2, + "Visual Basic": 1, + "Volt": 1, + "wisp": 1, + "XC": 1, + "XML": 3, + "XProc": 1, + "XQuery": 1, + "XSLT": 1, + "Xtend": 2, + "YAML": 1 + }, + "md5": "b4a3a57fb23d04d031c0a6976ae4ffbc" } \ No newline at end of file diff --git a/samples/C/syscalldefs.h b/samples/C/syscalldefs.h new file mode 100644 index 00000000..a29c867e --- /dev/null +++ b/samples/C/syscalldefs.h @@ -0,0 +1,5 @@ +static const syscalldef syscalldefs[] = { + [SYSCALL_OR_NUM(0, SYS_restart_syscall)] = MAKE_UINT16(0, 1), + [SYSCALL_OR_NUM(1, SYS_exit)] = MAKE_UINT16(1, 17), + [SYSCALL_OR_NUM(2, SYS_fork)] = MAKE_UINT16(0, 22), +}; From 81176f8dfac4d8de21d4eb723f12041b25a63416 Mon Sep 17 00:00:00 2001 From: Ted Nyman Date: Mon, 4 Nov 2013 19:14:34 -0800 Subject: [PATCH 180/184] Add generated JNI detection, update samples --- lib/linguist/generated.rb | 14 ++++++++- lib/linguist/samples.json | 54 ++++++++++++++++++++++------------ samples/C/jni_layer.h | 61 +++++++++++++++++++++++++++++++++++++++ test/test_blob.rb | 3 ++ 4 files changed, 112 insertions(+), 20 deletions(-) create mode 100644 samples/C/jni_layer.h diff --git a/lib/linguist/generated.rb b/lib/linguist/generated.rb index 424ffbec..db591ae0 100644 --- a/lib/linguist/generated.rb +++ b/lib/linguist/generated.rb @@ -58,7 +58,8 @@ module Linguist generated_parser? || generated_net_docfile? || generated_net_designer_file? || - generated_protocol_buffer? + generated_protocol_buffer? || + generated_jni_header? end # Internal: Is the blob an XCode project file? @@ -181,5 +182,16 @@ module Linguist return lines[0].include?("Generated by the protocol buffer compiler. DO NOT EDIT!") end + + # Internal: Is the blob a C/C++ header generated by the Java JNI tool javah? + # + # Returns true of false. + def generated_jni_header? + return false unless extname == '.h' + return false unless lines.count > 2 + + return lines[0].include?("/* DO NOT EDIT THIS FILE - it is machine generated */") + return lines[1].include?("#include ") + end end end diff --git a/lib/linguist/samples.json b/lib/linguist/samples.json index 1a568173..32d17697 100644 --- a/lib/linguist/samples.json +++ b/lib/linguist/samples.json @@ -424,8 +424,8 @@ ".gemrc" ] }, - "tokens_total": 415223, - "languages_total": 457, + "tokens_total": 415313, + "languages_total": 458, "tokens": { "ABAP": { "*/**": 1, @@ -2110,19 +2110,19 @@ "preempts": 1 }, "C": { - "#include": 149, + "#include": 150, "const": 358, "char": 529, "*blob_type": 2, - ";": 5440, + ";": 5446, "struct": 359, "blob": 6, "*lookup_blob": 2, - "(": 6219, + "(": 6225, "unsigned": 140, "*sha1": 16, - ")": 6221, - "{": 1529, + ")": 6227, + "{": 1530, "object": 10, "*obj": 9, "lookup_object": 2, @@ -2139,22 +2139,22 @@ "sha1_to_hex": 8, "typename": 2, "NULL": 330, - "}": 1545, - "*": 253, + "}": 1546, + "*": 259, "int": 446, "parse_blob_buffer": 2, "*item": 10, - "void": 279, + "void": 284, "*buffer": 6, "long": 105, "size": 120, "item": 24, "object.parsed": 4, - "#ifndef": 84, + "#ifndef": 85, "BLOB_H": 2, - "#define": 911, - "extern": 37, - "#endif": 236, + "#define": 912, + "extern": 38, + "#endif": 239, "git_cache_init": 1, "git_cache": 4, "*cache": 4, @@ -2487,7 +2487,7 @@ "": 1, "": 1, "": 1, - "#ifdef": 64, + "#ifdef": 66, "CONFIG_SMP": 1, "DEFINE_MUTEX": 1, "cpu_add_remove_lock": 3, @@ -3536,7 +3536,7 @@ "paused": 3, "HPE_PAUSED": 2, "http_parser_h": 2, - "__cplusplus": 18, + "__cplusplus": 20, "HTTP_PARSER_VERSION_MAJOR": 1, "HTTP_PARSER_VERSION_MINOR": 1, "": 2, @@ -3627,6 +3627,22 @@ "*http_method_str": 1, "*http_errno_name": 1, "*http_errno_description": 1, + "": 1, + "_Included_jni_JniLayer": 2, + "JNIEXPORT": 6, + "jlong": 6, + "JNICALL": 6, + "Java_jni_JniLayer_jni_1layer_1initialize": 1, + "JNIEnv": 6, + "jobject": 6, + "jintArray": 1, + "jint": 7, + "Java_jni_JniLayer_jni_1layer_1mainloop": 1, + "Java_jni_JniLayer_jni_1layer_1set_1button": 1, + "Java_jni_JniLayer_jni_1layer_1set_1analog": 1, + "jfloat": 1, + "Java_jni_JniLayer_jni_1layer_1report_1analog_1chg": 1, + "Java_jni_JniLayer_jni_1layer_1kill": 1, "strncasecmp": 2, "_strnicmp": 1, "REF_TABLE_SIZE": 1, @@ -41512,7 +41528,7 @@ "AutoHotkey": 3, "Awk": 544, "Bluespec": 1298, - "C": 58768, + "C": 58858, "C++": 21480, "Ceylon": 50, "COBOL": 90, @@ -41623,7 +41639,7 @@ "AutoHotkey": 1, "Awk": 1, "Bluespec": 2, - "C": 25, + "C": 26, "C++": 20, "Ceylon": 1, "COBOL": 4, @@ -41725,5 +41741,5 @@ "Xtend": 2, "YAML": 1 }, - "md5": "b4a3a57fb23d04d031c0a6976ae4ffbc" + "md5": "e1daa29f986e203ade56a02091d24c99" } \ No newline at end of file diff --git a/samples/C/jni_layer.h b/samples/C/jni_layer.h new file mode 100644 index 00000000..ededf805 --- /dev/null +++ b/samples/C/jni_layer.h @@ -0,0 +1,61 @@ +/* DO NOT EDIT THIS FILE - it is machine generated */ +#include +/* Header for class jni_JniLayer */ + +#ifndef _Included_jni_JniLayer +#define _Included_jni_JniLayer +#ifdef __cplusplus +extern "C" { +#endif +/* + * Class: jni_JniLayer + * Method: jni_layer_initialize + * Signature: ([II)J + */ +JNIEXPORT jlong JNICALL Java_jni_JniLayer_jni_1layer_1initialize + (JNIEnv *, jobject, jintArray, jint, jint); + +/* + * Class: jni_JniLayer + * Method: jni_layer_mainloop + * Signature: (J)V + */ +JNIEXPORT void JNICALL Java_jni_JniLayer_jni_1layer_1mainloop + (JNIEnv *, jobject, jlong); + +/* + * Class: jni_JniLayer + * Method: jni_layer_set_button + * Signature: (JII)V + */ +JNIEXPORT void JNICALL Java_jni_JniLayer_jni_1layer_1set_1button + (JNIEnv *, jobject, jlong, jint, jint); + +/* + * Class: jni_JniLayer + * Method: jni_layer_set_analog + * Signature: (JIIF)V + */ +JNIEXPORT void JNICALL Java_jni_JniLayer_jni_1layer_1set_1analog + (JNIEnv *, jobject, jlong, jint, jint, jfloat); + +/* + * Class: jni_JniLayer + * Method: jni_layer_report_analog_chg + * Signature: (JI)V + */ +JNIEXPORT void JNICALL Java_jni_JniLayer_jni_1layer_1report_1analog_1chg + (JNIEnv *, jobject, jlong, jint); + +/* + * Class: jni_JniLayer + * Method: jni_layer_kill + * Signature: (J)V + */ +JNIEXPORT void JNICALL Java_jni_JniLayer_jni_1layer_1kill + (JNIEnv *, jobject, jlong); + +#ifdef __cplusplus +} +#endif +#endif diff --git a/test/test_blob.rb b/test/test_blob.rb index 325ab125..a930c555 100644 --- a/test/test_blob.rb +++ b/test/test_blob.rb @@ -198,6 +198,9 @@ class TestBlob < Test::Unit::TestCase assert blob("Java/ProtocolBuffer.java").generated? assert blob("Python/protocol_buffer_pb2.py").generated? + # Generated JNI + assert blob("C/jni_layer.h").generated? + # Minified CSS assert !blob("CSS/bootstrap.css").generated? assert blob("CSS/bootstrap.min.css").generated? From de7ca0d9540ef6c745d76ab6bdfc9aff641bdec2 Mon Sep 17 00:00:00 2001 From: Ted Nyman Date: Mon, 4 Nov 2013 19:24:32 -0800 Subject: [PATCH 181/184] Ignore files under thirdparty/ --- lib/linguist/vendor.yml | 1 + test/test_blob.rb | 3 +++ 2 files changed, 4 insertions(+) diff --git a/lib/linguist/vendor.yml b/lib/linguist/vendor.yml index c87e5294..b1936ab1 100644 --- a/lib/linguist/vendor.yml +++ b/lib/linguist/vendor.yml @@ -31,6 +31,7 @@ - (^|/)bootstrap([^.]*)(\.min)\.(js|css)$ # Vendored dependencies +- thirdparty/ - vendors?/ # Debian packaging diff --git a/test/test_blob.rb b/test/test_blob.rb index a930c555..3af263c7 100644 --- a/test/test_blob.rb +++ b/test/test_blob.rb @@ -216,6 +216,9 @@ class TestBlob < Test::Unit::TestCase # Rails vendor/ assert blob("vendor/plugins/will_paginate/lib/will_paginate.rb").vendored? + # 'thirdparty' directory + assert blob("thirdparty/lib/main.c").vendored? + # C deps assert blob("deps/http_parser/http_parser.c").vendored? assert blob("deps/v8/src/v8.h").vendored? From ecacbc937b8677f0c0556e2d7ebf918f86f367e6 Mon Sep 17 00:00:00 2001 From: Ted Nyman Date: Mon, 4 Nov 2013 19:34:30 -0800 Subject: [PATCH 182/184] Remove ace mode --- lib/linguist/languages.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 1f65e5ea..9ff464d2 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -1091,7 +1091,6 @@ Prolog: Protocol Buffer: type: markup - ace_mode: protobuf aliases: - protobuf - Protocol Buffers From 8aac009b0058355385bcfb469719e3eac86d83f7 Mon Sep 17 00:00:00 2001 From: Ted Nyman Date: Mon, 4 Nov 2013 19:49:54 -0800 Subject: [PATCH 183/184] Add more xquery extensions --- lib/linguist/languages.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index e9f9f691..2e10206a 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -1534,6 +1534,8 @@ XQuery: primary_extension: .xquery extensions: - .xq + - .xql + - .xqm - .xqy XS: From fdddffe04162dcc925d0a8692b2f5d261429f822 Mon Sep 17 00:00:00 2001 From: Ted Nyman Date: Mon, 4 Nov 2013 20:27:46 -0800 Subject: [PATCH 184/184] Just .g4 for now --- lib/linguist/languages.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index a2ae3541..060b0d19 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -33,7 +33,7 @@ ANTLR: type: programming color: "#9DC3FF" lexer: ANTLR - primary_extension: .g + primary_extension: .g4 ASP: type: programming