diff --git a/gitgalaxy/standards/language_standards/languages/shell.py b/gitgalaxy/standards/language_standards/languages/shell.py index c998b46f9..13ccc9a35 100644 --- a/gitgalaxy/standards/language_standards/languages/shell.py +++ b/gitgalaxy/standards/language_standards/languages/shell.py @@ -209,15 +209,28 @@ # 22. scientific (Numerical / Compute Libraries) "scientific": re.compile(r"\b(bc|awk|dc|expr|jq|RANDOM|SRANDOM)\b|\$\(\("), # 23. heat_triggers (Metaprogramming & Reflection) - # Sub-languages and indirect expansion. (ReDoS Shielded) - # QUADRATIC BLOWUP + NESTING FIX: `$(...)`'s flat `[^)]+` was - # unbounded and unanchored -- O(n^2) on a long run of unclosed - # `$(` (confirmed ~4x slowdown per input-size doubling). Upgraded - # to the one-level-nesting form so the common nested command - # substitution idiom (e.g. `DIR=$(cd "$(dirname "$0")" && pwd)`) - # is captured in full instead of truncating at the inner `)`. + # Sub-languages and indirect expansion -- the code whose behaviour is + # decided at runtime by a name, not written in the file. (ReDoS Shielded) + # VOCABULARY LEAK FIX (#2722): two alternatives counted ordinary shell + # as dynamism. (a) `\$\{!?...\}` made the indirection marker OPTIONAL, + # so plain `${var}` matched -- 4,117 of the crucible's 4,863 shell hits + # (85%) were variable expansions, while `${!var}` itself never occurs. + # (b) `$(...)` and backticks counted every command substitution, one per + # 33 lines of real shell: running a program yields data, not code, and no + # other language's rule counts invocation (python's does not fire on + # `subprocess.run`). Both dropped. `eval` is now unanchored -- the old + # `\beval\s+\$` missed `eval "$cmd"` -- and namerefs plus `source`/`.` + # of a computed path are added, which is what dynamic dispatch in shell + # actually looks like. Since #2719 this count IS the file's dynamism, + # read by documentation risk and cognitive load, so the leak was + # structural rather than cosmetic. "reflection_metaprogramming": re.compile( - r'\$\((?:[^()]|\([^()]*\))+\)|`[^`]+`|\b(?:awk|sed|perl|python[23]?|ruby)\s+[\'"][^\'"]{0,500}|\beval\s+\$|\$\{!?[a-zA-Z0-9_]+\}' + r"\beval\b" + r"|\$\{![a-zA-Z0-9_]+\}" + r"|\b(?:declare|typeset|local)[ \t]+-n\b" + r"|(?:^|[ \t;|&])(?:source\b|\.(?=[ \t]))[ \t]+[\"']?\$" + r"|\b(?:awk|sed|perl|python[23]?|ruby)\s+['\"][^'\"]{0,500}", + re.M, ), # 24. import (Dependency Inclusions) "import": re.compile(r"(?:^|[ \t;|&])(?:source\b|\.(?=[ \t]))[ \t]+[^\s;]+", re.M), diff --git a/tests/extraction/languages/test_shell_strict.py b/tests/extraction/languages/test_shell_strict.py index 4b3e6225c..629b17eb4 100644 --- a/tests/extraction/languages/test_shell_strict.py +++ b/tests/extraction/languages/test_shell_strict.py @@ -102,7 +102,7 @@ def test_shell_state_mutation_arithmetic_redos_immunity(): ("globals", "echo $HOME", "echo $myvar"), ("comprehensions", "for i in {1..10}; do", "for i in 1 2 3; do"), ("scientific", "result=$(( 1 + 2 ))", "result=1"), - ("reflection_metaprogramming", "output=$(date)", "output=static"), + ("reflection_metaprogramming", 'eval "$cmd"', "output=$(date)"), ("import", "source ./lib.sh", "echo lib.sh"), ("ownership", "# Author: Jane Doe", "# just a note"), # --- PHASE 4 --- @@ -188,8 +188,9 @@ def test_shell_lexical_family_no_block_terminator_state_to_confuse(): payload -- there is nothing for a stray `}`/`fi` to falsely "close". The one place shell rules DO track a nesting depth is delimiter matching for `$(...)`, `<(...)`/`>(...)`, and `${...}` (safety, - concurrency, reflection_metaprogramming) -- covered by the dedicated - nested-delimiter regression tests below, not by comment-state tracking. + concurrency) -- covered by the dedicated nested-delimiter regression + tests below, not by comment-state tracking. (reflection_metaprogramming + used to be in that list; #2722 dropped command substitution from it.) """ branch = SHELL_RULES["branch"] heredoc_body_with_fi = "cat < {m.group()!r}" + + +def test_shell_reflection_metaprogramming_redos_immunity(): + """ + ReDoS coverage for the rule's surviving alternatives (#2722). + + The historical bug was `$(...)`'s flat `[^)]+`: unbounded and unanchored, + quadratic on a long run of unclosed `$(` (confirmed ~4x per doubling at + n=2k/4k/8k/16k/32k, e.g. 0.006s/0.024s/0.094s/0.38s/1.5s). That + alternative no longer exists, so the input that provoked it is now + asserted to be immune *and* unmatched, and the check moves to the + alternatives that are still here: the unclosed indirect expansion + `${!`, the computed `source $`, and the inline sub-language program, + whose string run is bounded at {0,500}. """ pattern = SHELL_RULES["reflection_metaprogramming"] + assert_redos_immune(pattern, "${!" * 20000, timeout_sec=3.0) + assert_redos_immune(pattern, "source $" * 20000, timeout_sec=3.0) + assert_redos_immune(pattern, "awk '" + "a" * 100000, timeout_sec=3.0) assert_redos_immune(pattern, "$(" * 20000, timeout_sec=3.0) - assert pattern.search("echo $(date)") + assert pattern.search("echo ${!ref}") + assert not pattern.search("echo $(date)") def test_shell_spec_exposure_redos_immunity(): diff --git a/tests/golden_master_audit.json b/tests/golden_master_audit.json index e7437cdd5..a1705d7b5 100644 --- a/tests/golden_master_audit.json +++ b/tests/golden_master_audit.json @@ -12,8 +12,8 @@ }, "Target Root Name": "data", "Absolute Project Path": "/home/joe/nyx_projects/language-crucible/data", - "Analysis ISO Timestamp": "2026-09-04T16:24:36.145975+00:00", - "Total Scan Duration": "49.34 seconds" + "Analysis ISO Timestamp": "2026-09-04T17:02:13.667014+00:00", + "Total Scan Duration": "50.19 seconds" }, "Source Control Footprint (Immutable Anchor)": { "Active Branch": "HEAD", @@ -236,10 +236,10 @@ } }, "health": { - "avg_cognitive_load": 23.504, + "avg_cognitive_load": 22.578, "avg_safety_score": 45.662, "avg_tech_debt": 28.878, - "avg_documentation": 10.175 + "avg_documentation": 9.677 }, "composition": { "markdown": { @@ -1724,7 +1724,7 @@ "file_count": 20, "total_mass": 790.32, "avg_exposures": { - "cognitive_load": 55.28, + "cognitive_load": 39.01, "safety_score": 79.38, "tech_debt": 7.99, "verification": 13.97, @@ -1743,7 +1743,7 @@ "file_count": 13, "total_mass": 458.2, "avg_exposures": { - "cognitive_load": 36.36, + "cognitive_load": 30.69, "safety_score": 64.63, "tech_debt": 0.0, "verification": 8.24, @@ -2902,7 +2902,7 @@ "file_count": 15, "total_mass": 60218.62, "avg_exposures": { - "cognitive_load": 71.8, + "cognitive_load": 46.87, "safety_score": 86.69, "tech_debt": 4.31, "verification": 59.2, @@ -2913,7 +2913,7 @@ "spec_match": 60.0, "stability": 46.67, "churn": 0.0, - "documentation": 29.54, + "documentation": 24.41, "secrets_risk": 0.0 } }, @@ -3529,7 +3529,7 @@ "file_count": 14, "total_mass": 624.28, "avg_exposures": { - "cognitive_load": 30.53, + "cognitive_load": 18.16, "safety_score": 29.42, "tech_debt": 11.99, "verification": 13.29, @@ -3540,7 +3540,7 @@ "spec_match": 14.29, "stability": 46.43, "churn": 0.0, - "documentation": 29.06, + "documentation": 13.61, "secrets_risk": 0.0 } }, @@ -3548,7 +3548,7 @@ "file_count": 9, "total_mass": 2059.32, "avg_exposures": { - "cognitive_load": 28.16, + "cognitive_load": 27.38, "safety_score": 35.08, "tech_debt": 37.32, "verification": 28.06, @@ -3559,7 +3559,7 @@ "spec_match": 77.78, "stability": 44.44, "churn": 0.0, - "documentation": 14.19, + "documentation": 5.87, "secrets_risk": 0.0 } }, @@ -3567,7 +3567,7 @@ "file_count": 20, "total_mass": 2457.48, "avg_exposures": { - "cognitive_load": 49.86, + "cognitive_load": 42.63, "safety_score": 47.99, "tech_debt": 8.95, "verification": 6.29, @@ -3578,7 +3578,7 @@ "spec_match": 25.0, "stability": 47.5, "churn": 0.0, - "documentation": 15.1, + "documentation": 8.02, "secrets_risk": 0.0 } }, @@ -3586,7 +3586,7 @@ "file_count": 23, "total_mass": 1005.38, "avg_exposures": { - "cognitive_load": 34.62, + "cognitive_load": 26.08, "safety_score": 76.09, "tech_debt": 0.0, "verification": 15.87, @@ -3605,7 +3605,7 @@ "file_count": 15, "total_mass": 615.66, "avg_exposures": { - "cognitive_load": 50.35, + "cognitive_load": 35.78, "safety_score": 58.91, "tech_debt": 8.21, "verification": 7.35, @@ -4251,7 +4251,7 @@ "file_count": 11, "total_mass": 3975.78, "avg_exposures": { - "cognitive_load": 26.53, + "cognitive_load": 25.34, "safety_score": 51.88, "tech_debt": 17.79, "verification": 23.6, @@ -4555,7 +4555,7 @@ "file_count": 17, "total_mass": 2469.34, "avg_exposures": { - "cognitive_load": 60.15, + "cognitive_load": 47.0, "safety_score": 88.36, "tech_debt": 2.42, "verification": 34.39, @@ -4566,7 +4566,7 @@ "spec_match": 41.18, "stability": 50.0, "churn": 0.0, - "documentation": 14.5, + "documentation": 4.87, "secrets_risk": 0.0 } }, @@ -4574,7 +4574,7 @@ "file_count": 6, "total_mass": 994.12, "avg_exposures": { - "cognitive_load": 74.57, + "cognitive_load": 59.64, "safety_score": 90.33, "tech_debt": 33.22, "verification": 41.22, @@ -4585,7 +4585,7 @@ "spec_match": 66.67, "stability": 50.0, "churn": 0.0, - "documentation": 19.48, + "documentation": 8.97, "secrets_risk": 0.0 } }, @@ -4593,7 +4593,7 @@ "file_count": 24, "total_mass": 1469.34, "avg_exposures": { - "cognitive_load": 47.38, + "cognitive_load": 38.06, "safety_score": 79.55, "tech_debt": 0.0, "verification": 21.86, @@ -4604,7 +4604,7 @@ "spec_match": 25.0, "stability": 50.0, "churn": 0.0, - "documentation": 4.12, + "documentation": 2.89, "secrets_risk": 0.0 } }, @@ -4612,7 +4612,7 @@ "file_count": 23, "total_mass": 6013.0, "avg_exposures": { - "cognitive_load": 49.35, + "cognitive_load": 37.23, "safety_score": 51.31, "tech_debt": 53.45, "verification": 9.23, @@ -4623,7 +4623,7 @@ "spec_match": 52.17, "stability": 50.0, "churn": 0.0, - "documentation": 27.05, + "documentation": 10.26, "secrets_risk": 0.0 } }, @@ -4631,7 +4631,7 @@ "file_count": 13, "total_mass": 2036.02, "avg_exposures": { - "cognitive_load": 71.16, + "cognitive_load": 58.26, "safety_score": 74.07, "tech_debt": 15.61, "verification": 38.24, @@ -4642,7 +4642,7 @@ "spec_match": 61.54, "stability": 50.0, "churn": 0.0, - "documentation": 12.26, + "documentation": 2.89, "secrets_risk": 0.0 } }, @@ -4650,7 +4650,7 @@ "file_count": 23, "total_mass": 633.94, "avg_exposures": { - "cognitive_load": 20.82, + "cognitive_load": 16.56, "safety_score": 76.32, "tech_debt": 44.79, "verification": 5.76, @@ -4661,7 +4661,7 @@ "spec_match": 65.22, "stability": 50.0, "churn": 0.0, - "documentation": 11.55, + "documentation": 5.94, "secrets_risk": 0.0 } }, @@ -6082,19 +6082,19 @@ "cognitive_load": { "highest": [ { - "name": "make-include.sh", - "path": "shell/curl/make-include.sh", + "name": "coroutine.lua", + "path": "lua/cosmopolitan/coroutine.lua", "value": 100.0 }, { - "name": "release.sh", - "path": "shell/kubernetes/release.sh", - "value": 100.0 + "name": "tests.rs", + "path": "rust/tokio/tests.rs", + "value": 99.9912 }, { - "name": "support.sh", - "path": "shell/moby/support.sh", - "value": 100.0 + "name": "big.lua", + "path": "lua/cosmopolitan/big.lua", + "value": 99.9869 } ], "lowest": [ @@ -6694,9 +6694,9 @@ "undocumented_critical_path": [ { "path": "shell/kubernetes/config-common.sh", - "score": 282.088, + "score": 278.409, "pr": 2.821, - "doc": 99.9958 + "doc": 98.6916 }, { "path": "groovy/gradle/DefaultTask.java", @@ -6704,12 +6704,6 @@ "pr": 1.973, "doc": 99.7564 }, - { - "path": "shell/serenity/builtin.sh", - "score": 192.239, - "pr": 3.557, - "doc": 54.0452 - }, { "path": "javascript/jquery/core.js", "score": 189.151, @@ -6721,6 +6715,12 @@ "score": 141.984, "pr": 1.443, "doc": 98.3949 + }, + { + "path": "zig/zig/Type.zig", + "score": 137.39, + "pr": 1.696, + "doc": 81.0081 } ] }, @@ -6736,11 +6736,6 @@ "path": "cobol/che-che4z_nist_ccvs85/IC2244.2.cbl", "value": 737.14 }, - { - "name": "etcd.sh", - "path": "shell/kubernetes/etcd.sh", - "value": 734.57 - }, { "name": "containerbackend.go", "path": "dockerfile/moby/builder/dockerfile/containerbackend.go", @@ -6775,6 +6770,11 @@ "name": "async.ts", "path": "typescript/vscode/async.ts", "value": 724.74 + }, + { + "name": "kubelet.go", + "path": "go/kubernetes/kubelet.go", + "value": 724.19 } ], "lowest": [ @@ -118389,7 +118389,7 @@ "Static: Literature & Documentation": "6.7%" }, "Average Risk Exposures": { - "Cognitive Load Exposure": "71.8%", + "Cognitive Load Exposure": "46.87%", "Error & Exception Exposure": "86.69%", "Tech Debt Exposure": "4.31%", "Testing Exposure": "59.2%", @@ -118400,7 +118400,7 @@ "Specification Exposure": "60.0%", "Instability Exposure": "46.67%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "29.54%", + "Documentation Exposure": "24.41%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -119260,10 +119260,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 2.561 + "Raw Cognitive Density": 1.25 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "99.93%", + "Cognitive Load Exposure": "88.08%", "Error & Exception Exposure": "98.92%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.79%", @@ -119373,7 +119373,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 16, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -119488,10 +119488,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.873 + "Raw Cognitive Density": 0.762 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "98.89%", + "Cognitive Load Exposure": "51.19%", "Error & Exception Exposure": "95.42%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.7%", @@ -119551,7 +119551,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 14, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -119666,10 +119666,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.475 + "Raw Cognitive Density": 0.388 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "94.78%", + "Cognitive Load Exposure": "19.02%", "Error & Exception Exposure": "99.63%", "Tech Debt Exposure": "8.1%", "Testing Exposure": "80.0%", @@ -119680,7 +119680,7 @@ "Specification Exposure": "0.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "88.97%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -119729,7 +119729,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 5, - "Metaprogramming & Reflection": 694, + "Metaprogramming & Reflection": 8, "Module Dependencies (Imports)": 5, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -119850,10 +119850,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.797 + "Raw Cognitive Density": 0.48 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "98.5%", + "Cognitive Load Exposure": "25.36%", "Error & Exception Exposure": "99.92%", "Tech Debt Exposure": "8.14%", "Testing Exposure": "80.0%", @@ -119913,7 +119913,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 5, - "Metaprogramming & Reflection": 780, + "Metaprogramming & Reflection": 12, "Module Dependencies (Imports)": 2, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -120032,10 +120032,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.771 + "Raw Cognitive Density": 0.474 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "98.34%", + "Cognitive Load Exposure": "24.92%", "Error & Exception Exposure": "99.9%", "Tech Debt Exposure": "8.17%", "Testing Exposure": "80.0%", @@ -120095,7 +120095,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 5, - "Metaprogramming & Reflection": 733, + "Metaprogramming & Reflection": 11, "Module Dependencies (Imports)": 2, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -120214,10 +120214,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 3.24 + "Raw Cognitive Density": 0.14 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "100.0%", + "Cognitive Load Exposure": "8.02%", "Error & Exception Exposure": "98.75%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.46%", @@ -120277,7 +120277,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 31, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -437790,7 +437790,7 @@ "Unclassified": "100.0%" }, "Average Risk Exposures": { - "Cognitive Load Exposure": "49.35%", + "Cognitive Load Exposure": "37.23%", "Error & Exception Exposure": "51.31%", "Tech Debt Exposure": "53.45%", "Testing Exposure": "9.23%", @@ -437801,7 +437801,7 @@ "Specification Exposure": "52.17%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "27.05%", + "Documentation Exposure": "10.26%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -437838,10 +437838,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 2.36 + "Raw Cognitive Density": 0.86 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "99.84%", + "Cognitive Load Exposure": "60.83%", "Error & Exception Exposure": "31.62%", "Tech Debt Exposure": "100.0%", "Testing Exposure": "2.55%", @@ -437852,7 +437852,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "98.91%", + "Documentation Exposure": "55.62%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -437911,7 +437911,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 1, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 15, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -438026,10 +438026,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 3.108 + "Raw Cognitive Density": 1.265 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "87.91%", + "Cognitive Load Exposure": "77.98%", "Error & Exception Exposure": "46.67%", "Tech Debt Exposure": "99.92%", "Testing Exposure": "2.71%", @@ -438040,7 +438040,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "98.96%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -438249,7 +438249,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 123, + "Metaprogramming & Reflection": 1, "Module Dependencies (Imports)": 1, "Authorship Metadata": 1, "Planned Work (TODOs)": 2, @@ -438366,10 +438366,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 2.665 + "Raw Cognitive Density": 1.279 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "92.94%", + "Cognitive Load Exposure": "82.98%", "Error & Exception Exposure": "79.12%", "Tech Debt Exposure": "26.72%", "Testing Exposure": "80.0%", @@ -438380,7 +438380,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "98.62%", + "Documentation Exposure": "28.7%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -438609,7 +438609,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 2, - "Metaprogramming & Reflection": 81, + "Metaprogramming & Reflection": 2, "Module Dependencies (Imports)": 1, "Authorship Metadata": 1, "Planned Work (TODOs)": 1, @@ -438727,10 +438727,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 2.964 + "Raw Cognitive Density": 1.25 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "69.99%", + "Cognitive Load Exposure": "61.66%", "Error & Exception Exposure": "75.1%", "Tech Debt Exposure": "99.25%", "Testing Exposure": "80.0%", @@ -438741,7 +438741,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "100.0%", + "Documentation Exposure": "98.69%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -438850,7 +438850,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 1, "Scientific & Mathematical Operations": 2, - "Metaprogramming & Reflection": 36, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -438965,10 +438965,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.35 + "Raw Cognitive Density": 1.05 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "51.34%", + "Cognitive Load Exposure": "43.04%", "Error & Exception Exposure": "69.85%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.47%", @@ -439028,7 +439028,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 4, + "Metaprogramming & Reflection": 1, "Module Dependencies (Imports)": 1, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -439145,10 +439145,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 2.951 + "Raw Cognitive Density": 1.172 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "96.09%", + "Cognitive Load Exposure": "81.12%", "Error & Exception Exposure": "16.39%", "Tech Debt Exposure": "95.31%", "Testing Exposure": "2.63%", @@ -439159,7 +439159,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "99.02%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -440218,7 +440218,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 8, - "Metaprogramming & Reflection": 1019, + "Metaprogramming & Reflection": 15, "Module Dependencies (Imports)": 7, "Authorship Metadata": 1, "Planned Work (TODOs)": 9, @@ -440359,7 +440359,7 @@ "Specification Exposure": "0.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "26.56%", + "Documentation Exposure": "13.3%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -440398,7 +440398,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 4, + "Metaprogramming & Reflection": 1, "Module Dependencies (Imports)": 1, "Authorship Metadata": 1, "Planned Work (TODOs)": 2, @@ -440515,10 +440515,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 4.691 + "Raw Cognitive Density": 1.544 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "93.01%", + "Cognitive Load Exposure": "89.28%", "Error & Exception Exposure": "80.0%", "Tech Debt Exposure": "100.0%", "Testing Exposure": "2.61%", @@ -440529,7 +440529,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "99.99%", + "Documentation Exposure": "15.75%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -440658,7 +440658,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 1, - "Metaprogramming & Reflection": 90, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 1, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -440773,10 +440773,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.438 + "Raw Cognitive Density": 0.281 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "22.27%", + "Cognitive Load Exposure": "13.3%", "Error & Exception Exposure": "83.79%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.46%", @@ -440826,7 +440826,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 2, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -441109,10 +441109,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.27 + "Raw Cognitive Density": 0.87 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "71.12%", + "Cognitive Load Exposure": "49.42%", "Error & Exception Exposure": "53.85%", "Tech Debt Exposure": "50.0%", "Testing Exposure": "2.35%", @@ -441162,7 +441162,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 5, + "Metaprogramming & Reflection": 1, "Module Dependencies (Imports)": 0, "Authorship Metadata": 1, "Planned Work (TODOs)": 1, @@ -441277,10 +441277,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 2.8 + "Raw Cognitive Density": 1.1 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "49.99%", + "Cognitive Load Exposure": "40.11%", "Error & Exception Exposure": "75.92%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.76%", @@ -441370,7 +441370,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 2, - "Metaprogramming & Reflection": 17, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 2, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -441489,10 +441489,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 4.157 + "Raw Cognitive Density": 1.567 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "100.0%", + "Cognitive Load Exposure": "96.33%", "Error & Exception Exposure": "15.36%", "Tech Debt Exposure": "86.5%", "Testing Exposure": "2.9%", @@ -441722,7 +441722,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 6, "Scientific & Mathematical Operations": 9, - "Metaprogramming & Reflection": 275, + "Metaprogramming & Reflection": 3, "Module Dependencies (Imports)": 3, "Authorship Metadata": 1, "Planned Work (TODOs)": 3, @@ -441924,7 +441924,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 18, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -442207,10 +442207,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.98 + "Raw Cognitive Density": 0.78 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "71.5%", + "Cognitive Load Exposure": "53.0%", "Error & Exception Exposure": "91.01%", "Tech Debt Exposure": "100.0%", "Testing Exposure": "2.74%", @@ -442280,7 +442280,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 1, - "Metaprogramming & Reflection": 4, + "Metaprogramming & Reflection": 2, "Module Dependencies (Imports)": 2, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -442398,10 +442398,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 4.586 + "Raw Cognitive Density": 0.947 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "100.0%", + "Cognitive Load Exposure": "68.76%", "Error & Exception Exposure": "9.47%", "Tech Debt Exposure": "99.92%", "Testing Exposure": "2.45%", @@ -442611,7 +442611,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 3, - "Metaprogramming & Reflection": 265, + "Metaprogramming & Reflection": 3, "Module Dependencies (Imports)": 0, "Authorship Metadata": 1, "Planned Work (TODOs)": 1, @@ -442901,7 +442901,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 1, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 1, "Planned Work (TODOs)": 1, @@ -443079,7 +443079,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 26, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -443194,10 +443194,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.647 + "Raw Cognitive Density": 0.279 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "39.85%", + "Cognitive Load Exposure": "13.21%", "Error & Exception Exposure": "83.7%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.46%", @@ -443257,7 +443257,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 5, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -443540,10 +443540,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.28 + "Raw Cognitive Density": 0.48 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "89.28%", + "Cognitive Load Exposure": "25.35%", "Error & Exception Exposure": "73.66%", "Tech Debt Exposure": "99.33%", "Testing Exposure": "2.35%", @@ -443593,7 +443593,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 9, + "Metaprogramming & Reflection": 1, "Module Dependencies (Imports)": 1, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -443763,7 +443763,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 6, + "Metaprogramming & Reflection": 3, "Module Dependencies (Imports)": 3, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -484212,7 +484212,7 @@ "Unclassified": "100.0%" }, "Average Risk Exposures": { - "Cognitive Load Exposure": "26.53%", + "Cognitive Load Exposure": "25.34%", "Error & Exception Exposure": "51.88%", "Tech Debt Exposure": "17.79%", "Testing Exposure": "23.6%", @@ -484428,10 +484428,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.995 + "Raw Cognitive Density": 1.179 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "89.18%", + "Cognitive Load Exposure": "76.09%", "Error & Exception Exposure": "99.16%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", @@ -484531,7 +484531,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 16, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -542365,7 +542365,7 @@ "Unclassified": "100.0%" }, "Average Risk Exposures": { - "Cognitive Load Exposure": "60.15%", + "Cognitive Load Exposure": "47.0%", "Error & Exception Exposure": "88.36%", "Tech Debt Exposure": "2.42%", "Testing Exposure": "34.39%", @@ -542376,7 +542376,7 @@ "Specification Exposure": "41.18%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "14.5%", + "Documentation Exposure": "4.87%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -542413,10 +542413,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.6 + "Raw Cognitive Density": 1.1 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "96.77%", + "Cognitive Load Exposure": "80.22%", "Error & Exception Exposure": "99.99%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", @@ -542516,7 +542516,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 5, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -543175,10 +543175,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.569 + "Raw Cognitive Density": 0.492 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "32.67%", + "Cognitive Load Exposure": "26.29%", "Error & Exception Exposure": "91.68%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.52%", @@ -543258,7 +543258,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 2, - "Metaprogramming & Reflection": 2, + "Metaprogramming & Reflection": 1, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -543373,10 +543373,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.62 + "Raw Cognitive Density": 0.82 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "97.01%", + "Cognitive Load Exposure": "56.95%", "Error & Exception Exposure": "84.74%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.43%", @@ -543436,7 +543436,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 9, + "Metaprogramming & Reflection": 1, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -543551,10 +543551,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.12 + "Raw Cognitive Density": 0.62 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "81.46%", + "Cognitive Load Exposure": "37.29%", "Error & Exception Exposure": "96.86%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.48%", @@ -543614,7 +543614,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 5, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -543729,10 +543729,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 2.7 + "Raw Cognitive Density": 1.1 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "99.96%", + "Cognitive Load Exposure": "80.22%", "Error & Exception Exposure": "89.5%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.59%", @@ -543802,7 +543802,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 20, + "Metaprogramming & Reflection": 4, "Module Dependencies (Imports)": 0, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -543917,10 +543917,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.47 + "Raw Cognitive Density": 1.089 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "94.69%", + "Cognitive Load Exposure": "79.51%", "Error & Exception Exposure": "100.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", @@ -543931,7 +543931,7 @@ "Specification Exposure": "0.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "20.58%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -544060,7 +544060,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 1, - "Metaprogramming & Reflection": 9, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -544175,10 +544175,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.9 + "Raw Cognitive Density": 0.5 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "64.57%", + "Cognitive Load Exposure": "26.89%", "Error & Exception Exposure": "78.34%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.58%", @@ -544258,7 +544258,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 4, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -544373,10 +544373,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 2.457 + "Raw Cognitive Density": 1.25 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "99.89%", + "Cognitive Load Exposure": "88.08%", "Error & Exception Exposure": "98.61%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", @@ -544387,7 +544387,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "94.39%", + "Documentation Exposure": "24.93%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -544466,7 +544466,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 21, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -544851,10 +544851,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 2.452 + "Raw Cognitive Density": 1.379 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "99.89%", + "Cognitive Load Exposure": "92.53%", "Error & Exception Exposure": "100.0%", "Tech Debt Exposure": "10.18%", "Testing Exposure": "80.0%", @@ -545074,7 +545074,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 5, - "Metaprogramming & Reflection": 93, + "Metaprogramming & Reflection": 10, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 1, @@ -545242,7 +545242,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 4, + "Metaprogramming & Reflection": 2, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -545357,10 +545357,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.74 + "Raw Cognitive Density": 0.64 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "49.0%", + "Cognitive Load Exposure": "39.17%", "Error & Exception Exposure": "94.42%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.45%", @@ -545420,7 +545420,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 1, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -545535,10 +545535,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.605 + "Raw Cognitive Density": 0.573 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "34.75%", + "Cognitive Load Exposure": "31.92%", "Error & Exception Exposure": "90.05%", "Tech Debt Exposure": "30.98%", "Testing Exposure": "80.0%", @@ -545549,7 +545549,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "17.05%", + "Documentation Exposure": "15.4%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -545608,7 +545608,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 6, - "Metaprogramming & Reflection": 6, + "Metaprogramming & Reflection": 4, "Module Dependencies (Imports)": 2, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -545727,10 +545727,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 3.961 + "Raw Cognitive Density": 1.25 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "100.0%", + "Cognitive Load Exposure": "88.08%", "Error & Exception Exposure": "89.61%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", @@ -545741,7 +545741,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "99.98%", + "Documentation Exposure": "16.04%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -545830,7 +545830,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 122, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -545922,7 +545922,7 @@ "Static: Literature & Documentation": "5.0%" }, "Average Risk Exposures": { - "Cognitive Load Exposure": "49.86%", + "Cognitive Load Exposure": "42.63%", "Error & Exception Exposure": "47.99%", "Tech Debt Exposure": "8.95%", "Testing Exposure": "6.29%", @@ -545933,7 +545933,7 @@ "Specification Exposure": "25.0%", "Instability Exposure": "47.5%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "15.1%", + "Documentation Exposure": "8.02%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -546127,10 +546127,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 3.86 + "Raw Cognitive Density": 1.36 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "75.61%", + "Cognitive Load Exposure": "69.54%", "Error & Exception Exposure": "37.89%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.99%", @@ -546230,7 +546230,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 41, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 2, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -546347,10 +546347,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.32 + "Raw Cognitive Density": 0.22 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "15.19%", + "Cognitive Load Exposure": "10.72%", "Error & Exception Exposure": "56.39%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.56%", @@ -546410,7 +546410,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 1, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 1, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -546528,10 +546528,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 3.35 + "Raw Cognitive Density": 1.25 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "100.0%", + "Cognitive Load Exposure": "88.08%", "Error & Exception Exposure": "60.55%", "Tech Debt Exposure": "99.33%", "Testing Exposure": "2.8%", @@ -546591,7 +546591,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 21, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -546759,7 +546759,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 1, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -546874,10 +546874,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.585 + "Raw Cognitive Density": 1.491 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "96.58%", + "Cognitive Load Exposure": "95.08%", "Error & Exception Exposure": "93.78%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.58%", @@ -546957,7 +546957,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 1, - "Metaprogramming & Reflection": 7, + "Metaprogramming & Reflection": 6, "Module Dependencies (Imports)": 0, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -547072,10 +547072,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.769 + "Raw Cognitive Density": 1.676 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "98.33%", + "Cognitive Load Exposure": "97.6%", "Error & Exception Exposure": "98.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.7%", @@ -547175,7 +547175,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 7, + "Metaprogramming & Reflection": 6, "Module Dependencies (Imports)": 0, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -547460,10 +547460,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.32 + "Raw Cognitive Density": 0.52 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "90.72%", + "Cognitive Load Exposure": "28.5%", "Error & Exception Exposure": "50.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.46%", @@ -547523,7 +547523,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 8, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -547638,10 +547638,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.715 + "Raw Cognitive Density": 1.498 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "97.94%", + "Cognitive Load Exposure": "95.23%", "Error & Exception Exposure": "98.91%", "Tech Debt Exposure": "8.99%", "Testing Exposure": "80.0%", @@ -547652,7 +547652,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "18.99%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -547961,7 +547961,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 1, - "Metaprogramming & Reflection": 30, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 2, "Authorship Metadata": 1, "Planned Work (TODOs)": 2, @@ -548078,10 +548078,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.24 + "Raw Cognitive Density": 0.94 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "87.65%", + "Cognitive Load Exposure": "68.14%", "Error & Exception Exposure": "81.11%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.56%", @@ -548161,7 +548161,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 4, + "Metaprogramming & Reflection": 1, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -548444,10 +548444,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 4.244 + "Raw Cognitive Density": 1.509 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "88.24%", + "Cognitive Load Exposure": "84.19%", "Error & Exception Exposure": "55.97%", "Tech Debt Exposure": "70.73%", "Testing Exposure": "2.8%", @@ -548458,7 +548458,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "99.99%", + "Documentation Exposure": "42.83%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -548607,7 +548607,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 3, - "Metaprogramming & Reflection": 103, + "Metaprogramming & Reflection": 10, "Module Dependencies (Imports)": 2, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -548728,10 +548728,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 5.05 + "Raw Cognitive Density": 1.25 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "100.0%", + "Cognitive Load Exposure": "88.08%", "Error & Exception Exposure": "35.43%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.5%", @@ -548831,7 +548831,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 39, + "Metaprogramming & Reflection": 1, "Module Dependencies (Imports)": 1, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -548949,10 +548949,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 7.404 + "Raw Cognitive Density": 1.442 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "50.0%", + "Cognitive Load Exposure": "47.05%", "Error & Exception Exposure": "90.75%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.65%", @@ -549072,7 +549072,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 64, + "Metaprogramming & Reflection": 2, "Module Dependencies (Imports)": 1, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -549190,10 +549190,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 4.723 + "Raw Cognitive Density": 1.59 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "60.0%", + "Cognitive Load Exposure": "57.99%", "Error & Exception Exposure": "78.39%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.71%", @@ -549204,7 +549204,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "99.99%", + "Documentation Exposure": "34.23%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -549253,7 +549253,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 53, + "Metaprogramming & Reflection": 6, "Module Dependencies (Imports)": 1, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -549539,10 +549539,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.56 + "Raw Cognitive Density": 0.36 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "31.86%", + "Cognitive Load Exposure": "17.36%", "Error & Exception Exposure": "54.28%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.41%", @@ -549553,7 +549553,7 @@ "Specification Exposure": "0.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "34.52%", + "Documentation Exposure": "22.94%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -549612,7 +549612,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 4, + "Metaprogramming & Reflection": 2, "Module Dependencies (Imports)": 0, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -549780,7 +549780,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 1, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -549948,7 +549948,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 1, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -579045,7 +579045,7 @@ "Static: Literature & Documentation": "11.1%" }, "Average Risk Exposures": { - "Cognitive Load Exposure": "28.16%", + "Cognitive Load Exposure": "27.38%", "Error & Exception Exposure": "35.08%", "Tech Debt Exposure": "37.32%", "Testing Exposure": "28.06%", @@ -579056,7 +579056,7 @@ "Specification Exposure": "77.78%", "Instability Exposure": "44.44%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "14.19%", + "Documentation Exposure": "5.87%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -579450,10 +579450,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 2.426 + "Raw Cognitive Density": 1.355 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "87.29%", + "Cognitive Load Exposure": "80.26%", "Error & Exception Exposure": "23.56%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.87%", @@ -579464,7 +579464,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "90.74%", + "Documentation Exposure": "15.82%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -579773,7 +579773,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 56, + "Metaprogramming & Reflection": 5, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -583054,7 +583054,7 @@ "Unclassified": "100.0%" }, "Average Risk Exposures": { - "Cognitive Load Exposure": "71.16%", + "Cognitive Load Exposure": "58.26%", "Error & Exception Exposure": "74.07%", "Tech Debt Exposure": "15.61%", "Testing Exposure": "38.24%", @@ -583065,7 +583065,7 @@ "Specification Exposure": "61.54%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "12.26%", + "Documentation Exposure": "2.89%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -583102,10 +583102,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.766 + "Raw Cognitive Density": 1.231 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "98.31%", + "Cognitive Load Exposure": "87.25%", "Error & Exception Exposure": "93.44%", "Tech Debt Exposure": "14.87%", "Testing Exposure": "80.0%", @@ -583515,7 +583515,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 51, + "Metaprogramming & Reflection": 12, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 1, @@ -583630,10 +583630,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.86 + "Raw Cognitive Density": 0.76 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "98.83%", + "Cognitive Load Exposure": "51.0%", "Error & Exception Exposure": "73.66%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.42%", @@ -583693,7 +583693,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 11, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -583986,10 +583986,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 3.311 + "Raw Cognitive Density": 1.826 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "100.0%", + "Cognitive Load Exposure": "98.66%", "Error & Exception Exposure": "97.84%", "Tech Debt Exposure": "43.91%", "Testing Exposure": "80.0%", @@ -584000,7 +584000,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "84.0%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -584239,7 +584239,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 95, + "Metaprogramming & Reflection": 2, "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 1, @@ -584356,10 +584356,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.359 + "Raw Cognitive Density": 1.25 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "85.25%", + "Cognitive Load Exposure": "81.65%", "Error & Exception Exposure": "98.14%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", @@ -584539,7 +584539,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 3, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -584654,10 +584654,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.886 + "Raw Cognitive Density": 1.205 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "98.95%", + "Cognitive Load Exposure": "86.03%", "Error & Exception Exposure": "99.99%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", @@ -584787,7 +584787,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 2, - "Metaprogramming & Reflection": 12, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -584902,10 +584902,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.81 + "Raw Cognitive Density": 1.178 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "98.58%", + "Cognitive Load Exposure": "84.69%", "Error & Exception Exposure": "99.34%", "Tech Debt Exposure": "15.82%", "Testing Exposure": "80.0%", @@ -584916,7 +584916,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "63.46%", + "Documentation Exposure": "13.77%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -585065,7 +585065,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 26, - "Metaprogramming & Reflection": 42, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 4, @@ -585182,10 +585182,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.0 + "Raw Cognitive Density": 0.911 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "73.11%", + "Cognitive Load Exposure": "65.54%", "Error & Exception Exposure": "96.75%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.5%", @@ -585285,7 +585285,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 1, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -585400,10 +585400,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.474 + "Raw Cognitive Density": 0.09 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "24.93%", + "Cognitive Load Exposure": "6.65%", "Error & Exception Exposure": "48.47%", "Tech Debt Exposure": "28.96%", "Testing Exposure": "2.33%", @@ -585463,7 +585463,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 6, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 1, @@ -585578,10 +585578,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.68 + "Raw Cognitive Density": 0.98 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "97.63%", + "Cognitive Load Exposure": "71.5%", "Error & Exception Exposure": "83.6%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.57%", @@ -585661,7 +585661,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 8, + "Metaprogramming & Reflection": 1, "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -585956,10 +585956,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 4.553 + "Raw Cognitive Density": 1.48 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "100.0%", + "Cognitive Load Exposure": "94.87%", "Error & Exception Exposure": "98.07%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", @@ -586089,7 +586089,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 2, - "Metaprogramming & Reflection": 77, + "Metaprogramming & Reflection": 2, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -586204,10 +586204,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.5 + "Raw Cognitive Density": 0.1 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "26.89%", + "Cognitive Load Exposure": "6.91%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.39%", @@ -586267,7 +586267,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 4, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -630032,7 +630032,7 @@ "Unclassified": "100.0%" }, "Average Risk Exposures": { - "Cognitive Load Exposure": "47.38%", + "Cognitive Load Exposure": "38.06%", "Error & Exception Exposure": "79.55%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "21.86%", @@ -630043,7 +630043,7 @@ "Specification Exposure": "25.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "4.12%", + "Documentation Exposure": "2.89%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -630436,10 +630436,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.523 + "Raw Cognitive Density": 1.19 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "95.66%", + "Cognitive Load Exposure": "85.32%", "Error & Exception Exposure": "99.99%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.71%", @@ -630509,7 +630509,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 3, - "Metaprogramming & Reflection": 5, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -630624,10 +630624,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.92 + "Raw Cognitive Density": 0.62 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "66.37%", + "Cognitive Load Exposure": "37.29%", "Error & Exception Exposure": "97.55%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.58%", @@ -630687,7 +630687,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 3, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -630802,10 +630802,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.9 + "Raw Cognitive Density": 0.7 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "64.57%", + "Cognitive Load Exposure": "45.02%", "Error & Exception Exposure": "99.65%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.59%", @@ -630885,7 +630885,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 2, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -631000,10 +631000,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 2.355 + "Raw Cognitive Density": 1.25 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "99.84%", + "Cognitive Load Exposure": "88.08%", "Error & Exception Exposure": "99.98%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", @@ -631143,7 +631143,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 2, - "Metaprogramming & Reflection": 19, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -631258,10 +631258,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.282 + "Raw Cognitive Density": 1.25 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "89.36%", + "Cognitive Load Exposure": "88.08%", "Error & Exception Exposure": "99.94%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", @@ -631341,7 +631341,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 1, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -631456,10 +631456,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.32 + "Raw Cognitive Density": 0.22 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "15.19%", + "Cognitive Load Exposure": "10.72%", "Error & Exception Exposure": "68.38%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.41%", @@ -631519,7 +631519,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 1, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 2, "Planned Work (TODOs)": 0, @@ -632148,10 +632148,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.368 + "Raw Cognitive Density": 1.25 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "92.21%", + "Cognitive Load Exposure": "88.08%", "Error & Exception Exposure": "100.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", @@ -632311,7 +632311,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 2, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 2, "Planned Work (TODOs)": 0, @@ -632426,10 +632426,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.28 + "Raw Cognitive Density": 0.18 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "13.24%", + "Cognitive Load Exposure": "9.28%", "Error & Exception Exposure": "88.67%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.48%", @@ -632489,7 +632489,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 1, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -632604,10 +632604,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.438 + "Raw Cognitive Density": 1.003 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "94.0%", + "Cognitive Load Exposure": "73.35%", "Error & Exception Exposure": "100.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", @@ -632707,7 +632707,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 36, - "Metaprogramming & Reflection": 14, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 2, "Authorship Metadata": 2, "Planned Work (TODOs)": 0, @@ -632877,7 +632877,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 1, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -632992,10 +632992,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.611 + "Raw Cognitive Density": 1.431 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "96.91%", + "Cognitive Load Exposure": "93.84%", "Error & Exception Exposure": "99.99%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", @@ -633006,7 +633006,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "18.42%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -633115,7 +633115,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 6, + "Metaprogramming & Reflection": 3, "Module Dependencies (Imports)": 0, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -633408,10 +633408,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.8 + "Raw Cognitive Density": 0.5 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "54.98%", + "Cognitive Load Exposure": "26.89%", "Error & Exception Exposure": "85.81%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.49%", @@ -633491,7 +633491,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 3, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -633606,10 +633606,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.814 + "Raw Cognitive Density": 0.729 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "56.32%", + "Cognitive Load Exposure": "47.88%", "Error & Exception Exposure": "92.46%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.51%", @@ -633659,7 +633659,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 1, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -633774,10 +633774,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.78 + "Raw Cognitive Density": 0.38 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "53.0%", + "Cognitive Load Exposure": "18.54%", "Error & Exception Exposure": "89.5%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.38%", @@ -633827,7 +633827,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 4, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -633945,10 +633945,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.38 + "Raw Cognitive Density": 0.28 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "18.54%", + "Cognitive Load Exposure": "13.24%", "Error & Exception Exposure": "92.9%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.56%", @@ -634008,7 +634008,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 1, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -634123,10 +634123,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.6 + "Raw Cognitive Density": 0.5 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "28.35%", + "Cognitive Load Exposure": "21.52%", "Error & Exception Exposure": "99.95%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.63%", @@ -634196,7 +634196,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 1, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -634311,10 +634311,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.346 + "Raw Cognitive Density": 1.038 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "91.56%", + "Cognitive Load Exposure": "76.02%", "Error & Exception Exposure": "99.38%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", @@ -634325,7 +634325,7 @@ "Specification Exposure": "0.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "56.5%", + "Documentation Exposure": "33.64%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -634404,7 +634404,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 1, - "Metaprogramming & Reflection": 5, + "Metaprogramming & Reflection": 1, "Module Dependencies (Imports)": 0, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -634521,10 +634521,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.06 + "Raw Cognitive Density": 0.86 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "77.56%", + "Cognitive Load Exposure": "60.83%", "Error & Exception Exposure": "95.63%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.86%", @@ -634614,7 +634614,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 2, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -662120,7 +662120,7 @@ "Static: Literature & Documentation": "4.3%" }, "Average Risk Exposures": { - "Cognitive Load Exposure": "34.62%", + "Cognitive Load Exposure": "26.08%", "Error & Exception Exposure": "76.09%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "15.87%", @@ -663067,10 +663067,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.89 + "Raw Cognitive Density": 0.99 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "98.96%", + "Cognitive Load Exposure": "72.31%", "Error & Exception Exposure": "99.92%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.6%", @@ -663150,7 +663150,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 4, - "Metaprogramming & Reflection": 9, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 2, "Planned Work (TODOs)": 0, @@ -663775,10 +663775,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 2.95 + "Raw Cognitive Density": 1.25 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "99.98%", + "Cognitive Load Exposure": "88.08%", "Error & Exception Exposure": "89.5%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.85%", @@ -663848,7 +663848,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 17, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 2, "Planned Work (TODOs)": 0, @@ -663963,10 +663963,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.82 + "Raw Cognitive Density": 0.62 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "56.95%", + "Cognitive Load Exposure": "37.29%", "Error & Exception Exposure": "99.91%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "3.0%", @@ -664046,7 +664046,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 2, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -664527,10 +664527,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.606 + "Raw Cognitive Density": 0.577 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "35.96%", + "Cognitive Load Exposure": "33.36%", "Error & Exception Exposure": "88.65%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", @@ -664680,7 +664680,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 9, + "Metaprogramming & Reflection": 5, "Module Dependencies (Imports)": 2, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -664798,10 +664798,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.66 + "Raw Cognitive Density": 0.56 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "41.1%", + "Cognitive Load Exposure": "31.86%", "Error & Exception Exposure": "99.89%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.91%", @@ -664881,7 +664881,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 1, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -664996,10 +664996,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.535 + "Raw Cognitive Density": 1.381 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "95.85%", + "Cognitive Load Exposure": "92.57%", "Error & Exception Exposure": "99.8%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", @@ -665089,7 +665089,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 2, - "Metaprogramming & Reflection": 4, + "Metaprogramming & Reflection": 2, "Module Dependencies (Imports)": 0, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -665206,10 +665206,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.64 + "Raw Cognitive Density": 0.44 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "39.17%", + "Cognitive Load Exposure": "22.44%", "Error & Exception Exposure": "75.29%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.49%", @@ -665279,7 +665279,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 2, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -665562,10 +665562,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.34 + "Raw Cognitive Density": 0.74 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "91.37%", + "Cognitive Load Exposure": "49.0%", "Error & Exception Exposure": "98.1%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.53%", @@ -665625,7 +665625,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 4, - "Metaprogramming & Reflection": 6, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -665740,10 +665740,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.44 + "Raw Cognitive Density": 0.54 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "94.05%", + "Cognitive Load Exposure": "30.15%", "Error & Exception Exposure": "70.21%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.46%", @@ -665803,7 +665803,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 1, - "Metaprogramming & Reflection": 9, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -666404,7 +666404,7 @@ "Unclassified": "100.0%" }, "Average Risk Exposures": { - "Cognitive Load Exposure": "74.57%", + "Cognitive Load Exposure": "59.64%", "Error & Exception Exposure": "90.33%", "Tech Debt Exposure": "33.22%", "Testing Exposure": "41.22%", @@ -666415,7 +666415,7 @@ "Specification Exposure": "66.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "19.48%", + "Documentation Exposure": "8.97%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -666452,10 +666452,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 2.572 + "Raw Cognitive Density": 1.555 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "99.93%", + "Cognitive Load Exposure": "96.16%", "Error & Exception Exposure": "99.99%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", @@ -666555,7 +666555,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 1, - "Metaprogramming & Reflection": 24, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -666670,10 +666670,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.897 + "Raw Cognitive Density": 1.233 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "98.99%", + "Cognitive Load Exposure": "87.33%", "Error & Exception Exposure": "99.82%", "Tech Debt Exposure": "100.0%", "Testing Exposure": "80.0%", @@ -666684,7 +666684,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "48.72%", + "Documentation Exposure": "12.79%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -667533,7 +667533,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 17, - "Metaprogramming & Reflection": 78, + "Metaprogramming & Reflection": 4, "Module Dependencies (Imports)": 6, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -667823,10 +667823,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.78 + "Raw Cognitive Density": 0.28 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "53.0%", + "Cognitive Load Exposure": "13.24%", "Error & Exception Exposure": "73.66%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.37%", @@ -667876,7 +667876,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 2, - "Metaprogramming & Reflection": 5, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -667991,10 +667991,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.757 + "Raw Cognitive Density": 1.395 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "98.25%", + "Cognitive Load Exposure": "92.95%", "Error & Exception Exposure": "100.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", @@ -668005,7 +668005,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "68.18%", + "Documentation Exposure": "41.06%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -668104,7 +668104,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 4, - "Metaprogramming & Reflection": 7, + "Metaprogramming & Reflection": 2, "Module Dependencies (Imports)": 0, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -668219,10 +668219,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.64 + "Raw Cognitive Density": 0.94 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "97.23%", + "Cognitive Load Exposure": "68.14%", "Error & Exception Exposure": "94.85%", "Tech Debt Exposure": "99.33%", "Testing Exposure": "2.61%", @@ -668312,7 +668312,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 7, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -687713,7 +687713,7 @@ "Static: Literature & Documentation": "5.0%" }, "Average Risk Exposures": { - "Cognitive Load Exposure": "55.28%", + "Cognitive Load Exposure": "39.01%", "Error & Exception Exposure": "79.38%", "Tech Debt Exposure": "7.99%", "Testing Exposure": "13.97%", @@ -687918,10 +687918,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.524 + "Raw Cognitive Density": 0.78 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "95.68%", + "Cognitive Load Exposure": "52.99%", "Error & Exception Exposure": "99.44%", "Tech Debt Exposure": "21.65%", "Testing Exposure": "80.0%", @@ -688101,7 +688101,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 2, - "Metaprogramming & Reflection": 46, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -688592,10 +688592,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.64 + "Raw Cognitive Density": 1.44 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "97.23%", + "Cognitive Load Exposure": "94.05%", "Error & Exception Exposure": "98.39%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.5%", @@ -688655,7 +688655,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 2, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -689116,10 +689116,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.98 + "Raw Cognitive Density": 0.88 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "71.5%", + "Cognitive Load Exposure": "62.71%", "Error & Exception Exposure": "99.81%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.52%", @@ -689189,7 +689189,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 4, + "Metaprogramming & Reflection": 3, "Module Dependencies (Imports)": 0, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -689304,10 +689304,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.2 + "Raw Cognitive Density": 0.1 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "9.97%", + "Cognitive Load Exposure": "6.91%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.4%", @@ -689367,7 +689367,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 1, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -689482,10 +689482,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.98 + "Raw Cognitive Density": 0.68 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "71.5%", + "Cognitive Load Exposure": "43.05%", "Error & Exception Exposure": "98.52%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.38%", @@ -689545,7 +689545,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 1, - "Metaprogramming & Reflection": 3, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -689660,10 +689660,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 2.208 + "Raw Cognitive Density": 0.583 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "99.71%", + "Cognitive Load Exposure": "33.92%", "Error & Exception Exposure": "98.85%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", @@ -689863,7 +689863,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 79, + "Metaprogramming & Reflection": 1, "Module Dependencies (Imports)": 0, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -689978,10 +689978,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.94 + "Raw Cognitive Density": 0.74 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "68.14%", + "Cognitive Load Exposure": "49.0%", "Error & Exception Exposure": "97.93%", "Tech Debt Exposure": "50.0%", "Testing Exposure": "2.44%", @@ -690041,7 +690041,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 2, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 1, @@ -690156,10 +690156,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.316 + "Raw Cognitive Density": 1.231 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "90.59%", + "Cognitive Load Exposure": "87.25%", "Error & Exception Exposure": "90.7%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", @@ -690289,7 +690289,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 4, + "Metaprogramming & Reflection": 2, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -690457,7 +690457,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 1, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -690572,10 +690572,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.18 + "Raw Cognitive Density": 0.58 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "84.81%", + "Cognitive Load Exposure": "33.63%", "Error & Exception Exposure": "100.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.65%", @@ -690625,7 +690625,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 6, - "Metaprogramming & Reflection": 6, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -690740,10 +690740,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.92 + "Raw Cognitive Density": 0.62 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "66.37%", + "Cognitive Load Exposure": "37.29%", "Error & Exception Exposure": "96.59%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.47%", @@ -690803,7 +690803,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 1, - "Metaprogramming & Reflection": 4, + "Metaprogramming & Reflection": 1, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -691106,10 +691106,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.66 + "Raw Cognitive Density": 0.36 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "41.1%", + "Cognitive Load Exposure": "17.36%", "Error & Exception Exposure": "99.03%", "Tech Debt Exposure": "88.08%", "Testing Exposure": "2.43%", @@ -691169,7 +691169,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 3, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -691284,10 +691284,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.54 + "Raw Cognitive Density": 1.04 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "95.93%", + "Cognitive Load Exposure": "76.13%", "Error & Exception Exposure": "99.81%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.64%", @@ -691367,7 +691367,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 5, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -691482,10 +691482,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.76 + "Raw Cognitive Density": 0.46 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "51.0%", + "Cognitive Load Exposure": "23.87%", "Error & Exception Exposure": "99.03%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.4%", @@ -691545,7 +691545,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 3, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -712335,7 +712335,7 @@ "Unclassified": "100.0%" }, "Average Risk Exposures": { - "Cognitive Load Exposure": "20.82%", + "Cognitive Load Exposure": "16.56%", "Error & Exception Exposure": "76.32%", "Tech Debt Exposure": "44.79%", "Testing Exposure": "5.76%", @@ -712346,7 +712346,7 @@ "Specification Exposure": "65.22%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "11.55%", + "Documentation Exposure": "5.94%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -712383,10 +712383,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.293 + "Raw Cognitive Density": 1.006 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "89.77%", + "Cognitive Load Exposure": "73.56%", "Error & Exception Exposure": "89.91%", "Tech Debt Exposure": "52.15%", "Testing Exposure": "80.0%", @@ -712397,7 +712397,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "46.01%", + "Documentation Exposure": "25.08%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -712476,7 +712476,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 5, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -712654,7 +712654,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 5, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -712852,7 +712852,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 3, + "Metaprogramming & Reflection": 1, "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -713022,7 +713022,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 2, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -713137,10 +713137,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 2.55 + "Raw Cognitive Density": 0.85 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "99.93%", + "Cognitive Load Exposure": "59.87%", "Error & Exception Exposure": "96.86%", "Tech Debt Exposure": "73.11%", "Testing Exposure": "2.37%", @@ -713220,7 +713220,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 17, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -713408,7 +713408,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 4, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -713537,7 +713537,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "36.09%", + "Documentation Exposure": "19.33%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -713586,7 +713586,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 3, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -713754,7 +713754,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 1, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -713952,7 +713952,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 15, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -714120,7 +714120,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 2, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -714308,7 +714308,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 4, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -714437,7 +714437,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "50.0%", + "Documentation Exposure": "19.33%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -714506,7 +714506,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 5, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -714674,7 +714674,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 3, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -714862,7 +714862,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 3, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -715040,7 +715040,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 5, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -715228,7 +715228,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 6, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -715357,7 +715357,7 @@ "Specification Exposure": "0.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "47.64%", + "Documentation Exposure": "27.86%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -715396,7 +715396,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 3, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -715511,10 +715511,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 2.467 + "Raw Cognitive Density": 1.335 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "62.2%", + "Cognitive Load Exposure": "56.79%", "Error & Exception Exposure": "99.13%", "Tech Debt Exposure": "85.14%", "Testing Exposure": "2.68%", @@ -715594,7 +715594,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 13, + "Metaprogramming & Reflection": 1, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -715709,10 +715709,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.64 + "Raw Cognitive Density": 1.31 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "97.24%", + "Cognitive Load Exposure": "90.39%", "Error & Exception Exposure": "99.94%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.51%", @@ -715723,7 +715723,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "54.05%", + "Documentation Exposure": "28.52%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -715802,7 +715802,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 6, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -715970,7 +715970,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 1, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -716085,10 +716085,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 4.35 + "Raw Cognitive Density": 1.25 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "100.0%", + "Cognitive Load Exposure": "88.08%", "Error & Exception Exposure": "58.49%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.87%", @@ -716198,7 +716198,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 31, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -716388,7 +716388,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 6, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -716503,10 +716503,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.62 + "Raw Cognitive Density": 0.32 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "29.83%", + "Cognitive Load Exposure": "12.15%", "Error & Exception Exposure": "83.36%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.51%", @@ -716517,7 +716517,7 @@ "Specification Exposure": "0.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "31.83%", + "Documentation Exposure": "16.54%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -716586,7 +716586,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 3, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -716678,7 +716678,7 @@ "Static: Literature & Documentation": "7.1%" }, "Average Risk Exposures": { - "Cognitive Load Exposure": "30.53%", + "Cognitive Load Exposure": "18.16%", "Error & Exception Exposure": "29.42%", "Tech Debt Exposure": "11.99%", "Testing Exposure": "13.29%", @@ -716689,7 +716689,7 @@ "Specification Exposure": "14.29%", "Instability Exposure": "46.43%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "29.06%", + "Documentation Exposure": "13.61%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -716883,10 +716883,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.76 + "Raw Cognitive Density": 0.26 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "51.0%", + "Cognitive Load Exposure": "12.35%", "Error & Exception Exposure": "66.5%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.37%", @@ -716946,7 +716946,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 5, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -717407,10 +717407,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 3.083 + "Raw Cognitive Density": 1.858 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "99.99%", + "Cognitive Load Exposure": "98.82%", "Error & Exception Exposure": "90.92%", "Tech Debt Exposure": "57.9%", "Testing Exposure": "80.0%", @@ -717421,7 +717421,7 @@ "Specification Exposure": "0.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "99.48%", + "Documentation Exposure": "68.87%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -717490,7 +717490,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 75, + "Metaprogramming & Reflection": 25, "Module Dependencies (Imports)": 6, "Authorship Metadata": 0, "Planned Work (TODOs)": 1, @@ -717610,10 +717610,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 2.718 + "Raw Cognitive Density": 0.48 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "99.96%", + "Cognitive Load Exposure": "25.39%", "Error & Exception Exposure": "11.17%", "Tech Debt Exposure": "10.67%", "Testing Exposure": "80.0%", @@ -717624,7 +717624,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "99.81%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -717703,7 +717703,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 149, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 2, "Authorship Metadata": 0, "Planned Work (TODOs)": 1, @@ -718168,10 +718168,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 3.804 + "Raw Cognitive Density": 0.912 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "100.0%", + "Cognitive Load Exposure": "65.63%", "Error & Exception Exposure": "0.76%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.48%", @@ -718182,7 +718182,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "99.98%", + "Documentation Exposure": "26.64%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -718271,7 +718271,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 59, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -718607,7 +718607,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 6, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -718736,7 +718736,7 @@ "Specification Exposure": "0.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "45.37%", + "Documentation Exposure": "20.94%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -718775,7 +718775,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 4, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -719058,10 +719058,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 2.14 + "Raw Cognitive Density": 0.84 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "59.77%", + "Cognitive Load Exposure": "35.34%", "Error & Exception Exposure": "51.29%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.61%", @@ -719121,7 +719121,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 13, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -719213,7 +719213,7 @@ "Static: Literature & Documentation": "6.7%" }, "Average Risk Exposures": { - "Cognitive Load Exposure": "50.35%", + "Cognitive Load Exposure": "35.78%", "Error & Exception Exposure": "58.91%", "Tech Debt Exposure": "8.21%", "Testing Exposure": "7.35%", @@ -719418,10 +719418,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.74 + "Raw Cognitive Density": 0.64 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "49.0%", + "Cognitive Load Exposure": "39.17%", "Error & Exception Exposure": "94.42%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.47%", @@ -719491,7 +719491,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 1, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -719606,10 +719606,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.54 + "Raw Cognitive Density": 0.44 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "30.15%", + "Cognitive Load Exposure": "22.44%", "Error & Exception Exposure": "92.9%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.72%", @@ -719699,7 +719699,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 1, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 2, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -719816,10 +719816,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.1 + "Raw Cognitive Density": 0.6 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "80.22%", + "Cognitive Load Exposure": "35.43%", "Error & Exception Exposure": "64.57%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.49%", @@ -719889,7 +719889,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 5, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 2, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -720006,10 +720006,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.08 + "Raw Cognitive Density": 0.48 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "78.92%", + "Cognitive Load Exposure": "25.35%", "Error & Exception Exposure": "60.55%", "Tech Debt Exposure": "73.11%", "Testing Exposure": "2.33%", @@ -720059,7 +720059,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 6, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 4, "Planned Work (TODOs)": 0, @@ -720174,10 +720174,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 2.63 + "Raw Cognitive Density": 1.23 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "99.95%", + "Cognitive Load Exposure": "87.21%", "Error & Exception Exposure": "93.44%", "Tech Debt Exposure": "50.0%", "Testing Exposure": "2.57%", @@ -720267,7 +720267,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 15, + "Metaprogramming & Reflection": 1, "Module Dependencies (Imports)": 1, "Authorship Metadata": 1, "Planned Work (TODOs)": 1, @@ -720384,10 +720384,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.45 + "Raw Cognitive Density": 1.25 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "94.27%", + "Cognitive Load Exposure": "88.08%", "Error & Exception Exposure": "99.79%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.0%", @@ -720487,7 +720487,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 2, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -720602,10 +720602,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.54 + "Raw Cognitive Density": 0.04 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "30.15%", + "Cognitive Load Exposure": "5.52%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.42%", @@ -720685,7 +720685,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 5, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -721367,7 +721367,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 2, + "Metaprogramming & Reflection": 1, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -721482,10 +721482,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.273 + "Raw Cognitive Density": 1.102 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "89.0%", + "Cognitive Load Exposure": "80.36%", "Error & Exception Exposure": "99.93%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.63%", @@ -721575,7 +721575,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 4, + "Metaprogramming & Reflection": 1, "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -721692,10 +721692,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.26 + "Raw Cognitive Density": 0.66 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "88.49%", + "Cognitive Load Exposure": "41.1%", "Error & Exception Exposure": "98.39%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.81%", @@ -721775,7 +721775,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 6, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -721890,10 +721890,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.677 + "Raw Cognitive Density": 1.395 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "66.12%", + "Cognitive Load Exposure": "62.97%", "Error & Exception Exposure": "99.92%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", @@ -722033,7 +722033,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 2, - "Metaprogramming & Reflection": 7, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -757688,7 +757688,7 @@ "Static: Literature & Documentation": "7.7%" }, "Average Risk Exposures": { - "Cognitive Load Exposure": "36.36%", + "Cognitive Load Exposure": "30.69%", "Error & Exception Exposure": "64.63%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "8.24%", @@ -758071,10 +758071,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.7 + "Raw Cognitive Density": 0.4 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "45.02%", + "Cognitive Load Exposure": "19.78%", "Error & Exception Exposure": "89.5%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.37%", @@ -758134,7 +758134,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 4, + "Metaprogramming & Reflection": 1, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -758249,10 +758249,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.046 + "Raw Cognitive Density": 0.975 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "76.55%", + "Cognitive Load Exposure": "71.12%", "Error & Exception Exposure": "100.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.52%", @@ -758332,7 +758332,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 2, + "Metaprogramming & Reflection": 1, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -758447,10 +758447,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.505 + "Raw Cognitive Density": 1.127 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "95.34%", + "Cognitive Load Exposure": "81.9%", "Error & Exception Exposure": "100.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.46%", @@ -758510,7 +758510,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 7, + "Metaprogramming & Reflection": 3, "Module Dependencies (Imports)": 4, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -758629,10 +758629,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.743 + "Raw Cognitive Density": 1.18 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "91.24%", + "Cognitive Load Exposure": "78.82%", "Error & Exception Exposure": "99.96%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", @@ -758792,7 +758792,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 16, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -759157,10 +759157,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.04 + "Raw Cognitive Density": 0.74 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "76.13%", + "Cognitive Load Exposure": "49.0%", "Error & Exception Exposure": "97.55%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.55%", @@ -759230,7 +759230,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 3, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -759681,10 +759681,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.68 + "Raw Cognitive Density": 0.78 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "43.05%", + "Cognitive Load Exposure": "53.0%", "Error & Exception Exposure": "95.63%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.41%", @@ -759744,7 +759744,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, + "Metaprogramming & Reflection": 1, "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, diff --git a/tests/golden_master_zero_dep_audit.json b/tests/golden_master_zero_dep_audit.json index afde83428..0326d88cb 100644 --- a/tests/golden_master_zero_dep_audit.json +++ b/tests/golden_master_zero_dep_audit.json @@ -12,8 +12,8 @@ }, "Target Root Name": "data", "Absolute Project Path": "/home/joe/nyx_projects/language-crucible/data", - "Analysis ISO Timestamp": "2026-09-04T16:25:34.693384+00:00", - "Total Scan Duration": "47.4 seconds" + "Analysis ISO Timestamp": "2026-09-04T17:03:08.777828+00:00", + "Total Scan Duration": "44.94 seconds" }, "Source Control Footprint (Immutable Anchor)": { "Active Branch": "HEAD", @@ -236,10 +236,10 @@ } }, "health": { - "avg_cognitive_load": 23.504, + "avg_cognitive_load": 22.578, "avg_safety_score": 45.662, "avg_tech_debt": 28.878, - "avg_documentation": 10.175 + "avg_documentation": 9.677 }, "composition": { "markdown": { @@ -1724,7 +1724,7 @@ "file_count": 20, "total_mass": 790.32, "avg_exposures": { - "cognitive_load": 55.28, + "cognitive_load": 39.01, "safety_score": 79.38, "tech_debt": 7.99, "verification": 13.97, @@ -1743,7 +1743,7 @@ "file_count": 13, "total_mass": 458.2, "avg_exposures": { - "cognitive_load": 36.36, + "cognitive_load": 30.69, "safety_score": 64.63, "tech_debt": 0.0, "verification": 8.24, @@ -2902,7 +2902,7 @@ "file_count": 15, "total_mass": 60218.62, "avg_exposures": { - "cognitive_load": 71.8, + "cognitive_load": 46.87, "safety_score": 86.69, "tech_debt": 4.31, "verification": 59.2, @@ -2913,7 +2913,7 @@ "spec_match": 60.0, "stability": 46.67, "churn": 0.0, - "documentation": 29.54, + "documentation": 24.41, "secrets_risk": 0.0 } }, @@ -3529,7 +3529,7 @@ "file_count": 14, "total_mass": 624.28, "avg_exposures": { - "cognitive_load": 30.53, + "cognitive_load": 18.16, "safety_score": 29.42, "tech_debt": 11.99, "verification": 13.29, @@ -3540,7 +3540,7 @@ "spec_match": 14.29, "stability": 46.43, "churn": 0.0, - "documentation": 29.06, + "documentation": 13.61, "secrets_risk": 0.0 } }, @@ -3548,7 +3548,7 @@ "file_count": 9, "total_mass": 2059.32, "avg_exposures": { - "cognitive_load": 28.16, + "cognitive_load": 27.38, "safety_score": 35.08, "tech_debt": 37.32, "verification": 28.06, @@ -3559,7 +3559,7 @@ "spec_match": 77.78, "stability": 44.44, "churn": 0.0, - "documentation": 14.19, + "documentation": 5.87, "secrets_risk": 0.0 } }, @@ -3567,7 +3567,7 @@ "file_count": 20, "total_mass": 2457.48, "avg_exposures": { - "cognitive_load": 49.86, + "cognitive_load": 42.63, "safety_score": 47.99, "tech_debt": 8.95, "verification": 6.29, @@ -3578,7 +3578,7 @@ "spec_match": 25.0, "stability": 47.5, "churn": 0.0, - "documentation": 15.1, + "documentation": 8.02, "secrets_risk": 0.0 } }, @@ -3586,7 +3586,7 @@ "file_count": 23, "total_mass": 1005.38, "avg_exposures": { - "cognitive_load": 34.62, + "cognitive_load": 26.08, "safety_score": 76.09, "tech_debt": 0.0, "verification": 15.87, @@ -3605,7 +3605,7 @@ "file_count": 15, "total_mass": 615.66, "avg_exposures": { - "cognitive_load": 50.35, + "cognitive_load": 35.78, "safety_score": 58.91, "tech_debt": 8.21, "verification": 7.35, @@ -4251,7 +4251,7 @@ "file_count": 11, "total_mass": 3975.78, "avg_exposures": { - "cognitive_load": 26.53, + "cognitive_load": 25.34, "safety_score": 51.88, "tech_debt": 17.79, "verification": 23.6, @@ -4555,7 +4555,7 @@ "file_count": 17, "total_mass": 2469.34, "avg_exposures": { - "cognitive_load": 60.15, + "cognitive_load": 47.0, "safety_score": 88.36, "tech_debt": 2.42, "verification": 34.39, @@ -4566,7 +4566,7 @@ "spec_match": 41.18, "stability": 50.0, "churn": 0.0, - "documentation": 14.5, + "documentation": 4.87, "secrets_risk": 0.0 } }, @@ -4574,7 +4574,7 @@ "file_count": 6, "total_mass": 994.12, "avg_exposures": { - "cognitive_load": 74.57, + "cognitive_load": 59.64, "safety_score": 90.33, "tech_debt": 33.22, "verification": 41.22, @@ -4585,7 +4585,7 @@ "spec_match": 66.67, "stability": 50.0, "churn": 0.0, - "documentation": 19.48, + "documentation": 8.97, "secrets_risk": 0.0 } }, @@ -4593,7 +4593,7 @@ "file_count": 24, "total_mass": 1469.34, "avg_exposures": { - "cognitive_load": 47.38, + "cognitive_load": 38.06, "safety_score": 79.55, "tech_debt": 0.0, "verification": 21.86, @@ -4604,7 +4604,7 @@ "spec_match": 25.0, "stability": 50.0, "churn": 0.0, - "documentation": 4.12, + "documentation": 2.89, "secrets_risk": 0.0 } }, @@ -4612,7 +4612,7 @@ "file_count": 23, "total_mass": 6013.0, "avg_exposures": { - "cognitive_load": 49.35, + "cognitive_load": 37.23, "safety_score": 51.31, "tech_debt": 53.45, "verification": 9.23, @@ -4623,7 +4623,7 @@ "spec_match": 52.17, "stability": 50.0, "churn": 0.0, - "documentation": 27.05, + "documentation": 10.26, "secrets_risk": 0.0 } }, @@ -4631,7 +4631,7 @@ "file_count": 13, "total_mass": 2036.02, "avg_exposures": { - "cognitive_load": 71.16, + "cognitive_load": 58.26, "safety_score": 74.07, "tech_debt": 15.61, "verification": 38.24, @@ -4642,7 +4642,7 @@ "spec_match": 61.54, "stability": 50.0, "churn": 0.0, - "documentation": 12.26, + "documentation": 2.89, "secrets_risk": 0.0 } }, @@ -4650,7 +4650,7 @@ "file_count": 23, "total_mass": 633.94, "avg_exposures": { - "cognitive_load": 20.82, + "cognitive_load": 16.56, "safety_score": 76.32, "tech_debt": 44.79, "verification": 5.76, @@ -4661,7 +4661,7 @@ "spec_match": 65.22, "stability": 50.0, "churn": 0.0, - "documentation": 11.55, + "documentation": 5.94, "secrets_risk": 0.0 } }, @@ -6082,19 +6082,19 @@ "cognitive_load": { "highest": [ { - "name": "make-include.sh", - "path": "shell/curl/make-include.sh", + "name": "coroutine.lua", + "path": "lua/cosmopolitan/coroutine.lua", "value": 100.0 }, { - "name": "release.sh", - "path": "shell/kubernetes/release.sh", - "value": 100.0 + "name": "tests.rs", + "path": "rust/tokio/tests.rs", + "value": 99.9912 }, { - "name": "support.sh", - "path": "shell/moby/support.sh", - "value": 100.0 + "name": "big.lua", + "path": "lua/cosmopolitan/big.lua", + "value": 99.9869 } ], "lowest": [ @@ -6736,11 +6736,6 @@ "path": "cobol/che-che4z_nist_ccvs85/IC2244.2.cbl", "value": 737.14 }, - { - "name": "etcd.sh", - "path": "shell/kubernetes/etcd.sh", - "value": 734.57 - }, { "name": "containerbackend.go", "path": "dockerfile/moby/builder/dockerfile/containerbackend.go", @@ -6775,6 +6770,11 @@ "name": "async.ts", "path": "typescript/vscode/async.ts", "value": 724.74 + }, + { + "name": "kubelet.go", + "path": "go/kubernetes/kubelet.go", + "value": 724.19 } ], "lowest": [ @@ -118389,7 +118389,7 @@ "Static: Literature & Documentation": "6.7%" }, "Average Risk Exposures": { - "Cognitive Load Exposure": "71.8%", + "Cognitive Load Exposure": "46.87%", "Error & Exception Exposure": "86.69%", "Tech Debt Exposure": "4.31%", "Testing Exposure": "59.2%", @@ -118400,7 +118400,7 @@ "Specification Exposure": "60.0%", "Instability Exposure": "46.67%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "29.54%", + "Documentation Exposure": "24.41%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -119260,10 +119260,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 2.561 + "Raw Cognitive Density": 1.25 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "99.93%", + "Cognitive Load Exposure": "88.08%", "Error & Exception Exposure": "98.92%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.79%", @@ -119373,7 +119373,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 16, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -119488,10 +119488,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.873 + "Raw Cognitive Density": 0.762 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "98.89%", + "Cognitive Load Exposure": "51.19%", "Error & Exception Exposure": "95.42%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.7%", @@ -119551,7 +119551,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 14, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -119666,10 +119666,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.475 + "Raw Cognitive Density": 0.388 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "94.78%", + "Cognitive Load Exposure": "19.02%", "Error & Exception Exposure": "99.63%", "Tech Debt Exposure": "8.1%", "Testing Exposure": "80.0%", @@ -119680,7 +119680,7 @@ "Specification Exposure": "0.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "88.97%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -119729,7 +119729,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 5, - "Metaprogramming & Reflection": 694, + "Metaprogramming & Reflection": 8, "Module Dependencies (Imports)": 5, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -119850,10 +119850,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.797 + "Raw Cognitive Density": 0.48 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "98.5%", + "Cognitive Load Exposure": "25.36%", "Error & Exception Exposure": "99.92%", "Tech Debt Exposure": "8.14%", "Testing Exposure": "80.0%", @@ -119913,7 +119913,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 5, - "Metaprogramming & Reflection": 780, + "Metaprogramming & Reflection": 12, "Module Dependencies (Imports)": 2, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -120032,10 +120032,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.771 + "Raw Cognitive Density": 0.474 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "98.34%", + "Cognitive Load Exposure": "24.92%", "Error & Exception Exposure": "99.9%", "Tech Debt Exposure": "8.17%", "Testing Exposure": "80.0%", @@ -120095,7 +120095,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 5, - "Metaprogramming & Reflection": 733, + "Metaprogramming & Reflection": 11, "Module Dependencies (Imports)": 2, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -120214,10 +120214,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 3.24 + "Raw Cognitive Density": 0.14 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "100.0%", + "Cognitive Load Exposure": "8.02%", "Error & Exception Exposure": "98.75%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.46%", @@ -120277,7 +120277,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 31, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -437790,7 +437790,7 @@ "Unclassified": "100.0%" }, "Average Risk Exposures": { - "Cognitive Load Exposure": "49.35%", + "Cognitive Load Exposure": "37.23%", "Error & Exception Exposure": "51.31%", "Tech Debt Exposure": "53.45%", "Testing Exposure": "9.23%", @@ -437801,7 +437801,7 @@ "Specification Exposure": "52.17%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "27.05%", + "Documentation Exposure": "10.26%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -437838,10 +437838,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 2.36 + "Raw Cognitive Density": 0.86 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "99.84%", + "Cognitive Load Exposure": "60.83%", "Error & Exception Exposure": "31.62%", "Tech Debt Exposure": "100.0%", "Testing Exposure": "2.55%", @@ -437852,7 +437852,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "98.91%", + "Documentation Exposure": "55.62%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -437911,7 +437911,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 1, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 15, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -438026,10 +438026,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 3.108 + "Raw Cognitive Density": 1.265 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "87.91%", + "Cognitive Load Exposure": "77.98%", "Error & Exception Exposure": "46.67%", "Tech Debt Exposure": "99.92%", "Testing Exposure": "2.71%", @@ -438040,7 +438040,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "98.96%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -438249,7 +438249,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 123, + "Metaprogramming & Reflection": 1, "Module Dependencies (Imports)": 1, "Authorship Metadata": 1, "Planned Work (TODOs)": 2, @@ -438366,10 +438366,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 2.665 + "Raw Cognitive Density": 1.279 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "92.94%", + "Cognitive Load Exposure": "82.98%", "Error & Exception Exposure": "79.12%", "Tech Debt Exposure": "26.72%", "Testing Exposure": "80.0%", @@ -438380,7 +438380,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "98.62%", + "Documentation Exposure": "28.7%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -438609,7 +438609,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 2, - "Metaprogramming & Reflection": 81, + "Metaprogramming & Reflection": 2, "Module Dependencies (Imports)": 1, "Authorship Metadata": 1, "Planned Work (TODOs)": 1, @@ -438727,10 +438727,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 2.964 + "Raw Cognitive Density": 1.25 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "69.99%", + "Cognitive Load Exposure": "61.66%", "Error & Exception Exposure": "75.1%", "Tech Debt Exposure": "99.25%", "Testing Exposure": "80.0%", @@ -438741,7 +438741,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "100.0%", + "Documentation Exposure": "98.69%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -438850,7 +438850,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 1, "Scientific & Mathematical Operations": 2, - "Metaprogramming & Reflection": 36, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -438965,10 +438965,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.35 + "Raw Cognitive Density": 1.05 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "51.34%", + "Cognitive Load Exposure": "43.04%", "Error & Exception Exposure": "69.85%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.47%", @@ -439028,7 +439028,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 4, + "Metaprogramming & Reflection": 1, "Module Dependencies (Imports)": 1, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -439145,10 +439145,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 2.951 + "Raw Cognitive Density": 1.172 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "96.09%", + "Cognitive Load Exposure": "81.12%", "Error & Exception Exposure": "16.39%", "Tech Debt Exposure": "95.31%", "Testing Exposure": "2.63%", @@ -439159,7 +439159,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "99.02%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -440218,7 +440218,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 8, - "Metaprogramming & Reflection": 1019, + "Metaprogramming & Reflection": 15, "Module Dependencies (Imports)": 7, "Authorship Metadata": 1, "Planned Work (TODOs)": 9, @@ -440359,7 +440359,7 @@ "Specification Exposure": "0.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "26.56%", + "Documentation Exposure": "13.3%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -440398,7 +440398,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 4, + "Metaprogramming & Reflection": 1, "Module Dependencies (Imports)": 1, "Authorship Metadata": 1, "Planned Work (TODOs)": 2, @@ -440515,10 +440515,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 4.691 + "Raw Cognitive Density": 1.544 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "93.01%", + "Cognitive Load Exposure": "89.28%", "Error & Exception Exposure": "80.0%", "Tech Debt Exposure": "100.0%", "Testing Exposure": "2.61%", @@ -440529,7 +440529,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "99.99%", + "Documentation Exposure": "15.75%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -440658,7 +440658,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 1, - "Metaprogramming & Reflection": 90, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 1, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -440773,10 +440773,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.438 + "Raw Cognitive Density": 0.281 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "22.27%", + "Cognitive Load Exposure": "13.3%", "Error & Exception Exposure": "83.79%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.46%", @@ -440826,7 +440826,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 2, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -441109,10 +441109,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.27 + "Raw Cognitive Density": 0.87 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "71.12%", + "Cognitive Load Exposure": "49.42%", "Error & Exception Exposure": "53.85%", "Tech Debt Exposure": "50.0%", "Testing Exposure": "2.35%", @@ -441162,7 +441162,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 5, + "Metaprogramming & Reflection": 1, "Module Dependencies (Imports)": 0, "Authorship Metadata": 1, "Planned Work (TODOs)": 1, @@ -441277,10 +441277,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 2.8 + "Raw Cognitive Density": 1.1 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "49.99%", + "Cognitive Load Exposure": "40.11%", "Error & Exception Exposure": "75.92%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.76%", @@ -441370,7 +441370,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 2, - "Metaprogramming & Reflection": 17, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 2, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -441489,10 +441489,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 4.157 + "Raw Cognitive Density": 1.567 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "100.0%", + "Cognitive Load Exposure": "96.33%", "Error & Exception Exposure": "15.36%", "Tech Debt Exposure": "86.5%", "Testing Exposure": "2.9%", @@ -441722,7 +441722,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 6, "Scientific & Mathematical Operations": 9, - "Metaprogramming & Reflection": 275, + "Metaprogramming & Reflection": 3, "Module Dependencies (Imports)": 3, "Authorship Metadata": 1, "Planned Work (TODOs)": 3, @@ -441924,7 +441924,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 18, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -442207,10 +442207,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.98 + "Raw Cognitive Density": 0.78 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "71.5%", + "Cognitive Load Exposure": "53.0%", "Error & Exception Exposure": "91.01%", "Tech Debt Exposure": "100.0%", "Testing Exposure": "2.74%", @@ -442280,7 +442280,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 1, - "Metaprogramming & Reflection": 4, + "Metaprogramming & Reflection": 2, "Module Dependencies (Imports)": 2, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -442398,10 +442398,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 4.586 + "Raw Cognitive Density": 0.947 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "100.0%", + "Cognitive Load Exposure": "68.76%", "Error & Exception Exposure": "9.47%", "Tech Debt Exposure": "99.92%", "Testing Exposure": "2.45%", @@ -442611,7 +442611,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 3, - "Metaprogramming & Reflection": 265, + "Metaprogramming & Reflection": 3, "Module Dependencies (Imports)": 0, "Authorship Metadata": 1, "Planned Work (TODOs)": 1, @@ -442901,7 +442901,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 1, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 1, "Planned Work (TODOs)": 1, @@ -443079,7 +443079,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 26, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -443194,10 +443194,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.647 + "Raw Cognitive Density": 0.279 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "39.85%", + "Cognitive Load Exposure": "13.21%", "Error & Exception Exposure": "83.7%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.46%", @@ -443257,7 +443257,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 5, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -443540,10 +443540,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.28 + "Raw Cognitive Density": 0.48 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "89.28%", + "Cognitive Load Exposure": "25.35%", "Error & Exception Exposure": "73.66%", "Tech Debt Exposure": "99.33%", "Testing Exposure": "2.35%", @@ -443593,7 +443593,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 9, + "Metaprogramming & Reflection": 1, "Module Dependencies (Imports)": 1, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -443763,7 +443763,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 6, + "Metaprogramming & Reflection": 3, "Module Dependencies (Imports)": 3, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -484212,7 +484212,7 @@ "Unclassified": "100.0%" }, "Average Risk Exposures": { - "Cognitive Load Exposure": "26.53%", + "Cognitive Load Exposure": "25.34%", "Error & Exception Exposure": "51.88%", "Tech Debt Exposure": "17.79%", "Testing Exposure": "23.6%", @@ -484428,10 +484428,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.995 + "Raw Cognitive Density": 1.179 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "89.18%", + "Cognitive Load Exposure": "76.09%", "Error & Exception Exposure": "99.16%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", @@ -484531,7 +484531,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 16, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -542365,7 +542365,7 @@ "Unclassified": "100.0%" }, "Average Risk Exposures": { - "Cognitive Load Exposure": "60.15%", + "Cognitive Load Exposure": "47.0%", "Error & Exception Exposure": "88.36%", "Tech Debt Exposure": "2.42%", "Testing Exposure": "34.39%", @@ -542376,7 +542376,7 @@ "Specification Exposure": "41.18%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "14.5%", + "Documentation Exposure": "4.87%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -542413,10 +542413,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.6 + "Raw Cognitive Density": 1.1 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "96.77%", + "Cognitive Load Exposure": "80.22%", "Error & Exception Exposure": "99.99%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", @@ -542516,7 +542516,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 5, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -543175,10 +543175,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.569 + "Raw Cognitive Density": 0.492 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "32.67%", + "Cognitive Load Exposure": "26.29%", "Error & Exception Exposure": "91.68%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.52%", @@ -543258,7 +543258,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 2, - "Metaprogramming & Reflection": 2, + "Metaprogramming & Reflection": 1, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -543373,10 +543373,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.62 + "Raw Cognitive Density": 0.82 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "97.01%", + "Cognitive Load Exposure": "56.95%", "Error & Exception Exposure": "84.74%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.43%", @@ -543436,7 +543436,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 9, + "Metaprogramming & Reflection": 1, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -543551,10 +543551,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.12 + "Raw Cognitive Density": 0.62 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "81.46%", + "Cognitive Load Exposure": "37.29%", "Error & Exception Exposure": "96.86%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.48%", @@ -543614,7 +543614,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 5, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -543729,10 +543729,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 2.7 + "Raw Cognitive Density": 1.1 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "99.96%", + "Cognitive Load Exposure": "80.22%", "Error & Exception Exposure": "89.5%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.59%", @@ -543802,7 +543802,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 20, + "Metaprogramming & Reflection": 4, "Module Dependencies (Imports)": 0, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -543917,10 +543917,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.47 + "Raw Cognitive Density": 1.089 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "94.69%", + "Cognitive Load Exposure": "79.51%", "Error & Exception Exposure": "100.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", @@ -543931,7 +543931,7 @@ "Specification Exposure": "0.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "20.58%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -544060,7 +544060,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 1, - "Metaprogramming & Reflection": 9, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -544175,10 +544175,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.9 + "Raw Cognitive Density": 0.5 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "64.57%", + "Cognitive Load Exposure": "26.89%", "Error & Exception Exposure": "78.34%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.58%", @@ -544258,7 +544258,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 4, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -544373,10 +544373,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 2.457 + "Raw Cognitive Density": 1.25 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "99.89%", + "Cognitive Load Exposure": "88.08%", "Error & Exception Exposure": "98.61%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", @@ -544387,7 +544387,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "94.39%", + "Documentation Exposure": "24.93%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -544466,7 +544466,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 21, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -544851,10 +544851,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 2.452 + "Raw Cognitive Density": 1.379 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "99.89%", + "Cognitive Load Exposure": "92.53%", "Error & Exception Exposure": "100.0%", "Tech Debt Exposure": "10.18%", "Testing Exposure": "80.0%", @@ -545074,7 +545074,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 5, - "Metaprogramming & Reflection": 93, + "Metaprogramming & Reflection": 10, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 1, @@ -545242,7 +545242,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 4, + "Metaprogramming & Reflection": 2, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -545357,10 +545357,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.74 + "Raw Cognitive Density": 0.64 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "49.0%", + "Cognitive Load Exposure": "39.17%", "Error & Exception Exposure": "94.42%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.45%", @@ -545420,7 +545420,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 1, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -545535,10 +545535,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.605 + "Raw Cognitive Density": 0.573 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "34.75%", + "Cognitive Load Exposure": "31.92%", "Error & Exception Exposure": "90.05%", "Tech Debt Exposure": "30.98%", "Testing Exposure": "80.0%", @@ -545549,7 +545549,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "17.05%", + "Documentation Exposure": "15.4%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -545608,7 +545608,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 6, - "Metaprogramming & Reflection": 6, + "Metaprogramming & Reflection": 4, "Module Dependencies (Imports)": 2, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -545727,10 +545727,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 3.961 + "Raw Cognitive Density": 1.25 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "100.0%", + "Cognitive Load Exposure": "88.08%", "Error & Exception Exposure": "89.61%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", @@ -545741,7 +545741,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "99.98%", + "Documentation Exposure": "16.04%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -545830,7 +545830,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 122, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -545922,7 +545922,7 @@ "Static: Literature & Documentation": "5.0%" }, "Average Risk Exposures": { - "Cognitive Load Exposure": "49.86%", + "Cognitive Load Exposure": "42.63%", "Error & Exception Exposure": "47.99%", "Tech Debt Exposure": "8.95%", "Testing Exposure": "6.29%", @@ -545933,7 +545933,7 @@ "Specification Exposure": "25.0%", "Instability Exposure": "47.5%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "15.1%", + "Documentation Exposure": "8.02%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -546127,10 +546127,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 3.86 + "Raw Cognitive Density": 1.36 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "75.61%", + "Cognitive Load Exposure": "69.54%", "Error & Exception Exposure": "37.89%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.99%", @@ -546230,7 +546230,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 41, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 2, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -546347,10 +546347,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.32 + "Raw Cognitive Density": 0.22 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "15.19%", + "Cognitive Load Exposure": "10.72%", "Error & Exception Exposure": "56.39%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.56%", @@ -546410,7 +546410,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 1, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 1, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -546528,10 +546528,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 3.35 + "Raw Cognitive Density": 1.25 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "100.0%", + "Cognitive Load Exposure": "88.08%", "Error & Exception Exposure": "60.55%", "Tech Debt Exposure": "99.33%", "Testing Exposure": "2.8%", @@ -546591,7 +546591,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 21, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -546759,7 +546759,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 1, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -546874,10 +546874,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.585 + "Raw Cognitive Density": 1.491 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "96.58%", + "Cognitive Load Exposure": "95.08%", "Error & Exception Exposure": "93.78%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.58%", @@ -546957,7 +546957,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 1, - "Metaprogramming & Reflection": 7, + "Metaprogramming & Reflection": 6, "Module Dependencies (Imports)": 0, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -547072,10 +547072,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.769 + "Raw Cognitive Density": 1.676 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "98.33%", + "Cognitive Load Exposure": "97.6%", "Error & Exception Exposure": "98.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.7%", @@ -547175,7 +547175,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 7, + "Metaprogramming & Reflection": 6, "Module Dependencies (Imports)": 0, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -547460,10 +547460,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.32 + "Raw Cognitive Density": 0.52 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "90.72%", + "Cognitive Load Exposure": "28.5%", "Error & Exception Exposure": "50.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.46%", @@ -547523,7 +547523,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 8, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -547638,10 +547638,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.715 + "Raw Cognitive Density": 1.498 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "97.94%", + "Cognitive Load Exposure": "95.23%", "Error & Exception Exposure": "98.91%", "Tech Debt Exposure": "8.99%", "Testing Exposure": "80.0%", @@ -547652,7 +547652,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "18.99%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -547961,7 +547961,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 1, - "Metaprogramming & Reflection": 30, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 2, "Authorship Metadata": 1, "Planned Work (TODOs)": 2, @@ -548078,10 +548078,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.24 + "Raw Cognitive Density": 0.94 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "87.65%", + "Cognitive Load Exposure": "68.14%", "Error & Exception Exposure": "81.11%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.56%", @@ -548161,7 +548161,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 4, + "Metaprogramming & Reflection": 1, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -548444,10 +548444,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 4.244 + "Raw Cognitive Density": 1.509 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "88.24%", + "Cognitive Load Exposure": "84.19%", "Error & Exception Exposure": "55.97%", "Tech Debt Exposure": "70.73%", "Testing Exposure": "2.8%", @@ -548458,7 +548458,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "99.99%", + "Documentation Exposure": "42.83%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -548607,7 +548607,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 3, - "Metaprogramming & Reflection": 103, + "Metaprogramming & Reflection": 10, "Module Dependencies (Imports)": 2, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -548728,10 +548728,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 5.05 + "Raw Cognitive Density": 1.25 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "100.0%", + "Cognitive Load Exposure": "88.08%", "Error & Exception Exposure": "35.43%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.5%", @@ -548831,7 +548831,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 39, + "Metaprogramming & Reflection": 1, "Module Dependencies (Imports)": 1, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -548949,10 +548949,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 7.404 + "Raw Cognitive Density": 1.442 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "50.0%", + "Cognitive Load Exposure": "47.05%", "Error & Exception Exposure": "90.75%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.65%", @@ -549072,7 +549072,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 64, + "Metaprogramming & Reflection": 2, "Module Dependencies (Imports)": 1, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -549190,10 +549190,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 4.723 + "Raw Cognitive Density": 1.59 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "60.0%", + "Cognitive Load Exposure": "57.99%", "Error & Exception Exposure": "78.39%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.71%", @@ -549204,7 +549204,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "99.99%", + "Documentation Exposure": "34.23%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -549253,7 +549253,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 53, + "Metaprogramming & Reflection": 6, "Module Dependencies (Imports)": 1, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -549539,10 +549539,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.56 + "Raw Cognitive Density": 0.36 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "31.86%", + "Cognitive Load Exposure": "17.36%", "Error & Exception Exposure": "54.28%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.41%", @@ -549553,7 +549553,7 @@ "Specification Exposure": "0.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "34.52%", + "Documentation Exposure": "22.94%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -549612,7 +549612,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 4, + "Metaprogramming & Reflection": 2, "Module Dependencies (Imports)": 0, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -549780,7 +549780,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 1, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -549948,7 +549948,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 1, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -579045,7 +579045,7 @@ "Static: Literature & Documentation": "11.1%" }, "Average Risk Exposures": { - "Cognitive Load Exposure": "28.16%", + "Cognitive Load Exposure": "27.38%", "Error & Exception Exposure": "35.08%", "Tech Debt Exposure": "37.32%", "Testing Exposure": "28.06%", @@ -579056,7 +579056,7 @@ "Specification Exposure": "77.78%", "Instability Exposure": "44.44%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "14.19%", + "Documentation Exposure": "5.87%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -579450,10 +579450,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 2.426 + "Raw Cognitive Density": 1.355 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "87.29%", + "Cognitive Load Exposure": "80.26%", "Error & Exception Exposure": "23.56%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.87%", @@ -579464,7 +579464,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "90.74%", + "Documentation Exposure": "15.82%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -579773,7 +579773,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 56, + "Metaprogramming & Reflection": 5, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -583054,7 +583054,7 @@ "Unclassified": "100.0%" }, "Average Risk Exposures": { - "Cognitive Load Exposure": "71.16%", + "Cognitive Load Exposure": "58.26%", "Error & Exception Exposure": "74.07%", "Tech Debt Exposure": "15.61%", "Testing Exposure": "38.24%", @@ -583065,7 +583065,7 @@ "Specification Exposure": "61.54%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "12.26%", + "Documentation Exposure": "2.89%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -583102,10 +583102,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.766 + "Raw Cognitive Density": 1.231 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "98.31%", + "Cognitive Load Exposure": "87.25%", "Error & Exception Exposure": "93.44%", "Tech Debt Exposure": "14.87%", "Testing Exposure": "80.0%", @@ -583515,7 +583515,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 51, + "Metaprogramming & Reflection": 12, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 1, @@ -583630,10 +583630,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.86 + "Raw Cognitive Density": 0.76 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "98.83%", + "Cognitive Load Exposure": "51.0%", "Error & Exception Exposure": "73.66%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.42%", @@ -583693,7 +583693,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 11, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -583986,10 +583986,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 3.311 + "Raw Cognitive Density": 1.826 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "100.0%", + "Cognitive Load Exposure": "98.66%", "Error & Exception Exposure": "97.84%", "Tech Debt Exposure": "43.91%", "Testing Exposure": "80.0%", @@ -584000,7 +584000,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "84.0%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -584239,7 +584239,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 95, + "Metaprogramming & Reflection": 2, "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 1, @@ -584356,10 +584356,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.359 + "Raw Cognitive Density": 1.25 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "85.25%", + "Cognitive Load Exposure": "81.65%", "Error & Exception Exposure": "98.14%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", @@ -584539,7 +584539,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 3, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -584654,10 +584654,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.886 + "Raw Cognitive Density": 1.205 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "98.95%", + "Cognitive Load Exposure": "86.03%", "Error & Exception Exposure": "99.99%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", @@ -584787,7 +584787,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 2, - "Metaprogramming & Reflection": 12, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -584902,10 +584902,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.81 + "Raw Cognitive Density": 1.178 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "98.58%", + "Cognitive Load Exposure": "84.69%", "Error & Exception Exposure": "99.34%", "Tech Debt Exposure": "15.82%", "Testing Exposure": "80.0%", @@ -584916,7 +584916,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "63.46%", + "Documentation Exposure": "13.77%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -585065,7 +585065,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 26, - "Metaprogramming & Reflection": 42, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 4, @@ -585182,10 +585182,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.0 + "Raw Cognitive Density": 0.911 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "73.11%", + "Cognitive Load Exposure": "65.54%", "Error & Exception Exposure": "96.75%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.5%", @@ -585285,7 +585285,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 1, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -585400,10 +585400,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.474 + "Raw Cognitive Density": 0.09 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "24.93%", + "Cognitive Load Exposure": "6.65%", "Error & Exception Exposure": "48.47%", "Tech Debt Exposure": "28.96%", "Testing Exposure": "2.33%", @@ -585463,7 +585463,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 6, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 1, @@ -585578,10 +585578,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.68 + "Raw Cognitive Density": 0.98 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "97.63%", + "Cognitive Load Exposure": "71.5%", "Error & Exception Exposure": "83.6%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.57%", @@ -585661,7 +585661,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 8, + "Metaprogramming & Reflection": 1, "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -585956,10 +585956,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 4.553 + "Raw Cognitive Density": 1.48 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "100.0%", + "Cognitive Load Exposure": "94.87%", "Error & Exception Exposure": "98.07%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", @@ -586089,7 +586089,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 2, - "Metaprogramming & Reflection": 77, + "Metaprogramming & Reflection": 2, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -586204,10 +586204,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.5 + "Raw Cognitive Density": 0.1 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "26.89%", + "Cognitive Load Exposure": "6.91%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.39%", @@ -586267,7 +586267,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 4, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -630032,7 +630032,7 @@ "Unclassified": "100.0%" }, "Average Risk Exposures": { - "Cognitive Load Exposure": "47.38%", + "Cognitive Load Exposure": "38.06%", "Error & Exception Exposure": "79.55%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "21.86%", @@ -630043,7 +630043,7 @@ "Specification Exposure": "25.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "4.12%", + "Documentation Exposure": "2.89%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -630436,10 +630436,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.523 + "Raw Cognitive Density": 1.19 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "95.66%", + "Cognitive Load Exposure": "85.32%", "Error & Exception Exposure": "99.99%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.71%", @@ -630509,7 +630509,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 3, - "Metaprogramming & Reflection": 5, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -630624,10 +630624,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.92 + "Raw Cognitive Density": 0.62 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "66.37%", + "Cognitive Load Exposure": "37.29%", "Error & Exception Exposure": "97.55%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.58%", @@ -630687,7 +630687,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 3, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -630802,10 +630802,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.9 + "Raw Cognitive Density": 0.7 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "64.57%", + "Cognitive Load Exposure": "45.02%", "Error & Exception Exposure": "99.65%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.59%", @@ -630885,7 +630885,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 2, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -631000,10 +631000,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 2.355 + "Raw Cognitive Density": 1.25 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "99.84%", + "Cognitive Load Exposure": "88.08%", "Error & Exception Exposure": "99.98%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", @@ -631143,7 +631143,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 2, - "Metaprogramming & Reflection": 19, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -631258,10 +631258,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.282 + "Raw Cognitive Density": 1.25 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "89.36%", + "Cognitive Load Exposure": "88.08%", "Error & Exception Exposure": "99.94%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", @@ -631341,7 +631341,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 1, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -631456,10 +631456,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.32 + "Raw Cognitive Density": 0.22 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "15.19%", + "Cognitive Load Exposure": "10.72%", "Error & Exception Exposure": "68.38%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.41%", @@ -631519,7 +631519,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 1, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 2, "Planned Work (TODOs)": 0, @@ -632148,10 +632148,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.368 + "Raw Cognitive Density": 1.25 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "92.21%", + "Cognitive Load Exposure": "88.08%", "Error & Exception Exposure": "100.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", @@ -632311,7 +632311,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 2, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 2, "Planned Work (TODOs)": 0, @@ -632426,10 +632426,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.28 + "Raw Cognitive Density": 0.18 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "13.24%", + "Cognitive Load Exposure": "9.28%", "Error & Exception Exposure": "88.67%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.48%", @@ -632489,7 +632489,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 1, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -632604,10 +632604,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.438 + "Raw Cognitive Density": 1.003 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "94.0%", + "Cognitive Load Exposure": "73.35%", "Error & Exception Exposure": "100.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", @@ -632707,7 +632707,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 36, - "Metaprogramming & Reflection": 14, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 2, "Authorship Metadata": 2, "Planned Work (TODOs)": 0, @@ -632877,7 +632877,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 1, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -632992,10 +632992,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.611 + "Raw Cognitive Density": 1.431 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "96.91%", + "Cognitive Load Exposure": "93.84%", "Error & Exception Exposure": "99.99%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", @@ -633006,7 +633006,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "18.42%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -633115,7 +633115,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 6, + "Metaprogramming & Reflection": 3, "Module Dependencies (Imports)": 0, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -633408,10 +633408,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.8 + "Raw Cognitive Density": 0.5 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "54.98%", + "Cognitive Load Exposure": "26.89%", "Error & Exception Exposure": "85.81%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.49%", @@ -633491,7 +633491,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 3, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -633606,10 +633606,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.814 + "Raw Cognitive Density": 0.729 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "56.32%", + "Cognitive Load Exposure": "47.88%", "Error & Exception Exposure": "92.46%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.51%", @@ -633659,7 +633659,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 1, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -633774,10 +633774,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.78 + "Raw Cognitive Density": 0.38 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "53.0%", + "Cognitive Load Exposure": "18.54%", "Error & Exception Exposure": "89.5%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.38%", @@ -633827,7 +633827,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 4, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -633945,10 +633945,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.38 + "Raw Cognitive Density": 0.28 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "18.54%", + "Cognitive Load Exposure": "13.24%", "Error & Exception Exposure": "92.9%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.56%", @@ -634008,7 +634008,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 1, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -634123,10 +634123,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.6 + "Raw Cognitive Density": 0.5 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "28.35%", + "Cognitive Load Exposure": "21.52%", "Error & Exception Exposure": "99.95%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.63%", @@ -634196,7 +634196,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 1, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -634311,10 +634311,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.346 + "Raw Cognitive Density": 1.038 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "91.56%", + "Cognitive Load Exposure": "76.02%", "Error & Exception Exposure": "99.38%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", @@ -634325,7 +634325,7 @@ "Specification Exposure": "0.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "56.5%", + "Documentation Exposure": "33.64%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -634404,7 +634404,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 1, - "Metaprogramming & Reflection": 5, + "Metaprogramming & Reflection": 1, "Module Dependencies (Imports)": 0, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -634521,10 +634521,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.06 + "Raw Cognitive Density": 0.86 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "77.56%", + "Cognitive Load Exposure": "60.83%", "Error & Exception Exposure": "95.63%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.86%", @@ -634614,7 +634614,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 2, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -662120,7 +662120,7 @@ "Static: Literature & Documentation": "4.3%" }, "Average Risk Exposures": { - "Cognitive Load Exposure": "34.62%", + "Cognitive Load Exposure": "26.08%", "Error & Exception Exposure": "76.09%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "15.87%", @@ -663067,10 +663067,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.89 + "Raw Cognitive Density": 0.99 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "98.96%", + "Cognitive Load Exposure": "72.31%", "Error & Exception Exposure": "99.92%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.6%", @@ -663150,7 +663150,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 4, - "Metaprogramming & Reflection": 9, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 2, "Planned Work (TODOs)": 0, @@ -663775,10 +663775,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 2.95 + "Raw Cognitive Density": 1.25 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "99.98%", + "Cognitive Load Exposure": "88.08%", "Error & Exception Exposure": "89.5%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.85%", @@ -663848,7 +663848,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 17, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 2, "Planned Work (TODOs)": 0, @@ -663963,10 +663963,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.82 + "Raw Cognitive Density": 0.62 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "56.95%", + "Cognitive Load Exposure": "37.29%", "Error & Exception Exposure": "99.91%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "3.0%", @@ -664046,7 +664046,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 2, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -664527,10 +664527,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.606 + "Raw Cognitive Density": 0.577 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "35.96%", + "Cognitive Load Exposure": "33.36%", "Error & Exception Exposure": "88.65%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", @@ -664680,7 +664680,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 9, + "Metaprogramming & Reflection": 5, "Module Dependencies (Imports)": 2, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -664798,10 +664798,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.66 + "Raw Cognitive Density": 0.56 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "41.1%", + "Cognitive Load Exposure": "31.86%", "Error & Exception Exposure": "99.89%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.91%", @@ -664881,7 +664881,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 1, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -664996,10 +664996,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.535 + "Raw Cognitive Density": 1.381 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "95.85%", + "Cognitive Load Exposure": "92.57%", "Error & Exception Exposure": "99.8%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", @@ -665089,7 +665089,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 2, - "Metaprogramming & Reflection": 4, + "Metaprogramming & Reflection": 2, "Module Dependencies (Imports)": 0, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -665206,10 +665206,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.64 + "Raw Cognitive Density": 0.44 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "39.17%", + "Cognitive Load Exposure": "22.44%", "Error & Exception Exposure": "75.29%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.49%", @@ -665279,7 +665279,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 2, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -665562,10 +665562,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.34 + "Raw Cognitive Density": 0.74 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "91.37%", + "Cognitive Load Exposure": "49.0%", "Error & Exception Exposure": "98.1%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.53%", @@ -665625,7 +665625,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 4, - "Metaprogramming & Reflection": 6, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -665740,10 +665740,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.44 + "Raw Cognitive Density": 0.54 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "94.05%", + "Cognitive Load Exposure": "30.15%", "Error & Exception Exposure": "70.21%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.46%", @@ -665803,7 +665803,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 1, - "Metaprogramming & Reflection": 9, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -666404,7 +666404,7 @@ "Unclassified": "100.0%" }, "Average Risk Exposures": { - "Cognitive Load Exposure": "74.57%", + "Cognitive Load Exposure": "59.64%", "Error & Exception Exposure": "90.33%", "Tech Debt Exposure": "33.22%", "Testing Exposure": "41.22%", @@ -666415,7 +666415,7 @@ "Specification Exposure": "66.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "19.48%", + "Documentation Exposure": "8.97%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -666452,10 +666452,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 2.572 + "Raw Cognitive Density": 1.555 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "99.93%", + "Cognitive Load Exposure": "96.16%", "Error & Exception Exposure": "99.99%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", @@ -666555,7 +666555,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 1, - "Metaprogramming & Reflection": 24, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -666670,10 +666670,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.897 + "Raw Cognitive Density": 1.233 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "98.99%", + "Cognitive Load Exposure": "87.33%", "Error & Exception Exposure": "99.82%", "Tech Debt Exposure": "100.0%", "Testing Exposure": "80.0%", @@ -666684,7 +666684,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "48.72%", + "Documentation Exposure": "12.79%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -667533,7 +667533,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 17, - "Metaprogramming & Reflection": 78, + "Metaprogramming & Reflection": 4, "Module Dependencies (Imports)": 6, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -667823,10 +667823,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.78 + "Raw Cognitive Density": 0.28 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "53.0%", + "Cognitive Load Exposure": "13.24%", "Error & Exception Exposure": "73.66%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.37%", @@ -667876,7 +667876,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 2, - "Metaprogramming & Reflection": 5, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -667991,10 +667991,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.757 + "Raw Cognitive Density": 1.395 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "98.25%", + "Cognitive Load Exposure": "92.95%", "Error & Exception Exposure": "100.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", @@ -668005,7 +668005,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "68.18%", + "Documentation Exposure": "41.06%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -668104,7 +668104,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 4, - "Metaprogramming & Reflection": 7, + "Metaprogramming & Reflection": 2, "Module Dependencies (Imports)": 0, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -668219,10 +668219,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.64 + "Raw Cognitive Density": 0.94 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "97.23%", + "Cognitive Load Exposure": "68.14%", "Error & Exception Exposure": "94.85%", "Tech Debt Exposure": "99.33%", "Testing Exposure": "2.61%", @@ -668312,7 +668312,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 7, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -687713,7 +687713,7 @@ "Static: Literature & Documentation": "5.0%" }, "Average Risk Exposures": { - "Cognitive Load Exposure": "55.28%", + "Cognitive Load Exposure": "39.01%", "Error & Exception Exposure": "79.38%", "Tech Debt Exposure": "7.99%", "Testing Exposure": "13.97%", @@ -687918,10 +687918,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.524 + "Raw Cognitive Density": 0.78 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "95.68%", + "Cognitive Load Exposure": "52.99%", "Error & Exception Exposure": "99.44%", "Tech Debt Exposure": "21.65%", "Testing Exposure": "80.0%", @@ -688101,7 +688101,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 2, - "Metaprogramming & Reflection": 46, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -688592,10 +688592,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.64 + "Raw Cognitive Density": 1.44 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "97.23%", + "Cognitive Load Exposure": "94.05%", "Error & Exception Exposure": "98.39%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.5%", @@ -688655,7 +688655,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 2, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -689116,10 +689116,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.98 + "Raw Cognitive Density": 0.88 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "71.5%", + "Cognitive Load Exposure": "62.71%", "Error & Exception Exposure": "99.81%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.52%", @@ -689189,7 +689189,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 4, + "Metaprogramming & Reflection": 3, "Module Dependencies (Imports)": 0, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -689304,10 +689304,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.2 + "Raw Cognitive Density": 0.1 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "9.97%", + "Cognitive Load Exposure": "6.91%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.4%", @@ -689367,7 +689367,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 1, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -689482,10 +689482,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.98 + "Raw Cognitive Density": 0.68 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "71.5%", + "Cognitive Load Exposure": "43.05%", "Error & Exception Exposure": "98.52%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.38%", @@ -689545,7 +689545,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 1, - "Metaprogramming & Reflection": 3, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -689660,10 +689660,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 2.208 + "Raw Cognitive Density": 0.583 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "99.71%", + "Cognitive Load Exposure": "33.92%", "Error & Exception Exposure": "98.85%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", @@ -689863,7 +689863,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 79, + "Metaprogramming & Reflection": 1, "Module Dependencies (Imports)": 0, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -689978,10 +689978,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.94 + "Raw Cognitive Density": 0.74 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "68.14%", + "Cognitive Load Exposure": "49.0%", "Error & Exception Exposure": "97.93%", "Tech Debt Exposure": "50.0%", "Testing Exposure": "2.44%", @@ -690041,7 +690041,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 2, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 1, @@ -690156,10 +690156,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.316 + "Raw Cognitive Density": 1.231 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "90.59%", + "Cognitive Load Exposure": "87.25%", "Error & Exception Exposure": "90.7%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", @@ -690289,7 +690289,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 4, + "Metaprogramming & Reflection": 2, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -690457,7 +690457,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 1, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -690572,10 +690572,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.18 + "Raw Cognitive Density": 0.58 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "84.81%", + "Cognitive Load Exposure": "33.63%", "Error & Exception Exposure": "100.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.65%", @@ -690625,7 +690625,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 6, - "Metaprogramming & Reflection": 6, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -690740,10 +690740,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.92 + "Raw Cognitive Density": 0.62 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "66.37%", + "Cognitive Load Exposure": "37.29%", "Error & Exception Exposure": "96.59%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.47%", @@ -690803,7 +690803,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 1, - "Metaprogramming & Reflection": 4, + "Metaprogramming & Reflection": 1, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -691106,10 +691106,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.66 + "Raw Cognitive Density": 0.36 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "41.1%", + "Cognitive Load Exposure": "17.36%", "Error & Exception Exposure": "99.03%", "Tech Debt Exposure": "88.08%", "Testing Exposure": "2.43%", @@ -691169,7 +691169,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 3, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -691284,10 +691284,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.54 + "Raw Cognitive Density": 1.04 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "95.93%", + "Cognitive Load Exposure": "76.13%", "Error & Exception Exposure": "99.81%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.64%", @@ -691367,7 +691367,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 5, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -691482,10 +691482,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.76 + "Raw Cognitive Density": 0.46 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "51.0%", + "Cognitive Load Exposure": "23.87%", "Error & Exception Exposure": "99.03%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.4%", @@ -691545,7 +691545,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 3, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -712335,7 +712335,7 @@ "Unclassified": "100.0%" }, "Average Risk Exposures": { - "Cognitive Load Exposure": "20.82%", + "Cognitive Load Exposure": "16.56%", "Error & Exception Exposure": "76.32%", "Tech Debt Exposure": "44.79%", "Testing Exposure": "5.76%", @@ -712346,7 +712346,7 @@ "Specification Exposure": "65.22%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "11.55%", + "Documentation Exposure": "5.94%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -712383,10 +712383,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.293 + "Raw Cognitive Density": 1.006 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "89.77%", + "Cognitive Load Exposure": "73.56%", "Error & Exception Exposure": "89.91%", "Tech Debt Exposure": "52.15%", "Testing Exposure": "80.0%", @@ -712397,7 +712397,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "46.01%", + "Documentation Exposure": "25.08%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -712476,7 +712476,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 5, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -712654,7 +712654,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 5, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -712852,7 +712852,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 3, + "Metaprogramming & Reflection": 1, "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -713022,7 +713022,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 2, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -713137,10 +713137,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 2.55 + "Raw Cognitive Density": 0.85 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "99.93%", + "Cognitive Load Exposure": "59.87%", "Error & Exception Exposure": "96.86%", "Tech Debt Exposure": "73.11%", "Testing Exposure": "2.37%", @@ -713220,7 +713220,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 17, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -713408,7 +713408,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 4, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -713537,7 +713537,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "36.09%", + "Documentation Exposure": "19.33%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -713586,7 +713586,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 3, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -713754,7 +713754,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 1, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -713952,7 +713952,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 15, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -714120,7 +714120,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 2, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -714308,7 +714308,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 4, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -714437,7 +714437,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "50.0%", + "Documentation Exposure": "19.33%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -714506,7 +714506,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 5, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -714674,7 +714674,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 3, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -714862,7 +714862,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 3, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -715040,7 +715040,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 5, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -715228,7 +715228,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 6, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -715357,7 +715357,7 @@ "Specification Exposure": "0.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "47.64%", + "Documentation Exposure": "27.86%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -715396,7 +715396,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 3, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -715511,10 +715511,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 2.467 + "Raw Cognitive Density": 1.335 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "62.2%", + "Cognitive Load Exposure": "56.79%", "Error & Exception Exposure": "99.13%", "Tech Debt Exposure": "85.14%", "Testing Exposure": "2.68%", @@ -715594,7 +715594,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 13, + "Metaprogramming & Reflection": 1, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -715709,10 +715709,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.64 + "Raw Cognitive Density": 1.31 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "97.24%", + "Cognitive Load Exposure": "90.39%", "Error & Exception Exposure": "99.94%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.51%", @@ -715723,7 +715723,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "54.05%", + "Documentation Exposure": "28.52%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -715802,7 +715802,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 6, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -715970,7 +715970,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 1, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -716085,10 +716085,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 4.35 + "Raw Cognitive Density": 1.25 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "100.0%", + "Cognitive Load Exposure": "88.08%", "Error & Exception Exposure": "58.49%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.87%", @@ -716198,7 +716198,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 31, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -716388,7 +716388,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 6, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -716503,10 +716503,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.62 + "Raw Cognitive Density": 0.32 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "29.83%", + "Cognitive Load Exposure": "12.15%", "Error & Exception Exposure": "83.36%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.51%", @@ -716517,7 +716517,7 @@ "Specification Exposure": "0.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "31.83%", + "Documentation Exposure": "16.54%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -716586,7 +716586,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 3, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -716678,7 +716678,7 @@ "Static: Literature & Documentation": "7.1%" }, "Average Risk Exposures": { - "Cognitive Load Exposure": "30.53%", + "Cognitive Load Exposure": "18.16%", "Error & Exception Exposure": "29.42%", "Tech Debt Exposure": "11.99%", "Testing Exposure": "13.29%", @@ -716689,7 +716689,7 @@ "Specification Exposure": "14.29%", "Instability Exposure": "46.43%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "29.06%", + "Documentation Exposure": "13.61%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -716883,10 +716883,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.76 + "Raw Cognitive Density": 0.26 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "51.0%", + "Cognitive Load Exposure": "12.35%", "Error & Exception Exposure": "66.5%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.37%", @@ -716946,7 +716946,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 5, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -717407,10 +717407,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 3.083 + "Raw Cognitive Density": 1.858 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "99.99%", + "Cognitive Load Exposure": "98.82%", "Error & Exception Exposure": "90.92%", "Tech Debt Exposure": "57.9%", "Testing Exposure": "80.0%", @@ -717421,7 +717421,7 @@ "Specification Exposure": "0.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "99.48%", + "Documentation Exposure": "68.87%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -717490,7 +717490,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 75, + "Metaprogramming & Reflection": 25, "Module Dependencies (Imports)": 6, "Authorship Metadata": 0, "Planned Work (TODOs)": 1, @@ -717610,10 +717610,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 2.718 + "Raw Cognitive Density": 0.48 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "99.96%", + "Cognitive Load Exposure": "25.39%", "Error & Exception Exposure": "11.17%", "Tech Debt Exposure": "10.67%", "Testing Exposure": "80.0%", @@ -717624,7 +717624,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "99.81%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -717703,7 +717703,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 149, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 2, "Authorship Metadata": 0, "Planned Work (TODOs)": 1, @@ -718168,10 +718168,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 3.804 + "Raw Cognitive Density": 0.912 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "100.0%", + "Cognitive Load Exposure": "65.63%", "Error & Exception Exposure": "0.76%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.48%", @@ -718182,7 +718182,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "99.98%", + "Documentation Exposure": "26.64%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -718271,7 +718271,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 59, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -718607,7 +718607,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 6, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -718736,7 +718736,7 @@ "Specification Exposure": "0.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "45.37%", + "Documentation Exposure": "20.94%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -718775,7 +718775,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 4, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -719058,10 +719058,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 2.14 + "Raw Cognitive Density": 0.84 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "59.77%", + "Cognitive Load Exposure": "35.34%", "Error & Exception Exposure": "51.29%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.61%", @@ -719121,7 +719121,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 13, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -719213,7 +719213,7 @@ "Static: Literature & Documentation": "6.7%" }, "Average Risk Exposures": { - "Cognitive Load Exposure": "50.35%", + "Cognitive Load Exposure": "35.78%", "Error & Exception Exposure": "58.91%", "Tech Debt Exposure": "8.21%", "Testing Exposure": "7.35%", @@ -719418,10 +719418,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.74 + "Raw Cognitive Density": 0.64 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "49.0%", + "Cognitive Load Exposure": "39.17%", "Error & Exception Exposure": "94.42%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.47%", @@ -719491,7 +719491,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 1, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -719606,10 +719606,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.54 + "Raw Cognitive Density": 0.44 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "30.15%", + "Cognitive Load Exposure": "22.44%", "Error & Exception Exposure": "92.9%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.72%", @@ -719699,7 +719699,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 1, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 2, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -719816,10 +719816,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.1 + "Raw Cognitive Density": 0.6 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "80.22%", + "Cognitive Load Exposure": "35.43%", "Error & Exception Exposure": "64.57%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.49%", @@ -719889,7 +719889,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 5, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 2, "Authorship Metadata": 1, "Planned Work (TODOs)": 0, @@ -720006,10 +720006,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.08 + "Raw Cognitive Density": 0.48 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "78.92%", + "Cognitive Load Exposure": "25.35%", "Error & Exception Exposure": "60.55%", "Tech Debt Exposure": "73.11%", "Testing Exposure": "2.33%", @@ -720059,7 +720059,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 6, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 4, "Planned Work (TODOs)": 0, @@ -720174,10 +720174,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 2.63 + "Raw Cognitive Density": 1.23 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "99.95%", + "Cognitive Load Exposure": "87.21%", "Error & Exception Exposure": "93.44%", "Tech Debt Exposure": "50.0%", "Testing Exposure": "2.57%", @@ -720267,7 +720267,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 15, + "Metaprogramming & Reflection": 1, "Module Dependencies (Imports)": 1, "Authorship Metadata": 1, "Planned Work (TODOs)": 1, @@ -720384,10 +720384,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.45 + "Raw Cognitive Density": 1.25 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "94.27%", + "Cognitive Load Exposure": "88.08%", "Error & Exception Exposure": "99.79%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.0%", @@ -720487,7 +720487,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 2, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -720602,10 +720602,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.54 + "Raw Cognitive Density": 0.04 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "30.15%", + "Cognitive Load Exposure": "5.52%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.42%", @@ -720685,7 +720685,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 5, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -721367,7 +721367,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 2, + "Metaprogramming & Reflection": 1, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -721482,10 +721482,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.273 + "Raw Cognitive Density": 1.102 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "89.0%", + "Cognitive Load Exposure": "80.36%", "Error & Exception Exposure": "99.93%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.63%", @@ -721575,7 +721575,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 4, + "Metaprogramming & Reflection": 1, "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -721692,10 +721692,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.26 + "Raw Cognitive Density": 0.66 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "88.49%", + "Cognitive Load Exposure": "41.1%", "Error & Exception Exposure": "98.39%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.81%", @@ -721775,7 +721775,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 6, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -721890,10 +721890,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.677 + "Raw Cognitive Density": 1.395 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "66.12%", + "Cognitive Load Exposure": "62.97%", "Error & Exception Exposure": "99.92%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", @@ -722033,7 +722033,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 2, - "Metaprogramming & Reflection": 7, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -757688,7 +757688,7 @@ "Static: Literature & Documentation": "7.7%" }, "Average Risk Exposures": { - "Cognitive Load Exposure": "36.36%", + "Cognitive Load Exposure": "30.69%", "Error & Exception Exposure": "64.63%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "8.24%", @@ -758071,10 +758071,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.7 + "Raw Cognitive Density": 0.4 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "45.02%", + "Cognitive Load Exposure": "19.78%", "Error & Exception Exposure": "89.5%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.37%", @@ -758134,7 +758134,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 4, + "Metaprogramming & Reflection": 1, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -758249,10 +758249,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.046 + "Raw Cognitive Density": 0.975 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "76.55%", + "Cognitive Load Exposure": "71.12%", "Error & Exception Exposure": "100.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.52%", @@ -758332,7 +758332,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 2, + "Metaprogramming & Reflection": 1, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -758447,10 +758447,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.505 + "Raw Cognitive Density": 1.127 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "95.34%", + "Cognitive Load Exposure": "81.9%", "Error & Exception Exposure": "100.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.46%", @@ -758510,7 +758510,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 7, + "Metaprogramming & Reflection": 3, "Module Dependencies (Imports)": 4, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -758629,10 +758629,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.743 + "Raw Cognitive Density": 1.18 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "91.24%", + "Cognitive Load Exposure": "78.82%", "Error & Exception Exposure": "99.96%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", @@ -758792,7 +758792,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 16, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -759157,10 +759157,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.04 + "Raw Cognitive Density": 0.74 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "76.13%", + "Cognitive Load Exposure": "49.0%", "Error & Exception Exposure": "97.55%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.55%", @@ -759230,7 +759230,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 3, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -759681,10 +759681,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.68 + "Raw Cognitive Density": 0.78 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "43.05%", + "Cognitive Load Exposure": "53.0%", "Error & Exception Exposure": "95.63%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.41%", @@ -759744,7 +759744,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, + "Metaprogramming & Reflection": 1, "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0,